From e956864697f2fed9591bb34dcf80f55afcfd0beb Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Wed, 1 Jan 2025 02:26:01 -0600 Subject: [PATCH 01/69] misc: Remove needless AsObservableList --- .../UI/ViewModels/MainWindowViewModel.cs | 77 +++++++++---------- 1 file changed, 38 insertions(+), 39 deletions(-) diff --git a/src/Ryujinx/UI/ViewModels/MainWindowViewModel.cs b/src/Ryujinx/UI/ViewModels/MainWindowViewModel.cs index b7a43ccaf..1e2a29d21 100644 --- a/src/Ryujinx/UI/ViewModels/MainWindowViewModel.cs +++ b/src/Ryujinx/UI/ViewModels/MainWindowViewModel.cs @@ -125,43 +125,6 @@ namespace Ryujinx.Ava.UI.ViewModels private ApplicationData _listSelectedApplication; private ApplicationData _gridSelectedApplication; - public ApplicationData ListSelectedApplication - { - get => _listSelectedApplication; - set - { - _listSelectedApplication = value; - -#pragma warning disable MVVMTK0034 - if (_listSelectedApplication != null && _listAppContextMenu == null) - - ListAppContextMenu = new ApplicationContextMenu(); - else if (_listSelectedApplication == null && _listAppContextMenu != null) - ListAppContextMenu = null!; -#pragma warning restore MVVMTK0034 - - OnPropertyChanged(); - } - } - - public ApplicationData GridSelectedApplication - { - get => _gridSelectedApplication; - set - { - _gridSelectedApplication = value; - -#pragma warning disable MVVMTK0034 - if (_gridSelectedApplication != null && _gridAppContextMenu == null) - GridAppContextMenu = new ApplicationContextMenu(); - else if (_gridSelectedApplication == null && _gridAppContextMenu != null) - GridAppContextMenu = null!; -#pragma warning restore MVVMTK0034 - - OnPropertyChanged(); - } - } - // Key is Title ID public SafeDictionary LdnData = []; @@ -185,9 +148,8 @@ namespace Ryujinx.Ava.UI.ViewModels .OnItemAdded(_ => OnPropertyChanged(nameof(AppsObservableList))) .OnItemRemoved(_ => OnPropertyChanged(nameof(AppsObservableList))) #pragma warning disable MVVMTK0034 // Event to update is fired below - .Bind(out _appsObservableList) + .Bind(out _appsObservableList); #pragma warning restore MVVMTK0034 - .AsObservableList(); _rendererWaitEvent = new AutoResetEvent(false); @@ -335,6 +297,43 @@ namespace Ryujinx.Ava.UI.ViewModels OnPropertyChanged(nameof(ShowFirmwareStatus)); } } + + public ApplicationData ListSelectedApplication + { + get => _listSelectedApplication; + set + { + _listSelectedApplication = value; + +#pragma warning disable MVVMTK0034 + if (_listSelectedApplication != null && _listAppContextMenu == null) + + ListAppContextMenu = new ApplicationContextMenu(); + else if (_listSelectedApplication == null && _listAppContextMenu != null) + ListAppContextMenu = null!; +#pragma warning restore MVVMTK0034 + + OnPropertyChanged(); + } + } + + public ApplicationData GridSelectedApplication + { + get => _gridSelectedApplication; + set + { + _gridSelectedApplication = value; + +#pragma warning disable MVVMTK0034 + if (_gridSelectedApplication != null && _gridAppContextMenu == null) + GridAppContextMenu = new ApplicationContextMenu(); + else if (_gridSelectedApplication == null && _gridAppContextMenu != null) + GridAppContextMenu = null!; +#pragma warning restore MVVMTK0034 + + OnPropertyChanged(); + } + } public ApplicationData SelectedApplication { From 9bb50fc6dd8dba7a03f5f4c31b63f41943372ff6 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Fri, 3 Jan 2025 02:36:31 -0600 Subject: [PATCH 02/69] misc: improve unpacking error & add nullability to SelectedIcon --- src/Ryujinx.Common/Configuration/DirtyHack.cs | 2 +- src/Ryujinx/AppHost.cs | 2 -- src/Ryujinx/Assets/locales.json | 2 +- src/Ryujinx/UI/ViewModels/MainWindowViewModel.cs | 14 ++++++-------- 4 files changed, 8 insertions(+), 12 deletions(-) diff --git a/src/Ryujinx.Common/Configuration/DirtyHack.cs b/src/Ryujinx.Common/Configuration/DirtyHack.cs index 6e21fe44e..9ab9a26a5 100644 --- a/src/Ryujinx.Common/Configuration/DirtyHack.cs +++ b/src/Ryujinx.Common/Configuration/DirtyHack.cs @@ -25,7 +25,7 @@ namespace Ryujinx.Common.Configuration { var unpackedFields = packedHack.UnpackBitFields(PackedFormat); if (unpackedFields is not [var hack, var value]) - throw new ArgumentException(nameof(packedHack)); + throw new Exception("The unpack operation on the integer resulted in an invalid unpacked result."); return new EnabledDirtyHack((DirtyHack)hack, (int)value); } diff --git a/src/Ryujinx/AppHost.cs b/src/Ryujinx/AppHost.cs index c728ee9c9..a35a79e86 100644 --- a/src/Ryujinx/AppHost.cs +++ b/src/Ryujinx/AppHost.cs @@ -3,7 +3,6 @@ using Avalonia.Controls; using Avalonia.Controls.ApplicationLifetimes; using Avalonia.Input; using Avalonia.Threading; -using Gommon; using LibHac.Common; using LibHac.Ns; using LibHac.Tools.FsSystem; @@ -43,7 +42,6 @@ using Ryujinx.HLE.HOS.Services.Account.Acc; using Ryujinx.HLE.HOS.SystemState; using Ryujinx.Input; using Ryujinx.Input.HLE; -using Silk.NET.Vulkan; using SkiaSharp; using SPB.Graphics.Vulkan; using System; diff --git a/src/Ryujinx/Assets/locales.json b/src/Ryujinx/Assets/locales.json index 6f22e7d06..a04bd0538 100644 --- a/src/Ryujinx/Assets/locales.json +++ b/src/Ryujinx/Assets/locales.json @@ -22598,4 +22598,4 @@ } } ] -} +} \ No newline at end of file diff --git a/src/Ryujinx/UI/ViewModels/MainWindowViewModel.cs b/src/Ryujinx/UI/ViewModels/MainWindowViewModel.cs index 1e2a29d21..e11d855a6 100644 --- a/src/Ryujinx/UI/ViewModels/MainWindowViewModel.cs +++ b/src/Ryujinx/UI/ViewModels/MainWindowViewModel.cs @@ -80,7 +80,9 @@ namespace Ryujinx.Ava.UI.ViewModels [ObservableProperty] private Brush _progressBarForegroundColor; [ObservableProperty] private Brush _progressBarBackgroundColor; [ObservableProperty] private Brush _vSyncModeColor; - [ObservableProperty] private byte[] _selectedIcon; + #nullable enable + [ObservableProperty] private byte[]? _selectedIcon; + #nullable disable [ObservableProperty] private int _statusBarProgressMaximum; [ObservableProperty] private int _statusBarProgressValue; [ObservableProperty] private string _statusBarProgressStatusText; @@ -1754,7 +1756,7 @@ namespace Ryujinx.Ava.UI.ViewModels } } - public async void ProcessTrimResult(String filename, Ryujinx.Common.Utilities.XCIFileTrimmer.OperationOutcome operationOutcome) + public async void ProcessTrimResult(String filename, XCIFileTrimmer.OperationOutcome operationOutcome) { string notifyUser = operationOutcome.ToLocalisedText(); @@ -1769,12 +1771,8 @@ namespace Ryujinx.Ava.UI.ViewModels { switch (operationOutcome) { - case Ryujinx.Common.Utilities.XCIFileTrimmer.OperationOutcome.Successful: - if (Avalonia.Application.Current.ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop) - { - if (desktop.MainWindow is MainWindow mainWindow) - mainWindow.LoadApplications(); - } + case XCIFileTrimmer.OperationOutcome.Successful: + RyujinxApp.MainWindow.LoadApplications(); break; } } From 3e5b2bda38678ecad8db2bcef203c5af02d7ab59 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Fri, 3 Jan 2025 22:25:21 -0600 Subject: [PATCH 03/69] UI: RPC: Goat Simulator 3 asset image --- src/Ryujinx.Common/TitleIDs.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Ryujinx.Common/TitleIDs.cs b/src/Ryujinx.Common/TitleIDs.cs index ab6cfeb03..43a1f2393 100644 --- a/src/Ryujinx.Common/TitleIDs.cs +++ b/src/Ryujinx.Common/TitleIDs.cs @@ -171,6 +171,7 @@ namespace Ryujinx.Common "0100b41013c82000", // Cruis'n Blast "01001b300b9be000", // Diablo III: Eternal Collection "01008c8012920000", // Dying Light Platinum Edition + "01001cc01b2d4000", // Goat Simulator 3 "010073c01af34000", // LEGO Horizon Adventures "0100770008dd8000", // Monster Hunter Generations Ultimate "0100b04011742000", // Monster Hunter Rise From c8d598d5acb94886c56cadf23afc9d588c558864 Mon Sep 17 00:00:00 2001 From: Emmanuel Hansen Date: Mon, 16 Sep 2024 13:07:31 +0000 Subject: [PATCH 04/69] use UnmanagedCallersOnly for delegates --- .../Instructions/InstEmitSimdArithmetic.cs | 20 +- .../Instructions/InstEmitSimdArithmetic32.cs | 4 +- .../Instructions/InstEmitSimdCmp.cs | 4 +- .../Instructions/InstEmitSimdCvt.cs | 10 +- .../Instructions/InstEmitSimdCvt32.cs | 14 +- .../Instructions/InstEmitSimdHelper.cs | 16 +- src/ARMeilleure/Instructions/MathHelper.cs | 75 ++ .../Instructions/NativeInterface.cs | 33 +- src/ARMeilleure/Instructions/SoftFallback.cs | 44 ++ src/ARMeilleure/Instructions/SoftFloat.cs | 381 +++++++--- src/ARMeilleure/Translation/DelegateInfo.cs | 10 +- src/ARMeilleure/Translation/Delegates.cs | 705 +++++------------- src/ARMeilleure/Translation/EmitterContext.cs | 2 +- src/ARMeilleure/Translation/PTC/Ptc.cs | 4 +- 14 files changed, 652 insertions(+), 670 deletions(-) create mode 100644 src/ARMeilleure/Instructions/MathHelper.cs diff --git a/src/ARMeilleure/Instructions/InstEmitSimdArithmetic.cs b/src/ARMeilleure/Instructions/InstEmitSimdArithmetic.cs index 13d9fac68..694633f97 100644 --- a/src/ARMeilleure/Instructions/InstEmitSimdArithmetic.cs +++ b/src/ARMeilleure/Instructions/InstEmitSimdArithmetic.cs @@ -406,7 +406,7 @@ namespace ARMeilleure.Instructions { Operand res = EmitSoftFloatCall(context, nameof(SoftFloat32.FPSub), op1, op2); - return EmitUnaryMathCall(context, nameof(Math.Abs), res); + return EmitUnaryMathCall(context, nameof(MathHelper.Abs), res); }); } } @@ -451,7 +451,7 @@ namespace ARMeilleure.Instructions { Operand res = EmitSoftFloatCall(context, nameof(SoftFloat32.FPSub), op1, op2); - return EmitUnaryMathCall(context, nameof(Math.Abs), res); + return EmitUnaryMathCall(context, nameof(MathHelper.Abs), res); }); } } @@ -483,7 +483,7 @@ namespace ARMeilleure.Instructions { EmitScalarUnaryOpF(context, (op1) => { - return EmitUnaryMathCall(context, nameof(Math.Abs), op1); + return EmitUnaryMathCall(context, nameof(MathHelper.Abs), op1); }); } } @@ -522,7 +522,7 @@ namespace ARMeilleure.Instructions { EmitVectorUnaryOpF(context, (op1) => { - return EmitUnaryMathCall(context, nameof(Math.Abs), op1); + return EmitUnaryMathCall(context, nameof(MathHelper.Abs), op1); }); } } @@ -2246,7 +2246,7 @@ namespace ARMeilleure.Instructions { EmitScalarUnaryOpF(context, (op1) => { - return EmitUnaryMathCall(context, nameof(Math.Floor), op1); + return EmitUnaryMathCall(context, nameof(MathHelper.Floor), op1); }); } } @@ -2265,7 +2265,7 @@ namespace ARMeilleure.Instructions { EmitVectorUnaryOpF(context, (op1) => { - return EmitUnaryMathCall(context, nameof(Math.Floor), op1); + return EmitUnaryMathCall(context, nameof(MathHelper.Floor), op1); }); } } @@ -2322,7 +2322,7 @@ namespace ARMeilleure.Instructions { EmitScalarUnaryOpF(context, (op1) => { - return EmitUnaryMathCall(context, nameof(Math.Ceiling), op1); + return EmitUnaryMathCall(context, nameof(MathHelper.Ceiling), op1); }); } } @@ -2341,7 +2341,7 @@ namespace ARMeilleure.Instructions { EmitVectorUnaryOpF(context, (op1) => { - return EmitUnaryMathCall(context, nameof(Math.Ceiling), op1); + return EmitUnaryMathCall(context, nameof(MathHelper.Ceiling), op1); }); } } @@ -2390,7 +2390,7 @@ namespace ARMeilleure.Instructions { EmitScalarUnaryOpF(context, (op1) => { - return EmitUnaryMathCall(context, nameof(Math.Truncate), op1); + return EmitUnaryMathCall(context, nameof(MathHelper.Truncate), op1); }); } } @@ -2409,7 +2409,7 @@ namespace ARMeilleure.Instructions { EmitVectorUnaryOpF(context, (op1) => { - return EmitUnaryMathCall(context, nameof(Math.Truncate), op1); + return EmitUnaryMathCall(context, nameof(MathHelper.Truncate), op1); }); } } diff --git a/src/ARMeilleure/Instructions/InstEmitSimdArithmetic32.cs b/src/ARMeilleure/Instructions/InstEmitSimdArithmetic32.cs index c807fc858..284f3f576 100644 --- a/src/ARMeilleure/Instructions/InstEmitSimdArithmetic32.cs +++ b/src/ARMeilleure/Instructions/InstEmitSimdArithmetic32.cs @@ -43,7 +43,7 @@ namespace ARMeilleure.Instructions } else { - EmitScalarUnaryOpF32(context, (op1) => EmitUnaryMathCall(context, nameof(Math.Abs), op1)); + EmitScalarUnaryOpF32(context, (op1) => EmitUnaryMathCall(context, nameof(MathHelper.Abs), op1)); } } @@ -66,7 +66,7 @@ namespace ARMeilleure.Instructions } else { - EmitVectorUnaryOpF32(context, (op1) => EmitUnaryMathCall(context, nameof(Math.Abs), op1)); + EmitVectorUnaryOpF32(context, (op1) => EmitUnaryMathCall(context, nameof(MathHelper.Abs), op1)); } } else diff --git a/src/ARMeilleure/Instructions/InstEmitSimdCmp.cs b/src/ARMeilleure/Instructions/InstEmitSimdCmp.cs index aab677869..8fcb06286 100644 --- a/src/ARMeilleure/Instructions/InstEmitSimdCmp.cs +++ b/src/ARMeilleure/Instructions/InstEmitSimdCmp.cs @@ -726,8 +726,8 @@ namespace ARMeilleure.Instructions if (absolute) { - ne = EmitUnaryMathCall(context, nameof(Math.Abs), ne); - me = EmitUnaryMathCall(context, nameof(Math.Abs), me); + ne = EmitUnaryMathCall(context, nameof(MathHelper.Abs), ne); + me = EmitUnaryMathCall(context, nameof(MathHelper.Abs), me); } Operand e = EmitSoftFloatCall(context, name, ne, me); diff --git a/src/ARMeilleure/Instructions/InstEmitSimdCvt.cs b/src/ARMeilleure/Instructions/InstEmitSimdCvt.cs index 3363a7c77..a5d4744f7 100644 --- a/src/ARMeilleure/Instructions/InstEmitSimdCvt.cs +++ b/src/ARMeilleure/Instructions/InstEmitSimdCvt.cs @@ -333,7 +333,7 @@ namespace ARMeilleure.Instructions } else { - EmitFcvt_s_Gp(context, (op1) => EmitUnaryMathCall(context, nameof(Math.Floor), op1)); + EmitFcvt_s_Gp(context, (op1) => EmitUnaryMathCall(context, nameof(MathHelper.Floor), op1)); } } @@ -349,7 +349,7 @@ namespace ARMeilleure.Instructions } else { - EmitFcvt(context, (op1) => EmitUnaryMathCall(context, nameof(Math.Floor), op1), signed: true, scalar: false); + EmitFcvt(context, (op1) => EmitUnaryMathCall(context, nameof(MathHelper.Floor), op1), signed: true, scalar: false); } } @@ -365,7 +365,7 @@ namespace ARMeilleure.Instructions } else { - EmitFcvt_u_Gp(context, (op1) => EmitUnaryMathCall(context, nameof(Math.Floor), op1)); + EmitFcvt_u_Gp(context, (op1) => EmitUnaryMathCall(context, nameof(MathHelper.Floor), op1)); } } @@ -538,7 +538,7 @@ namespace ARMeilleure.Instructions } else { - EmitFcvt_s_Gp(context, (op1) => EmitUnaryMathCall(context, nameof(Math.Ceiling), op1)); + EmitFcvt_s_Gp(context, (op1) => EmitUnaryMathCall(context, nameof(MathHelper.Ceiling), op1)); } } @@ -554,7 +554,7 @@ namespace ARMeilleure.Instructions } else { - EmitFcvt_u_Gp(context, (op1) => EmitUnaryMathCall(context, nameof(Math.Ceiling), op1)); + EmitFcvt_u_Gp(context, (op1) => EmitUnaryMathCall(context, nameof(MathHelper.Ceiling), op1)); } } diff --git a/src/ARMeilleure/Instructions/InstEmitSimdCvt32.cs b/src/ARMeilleure/Instructions/InstEmitSimdCvt32.cs index 8eef6b14d..216726df9 100644 --- a/src/ARMeilleure/Instructions/InstEmitSimdCvt32.cs +++ b/src/ARMeilleure/Instructions/InstEmitSimdCvt32.cs @@ -357,10 +357,10 @@ namespace ARMeilleure.Instructions toConvert = EmitRoundMathCall(context, MidpointRounding.ToEven, toConvert); break; case 0b10: // Towards positive infinity - toConvert = EmitUnaryMathCall(context, nameof(Math.Ceiling), toConvert); + toConvert = EmitUnaryMathCall(context, nameof(MathHelper.Ceiling), toConvert); break; case 0b11: // Towards negative infinity - toConvert = EmitUnaryMathCall(context, nameof(Math.Floor), toConvert); + toConvert = EmitUnaryMathCall(context, nameof(MathHelper.Floor), toConvert); break; } @@ -494,10 +494,10 @@ namespace ARMeilleure.Instructions toConvert = EmitRoundMathCall(context, MidpointRounding.ToEven, toConvert); break; case 0b10: // Towards positive infinity - toConvert = EmitUnaryMathCall(context, nameof(Math.Ceiling), toConvert); + toConvert = EmitUnaryMathCall(context, nameof(MathHelper.Ceiling), toConvert); break; case 0b11: // Towards negative infinity - toConvert = EmitUnaryMathCall(context, nameof(Math.Floor), toConvert); + toConvert = EmitUnaryMathCall(context, nameof(MathHelper.Floor), toConvert); break; } @@ -534,7 +534,7 @@ namespace ARMeilleure.Instructions } else { - EmitVectorUnaryOpF32(context, (m) => EmitUnaryMathCall(context, nameof(Math.Floor), m)); + EmitVectorUnaryOpF32(context, (m) => EmitUnaryMathCall(context, nameof(MathHelper.Floor), m)); } } @@ -574,7 +574,7 @@ namespace ARMeilleure.Instructions } else { - EmitVectorUnaryOpF32(context, (m) => EmitUnaryMathCall(context, nameof(Math.Ceiling), m)); + EmitVectorUnaryOpF32(context, (m) => EmitUnaryMathCall(context, nameof(MathHelper.Ceiling), m)); } } @@ -613,7 +613,7 @@ namespace ARMeilleure.Instructions } else { - EmitScalarUnaryOpF32(context, (op1) => EmitUnaryMathCall(context, nameof(Math.Truncate), op1)); + EmitScalarUnaryOpF32(context, (op1) => EmitUnaryMathCall(context, nameof(MathHelper.Truncate), op1)); } } diff --git a/src/ARMeilleure/Instructions/InstEmitSimdHelper.cs b/src/ARMeilleure/Instructions/InstEmitSimdHelper.cs index abd0d9acc..634e5c18b 100644 --- a/src/ARMeilleure/Instructions/InstEmitSimdHelper.cs +++ b/src/ARMeilleure/Instructions/InstEmitSimdHelper.cs @@ -460,8 +460,8 @@ namespace ARMeilleure.Instructions IOpCodeSimd op = (IOpCodeSimd)context.CurrOp; MethodInfo info = (op.Size & 1) == 0 - ? typeof(MathF).GetMethod(name, new Type[] { typeof(float) }) - : typeof(Math).GetMethod(name, new Type[] { typeof(double) }); + ? typeof(MathHelperF).GetMethod(name, new Type[] { typeof(float) }) + : typeof(MathHelper).GetMethod(name, new Type[] { typeof(double) }); return context.Call(info, n); } @@ -470,11 +470,11 @@ namespace ARMeilleure.Instructions { IOpCodeSimd op = (IOpCodeSimd)context.CurrOp; - string name = nameof(Math.Round); + string name = nameof(MathHelper.Round); MethodInfo info = (op.Size & 1) == 0 - ? typeof(MathF).GetMethod(name, new Type[] { typeof(float), typeof(MidpointRounding) }) - : typeof(Math).GetMethod(name, new Type[] { typeof(double), typeof(MidpointRounding) }); + ? typeof(MathHelperF).GetMethod(name, new Type[] { typeof(float), typeof(int) }) + : typeof(MathHelper).GetMethod(name, new Type[] { typeof(double), typeof(int) }); return context.Call(info, n, Const((int)roundMode)); } @@ -510,16 +510,16 @@ namespace ARMeilleure.Instructions context.MarkLabel(lbl1); context.BranchIf(lbl2, rMode, rP, Comparison.NotEqual); - context.Copy(res, EmitUnaryMathCall(context, nameof(Math.Ceiling), op)); + context.Copy(res, EmitUnaryMathCall(context, nameof(MathHelper.Ceiling), op)); context.Branch(lblEnd); context.MarkLabel(lbl2); context.BranchIf(lbl3, rMode, rM, Comparison.NotEqual); - context.Copy(res, EmitUnaryMathCall(context, nameof(Math.Floor), op)); + context.Copy(res, EmitUnaryMathCall(context, nameof(MathHelper.Floor), op)); context.Branch(lblEnd); context.MarkLabel(lbl3); - context.Copy(res, EmitUnaryMathCall(context, nameof(Math.Truncate), op)); + context.Copy(res, EmitUnaryMathCall(context, nameof(MathHelper.Truncate), op)); context.Branch(lblEnd); context.MarkLabel(lblEnd); diff --git a/src/ARMeilleure/Instructions/MathHelper.cs b/src/ARMeilleure/Instructions/MathHelper.cs new file mode 100644 index 000000000..acf9a5028 --- /dev/null +++ b/src/ARMeilleure/Instructions/MathHelper.cs @@ -0,0 +1,75 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.InteropServices; +using System.Text; +using System.Threading.Tasks; + +namespace ARMeilleure.Instructions +{ + static class MathHelper + { + [UnmanagedCallersOnly] + public static double Abs(double value) + { + return Math.Abs(value); + } + + [UnmanagedCallersOnly] + public static double Ceiling(double value) + { + return Math.Ceiling(value); + } + + [UnmanagedCallersOnly] + public static double Floor(double value) + { + return Math.Floor(value); + } + + [UnmanagedCallersOnly] + public static double Round(double value, int mode) + { + return Math.Round(value, (MidpointRounding)mode); + } + + [UnmanagedCallersOnly] + public static double Truncate(double value) + { + return Math.Truncate(value); + } + } + + static class MathHelperF + { + [UnmanagedCallersOnly] + public static float Abs(float value) + { + return MathF.Abs(value); + } + + [UnmanagedCallersOnly] + public static float Ceiling(float value) + { + return MathF.Ceiling(value); + } + + [UnmanagedCallersOnly] + public static float Floor(float value) + { + return MathF.Floor(value); + } + + [UnmanagedCallersOnly] + public static float Round(float value, int mode) + { + return MathF.Round(value, (MidpointRounding)mode); + } + + [UnmanagedCallersOnly] + public static float Truncate(float value) + { + return MathF.Truncate(value); + } + } +} diff --git a/src/ARMeilleure/Instructions/NativeInterface.cs b/src/ARMeilleure/Instructions/NativeInterface.cs index 0cd3754f7..9d6279613 100644 --- a/src/ARMeilleure/Instructions/NativeInterface.cs +++ b/src/ARMeilleure/Instructions/NativeInterface.cs @@ -2,6 +2,7 @@ using ARMeilleure.Memory; using ARMeilleure.State; using ARMeilleure.Translation; using System; +using System.Runtime.InteropServices; namespace ARMeilleure.Instructions { @@ -34,6 +35,7 @@ namespace ARMeilleure.Instructions Context = null; } + [UnmanagedCallersOnly] public static void Break(ulong address, int imm) { Statistics.PauseTimer(); @@ -43,6 +45,7 @@ namespace ARMeilleure.Instructions Statistics.ResumeTimer(); } + [UnmanagedCallersOnly] public static void SupervisorCall(ulong address, int imm) { Statistics.PauseTimer(); @@ -52,6 +55,7 @@ namespace ARMeilleure.Instructions Statistics.ResumeTimer(); } + [UnmanagedCallersOnly] public static void Undefined(ulong address, int opCode) { Statistics.PauseTimer(); @@ -62,26 +66,31 @@ namespace ARMeilleure.Instructions } #region "System registers" + [UnmanagedCallersOnly] public static ulong GetCtrEl0() { return GetContext().CtrEl0; } + [UnmanagedCallersOnly] public static ulong GetDczidEl0() { return GetContext().DczidEl0; } + [UnmanagedCallersOnly] public static ulong GetCntfrqEl0() { return GetContext().CntfrqEl0; } + [UnmanagedCallersOnly] public static ulong GetCntpctEl0() { return GetContext().CntpctEl0; } + [UnmanagedCallersOnly] public static ulong GetCntvctEl0() { return GetContext().CntvctEl0; @@ -89,26 +98,31 @@ namespace ARMeilleure.Instructions #endregion #region "Read" + [UnmanagedCallersOnly] public static byte ReadByte(ulong address) { return GetMemoryManager().ReadGuest(address); } + [UnmanagedCallersOnly] public static ushort ReadUInt16(ulong address) { return GetMemoryManager().ReadGuest(address); } + [UnmanagedCallersOnly] public static uint ReadUInt32(ulong address) { return GetMemoryManager().ReadGuest(address); } + [UnmanagedCallersOnly] public static ulong ReadUInt64(ulong address) { return GetMemoryManager().ReadGuest(address); } + [UnmanagedCallersOnly] public static V128 ReadVector128(ulong address) { return GetMemoryManager().ReadGuest(address); @@ -116,47 +130,56 @@ namespace ARMeilleure.Instructions #endregion #region "Write" + [UnmanagedCallersOnly] public static void WriteByte(ulong address, byte value) { GetMemoryManager().WriteGuest(address, value); } + [UnmanagedCallersOnly] public static void WriteUInt16(ulong address, ushort value) { GetMemoryManager().WriteGuest(address, value); } + [UnmanagedCallersOnly] public static void WriteUInt32(ulong address, uint value) { GetMemoryManager().WriteGuest(address, value); } + [UnmanagedCallersOnly] public static void WriteUInt64(ulong address, ulong value) { GetMemoryManager().WriteGuest(address, value); } + [UnmanagedCallersOnly] public static void WriteVector128(ulong address, V128 value) { GetMemoryManager().WriteGuest(address, value); } #endregion + [UnmanagedCallersOnly] public static void EnqueueForRejit(ulong address) { Context.Translator.EnqueueForRejit(address, GetContext().ExecutionMode); } - public static void SignalMemoryTracking(ulong address, ulong size, bool write) + [UnmanagedCallersOnly] + public static void SignalMemoryTracking(ulong address, ulong size, byte write) { - GetMemoryManager().SignalMemoryTracking(address, size, write); + GetMemoryManager().SignalMemoryTracking(address, size, write == 1); } + [UnmanagedCallersOnly] public static void ThrowInvalidMemoryAccess(ulong address) { throw new InvalidAccessException(address); } + [UnmanagedCallersOnly] public static ulong GetFunctionAddress(ulong address) { TranslatedFunction function = Context.Translator.GetOrTranslate(address, GetContext().ExecutionMode); @@ -164,12 +187,14 @@ namespace ARMeilleure.Instructions return (ulong)function.FuncPointer.ToInt64(); } + [UnmanagedCallersOnly] public static void InvalidateCacheLine(ulong address) { Context.Translator.InvalidateJitCacheRegion(address, InstEmit.DczSizeInBytes); } - public static bool CheckSynchronization() + [UnmanagedCallersOnly] + public static byte CheckSynchronization() { Statistics.PauseTimer(); @@ -179,7 +204,7 @@ namespace ARMeilleure.Instructions Statistics.ResumeTimer(); - return context.Running; + return (byte)(context.Running ? 1 : 0); } public static ExecutionContext GetContext() diff --git a/src/ARMeilleure/Instructions/SoftFallback.cs b/src/ARMeilleure/Instructions/SoftFallback.cs index 899326c4b..178be6f79 100644 --- a/src/ARMeilleure/Instructions/SoftFallback.cs +++ b/src/ARMeilleure/Instructions/SoftFallback.cs @@ -1,11 +1,13 @@ using ARMeilleure.State; using System; +using System.Runtime.InteropServices; namespace ARMeilleure.Instructions { static class SoftFallback { #region "ShrImm64" + [UnmanagedCallersOnly] public static long SignedShrImm64(long value, long roundConst, int shift) { if (roundConst == 0L) @@ -48,6 +50,7 @@ namespace ARMeilleure.Instructions } } + [UnmanagedCallersOnly] public static ulong UnsignedShrImm64(ulong value, long roundConst, int shift) { if (roundConst == 0L) @@ -92,6 +95,7 @@ namespace ARMeilleure.Instructions #endregion #region "Saturation" + [UnmanagedCallersOnly] public static int SatF32ToS32(float value) { if (float.IsNaN(value)) @@ -103,6 +107,7 @@ namespace ARMeilleure.Instructions value <= int.MinValue ? int.MinValue : (int)value; } + [UnmanagedCallersOnly] public static long SatF32ToS64(float value) { if (float.IsNaN(value)) @@ -114,6 +119,7 @@ namespace ARMeilleure.Instructions value <= long.MinValue ? long.MinValue : (long)value; } + [UnmanagedCallersOnly] public static uint SatF32ToU32(float value) { if (float.IsNaN(value)) @@ -125,6 +131,7 @@ namespace ARMeilleure.Instructions value <= uint.MinValue ? uint.MinValue : (uint)value; } + [UnmanagedCallersOnly] public static ulong SatF32ToU64(float value) { if (float.IsNaN(value)) @@ -136,6 +143,7 @@ namespace ARMeilleure.Instructions value <= ulong.MinValue ? ulong.MinValue : (ulong)value; } + [UnmanagedCallersOnly] public static int SatF64ToS32(double value) { if (double.IsNaN(value)) @@ -147,6 +155,7 @@ namespace ARMeilleure.Instructions value <= int.MinValue ? int.MinValue : (int)value; } + [UnmanagedCallersOnly] public static long SatF64ToS64(double value) { if (double.IsNaN(value)) @@ -158,6 +167,7 @@ namespace ARMeilleure.Instructions value <= long.MinValue ? long.MinValue : (long)value; } + [UnmanagedCallersOnly] public static uint SatF64ToU32(double value) { if (double.IsNaN(value)) @@ -169,6 +179,7 @@ namespace ARMeilleure.Instructions value <= uint.MinValue ? uint.MinValue : (uint)value; } + [UnmanagedCallersOnly] public static ulong SatF64ToU64(double value) { if (double.IsNaN(value)) @@ -182,6 +193,7 @@ namespace ARMeilleure.Instructions #endregion #region "Count" + [UnmanagedCallersOnly] public static ulong CountLeadingSigns(ulong value, int size) // size is 8, 16, 32 or 64 (SIMD&FP or Base Inst.). { value ^= value >> 1; @@ -201,6 +213,7 @@ namespace ARMeilleure.Instructions private static ReadOnlySpan ClzNibbleTbl => new byte[] { 4, 3, 2, 2, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0 }; + [UnmanagedCallersOnly] public static ulong CountLeadingZeros(ulong value, int size) // size is 8, 16, 32 or 64 (SIMD&FP or Base Inst.). { if (value == 0ul) @@ -224,41 +237,49 @@ namespace ARMeilleure.Instructions #endregion #region "Table" + [UnmanagedCallersOnly] public static V128 Tbl1(V128 vector, int bytes, V128 tb0) { return TblOrTbx(default, vector, bytes, tb0); } + [UnmanagedCallersOnly] public static V128 Tbl2(V128 vector, int bytes, V128 tb0, V128 tb1) { return TblOrTbx(default, vector, bytes, tb0, tb1); } + [UnmanagedCallersOnly] public static V128 Tbl3(V128 vector, int bytes, V128 tb0, V128 tb1, V128 tb2) { return TblOrTbx(default, vector, bytes, tb0, tb1, tb2); } + [UnmanagedCallersOnly] public static V128 Tbl4(V128 vector, int bytes, V128 tb0, V128 tb1, V128 tb2, V128 tb3) { return TblOrTbx(default, vector, bytes, tb0, tb1, tb2, tb3); } + [UnmanagedCallersOnly] public static V128 Tbx1(V128 dest, V128 vector, int bytes, V128 tb0) { return TblOrTbx(dest, vector, bytes, tb0); } + [UnmanagedCallersOnly] public static V128 Tbx2(V128 dest, V128 vector, int bytes, V128 tb0, V128 tb1) { return TblOrTbx(dest, vector, bytes, tb0, tb1); } + [UnmanagedCallersOnly] public static V128 Tbx3(V128 dest, V128 vector, int bytes, V128 tb0, V128 tb1, V128 tb2) { return TblOrTbx(dest, vector, bytes, tb0, tb1, tb2); } + [UnmanagedCallersOnly] public static V128 Tbx4(V128 dest, V128 vector, int bytes, V128 tb0, V128 tb1, V128 tb2, V128 tb3) { return TblOrTbx(dest, vector, bytes, tb0, tb1, tb2, tb3); @@ -300,14 +321,22 @@ namespace ARMeilleure.Instructions private const uint Crc32RevPoly = 0xedb88320; private const uint Crc32cRevPoly = 0x82f63b78; + [UnmanagedCallersOnly] public static uint Crc32b(uint crc, byte value) => Crc32(crc, Crc32RevPoly, value); + [UnmanagedCallersOnly] public static uint Crc32h(uint crc, ushort value) => Crc32h(crc, Crc32RevPoly, value); + [UnmanagedCallersOnly] public static uint Crc32w(uint crc, uint value) => Crc32w(crc, Crc32RevPoly, value); + [UnmanagedCallersOnly] public static uint Crc32x(uint crc, ulong value) => Crc32x(crc, Crc32RevPoly, value); + [UnmanagedCallersOnly] public static uint Crc32cb(uint crc, byte value) => Crc32(crc, Crc32cRevPoly, value); + [UnmanagedCallersOnly] public static uint Crc32ch(uint crc, ushort value) => Crc32h(crc, Crc32cRevPoly, value); + [UnmanagedCallersOnly] public static uint Crc32cw(uint crc, uint value) => Crc32w(crc, Crc32cRevPoly, value); + [UnmanagedCallersOnly] public static uint Crc32cx(uint crc, ulong value) => Crc32x(crc, Crc32cRevPoly, value); private static uint Crc32h(uint crc, uint poly, ushort val) @@ -358,21 +387,25 @@ namespace ARMeilleure.Instructions #endregion #region "Aes" + [UnmanagedCallersOnly] public static V128 Decrypt(V128 value, V128 roundKey) { return CryptoHelper.AesInvSubBytes(CryptoHelper.AesInvShiftRows(value ^ roundKey)); } + [UnmanagedCallersOnly] public static V128 Encrypt(V128 value, V128 roundKey) { return CryptoHelper.AesSubBytes(CryptoHelper.AesShiftRows(value ^ roundKey)); } + [UnmanagedCallersOnly] public static V128 InverseMixColumns(V128 value) { return CryptoHelper.AesInvMixColumns(value); } + [UnmanagedCallersOnly] public static V128 MixColumns(V128 value) { return CryptoHelper.AesMixColumns(value); @@ -380,6 +413,7 @@ namespace ARMeilleure.Instructions #endregion #region "Sha1" + [UnmanagedCallersOnly] public static V128 HashChoose(V128 hash_abcd, uint hash_e, V128 wk) { for (int e = 0; e <= 3; e++) @@ -400,11 +434,13 @@ namespace ARMeilleure.Instructions return hash_abcd; } + [UnmanagedCallersOnly] public static uint FixedRotate(uint hash_e) { return hash_e.Rol(30); } + [UnmanagedCallersOnly] public static V128 HashMajority(V128 hash_abcd, uint hash_e, V128 wk) { for (int e = 0; e <= 3; e++) @@ -425,6 +461,7 @@ namespace ARMeilleure.Instructions return hash_abcd; } + [UnmanagedCallersOnly] public static V128 HashParity(V128 hash_abcd, uint hash_e, V128 wk) { for (int e = 0; e <= 3; e++) @@ -445,6 +482,7 @@ namespace ARMeilleure.Instructions return hash_abcd; } + [UnmanagedCallersOnly] public static V128 Sha1SchedulePart1(V128 w0_3, V128 w4_7, V128 w8_11) { ulong t2 = w4_7.Extract(0); @@ -455,6 +493,7 @@ namespace ARMeilleure.Instructions return result ^ (w0_3 ^ w8_11); } + [UnmanagedCallersOnly] public static V128 Sha1SchedulePart2(V128 tw0_3, V128 w12_15) { V128 t = tw0_3 ^ (w12_15 >> 32); @@ -499,16 +538,19 @@ namespace ARMeilleure.Instructions #endregion #region "Sha256" + [UnmanagedCallersOnly] public static V128 HashLower(V128 hash_abcd, V128 hash_efgh, V128 wk) { return Sha256Hash(hash_abcd, hash_efgh, wk, part1: true); } + [UnmanagedCallersOnly] public static V128 HashUpper(V128 hash_abcd, V128 hash_efgh, V128 wk) { return Sha256Hash(hash_abcd, hash_efgh, wk, part1: false); } + [UnmanagedCallersOnly] public static V128 Sha256SchedulePart1(V128 w0_3, V128 w4_7) { V128 result = new(); @@ -527,6 +569,7 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static V128 Sha256SchedulePart2(V128 w0_3, V128 w8_11, V128 w12_15) { V128 result = new(); @@ -628,6 +671,7 @@ namespace ARMeilleure.Instructions } #endregion + [UnmanagedCallersOnly] public static V128 PolynomialMult64_128(ulong op1, ulong op2) { V128 result = V128.Zero; diff --git a/src/ARMeilleure/Instructions/SoftFloat.cs b/src/ARMeilleure/Instructions/SoftFloat.cs index a67349e6e..7895ca1dc 100644 --- a/src/ARMeilleure/Instructions/SoftFloat.cs +++ b/src/ARMeilleure/Instructions/SoftFloat.cs @@ -1,6 +1,7 @@ using ARMeilleure.State; using System; using System.Diagnostics; +using System.Runtime.InteropServices; namespace ARMeilleure.Instructions { @@ -312,6 +313,7 @@ namespace ARMeilleure.Instructions static class SoftFloat16_32 { + [UnmanagedCallersOnly] public static float FPConvert(ushort valueBits) { ExecutionContext context = NativeInterface.GetContext(); @@ -487,6 +489,7 @@ namespace ARMeilleure.Instructions static class SoftFloat16_64 { + [UnmanagedCallersOnly] public static double FPConvert(ushort valueBits) { ExecutionContext context = NativeInterface.GetContext(); @@ -662,6 +665,7 @@ namespace ARMeilleure.Instructions static class SoftFloat32_16 { + [UnmanagedCallersOnly] public static ushort FPConvert(float value) { ExecutionContext context = NativeInterface.GetContext(); @@ -781,12 +785,19 @@ namespace ARMeilleure.Instructions static class SoftFloat32 { + [UnmanagedCallersOnly] public static float FPAdd(float value1, float value2) { - return FPAddFpscr(value1, value2, false); + return FPAddFpscrImpl(value1, value2, false); } - public static float FPAddFpscr(float value1, float value2, bool standardFpscr) + [UnmanagedCallersOnly] + public static float FPAddFpscr(float value1, float value2, byte standardFpscr) + { + return FPAddFpscrImpl(value1, value2, standardFpscr == 1); + } + + private static float FPAddFpscrImpl(float value1, float value2, bool standardFpscr) { ExecutionContext context = NativeInterface.GetContext(); FPCR fpcr = standardFpscr ? context.StandardFpcrValue : context.Fpcr; @@ -837,7 +848,8 @@ namespace ARMeilleure.Instructions return result; } - public static int FPCompare(float value1, float value2, bool signalNaNs) + [UnmanagedCallersOnly] + public static int FPCompare(float value1, float value2, byte signalNaNs) { ExecutionContext context = NativeInterface.GetContext(); FPCR fpcr = context.Fpcr; @@ -851,7 +863,7 @@ namespace ARMeilleure.Instructions { result = 0b0011; - if (type1 == FPType.SNaN || type2 == FPType.SNaN || signalNaNs) + if (type1 == FPType.SNaN || type2 == FPType.SNaN || signalNaNs == 1) { SoftFloat.FPProcessException(FPException.InvalidOp, context, fpcr); } @@ -875,12 +887,13 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static float FPCompareEQ(float value1, float value2) { - return FPCompareEQFpscr(value1, value2, false); + return FPCompareEQFpscrImpl(value1, value2, false); } - public static float FPCompareEQFpscr(float value1, float value2, bool standardFpscr) + private static float FPCompareEQFpscrImpl(float value1, float value2, bool standardFpscr) { ExecutionContext context = NativeInterface.GetContext(); FPCR fpcr = standardFpscr ? context.StandardFpcrValue : context.Fpcr; @@ -907,12 +920,25 @@ namespace ARMeilleure.Instructions return result; } - public static float FPCompareGE(float value1, float value2) + [UnmanagedCallersOnly] + public static float FPCompareEQFpscr(float value1, float value2, byte standardFpscr) { - return FPCompareGEFpscr(value1, value2, false); + return FPCompareEQFpscrImpl(value1, value2, standardFpscr == 1); } - public static float FPCompareGEFpscr(float value1, float value2, bool standardFpscr) + [UnmanagedCallersOnly] + public static float FPCompareGE(float value1, float value2) + { + return FPCompareGEFpscrImpl(value1, value2, false); + } + + [UnmanagedCallersOnly] + public static float FPCompareGEFpscr(float value1, float value2, byte standardFpscr) + { + return FPCompareGEFpscrImpl(value1, value2, standardFpscr == 1); + } + + private static float FPCompareGEFpscrImpl(float value1, float value2, bool standardFpscr) { ExecutionContext context = NativeInterface.GetContext(); FPCR fpcr = standardFpscr ? context.StandardFpcrValue : context.Fpcr; @@ -936,12 +962,19 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static float FPCompareGT(float value1, float value2) { - return FPCompareGTFpscr(value1, value2, false); + return FPCompareGTFpscrImpl(value1, value2, false); } - public static float FPCompareGTFpscr(float value1, float value2, bool standardFpscr) + [UnmanagedCallersOnly] + public static float FPCompareGTFpscr(float value1, float value2, byte standardFpscr) + { + return FPCompareGTFpscrImpl(value1, value2, standardFpscr == 1); + } + + private static float FPCompareGTFpscrImpl(float value1, float value2, bool standardFpscr) { ExecutionContext context = NativeInterface.GetContext(); FPCR fpcr = standardFpscr ? context.StandardFpcrValue : context.Fpcr; @@ -965,26 +998,31 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static float FPCompareLE(float value1, float value2) { - return FPCompareGE(value2, value1); + return FPCompareGEFpscrImpl(value2, value1, false); } + [UnmanagedCallersOnly] public static float FPCompareLT(float value1, float value2) { - return FPCompareGT(value2, value1); + return FPCompareGTFpscrImpl(value2, value1, false); } - public static float FPCompareLEFpscr(float value1, float value2, bool standardFpscr) + [UnmanagedCallersOnly] + public static float FPCompareLEFpscr(float value1, float value2, byte standardFpscr) { - return FPCompareGEFpscr(value2, value1, standardFpscr); + return FPCompareGEFpscrImpl(value2, value1, standardFpscr == 1); } - public static float FPCompareLTFpscr(float value1, float value2, bool standardFpscr) + [UnmanagedCallersOnly] + public static float FPCompareLTFpscr(float value1, float value2, byte standardFpscr) { - return FPCompareGTFpscr(value2, value1, standardFpscr); + return FPCompareGEFpscrImpl(value2, value1, standardFpscr == 1); } + [UnmanagedCallersOnly] public static float FPDiv(float value1, float value2) { ExecutionContext context = NativeInterface.GetContext(); @@ -1037,12 +1075,19 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static float FPMax(float value1, float value2) { - return FPMaxFpscr(value1, value2, false); + return FPMaxFpscrImpl(value1, value2, false); } - public static float FPMaxFpscr(float value1, float value2, bool standardFpscr) + [UnmanagedCallersOnly] + public static float FPMaxFpscr(float value1, float value2, byte standardFpscr) + { + return FPMaxFpscrImpl(value1, value2, standardFpscr == 1); + } + + private static float FPMaxFpscrImpl(float value1, float value2, bool standardFpscr) { ExecutionContext context = NativeInterface.GetContext(); FPCR fpcr = standardFpscr ? context.StandardFpcrValue : context.Fpcr; @@ -1103,12 +1148,13 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static float FPMaxNum(float value1, float value2) { - return FPMaxNumFpscr(value1, value2, false); + return FPMaxNumFpscrImpl(value1, value2, false); } - public static float FPMaxNumFpscr(float value1, float value2, bool standardFpscr) + private static float FPMaxNumFpscrImpl(float value1, float value2, bool standardFpscr) { ExecutionContext context = NativeInterface.GetContext(); FPCR fpcr = standardFpscr ? context.StandardFpcrValue : context.Fpcr; @@ -1125,15 +1171,28 @@ namespace ARMeilleure.Instructions value2 = FPInfinity(true); } - return FPMaxFpscr(value1, value2, standardFpscr); + return FPMaxFpscrImpl(value1, value2, standardFpscr); } + [UnmanagedCallersOnly] + public static float FPMaxNumFpscr(float value1, float value2, byte standardFpscr) + { + return FPMaxNumFpscrImpl(value1, value2, standardFpscr == 1); + } + + [UnmanagedCallersOnly] public static float FPMin(float value1, float value2) { - return FPMinFpscr(value1, value2, false); + return FPMinFpscrImpl(value1, value2, false); } - public static float FPMinFpscr(float value1, float value2, bool standardFpscr) + [UnmanagedCallersOnly] + public static float FPMinFpscr(float value1, float value2, byte standardFpscr) + { + return FPMinFpscrImpl(value1, value2, standardFpscr == 1); + } + + private static float FPMinFpscrImpl(float value1, float value2, bool standardFpscr) { ExecutionContext context = NativeInterface.GetContext(); FPCR fpcr = standardFpscr ? context.StandardFpcrValue : context.Fpcr; @@ -1194,12 +1253,19 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static float FPMinNum(float value1, float value2) { - return FPMinNumFpscr(value1, value2, false); + return FPMinNumFpscrImpl(value1, value2, false); } - public static float FPMinNumFpscr(float value1, float value2, bool standardFpscr) + [UnmanagedCallersOnly] + public static float FPMinNumFpscr(float value1, float value2, byte standardFpscr) + { + return FPMinNumFpscrImpl(value1, value2, standardFpscr == 1); + } + + private static float FPMinNumFpscrImpl(float value1, float value2, bool standardFpscr) { ExecutionContext context = NativeInterface.GetContext(); FPCR fpcr = standardFpscr ? context.StandardFpcrValue : context.Fpcr; @@ -1216,15 +1282,22 @@ namespace ARMeilleure.Instructions value2 = FPInfinity(false); } - return FPMinFpscr(value1, value2, standardFpscr); + return FPMinFpscrImpl(value1, value2, standardFpscr); } + [UnmanagedCallersOnly] public static float FPMul(float value1, float value2) { - return FPMulFpscr(value1, value2, false); + return FPMulFpscrImpl(value1, value2, false); } - public static float FPMulFpscr(float value1, float value2, bool standardFpscr) + [UnmanagedCallersOnly] + public static float FPMulFpscr(float value1, float value2, byte standardFpscr) + { + return FPMulFpscrImpl(value1, value2, standardFpscr == 1); + } + + private static float FPMulFpscrImpl(float value1, float value2, bool standardFpscr) { ExecutionContext context = NativeInterface.GetContext(); FPCR fpcr = standardFpscr ? context.StandardFpcrValue : context.Fpcr; @@ -1271,12 +1344,19 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static float FPMulAdd(float valueA, float value1, float value2) { - return FPMulAddFpscr(valueA, value1, value2, false); + return FPMulAddFpscrImpl(valueA, value1, value2, false); } - public static float FPMulAddFpscr(float valueA, float value1, float value2, bool standardFpscr) + [UnmanagedCallersOnly] + public static float FPMulAddFpscr(float valueA, float value1, float value2, byte standardFpscr) + { + return FPMulAddFpscrImpl(valueA, value1, value2, standardFpscr == 1); + } + + private static float FPMulAddFpscrImpl(float valueA, float value1, float value2, bool standardFpscr) { ExecutionContext context = NativeInterface.GetContext(); FPCR fpcr = standardFpscr ? context.StandardFpcrValue : context.Fpcr; @@ -1342,20 +1422,23 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static float FPMulSub(float valueA, float value1, float value2) { value1 = value1.FPNeg(); - return FPMulAdd(valueA, value1, value2); + return FPMulAddFpscrImpl(valueA, value1, value2, false); } - public static float FPMulSubFpscr(float valueA, float value1, float value2, bool standardFpscr) + [UnmanagedCallersOnly] + public static float FPMulSubFpscr(float valueA, float value1, float value2, byte standardFpscr) { value1 = value1.FPNeg(); - return FPMulAddFpscr(valueA, value1, value2, standardFpscr); + return FPMulAddFpscrImpl(valueA, value1, value2, standardFpscr == 1); } + [UnmanagedCallersOnly] public static float FPMulX(float value1, float value2) { ExecutionContext context = NativeInterface.GetContext(); @@ -1401,27 +1484,36 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static float FPNegMulAdd(float valueA, float value1, float value2) { valueA = valueA.FPNeg(); value1 = value1.FPNeg(); - return FPMulAdd(valueA, value1, value2); + return FPMulAddFpscrImpl(valueA, value1, value2, false); } + [UnmanagedCallersOnly] public static float FPNegMulSub(float valueA, float value1, float value2) { valueA = valueA.FPNeg(); - return FPMulAdd(valueA, value1, value2); + return FPMulAddFpscrImpl(valueA, value1, value2, false); } + [UnmanagedCallersOnly] public static float FPRecipEstimate(float value) { - return FPRecipEstimateFpscr(value, false); + return FPRecipEstimateFpscrImpl(value, false); } - public static float FPRecipEstimateFpscr(float value, bool standardFpscr) + [UnmanagedCallersOnly] + public static float FPRecipEstimateFpscr(float value, byte standardFpscr) + { + return FPRecipEstimateFpscrImpl(value, standardFpscr == 1); + } + + private static float FPRecipEstimateFpscrImpl(float value, bool standardFpscr) { ExecutionContext context = NativeInterface.GetContext(); FPCR fpcr = standardFpscr ? context.StandardFpcrValue : context.Fpcr; @@ -1508,6 +1600,7 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static float FPRecipStep(float value1, float value2) { ExecutionContext context = NativeInterface.GetContext(); @@ -1533,15 +1626,16 @@ namespace ARMeilleure.Instructions } else { - product = FPMulFpscr(value1, value2, true); + product = FPMulFpscrImpl(value1, value2, true); } - result = FPSubFpscr(FPTwo(false), product, true); + result = FPSubFpscrImpl(FPTwo(false), product, true); } return result; } + [UnmanagedCallersOnly] public static float FPRecipStepFused(float value1, float value2) { ExecutionContext context = NativeInterface.GetContext(); @@ -1585,6 +1679,7 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static float FPRecpX(float value) { ExecutionContext context = NativeInterface.GetContext(); @@ -1610,12 +1705,19 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static float FPRSqrtEstimate(float value) { - return FPRSqrtEstimateFpscr(value, false); + return FPRSqrtEstimateFpscrImpl(value, false); } - public static float FPRSqrtEstimateFpscr(float value, bool standardFpscr) + [UnmanagedCallersOnly] + public static float FPRSqrtEstimateFpscr(float value, byte standardFpscr) + { + return FPRSqrtEstimateFpscrImpl(value, standardFpscr == 1); + } + + private static float FPRSqrtEstimateFpscrImpl(float value, bool standardFpscr) { ExecutionContext context = NativeInterface.GetContext(); FPCR fpcr = standardFpscr ? context.StandardFpcrValue : context.Fpcr; @@ -1729,6 +1831,7 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static float FPRSqrtStep(float value1, float value2) { ExecutionContext context = NativeInterface.GetContext(); @@ -1754,7 +1857,7 @@ namespace ARMeilleure.Instructions } else { - product = FPMulFpscr(value1, value2, true); + product = FPMulFpscrImpl(value1, value2, true); } result = FPHalvedSub(FPThree(false), product, context, fpcr); @@ -1763,6 +1866,7 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static float FPRSqrtStepFused(float value1, float value2) { ExecutionContext context = NativeInterface.GetContext(); @@ -1806,6 +1910,7 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static float FPSqrt(float value) { ExecutionContext context = NativeInterface.GetContext(); @@ -1848,12 +1953,13 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static float FPSub(float value1, float value2) { - return FPSubFpscr(value1, value2, false); + return FPSubFpscrImpl(value1, value2, false); } - public static float FPSubFpscr(float value1, float value2, bool standardFpscr) + private static float FPSubFpscrImpl(float value1, float value2, bool standardFpscr) { ExecutionContext context = NativeInterface.GetContext(); FPCR fpcr = standardFpscr ? context.StandardFpcrValue : context.Fpcr; @@ -2094,6 +2200,7 @@ namespace ARMeilleure.Instructions static class SoftFloat64_16 { + [UnmanagedCallersOnly] public static ushort FPConvert(double value) { ExecutionContext context = NativeInterface.GetContext(); @@ -2213,12 +2320,19 @@ namespace ARMeilleure.Instructions static class SoftFloat64 { + [UnmanagedCallersOnly] public static double FPAdd(double value1, double value2) { - return FPAddFpscr(value1, value2, false); + return FPAddFpscrImpl(value1, value2, false); } - public static double FPAddFpscr(double value1, double value2, bool standardFpscr) + [UnmanagedCallersOnly] + public static double FPAddFpscr(double value1, double value2, byte standardFpscr) + { + return FPAddFpscrImpl(value1, value2, standardFpscr == 1); + } + + private static double FPAddFpscrImpl(double value1, double value2, bool standardFpscr) { ExecutionContext context = NativeInterface.GetContext(); FPCR fpcr = standardFpscr ? context.StandardFpcrValue : context.Fpcr; @@ -2269,7 +2383,8 @@ namespace ARMeilleure.Instructions return result; } - public static int FPCompare(double value1, double value2, bool signalNaNs) + [UnmanagedCallersOnly] + public static int FPCompare(double value1, double value2, byte signalNaNs) { ExecutionContext context = NativeInterface.GetContext(); FPCR fpcr = context.Fpcr; @@ -2283,7 +2398,7 @@ namespace ARMeilleure.Instructions { result = 0b0011; - if (type1 == FPType.SNaN || type2 == FPType.SNaN || signalNaNs) + if (type1 == FPType.SNaN || type2 == FPType.SNaN || signalNaNs == 1) { SoftFloat.FPProcessException(FPException.InvalidOp, context, fpcr); } @@ -2307,12 +2422,19 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static double FPCompareEQ(double value1, double value2) { - return FPCompareEQFpscr(value1, value2, false); + return FPCompareEQFpscrImpl(value1, value2, false); } - public static double FPCompareEQFpscr(double value1, double value2, bool standardFpscr) + [UnmanagedCallersOnly] + public static double FPCompareEQFpscr(double value1, double value2, byte standardFpscr) + { + return FPCompareEQFpscrImpl(value1, value2, standardFpscr == 1); + } + + private static double FPCompareEQFpscrImpl(double value1, double value2, bool standardFpscr) { ExecutionContext context = NativeInterface.GetContext(); FPCR fpcr = standardFpscr ? context.StandardFpcrValue : context.Fpcr; @@ -2339,12 +2461,19 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static double FPCompareGE(double value1, double value2) { - return FPCompareGEFpscr(value1, value2, false); + return FPCompareGEFpscrImpl(value1, value2, false); } - public static double FPCompareGEFpscr(double value1, double value2, bool standardFpscr) + [UnmanagedCallersOnly] + public static double FPCompareGEFpscr(double value1, double value2, byte standardFpscr) + { + return FPCompareGEFpscrImpl(value1, value2, standardFpscr == 1); + } + + private static double FPCompareGEFpscrImpl(double value1, double value2, bool standardFpscr) { ExecutionContext context = NativeInterface.GetContext(); FPCR fpcr = standardFpscr ? context.StandardFpcrValue : context.Fpcr; @@ -2368,12 +2497,19 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static double FPCompareGT(double value1, double value2) { - return FPCompareGTFpscr(value1, value2, false); + return FPCompareGTFpscrImpl(value1, value2, false); } - public static double FPCompareGTFpscr(double value1, double value2, bool standardFpscr) + [UnmanagedCallersOnly] + public static double FPCompareGTFpscr(double value1, double value2, byte standardFpscr) + { + return FPCompareGTFpscrImpl(value1, value2, standardFpscr == 1); + } + + private static double FPCompareGTFpscrImpl(double value1, double value2, bool standardFpscr) { ExecutionContext context = NativeInterface.GetContext(); FPCR fpcr = standardFpscr ? context.StandardFpcrValue : context.Fpcr; @@ -2397,26 +2533,31 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static double FPCompareLE(double value1, double value2) { - return FPCompareGE(value2, value1); + return FPCompareGEFpscrImpl(value2, value1, false); } + [UnmanagedCallersOnly] public static double FPCompareLT(double value1, double value2) { - return FPCompareGT(value2, value1); + return FPCompareGTFpscrImpl(value2, value1, false); } - public static double FPCompareLEFpscr(double value1, double value2, bool standardFpscr) + [UnmanagedCallersOnly] + public static double FPCompareLEFpscr(double value1, double value2, byte standardFpscr) { - return FPCompareGEFpscr(value2, value1, standardFpscr); + return FPCompareGEFpscrImpl(value2, value1, standardFpscr == 1); } - public static double FPCompareLTFpscr(double value1, double value2, bool standardFpscr) + [UnmanagedCallersOnly] + public static double FPCompareLTFpscr(double value1, double value2, byte standardFpscr) { - return FPCompareGTFpscr(value2, value1, standardFpscr); + return FPCompareGTFpscrImpl(value2, value1, standardFpscr == 1); } + [UnmanagedCallersOnly] public static double FPDiv(double value1, double value2) { ExecutionContext context = NativeInterface.GetContext(); @@ -2469,12 +2610,19 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static double FPMax(double value1, double value2) { - return FPMaxFpscr(value1, value2, false); + return FPMaxFpscrImpl(value1, value2, false); } - public static double FPMaxFpscr(double value1, double value2, bool standardFpscr) + [UnmanagedCallersOnly] + public static double FPMaxFpscr(double value1, double value2, byte standardFpscr) + { + return FPMaxFpscrImpl(value1, value2, standardFpscr == 1); + } + + private static double FPMaxFpscrImpl(double value1, double value2, bool standardFpscr) { ExecutionContext context = NativeInterface.GetContext(); FPCR fpcr = standardFpscr ? context.StandardFpcrValue : context.Fpcr; @@ -2535,12 +2683,19 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static double FPMaxNum(double value1, double value2) { - return FPMaxNumFpscr(value1, value2, false); + return FPMaxNumFpscrImpl(value1, value2, false); } - public static double FPMaxNumFpscr(double value1, double value2, bool standardFpscr) + [UnmanagedCallersOnly] + public static double FPMaxNumFpscr(double value1, double value2, byte standardFpscr) + { + return FPMaxNumFpscrImpl(value1, value2, standardFpscr == 1); + } + + private static double FPMaxNumFpscrImpl(double value1, double value2, bool standardFpscr) { ExecutionContext context = NativeInterface.GetContext(); FPCR fpcr = standardFpscr ? context.StandardFpcrValue : context.Fpcr; @@ -2557,15 +2712,22 @@ namespace ARMeilleure.Instructions value2 = FPInfinity(true); } - return FPMaxFpscr(value1, value2, standardFpscr); + return FPMaxFpscrImpl(value1, value2, standardFpscr); } + [UnmanagedCallersOnly] public static double FPMin(double value1, double value2) { - return FPMinFpscr(value1, value2, false); + return FPMinFpscrImpl(value1, value2, false); } - public static double FPMinFpscr(double value1, double value2, bool standardFpscr) + [UnmanagedCallersOnly] + public static double FPMinFpscr(double value1, double value2, byte standardFpscr) + { + return FPMinFpscrImpl(value1, value2, standardFpscr == 1); + } + + private static double FPMinFpscrImpl(double value1, double value2, bool standardFpscr) { ExecutionContext context = NativeInterface.GetContext(); FPCR fpcr = standardFpscr ? context.StandardFpcrValue : context.Fpcr; @@ -2626,12 +2788,19 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static double FPMinNum(double value1, double value2) { - return FPMinNumFpscr(value1, value2, false); + return FPMinNumFpscrImpl(value1, value2, false); } - public static double FPMinNumFpscr(double value1, double value2, bool standardFpscr) + [UnmanagedCallersOnly] + public static double FPMinNumFpscr(double value1, double value2, byte standardFpscr) + { + return FPMinNumFpscrImpl(value1, value2, standardFpscr == 1); + } + + private static double FPMinNumFpscrImpl(double value1, double value2, bool standardFpscr) { ExecutionContext context = NativeInterface.GetContext(); FPCR fpcr = standardFpscr ? context.StandardFpcrValue : context.Fpcr; @@ -2648,15 +2817,22 @@ namespace ARMeilleure.Instructions value2 = FPInfinity(false); } - return FPMinFpscr(value1, value2, standardFpscr); + return FPMinFpscrImpl(value1, value2, standardFpscr); } + [UnmanagedCallersOnly] public static double FPMul(double value1, double value2) { - return FPMulFpscr(value1, value2, false); + return FPMulFpscrImpl(value1, value2, false); } - public static double FPMulFpscr(double value1, double value2, bool standardFpscr) + [UnmanagedCallersOnly] + public static double FPMulFpscr(double value1, double value2, byte standardFpscr) + { + return FPMulFpscrImpl(value1, value2, standardFpscr == 1); + } + + private static double FPMulFpscrImpl(double value1, double value2, bool standardFpscr) { ExecutionContext context = NativeInterface.GetContext(); FPCR fpcr = standardFpscr ? context.StandardFpcrValue : context.Fpcr; @@ -2703,12 +2879,19 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static double FPMulAdd(double valueA, double value1, double value2) { - return FPMulAddFpscr(valueA, value1, value2, false); + return FPMulAddFpscrImpl(valueA, value1, value2, false); } - public static double FPMulAddFpscr(double valueA, double value1, double value2, bool standardFpscr) + [UnmanagedCallersOnly] + public static double FPMulAddFpscr(double valueA, double value1, double value2, byte standardFpscr) + { + return FPMulAddFpscrImpl(valueA, value1, value2, standardFpscr == 1); + } + + private static double FPMulAddFpscrImpl(double valueA, double value1, double value2, bool standardFpscr) { ExecutionContext context = NativeInterface.GetContext(); FPCR fpcr = standardFpscr ? context.StandardFpcrValue : context.Fpcr; @@ -2774,20 +2957,23 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static double FPMulSub(double valueA, double value1, double value2) { value1 = value1.FPNeg(); - return FPMulAdd(valueA, value1, value2); + return FPMulAddFpscrImpl(valueA, value1, value2, false); } - public static double FPMulSubFpscr(double valueA, double value1, double value2, bool standardFpscr) + [UnmanagedCallersOnly] + public static double FPMulSubFpscr(double valueA, double value1, double value2, byte standardFpscr) { value1 = value1.FPNeg(); - return FPMulAddFpscr(valueA, value1, value2, standardFpscr); + return FPMulAddFpscrImpl(valueA, value1, value2, standardFpscr == 1); } + [UnmanagedCallersOnly] public static double FPMulX(double value1, double value2) { ExecutionContext context = NativeInterface.GetContext(); @@ -2833,27 +3019,36 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static double FPNegMulAdd(double valueA, double value1, double value2) { valueA = valueA.FPNeg(); value1 = value1.FPNeg(); - return FPMulAdd(valueA, value1, value2); + return FPMulAddFpscrImpl(valueA, value1, value2, false); } + [UnmanagedCallersOnly] public static double FPNegMulSub(double valueA, double value1, double value2) { valueA = valueA.FPNeg(); - return FPMulAdd(valueA, value1, value2); + return FPMulAddFpscrImpl(valueA, value1, value2, false); } + [UnmanagedCallersOnly] public static double FPRecipEstimate(double value) { - return FPRecipEstimateFpscr(value, false); + return FPRecipEstimateFpscrImpl(value, false); } - public static double FPRecipEstimateFpscr(double value, bool standardFpscr) + [UnmanagedCallersOnly] + public static double FPRecipEstimateFpscr(double value, byte standardFpscr) + { + return FPRecipEstimateFpscrImpl(value, standardFpscr == 1); + } + + private static double FPRecipEstimateFpscrImpl(double value, bool standardFpscr) { ExecutionContext context = NativeInterface.GetContext(); FPCR fpcr = standardFpscr ? context.StandardFpcrValue : context.Fpcr; @@ -2940,6 +3135,7 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static double FPRecipStep(double value1, double value2) { ExecutionContext context = NativeInterface.GetContext(); @@ -2965,7 +3161,7 @@ namespace ARMeilleure.Instructions } else { - product = FPMulFpscr(value1, value2, true); + product = FPMulFpscrImpl(value1, value2, true); } result = FPSubFpscr(FPTwo(false), product, true); @@ -2974,6 +3170,7 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static double FPRecipStepFused(double value1, double value2) { ExecutionContext context = NativeInterface.GetContext(); @@ -3017,6 +3214,7 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static double FPRecpX(double value) { ExecutionContext context = NativeInterface.GetContext(); @@ -3042,12 +3240,19 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static double FPRSqrtEstimate(double value) { - return FPRSqrtEstimateFpscr(value, false); + return FPRSqrtEstimateFpscrImpl(value, false); } - public static double FPRSqrtEstimateFpscr(double value, bool standardFpscr) + [UnmanagedCallersOnly] + public static double FPRSqrtEstimateFpscr(double value, byte standardFpscr) + { + return FPRSqrtEstimateFpscrImpl(value, standardFpscr == 1); + } + + private static double FPRSqrtEstimateFpscrImpl(double value, bool standardFpscr) { ExecutionContext context = NativeInterface.GetContext(); FPCR fpcr = standardFpscr ? context.StandardFpcrValue : context.Fpcr; @@ -3161,6 +3366,7 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static double FPRSqrtStep(double value1, double value2) { ExecutionContext context = NativeInterface.GetContext(); @@ -3186,7 +3392,7 @@ namespace ARMeilleure.Instructions } else { - product = FPMulFpscr(value1, value2, true); + product = FPMulFpscrImpl(value1, value2, true); } result = FPHalvedSub(FPThree(false), product, context, fpcr); @@ -3195,6 +3401,7 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static double FPRSqrtStepFused(double value1, double value2) { ExecutionContext context = NativeInterface.GetContext(); @@ -3238,6 +3445,7 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static double FPSqrt(double value) { ExecutionContext context = NativeInterface.GetContext(); @@ -3280,6 +3488,7 @@ namespace ARMeilleure.Instructions return result; } + [UnmanagedCallersOnly] public static double FPSub(double value1, double value2) { return FPSubFpscr(value1, value2, false); diff --git a/src/ARMeilleure/Translation/DelegateInfo.cs b/src/ARMeilleure/Translation/DelegateInfo.cs index d3b535de1..64ee7bc9c 100644 --- a/src/ARMeilleure/Translation/DelegateInfo.cs +++ b/src/ARMeilleure/Translation/DelegateInfo.cs @@ -4,15 +4,9 @@ namespace ARMeilleure.Translation { class DelegateInfo { -#pragma warning disable IDE0052 // Remove unread private member - private readonly Delegate _dlg; // Ensure that this delegate will not be garbage collected. -#pragma warning restore IDE0052 - - public nint FuncPtr { get; } - - public DelegateInfo(Delegate dlg, nint funcPtr) + public nint FuncPtr { get; private set; } + public DelegateInfo(nint funcPtr) { - _dlg = dlg; FuncPtr = funcPtr; } } diff --git a/src/ARMeilleure/Translation/Delegates.cs b/src/ARMeilleure/Translation/Delegates.cs index d8c1cfd58..d4f46108c 100644 --- a/src/ARMeilleure/Translation/Delegates.cs +++ b/src/ARMeilleure/Translation/Delegates.cs @@ -1,9 +1,7 @@ using ARMeilleure.Instructions; -using ARMeilleure.State; using System; using System.Collections.Generic; using System.Reflection; -using System.Runtime.InteropServices; namespace ARMeilleure.Translation { @@ -34,21 +32,7 @@ namespace ARMeilleure.Translation return _delegates.Values[index].FuncPtr; // O(1). } - - public static nint GetDelegateFuncPtr(MethodInfo info) - { - ArgumentNullException.ThrowIfNull(info); - - string key = GetKey(info); - - if (!_delegates.TryGetValue(key, out DelegateInfo dlgInfo)) // O(log(n)). - { - throw new KeyNotFoundException($"({nameof(key)} = {key})"); - } - - return dlgInfo.FuncPtr; - } - + public static int GetDelegateIndex(MethodInfo info) { ArgumentNullException.ThrowIfNull(info); @@ -64,12 +48,12 @@ namespace ARMeilleure.Translation return index; } - - private static void SetDelegateInfo(Delegate dlg, nint funcPtr) + + private static void SetDelegateInfo(MethodInfo method) { - string key = GetKey(dlg.Method); + string key = GetKey(method); - _delegates.Add(key, new DelegateInfo(dlg, funcPtr)); // ArgumentException (key). + _delegates.Add(key, new DelegateInfo(method.MethodHandle.GetFunctionPointer())); // ArgumentException (key). } private static string GetKey(MethodInfo info) @@ -83,528 +67,179 @@ namespace ARMeilleure.Translation { _delegates = new SortedList(); - var dlgMathAbs = new MathAbs(Math.Abs); - var dlgMathCeiling = new MathCeiling(Math.Ceiling); - var dlgMathFloor = new MathFloor(Math.Floor); - var dlgMathRound = new MathRound(Math.Round); - var dlgMathTruncate = new MathTruncate(Math.Truncate); + SetDelegateInfo(typeof(MathHelper).GetMethod(nameof(MathHelper.Abs))); + SetDelegateInfo(typeof(MathHelper).GetMethod(nameof(MathHelper.Ceiling))); + SetDelegateInfo(typeof(MathHelper).GetMethod(nameof(MathHelper.Floor))); + SetDelegateInfo(typeof(MathHelper).GetMethod(nameof(MathHelper.Round))); + SetDelegateInfo(typeof(MathHelper).GetMethod(nameof(MathHelper.Truncate))); - var dlgMathFAbs = new MathFAbs(MathF.Abs); - var dlgMathFCeiling = new MathFCeiling(MathF.Ceiling); - var dlgMathFFloor = new MathFFloor(MathF.Floor); - var dlgMathFRound = new MathFRound(MathF.Round); - var dlgMathFTruncate = new MathFTruncate(MathF.Truncate); + SetDelegateInfo(typeof(MathHelperF).GetMethod(nameof(MathHelperF.Abs))); + SetDelegateInfo(typeof(MathHelperF).GetMethod(nameof(MathHelperF.Ceiling))); + SetDelegateInfo(typeof(MathHelperF).GetMethod(nameof(MathHelperF.Floor))); + SetDelegateInfo(typeof(MathHelperF).GetMethod(nameof(MathHelperF.Round))); + SetDelegateInfo(typeof(MathHelperF).GetMethod(nameof(MathHelperF.Truncate))); - var dlgNativeInterfaceBreak = new NativeInterfaceBreak(NativeInterface.Break); - var dlgNativeInterfaceCheckSynchronization = new NativeInterfaceCheckSynchronization(NativeInterface.CheckSynchronization); - var dlgNativeInterfaceEnqueueForRejit = new NativeInterfaceEnqueueForRejit(NativeInterface.EnqueueForRejit); - var dlgNativeInterfaceGetCntfrqEl0 = new NativeInterfaceGetCntfrqEl0(NativeInterface.GetCntfrqEl0); - var dlgNativeInterfaceGetCntpctEl0 = new NativeInterfaceGetCntpctEl0(NativeInterface.GetCntpctEl0); - var dlgNativeInterfaceGetCntvctEl0 = new NativeInterfaceGetCntvctEl0(NativeInterface.GetCntvctEl0); - var dlgNativeInterfaceGetCtrEl0 = new NativeInterfaceGetCtrEl0(NativeInterface.GetCtrEl0); - var dlgNativeInterfaceGetDczidEl0 = new NativeInterfaceGetDczidEl0(NativeInterface.GetDczidEl0); - var dlgNativeInterfaceGetFunctionAddress = new NativeInterfaceGetFunctionAddress(NativeInterface.GetFunctionAddress); - var dlgNativeInterfaceInvalidateCacheLine = new NativeInterfaceInvalidateCacheLine(NativeInterface.InvalidateCacheLine); - var dlgNativeInterfaceReadByte = new NativeInterfaceReadByte(NativeInterface.ReadByte); - var dlgNativeInterfaceReadUInt16 = new NativeInterfaceReadUInt16(NativeInterface.ReadUInt16); - var dlgNativeInterfaceReadUInt32 = new NativeInterfaceReadUInt32(NativeInterface.ReadUInt32); - var dlgNativeInterfaceReadUInt64 = new NativeInterfaceReadUInt64(NativeInterface.ReadUInt64); - var dlgNativeInterfaceReadVector128 = new NativeInterfaceReadVector128(NativeInterface.ReadVector128); - var dlgNativeInterfaceSignalMemoryTracking = new NativeInterfaceSignalMemoryTracking(NativeInterface.SignalMemoryTracking); - var dlgNativeInterfaceSupervisorCall = new NativeInterfaceSupervisorCall(NativeInterface.SupervisorCall); - var dlgNativeInterfaceThrowInvalidMemoryAccess = new NativeInterfaceThrowInvalidMemoryAccess(NativeInterface.ThrowInvalidMemoryAccess); - var dlgNativeInterfaceUndefined = new NativeInterfaceUndefined(NativeInterface.Undefined); - var dlgNativeInterfaceWriteByte = new NativeInterfaceWriteByte(NativeInterface.WriteByte); - var dlgNativeInterfaceWriteUInt16 = new NativeInterfaceWriteUInt16(NativeInterface.WriteUInt16); - var dlgNativeInterfaceWriteUInt32 = new NativeInterfaceWriteUInt32(NativeInterface.WriteUInt32); - var dlgNativeInterfaceWriteUInt64 = new NativeInterfaceWriteUInt64(NativeInterface.WriteUInt64); - var dlgNativeInterfaceWriteVector128 = new NativeInterfaceWriteVector128(NativeInterface.WriteVector128); + SetDelegateInfo(typeof(NativeInterface).GetMethod(nameof(NativeInterface.Break))); + SetDelegateInfo(typeof(NativeInterface).GetMethod(nameof(NativeInterface.CheckSynchronization))); + SetDelegateInfo(typeof(NativeInterface).GetMethod(nameof(NativeInterface.EnqueueForRejit))); + SetDelegateInfo(typeof(NativeInterface).GetMethod(nameof(NativeInterface.GetCntfrqEl0))); + SetDelegateInfo(typeof(NativeInterface).GetMethod(nameof(NativeInterface.GetCntpctEl0))); + SetDelegateInfo(typeof(NativeInterface).GetMethod(nameof(NativeInterface.GetCntvctEl0))); + SetDelegateInfo(typeof(NativeInterface).GetMethod(nameof(NativeInterface.GetCtrEl0))); + SetDelegateInfo(typeof(NativeInterface).GetMethod(nameof(NativeInterface.GetDczidEl0))); + SetDelegateInfo(typeof(NativeInterface).GetMethod(nameof(NativeInterface.GetFunctionAddress))); + SetDelegateInfo(typeof(NativeInterface).GetMethod(nameof(NativeInterface.InvalidateCacheLine))); + SetDelegateInfo(typeof(NativeInterface).GetMethod(nameof(NativeInterface.ReadByte))); + SetDelegateInfo(typeof(NativeInterface).GetMethod(nameof(NativeInterface.ReadUInt16))); + SetDelegateInfo(typeof(NativeInterface).GetMethod(nameof(NativeInterface.ReadUInt32))); + SetDelegateInfo(typeof(NativeInterface).GetMethod(nameof(NativeInterface.ReadUInt64))); + SetDelegateInfo(typeof(NativeInterface).GetMethod(nameof(NativeInterface.ReadVector128))); + SetDelegateInfo(typeof(NativeInterface).GetMethod(nameof(NativeInterface.SignalMemoryTracking))); + SetDelegateInfo(typeof(NativeInterface).GetMethod(nameof(NativeInterface.SupervisorCall))); + SetDelegateInfo(typeof(NativeInterface).GetMethod(nameof(NativeInterface.ThrowInvalidMemoryAccess))); + SetDelegateInfo(typeof(NativeInterface).GetMethod(nameof(NativeInterface.Undefined))); + SetDelegateInfo(typeof(NativeInterface).GetMethod(nameof(NativeInterface.WriteByte))); + SetDelegateInfo(typeof(NativeInterface).GetMethod(nameof(NativeInterface.WriteUInt16))); + SetDelegateInfo(typeof(NativeInterface).GetMethod(nameof(NativeInterface.WriteUInt32))); + SetDelegateInfo(typeof(NativeInterface).GetMethod(nameof(NativeInterface.WriteUInt64))); + SetDelegateInfo(typeof(NativeInterface).GetMethod(nameof(NativeInterface.WriteVector128))); - var dlgSoftFallbackCountLeadingSigns = new SoftFallbackCountLeadingSigns(SoftFallback.CountLeadingSigns); - var dlgSoftFallbackCountLeadingZeros = new SoftFallbackCountLeadingZeros(SoftFallback.CountLeadingZeros); - var dlgSoftFallbackCrc32b = new SoftFallbackCrc32b(SoftFallback.Crc32b); - var dlgSoftFallbackCrc32cb = new SoftFallbackCrc32cb(SoftFallback.Crc32cb); - var dlgSoftFallbackCrc32ch = new SoftFallbackCrc32ch(SoftFallback.Crc32ch); - var dlgSoftFallbackCrc32cw = new SoftFallbackCrc32cw(SoftFallback.Crc32cw); - var dlgSoftFallbackCrc32cx = new SoftFallbackCrc32cx(SoftFallback.Crc32cx); - var dlgSoftFallbackCrc32h = new SoftFallbackCrc32h(SoftFallback.Crc32h); - var dlgSoftFallbackCrc32w = new SoftFallbackCrc32w(SoftFallback.Crc32w); - var dlgSoftFallbackCrc32x = new SoftFallbackCrc32x(SoftFallback.Crc32x); - var dlgSoftFallbackDecrypt = new SoftFallbackDecrypt(SoftFallback.Decrypt); - var dlgSoftFallbackEncrypt = new SoftFallbackEncrypt(SoftFallback.Encrypt); - var dlgSoftFallbackFixedRotate = new SoftFallbackFixedRotate(SoftFallback.FixedRotate); - var dlgSoftFallbackHashChoose = new SoftFallbackHashChoose(SoftFallback.HashChoose); - var dlgSoftFallbackHashLower = new SoftFallbackHashLower(SoftFallback.HashLower); - var dlgSoftFallbackHashMajority = new SoftFallbackHashMajority(SoftFallback.HashMajority); - var dlgSoftFallbackHashParity = new SoftFallbackHashParity(SoftFallback.HashParity); - var dlgSoftFallbackHashUpper = new SoftFallbackHashUpper(SoftFallback.HashUpper); - var dlgSoftFallbackInverseMixColumns = new SoftFallbackInverseMixColumns(SoftFallback.InverseMixColumns); - var dlgSoftFallbackMixColumns = new SoftFallbackMixColumns(SoftFallback.MixColumns); - var dlgSoftFallbackPolynomialMult64_128 = new SoftFallbackPolynomialMult64_128(SoftFallback.PolynomialMult64_128); - var dlgSoftFallbackSatF32ToS32 = new SoftFallbackSatF32ToS32(SoftFallback.SatF32ToS32); - var dlgSoftFallbackSatF32ToS64 = new SoftFallbackSatF32ToS64(SoftFallback.SatF32ToS64); - var dlgSoftFallbackSatF32ToU32 = new SoftFallbackSatF32ToU32(SoftFallback.SatF32ToU32); - var dlgSoftFallbackSatF32ToU64 = new SoftFallbackSatF32ToU64(SoftFallback.SatF32ToU64); - var dlgSoftFallbackSatF64ToS32 = new SoftFallbackSatF64ToS32(SoftFallback.SatF64ToS32); - var dlgSoftFallbackSatF64ToS64 = new SoftFallbackSatF64ToS64(SoftFallback.SatF64ToS64); - var dlgSoftFallbackSatF64ToU32 = new SoftFallbackSatF64ToU32(SoftFallback.SatF64ToU32); - var dlgSoftFallbackSatF64ToU64 = new SoftFallbackSatF64ToU64(SoftFallback.SatF64ToU64); - var dlgSoftFallbackSha1SchedulePart1 = new SoftFallbackSha1SchedulePart1(SoftFallback.Sha1SchedulePart1); - var dlgSoftFallbackSha1SchedulePart2 = new SoftFallbackSha1SchedulePart2(SoftFallback.Sha1SchedulePart2); - var dlgSoftFallbackSha256SchedulePart1 = new SoftFallbackSha256SchedulePart1(SoftFallback.Sha256SchedulePart1); - var dlgSoftFallbackSha256SchedulePart2 = new SoftFallbackSha256SchedulePart2(SoftFallback.Sha256SchedulePart2); - var dlgSoftFallbackSignedShrImm64 = new SoftFallbackSignedShrImm64(SoftFallback.SignedShrImm64); - var dlgSoftFallbackTbl1 = new SoftFallbackTbl1(SoftFallback.Tbl1); - var dlgSoftFallbackTbl2 = new SoftFallbackTbl2(SoftFallback.Tbl2); - var dlgSoftFallbackTbl3 = new SoftFallbackTbl3(SoftFallback.Tbl3); - var dlgSoftFallbackTbl4 = new SoftFallbackTbl4(SoftFallback.Tbl4); - var dlgSoftFallbackTbx1 = new SoftFallbackTbx1(SoftFallback.Tbx1); - var dlgSoftFallbackTbx2 = new SoftFallbackTbx2(SoftFallback.Tbx2); - var dlgSoftFallbackTbx3 = new SoftFallbackTbx3(SoftFallback.Tbx3); - var dlgSoftFallbackTbx4 = new SoftFallbackTbx4(SoftFallback.Tbx4); - var dlgSoftFallbackUnsignedShrImm64 = new SoftFallbackUnsignedShrImm64(SoftFallback.UnsignedShrImm64); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.CountLeadingSigns))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.CountLeadingZeros))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.Crc32b))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.Crc32cb))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.Crc32ch))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.Crc32cw))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.Crc32cx))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.Crc32h))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.Crc32w))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.Crc32x))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.Decrypt))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.Encrypt))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.FixedRotate))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.HashChoose))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.HashLower))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.HashMajority))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.HashParity))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.HashUpper))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.InverseMixColumns))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.MixColumns))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.PolynomialMult64_128))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.SatF32ToS32))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.SatF32ToS64))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.SatF32ToU32))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.SatF32ToU64))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.SatF64ToS32))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.SatF64ToS64))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.SatF64ToU32))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.SatF64ToU64))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.Sha1SchedulePart1))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.Sha1SchedulePart2))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.Sha256SchedulePart1))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.Sha256SchedulePart2))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.SignedShrImm64))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.Tbl1))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.Tbl2))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.Tbl3))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.Tbl4))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.Tbx1))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.Tbx2))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.Tbx3))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.Tbx4))); + SetDelegateInfo(typeof(SoftFallback).GetMethod(nameof(SoftFallback.UnsignedShrImm64))); - var dlgSoftFloat16_32FPConvert = new SoftFloat16_32FPConvert(SoftFloat16_32.FPConvert); - var dlgSoftFloat16_64FPConvert = new SoftFloat16_64FPConvert(SoftFloat16_64.FPConvert); + SetDelegateInfo(typeof(SoftFloat16_32).GetMethod(nameof(SoftFloat16_32.FPConvert))); + SetDelegateInfo(typeof(SoftFloat16_64).GetMethod(nameof(SoftFloat16_64.FPConvert))); - var dlgSoftFloat32FPAdd = new SoftFloat32FPAdd(SoftFloat32.FPAdd); - var dlgSoftFloat32FPAddFpscr = new SoftFloat32FPAddFpscr(SoftFloat32.FPAddFpscr); // A32 only. - var dlgSoftFloat32FPCompare = new SoftFloat32FPCompare(SoftFloat32.FPCompare); - var dlgSoftFloat32FPCompareEQ = new SoftFloat32FPCompareEQ(SoftFloat32.FPCompareEQ); - var dlgSoftFloat32FPCompareEQFpscr = new SoftFloat32FPCompareEQFpscr(SoftFloat32.FPCompareEQFpscr); // A32 only. - var dlgSoftFloat32FPCompareGE = new SoftFloat32FPCompareGE(SoftFloat32.FPCompareGE); - var dlgSoftFloat32FPCompareGEFpscr = new SoftFloat32FPCompareGEFpscr(SoftFloat32.FPCompareGEFpscr); // A32 only. - var dlgSoftFloat32FPCompareGT = new SoftFloat32FPCompareGT(SoftFloat32.FPCompareGT); - var dlgSoftFloat32FPCompareGTFpscr = new SoftFloat32FPCompareGTFpscr(SoftFloat32.FPCompareGTFpscr); // A32 only. - var dlgSoftFloat32FPCompareLE = new SoftFloat32FPCompareLE(SoftFloat32.FPCompareLE); - var dlgSoftFloat32FPCompareLEFpscr = new SoftFloat32FPCompareLEFpscr(SoftFloat32.FPCompareLEFpscr); // A32 only. - var dlgSoftFloat32FPCompareLT = new SoftFloat32FPCompareLT(SoftFloat32.FPCompareLT); - var dlgSoftFloat32FPCompareLTFpscr = new SoftFloat32FPCompareLTFpscr(SoftFloat32.FPCompareLTFpscr); // A32 only. - var dlgSoftFloat32FPDiv = new SoftFloat32FPDiv(SoftFloat32.FPDiv); - var dlgSoftFloat32FPMax = new SoftFloat32FPMax(SoftFloat32.FPMax); - var dlgSoftFloat32FPMaxFpscr = new SoftFloat32FPMaxFpscr(SoftFloat32.FPMaxFpscr); // A32 only. - var dlgSoftFloat32FPMaxNum = new SoftFloat32FPMaxNum(SoftFloat32.FPMaxNum); - var dlgSoftFloat32FPMaxNumFpscr = new SoftFloat32FPMaxNumFpscr(SoftFloat32.FPMaxNumFpscr); // A32 only. - var dlgSoftFloat32FPMin = new SoftFloat32FPMin(SoftFloat32.FPMin); - var dlgSoftFloat32FPMinFpscr = new SoftFloat32FPMinFpscr(SoftFloat32.FPMinFpscr); // A32 only. - var dlgSoftFloat32FPMinNum = new SoftFloat32FPMinNum(SoftFloat32.FPMinNum); - var dlgSoftFloat32FPMinNumFpscr = new SoftFloat32FPMinNumFpscr(SoftFloat32.FPMinNumFpscr); // A32 only. - var dlgSoftFloat32FPMul = new SoftFloat32FPMul(SoftFloat32.FPMul); - var dlgSoftFloat32FPMulFpscr = new SoftFloat32FPMulFpscr(SoftFloat32.FPMulFpscr); // A32 only. - var dlgSoftFloat32FPMulAdd = new SoftFloat32FPMulAdd(SoftFloat32.FPMulAdd); - var dlgSoftFloat32FPMulAddFpscr = new SoftFloat32FPMulAddFpscr(SoftFloat32.FPMulAddFpscr); // A32 only. - var dlgSoftFloat32FPMulSub = new SoftFloat32FPMulSub(SoftFloat32.FPMulSub); - var dlgSoftFloat32FPMulSubFpscr = new SoftFloat32FPMulSubFpscr(SoftFloat32.FPMulSubFpscr); // A32 only. - var dlgSoftFloat32FPMulX = new SoftFloat32FPMulX(SoftFloat32.FPMulX); - var dlgSoftFloat32FPNegMulAdd = new SoftFloat32FPNegMulAdd(SoftFloat32.FPNegMulAdd); - var dlgSoftFloat32FPNegMulSub = new SoftFloat32FPNegMulSub(SoftFloat32.FPNegMulSub); - var dlgSoftFloat32FPRecipEstimate = new SoftFloat32FPRecipEstimate(SoftFloat32.FPRecipEstimate); - var dlgSoftFloat32FPRecipEstimateFpscr = new SoftFloat32FPRecipEstimateFpscr(SoftFloat32.FPRecipEstimateFpscr); // A32 only. - var dlgSoftFloat32FPRecipStep = new SoftFloat32FPRecipStep(SoftFloat32.FPRecipStep); // A32 only. - var dlgSoftFloat32FPRecipStepFused = new SoftFloat32FPRecipStepFused(SoftFloat32.FPRecipStepFused); - var dlgSoftFloat32FPRecpX = new SoftFloat32FPRecpX(SoftFloat32.FPRecpX); - var dlgSoftFloat32FPRSqrtEstimate = new SoftFloat32FPRSqrtEstimate(SoftFloat32.FPRSqrtEstimate); - var dlgSoftFloat32FPRSqrtEstimateFpscr = new SoftFloat32FPRSqrtEstimateFpscr(SoftFloat32.FPRSqrtEstimateFpscr); // A32 only. - var dlgSoftFloat32FPRSqrtStep = new SoftFloat32FPRSqrtStep(SoftFloat32.FPRSqrtStep); // A32 only. - var dlgSoftFloat32FPRSqrtStepFused = new SoftFloat32FPRSqrtStepFused(SoftFloat32.FPRSqrtStepFused); - var dlgSoftFloat32FPSqrt = new SoftFloat32FPSqrt(SoftFloat32.FPSqrt); - var dlgSoftFloat32FPSub = new SoftFloat32FPSub(SoftFloat32.FPSub); + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPAdd))); + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPAddFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPCompare))); + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPCompareEQ))); + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPCompareEQFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPCompareGE))); + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPCompareGEFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPCompareGT))); + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPCompareGTFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPCompareLE))); + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPCompareLEFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPCompareLT))); + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPCompareLTFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPDiv))); + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPMax))); + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPMaxFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPMaxNum))); + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPMaxNumFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPMin))); + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPMinFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPMinNum))); + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPMinNumFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPMul))); + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPMulFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPMulAdd))); + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPMulAddFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPMulSub))); + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPMulSubFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPMulX))); + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPNegMulAdd))); + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPNegMulSub))); + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPRecipEstimate))); + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPRecipEstimateFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPRecipStep))); // A32 only. + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPRecipStepFused))); + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPRecpX))); + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPRSqrtEstimate))); + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPRSqrtEstimateFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPRSqrtStep))); // A32 only. + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPRSqrtStepFused))); + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPSqrt))); + SetDelegateInfo(typeof(SoftFloat32).GetMethod(nameof(SoftFloat32.FPSub))); - var dlgSoftFloat32_16FPConvert = new SoftFloat32_16FPConvert(SoftFloat32_16.FPConvert); + SetDelegateInfo(typeof(SoftFloat32_16).GetMethod(nameof(SoftFloat32_16.FPConvert))); - var dlgSoftFloat64FPAdd = new SoftFloat64FPAdd(SoftFloat64.FPAdd); - var dlgSoftFloat64FPAddFpscr = new SoftFloat64FPAddFpscr(SoftFloat64.FPAddFpscr); // A32 only. - var dlgSoftFloat64FPCompare = new SoftFloat64FPCompare(SoftFloat64.FPCompare); - var dlgSoftFloat64FPCompareEQ = new SoftFloat64FPCompareEQ(SoftFloat64.FPCompareEQ); - var dlgSoftFloat64FPCompareEQFpscr = new SoftFloat64FPCompareEQFpscr(SoftFloat64.FPCompareEQFpscr); // A32 only. - var dlgSoftFloat64FPCompareGE = new SoftFloat64FPCompareGE(SoftFloat64.FPCompareGE); - var dlgSoftFloat64FPCompareGEFpscr = new SoftFloat64FPCompareGEFpscr(SoftFloat64.FPCompareGEFpscr); // A32 only. - var dlgSoftFloat64FPCompareGT = new SoftFloat64FPCompareGT(SoftFloat64.FPCompareGT); - var dlgSoftFloat64FPCompareGTFpscr = new SoftFloat64FPCompareGTFpscr(SoftFloat64.FPCompareGTFpscr); // A32 only. - var dlgSoftFloat64FPCompareLE = new SoftFloat64FPCompareLE(SoftFloat64.FPCompareLE); - var dlgSoftFloat64FPCompareLEFpscr = new SoftFloat64FPCompareLEFpscr(SoftFloat64.FPCompareLEFpscr); // A32 only. - var dlgSoftFloat64FPCompareLT = new SoftFloat64FPCompareLT(SoftFloat64.FPCompareLT); - var dlgSoftFloat64FPCompareLTFpscr = new SoftFloat64FPCompareLTFpscr(SoftFloat64.FPCompareLTFpscr); // A32 only. - var dlgSoftFloat64FPDiv = new SoftFloat64FPDiv(SoftFloat64.FPDiv); - var dlgSoftFloat64FPMax = new SoftFloat64FPMax(SoftFloat64.FPMax); - var dlgSoftFloat64FPMaxFpscr = new SoftFloat64FPMaxFpscr(SoftFloat64.FPMaxFpscr); // A32 only. - var dlgSoftFloat64FPMaxNum = new SoftFloat64FPMaxNum(SoftFloat64.FPMaxNum); - var dlgSoftFloat64FPMaxNumFpscr = new SoftFloat64FPMaxNumFpscr(SoftFloat64.FPMaxNumFpscr); // A32 only. - var dlgSoftFloat64FPMin = new SoftFloat64FPMin(SoftFloat64.FPMin); - var dlgSoftFloat64FPMinFpscr = new SoftFloat64FPMinFpscr(SoftFloat64.FPMinFpscr); // A32 only. - var dlgSoftFloat64FPMinNum = new SoftFloat64FPMinNum(SoftFloat64.FPMinNum); - var dlgSoftFloat64FPMinNumFpscr = new SoftFloat64FPMinNumFpscr(SoftFloat64.FPMinNumFpscr); // A32 only. - var dlgSoftFloat64FPMul = new SoftFloat64FPMul(SoftFloat64.FPMul); - var dlgSoftFloat64FPMulFpscr = new SoftFloat64FPMulFpscr(SoftFloat64.FPMulFpscr); // A32 only. - var dlgSoftFloat64FPMulAdd = new SoftFloat64FPMulAdd(SoftFloat64.FPMulAdd); - var dlgSoftFloat64FPMulAddFpscr = new SoftFloat64FPMulAddFpscr(SoftFloat64.FPMulAddFpscr); // A32 only. - var dlgSoftFloat64FPMulSub = new SoftFloat64FPMulSub(SoftFloat64.FPMulSub); - var dlgSoftFloat64FPMulSubFpscr = new SoftFloat64FPMulSubFpscr(SoftFloat64.FPMulSubFpscr); // A32 only. - var dlgSoftFloat64FPMulX = new SoftFloat64FPMulX(SoftFloat64.FPMulX); - var dlgSoftFloat64FPNegMulAdd = new SoftFloat64FPNegMulAdd(SoftFloat64.FPNegMulAdd); - var dlgSoftFloat64FPNegMulSub = new SoftFloat64FPNegMulSub(SoftFloat64.FPNegMulSub); - var dlgSoftFloat64FPRecipEstimate = new SoftFloat64FPRecipEstimate(SoftFloat64.FPRecipEstimate); - var dlgSoftFloat64FPRecipEstimateFpscr = new SoftFloat64FPRecipEstimateFpscr(SoftFloat64.FPRecipEstimateFpscr); // A32 only. - var dlgSoftFloat64FPRecipStep = new SoftFloat64FPRecipStep(SoftFloat64.FPRecipStep); // A32 only. - var dlgSoftFloat64FPRecipStepFused = new SoftFloat64FPRecipStepFused(SoftFloat64.FPRecipStepFused); - var dlgSoftFloat64FPRecpX = new SoftFloat64FPRecpX(SoftFloat64.FPRecpX); - var dlgSoftFloat64FPRSqrtEstimate = new SoftFloat64FPRSqrtEstimate(SoftFloat64.FPRSqrtEstimate); - var dlgSoftFloat64FPRSqrtEstimateFpscr = new SoftFloat64FPRSqrtEstimateFpscr(SoftFloat64.FPRSqrtEstimateFpscr); // A32 only. - var dlgSoftFloat64FPRSqrtStep = new SoftFloat64FPRSqrtStep(SoftFloat64.FPRSqrtStep); // A32 only. - var dlgSoftFloat64FPRSqrtStepFused = new SoftFloat64FPRSqrtStepFused(SoftFloat64.FPRSqrtStepFused); - var dlgSoftFloat64FPSqrt = new SoftFloat64FPSqrt(SoftFloat64.FPSqrt); - var dlgSoftFloat64FPSub = new SoftFloat64FPSub(SoftFloat64.FPSub); + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPAdd))); + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPAddFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPCompare))); + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPCompareEQ))); + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPCompareEQFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPCompareGE))); + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPCompareGEFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPCompareGT))); + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPCompareGTFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPCompareLE))); + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPCompareLEFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPCompareLT))); + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPCompareLTFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPDiv))); + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPMax))); + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPMaxFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPMaxNum))); + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPMaxNumFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPMin))); + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPMinFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPMinNum))); + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPMinNumFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPMul))); + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPMulFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPMulAdd))); + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPMulAddFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPMulSub))); + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPMulSubFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPMulX))); + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPNegMulAdd))); + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPNegMulSub))); + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPRecipEstimate))); + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPRecipEstimateFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPRecipStep))); // A32 only. + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPRecipStepFused))); + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPRecpX))); + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPRSqrtEstimate))); + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPRSqrtEstimateFpscr))); // A32 only. + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPRSqrtStep))); // A32 only. + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPRSqrtStepFused))); + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPSqrt))); + SetDelegateInfo(typeof(SoftFloat64).GetMethod(nameof(SoftFloat64.FPSub))); - var dlgSoftFloat64_16FPConvert = new SoftFloat64_16FPConvert(SoftFloat64_16.FPConvert); - - SetDelegateInfo(dlgMathAbs, Marshal.GetFunctionPointerForDelegate(dlgMathAbs)); - SetDelegateInfo(dlgMathCeiling, Marshal.GetFunctionPointerForDelegate(dlgMathCeiling)); - SetDelegateInfo(dlgMathFloor, Marshal.GetFunctionPointerForDelegate(dlgMathFloor)); - SetDelegateInfo(dlgMathRound, Marshal.GetFunctionPointerForDelegate(dlgMathRound)); - SetDelegateInfo(dlgMathTruncate, Marshal.GetFunctionPointerForDelegate(dlgMathTruncate)); - - SetDelegateInfo(dlgMathFAbs, Marshal.GetFunctionPointerForDelegate(dlgMathFAbs)); - SetDelegateInfo(dlgMathFCeiling, Marshal.GetFunctionPointerForDelegate(dlgMathFCeiling)); - SetDelegateInfo(dlgMathFFloor, Marshal.GetFunctionPointerForDelegate(dlgMathFFloor)); - SetDelegateInfo(dlgMathFRound, Marshal.GetFunctionPointerForDelegate(dlgMathFRound)); - SetDelegateInfo(dlgMathFTruncate, Marshal.GetFunctionPointerForDelegate(dlgMathFTruncate)); - - SetDelegateInfo(dlgNativeInterfaceBreak, Marshal.GetFunctionPointerForDelegate(dlgNativeInterfaceBreak)); - SetDelegateInfo(dlgNativeInterfaceCheckSynchronization, Marshal.GetFunctionPointerForDelegate(dlgNativeInterfaceCheckSynchronization)); - SetDelegateInfo(dlgNativeInterfaceEnqueueForRejit, Marshal.GetFunctionPointerForDelegate(dlgNativeInterfaceEnqueueForRejit)); - SetDelegateInfo(dlgNativeInterfaceGetCntfrqEl0, Marshal.GetFunctionPointerForDelegate(dlgNativeInterfaceGetCntfrqEl0)); - SetDelegateInfo(dlgNativeInterfaceGetCntpctEl0, Marshal.GetFunctionPointerForDelegate(dlgNativeInterfaceGetCntpctEl0)); - SetDelegateInfo(dlgNativeInterfaceGetCntvctEl0, Marshal.GetFunctionPointerForDelegate(dlgNativeInterfaceGetCntvctEl0)); - SetDelegateInfo(dlgNativeInterfaceGetCtrEl0, Marshal.GetFunctionPointerForDelegate(dlgNativeInterfaceGetCtrEl0)); - SetDelegateInfo(dlgNativeInterfaceGetDczidEl0, Marshal.GetFunctionPointerForDelegate(dlgNativeInterfaceGetDczidEl0)); - SetDelegateInfo(dlgNativeInterfaceGetFunctionAddress, Marshal.GetFunctionPointerForDelegate(dlgNativeInterfaceGetFunctionAddress)); - SetDelegateInfo(dlgNativeInterfaceInvalidateCacheLine, Marshal.GetFunctionPointerForDelegate(dlgNativeInterfaceInvalidateCacheLine)); - SetDelegateInfo(dlgNativeInterfaceReadByte, Marshal.GetFunctionPointerForDelegate(dlgNativeInterfaceReadByte)); - SetDelegateInfo(dlgNativeInterfaceReadUInt16, Marshal.GetFunctionPointerForDelegate(dlgNativeInterfaceReadUInt16)); - SetDelegateInfo(dlgNativeInterfaceReadUInt32, Marshal.GetFunctionPointerForDelegate(dlgNativeInterfaceReadUInt32)); - SetDelegateInfo(dlgNativeInterfaceReadUInt64, Marshal.GetFunctionPointerForDelegate(dlgNativeInterfaceReadUInt64)); - SetDelegateInfo(dlgNativeInterfaceReadVector128, Marshal.GetFunctionPointerForDelegate(dlgNativeInterfaceReadVector128)); - SetDelegateInfo(dlgNativeInterfaceSignalMemoryTracking, Marshal.GetFunctionPointerForDelegate(dlgNativeInterfaceSignalMemoryTracking)); - SetDelegateInfo(dlgNativeInterfaceSupervisorCall, Marshal.GetFunctionPointerForDelegate(dlgNativeInterfaceSupervisorCall)); - SetDelegateInfo(dlgNativeInterfaceThrowInvalidMemoryAccess, Marshal.GetFunctionPointerForDelegate(dlgNativeInterfaceThrowInvalidMemoryAccess)); - SetDelegateInfo(dlgNativeInterfaceUndefined, Marshal.GetFunctionPointerForDelegate(dlgNativeInterfaceUndefined)); - SetDelegateInfo(dlgNativeInterfaceWriteByte, Marshal.GetFunctionPointerForDelegate(dlgNativeInterfaceWriteByte)); - SetDelegateInfo(dlgNativeInterfaceWriteUInt16, Marshal.GetFunctionPointerForDelegate(dlgNativeInterfaceWriteUInt16)); - SetDelegateInfo(dlgNativeInterfaceWriteUInt32, Marshal.GetFunctionPointerForDelegate(dlgNativeInterfaceWriteUInt32)); - SetDelegateInfo(dlgNativeInterfaceWriteUInt64, Marshal.GetFunctionPointerForDelegate(dlgNativeInterfaceWriteUInt64)); - SetDelegateInfo(dlgNativeInterfaceWriteVector128, Marshal.GetFunctionPointerForDelegate(dlgNativeInterfaceWriteVector128)); - - SetDelegateInfo(dlgSoftFallbackCountLeadingSigns, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackCountLeadingSigns)); - SetDelegateInfo(dlgSoftFallbackCountLeadingZeros, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackCountLeadingZeros)); - SetDelegateInfo(dlgSoftFallbackCrc32b, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackCrc32b)); - SetDelegateInfo(dlgSoftFallbackCrc32cb, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackCrc32cb)); - SetDelegateInfo(dlgSoftFallbackCrc32ch, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackCrc32ch)); - SetDelegateInfo(dlgSoftFallbackCrc32cw, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackCrc32cw)); - SetDelegateInfo(dlgSoftFallbackCrc32cx, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackCrc32cx)); - SetDelegateInfo(dlgSoftFallbackCrc32h, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackCrc32h)); - SetDelegateInfo(dlgSoftFallbackCrc32w, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackCrc32w)); - SetDelegateInfo(dlgSoftFallbackCrc32x, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackCrc32x)); - SetDelegateInfo(dlgSoftFallbackDecrypt, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackDecrypt)); - SetDelegateInfo(dlgSoftFallbackEncrypt, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackEncrypt)); - SetDelegateInfo(dlgSoftFallbackFixedRotate, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackFixedRotate)); - SetDelegateInfo(dlgSoftFallbackHashChoose, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackHashChoose)); - SetDelegateInfo(dlgSoftFallbackHashLower, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackHashLower)); - SetDelegateInfo(dlgSoftFallbackHashMajority, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackHashMajority)); - SetDelegateInfo(dlgSoftFallbackHashParity, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackHashParity)); - SetDelegateInfo(dlgSoftFallbackHashUpper, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackHashUpper)); - SetDelegateInfo(dlgSoftFallbackInverseMixColumns, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackInverseMixColumns)); - SetDelegateInfo(dlgSoftFallbackMixColumns, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackMixColumns)); - SetDelegateInfo(dlgSoftFallbackPolynomialMult64_128, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackPolynomialMult64_128)); - SetDelegateInfo(dlgSoftFallbackSatF32ToS32, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackSatF32ToS32)); - SetDelegateInfo(dlgSoftFallbackSatF32ToS64, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackSatF32ToS64)); - SetDelegateInfo(dlgSoftFallbackSatF32ToU32, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackSatF32ToU32)); - SetDelegateInfo(dlgSoftFallbackSatF32ToU64, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackSatF32ToU64)); - SetDelegateInfo(dlgSoftFallbackSatF64ToS32, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackSatF64ToS32)); - SetDelegateInfo(dlgSoftFallbackSatF64ToS64, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackSatF64ToS64)); - SetDelegateInfo(dlgSoftFallbackSatF64ToU32, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackSatF64ToU32)); - SetDelegateInfo(dlgSoftFallbackSatF64ToU64, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackSatF64ToU64)); - SetDelegateInfo(dlgSoftFallbackSha1SchedulePart1, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackSha1SchedulePart1)); - SetDelegateInfo(dlgSoftFallbackSha1SchedulePart2, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackSha1SchedulePart2)); - SetDelegateInfo(dlgSoftFallbackSha256SchedulePart1, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackSha256SchedulePart1)); - SetDelegateInfo(dlgSoftFallbackSha256SchedulePart2, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackSha256SchedulePart2)); - SetDelegateInfo(dlgSoftFallbackSignedShrImm64, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackSignedShrImm64)); - SetDelegateInfo(dlgSoftFallbackTbl1, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackTbl1)); - SetDelegateInfo(dlgSoftFallbackTbl2, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackTbl2)); - SetDelegateInfo(dlgSoftFallbackTbl3, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackTbl3)); - SetDelegateInfo(dlgSoftFallbackTbl4, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackTbl4)); - SetDelegateInfo(dlgSoftFallbackTbx1, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackTbx1)); - SetDelegateInfo(dlgSoftFallbackTbx2, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackTbx2)); - SetDelegateInfo(dlgSoftFallbackTbx3, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackTbx3)); - SetDelegateInfo(dlgSoftFallbackTbx4, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackTbx4)); - SetDelegateInfo(dlgSoftFallbackUnsignedShrImm64, Marshal.GetFunctionPointerForDelegate(dlgSoftFallbackUnsignedShrImm64)); - - SetDelegateInfo(dlgSoftFloat16_32FPConvert, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat16_32FPConvert)); - SetDelegateInfo(dlgSoftFloat16_64FPConvert, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat16_64FPConvert)); - - SetDelegateInfo(dlgSoftFloat32FPAdd, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPAdd)); - SetDelegateInfo(dlgSoftFloat32FPAddFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPAddFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat32FPCompare, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPCompare)); - SetDelegateInfo(dlgSoftFloat32FPCompareEQ, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPCompareEQ)); - SetDelegateInfo(dlgSoftFloat32FPCompareEQFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPCompareEQFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat32FPCompareGE, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPCompareGE)); - SetDelegateInfo(dlgSoftFloat32FPCompareGEFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPCompareGEFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat32FPCompareGT, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPCompareGT)); - SetDelegateInfo(dlgSoftFloat32FPCompareGTFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPCompareGTFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat32FPCompareLE, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPCompareLE)); - SetDelegateInfo(dlgSoftFloat32FPCompareLEFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPCompareLEFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat32FPCompareLT, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPCompareLT)); - SetDelegateInfo(dlgSoftFloat32FPCompareLTFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPCompareLTFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat32FPDiv, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPDiv)); - SetDelegateInfo(dlgSoftFloat32FPMax, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPMax)); - SetDelegateInfo(dlgSoftFloat32FPMaxFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPMaxFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat32FPMaxNum, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPMaxNum)); - SetDelegateInfo(dlgSoftFloat32FPMaxNumFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPMaxNumFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat32FPMin, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPMin)); - SetDelegateInfo(dlgSoftFloat32FPMinFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPMinFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat32FPMinNum, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPMinNum)); - SetDelegateInfo(dlgSoftFloat32FPMinNumFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPMinNumFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat32FPMul, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPMul)); - SetDelegateInfo(dlgSoftFloat32FPMulFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPMulFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat32FPMulAdd, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPMulAdd)); - SetDelegateInfo(dlgSoftFloat32FPMulAddFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPMulAddFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat32FPMulSub, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPMulSub)); - SetDelegateInfo(dlgSoftFloat32FPMulSubFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPMulSubFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat32FPMulX, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPMulX)); - SetDelegateInfo(dlgSoftFloat32FPNegMulAdd, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPNegMulAdd)); - SetDelegateInfo(dlgSoftFloat32FPNegMulSub, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPNegMulSub)); - SetDelegateInfo(dlgSoftFloat32FPRecipEstimate, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPRecipEstimate)); - SetDelegateInfo(dlgSoftFloat32FPRecipEstimateFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPRecipEstimateFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat32FPRecipStep, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPRecipStep)); // A32 only. - SetDelegateInfo(dlgSoftFloat32FPRecipStepFused, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPRecipStepFused)); - SetDelegateInfo(dlgSoftFloat32FPRecpX, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPRecpX)); - SetDelegateInfo(dlgSoftFloat32FPRSqrtEstimate, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPRSqrtEstimate)); - SetDelegateInfo(dlgSoftFloat32FPRSqrtEstimateFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPRSqrtEstimateFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat32FPRSqrtStep, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPRSqrtStep)); // A32 only. - SetDelegateInfo(dlgSoftFloat32FPRSqrtStepFused, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPRSqrtStepFused)); - SetDelegateInfo(dlgSoftFloat32FPSqrt, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPSqrt)); - SetDelegateInfo(dlgSoftFloat32FPSub, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32FPSub)); - - SetDelegateInfo(dlgSoftFloat32_16FPConvert, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat32_16FPConvert)); - - SetDelegateInfo(dlgSoftFloat64FPAdd, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPAdd)); - SetDelegateInfo(dlgSoftFloat64FPAddFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPAddFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat64FPCompare, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPCompare)); - SetDelegateInfo(dlgSoftFloat64FPCompareEQ, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPCompareEQ)); - SetDelegateInfo(dlgSoftFloat64FPCompareEQFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPCompareEQFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat64FPCompareGE, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPCompareGE)); - SetDelegateInfo(dlgSoftFloat64FPCompareGEFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPCompareGEFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat64FPCompareGT, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPCompareGT)); - SetDelegateInfo(dlgSoftFloat64FPCompareGTFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPCompareGTFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat64FPCompareLE, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPCompareLE)); - SetDelegateInfo(dlgSoftFloat64FPCompareLEFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPCompareLEFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat64FPCompareLT, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPCompareLT)); - SetDelegateInfo(dlgSoftFloat64FPCompareLTFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPCompareLTFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat64FPDiv, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPDiv)); - SetDelegateInfo(dlgSoftFloat64FPMax, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPMax)); - SetDelegateInfo(dlgSoftFloat64FPMaxFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPMaxFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat64FPMaxNum, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPMaxNum)); - SetDelegateInfo(dlgSoftFloat64FPMaxNumFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPMaxNumFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat64FPMin, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPMin)); - SetDelegateInfo(dlgSoftFloat64FPMinFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPMinFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat64FPMinNum, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPMinNum)); - SetDelegateInfo(dlgSoftFloat64FPMinNumFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPMinNumFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat64FPMul, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPMul)); - SetDelegateInfo(dlgSoftFloat64FPMulFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPMulFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat64FPMulAdd, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPMulAdd)); - SetDelegateInfo(dlgSoftFloat64FPMulAddFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPMulAddFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat64FPMulSub, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPMulSub)); - SetDelegateInfo(dlgSoftFloat64FPMulSubFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPMulSubFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat64FPMulX, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPMulX)); - SetDelegateInfo(dlgSoftFloat64FPNegMulAdd, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPNegMulAdd)); - SetDelegateInfo(dlgSoftFloat64FPNegMulSub, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPNegMulSub)); - SetDelegateInfo(dlgSoftFloat64FPRecipEstimate, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPRecipEstimate)); - SetDelegateInfo(dlgSoftFloat64FPRecipEstimateFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPRecipEstimateFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat64FPRecipStep, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPRecipStep)); // A32 only. - SetDelegateInfo(dlgSoftFloat64FPRecipStepFused, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPRecipStepFused)); - SetDelegateInfo(dlgSoftFloat64FPRecpX, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPRecpX)); - SetDelegateInfo(dlgSoftFloat64FPRSqrtEstimate, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPRSqrtEstimate)); - SetDelegateInfo(dlgSoftFloat64FPRSqrtEstimateFpscr, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPRSqrtEstimateFpscr)); // A32 only. - SetDelegateInfo(dlgSoftFloat64FPRSqrtStep, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPRSqrtStep)); // A32 only. - SetDelegateInfo(dlgSoftFloat64FPRSqrtStepFused, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPRSqrtStepFused)); - SetDelegateInfo(dlgSoftFloat64FPSqrt, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPSqrt)); - SetDelegateInfo(dlgSoftFloat64FPSub, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64FPSub)); - - SetDelegateInfo(dlgSoftFloat64_16FPConvert, Marshal.GetFunctionPointerForDelegate(dlgSoftFloat64_16FPConvert)); + SetDelegateInfo(typeof(SoftFloat64_16).GetMethod(nameof(SoftFloat64_16.FPConvert))); } - - private delegate double MathAbs(double value); - private delegate double MathCeiling(double a); - private delegate double MathFloor(double d); - private delegate double MathRound(double value, MidpointRounding mode); - private delegate double MathTruncate(double d); - - private delegate float MathFAbs(float x); - private delegate float MathFCeiling(float x); - private delegate float MathFFloor(float x); - private delegate float MathFRound(float x, MidpointRounding mode); - private delegate float MathFTruncate(float x); - - private delegate void NativeInterfaceBreak(ulong address, int imm); - private delegate bool NativeInterfaceCheckSynchronization(); - private delegate void NativeInterfaceEnqueueForRejit(ulong address); - private delegate ulong NativeInterfaceGetCntfrqEl0(); - private delegate ulong NativeInterfaceGetCntpctEl0(); - private delegate ulong NativeInterfaceGetCntvctEl0(); - private delegate ulong NativeInterfaceGetCtrEl0(); - private delegate ulong NativeInterfaceGetDczidEl0(); - private delegate ulong NativeInterfaceGetFunctionAddress(ulong address); - private delegate void NativeInterfaceInvalidateCacheLine(ulong address); - private delegate byte NativeInterfaceReadByte(ulong address); - private delegate ushort NativeInterfaceReadUInt16(ulong address); - private delegate uint NativeInterfaceReadUInt32(ulong address); - private delegate ulong NativeInterfaceReadUInt64(ulong address); - private delegate V128 NativeInterfaceReadVector128(ulong address); - private delegate void NativeInterfaceSignalMemoryTracking(ulong address, ulong size, bool write); - private delegate void NativeInterfaceSupervisorCall(ulong address, int imm); - private delegate void NativeInterfaceThrowInvalidMemoryAccess(ulong address); - private delegate void NativeInterfaceUndefined(ulong address, int opCode); - private delegate void NativeInterfaceWriteByte(ulong address, byte value); - private delegate void NativeInterfaceWriteUInt16(ulong address, ushort value); - private delegate void NativeInterfaceWriteUInt32(ulong address, uint value); - private delegate void NativeInterfaceWriteUInt64(ulong address, ulong value); - private delegate void NativeInterfaceWriteVector128(ulong address, V128 value); - - private delegate ulong SoftFallbackCountLeadingSigns(ulong value, int size); - private delegate ulong SoftFallbackCountLeadingZeros(ulong value, int size); - private delegate uint SoftFallbackCrc32b(uint crc, byte value); - private delegate uint SoftFallbackCrc32cb(uint crc, byte value); - private delegate uint SoftFallbackCrc32ch(uint crc, ushort value); - private delegate uint SoftFallbackCrc32cw(uint crc, uint value); - private delegate uint SoftFallbackCrc32cx(uint crc, ulong value); - private delegate uint SoftFallbackCrc32h(uint crc, ushort value); - private delegate uint SoftFallbackCrc32w(uint crc, uint value); - private delegate uint SoftFallbackCrc32x(uint crc, ulong value); - private delegate V128 SoftFallbackDecrypt(V128 value, V128 roundKey); - private delegate V128 SoftFallbackEncrypt(V128 value, V128 roundKey); - private delegate uint SoftFallbackFixedRotate(uint hash_e); - private delegate V128 SoftFallbackHashChoose(V128 hash_abcd, uint hash_e, V128 wk); - private delegate V128 SoftFallbackHashLower(V128 hash_abcd, V128 hash_efgh, V128 wk); - private delegate V128 SoftFallbackHashMajority(V128 hash_abcd, uint hash_e, V128 wk); - private delegate V128 SoftFallbackHashParity(V128 hash_abcd, uint hash_e, V128 wk); - private delegate V128 SoftFallbackHashUpper(V128 hash_abcd, V128 hash_efgh, V128 wk); - private delegate V128 SoftFallbackInverseMixColumns(V128 value); - private delegate V128 SoftFallbackMixColumns(V128 value); - private delegate V128 SoftFallbackPolynomialMult64_128(ulong op1, ulong op2); - private delegate int SoftFallbackSatF32ToS32(float value); - private delegate long SoftFallbackSatF32ToS64(float value); - private delegate uint SoftFallbackSatF32ToU32(float value); - private delegate ulong SoftFallbackSatF32ToU64(float value); - private delegate int SoftFallbackSatF64ToS32(double value); - private delegate long SoftFallbackSatF64ToS64(double value); - private delegate uint SoftFallbackSatF64ToU32(double value); - private delegate ulong SoftFallbackSatF64ToU64(double value); - private delegate V128 SoftFallbackSha1SchedulePart1(V128 w0_3, V128 w4_7, V128 w8_11); - private delegate V128 SoftFallbackSha1SchedulePart2(V128 tw0_3, V128 w12_15); - private delegate V128 SoftFallbackSha256SchedulePart1(V128 w0_3, V128 w4_7); - private delegate V128 SoftFallbackSha256SchedulePart2(V128 w0_3, V128 w8_11, V128 w12_15); - private delegate long SoftFallbackSignedShrImm64(long value, long roundConst, int shift); - private delegate V128 SoftFallbackTbl1(V128 vector, int bytes, V128 tb0); - private delegate V128 SoftFallbackTbl2(V128 vector, int bytes, V128 tb0, V128 tb1); - private delegate V128 SoftFallbackTbl3(V128 vector, int bytes, V128 tb0, V128 tb1, V128 tb2); - private delegate V128 SoftFallbackTbl4(V128 vector, int bytes, V128 tb0, V128 tb1, V128 tb2, V128 tb3); - private delegate V128 SoftFallbackTbx1(V128 dest, V128 vector, int bytes, V128 tb0); - private delegate V128 SoftFallbackTbx2(V128 dest, V128 vector, int bytes, V128 tb0, V128 tb1); - private delegate V128 SoftFallbackTbx3(V128 dest, V128 vector, int bytes, V128 tb0, V128 tb1, V128 tb2); - private delegate V128 SoftFallbackTbx4(V128 dest, V128 vector, int bytes, V128 tb0, V128 tb1, V128 tb2, V128 tb3); - private delegate ulong SoftFallbackUnsignedShrImm64(ulong value, long roundConst, int shift); - - private delegate float SoftFloat16_32FPConvert(ushort valueBits); - - private delegate double SoftFloat16_64FPConvert(ushort valueBits); - - private delegate float SoftFloat32FPAdd(float value1, float value2); - private delegate float SoftFloat32FPAddFpscr(float value1, float value2, bool standardFpscr); - private delegate int SoftFloat32FPCompare(float value1, float value2, bool signalNaNs); - private delegate float SoftFloat32FPCompareEQ(float value1, float value2); - private delegate float SoftFloat32FPCompareEQFpscr(float value1, float value2, bool standardFpscr); - private delegate float SoftFloat32FPCompareGE(float value1, float value2); - private delegate float SoftFloat32FPCompareGEFpscr(float value1, float value2, bool standardFpscr); - private delegate float SoftFloat32FPCompareGT(float value1, float value2); - private delegate float SoftFloat32FPCompareGTFpscr(float value1, float value2, bool standardFpscr); - private delegate float SoftFloat32FPCompareLE(float value1, float value2); - private delegate float SoftFloat32FPCompareLEFpscr(float value1, float value2, bool standardFpscr); - private delegate float SoftFloat32FPCompareLT(float value1, float value2); - private delegate float SoftFloat32FPCompareLTFpscr(float value1, float value2, bool standardFpscr); - private delegate float SoftFloat32FPDiv(float value1, float value2); - private delegate float SoftFloat32FPMax(float value1, float value2); - private delegate float SoftFloat32FPMaxFpscr(float value1, float value2, bool standardFpscr); - private delegate float SoftFloat32FPMaxNum(float value1, float value2); - private delegate float SoftFloat32FPMaxNumFpscr(float value1, float value2, bool standardFpscr); - private delegate float SoftFloat32FPMin(float value1, float value2); - private delegate float SoftFloat32FPMinFpscr(float value1, float value2, bool standardFpscr); - private delegate float SoftFloat32FPMinNum(float value1, float value2); - private delegate float SoftFloat32FPMinNumFpscr(float value1, float value2, bool standardFpscr); - private delegate float SoftFloat32FPMul(float value1, float value2); - private delegate float SoftFloat32FPMulFpscr(float value1, float value2, bool standardFpscr); - private delegate float SoftFloat32FPMulAdd(float valueA, float value1, float value2); - private delegate float SoftFloat32FPMulAddFpscr(float valueA, float value1, float value2, bool standardFpscr); - private delegate float SoftFloat32FPMulSub(float valueA, float value1, float value2); - private delegate float SoftFloat32FPMulSubFpscr(float valueA, float value1, float value2, bool standardFpscr); - private delegate float SoftFloat32FPMulX(float value1, float value2); - private delegate float SoftFloat32FPNegMulAdd(float valueA, float value1, float value2); - private delegate float SoftFloat32FPNegMulSub(float valueA, float value1, float value2); - private delegate float SoftFloat32FPRecipEstimate(float value); - private delegate float SoftFloat32FPRecipEstimateFpscr(float value, bool standardFpscr); - private delegate float SoftFloat32FPRecipStep(float value1, float value2); - private delegate float SoftFloat32FPRecipStepFused(float value1, float value2); - private delegate float SoftFloat32FPRecpX(float value); - private delegate float SoftFloat32FPRSqrtEstimate(float value); - private delegate float SoftFloat32FPRSqrtEstimateFpscr(float value, bool standardFpscr); - private delegate float SoftFloat32FPRSqrtStep(float value1, float value2); - private delegate float SoftFloat32FPRSqrtStepFused(float value1, float value2); - private delegate float SoftFloat32FPSqrt(float value); - private delegate float SoftFloat32FPSub(float value1, float value2); - - private delegate ushort SoftFloat32_16FPConvert(float value); - - private delegate double SoftFloat64FPAdd(double value1, double value2); - private delegate double SoftFloat64FPAddFpscr(double value1, double value2, bool standardFpscr); - private delegate int SoftFloat64FPCompare(double value1, double value2, bool signalNaNs); - private delegate double SoftFloat64FPCompareEQ(double value1, double value2); - private delegate double SoftFloat64FPCompareEQFpscr(double value1, double value2, bool standardFpscr); - private delegate double SoftFloat64FPCompareGE(double value1, double value2); - private delegate double SoftFloat64FPCompareGEFpscr(double value1, double value2, bool standardFpscr); - private delegate double SoftFloat64FPCompareGT(double value1, double value2); - private delegate double SoftFloat64FPCompareGTFpscr(double value1, double value2, bool standardFpscr); - private delegate double SoftFloat64FPCompareLE(double value1, double value2); - private delegate double SoftFloat64FPCompareLEFpscr(double value1, double value2, bool standardFpscr); - private delegate double SoftFloat64FPCompareLT(double value1, double value2); - private delegate double SoftFloat64FPCompareLTFpscr(double value1, double value2, bool standardFpscr); - private delegate double SoftFloat64FPDiv(double value1, double value2); - private delegate double SoftFloat64FPMax(double value1, double value2); - private delegate double SoftFloat64FPMaxFpscr(double value1, double value2, bool standardFpscr); - private delegate double SoftFloat64FPMaxNum(double value1, double value2); - private delegate double SoftFloat64FPMaxNumFpscr(double value1, double value2, bool standardFpscr); - private delegate double SoftFloat64FPMin(double value1, double value2); - private delegate double SoftFloat64FPMinFpscr(double value1, double value2, bool standardFpscr); - private delegate double SoftFloat64FPMinNum(double value1, double value2); - private delegate double SoftFloat64FPMinNumFpscr(double value1, double value2, bool standardFpscr); - private delegate double SoftFloat64FPMul(double value1, double value2); - private delegate double SoftFloat64FPMulFpscr(double value1, double value2, bool standardFpscr); - private delegate double SoftFloat64FPMulAdd(double valueA, double value1, double value2); - private delegate double SoftFloat64FPMulAddFpscr(double valueA, double value1, double value2, bool standardFpscr); - private delegate double SoftFloat64FPMulSub(double valueA, double value1, double value2); - private delegate double SoftFloat64FPMulSubFpscr(double valueA, double value1, double value2, bool standardFpscr); - private delegate double SoftFloat64FPMulX(double value1, double value2); - private delegate double SoftFloat64FPNegMulAdd(double valueA, double value1, double value2); - private delegate double SoftFloat64FPNegMulSub(double valueA, double value1, double value2); - private delegate double SoftFloat64FPRecipEstimate(double value); - private delegate double SoftFloat64FPRecipEstimateFpscr(double value, bool standardFpscr); - private delegate double SoftFloat64FPRecipStep(double value1, double value2); - private delegate double SoftFloat64FPRecipStepFused(double value1, double value2); - private delegate double SoftFloat64FPRecpX(double value); - private delegate double SoftFloat64FPRSqrtEstimate(double value); - private delegate double SoftFloat64FPRSqrtEstimateFpscr(double value, bool standardFpscr); - private delegate double SoftFloat64FPRSqrtStep(double value1, double value2); - private delegate double SoftFloat64FPRSqrtStepFused(double value1, double value2); - private delegate double SoftFloat64FPSqrt(double value); - private delegate double SoftFloat64FPSub(double value1, double value2); - - private delegate ushort SoftFloat64_16FPConvert(double value); } } diff --git a/src/ARMeilleure/Translation/EmitterContext.cs b/src/ARMeilleure/Translation/EmitterContext.cs index 22b6b9842..3d800e16f 100644 --- a/src/ARMeilleure/Translation/EmitterContext.cs +++ b/src/ARMeilleure/Translation/EmitterContext.cs @@ -97,7 +97,7 @@ namespace ARMeilleure.Translation public virtual Operand Call(MethodInfo info, params Operand[] callArgs) { - nint funcPtr = Delegates.GetDelegateFuncPtr(info); + nint funcPtr = info.MethodHandle.GetFunctionPointer(); OperandType returnType = GetOperandType(info.ReturnType); diff --git a/src/ARMeilleure/Translation/PTC/Ptc.cs b/src/ARMeilleure/Translation/PTC/Ptc.cs index 4675abc49..894e825cf 100644 --- a/src/ARMeilleure/Translation/PTC/Ptc.cs +++ b/src/ARMeilleure/Translation/PTC/Ptc.cs @@ -29,8 +29,8 @@ namespace ARMeilleure.Translation.PTC { private const string OuterHeaderMagicString = "PTCohd\0\0"; private const string InnerHeaderMagicString = "PTCihd\0\0"; - - private const uint InternalVersion = 6997; //! To be incremented manually for each change to the ARMeilleure project. + + private const uint InternalVersion = 6998; //! To be incremented manually for each change to the ARMeilleure project. private const string ActualDir = "0"; private const string BackupDir = "1"; From 850df38f1efe80fa8e4a8344882e7fbabafa0642 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Sat, 4 Jan 2025 06:54:46 -0600 Subject: [PATCH 05/69] cleaup imports --- src/ARMeilleure/Instructions/MathHelper.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/ARMeilleure/Instructions/MathHelper.cs b/src/ARMeilleure/Instructions/MathHelper.cs index acf9a5028..a11ce9d2e 100644 --- a/src/ARMeilleure/Instructions/MathHelper.cs +++ b/src/ARMeilleure/Instructions/MathHelper.cs @@ -1,9 +1,5 @@ using System; -using System.Collections.Generic; -using System.Linq; using System.Runtime.InteropServices; -using System.Text; -using System.Threading.Tasks; namespace ARMeilleure.Instructions { From 8a2bc3957a7826b712a2661553a184dd522e8a8d Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Sun, 5 Jan 2025 15:45:01 -0600 Subject: [PATCH 06/69] UI: fix: new updates not being autoloaded --- src/Ryujinx/Utilities/AppLibrary/ApplicationLibrary.cs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/Ryujinx/Utilities/AppLibrary/ApplicationLibrary.cs b/src/Ryujinx/Utilities/AppLibrary/ApplicationLibrary.cs index 28b4262f1..bb98003cf 100644 --- a/src/Ryujinx/Utilities/AppLibrary/ApplicationLibrary.cs +++ b/src/Ryujinx/Utilities/AppLibrary/ApplicationLibrary.cs @@ -1,4 +1,5 @@ using DynamicData; +using DynamicData.Kernel; using Gommon; using LibHac; using LibHac.Common; @@ -1069,10 +1070,11 @@ namespace Ryujinx.Ava.Utilities.AppLibrary { if (update == null) return false; - var currentlySelected = TitleUpdates.Items.FindFirst(it => + var currentlySelected = TitleUpdates.Items.FirstOrOptional(it => it.TitleUpdate.TitleIdBase == update.TitleIdBase && it.IsSelected); - var shouldSelect = currentlySelected.Check(curr => curr.TitleUpdate?.Version < update.Version); + var shouldSelect = !currentlySelected.HasValue || + currentlySelected.Value.TitleUpdate.Version < update.Version; _titleUpdates.AddOrUpdate((update, shouldSelect)); @@ -1463,7 +1465,7 @@ namespace Ryujinx.Ava.Utilities.AppLibrary TitleUpdatesHelper.LoadTitleUpdatesJson(_virtualFileSystem, application.IdBase); it.AddOrUpdate(savedUpdates); - var selectedUpdate = savedUpdates.FindFirst(update => update.IsSelected); + var selectedUpdate = savedUpdates.FirstOrOptional(update => update.IsSelected); if (TryGetTitleUpdatesFromFile(application.Path, out var bundledUpdates)) { @@ -1475,7 +1477,7 @@ namespace Ryujinx.Ava.Utilities.AppLibrary if (!savedUpdateLookup.Contains(update)) { bool shouldSelect = false; - if (selectedUpdate.Check(su => su.Update?.Version < update.Version)) + if (!selectedUpdate.HasValue || selectedUpdate.Value.Item1.Version < update.Version) { shouldSelect = true; _titleUpdates.AddOrUpdate((selectedUpdate.Value.Update, false)); From 987ab9be4140678d8d04d222f64b87d146e25c14 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Sun, 5 Jan 2025 16:03:34 -0600 Subject: [PATCH 07/69] Fix part 2 --- src/Ryujinx/Utilities/AppLibrary/ApplicationLibrary.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Ryujinx/Utilities/AppLibrary/ApplicationLibrary.cs b/src/Ryujinx/Utilities/AppLibrary/ApplicationLibrary.cs index bb98003cf..e79602eaf 100644 --- a/src/Ryujinx/Utilities/AppLibrary/ApplicationLibrary.cs +++ b/src/Ryujinx/Utilities/AppLibrary/ApplicationLibrary.cs @@ -1480,7 +1480,8 @@ namespace Ryujinx.Ava.Utilities.AppLibrary if (!selectedUpdate.HasValue || selectedUpdate.Value.Item1.Version < update.Version) { shouldSelect = true; - _titleUpdates.AddOrUpdate((selectedUpdate.Value.Update, false)); + if (selectedUpdate.HasValue) + _titleUpdates.AddOrUpdate((selectedUpdate.Value.Update, false)); selectedUpdate = (update, true); } From cc8404127005d4ef371b645cc3ac428f3f48e65c Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Sun, 5 Jan 2025 16:33:44 -0600 Subject: [PATCH 08/69] infra: feat: XML Solution --- Ryujinx.sln | 269 --------------------------------------------------- Ryujinx.slnx | 52 ++++++++++ 2 files changed, 52 insertions(+), 269 deletions(-) delete mode 100644 Ryujinx.sln create mode 100644 Ryujinx.slnx diff --git a/Ryujinx.sln b/Ryujinx.sln deleted file mode 100644 index 9e197e85f..000000000 --- a/Ryujinx.sln +++ /dev/null @@ -1,269 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.1.32228.430 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Tests", "src\Ryujinx.Tests\Ryujinx.Tests.csproj", "{EBB55AEA-C7D7-4DEB-BF96-FA1789E225E9}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Tests.Unicorn", "src\Ryujinx.Tests.Unicorn\Ryujinx.Tests.Unicorn.csproj", "{D8F72938-78EF-4E8C-BAFE-531C9C3C8F15}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.HLE", "src\Ryujinx.HLE\Ryujinx.HLE.csproj", "{CB92CFF9-1D62-4D4F-9E88-8130EF61E351}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.ShaderTools", "src\Ryujinx.ShaderTools\Ryujinx.ShaderTools.csproj", "{3AB294D0-2230-468F-9EB3-BDFCAEAE99A5}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Common", "src\Ryujinx.Common\Ryujinx.Common.csproj", "{5FD4E4F6-8928-4B3C-BE07-28A675C17226}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ARMeilleure", "src\ARMeilleure\ARMeilleure.csproj", "{ABF09A5E-2D8B-4B6F-A51D-5CE414DDB15A}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Gpu", "src\Ryujinx.Graphics.Gpu\Ryujinx.Graphics.Gpu.csproj", "{ADA7EA87-0D63-4D97-9433-922A2124401F}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.GAL", "src\Ryujinx.Graphics.GAL\Ryujinx.Graphics.GAL.csproj", "{A602AE97-91A5-4608-8DF1-EBF4ED7A0B9E}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.OpenGL", "src\Ryujinx.Graphics.OpenGL\Ryujinx.Graphics.OpenGL.csproj", "{9558FB96-075D-4219-8FFF-401979DC0B69}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Texture", "src\Ryujinx.Graphics.Texture\Ryujinx.Graphics.Texture.csproj", "{E1B1AD28-289D-47B7-A106-326972240207}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Shader", "src\Ryujinx.Graphics.Shader\Ryujinx.Graphics.Shader.csproj", "{03B955CD-AD84-4B93-AAA7-BF17923BBAA5}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Nvdec", "src\Ryujinx.Graphics.Nvdec\Ryujinx.Graphics.Nvdec.csproj", "{85A0FA56-DC01-4A42-8808-70DAC76BD66D}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Audio", "src\Ryujinx.Audio\Ryujinx.Audio.csproj", "{806ACF6D-90B0-45D0-A1AC-5F220F3B3985}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Memory", "src\Ryujinx.Memory\Ryujinx.Memory.csproj", "{A5E6C691-9E22-4263-8F40-42F002CE66BE}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Tests.Memory", "src\Ryujinx.Tests.Memory\Ryujinx.Tests.Memory.csproj", "{D1CC5322-7325-4F6B-9625-194B30BE1296}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Cpu", "src\Ryujinx.Cpu\Ryujinx.Cpu.csproj", "{3DF35E3D-D844-4399-A9A1-A9E923264C17}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Device", "src\Ryujinx.Graphics.Device\Ryujinx.Graphics.Device.csproj", "{C3002C3C-7B09-4FE7-894A-372EDA22FC6E}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Host1x", "src\Ryujinx.Graphics.Host1x\Ryujinx.Graphics.Host1x.csproj", "{C35F1536-7DE5-4F9D-9604-B5B4E1561947}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Nvdec.Vp9", "src\Ryujinx.Graphics.Nvdec.Vp9\Ryujinx.Graphics.Nvdec.Vp9.csproj", "{B9AECA11-E248-4886-A10B-81B631CAAF29}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Vic", "src\Ryujinx.Graphics.Vic\Ryujinx.Graphics.Vic.csproj", "{81BB2C11-9408-4EA3-822E-42987AF54429}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Video", "src\Ryujinx.Graphics.Video\Ryujinx.Graphics.Video.csproj", "{FD4A2C14-8E3D-4957-ABBE-3C38897B3E2D}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Audio.Backends.OpenAL", "src\Ryujinx.Audio.Backends.OpenAL\Ryujinx.Audio.Backends.OpenAL.csproj", "{0BE11899-DF2D-4BDE-B9EE-2489E8D35E7D}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Audio.Backends.SoundIo", "src\Ryujinx.Audio.Backends.SoundIo\Ryujinx.Audio.Backends.SoundIo.csproj", "{716364DE-B988-41A6-BAB4-327964266ECC}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Input", "src\Ryujinx.Input\Ryujinx.Input.csproj", "{C16F112F-38C3-40BC-9F5F-4791112063D6}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Input.SDL2", "src\Ryujinx.Input.SDL2\Ryujinx.Input.SDL2.csproj", "{DFAB6F2D-B9BF-4AFF-B22B-7684A328EBA3}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.SDL2.Common", "src\Ryujinx.SDL2.Common\Ryujinx.SDL2.Common.csproj", "{2D5D3A1D-5730-4648-B0AB-06C53CB910C0}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Audio.Backends.SDL2", "src\Ryujinx.Audio.Backends.SDL2\Ryujinx.Audio.Backends.SDL2.csproj", "{D99A395A-8569-4DB0-B336-900647890052}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Nvdec.FFmpeg", "src\Ryujinx.Graphics.Nvdec.FFmpeg\Ryujinx.Graphics.Nvdec.FFmpeg.csproj", "{BEE1C184-C9A4-410B-8DFC-FB74D5C93AEB}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx", "src\Ryujinx\Ryujinx.csproj", "{7C1B2721-13DA-4B62-B046-C626605ECCE6}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Horizon.Generators", "src\Ryujinx.Horizon.Generators\Ryujinx.Horizon.Generators.csproj", "{6AE2A5E8-4C5A-48B9-997B-E1455C0355C6}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Vulkan", "src\Ryujinx.Graphics.Vulkan\Ryujinx.Graphics.Vulkan.csproj", "{D4D09B08-D580-4D69-B886-C35D2853F6C8}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Spv.Generator", "src\Spv.Generator\Spv.Generator.csproj", "{2BCB3D7A-38C0-4FE7-8FDA-374C6AD56D0E}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.UI.LocaleGenerator", "src\Ryujinx.UI.LocaleGenerator\Ryujinx.UI.LocaleGenerator.csproj", "{77D01AD9-2C98-478E-AE1D-8F7100738FB4}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Horizon.Common", "src\Ryujinx.Horizon.Common\Ryujinx.Horizon.Common.csproj", "{77F96ECE-4952-42DB-A528-DED25572A573}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Horizon", "src\Ryujinx.Horizon\Ryujinx.Horizon.csproj", "{AF34127A-3A92-43E5-8496-14960A50B1F1}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Horizon.Kernel.Generators", "src\Ryujinx.Horizon.Kernel.Generators\Ryujinx.Horizon.Kernel.Generators.csproj", "{7F55A45D-4E1D-4A36-ADD3-87F29A285AA2}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.HLE.Generators", "src\Ryujinx.HLE.Generators\Ryujinx.HLE.Generators.csproj", "{B575BCDE-2FD8-4A5D-8756-31CDD7FE81F0}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ryujinx.Graphics.Metal", "src\Ryujinx.Graphics.Metal\Ryujinx.Graphics.Metal.csproj", "{C08931FA-1191-417A-864F-3882D93E683B}" - ProjectSection(ProjectDependencies) = postProject - {A602AE97-91A5-4608-8DF1-EBF4ED7A0B9E} = {A602AE97-91A5-4608-8DF1-EBF4ED7A0B9E} - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ryujinx.BuildValidationTasks", "src\Ryujinx.BuildValidationTasks\Ryujinx.BuildValidationTasks.csproj", "{4A89A234-4F19-497D-A576-DDE8CDFC5B22}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ryujinx.Graphics.Metal.SharpMetalExtensions", "src/Ryujinx.Graphics.Metal.SharpMetalExtensions\Ryujinx.Graphics.Metal.SharpMetalExtensions.csproj", "{81EA598C-DBA1-40B0-8DA4-4796B78F2037}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{36F870C1-3E5F-485F-B426-F0645AF78751}" - ProjectSection(SolutionItems) = preProject - .editorconfig = .editorconfig - .github\workflows\build.yml = .github\workflows\build.yml - .github\workflows\canary.yml = .github\workflows\canary.yml - Directory.Packages.props = Directory.Packages.props - .github\workflows\release.yml = .github\workflows\release.yml - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {EBB55AEA-C7D7-4DEB-BF96-FA1789E225E9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {EBB55AEA-C7D7-4DEB-BF96-FA1789E225E9}.Debug|Any CPU.Build.0 = Debug|Any CPU - {EBB55AEA-C7D7-4DEB-BF96-FA1789E225E9}.Release|Any CPU.ActiveCfg = Release|Any CPU - {EBB55AEA-C7D7-4DEB-BF96-FA1789E225E9}.Release|Any CPU.Build.0 = Release|Any CPU - {D8F72938-78EF-4E8C-BAFE-531C9C3C8F15}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D8F72938-78EF-4E8C-BAFE-531C9C3C8F15}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D8F72938-78EF-4E8C-BAFE-531C9C3C8F15}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D8F72938-78EF-4E8C-BAFE-531C9C3C8F15}.Release|Any CPU.Build.0 = Release|Any CPU - {CB92CFF9-1D62-4D4F-9E88-8130EF61E351}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {CB92CFF9-1D62-4D4F-9E88-8130EF61E351}.Debug|Any CPU.Build.0 = Debug|Any CPU - {CB92CFF9-1D62-4D4F-9E88-8130EF61E351}.Release|Any CPU.ActiveCfg = Release|Any CPU - {CB92CFF9-1D62-4D4F-9E88-8130EF61E351}.Release|Any CPU.Build.0 = Release|Any CPU - {3AB294D0-2230-468F-9EB3-BDFCAEAE99A5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {3AB294D0-2230-468F-9EB3-BDFCAEAE99A5}.Debug|Any CPU.Build.0 = Debug|Any CPU - {3AB294D0-2230-468F-9EB3-BDFCAEAE99A5}.Release|Any CPU.ActiveCfg = Release|Any CPU - {3AB294D0-2230-468F-9EB3-BDFCAEAE99A5}.Release|Any CPU.Build.0 = Release|Any CPU - {5FD4E4F6-8928-4B3C-BE07-28A675C17226}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {5FD4E4F6-8928-4B3C-BE07-28A675C17226}.Debug|Any CPU.Build.0 = Debug|Any CPU - {5FD4E4F6-8928-4B3C-BE07-28A675C17226}.Release|Any CPU.ActiveCfg = Release|Any CPU - {5FD4E4F6-8928-4B3C-BE07-28A675C17226}.Release|Any CPU.Build.0 = Release|Any CPU - {ABF09A5E-2D8B-4B6F-A51D-5CE414DDB15A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {ABF09A5E-2D8B-4B6F-A51D-5CE414DDB15A}.Debug|Any CPU.Build.0 = Debug|Any CPU - {ABF09A5E-2D8B-4B6F-A51D-5CE414DDB15A}.Release|Any CPU.ActiveCfg = Release|Any CPU - {ABF09A5E-2D8B-4B6F-A51D-5CE414DDB15A}.Release|Any CPU.Build.0 = Release|Any CPU - {ADA7EA87-0D63-4D97-9433-922A2124401F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {ADA7EA87-0D63-4D97-9433-922A2124401F}.Debug|Any CPU.Build.0 = Debug|Any CPU - {ADA7EA87-0D63-4D97-9433-922A2124401F}.Release|Any CPU.ActiveCfg = Release|Any CPU - {ADA7EA87-0D63-4D97-9433-922A2124401F}.Release|Any CPU.Build.0 = Release|Any CPU - {A602AE97-91A5-4608-8DF1-EBF4ED7A0B9E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A602AE97-91A5-4608-8DF1-EBF4ED7A0B9E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A602AE97-91A5-4608-8DF1-EBF4ED7A0B9E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A602AE97-91A5-4608-8DF1-EBF4ED7A0B9E}.Release|Any CPU.Build.0 = Release|Any CPU - {9558FB96-075D-4219-8FFF-401979DC0B69}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {9558FB96-075D-4219-8FFF-401979DC0B69}.Debug|Any CPU.Build.0 = Debug|Any CPU - {9558FB96-075D-4219-8FFF-401979DC0B69}.Release|Any CPU.ActiveCfg = Release|Any CPU - {9558FB96-075D-4219-8FFF-401979DC0B69}.Release|Any CPU.Build.0 = Release|Any CPU - {E1B1AD28-289D-47B7-A106-326972240207}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {E1B1AD28-289D-47B7-A106-326972240207}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E1B1AD28-289D-47B7-A106-326972240207}.Release|Any CPU.ActiveCfg = Release|Any CPU - {E1B1AD28-289D-47B7-A106-326972240207}.Release|Any CPU.Build.0 = Release|Any CPU - {03B955CD-AD84-4B93-AAA7-BF17923BBAA5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {03B955CD-AD84-4B93-AAA7-BF17923BBAA5}.Debug|Any CPU.Build.0 = Debug|Any CPU - {03B955CD-AD84-4B93-AAA7-BF17923BBAA5}.Release|Any CPU.ActiveCfg = Release|Any CPU - {03B955CD-AD84-4B93-AAA7-BF17923BBAA5}.Release|Any CPU.Build.0 = Release|Any CPU - {85A0FA56-DC01-4A42-8808-70DAC76BD66D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {85A0FA56-DC01-4A42-8808-70DAC76BD66D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {85A0FA56-DC01-4A42-8808-70DAC76BD66D}.Release|Any CPU.ActiveCfg = Release|Any CPU - {85A0FA56-DC01-4A42-8808-70DAC76BD66D}.Release|Any CPU.Build.0 = Release|Any CPU - {806ACF6D-90B0-45D0-A1AC-5F220F3B3985}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {806ACF6D-90B0-45D0-A1AC-5F220F3B3985}.Debug|Any CPU.Build.0 = Debug|Any CPU - {806ACF6D-90B0-45D0-A1AC-5F220F3B3985}.Release|Any CPU.ActiveCfg = Release|Any CPU - {806ACF6D-90B0-45D0-A1AC-5F220F3B3985}.Release|Any CPU.Build.0 = Release|Any CPU - {A5E6C691-9E22-4263-8F40-42F002CE66BE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A5E6C691-9E22-4263-8F40-42F002CE66BE}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A5E6C691-9E22-4263-8F40-42F002CE66BE}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A5E6C691-9E22-4263-8F40-42F002CE66BE}.Release|Any CPU.Build.0 = Release|Any CPU - {D1CC5322-7325-4F6B-9625-194B30BE1296}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D1CC5322-7325-4F6B-9625-194B30BE1296}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D1CC5322-7325-4F6B-9625-194B30BE1296}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D1CC5322-7325-4F6B-9625-194B30BE1296}.Release|Any CPU.Build.0 = Release|Any CPU - {3DF35E3D-D844-4399-A9A1-A9E923264C17}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {3DF35E3D-D844-4399-A9A1-A9E923264C17}.Debug|Any CPU.Build.0 = Debug|Any CPU - {3DF35E3D-D844-4399-A9A1-A9E923264C17}.Release|Any CPU.ActiveCfg = Release|Any CPU - {3DF35E3D-D844-4399-A9A1-A9E923264C17}.Release|Any CPU.Build.0 = Release|Any CPU - {C3002C3C-7B09-4FE7-894A-372EDA22FC6E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C3002C3C-7B09-4FE7-894A-372EDA22FC6E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C3002C3C-7B09-4FE7-894A-372EDA22FC6E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C3002C3C-7B09-4FE7-894A-372EDA22FC6E}.Release|Any CPU.Build.0 = Release|Any CPU - {C35F1536-7DE5-4F9D-9604-B5B4E1561947}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C35F1536-7DE5-4F9D-9604-B5B4E1561947}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C35F1536-7DE5-4F9D-9604-B5B4E1561947}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C35F1536-7DE5-4F9D-9604-B5B4E1561947}.Release|Any CPU.Build.0 = Release|Any CPU - {B9AECA11-E248-4886-A10B-81B631CAAF29}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {B9AECA11-E248-4886-A10B-81B631CAAF29}.Debug|Any CPU.Build.0 = Debug|Any CPU - {B9AECA11-E248-4886-A10B-81B631CAAF29}.Release|Any CPU.ActiveCfg = Release|Any CPU - {B9AECA11-E248-4886-A10B-81B631CAAF29}.Release|Any CPU.Build.0 = Release|Any CPU - {81BB2C11-9408-4EA3-822E-42987AF54429}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {81BB2C11-9408-4EA3-822E-42987AF54429}.Debug|Any CPU.Build.0 = Debug|Any CPU - {81BB2C11-9408-4EA3-822E-42987AF54429}.Release|Any CPU.ActiveCfg = Release|Any CPU - {81BB2C11-9408-4EA3-822E-42987AF54429}.Release|Any CPU.Build.0 = Release|Any CPU - {FD4A2C14-8E3D-4957-ABBE-3C38897B3E2D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {FD4A2C14-8E3D-4957-ABBE-3C38897B3E2D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {FD4A2C14-8E3D-4957-ABBE-3C38897B3E2D}.Release|Any CPU.ActiveCfg = Release|Any CPU - {FD4A2C14-8E3D-4957-ABBE-3C38897B3E2D}.Release|Any CPU.Build.0 = Release|Any CPU - {0BE11899-DF2D-4BDE-B9EE-2489E8D35E7D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {0BE11899-DF2D-4BDE-B9EE-2489E8D35E7D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {0BE11899-DF2D-4BDE-B9EE-2489E8D35E7D}.Release|Any CPU.ActiveCfg = Release|Any CPU - {0BE11899-DF2D-4BDE-B9EE-2489E8D35E7D}.Release|Any CPU.Build.0 = Release|Any CPU - {716364DE-B988-41A6-BAB4-327964266ECC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {716364DE-B988-41A6-BAB4-327964266ECC}.Debug|Any CPU.Build.0 = Debug|Any CPU - {716364DE-B988-41A6-BAB4-327964266ECC}.Release|Any CPU.ActiveCfg = Release|Any CPU - {716364DE-B988-41A6-BAB4-327964266ECC}.Release|Any CPU.Build.0 = Release|Any CPU - {C16F112F-38C3-40BC-9F5F-4791112063D6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C16F112F-38C3-40BC-9F5F-4791112063D6}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C16F112F-38C3-40BC-9F5F-4791112063D6}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C16F112F-38C3-40BC-9F5F-4791112063D6}.Release|Any CPU.Build.0 = Release|Any CPU - {DFAB6F2D-B9BF-4AFF-B22B-7684A328EBA3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {DFAB6F2D-B9BF-4AFF-B22B-7684A328EBA3}.Debug|Any CPU.Build.0 = Debug|Any CPU - {DFAB6F2D-B9BF-4AFF-B22B-7684A328EBA3}.Release|Any CPU.ActiveCfg = Release|Any CPU - {DFAB6F2D-B9BF-4AFF-B22B-7684A328EBA3}.Release|Any CPU.Build.0 = Release|Any CPU - {2D5D3A1D-5730-4648-B0AB-06C53CB910C0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {2D5D3A1D-5730-4648-B0AB-06C53CB910C0}.Debug|Any CPU.Build.0 = Debug|Any CPU - {2D5D3A1D-5730-4648-B0AB-06C53CB910C0}.Release|Any CPU.ActiveCfg = Release|Any CPU - {2D5D3A1D-5730-4648-B0AB-06C53CB910C0}.Release|Any CPU.Build.0 = Release|Any CPU - {D99A395A-8569-4DB0-B336-900647890052}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D99A395A-8569-4DB0-B336-900647890052}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D99A395A-8569-4DB0-B336-900647890052}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D99A395A-8569-4DB0-B336-900647890052}.Release|Any CPU.Build.0 = Release|Any CPU - {BEE1C184-C9A4-410B-8DFC-FB74D5C93AEB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {BEE1C184-C9A4-410B-8DFC-FB74D5C93AEB}.Debug|Any CPU.Build.0 = Debug|Any CPU - {BEE1C184-C9A4-410B-8DFC-FB74D5C93AEB}.Release|Any CPU.ActiveCfg = Release|Any CPU - {BEE1C184-C9A4-410B-8DFC-FB74D5C93AEB}.Release|Any CPU.Build.0 = Release|Any CPU - {7C1B2721-13DA-4B62-B046-C626605ECCE6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {7C1B2721-13DA-4B62-B046-C626605ECCE6}.Debug|Any CPU.Build.0 = Debug|Any CPU - {7C1B2721-13DA-4B62-B046-C626605ECCE6}.Release|Any CPU.ActiveCfg = Release|Any CPU - {7C1B2721-13DA-4B62-B046-C626605ECCE6}.Release|Any CPU.Build.0 = Release|Any CPU - {6AE2A5E8-4C5A-48B9-997B-E1455C0355C6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {6AE2A5E8-4C5A-48B9-997B-E1455C0355C6}.Debug|Any CPU.Build.0 = Debug|Any CPU - {6AE2A5E8-4C5A-48B9-997B-E1455C0355C6}.Release|Any CPU.ActiveCfg = Release|Any CPU - {6AE2A5E8-4C5A-48B9-997B-E1455C0355C6}.Release|Any CPU.Build.0 = Release|Any CPU - {D4D09B08-D580-4D69-B886-C35D2853F6C8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D4D09B08-D580-4D69-B886-C35D2853F6C8}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D4D09B08-D580-4D69-B886-C35D2853F6C8}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D4D09B08-D580-4D69-B886-C35D2853F6C8}.Release|Any CPU.Build.0 = Release|Any CPU - {2BCB3D7A-38C0-4FE7-8FDA-374C6AD56D0E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {2BCB3D7A-38C0-4FE7-8FDA-374C6AD56D0E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {2BCB3D7A-38C0-4FE7-8FDA-374C6AD56D0E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {2BCB3D7A-38C0-4FE7-8FDA-374C6AD56D0E}.Release|Any CPU.Build.0 = Release|Any CPU - {77D01AD9-2C98-478E-AE1D-8F7100738FB4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {77D01AD9-2C98-478E-AE1D-8F7100738FB4}.Debug|Any CPU.Build.0 = Debug|Any CPU - {77D01AD9-2C98-478E-AE1D-8F7100738FB4}.Release|Any CPU.ActiveCfg = Release|Any CPU - {77D01AD9-2C98-478E-AE1D-8F7100738FB4}.Release|Any CPU.Build.0 = Release|Any CPU - {77F96ECE-4952-42DB-A528-DED25572A573}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {77F96ECE-4952-42DB-A528-DED25572A573}.Debug|Any CPU.Build.0 = Debug|Any CPU - {77F96ECE-4952-42DB-A528-DED25572A573}.Release|Any CPU.ActiveCfg = Release|Any CPU - {77F96ECE-4952-42DB-A528-DED25572A573}.Release|Any CPU.Build.0 = Release|Any CPU - {AF34127A-3A92-43E5-8496-14960A50B1F1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {AF34127A-3A92-43E5-8496-14960A50B1F1}.Debug|Any CPU.Build.0 = Debug|Any CPU - {AF34127A-3A92-43E5-8496-14960A50B1F1}.Release|Any CPU.ActiveCfg = Release|Any CPU - {AF34127A-3A92-43E5-8496-14960A50B1F1}.Release|Any CPU.Build.0 = Release|Any CPU - {7F55A45D-4E1D-4A36-ADD3-87F29A285AA2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {7F55A45D-4E1D-4A36-ADD3-87F29A285AA2}.Debug|Any CPU.Build.0 = Debug|Any CPU - {7F55A45D-4E1D-4A36-ADD3-87F29A285AA2}.Release|Any CPU.ActiveCfg = Release|Any CPU - {7F55A45D-4E1D-4A36-ADD3-87F29A285AA2}.Release|Any CPU.Build.0 = Release|Any CPU - {B575BCDE-2FD8-4A5D-8756-31CDD7FE81F0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {B575BCDE-2FD8-4A5D-8756-31CDD7FE81F0}.Debug|Any CPU.Build.0 = Debug|Any CPU - {B575BCDE-2FD8-4A5D-8756-31CDD7FE81F0}.Release|Any CPU.ActiveCfg = Release|Any CPU - {B575BCDE-2FD8-4A5D-8756-31CDD7FE81F0}.Release|Any CPU.Build.0 = Release|Any CPU - {C08931FA-1191-417A-864F-3882D93E683B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C08931FA-1191-417A-864F-3882D93E683B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C08931FA-1191-417A-864F-3882D93E683B}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C08931FA-1191-417A-864F-3882D93E683B}.Release|Any CPU.Build.0 = Release|Any CPU - {4A89A234-4F19-497D-A576-DDE8CDFC5B22}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {4A89A234-4F19-497D-A576-DDE8CDFC5B22}.Release|Any CPU.ActiveCfg = Release|Any CPU - {81EA598C-DBA1-40B0-8DA4-4796B78F2037}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {81EA598C-DBA1-40B0-8DA4-4796B78F2037}.Debug|Any CPU.Build.0 = Debug|Any CPU - {81EA598C-DBA1-40B0-8DA4-4796B78F2037}.Release|Any CPU.ActiveCfg = Release|Any CPU - {81EA598C-DBA1-40B0-8DA4-4796B78F2037}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {110169B3-3328-4730-8AB0-BA05BEF75C1A} - EndGlobalSection -EndGlobal diff --git a/Ryujinx.slnx b/Ryujinx.slnx new file mode 100644 index 000000000..b116ec0c2 --- /dev/null +++ b/Ryujinx.slnx @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From b661bdd9978dd9470bfd9277360696d37c530e60 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Sun, 5 Jan 2025 16:41:08 -0600 Subject: [PATCH 09/69] Revert "infra: feat: XML Solution" This reverts commit cc8404127005d4ef371b645cc3ac428f3f48e65c. --- Ryujinx.sln | 269 +++++++++++++++++++++++++++++++++++++++++++++++++++ Ryujinx.slnx | 52 ---------- 2 files changed, 269 insertions(+), 52 deletions(-) create mode 100644 Ryujinx.sln delete mode 100644 Ryujinx.slnx diff --git a/Ryujinx.sln b/Ryujinx.sln new file mode 100644 index 000000000..9e197e85f --- /dev/null +++ b/Ryujinx.sln @@ -0,0 +1,269 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.1.32228.430 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Tests", "src\Ryujinx.Tests\Ryujinx.Tests.csproj", "{EBB55AEA-C7D7-4DEB-BF96-FA1789E225E9}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Tests.Unicorn", "src\Ryujinx.Tests.Unicorn\Ryujinx.Tests.Unicorn.csproj", "{D8F72938-78EF-4E8C-BAFE-531C9C3C8F15}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.HLE", "src\Ryujinx.HLE\Ryujinx.HLE.csproj", "{CB92CFF9-1D62-4D4F-9E88-8130EF61E351}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.ShaderTools", "src\Ryujinx.ShaderTools\Ryujinx.ShaderTools.csproj", "{3AB294D0-2230-468F-9EB3-BDFCAEAE99A5}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Common", "src\Ryujinx.Common\Ryujinx.Common.csproj", "{5FD4E4F6-8928-4B3C-BE07-28A675C17226}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ARMeilleure", "src\ARMeilleure\ARMeilleure.csproj", "{ABF09A5E-2D8B-4B6F-A51D-5CE414DDB15A}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Gpu", "src\Ryujinx.Graphics.Gpu\Ryujinx.Graphics.Gpu.csproj", "{ADA7EA87-0D63-4D97-9433-922A2124401F}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.GAL", "src\Ryujinx.Graphics.GAL\Ryujinx.Graphics.GAL.csproj", "{A602AE97-91A5-4608-8DF1-EBF4ED7A0B9E}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.OpenGL", "src\Ryujinx.Graphics.OpenGL\Ryujinx.Graphics.OpenGL.csproj", "{9558FB96-075D-4219-8FFF-401979DC0B69}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Texture", "src\Ryujinx.Graphics.Texture\Ryujinx.Graphics.Texture.csproj", "{E1B1AD28-289D-47B7-A106-326972240207}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Shader", "src\Ryujinx.Graphics.Shader\Ryujinx.Graphics.Shader.csproj", "{03B955CD-AD84-4B93-AAA7-BF17923BBAA5}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Nvdec", "src\Ryujinx.Graphics.Nvdec\Ryujinx.Graphics.Nvdec.csproj", "{85A0FA56-DC01-4A42-8808-70DAC76BD66D}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Audio", "src\Ryujinx.Audio\Ryujinx.Audio.csproj", "{806ACF6D-90B0-45D0-A1AC-5F220F3B3985}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Memory", "src\Ryujinx.Memory\Ryujinx.Memory.csproj", "{A5E6C691-9E22-4263-8F40-42F002CE66BE}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Tests.Memory", "src\Ryujinx.Tests.Memory\Ryujinx.Tests.Memory.csproj", "{D1CC5322-7325-4F6B-9625-194B30BE1296}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Cpu", "src\Ryujinx.Cpu\Ryujinx.Cpu.csproj", "{3DF35E3D-D844-4399-A9A1-A9E923264C17}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Device", "src\Ryujinx.Graphics.Device\Ryujinx.Graphics.Device.csproj", "{C3002C3C-7B09-4FE7-894A-372EDA22FC6E}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Host1x", "src\Ryujinx.Graphics.Host1x\Ryujinx.Graphics.Host1x.csproj", "{C35F1536-7DE5-4F9D-9604-B5B4E1561947}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Nvdec.Vp9", "src\Ryujinx.Graphics.Nvdec.Vp9\Ryujinx.Graphics.Nvdec.Vp9.csproj", "{B9AECA11-E248-4886-A10B-81B631CAAF29}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Vic", "src\Ryujinx.Graphics.Vic\Ryujinx.Graphics.Vic.csproj", "{81BB2C11-9408-4EA3-822E-42987AF54429}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Video", "src\Ryujinx.Graphics.Video\Ryujinx.Graphics.Video.csproj", "{FD4A2C14-8E3D-4957-ABBE-3C38897B3E2D}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Audio.Backends.OpenAL", "src\Ryujinx.Audio.Backends.OpenAL\Ryujinx.Audio.Backends.OpenAL.csproj", "{0BE11899-DF2D-4BDE-B9EE-2489E8D35E7D}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Audio.Backends.SoundIo", "src\Ryujinx.Audio.Backends.SoundIo\Ryujinx.Audio.Backends.SoundIo.csproj", "{716364DE-B988-41A6-BAB4-327964266ECC}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Input", "src\Ryujinx.Input\Ryujinx.Input.csproj", "{C16F112F-38C3-40BC-9F5F-4791112063D6}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Input.SDL2", "src\Ryujinx.Input.SDL2\Ryujinx.Input.SDL2.csproj", "{DFAB6F2D-B9BF-4AFF-B22B-7684A328EBA3}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.SDL2.Common", "src\Ryujinx.SDL2.Common\Ryujinx.SDL2.Common.csproj", "{2D5D3A1D-5730-4648-B0AB-06C53CB910C0}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Audio.Backends.SDL2", "src\Ryujinx.Audio.Backends.SDL2\Ryujinx.Audio.Backends.SDL2.csproj", "{D99A395A-8569-4DB0-B336-900647890052}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Nvdec.FFmpeg", "src\Ryujinx.Graphics.Nvdec.FFmpeg\Ryujinx.Graphics.Nvdec.FFmpeg.csproj", "{BEE1C184-C9A4-410B-8DFC-FB74D5C93AEB}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx", "src\Ryujinx\Ryujinx.csproj", "{7C1B2721-13DA-4B62-B046-C626605ECCE6}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Horizon.Generators", "src\Ryujinx.Horizon.Generators\Ryujinx.Horizon.Generators.csproj", "{6AE2A5E8-4C5A-48B9-997B-E1455C0355C6}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Vulkan", "src\Ryujinx.Graphics.Vulkan\Ryujinx.Graphics.Vulkan.csproj", "{D4D09B08-D580-4D69-B886-C35D2853F6C8}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Spv.Generator", "src\Spv.Generator\Spv.Generator.csproj", "{2BCB3D7A-38C0-4FE7-8FDA-374C6AD56D0E}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.UI.LocaleGenerator", "src\Ryujinx.UI.LocaleGenerator\Ryujinx.UI.LocaleGenerator.csproj", "{77D01AD9-2C98-478E-AE1D-8F7100738FB4}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Horizon.Common", "src\Ryujinx.Horizon.Common\Ryujinx.Horizon.Common.csproj", "{77F96ECE-4952-42DB-A528-DED25572A573}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Horizon", "src\Ryujinx.Horizon\Ryujinx.Horizon.csproj", "{AF34127A-3A92-43E5-8496-14960A50B1F1}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Horizon.Kernel.Generators", "src\Ryujinx.Horizon.Kernel.Generators\Ryujinx.Horizon.Kernel.Generators.csproj", "{7F55A45D-4E1D-4A36-ADD3-87F29A285AA2}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.HLE.Generators", "src\Ryujinx.HLE.Generators\Ryujinx.HLE.Generators.csproj", "{B575BCDE-2FD8-4A5D-8756-31CDD7FE81F0}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ryujinx.Graphics.Metal", "src\Ryujinx.Graphics.Metal\Ryujinx.Graphics.Metal.csproj", "{C08931FA-1191-417A-864F-3882D93E683B}" + ProjectSection(ProjectDependencies) = postProject + {A602AE97-91A5-4608-8DF1-EBF4ED7A0B9E} = {A602AE97-91A5-4608-8DF1-EBF4ED7A0B9E} + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ryujinx.BuildValidationTasks", "src\Ryujinx.BuildValidationTasks\Ryujinx.BuildValidationTasks.csproj", "{4A89A234-4F19-497D-A576-DDE8CDFC5B22}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ryujinx.Graphics.Metal.SharpMetalExtensions", "src/Ryujinx.Graphics.Metal.SharpMetalExtensions\Ryujinx.Graphics.Metal.SharpMetalExtensions.csproj", "{81EA598C-DBA1-40B0-8DA4-4796B78F2037}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{36F870C1-3E5F-485F-B426-F0645AF78751}" + ProjectSection(SolutionItems) = preProject + .editorconfig = .editorconfig + .github\workflows\build.yml = .github\workflows\build.yml + .github\workflows\canary.yml = .github\workflows\canary.yml + Directory.Packages.props = Directory.Packages.props + .github\workflows\release.yml = .github\workflows\release.yml + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {EBB55AEA-C7D7-4DEB-BF96-FA1789E225E9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EBB55AEA-C7D7-4DEB-BF96-FA1789E225E9}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EBB55AEA-C7D7-4DEB-BF96-FA1789E225E9}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EBB55AEA-C7D7-4DEB-BF96-FA1789E225E9}.Release|Any CPU.Build.0 = Release|Any CPU + {D8F72938-78EF-4E8C-BAFE-531C9C3C8F15}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D8F72938-78EF-4E8C-BAFE-531C9C3C8F15}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D8F72938-78EF-4E8C-BAFE-531C9C3C8F15}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D8F72938-78EF-4E8C-BAFE-531C9C3C8F15}.Release|Any CPU.Build.0 = Release|Any CPU + {CB92CFF9-1D62-4D4F-9E88-8130EF61E351}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CB92CFF9-1D62-4D4F-9E88-8130EF61E351}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CB92CFF9-1D62-4D4F-9E88-8130EF61E351}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CB92CFF9-1D62-4D4F-9E88-8130EF61E351}.Release|Any CPU.Build.0 = Release|Any CPU + {3AB294D0-2230-468F-9EB3-BDFCAEAE99A5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3AB294D0-2230-468F-9EB3-BDFCAEAE99A5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3AB294D0-2230-468F-9EB3-BDFCAEAE99A5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3AB294D0-2230-468F-9EB3-BDFCAEAE99A5}.Release|Any CPU.Build.0 = Release|Any CPU + {5FD4E4F6-8928-4B3C-BE07-28A675C17226}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5FD4E4F6-8928-4B3C-BE07-28A675C17226}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5FD4E4F6-8928-4B3C-BE07-28A675C17226}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5FD4E4F6-8928-4B3C-BE07-28A675C17226}.Release|Any CPU.Build.0 = Release|Any CPU + {ABF09A5E-2D8B-4B6F-A51D-5CE414DDB15A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {ABF09A5E-2D8B-4B6F-A51D-5CE414DDB15A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {ABF09A5E-2D8B-4B6F-A51D-5CE414DDB15A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {ABF09A5E-2D8B-4B6F-A51D-5CE414DDB15A}.Release|Any CPU.Build.0 = Release|Any CPU + {ADA7EA87-0D63-4D97-9433-922A2124401F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {ADA7EA87-0D63-4D97-9433-922A2124401F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {ADA7EA87-0D63-4D97-9433-922A2124401F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {ADA7EA87-0D63-4D97-9433-922A2124401F}.Release|Any CPU.Build.0 = Release|Any CPU + {A602AE97-91A5-4608-8DF1-EBF4ED7A0B9E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A602AE97-91A5-4608-8DF1-EBF4ED7A0B9E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A602AE97-91A5-4608-8DF1-EBF4ED7A0B9E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A602AE97-91A5-4608-8DF1-EBF4ED7A0B9E}.Release|Any CPU.Build.0 = Release|Any CPU + {9558FB96-075D-4219-8FFF-401979DC0B69}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9558FB96-075D-4219-8FFF-401979DC0B69}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9558FB96-075D-4219-8FFF-401979DC0B69}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9558FB96-075D-4219-8FFF-401979DC0B69}.Release|Any CPU.Build.0 = Release|Any CPU + {E1B1AD28-289D-47B7-A106-326972240207}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E1B1AD28-289D-47B7-A106-326972240207}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E1B1AD28-289D-47B7-A106-326972240207}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E1B1AD28-289D-47B7-A106-326972240207}.Release|Any CPU.Build.0 = Release|Any CPU + {03B955CD-AD84-4B93-AAA7-BF17923BBAA5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {03B955CD-AD84-4B93-AAA7-BF17923BBAA5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {03B955CD-AD84-4B93-AAA7-BF17923BBAA5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {03B955CD-AD84-4B93-AAA7-BF17923BBAA5}.Release|Any CPU.Build.0 = Release|Any CPU + {85A0FA56-DC01-4A42-8808-70DAC76BD66D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {85A0FA56-DC01-4A42-8808-70DAC76BD66D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {85A0FA56-DC01-4A42-8808-70DAC76BD66D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {85A0FA56-DC01-4A42-8808-70DAC76BD66D}.Release|Any CPU.Build.0 = Release|Any CPU + {806ACF6D-90B0-45D0-A1AC-5F220F3B3985}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {806ACF6D-90B0-45D0-A1AC-5F220F3B3985}.Debug|Any CPU.Build.0 = Debug|Any CPU + {806ACF6D-90B0-45D0-A1AC-5F220F3B3985}.Release|Any CPU.ActiveCfg = Release|Any CPU + {806ACF6D-90B0-45D0-A1AC-5F220F3B3985}.Release|Any CPU.Build.0 = Release|Any CPU + {A5E6C691-9E22-4263-8F40-42F002CE66BE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A5E6C691-9E22-4263-8F40-42F002CE66BE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A5E6C691-9E22-4263-8F40-42F002CE66BE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A5E6C691-9E22-4263-8F40-42F002CE66BE}.Release|Any CPU.Build.0 = Release|Any CPU + {D1CC5322-7325-4F6B-9625-194B30BE1296}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D1CC5322-7325-4F6B-9625-194B30BE1296}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D1CC5322-7325-4F6B-9625-194B30BE1296}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D1CC5322-7325-4F6B-9625-194B30BE1296}.Release|Any CPU.Build.0 = Release|Any CPU + {3DF35E3D-D844-4399-A9A1-A9E923264C17}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3DF35E3D-D844-4399-A9A1-A9E923264C17}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3DF35E3D-D844-4399-A9A1-A9E923264C17}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3DF35E3D-D844-4399-A9A1-A9E923264C17}.Release|Any CPU.Build.0 = Release|Any CPU + {C3002C3C-7B09-4FE7-894A-372EDA22FC6E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C3002C3C-7B09-4FE7-894A-372EDA22FC6E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C3002C3C-7B09-4FE7-894A-372EDA22FC6E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C3002C3C-7B09-4FE7-894A-372EDA22FC6E}.Release|Any CPU.Build.0 = Release|Any CPU + {C35F1536-7DE5-4F9D-9604-B5B4E1561947}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C35F1536-7DE5-4F9D-9604-B5B4E1561947}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C35F1536-7DE5-4F9D-9604-B5B4E1561947}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C35F1536-7DE5-4F9D-9604-B5B4E1561947}.Release|Any CPU.Build.0 = Release|Any CPU + {B9AECA11-E248-4886-A10B-81B631CAAF29}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B9AECA11-E248-4886-A10B-81B631CAAF29}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B9AECA11-E248-4886-A10B-81B631CAAF29}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B9AECA11-E248-4886-A10B-81B631CAAF29}.Release|Any CPU.Build.0 = Release|Any CPU + {81BB2C11-9408-4EA3-822E-42987AF54429}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {81BB2C11-9408-4EA3-822E-42987AF54429}.Debug|Any CPU.Build.0 = Debug|Any CPU + {81BB2C11-9408-4EA3-822E-42987AF54429}.Release|Any CPU.ActiveCfg = Release|Any CPU + {81BB2C11-9408-4EA3-822E-42987AF54429}.Release|Any CPU.Build.0 = Release|Any CPU + {FD4A2C14-8E3D-4957-ABBE-3C38897B3E2D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FD4A2C14-8E3D-4957-ABBE-3C38897B3E2D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FD4A2C14-8E3D-4957-ABBE-3C38897B3E2D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FD4A2C14-8E3D-4957-ABBE-3C38897B3E2D}.Release|Any CPU.Build.0 = Release|Any CPU + {0BE11899-DF2D-4BDE-B9EE-2489E8D35E7D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0BE11899-DF2D-4BDE-B9EE-2489E8D35E7D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0BE11899-DF2D-4BDE-B9EE-2489E8D35E7D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0BE11899-DF2D-4BDE-B9EE-2489E8D35E7D}.Release|Any CPU.Build.0 = Release|Any CPU + {716364DE-B988-41A6-BAB4-327964266ECC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {716364DE-B988-41A6-BAB4-327964266ECC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {716364DE-B988-41A6-BAB4-327964266ECC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {716364DE-B988-41A6-BAB4-327964266ECC}.Release|Any CPU.Build.0 = Release|Any CPU + {C16F112F-38C3-40BC-9F5F-4791112063D6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C16F112F-38C3-40BC-9F5F-4791112063D6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C16F112F-38C3-40BC-9F5F-4791112063D6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C16F112F-38C3-40BC-9F5F-4791112063D6}.Release|Any CPU.Build.0 = Release|Any CPU + {DFAB6F2D-B9BF-4AFF-B22B-7684A328EBA3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DFAB6F2D-B9BF-4AFF-B22B-7684A328EBA3}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DFAB6F2D-B9BF-4AFF-B22B-7684A328EBA3}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DFAB6F2D-B9BF-4AFF-B22B-7684A328EBA3}.Release|Any CPU.Build.0 = Release|Any CPU + {2D5D3A1D-5730-4648-B0AB-06C53CB910C0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2D5D3A1D-5730-4648-B0AB-06C53CB910C0}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2D5D3A1D-5730-4648-B0AB-06C53CB910C0}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2D5D3A1D-5730-4648-B0AB-06C53CB910C0}.Release|Any CPU.Build.0 = Release|Any CPU + {D99A395A-8569-4DB0-B336-900647890052}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D99A395A-8569-4DB0-B336-900647890052}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D99A395A-8569-4DB0-B336-900647890052}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D99A395A-8569-4DB0-B336-900647890052}.Release|Any CPU.Build.0 = Release|Any CPU + {BEE1C184-C9A4-410B-8DFC-FB74D5C93AEB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BEE1C184-C9A4-410B-8DFC-FB74D5C93AEB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BEE1C184-C9A4-410B-8DFC-FB74D5C93AEB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {BEE1C184-C9A4-410B-8DFC-FB74D5C93AEB}.Release|Any CPU.Build.0 = Release|Any CPU + {7C1B2721-13DA-4B62-B046-C626605ECCE6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7C1B2721-13DA-4B62-B046-C626605ECCE6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7C1B2721-13DA-4B62-B046-C626605ECCE6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7C1B2721-13DA-4B62-B046-C626605ECCE6}.Release|Any CPU.Build.0 = Release|Any CPU + {6AE2A5E8-4C5A-48B9-997B-E1455C0355C6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6AE2A5E8-4C5A-48B9-997B-E1455C0355C6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6AE2A5E8-4C5A-48B9-997B-E1455C0355C6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6AE2A5E8-4C5A-48B9-997B-E1455C0355C6}.Release|Any CPU.Build.0 = Release|Any CPU + {D4D09B08-D580-4D69-B886-C35D2853F6C8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D4D09B08-D580-4D69-B886-C35D2853F6C8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D4D09B08-D580-4D69-B886-C35D2853F6C8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D4D09B08-D580-4D69-B886-C35D2853F6C8}.Release|Any CPU.Build.0 = Release|Any CPU + {2BCB3D7A-38C0-4FE7-8FDA-374C6AD56D0E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2BCB3D7A-38C0-4FE7-8FDA-374C6AD56D0E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2BCB3D7A-38C0-4FE7-8FDA-374C6AD56D0E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2BCB3D7A-38C0-4FE7-8FDA-374C6AD56D0E}.Release|Any CPU.Build.0 = Release|Any CPU + {77D01AD9-2C98-478E-AE1D-8F7100738FB4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {77D01AD9-2C98-478E-AE1D-8F7100738FB4}.Debug|Any CPU.Build.0 = Debug|Any CPU + {77D01AD9-2C98-478E-AE1D-8F7100738FB4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {77D01AD9-2C98-478E-AE1D-8F7100738FB4}.Release|Any CPU.Build.0 = Release|Any CPU + {77F96ECE-4952-42DB-A528-DED25572A573}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {77F96ECE-4952-42DB-A528-DED25572A573}.Debug|Any CPU.Build.0 = Debug|Any CPU + {77F96ECE-4952-42DB-A528-DED25572A573}.Release|Any CPU.ActiveCfg = Release|Any CPU + {77F96ECE-4952-42DB-A528-DED25572A573}.Release|Any CPU.Build.0 = Release|Any CPU + {AF34127A-3A92-43E5-8496-14960A50B1F1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AF34127A-3A92-43E5-8496-14960A50B1F1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AF34127A-3A92-43E5-8496-14960A50B1F1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AF34127A-3A92-43E5-8496-14960A50B1F1}.Release|Any CPU.Build.0 = Release|Any CPU + {7F55A45D-4E1D-4A36-ADD3-87F29A285AA2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7F55A45D-4E1D-4A36-ADD3-87F29A285AA2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7F55A45D-4E1D-4A36-ADD3-87F29A285AA2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7F55A45D-4E1D-4A36-ADD3-87F29A285AA2}.Release|Any CPU.Build.0 = Release|Any CPU + {B575BCDE-2FD8-4A5D-8756-31CDD7FE81F0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B575BCDE-2FD8-4A5D-8756-31CDD7FE81F0}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B575BCDE-2FD8-4A5D-8756-31CDD7FE81F0}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B575BCDE-2FD8-4A5D-8756-31CDD7FE81F0}.Release|Any CPU.Build.0 = Release|Any CPU + {C08931FA-1191-417A-864F-3882D93E683B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C08931FA-1191-417A-864F-3882D93E683B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C08931FA-1191-417A-864F-3882D93E683B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C08931FA-1191-417A-864F-3882D93E683B}.Release|Any CPU.Build.0 = Release|Any CPU + {4A89A234-4F19-497D-A576-DDE8CDFC5B22}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4A89A234-4F19-497D-A576-DDE8CDFC5B22}.Release|Any CPU.ActiveCfg = Release|Any CPU + {81EA598C-DBA1-40B0-8DA4-4796B78F2037}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {81EA598C-DBA1-40B0-8DA4-4796B78F2037}.Debug|Any CPU.Build.0 = Debug|Any CPU + {81EA598C-DBA1-40B0-8DA4-4796B78F2037}.Release|Any CPU.ActiveCfg = Release|Any CPU + {81EA598C-DBA1-40B0-8DA4-4796B78F2037}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {110169B3-3328-4730-8AB0-BA05BEF75C1A} + EndGlobalSection +EndGlobal diff --git a/Ryujinx.slnx b/Ryujinx.slnx deleted file mode 100644 index b116ec0c2..000000000 --- a/Ryujinx.slnx +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - From 845dd9a8db4d988f4b2c58dd905f25146c988b6d Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Sun, 5 Jan 2025 22:25:05 -0600 Subject: [PATCH 10/69] vk: regression: potentially fix various random graphical anomalies --- src/Ryujinx.Graphics.Vulkan/BufferMirrorRangeList.cs | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/Ryujinx.Graphics.Vulkan/BufferMirrorRangeList.cs b/src/Ryujinx.Graphics.Vulkan/BufferMirrorRangeList.cs index e79248a47..f7f78b613 100644 --- a/src/Ryujinx.Graphics.Vulkan/BufferMirrorRangeList.cs +++ b/src/Ryujinx.Graphics.Vulkan/BufferMirrorRangeList.cs @@ -168,13 +168,15 @@ namespace Ryujinx.Graphics.Vulkan return BinarySearch(list, offset, size) >= 0; } - public readonly IEnumerable FindOverlaps(int offset, int size) + public readonly List FindOverlaps(int offset, int size) { var list = _ranges; if (list == null) { - yield break; + return null; } + + List result = null; int index = BinarySearch(list, offset, size); @@ -187,10 +189,12 @@ namespace Ryujinx.Graphics.Vulkan do { - yield return list[index++]; + (result ??= []).Add(list[index++]); } while (index < list.Count && list[index].OverlapsWith(offset, size)); } + + return result; } private static int BinarySearch(List list, int offset, int size) From 13efc3e544408c63289e3a0aec4d62b5d8c0ad73 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Mon, 6 Jan 2025 00:09:48 -0600 Subject: [PATCH 11/69] Switch back to nightly.link I'm pretty sure them not working was due to old links pointing to GreemDev/Ryujinx after the org change --- .github/workflows/nightly_pr_comment.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nightly_pr_comment.yml b/.github/workflows/nightly_pr_comment.yml index fb7cdb359..24d23d98b 100644 --- a/.github/workflows/nightly_pr_comment.yml +++ b/.github/workflows/nightly_pr_comment.yml @@ -37,11 +37,11 @@ jobs: if (!artifacts.length) { return core.error(`No artifacts found`); } - let body = `*You need to be logged into GitHub to download these files.*\n\nDownload the artifacts for this pull request:\n`; + let body = `Download the artifacts for this pull request:\n`; let hidden_debug_artifacts = `\n\n
Only for Developers\n`; for (const art of artifacts) { - const url = `https://github.com/Ryubing/Ryujinx/actions/runs/${run_id}/artifacts/${art.id}`; - if(art.name.includes('Debug')) { + const url = `https://nightly.link/${owner}/${repo}/actions/artifacts/${art.id}.zip`; + if (art.name.includes('Debug')) { hidden_debug_artifacts += `\n* [${art.name}](${url})`; } else { body += `\n* [${art.name}](${url})`; From 2c24df02475dc7efc473b2a707b350d1239e5301 Mon Sep 17 00:00:00 2001 From: Piplup <100526773+piplup55@users.noreply.github.com> Date: Mon, 6 Jan 2025 07:07:16 +0000 Subject: [PATCH 12/69] reworked workflows (#497) this makes `canary.yml` follow the same order of steps as `release.yml`, adding appimages to the canary versions and i fixed some bugs with the `build-appimage.sh` mainly fixing linking to the old repo --- .github/workflows/canary.yml | 71 +++++++++---------- .github/workflows/release.yml | 18 ++--- distribution/linux/appimage/build-appimage.sh | 2 +- 3 files changed, 45 insertions(+), 46 deletions(-) diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index a0653f540..ae798a076 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -108,6 +108,7 @@ jobs: sed -r --in-place 's/\%\%RYUJINX_TARGET_RELEASE_CHANNEL_REPO\%\%/${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_REPO }}/g;' src/Ryujinx.Common/ReleaseInformation.cs sed -r --in-place 's/\%\%RYUJINX_TARGET_RELEASE_CHANNEL_SOURCE_REPO\%\%/${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_SOURCE_REPO }}/g;' src/Ryujinx.Common/ReleaseInformation.cs sed -r --in-place 's/\%\%RYUJINX_CONFIG_FILE_NAME\%\%/Config\.json/g;' src/Ryujinx.Common/ReleaseInformation.cs + sed -r --in-place '/^Name=Ryujinx$/s/Name=Ryujinx/Name=Ryujinx-Canary/' distribution/linux/Ryujinx.desktop shell: bash - name: Create output dir @@ -115,71 +116,69 @@ jobs: - name: Publish run: | - dotnet publish -c Release -r "${{ matrix.platform.name }}" -o ./publish_ava/publish -p:Version="${{ steps.version_info.outputs.build_version }}" -p:SourceRevisionId="${{ steps.version_info.outputs.git_short_hash }}" -p:DebugType=embedded src/Ryujinx --self-contained + dotnet publish -c Release -r "${{ matrix.platform.name }}" -o ./publish -p:Version="${{ steps.version_info.outputs.build_version }}" -p:SourceRevisionId="${{ steps.version_info.outputs.git_short_hash }}" -p:DebugType=embedded src/Ryujinx --self-contained - name: Packing Windows builds if: matrix.platform.os == 'windows-latest' run: | - pushd publish_ava + pushd publish rm publish/libarmeilleure-jitsupport.dylib - 7z a ../release_output/ryujinx-canary-${{ steps.version_info.outputs.build_version }}-${{ matrix.platform.zip_os_name }}.zip publish + 7z a ../release_output/ryujinx-canary-${{ steps.version_info.outputs.build_version }}-${{ matrix.platform.zip_os_name }}.zip ../publish popd shell: bash - name: Packing Linux builds if: matrix.platform.os == 'ubuntu-latest' run: | - pushd publish_ava + pushd publish rm publish/libarmeilleure-jitsupport.dylib chmod +x publish/Ryujinx.sh publish/Ryujinx - tar -czvf ../release_output/ryujinx-canary-${{ steps.version_info.outputs.build_version }}-${{ matrix.platform.zip_os_name }}.tar.gz publish + tar -czvf ../release_output/ryujinx-canary-${{ steps.version_info.outputs.build_version }}-${{ matrix.platform.zip_os_name }}.tar.gz ../publish popd shell: bash - #- name: Build AppImage (Linux) - # if: matrix.platform.os == 'ubuntu-latest' - # run: | - # BUILD_VERSION="${{ steps.version_info.outputs.build_version }}" - # PLATFORM_NAME="${{ matrix.platform.name }}" + - name: Build AppImage (Linux) + if: matrix.platform.os == 'ubuntu-latest' + run: | + BUILD_VERSION="${{ steps.version_info.outputs.build_version }}" + PLATFORM_NAME="${{ matrix.platform.name }}" - # sudo apt install -y zsync desktop-file-utils appstream + sudo apt install -y zsync desktop-file-utils appstream - # mkdir -p tools - # export PATH="$PATH:$(readlink -f tools)" + mkdir -p tools + export PATH="$PATH:$(readlink -f tools)" # Setup appimagetool - # wget -q -O tools/appimagetool "https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-x86_64.AppImage" - # chmod +x tools/appimagetool - # chmod +x distribution/linux/appimage/build-appimage.sh + wget -q -O tools/appimagetool "https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-x86_64.AppImage" + chmod +x tools/appimagetool + chmod +x distribution/linux/appimage/build-appimage.sh # Explicitly set $ARCH for appimagetool ($ARCH_NAME is for the file name) - # if [ "$PLATFORM_NAME" = "linux-x64" ]; then - # ARCH_NAME=x64 - # export ARCH=x86_64 - # elif [ "$PLATFORM_NAME" = "linux-arm64" ]; then - # ARCH_NAME=arm64 - # export ARCH=aarch64 - # else - # echo "Unexpected PLATFORM_NAME "$PLATFORM_NAME"" - # exit 1 - # fi + if [ "$PLATFORM_NAME" = "linux-x64" ]; then + ARCH_NAME=x64 + export ARCH=x86_64 + elif [ "$PLATFORM_NAME" = "linux-arm64" ]; then + ARCH_NAME=arm64 + export ARCH=aarch64 + else + echo "Unexpected PLATFORM_NAME "$PLATFORM_NAME"" + exit 1 + fi - # export UFLAG="gh-releases-zsync|${{ github.repository_owner }}|${{ github.event.repository.name }}|latest|*-$ARCH_NAME.AppImage.zsync" - # BUILDDIR=publish_ava OUTDIR=publish_ava_appimage distribution/linux/appimage/build-appimage.sh + export UFLAG="gh-releases-zsync|${{ github.repository_owner }}|${{ github.event.repository.name }}|latest|*-$ARCH_NAME.AppImage.zsync" + BUILDDIR=publish OUTDIR=publish_appimage distribution/linux/appimage/build-appimage.sh - # Add to release output - # pushd publish_ava_appimage - # mv Ryujinx.AppImage ../release_output/ryujinx-$BUILD_VERSION-$ARCH_NAME.AppImage - # mv Ryujinx.AppImage.zsync ../release_output/ryujinx-$BUILD_VERSION-$ARCH_NAME.AppImage.zsync - # popd - # shell: bash + pushd publish_appimage + mv Ryujinx.AppImage ../release_output/ryujinx-$BUILD_VERSION-$ARCH_NAME.AppImage + mv Ryujinx.AppImage.zsync ../release_output/ryujinx-$BUILD_VERSION-$ARCH_NAME.AppImage.zsync + popd + shell: bash - name: Pushing new release uses: ncipollo/release-action@v1 with: name: ${{ steps.version_info.outputs.build_version }} - artifacts: "release_output/*.tar.gz,release_output/*.zip" - #artifacts: "release_output/*.tar.gz,release_output/*.zip,release_output/*AppImage*" + artifacts: "release_output/*.tar.gz,release_output/*.zip,release_output/*AppImage*" tag: ${{ steps.version_info.outputs.build_version }} body: | # Canary builds: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 584507d75..d8bbdd175 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -121,6 +121,15 @@ jobs: 7z a ../release_output/ryujinx-${{ steps.version_info.outputs.build_version }}-${{ matrix.platform.zip_os_name }}.zip ../publish popd shell: bash + + - name: Packing Linux builds + if: matrix.platform.os == 'ubuntu-latest' + run: | + pushd publish + chmod +x Ryujinx.sh Ryujinx + tar -czvf ../release_output/ryujinx-${{ steps.version_info.outputs.build_version }}-${{ matrix.platform.zip_os_name }}.tar.gz ../publish + popd + shell: bash - name: Build AppImage (Linux) if: matrix.platform.os == 'ubuntu-latest' @@ -157,15 +166,6 @@ jobs: mv Ryujinx.AppImage ../release_output/ryujinx-$BUILD_VERSION-$ARCH_NAME.AppImage mv Ryujinx.AppImage.zsync ../release_output/ryujinx-$BUILD_VERSION-$ARCH_NAME.AppImage.zsync popd - shell: bash - - - name: Packing Linux builds - if: matrix.platform.os == 'ubuntu-latest' - run: | - pushd publish - chmod +x Ryujinx.sh Ryujinx - tar -czvf ../release_output/ryujinx-${{ steps.version_info.outputs.build_version }}-${{ matrix.platform.zip_os_name }}.tar.gz ../publish - popd shell: bash - name: Pushing new release diff --git a/distribution/linux/appimage/build-appimage.sh b/distribution/linux/appimage/build-appimage.sh index 9b52928f8..a9de4866b 100755 --- a/distribution/linux/appimage/build-appimage.sh +++ b/distribution/linux/appimage/build-appimage.sh @@ -6,7 +6,7 @@ cd "$ROOTDIR" BUILDDIR=${BUILDDIR:-publish} OUTDIR=${OUTDIR:-publish_appimage} -UFLAG=${UFLAG:-"gh-releases-zsync|GreemDev|ryujinx|latest|*-x64.AppImage.zsync"} +UFLAG=${UFLAG:-"gh-releases-zsync|Ryubing|ryujinx|latest|*-x64.AppImage.zsync"} rm -rf AppDir mkdir -p AppDir/usr/bin From 6fa2bfc736f4b1f4d2da2d5055c1b303adacf6b1 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Mon, 6 Jan 2025 01:15:39 -0600 Subject: [PATCH 13/69] fix canary ci --- .github/workflows/canary.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index ae798a076..6d00036ee 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -122,7 +122,7 @@ jobs: if: matrix.platform.os == 'windows-latest' run: | pushd publish - rm publish/libarmeilleure-jitsupport.dylib + rm libarmeilleure-jitsupport.dylib 7z a ../release_output/ryujinx-canary-${{ steps.version_info.outputs.build_version }}-${{ matrix.platform.zip_os_name }}.zip ../publish popd shell: bash @@ -131,8 +131,8 @@ jobs: if: matrix.platform.os == 'ubuntu-latest' run: | pushd publish - rm publish/libarmeilleure-jitsupport.dylib - chmod +x publish/Ryujinx.sh publish/Ryujinx + rm libarmeilleure-jitsupport.dylib + chmod +x Ryujinx.sh Ryujinx tar -czvf ../release_output/ryujinx-canary-${{ steps.version_info.outputs.build_version }}-${{ matrix.platform.zip_os_name }}.tar.gz ../publish popd shell: bash From 159ff828a17d7b691dcfc37bb284851fc7d61882 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Mon, 6 Jan 2025 01:22:05 -0600 Subject: [PATCH 14/69] give canary appimages the ryujinx-canary name --- .github/workflows/canary.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index 6d00036ee..b599fdb26 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -169,8 +169,8 @@ jobs: BUILDDIR=publish OUTDIR=publish_appimage distribution/linux/appimage/build-appimage.sh pushd publish_appimage - mv Ryujinx.AppImage ../release_output/ryujinx-$BUILD_VERSION-$ARCH_NAME.AppImage - mv Ryujinx.AppImage.zsync ../release_output/ryujinx-$BUILD_VERSION-$ARCH_NAME.AppImage.zsync + mv Ryujinx.AppImage ../release_output/ryujinx-canary-$BUILD_VERSION-$ARCH_NAME.AppImage + mv Ryujinx.AppImage.zsync ../release_output/ryujinx-canary-$BUILD_VERSION-$ARCH_NAME.AppImage.zsync popd shell: bash From 9726b0feb00b65294f85271107d79e4bb56dedd7 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Mon, 6 Jan 2025 01:27:37 -0600 Subject: [PATCH 15/69] Use Canary-Releases for AppImage Canary updates --- .github/workflows/canary.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index b599fdb26..d93d4fbed 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -165,7 +165,7 @@ jobs: exit 1 fi - export UFLAG="gh-releases-zsync|${{ github.repository_owner }}|${{ github.event.repository.name }}|latest|*-$ARCH_NAME.AppImage.zsync" + export UFLAG="gh-releases-zsync|${{ github.repository_owner }}|Canary-Releases|latest|*-$ARCH_NAME.AppImage.zsync" BUILDDIR=publish OUTDIR=publish_appimage distribution/linux/appimage/build-appimage.sh pushd publish_appimage From c4cc657b89a87101470b0f4412200076db1745aa Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Mon, 6 Jan 2025 07:31:57 -0600 Subject: [PATCH 16/69] UI: Compatibility List Viewer --- Directory.Packages.props | 1 + .../LocaleGenerator.cs | 2 +- src/Ryujinx/Assets/locales.json | 200 ++++++++++++++++++ src/Ryujinx/Ryujinx.csproj | 14 ++ src/Ryujinx/RyujinxApp.axaml | 3 + .../UI/Helpers/PlayabilityStatusConverter.cs | 28 +++ .../UI/Views/Main/MainMenuBarView.axaml | 4 + .../UI/Views/Main/MainMenuBarView.axaml.cs | 3 + .../Utilities/Compat/CompatibilityCsv.cs | 152 +++++++++++++ .../Utilities/Compat/CompatibilityHelper.cs | 32 +++ .../Utilities/Compat/CompatibilityList.axaml | 59 ++++++ .../Compat/CompatibilityList.axaml.cs | 56 +++++ .../Compat/CompatibilityViewModel.cs | 59 ++++++ 13 files changed, 612 insertions(+), 1 deletion(-) create mode 100644 src/Ryujinx/UI/Helpers/PlayabilityStatusConverter.cs create mode 100644 src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs create mode 100644 src/Ryujinx/Utilities/Compat/CompatibilityHelper.cs create mode 100644 src/Ryujinx/Utilities/Compat/CompatibilityList.axaml create mode 100644 src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs create mode 100644 src/Ryujinx/Utilities/Compat/CompatibilityViewModel.cs diff --git a/Directory.Packages.props b/Directory.Packages.props index ab3bc39b8..203f40588 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -44,6 +44,7 @@ + diff --git a/src/Ryujinx.UI.LocaleGenerator/LocaleGenerator.cs b/src/Ryujinx.UI.LocaleGenerator/LocaleGenerator.cs index c69eca7ee..2ba0b60a3 100644 --- a/src/Ryujinx.UI.LocaleGenerator/LocaleGenerator.cs +++ b/src/Ryujinx.UI.LocaleGenerator/LocaleGenerator.cs @@ -19,7 +19,7 @@ namespace Ryujinx.UI.LocaleGenerator StringBuilder enumSourceBuilder = new(); enumSourceBuilder.AppendLine("namespace Ryujinx.Ava.Common.Locale;"); - enumSourceBuilder.AppendLine("internal enum LocaleKeys"); + enumSourceBuilder.AppendLine("public enum LocaleKeys"); enumSourceBuilder.AppendLine("{"); foreach (var line in lines) { diff --git a/src/Ryujinx/Assets/locales.json b/src/Ryujinx/Assets/locales.json index a04bd0538..e7a55bf9d 100644 --- a/src/Ryujinx/Assets/locales.json +++ b/src/Ryujinx/Assets/locales.json @@ -22596,6 +22596,206 @@ "zh_CN": "降低自定义刷新率:", "zh_TW": "" } + }, + { + "ID": "CompatibilityListSearchBoxWatermark", + "Translations": { + "ar_SA": "", + "de_DE": "", + "el_GR": "", + "en_US": "Search compatibility entries...", + "es_ES": "", + "fr_FR": "", + "he_IL": "", + "it_IT": "", + "ja_JP": "", + "ko_KR": "", + "no_NO": "", + "pl_PL": "", + "pt_BR": "", + "ru_RU": "", + "sv_SE": "", + "th_TH": "", + "tr_TR": "", + "uk_UA": "", + "zh_CN": "", + "zh_TW": "" + } + }, + { + "ID": "CompatibilityListOpen", + "Translations": { + "ar_SA": "", + "de_DE": "", + "el_GR": "", + "en_US": "Open Compatibility List", + "es_ES": "", + "fr_FR": "", + "he_IL": "", + "it_IT": "", + "ja_JP": "", + "ko_KR": "", + "no_NO": "", + "pl_PL": "", + "pt_BR": "", + "ru_RU": "", + "sv_SE": "", + "th_TH": "", + "tr_TR": "", + "uk_UA": "", + "zh_CN": "", + "zh_TW": "" + } + }, + { + "ID": "CompatibilityListOnlyShowOwnedGames", + "Translations": { + "ar_SA": "", + "de_DE": "", + "el_GR": "", + "en_US": "Only show owned games", + "es_ES": "", + "fr_FR": "", + "he_IL": "", + "it_IT": "", + "ja_JP": "", + "ko_KR": "", + "no_NO": "", + "pl_PL": "", + "pt_BR": "", + "ru_RU": "", + "sv_SE": "", + "th_TH": "", + "tr_TR": "", + "uk_UA": "", + "zh_CN": "", + "zh_TW": "" + } + }, + { + "ID": "CompatibilityListPlayable", + "Translations": { + "ar_SA": "", + "de_DE": "", + "el_GR": "", + "en_US": "Playable", + "es_ES": "", + "fr_FR": "", + "he_IL": "", + "it_IT": "", + "ja_JP": "", + "ko_KR": "", + "no_NO": "", + "pl_PL": "", + "pt_BR": "", + "ru_RU": "", + "sv_SE": "", + "th_TH": "", + "tr_TR": "", + "uk_UA": "", + "zh_CN": "", + "zh_TW": "" + } + }, + { + "ID": "CompatibilityListIngame", + "Translations": { + "ar_SA": "", + "de_DE": "", + "el_GR": "", + "en_US": "Ingame", + "es_ES": "", + "fr_FR": "", + "he_IL": "", + "it_IT": "", + "ja_JP": "", + "ko_KR": "", + "no_NO": "", + "pl_PL": "", + "pt_BR": "", + "ru_RU": "", + "sv_SE": "", + "th_TH": "", + "tr_TR": "", + "uk_UA": "", + "zh_CN": "", + "zh_TW": "" + } + }, + { + "ID": "CompatibilityListMenus", + "Translations": { + "ar_SA": "", + "de_DE": "", + "el_GR": "", + "en_US": "Menus", + "es_ES": "", + "fr_FR": "", + "he_IL": "", + "it_IT": "", + "ja_JP": "", + "ko_KR": "", + "no_NO": "", + "pl_PL": "", + "pt_BR": "", + "ru_RU": "", + "sv_SE": "", + "th_TH": "", + "tr_TR": "", + "uk_UA": "", + "zh_CN": "", + "zh_TW": "" + } + }, + { + "ID": "CompatibilityListBoots", + "Translations": { + "ar_SA": "", + "de_DE": "", + "el_GR": "", + "en_US": "Boots", + "es_ES": "", + "fr_FR": "", + "he_IL": "", + "it_IT": "", + "ja_JP": "", + "ko_KR": "", + "no_NO": "", + "pl_PL": "", + "pt_BR": "", + "ru_RU": "", + "sv_SE": "", + "th_TH": "", + "tr_TR": "", + "uk_UA": "", + "zh_CN": "", + "zh_TW": "" + } + }, + { + "ID": "CompatibilityListNothing", + "Translations": { + "ar_SA": "", + "de_DE": "", + "el_GR": "", + "en_US": "Nothing", + "es_ES": "", + "fr_FR": "", + "he_IL": "", + "it_IT": "", + "ja_JP": "", + "ko_KR": "", + "no_NO": "", + "pl_PL": "", + "pt_BR": "", + "ru_RU": "", + "sv_SE": "", + "th_TH": "", + "tr_TR": "", + "uk_UA": "", + "zh_CN": "", + "zh_TW": "" + } } ] } \ No newline at end of file diff --git a/src/Ryujinx/Ryujinx.csproj b/src/Ryujinx/Ryujinx.csproj index 0991cf9ce..55f683af9 100644 --- a/src/Ryujinx/Ryujinx.csproj +++ b/src/Ryujinx/Ryujinx.csproj @@ -61,6 +61,7 @@ + @@ -113,6 +114,10 @@ Designer + + + + MSBuild:Compile @@ -163,4 +168,13 @@ + + + CompatibilityList.axaml + Code + + + + + diff --git a/src/Ryujinx/RyujinxApp.axaml b/src/Ryujinx/RyujinxApp.axaml index e07d7ff26..aca69645a 100644 --- a/src/Ryujinx/RyujinxApp.axaml +++ b/src/Ryujinx/RyujinxApp.axaml @@ -6,6 +6,9 @@ + + avares://Ryujinx/Assets/Fonts/Mono/#JetBrains Mono + diff --git a/src/Ryujinx/UI/Helpers/PlayabilityStatusConverter.cs b/src/Ryujinx/UI/Helpers/PlayabilityStatusConverter.cs new file mode 100644 index 000000000..a894f0246 --- /dev/null +++ b/src/Ryujinx/UI/Helpers/PlayabilityStatusConverter.cs @@ -0,0 +1,28 @@ +using Avalonia.Data.Converters; +using Avalonia.Media; +using Gommon; +using Ryujinx.Ava.Common.Locale; +using System; +using System.Globalization; + +namespace Ryujinx.Ava.UI.Helpers +{ + public class PlayabilityStatusConverter : IValueConverter + { + private static readonly Lazy _shared = new(() => new()); + public static PlayabilityStatusConverter Shared => _shared.Value; + + public object Convert(object? value, Type _, object? __, CultureInfo ___) => + value.Cast() switch + { + LocaleKeys.CompatibilityListNothing or + LocaleKeys.CompatibilityListBoots or + LocaleKeys.CompatibilityListMenus => Brushes.Red, + LocaleKeys.CompatibilityListIngame => Brushes.Yellow, + _ => Brushes.ForestGreen + }; + + public object ConvertBack(object? value, Type _, object? __, CultureInfo ___) + => throw new NotSupportedException(); + } +} diff --git a/src/Ryujinx/UI/Views/Main/MainMenuBarView.axaml b/src/Ryujinx/UI/Views/Main/MainMenuBarView.axaml index 78848e89b..d2f050c5a 100644 --- a/src/Ryujinx/UI/Views/Main/MainMenuBarView.axaml +++ b/src/Ryujinx/UI/Views/Main/MainMenuBarView.axaml @@ -304,6 +304,10 @@ Header="{ext:Locale MenuBarHelpCheckForUpdates}" Icon="{ext:Icon mdi-update}" ToolTip.Tip="{ext:Locale CheckUpdatesTooltip}" /> + await AboutWindow.Show(); public void CloseWindow(object sender, RoutedEventArgs e) => Window.Close(); + + private async void OpenCompatibilityList(object sender, RoutedEventArgs e) => await CompatibilityList.Show(); } } diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs b/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs new file mode 100644 index 000000000..4abe7465e --- /dev/null +++ b/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs @@ -0,0 +1,152 @@ +using Gommon; +using nietras.SeparatedValues; +using Ryujinx.Ava.Common.Locale; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace Ryujinx.Ava.Utilities.Compat +{ + public class CompatibilityCsv + { + public static CompatibilityCsv Shared { get; set; } + + public CompatibilityCsv(SepReader reader) + { + var entries = new List(); + + foreach (var row in reader) + { + entries.Add(new CompatibilityEntry(reader.Header, row)); + } + + Entries = entries.Where(x => x.Status != null) + .OrderBy(it => it.GameName).ToArray(); + } + + public CompatibilityEntry[] Entries { get; } + } + + public class CompatibilityEntry + { + public CompatibilityEntry(SepReaderHeader header, SepReader.Row row) + { + IssueNumber = row[header.IndexOf("issue_number")].Parse(); + + var titleIdRow = row[header.IndexOf("extracted_game_id")].ToString(); + if (!string.IsNullOrEmpty(titleIdRow)) + TitleId = titleIdRow; + + var issueTitleRow = row[header.IndexOf("issue_title")].ToString(); + if (TitleId.HasValue) + issueTitleRow = issueTitleRow.ReplaceIgnoreCase($" - {TitleId}", string.Empty); + + GameName = issueTitleRow.Trim().Trim('"'); + + IssueLabels = row[header.IndexOf("issue_labels")].ToString().Split(';'); + Status = row[header.IndexOf("extracted_status")].ToString().ToLower() switch + { + "playable" => LocaleKeys.CompatibilityListPlayable, + "ingame" => LocaleKeys.CompatibilityListIngame, + "menus" => LocaleKeys.CompatibilityListMenus, + "boots" => LocaleKeys.CompatibilityListBoots, + "nothing" => LocaleKeys.CompatibilityListNothing, + _ => null + }; + + if (row[header.IndexOf("last_event_date")].TryParse(out var dt)) + LastEvent = dt; + + if (row[header.IndexOf("events_count")].TryParse(out var eventsCount)) + EventCount = eventsCount; + } + + public int IssueNumber { get; } + public string GameName { get; } + public Optional TitleId { get; } + public string[] IssueLabels { get; } + public LocaleKeys? Status { get; } + public DateTime LastEvent { get; } + public int EventCount { get; } + + public string LocalizedStatus => LocaleManager.Instance[Status!.Value]; + public string FormattedTitleId => TitleId.OrElse(new string(' ', 16)); + + public string FormattedIssueLabels => IssueLabels + .Where(it => !it.StartsWithIgnoreCase("status")) + .Select(FormatLabelName) + .JoinToString(", "); + + public override string ToString() + { + var sb = new StringBuilder("CompatibilityEntry: {"); + sb.Append($"{nameof(IssueNumber)}={IssueNumber}, "); + sb.Append($"{nameof(GameName)}=\"{GameName}\", "); + sb.Append($"{nameof(TitleId)}={TitleId}, "); + sb.Append($"{nameof(IssueLabels)}=\"{IssueLabels}\", "); + sb.Append($"{nameof(Status)}=\"{Status}\", "); + sb.Append($"{nameof(LastEvent)}=\"{LastEvent}\", "); + sb.Append($"{nameof(EventCount)}={EventCount}"); + sb.Append('}'); + + return sb.ToString(); + } + + public static string FormatLabelName(string labelName) => labelName.ToLower() switch + { + "audio" => "Audio", + "bug" => "Bug", + "cpu" => "CPU", + "gpu" => "GPU", + "gui" => "GUI", + "help wanted" => "Help Wanted", + "horizon" => "Horizon", + "infra" => "Project Infra", + "invalid" => "Invalid", + "kernel" => "Kernel", + "ldn" => "LDN", + "linux" => "Linux", + "macos" => "macOS", + "question" => "Question", + "windows" => "Windows", + "graphics-backend:opengl" => "Graphics: OpenGL", + "graphics-backend:vulkan" => "Graphics: Vulkan", + "ldn-works" => "LDN Works", + "ldn-untested" => "LDN Untested", + "ldn-broken" => "LDN Broken", + "ldn-partial" => "Partial LDN", + "nvdec" => "NVDEC", + "services" => "NX Services", + "services-horizon" => "Horizon OS Services", + "slow" => "Runs Slow", + "crash" => "Crashes", + "deadlock" => "Deadlock", + "regression" => "Regression", + "opengl" => "OpenGL", + "opengl-backend-bug" => "OpenGL Backend Bug", + "vulkan-backend-bug" => "Vulkan Backend Bug", + "mac-bug" => "Mac-specific Bug(s)", + "amd-vendor-bug" => "AMD GPU Bug", + "intel-vendor-bug" => "Intel GPU Bug", + "loader-allocator" => "Loader Allocator", + "audout" => "AudOut", + "32-bit" => "32-bit Game", + "UE4" => "Unreal Engine 4", + "homebrew" => "Homebrew Content", + "online-broken" => "Online Broken", + _ => Capitalize(labelName) + }; + + public static string Capitalize(string value) + { + if (value == string.Empty) + return string.Empty; + + var firstChar = value[0]; + var rest = value[1..]; + + return $"{char.ToUpper(firstChar)}{rest}"; + } + } +} diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityHelper.cs b/src/Ryujinx/Utilities/Compat/CompatibilityHelper.cs new file mode 100644 index 000000000..6fee23883 --- /dev/null +++ b/src/Ryujinx/Utilities/Compat/CompatibilityHelper.cs @@ -0,0 +1,32 @@ +using Gommon; +using nietras.SeparatedValues; +using Ryujinx.Common.Configuration; +using System.Net.Http; +using System.Threading.Tasks; + +namespace Ryujinx.Ava.Utilities.Compat +{ + public static class CompatibilityHelper + { + private static readonly string _downloadUrl = + "https://gist.githubusercontent.com/ezhevita/b41ed3bf64d0cc01269cab036e884f3d/raw/002b1a1c1a5f7a83276625e8c479c987a5f5b722/Ryujinx%2520Games%2520List%2520Compatibility.csv"; + + private static readonly FilePath _compatCsvPath = new FilePath(AppDataManager.BaseDirPath) / "system" / "compatibility.csv"; + + public static async Task DownloadAsync() + { + if (_compatCsvPath.ExistsAsFile) + return Sep.Reader().FromFile(_compatCsvPath.Path); + + using var httpClient = new HttpClient(); + var compatCsv = await httpClient.GetStringAsync(_downloadUrl); + _compatCsvPath.WriteAllText(compatCsv); + return Sep.Reader().FromText(compatCsv); + } + + public static async Task InitAsync() + { + CompatibilityCsv.Shared = new CompatibilityCsv(await DownloadAsync()); + } + } +} diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml b/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml new file mode 100644 index 000000000..fd912ad05 --- /dev/null +++ b/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs b/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs new file mode 100644 index 000000000..68b645efd --- /dev/null +++ b/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs @@ -0,0 +1,56 @@ +using Avalonia; +using Avalonia.Controls; +using Avalonia.Markup.Xaml; +using Avalonia.Styling; +using FluentAvalonia.UI.Controls; +using Ryujinx.Ava.Common.Locale; +using Ryujinx.Ava.UI.Helpers; +using Ryujinx.Ava.UI.Windows; +using System.Threading.Tasks; + +namespace Ryujinx.Ava.Utilities.Compat +{ + public partial class CompatibilityList : UserControl + { + public static async Task Show() + { + await CompatibilityHelper.InitAsync(); + + ContentDialog contentDialog = new() + { + PrimaryButtonText = string.Empty, + SecondaryButtonText = string.Empty, + CloseButtonText = LocaleManager.Instance[LocaleKeys.SettingsButtonClose], + Content = new CompatibilityList { DataContext = new CompatibilityViewModel(RyujinxApp.MainWindow.ViewModel.ApplicationLibrary) } + }; + + Style closeButton = new(x => x.Name("CloseButton")); + closeButton.Setters.Add(new Setter(WidthProperty, 80d)); + + Style closeButtonParent = new(x => x.Name("CommandSpace")); + closeButtonParent.Setters.Add(new Setter(HorizontalAlignmentProperty, Avalonia.Layout.HorizontalAlignment.Right)); + + contentDialog.Styles.Add(closeButton); + contentDialog.Styles.Add(closeButtonParent); + + await ContentDialogHelper.ShowAsync(contentDialog); + } + + public CompatibilityList() + { + InitializeComponent(); + } + + private void TextBox_OnTextChanged(object? sender, TextChangedEventArgs e) + { + if (DataContext is not CompatibilityViewModel cvm) + return; + + if (sender is not TextBox searchBox) + return; + + cvm.Search(searchBox.Text); + } + } +} + diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityViewModel.cs b/src/Ryujinx/Utilities/Compat/CompatibilityViewModel.cs new file mode 100644 index 000000000..2490f222a --- /dev/null +++ b/src/Ryujinx/Utilities/Compat/CompatibilityViewModel.cs @@ -0,0 +1,59 @@ +using CommunityToolkit.Mvvm.ComponentModel; +using ExCSS; +using Gommon; +using Ryujinx.Ava.Utilities.AppLibrary; +using System.Collections.Generic; +using System.Linq; + +namespace Ryujinx.Ava.Utilities.Compat +{ + public partial class CompatibilityViewModel : ObservableObject + { + [ObservableProperty] private bool _onlyShowOwnedGames; + + private IEnumerable _currentEntries = CompatibilityCsv.Shared.Entries; + private readonly string[] _ownedGameTitleIds = []; + private readonly ApplicationLibrary _appLibrary; + + public IEnumerable CurrentEntries => OnlyShowOwnedGames + ? _currentEntries.Where(x => + x.TitleId.Check(tid => _ownedGameTitleIds.ContainsIgnoreCase(tid)) + || _appLibrary.Applications.Items.Any(a => a.Name.EqualsIgnoreCase(x.GameName))) + : _currentEntries; + + public CompatibilityViewModel() {} + + public CompatibilityViewModel(ApplicationLibrary appLibrary) + { + _appLibrary = appLibrary; + _ownedGameTitleIds = appLibrary.Applications.Keys.Select(x => x.ToString("X16")).ToArray(); + + PropertyChanged += (_, args) => + { + if (args.PropertyName is nameof(OnlyShowOwnedGames)) + OnPropertyChanged(nameof(CurrentEntries)); + }; + } + + public void Search(string searchTerm) + { + if (string.IsNullOrEmpty(searchTerm)) + { + SetEntries(CompatibilityCsv.Shared.Entries); + return; + } + + SetEntries(CompatibilityCsv.Shared.Entries.Where(x => + x.GameName.ContainsIgnoreCase(searchTerm) + || x.TitleId.Check(tid => tid.ContainsIgnoreCase(searchTerm)))); + } + + private void SetEntries(IEnumerable entries) + { +#pragma warning disable MVVMTK0034 + _currentEntries = entries.ToList(); +#pragma warning restore MVVMTK0034 + OnPropertyChanged(nameof(CurrentEntries)); + } + } +} From 4193a37a911079e23c20aa41f916cc5e58b454db Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Mon, 6 Jan 2025 07:38:11 -0600 Subject: [PATCH 17/69] these files are a little bit needed --- src/Ryujinx/Assets/Fonts/Mono/AUTHORS.txt | 10 ++ .../Fonts/Mono/JetBrainsMonoNL-Bold.ttf | Bin 0 -> 210988 bytes .../Fonts/Mono/JetBrainsMonoNL-BoldItalic.ttf | Bin 0 -> 214132 bytes .../Fonts/Mono/JetBrainsMonoNL-Italic.ttf | Bin 0 -> 211624 bytes .../Fonts/Mono/JetBrainsMonoNL-Regular.ttf | Bin 0 -> 208576 bytes src/Ryujinx/Assets/Fonts/Mono/OFL.txt | 93 ++++++++++++++++++ 6 files changed, 103 insertions(+) create mode 100644 src/Ryujinx/Assets/Fonts/Mono/AUTHORS.txt create mode 100644 src/Ryujinx/Assets/Fonts/Mono/JetBrainsMonoNL-Bold.ttf create mode 100644 src/Ryujinx/Assets/Fonts/Mono/JetBrainsMonoNL-BoldItalic.ttf create mode 100644 src/Ryujinx/Assets/Fonts/Mono/JetBrainsMonoNL-Italic.ttf create mode 100644 src/Ryujinx/Assets/Fonts/Mono/JetBrainsMonoNL-Regular.ttf create mode 100644 src/Ryujinx/Assets/Fonts/Mono/OFL.txt diff --git a/src/Ryujinx/Assets/Fonts/Mono/AUTHORS.txt b/src/Ryujinx/Assets/Fonts/Mono/AUTHORS.txt new file mode 100644 index 000000000..881494169 --- /dev/null +++ b/src/Ryujinx/Assets/Fonts/Mono/AUTHORS.txt @@ -0,0 +1,10 @@ +# This is the official list of project authors for copyright purposes. +# This file is distinct from the CONTRIBUTORS.txt file. +# See the latter for an explanation. +# +# Names should be added to this file as: +# Name or Organization + +JetBrains <> +Philipp Nurullin +Konstantin Bulenkov diff --git a/src/Ryujinx/Assets/Fonts/Mono/JetBrainsMonoNL-Bold.ttf b/src/Ryujinx/Assets/Fonts/Mono/JetBrainsMonoNL-Bold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..f78f84fb433cb7179e11ebb85d92ebe9fca1dde5 GIT binary patch literal 210988 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

A*Gn0W7LJTJ^ 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 MKE+@1AmrQs0SBL!IsgCw literal 0 HcmV?d00001 diff --git a/src/Ryujinx/Assets/Fonts/Mono/JetBrainsMonoNL-BoldItalic.ttf b/src/Ryujinx/Assets/Fonts/Mono/JetBrainsMonoNL-BoldItalic.ttf new file mode 100644 index 0000000000000000000000000000000000000000..9fb8c8325692c0a9f79c2fdbb25e3cb07419e881 GIT binary patch literal 214132 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

EsXoBZIsZL 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 literal 0 HcmV?d00001 diff --git a/src/Ryujinx/Assets/Fonts/Mono/JetBrainsMonoNL-Italic.ttf b/src/Ryujinx/Assets/Fonts/Mono/JetBrainsMonoNL-Italic.ttf new file mode 100644 index 0000000000000000000000000000000000000000..4e9c3802dda3113b0c3a7cf994c7ad3eafc9db4d GIT binary patch literal 211624 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 z z+tL1Z4{?XA7^cACumo0cr_2C-=JjIW%--n+> z`Y-1tF3chWTfiPL0_fYog>WIP6d8n_2X%vqFc%(%H(%jw!X#J(mqQ9RicFaYXTo)GAG`>k zK&8mO&0rIJC$e8nsDK|t_OA{3&>!{z`gg!o!0rc}2RFkruoZq4nc5KA!-;SyV8^N0 zaq1f)<@B|D5KIQzQjU!(EYQYj!+`NRBL=$>>Nq=U3BQh%o*glKxv&I2-oQ=O{ zC*c|(re{A7ABh~uo%VyU;X&W?f|>;0u1deuc<6gGJ6A4+p^;yy)aixD4(RIlnV6JHd_@Tn`V3 zT-XBk0MZw6+(jIJ(XBw6E;i5rCc|u?kC#k^dGLbBrNri?C&O1Fm(l*q-W0if3}DwQ zh~X>g-<79}Ttz#s9tAVtc)%am(2i@H0x@@8DXbM))($R!<-9bgCD7O9+eKDj?-lpM zEATll4~pPscm$~P2HJN6_PBvI-8cxo$-F$MK8l}iS_J3AGDz_vq5WYloB;UwW^8ve zw!39IFqhqODqI9V@-mn#pq;l8H@EhL`*_LFB|x07d=lP+9U`~Y0epYk0GJ4re>?WO z9sAvmt#8Licbo%X@uL>{cNhIh6~Q?8iI)s<%qrqz)uX&<>r5QlO5t#NgT&;UoBs7Z1^vb!~t)uER&`i2eH? z2JH3#?z z^%vPdJsUpYhj_1xZ0rcPi9EeK(B5Ybf$bvCa?EqL^W#41e&JYt%t!ez9Spzlf}BEl zikJUv5P9t-k=Kcv*Xj40#Oj+I`_>J-&ry9uh#zeaW$39t)Sk8lc@@e#J|9sOPITz}Wh#0#1Z0;BLS- zUlGsSDQ9~O=)?9&a2TA;5BPS2`M{j<%|pDrhjxGGfLQpx3H;8>dM<~1fU)tz*CIP= z1LJ7NP@ujY*kK2K`H}ej5!?Ml+kT>LKhd_IbKpl_*wY9)!EpGM7x#4Lg+18i_k}!h zq_36urIPmYbkWF3TxK+f7sW&a;4U$I%i6eu;0$#bgbJ^Wa7?*?Wu0=>!9T zGIF@bkn^#a8kAAvF?b(-7gKXD;3;LT;jn|3?i2%M)V>a=tM=Do>U06>tFrTO7ySl^pQjo}bj44b%9b11wfrb!<- z5oljiZiF;#2BUcikAp9G0ne3Ub~_f5;lE#Na=qH`H9&%usu-xAX<5BdVWX-{1p zc-q_HTQP+RI0e?gHuynI$FcA*FU-MTooR39r^IwAhV5dyQcl-n;2SY}JTIo(VSr7$ z)0Z9|t^)ep^JsWdOfTBm3tRSjS@^REfPH(PE~XFKXDctMz<+&LiRrgH+$N?!ejQL7 z#shX6*a}Vs@(%ilm*CLK@S_rXVr8FH?ep*M*cww9YnUBwKq1(Z3WyO@#n z#Ej|%ABq`$ftWFMfj*3x1iy+Ii`~Y)DrQ^*7!MC|N!$VM1L~YWJnfwY)5PpEMa;yW za2(*vNj-ok-;*0b5>A4T#gx*gvK%1(%kWJZaa#5=FQ#b>`7jl*)4p%=W6Se-`Ak!w zo~cdXPBGP5AQiPj}vnozB~>e9=B7>@w4Fx zF(=T+6Bfd|VovM_Pl-9Ht(Zj?zT!3nZ8)V1u>I6hxL?d^qku7RdMm&#XN-o^#GJ|T zXX4Yd@WWY)#4K(JABb5(olEh_Qf#zzjhM6X=h-)lIfwGj!OrL4qjPERxjV$1M|tNl zSDcUS&d2}fp8_0n{x&fe(AEov!ZC0MyvNID>c9Xv6e#P$m&9Den7@cvyJ!|%28_## zeiL(XZ&(Z)#9YGIxP;G_oD0v2xty}EUM=QY@?AF)-WRj%2rumj=qBcR%DaKO zZp4o_GL~-qLd;DGI0&|jxfvhaJRg?BH)3unflGjKa%&&B8u0P0pNmHv?UCeswT#tX&Zx!<>Wj=Z9@F2Mdz^at`k@dz*a zs0m|$_UKR6fKez}! z7xNtDKF2tGj=nxmzn-VvFEBn|mjo1KAvy-C?`(U!Ms!N?0bOpB~XNviJDB#1-ck+T0`tao`V!k5pSDVCar_Qgt!TVyq zITU^q^DXs!n-cRKKKq{Xz9$xb_*u-3`*=}CJHX~YvF|5r@bfHMdDr>o*h4dTL86lTB^pebLmriA=$8`hwM3%f(}8kFtdwYE0v-X{ zHOj#txCCy7trCr%4G+W55{Wac$g04n|dZ(0k^?J@FHx1?QsYAOOY8RWVX~L))+fktTj^|DKnPm2-#Vl{I-G5YSy7!gLs1i z!=HOqOLC8&iw4NLF`(p`jzKJNAflVFRQeO&-+SM^k>Z626F)lig zih7UsRLP&e7$Z_6hiusm8Z^kNv0I03rdy+An`CyQZf#n(?va(1on`hoc6e!n_r}g$ z+a$}mRxPxm#~w3vw-imPQ)kkk%1W&)YG?1|p^l;GZ2v_xoy()Jy=S%UUq@UzX14dR zzgOkYY8r9NL$_CUi2lsq#{aC_DevEoYxXbYHLogG}N`M5<0x=!_=)oV(*d$G* zmCP)v+0tZ5BSQd<8kuS`uC%BXj&~+Yzj;kOWqXaM(VP$LRAP649g|zsa#xN>_~TAQ z#jcEIOj%KVk><@Py=l{UL4yW4HF87rY0x$8)-5}kXx*!4&tCr#j15}nJGe4`J_>|J(_0Mjk2?wHqFk;qKSL-?A5b%^3O!qBVU|RQ8%l@ zo^4D~QLTEX%@}-i-_bR4diOnM%JGBtu32NipyQ)WGs+5zJLTA%nL`ekYpx&IqsPEM zHkS15&+1V2Hcp=3Rxs)`ahJA%>ZgZDP5# zA3XjaEV`R*oZlkR^&brTl^Sr@_7sCK82q!eVI#W1AS9S;N@HnL#Gh*16}(ZDJ`aZA zZQQUqf~o+UZ6bvt5pSXwIDaooWuBKWx(U;>k5T)ha5U9&I{i#?JRj zruQ5-qSz$&eiiE-2j;lvbA zM`QZL^#9AoG8B5#SpBL;E$LiTsFNeB7%tWRGACx4%#=v3TItC!TW9%3@$B?}HlE%4 zNOMD-o%iIMwsm&C)y|Bp!}Pax{LVinV2*SR=|RZt*Yw0UHyuNN-~KhDOJhs7Ppp=I zd$sLhFo$x!sJ^m+Jyk@hC=Z5`LW@SO_+7r4MB0D=Vf6(qQ?APBA?xQG-tiHo>F zmbi#ot;murudx$(w-d*SdQ;w)fX6K7_oDyL z(#9ozFWP@f?X;sHZnUGt(ka2=>#wk_4m+{B83~+v4b*Hv0SOBx`r0JLrX0$^1o4Q~ zAX>#zF|mC5kBC+(LIg6{|78f$n#TU?A@~Y}G5LN`R~gpQ0hY5Dgt|%E6Pr?)HH#P{ zu4$FC&I6NdRs~c#OTwK#oKcz_$Yzr^>?Q}QuM1XJl$93e=lOEnn$*Oa9D)mRu>|Bb zDyQ-yLuTQ^3-P3EnK^fFHLI@Gkw~Yi?z(zp*IFZ3(_nO9(e8*1#I^k+YpP>>Bof{-_>An3(Y`HGMyw#rG z-Wk>NA?@Evy=e@5SD*fL|JYdn*8DS^hx2*zW8Z@%Ce@G3c2kX@c0pxDe^dO=>~D(k z{g*rh2OJmC|JMd96aDF!iuNCnJPEjwTsFc9BQY{?6${HcCIdj-Gd8Piu#*ge7_xwo zSOUI)rTtvI)sBsS^Y^IFM9E9c(G5)CqardIHwJ)j7i79&+Lk7 zKbpmebGaN4=6V$Dc)mX`7yW&->-;~>Q7-rv03V_sh@>>EFBA#1FU-5<^Wu4L;%C9N zus~B7e$)G=tWDjH|E9KoMiXJ5xEiR)7s-Jh<3Q)Y!eR$7#|U3MP!WnOGngq@t7L@` zx+6aT7Y#%pAVWAF&^{dhu*UA@zvktx`T6Y^i5Kwq^6}uB<(qt%(>QAHPHF$Kyqai_ zq_qDirG1DC`{F%sq_jsk%@yrGFxx?Mu^w!)X#bVmwB!5Vl%c;T=1Dr1=>Ibr>VBe~ zXs&4gDYX;4KywLR#nPsrxq-`owiC6jz&Ru;dxg$dqO&Q0&ZM(xfd51WjWstSg~le< zMC3@U=_kgTa&W+CO>U_%2B!x!KPI1tLQDp+rK(~Ek>tN{)+D~3?#saAIWgy0-_{D zoxxjKhJd9Fr|`tfTR*yE>)gpM9K)}$9{pqb zy=-3pLk!&pihv=o@Hsy8uerj^BzUWFd*rKQgZH&#)s}Xw;ZwO7iv%KiDcz@fL!|XtRIANwf)_< zck1`B)00mg(&2cKS}^PwhV@F-u}YT(_=cNm`GDa4=73(w>-BrBT!at#Fcb|58D6op zoV(#x88?;=EuXvL7Fod`*qrwlPRv!aN4A6VnSzPA8vO`h%*Ww-Mdvulbf{f07twAq zmlo_5=7qfy?JpZB(}Eyrnr{(F(Qca+xWc9hVL0wU#*(D04PxK}oPiffg??{AC4ow4 zdVJOam=nY*pbP!JHWc1%f0R#t`P}vIkrjt6ynNO%v=zNDKhP;}iZx(e-!7b7sAegO6zwL{r*>hh6YVB*r*>i6YGo@h61d(o#qBqMi7T z=+A9?kQu1`h@}BmwrUdNR2+0KgQ^B;n8|lR#Wh4<8}wWWh{j2CK|YhpOY^G>s}Gyfgyc5G4+G4VHg&4KD9bhFQp5RI-rHJR$<%CLLC5fwcK8TiDYQO* z!USh0$Y4cSsc1K?o?@kB^%U)I$}wXn2?7Ke(f%`{#0CZ(;gW!8|4B;wttk-x*91lo zYesFLSlS`xqX-n|%N-`n{iw_u(05MEHMEuCUH6TG>Dw8bu+aev>sV`Ya z^UF#ZN*A7Qb zbHme_8?UUX6!z1zX$S7F!gbA&)0=E^^Yk^F`qMXc6_jvGD$7YddXnYRPcFS8pO^nl z%EOWa(sePPgJnrol?C}O2D?`-ldTq5hznpLE(KP}sG3F^0ukZp3^XwTnL!yas06`g zccpZ~MyK~#jpde=N>XW{EKppC5%YpMK|AQS5;0K`h{(|}P*tn=ER4*8K7s-ByVu=7 zy*oDdw>2#7ciKBWcW&-$3q91q%JRp1Cu_0zR{hPwy1QHYY0YiD@2c>1fwJ^f+MRTmU9+OPcd%`+lJQi4C5=|%C?*UenN{!NM0xMJ}oH>O| zvdPoMG5X*rWOjU5H3UD>M{UqY9XN_?1J-odM4fiJd45AtWqvSG3W4C-ZFZF$4znjG z%in(ZPM8?Y4}^B1v_~PHz$j_4m=-T!5h?UN#$(VdNK!+hP%aCUF@q1}N7pH*WH?WvlN zXdkJ2O4I*Cv)U>{mWEz?uRYixeyK-R*x8jMrS-Y9^RLhA^RvE&(%HTcI~(fj3+WGp z$k{~_-+u5=Cv1l#aYE97$a$2|PT1#(QE>q*Hz(UgnpX`tC>O%G;X6R;52h&Whd(@W z#I25>9DT5@|G~ZmRqgM4P=58g&7qC3{xZ9DVj#L3LlT=G#gG~ZE1AC-v|?sG2H?WT z02dxt_Ds{EKi31Jp`_JRLeM0$A=EBoU^oJdfm_bS3x0R=aJFOg`0($R*8gtrw8PQU z^Skn^51)z;#M>{htf5GE3`2K9Vi*Kw`J_szI~L9X5rJTpLC7(I!5LcifV>A9pj1+n zTbWl$nqaU>!P2d@Hcmje34^G(lAq3;+4{88dHAp=}G_r9FCY_g;tE z(|xb}DlGgH$Mf|svM&8acF%Zk-xw%8p9Vj>x2Bz4Y8SGaXg6iGcF1a&HYmMlH)XXZ zoar_|zK**wvaDoPIuBd}oZp4jST=ByaGXdeO1Lpfiwg_#d|c0|V|At*!_afOg0;2a zsp&oqn?FCFFPh0GPC^43Aq_|g)}I(2bh>Zdj4szZ;`ZKfc-pQ6YEF*DT%LQ?)0+dk zcK0@oxXN=6k6m@NeYvM&aImAU&smXoa+(`S_}n=RZcBp!wF?-Cb`Areb1S$St+h}3 zFn4rVI#V1ST_994Y#HatDkNJBN5@&vovaODA}1+I($BFDCx+?g*y%xdNQ9qbYlksiTLGT*gAja$+$rE| z%AHNXF~Ao%CfZFLBU-kKBU3?V8-c^XvMg9C;VA={6DNj9_J(3hC^QvPMOAfWO-{Al zQ3CpcQyt>oJg5V(uo)C40+|8&RNI0&a&+*u?B`~tvejM3heouX{yA0c>u+{Fe?Btp zSdd-O1EH1gT2IGg8(s6e2l~hMe1Eui8=)rBAXd`_tjNdwMq)8Ib&1mA48Y^XY)66m z1_Ic@=Mz@JLew)UEh(rdtnj)umuk0WN%<_FjH#saM=FW%VrBt;4isoKM2g@fwfXgp zgYI%RnWuL2^-id9_wAco2RxnX@X>H|OwIjqp4zHjyLR!8=*VbvG2g zg}HGrJfu<44U`ua@I#rsZ4fry7_d+(%&n}0HAEnhn7833OkhzY0iYbiA-HHBr)mMR zfbaowH{mX<>Lf57vj?V&RhgI`1ui8tb+Th+nuoGAjw)UTOtl+1QhQOs;N53Fb>?O43W48n*) z9TAGXXg3wL%=egznrJ6=MD!Pm8sqc)jAb_r0VKj?v8=mNU}ETH450;X0hJ<3M}pWwJy=$j5QJc35=qh%ge?#39U6unLn+8(LNpzNwm4Lbp1| zu`txzx0|pqcO{`;85$L#B3Ulz_swBLt4d(zKPHxD#-oTOCoxT^6im7qgh&`RLC)Ya zNm#a$_C?q;3xs_U{sg~258*Su5PNp_{$>Ool;^#8K>r3zXP(a0{QT8U_V3#iu{DU- z-Vf?hCIw@GBCvD37i8VA(V6awGO5g4P+;2VNMPjePW};q^dBM28!VkIh0)RGRX?_o z3;oaPbv!u#wKI7#jQ?)+W3W5@Q{{MG-gu>4lJZwj4pt52d-m zwws4jv=higfAer=_UG7%aMu6An%{vn=hK>f8kF=TG*j$^`BHvPK@PEp0JDT3mE~iN zk&p!ua=~CN7OP}2*Za2i+T2-6zU#wB^$#CfRWyrI===mb$Bw+>t#vwUy|3tx>F;^N zTkCQKy@*vt9IYhZiovs`s#v)~HZ;>jncT>1DZ3y?SY7!}(!khB%S(+9U3JiIXIZ(P z&u!@6X@oK71^wm1fZZM_L?B>9|1qG)2jI~AR2uX$+fC?+c7mShZ$j^CkTy&-(Qcmk z%=egQUbGWw6Ynw4ylAI0EZX@QPRuhou8HVK*pgv)g}1UMR)rN9Y#Y*r1rd=ZM#7hw z$Zim*zkoCvY1&t@OjKd-TmyY)>rtHtG(`S|uX$+phl$zk$T8ce8N$iJf9)B!|) za_)(C)4A7${`X*R1yVz-HXo-2?ge6~++1r}gH_v{Ux8Gx(~0rrnnx#Kv2-=g24TXt zX1m^Z1orSOxBcGv&tIGMDSk)>^78tt*a!5}RsDH+19V)1?B}`*i{X>ti$ShiiZLRy z-P~Z&PJkBu%?-}%FOG-M+lbOwu?65pAerPH5X-begy7m5j0}>^VRP6Oa%<$+5Rg-8 zVIk(L1VdtvJkJ_V=`TH}H=m22W4Ew_U{H3+8a9h&N%4W44dK*uZxwP5r&W{|;E^*}6`H>UDIY5lK zp>#D?+Sq{Tqqc@fW2C&aqzJZBaqj9_z0-7}Tz2jZ<2{`}FnXAT-rgz9J8Vw`LR&|| zWyRLFI+Jb9JT|%_THxvq?0h^&6WjY&DQHz;aV6Tn%D3GDRQaX6fNgIELmHBf$ByJd z+-qct9o{9=GGNEj?8mun{;R@Cc9Q(2U!KI2CEbkuB(8cLebeeUYK=q0Wxh zmipS7>Z*#;5{gxJXS+x=Z)VLNLluOrAe3%55Y_`2orN-lm|%btLK-4lj9_7IRe+(v z=D%}j#O2x?nR6+n73EFVz3NJTdq1+QTZV?5{_lB}vWki(>pu11P-D03-t+1AxNPXx zV*6TUtIfN&yv43mst2bg_fOR~*H#S8wb#|Pua1AYE7Y{thY z0ToC@eBWi-YpTX}X;%W>AYfr@-za97-lkYdAv^uzrriROX?DEFZAy>ImK5y}yvz|%bW z@1+Wao=(Qb3;jN?#|p>abUw4dCxV<0*?JymMgF1_U|h(Yp<``MzN(T*b-~J}s;0bL zmlMwS3K2tznHvG8`61|@wTQ*34do*ihkOOXVk)Sd&A&Z*uwHeJ9vf^5+p{eNc^yw` z=Ob%Xzwf$nsHW8EoIKNmh*RfKEV}AcV`}%2k@V2&EDS)G{c-iVIOw_g+eKy2)I z@9gZ*5dVQkEr4bHFYFk_9@a>=J%c^7DJG$+M&=2k<_*(|q8MAF!WJoQAZf)jEKB|1d#uk z>GAAh_tCvQQCV!J$Gw+@n)ZeDvmHZfq1xQhK8#;2>dF0ouy$PR=%LOYx$VLQy=r-SU2p#*jq@mluhS2&i54}h7EzSu*X7ZiPc`I z7q{2i?ZRI|M?4#G$JIPoGcTYbTr*{zFvDVvJZ6(Hm&@xs1IAeLjK_U?A-YSpGz6;7rv%5{7FR^Ws9kXg3Yhnd^IA7TJNKorHeT|LckO5GIh&FWSFG z?S{}_3=9c^Gu|m=@-~UA18_*dv0||*NC&aoWr~C0OrBE(i1Hu`$b2%wU?5;;JYvIl zHiX4o{wUdM5kJw~SXWyUpllqnhC?h2vY-k)vy$}8<6;c?8c8OEYLp(95+GxWgRGun zV@B1Db$7mVCiVjRVVb5*px_0g1*ulXNR9$=qj(C7aCi}ZBQuI;e&FvySh{j51Nb4YR~{UW z5z34r@=P`b2$%@%#>v+v=d^)8(Eh;hIzD%+_O3b2|1IrX1Nd-Zeh<5D{+`LD`91f{ z>+hXh0(y;L5b&GwYOm?p>Yd5TxL2B@Dslk!!2w#{FH+RI_!zT}(J9sM6v9|r{!Un4u ziyn`T4R_z#Jq!}Y*UU-DF9^gSVe6cPWwyU)B=}H!YfAqYM?Ux=wL z1uI$_T$s=9i+8J?UEMP(LU}JhhB~r>MD|0`k+GQm2>_x61AAe4w#oPlpDCEQn8)hD za*wRbi|kqHamkK|<|iLVKr?z&qlZG0CeW8a_Z$zxf%S{pu`q|klQBd(Lf?!9-Llpw zuJ-c87!f3oT!d=vxq(k3b$;^Cw0U;>yxv5HWO`v4!Q2?=OETQHMtfsQ`-?L4JEMIl zrTqn(n9<&l(ta_ee`m@=6ne#FMantBF5{FFn;=TXtuO5QN+h~AR#sM8vzqkxC2`=zjHC$pzN*r)K%lI& zYWoHQKhpCf2*eF!H!(o@RRhFc99xZVakhc0Ip555ngu3qhy=&ZU+|1XUlocG*){KEX`0DF3V`#-m?0h-X5 zS93HFV_w8%Ry1Z9bEKR<7Zsua`Ao@{!1vrG-6%(N8IQlF|62ctU;F}NhhgvMd5g@0cPdsM0YL2-dkRF}CR00;fS5def+r=I>&Fye z2ZU~c3c{2Z4nq(^9wd!v6ctd3J>&bxcaY6aOgQ&^PGbf8Z50)t))vRukLI_(SXE00 zm%p8yCdh@LS^QA0<)bPXwG1&WdF0XYI_*fSvN5dV1%ckPhOs%yX9C? z14C?@@CI5GRwX~FJyf*rc}jcu{DDbiN-($g8M#!Qn;kv9dwzD;_EYR|pv&#<3h0j- zbJ|57He*g-k$X9DSOvtCl=he9le~Qw=6VBm3;q8UbkI`7pbn*Hc9=lq%gKXxh5}Bp z99pXge*sc)K902J%37~43k)w3M!XHsD3WKmN$4y@w%!*cSk~Y6{%Q`+PXoGzug|Xi zY+k>#JiGBvfa~JeZ+4~me8q=DAM_4a(By(hU!g1vZ__c&#>Cs^HRb@c|rA?NVE zVQXPYanL$4i9d=<@P{0nsA*}a4m9o^)DN=XtE>%H>Q|Y+u@J%V+F+NMei~v0_?=jX zk8qHOFoV7si7Umie7*>LmB9>GV;a86m2xrv1V1#4Y{`kYEt6uF$_=NT5t$4MoEdHo zn#_<-iXUB(GH-fKf`EFl#Si2`JDB3ja*pLXfee=G1XrX-xdVf`0Ow5y1|={-b{CJD zClc%L0F@vawNzSr+6%9rx&9KIMhh}MxGaTOTB1o-m@KT;0V{U10x$rbLTwNV|AQ=+ z*#$~1o+y<{s=dA%gmxC2w960;$P8%$h^Md&B84U5=;-R6bVlMFQ2PcKX0vq7m#eAt99L6~=S($~ z+PRu)w3})wwR1JqXgAeVYUgUIXt$bbDj%PtoLGmcj#B^RycDacj*51YPegyNj!I%H z7v=L3nW4@+ox_sm@=63kTkaAp(`q%&WSVgedV$f$FvIQK4F*ICSro>nY|ZHaIv`*% z&6bf5B}ar>`AN6j88LRXr~xaIV61he1_b33h-T zNYU`qG&EKRHQ!QE>wtcrj}(y2b$5X}&{}M2_gBNupYNosGq^LtQ1Sh(<)=3vrX-l( ziS94THIiVw$wQ13n4ezyNBIcAm4`*wl9`uMV1hM;E>J`x0|wMIGqr^lm`s1ED3_%2 z+KSqeA`&Z7@>)2#$p>!Txw*Hs zW5L3HRnpqOM_s^AzJ+asWr{?VxZ#;$>f^K$g>6j6mC zS`Odwp37)bF&ALPjtf%;>W~4W_F>2C;P@MqR%1&}=76skhQaBCImZDDki&9RMd-K5 z;$4c&E!|F;8-yF`$=%l-X>YCXYUrvYZ)rhZuGfvzhERDe!*UoBu?iXfy&$ERq#wS7 zzwhpmn5))x)ks~d4{}C%cO5?Gf6rqpEibBfEc#Zv#TOM3Z+WAw7R?pS_*MS>`&_p2 z3N)$96ThBZDngx#nxdu2hqr>w6-Chr@p+~>`0HRZ|A$F4^cP5z58RUu0(mu#J>yMx z?n|Wh$L}q#2^HqM2s$d17A@J*-Gz&OelXIcqn(}k#JE{jX+%}0ZG=0Q$S}T zpeU4ZlQdHJgcDIPPmm^dY-am6cbJEXKemu*LGO%1Kj3PD0$yoQadlux~@6+#O4V^(`*NS#a&FJkRwJxS4JV_v|wRADV`>!7E$sMuo@_E}l9tN|KmoDYi82R^p29y1w09Vhu-+uC=z_ zI4W#6e0H3e!~j%cTQ_hvMD1fK?Jo$O=F;Cl7R747hD86D83hM1sq50OfORdPuMbZ> z>4w=aAYlWoS!a=PBeT;b7n+Jwr+o#InZ`p~sH*)=sehfAi(zOfq7jh)X(;z{oZ z(*h!d%aF+9_c^FwK`jfCUz+?HlzGDQE6hY5vM!L9n&4$aB9CGV{9ylzGj3~bZ|aEJ zT(J*DI#lO7;!Sfaw*7K*eN#)X&C&Uu_Y@R;!M-pZY;39nHaXlG3`E}EW)?i57Ig=QyB5d%#gPvG zm3Q``?2?ppi2-Aug*+_w)0FGGa7=IMiy~xlx=R~d zaILuS*r22|$86WYfXjXFkzTDWx`LvBy**k>n92l(yY@I%TqnrPFE^}R)4I^r7uPJ# zW4jNYn%~{qyL)yx93CF)-u@O0{|xkCT7DO}jh9=&sQMceOK_TWD;UZbV%}s0OH7*k z8faRr+L?LR0q2RiKh*w6{6Qn{A@{=eAJZ5T-X@3SFM@)GV;zW9vfKp+F6?cvaf{GO z39bag;FROh;CO){h0IPcw~z#Cn4L^#tS~-B5K9{RnD(*4c;WZ8?}rdY`na}tn2pRo z`slp=SwxGb3|!1>D$&3oTuxP1fYV3Q=3uuw){x%Y;~<+K>SY!91KcN!e_Y%tjDkI; zH<;(z@=0)+c(3cmg2X%uF1RkZ`CJ~y{MpaAr4pD0BN6Nf zUy)0taba8^7u7;$AmJ0ZYNXFST?RN2Eunb5Rzxva?*j3Jd+4kJStbh!7i0tG&O4-g z3WQVFoJ>^*RMP|uH(}y2>HOPyj^glA9+6>A@nbD&Anua)#!`0I$a^Ay;-~^#0-)Tw z@*&KIB8h$}*TcTcYm-=jZ~zqXF0yU%f;exL@wC0R=8nW8YBO>Qd6*dxTK$RW zu3b_3%~L)3Fq~7&Vc4W2JhR=jFi^YTAfmr%VaV)nQXSYKNY^makqm`qy@NXCrMxV*aN7 zoVi}p5+T}2e-`T%mI#rt^+@o zVV@us=(2BDV~%QHP9OktVM${oHKR*d8K^o9&i0<zZP2yodGsdQdPWyu2vKztEPw|AUn!$2rCUlym)Fhf z$5yapMps%&7YB6GaF8?=9P|*NL%lcV;dkzO!dPIM2ME@&;oIrgyE_dNfwAOz3j$~j zO!+G#bVFbefk-S_=+TTc3V8-gc1dX&UF4nw=_GRuzS=3H>q}b)qE@@L$n(dC^na6s z`U8~%UhhC9JG+fb0?2J4Z{fADO~k5;+&0**DSHE2H@9A!2`Z^6T^3{j72 zsF(@(C?F0?;|W8aFiYRTSdP^r&;Xu|V8RTZ2sB7J_9VtEY8U1-7xxj&FJy<}?GElS zZ;kI4Arn(u{l(tlu^4OG{_^A!K+UJaL47(6)S2xjs6{)0TJ$$TJ$A_=w{kLx zc98LJTIMgkBHRm?UJ-OW^OYv45bZ=N#4Alw!Q1)K7w!D$C#Fp2L$sUcqXoNK2FRu* zf^nw#R*7IO+3ckLipCzyMqI&=7H2ol$Mw6(4ancg!E;j@c&J@)LD6npdp ziT+UD$LTY*pXI(m(f$?rsAz}OK@+HjBM503aAM+nESUN~P3`a&&M}{bw__i1(~MaS zj=E3`x>st8HM^WyxXy$7frSV9@U!jQm~fbqwYt7w4R1X zvma^0n*M$N^8O#s>%YEgWxxKnBnDI2?Q#f|g=A0S@;7qoZA`J9Pm_Tud^Ayx6;Xw$ zk~o43jdH9Rf*hH?cu~>eeG6La!`j0_9&c6Z8ykBSw!*YC>gGOH$HnqjS|gEGi)9}e zOkz@%((c$UF)4>)R~+{9kkMUE)KR-!Mpri^RUK6KV23KD$}%J?B&2kzw27HqE~T3j zG-UOyg2WsPF1ju{Q|7sV6*v3Vh5=ymFDPzTdQ;zVxp{fA=e^{ z-6c6Jb_?cynT$*c7^uDkWkxDOtUa&e!xfyYQfn!RD9|tR8!497BAn|fT8=q&b}k;@ zy8Vjql}|qQ*!Fv_0OT;=`DW>Nsji4a2{PtL7ElN3-6h%K`$oz<&=O#K$3kJmiCm^7 zm;gwI(|^_sr>_pTt2?9Hf;B6>e#odNK9Y%m$zb{+9Aq30P@FsY!GBq%xMJAcFAd9Q zVD_tqn>s3e^=a6V6CrU8PKL`EQ0L(|(7<80I*!u5nd6@gkq*bUE^oO-ey!fMB5 zPXM-tEf*q}5qpyUWUTeFhtL7E$*H(M``hjP{q0jz%QPcCGUvJvabW&XZs%N-+HsEn zxa(JFJHTD>J?~GE6scU7o|E}|s3w`ui1y90QVE~)5^~_Ee)jQ<#gMfLCV)KTJQNq^ zmgkkHE-Ho3RT`x}IEV9Lp~C+OLtkiRC0i`e-hu_%VW4+kf4rvFX6ve{3EFJo#A17U z+w1F>kFY>fFYJwfUuxwKunw0V1u)G9j8``P*Kg|v7OlSiKCStfF^dQ zzsKq9LAIX$6Mw|ziul)XR1U!QNm-68hhpR622~E=^^ke>fNrW6VE-ypuh)O_ zRVo<3s#uo(pZfQ)f^Kj|8i7PyaR@)o4`DaJyN3r74r66P7N0{uKbd!T3Sg(>Caz!U zv6JkEJBYkIgx$E0fQJBQ1hA86`)J3bu19^&1G^v69*Q}9FS%aocnPt=J+s#hP0aRQ zH>=Ynh%gAzbZS9(agRdT>0=-+@T$6o-lA?kN-x6p;Q%Z)_Bh7Iw#C0dBqw4(>lPzE5R+K(GkhJ(v+iTCN3qBXRT*(l=}n8E3|80|>Pi5LY){%Qw|b)lUD)dbb0mtp8S23KPl(KRx7 z*Fxn0hdvAaN?{^L$Z*EOAy7Y=RiBMtif^ZLiR z6OgPPf=l26C{S68NNz&56UZ{zJ1JDhT*ZHrPYgV&J*t>|LU~DhX@F?%owE(ZCmLq; zTfiqS{S5GogH083FXWCBprdoeOsh1oaPMa#(~2N61G&ql9+-SWdt%6812AR`V7xJ3 zH@bViw{Bi9;Hg&MWY4nKv9HC5?|J{z1ae)GJ+&Ry zta!IAtBgI{T3g#vnqTbC2{yDfJQpdc2v(ODHTw}dBmKYZv+VDYxlKXBu;gN?SdHa4 zFae0NN(jLtg=J~(vOr;DqJ}gM*Lg<7&sb+z(d^@$oe{gHOf;7^WNFs&($adXhB2fSBL!Xv0)61*rr7^aEd9u<6kR&5QnU^pI{Z6^XKs6jN4g z0jJ6H;npIQJH~BgibBP7E0GW>vR}l7X%wc?agIH#>CXplI(EeEdGE24H$|xyX!Isr z1N7ZN3jd&k_p6gl95{@Gq15rZ8dv6Cno1=@eS-;nP05NT=YhMqp4M_8#)P}!9Mq537^B-Qz-2zU;4XC=ioJPTgo zB+CL>GDzJinz7;Cu-<|;6w~bsDfc?&c^yhI(IvWefoBn+02xVNFx=NyHM;}l_Gxzg zv9YRIzkaj-z;E_{c|hy9|J%8vORen5?Q6e%|NY;V2lU5ht_LVcdZqLj8ywaoc<|3W z*$tlo8h$Mp$i=JZ_W{f{PwI+=Ts$okH$^ZMRYC35W5`M%6i^+C#cD0)js}F4LNKKJ zO}sfyrMxi!p9gM=NV(=DK)EZ=j>dc1Lertn3HT8*`LO?Nf@0edI3hA*-~{`0tg zH(S>KH~j$S<>0U(kPCjbRuJX6Amk%90>-EF3Ht#mjY4Io8qW&V0WKF+k;#@@K}kFn zWyM7W{v3}R*9%y)_|;kp56Veg0YkWHn&Cj|13daOB`D<=W1B6ggS>laWX++Dk1T1+ zJ#!9wUw7Y=(p9sj)W0=4jpc^zY zCmjSCm{#!KoB24#?V|XMBp1vJ`Ix-mtc@3(P1eoSr1W}=McmCQwieadQE!o`RV1}? z=0iu%uTR-+R=?*nTl!s}l}q(Us|MWefhu;GSF*zdZ`B!=*&@FmF*4QVW&TosDK6p#xquez_qssY@*`Alg!ma~X9uhg6sfD! z`bg?B>^wN3-_ZJTbxW1!j&+#R29|1_Rqi|1wSk%Leax|Ke%HwlTE$Q!%1@&1GRwdQ!U66v|UANBpB%OvU5h0`$i%Ic0Esn1g$+6RRM_wN^_zf~uN;jZoeJEK@~PX` z%kSB~{=1lc4raf_-;LQDRGD6GU8j60L77wEYZ7GoopW~a*bT=fk6nLk-#NVVoP0n3 z3F5ULO!+E)?vcQR06tmS$FJ}Pm!gEUlu0LV9(E|Dsne$EE9{GYz31HAu^W$#;b-pH zU=^RfIn+4{An3Ss2S2G!2{c9pjVZ*`4Wz{;@Uu%nO8`=Ftbo4b_?Ge2YAibgg!vI9 zdT|g2l+Wir!4G!)+!MLCqRQy@jX2)HTMaQMh?SCyLL0d^aPsmorMFn&dtdOn1tS%pX|Iz!k*V~Sp!(X)}hTlS=?DX+1 z-0Uf^#tnS{3?9oSzJ7un$XGYk*Rf|Q7QS*9B%H$h9FNQGg6aq?RVyKnh+D--z@x)T z$XY{CAS-6Tb8cT-OFW)!*WMXt>bZUA^xIlOV|Kee6lx)099ao1A0ZmMw?EVoLLH+^ zUk9Jr3xMQHmC^~pX(|9G1u446ArP4o5@u)F;PouIOa=oC|+aw#2JPHD9oXJu{uyQiE!=aJp_AA9GFcWF1f zy1%;B=Cf8-_giOC@uxt4d2#HAWBr&8adW!b7R}{N*CyrXdm*L!EhBGNkzca`eb};?MJW zvk{-mFW4w&<+M(+W*Ij^aOXSlpCm}Wa@3`^{c>{?*J?z1`}U}Lf3N+0j@r}LJB`Z) z?%v$OEu@~i5mQO!y6>C6hJJ~A1$b@r0bma5RbY=sxS&CwW0t2NqP<~=XrkS?{}BE5 z^1bXszeZqO0pT0GwlL{IMu0cNdYo|1I7+zA!Q^d7m!UKa7EYautF%;8L?#ie`jTFH_krU{i6dKGBE1MMvuf$PpLmi;d34 zE<%^j_ajxJ#2?5HP&suYYC4bQsRjZ@U{$08WUfZ2%4UfWDDsN77hP+SL&)m(j z#`}7A<8buB&_f7NDWR-!9yc;VxhD+{)&;{C3&gS%SB*< zx&NSyX@~)~_ZQk25~o{$20ej+ws;1Dv?sEs%WkMC4e5WAf+t@`0ySnD1lUNe*Cbx? z1!=Mpi1ty=b}_#qSj23$VjE2jA~R-&|4bw`3=F9Cv(&leIvnB(fAHh3$2-~BEE}Ew z>8$?e7@`J(40%#L#N{aJ2d4p}SfIn=RKUe|NDyLp_DpffBY7|mDY66wlK>-+3}zsB z#A=MoI*-l-X8ql%7k0k#-TUdvPQ1SvqYh$JH#s=pYP@s_${ddm2jvJAt?7o|qpcXN zCwWWn^%x7+Jf+y@!iLHJ<&A? zD){x!<}mhdF1_QN|73li{sWfZ)~Vlx7sJ&EN)`qsdy86HGwJJ$d1clX0`Cd@Wu&S4h;3^L~|bM8TA6n^s~dm*j81rQtK{e^+R>`&_SWj96Q z#E`>-5`gF`vT~^hc~+)f5O#qL*s;oa#;K?5+Ml& zItqy4md?%1HT=5$cYd0q;tIA2wGBUcKh49&I z9k644Lcf!wUCfKD7Q*iG=X_iEXT$EYiSKL@+5yrg93{Gh#{och#@eAM(j0;AP`Pob z2+b7InW%4~st8WgRLCXh?(pX1P-bW)cW=`{;sx?Q{5&s^|HxiY5q&FJBp)P;W`-9- zJLmU(J9QKojt5CpybYZd;p# zAtT@OnZx??B}?rKkx-g7!{KiEFJN1R^yfmpYmlr^Gpvy7 zERarNbHScU%5fz9*ond&0?XjevObtRLnBuWcSZJv$NIr2G2t4}e6dUjkRC8)rwS=0s1(g4HD0z_mY3KFaPTTLh~jg zEIR0Lo?AZtp@uG-wZ7p)(Z^a*m$9YwF*!ID3k^bUn;d|$6sxNa)af@i)zvlucwuC{ z79%+r*9e)(!MwCCGFh{-tfz5QER+*k$%{*GlHN(8teG5~=!#e@Twb?h-&hS!HY^R+ z^LXWz`vK#8GOTD-5aK`R; zjMp_a20sq0BVaU)HyZ(m7A_H&0e51;PoXrEhC-21%h-8XHgVLPD4>z(qm z`h8CL=`#w~K%3)%PJkuaA<4XkQ*jcf;+<%_~4!!lnf2TM;Vo1Re1@hB6qn^4too0CY21jayaA{*hu1+>2l#3Gig2s%8FC` z&&ykDa!*TZd(>uY3EiY!-x9If>YF?2V(OX}+aK;&U2-aueQc~tb>6&RnH(&vXsM}d z+0#^AQ&(No5UZXWZy&_@9F9&<7A}v-xl*hUXbe`ciLe22c15fZTA?J1uP9asi@Q8l z$P{MyttL2TkPNuLSj0^9h%_3btdtQX@e!Uvb9taW$MUXZm~q4?MGz&xgbBzv1&CDxI61)6(YYV%IIlC!eh^SYNU3 z+kJp_AcFAaf4bu=)?b0aP@@cnUl?ZnK9N}lIxDR)zI@a7gh?S~IUjlqxt6ec9A(mA zZ~y|4s3iiW4em3gV)@2e1jH&up2N2+FKbFpUasnjodFL(2FthV5ptIM39eAS}!D7KTK(7D!pSNHA zG2NR*+?%SR*;o~UJuyg{!wR$!ocqcSt7Y~Wp!Ws{BY{nC!h4OnFnBL4M)=%^aRLbB zw@H7e(>P05%rq9m$00o87NGsC|_@M(==T0u|oy)!Yz=sZ= zq(48yJ~BG+p@Fe6{6mU{kqQVnT*G$}5;D>$NUF*3CY4;ln1N)ZVV7ijV`MXV5QVCa~-j~+OnX*aHY z;G8%q{GnzpA+vW0hg70LF4bAKSr$gaOk$NK_*qeUs5SI3t;3u1~^$ zRB?bO>JJQ-3fyd|-aH$w( zLLQ^Xrk<>Yz*zyfqoYAJHnqu|(bt^KT0LsoSA9dI%pAo=duz ze!Gu}FPW1k5%Q4qG1X<~6xKQVnYSVeACux-pLy@pnO67O5IYd9Zh>A}Q604|MmyQo z#l>9>6Laj_`VaP>+}l*$z+Fs8E8~#Z(Zz&4c^fV!;#Fz$=!%D{uT zzlL;!W>FvNEW{2Q76>IB`gfL^smHq(t*N6&lRJEVq?_>CD z$S*})1N_3g-v23I=(jWMr`lNt@zh2uwji^Wj zoX&=|S=C5iWWpKu-o7T*j!@pt-qC2?YA_7Q|SO`JHVaFazmSeyL0M159OJp%N&GMyEDH7RHACDZPWsSZ> zIU2LPo3QCZ`NbbCuB&h#$){YOa(S6&k!rxV$J<0uIULh+FWo~jD~jK~$eQ|wP~G)= zsD>;{P_u%Y z#l|M5P>B3^G#FB9?15lShrLFrQV&iq{7er1aBAkjftlB*4~~UfUvCZbf3Qp+b^zJ{ zH{)K}VFmhWNS|(KCOMvLzuPZ7F+uLIGBPN+!lR%PqHtLG{;0cK&Axu^jpcadncw^1 z17#1ik03SVTiL4vxF7Y^zy51h_Gj%)jqNxyEkF=A5Fsdy#9~EcVZ#laSx6>@!g)+W z88MjmkYj31x~m);Dswo>c%7o4RKwAMs{B&Kq3N&^_BC=?ak7Tfoj?(It)9xRiSAV! z9U+waRe=n+v<9ex3v7TYZeI7dNgca-^uof(0Mks&NWqsM#MU}7buwQOC%l61s^p5k zEAA!c!LgXw;b7bu53=`a`Zo$MI4=Z$I{NSP9~=EC-cOPq#QL{zT$P~A^_3l0Tm{J| zBQV(kPy)Jo^ZBE%9h-&`xb>#P*nen)KY#JN_y6J-7_b!sR$;&^`K;20y3A+AhvFka z<7pKd&m{L*8Cnly%=@|Ca}0Zqo4rwo{UqlNyToVVuYzkAIDjY=@=v3%*fF34)B~VE z84oh${wi`acB_R!K|igq9eKfgLd`hor?-YRotuL9&Nagh?4%VD5{lg1`<_A0JV z;_Q-h+6o4P&1DxU!KlFujfz6^NXsH=Ktwhej%i|;EWWwr&GX!OG`hdh?pz$fO-j9e zDK{x80}vFUlyE;YNo*@T@E%JjoOlDI!Lbr@TI1xFUj z-~Z1XS>HJIf0qCFn(e=Q;o#nlFFdh4z08W3OaHO{Lsr3T`p@;(Nd^ZxQP?<=ATfUC zrOhd+m*hYDEtfWbjX5dpQg2?4i(&qqu$W)T&R@@MQ^On_JnNl?#fhb1ck+vEk!FW1 znz#0gagxaWVvmS9JUB&uv6~a~_%hsLVx37}R5_20qP>CR$?ysxv;*OyD1NwucZfVg zB4mhrhRUtwSMm%QNCnRj9WaQZ2<`Ya29;~Ljc*jUF+6Z(6YKZr;pdqp0(6KC1SJNNtj zak_~#GvA;dgCYw82Jfd59?(P_H-_lPY3+t(pYmeLdELS+M9hI1By@uo99J?olWx~4 z?I|gt1eucZlJc_B)Oz|3yYOcvz04#-ux zNh;2*KfQT+F7^6teV)quWX5Pwuy`V@9^~Exu1iAXDhDb;Dh+^glP%y0{U7k8TRqy_ zAiHvSt~4uI<)tqWEZL984;~oTJs2%B1il5MA&mf_jN{!FE}qlvDi&zBP73~kv`+V# zTaHqe8TX}OS78x{|I%u$x9+jqDLLBiv?F#ZOUXjbNxsJp?6D8QKFs)eug3mV(?c4& zMbqI`{8J4PrStk1@$)Af3TdJDm?xP_5qb|4`zGIFf=VKU9#ARAXFv&aY>L&}5l+kv z+ldKM{S|UI*K>C>ELl0;T&o=^MGx56UF|6}|vSoXWR~uR7@N-q(%Wxn}mwp!72R zJ$xuy{OPj?*}DGtz&QISy<~iV{vJHg`DuYUh#>kWsZLs(da{9x8xV{U6%F6FQ75`( z20D{uS?4tg04vmy=3Q`5;Y1Xry)*lWngn%HT^PZGibTb8ZYd{mChe@i zJgGfc&{k+~a*m!HIeggDWN+&$WFORC^43Ki&1zp?--6og2-bOLt(L&9Fe?~d4_~*b zzY!iqddKXki5^x;o?rd7o{3Wcze%Jh@BkFm=DY;5fNl5-fSupn1GgS;*FTeJ2a%9! zZBA;zHpUX|6mgVn=P{9&z6Tp9_Xo+55&g~EKf&8MI$WYYfHp*s1ID;t zp#J=P5AozEycd-J4MQ~H=)~J8=E{h&!CKlN%MxbiOT)22g(3G8v6t|`T5RX>E$-)0 zAkY$Rg|3U#Es|@qHgF=FDd7uG=x z*l;F!`QEGzIG*U1JFi!gyt&?7Uk+3fcTNsnzgL8Kf06QSKkE7g1_h z+5o^>a1srJQ7dN(&GH_q17BYosH`X}Y$3y2xj4RIg8UMv?)+ z=J%cP+_pBbSnF`?2@egsJa=vOkD&HN(I56Ms<`qw;;QYOQtaW*&KXCC8oeNYY4c3; zT)2Blv#3|k9KOE4^XA9@YwzIT-s!H5y>ymxK%%(_*rBo>*&jfB1GwObn-XG(?}=BGw(ynFTbTW9AE4zAQs^>4(+0h11h z`2o3EYL-4Ia^b@WxIwrwJb{odD;@Lu*&1tU=xFM*+L{{AxUOj%RBY{St*t}OwY+yKOA~#QSy@?w z;i0|L!=;t=fk4Ba*1Ecuio!t(*;&3c&ZA??rTkbf`1b^mgZt|0q&?np85m-%#Rf&X zjB4-^#1vLiHU=*R4@6hkqoch@FSV54yfN=|UVqC+^uN^D|8>87^pM?k$2*(rY_`fj zYnZgVl@doy>E^`9`>r}OAOGa+HLWvsHClhLt`6jbn743KBHzuB&$@tOSJb95&?^}R znGyhanP|3yHU-hFL)@Se^4$5z&vS$}6@rZB`?(L=6hyNa7tKDud76Fny4dh=Opgx7 zZoM@&4B#zd+6okfwA;zt+?v)umU4UBXCdJBPxw?GYHt5WukFwYXx@XwWL>6oGW34)oX< z>OiC7NjOTESp!)%0Ckj@g}8K_kQG;qj-%)Sm5c96{LnIJDut;^^k1--~=7ICLQhfBpaC?M>k0tm?h-=RC9TGnvUulF1~Q%s!KSn=F%L zvNubUG+ol9Y16a`U8yZCWhvCM6u1gn0RaI45nhl*7ONu4qNsS)t6XGJ^ok3h7q7yr zAS%t1_xn4~Gn1qX;^+PUU+83(XFKP2e&@F@v9dMb2!uUk{BS_(hN0IgCs0G|$5IK^ zK#45>B+d^G1pW@SHK*8FjB6aBfNqg@5^Y(+G!=so)+TqY{qXF}lr7)BXKh^yrK?Oq5^{>D3t;7?mG*1r!Z62bsW1z);n5&J(4#-$= zEta;x6!dKEzI1kv?8Lb&)NBpQ3lD&i8;1-lPWTlOyib00PIMC-R&s~}*bUWAD=cvN zbN$erbX2Kdrw}zt;XnorRTRv0NX{zu?{A*5xv7FSb6CDmU8%?C?X^uqMmL3e58|!C zcwp1jXpcOmQg=06jbKkic3+)Bq&NNmSctzt*c;hsp_Y(p&KWuojY1`97jd#?H7l7g zHfEy@lp$=$m5`CAgL((tYhgdLyiAP)Zjc)X$ZZ3FI3>?F(>^Hh z6<^EhpwVL;@3MKq+5%&9y!1`0&ax7(W%h_D~!Z--8J`USbQG5Mo@NE9dGQBygy58Fh|F znVh7~VF&0Q_swjuC08er$~ClNsAa^6&$f$aAd#KDkxfZ=wf3@CC4X-#ecpKXajcsM zNYw%)FBg!L6{m>hp^{>q3UGwfeUuhbi9G{mF(Dex_fR^WP|nI}{SY=sF3T+JK&N55 z01)W|q_Ly|Ns?!^+AEtI%th7>y|#j=zF1dKSQyn64HxP13VktMu`bVR>uj|aSw>r{ z8&smD&p0*m^~t@)X-%r)*;rLo?8ztT@3V;}?X+?4+OLmIwAb@kZQ`d^Zjgg&jny|6 zlYT_M%2rGIbu#wYlFxxC5G-LvFeF6Qw2l9+?B1&Du9hf0d* z@RFm_i8|dRPUDYC!;TQkO+W{SIfugHw4mc!Z8=X?@(Kl1vbfZ**B2@(Qaut*U@oU@ zH0%JBa=-#=15Cp;rLroW+aSHXe|%k~&ZB41{X=D>GaVmkC>L2-*%qG^gRK8TVv7&4 zI(}$QP?eRyDu^I33t^My0maV6Q1gIf{pnse_o^bD3KF#Dh@RYd%7)b$;V=Ta8Nil+ zZUyLZ9}5TkMZWy*3N`drer7Au$fs6aME%Nw7Mr1UK=E~~iQKmsj-q^j zK<-bG`trE}LoOwIpo?TM2bFI@0Tn@1YZns}`S95^ z2og_xLAD*o0$iq})G(xzfL`-h;t+hjsNOGkAg;LY-urHVdXLOV^sO1LsT5I`vi1S-LxrmjJ-y&B;K zLl6!DWNJ`Dp`JkQMzCJu!boMHyc`Iw6yrCo%v2@ z{?4Z&Wn~fZmDzP&>#dflz74x+UOxkze4#LByU(tuB(b`zCHsnumkRHr0b2`iN z2mixYT0uIEd>WzPWae4hvJbkE zo}USXcyfdD0WB0gp#09Wf2kkv3yin z%pwcuiBiG$RAfmy&{_0C$^00JpsCnMQ3 z*#ltKCD3m+&=`3xA1{keaiMbVfRXPNK;BuaBZX4|y-GKDtogUKpZoe9hldFKqn)3L z0sarN)o)8~s`kqlfZf!Jtul)hpu#5P7Dj|J*Go7Bmz5RLF?pvMQc!RbineJDaDZXC z{kgO?XOFQOX*;d&{4fW&3VcGor3(Nrq&eEmqDF87-n2_pF!jN@PGMqlS^(fqx{01* zi}|Apy#?4H0FTR!3<)w?<8cTb0czDjBm+M~*FA?b8R1w~^Wf;ny~nVoSJiwRceuS| zJk3%xo>yN5wmnumx6UhF&MxwR%*XjQh>AKbSS;WU0RW%~sKCM;p;{K0zUc2NF@E?xjK|(3 zy#}Y+{IeyaUiL+lr)u_(6iQ&z+HjkW`s|X?)!U1%QaDGXwW+}}eYR<~GUwGkmdJ(I^Ygi!}#l9@f zkiHMHZWE8#i0wqgQO^ouIV(JPXAO8)cn={A1r)m>XLqFAydLl#s>BVUntWbr^0Jf2 z4G%CV?L1x%|&i?5OfW~KC zP~>(OUGQ=zfVyXDYLE0d&{+D0jy33{m&&F##W`4qI3p*KB`B0p`a)R<N!;K&ZxQ((%PAhQbDFI2)R7eejwJcRPQFlr*t_BMAYA9UU@~a8q{XH}dlZz^1lDSy>qAi7p{L{{HApv=;z6Bsdo z!BRgoRZc~4JB!2ZH*rLk7hsWwWY$0fym2%%Q2VDqV34UdpEKNj|2?-A&~h9oDkvyA zzzReDl5lU=CrzeuT9=`-9MYFqud+CLR;RzSyeC)sb8fHH&Csx0Q>}lCGz$JOPaulcVR1`%K<8>s) zD}06+-0NRr?>qv?i;sf44FmacUzv_jwG21)LU3q7s<01f)ro*BJdN}i&eNPZ7BerY zXlDSTBB9pGVkzht2^!#OTr54t#nB62OOZ4x>gQKO48_~uNR~KTDuEm-X0;XKW?x)>(l1M;R1X{{}J#^DYEzl5cmXDS_bg1>_Hqg%3lAR7m zSA$qMAExDD{`% zs$xf8p3G8~JRVx62aE-pet?hzCK*_(@dZl1tT*W{b&aUUPx5R!zVQ=L zy+ssF`l=nNRVg;zHlZ`9)h3j?#lXF28WZwj;ESKaFILR?qi2O*1Phoy!2S^FEh=0Q zX#pH5H-vULNz5o7z)KwPGC)gsBzD7Q;zTl!%m`pPIXN6nsHy?R4Dh9 zt^y4iZLsyc>FP6|3(VC_gTA3!2;x-av|L;>k@kgxP#2=X@=$ppN+)HD9~ZC!lOm0R z?$uJ~VL8x~R83F}trpS}NFAgS1hqh8C`GT{NIeMS@5ZJ#josYc($uettF~|3f59>P z=*Ln6-QlvQdsf}-usIOEHo0+rr+HxW^rZA}s}nUfY@}`2XkS$?-80a>SM?W_ zAbl;BddrZb*XJ182L`TAL1LI{pioQ1_yQFhipTTD{N zAonVZ2_rjJiWbsCBDjq70gmtTesH*D893MVCf0CRS+xc>K7nT@zZ@7PI zH*EZBgh9ru_)4zpzkgtzC`v`5=w?s4`YP|=4EXc{J~>#*TnLw?vIQVmT9}8*#sLcj zZG-JX#6=e$&`_A`G%(jG9k#KgBwl7M091ev+Zp*8d_sud$XEcBWzF^Hl5j&+_f)m@ zWIFQDE{`y>8`1h!kY#4aA?e%Un$@$|%7>nOAXHfsehH|Fu*1cbo_yK1u7AUB*6<^% z?LTS~T`1GTKI`t}D-KaiA-*n9K|~gLconqFYLJE2ccOOz`w)BWcT9Ai!o*T2c`5 zhOm$GoS|T~5n8DS-J)yY-{Pu)f{B0unbU~qDi%KvnFliKcJ{o+sJ0IzN2U<(HDEus ze(*rLuP>czw|_U4;tO{?%6=NF;5bZ2OAr9FWQByHrFu5C`hc@Sy!m518G?efe z5Pbkw5!pr;duY?M@ zg+VFYi~=Z#gIW#-3i6eUA`uJFp?#rF*Q$f;5X%5z@v1YNJCXLwAc#ftf_VV~fOpyS z%^xs*288B@Ey7{&LE!DylRzLX++OH@f~`DjYU;F5IPpMKD_$O*e{Ete9bV7gQE-%s zDa$4=@IW$oiKj7n$>>VN=EIu3;8Z=y?3H|}?K5}ZyKMzwXhZje%RGGg4+ts?dSh&%sZ7Od_eSsglCyYP_CTfI#8SK#X=#Z;P}_ghweV zjl&*X7n8=L?2}_4?`!zgR!!uWReOvC}c7t zRQxkTV8@3u1ZL!iQw)KiZrpi5LPXili!Rzpuj){!x+)wVB|~5#xpp!F;*Fd4MQ!Yd zHk(vu3$xo~5z)=%hAy{E-5~eNK}rEI>zia&ZHfooxptM7bXN%dZl=@3gZKf$V|Gab z1YyYcd`S#o$($2|MU#_(qJ!ZMCbF;aZqA}JXnOjyC(`hJ2?A;OOXHv*@#iNX8Y(L# zTZ1AF3SJ=(qb%*~AUQH}st|*dg?$nf|1B%*KMXjIY@`Qrnsyqop@dr_SZt# zAHNS~$ObMXa=r(LH%T!RzqJ%Jp`fqOidwodXbJ%u{9=Wt=p@i&b|-;`M^t?us*sv$LIt02~4suwR$c0o0b0?q8+xHUths>6bM08nBMb3vTr)JP1AZyRL zM9eYc^6BZfZ0XA374iD^mX`B>32zeE`ie+m_f#M-untnr)11REYIbDDY)Ln^qi`@A zf+dp;p23g_R6e~S69u-o5TckSNu!~dWiFCXsN6p@WDdqP8&=e%N`0TKZ8>jl-A9aZ z!$?zIswn@8mhOvoZ9bStgpMVueV($q`tqZZ3V%UG(A7(Az>R!j!q4BRMwY= z^FsQFW2$v{!)n%z=!ktr*+7UrB3ZcoGj$bL12r@|6RwhV=*VsRABfz=`chq$Yo zwY0Z<>|@8i`OR-gSdLVxINi!FiQaMxDGy?J|NN&=N9m)bRAg=x8k!y5_V9SWyVmM z?=3ZkM#3Z?<08MKAb+Vbl$sUQ%Er)e)*MPP&r7VK+&H>r%eDQ`Z&ChHJybUhehY<* zsk$p>ZVIYRA~R@8&TU=W%0^p9wI*PJS!2TJ_qqMKRy&dxj!ApnCAluU!Rlb2oPXuc zoQ@)QSKghN61d{Dx6AGB@=|37*(yp!yv|@11xP>GDvEpz_zfW=Ms#EqZGQAej~@Pb z{TE(*^z!Rj)qwQF6@O$+Pd)Wp>51=sj{u4#1o5UNq$UfH3!Qd@7Cs5!HW}3Ah$Tn~ zawT*gwv_9_xz-$)UrWpe@-qVbxG5HTC`4%TRyvEskwj&yv*^v+KXX%s^uP1gG#uC1 zjkk4vLho`Ok5(tT#T@BwwqgF3hW5Xk%ktO`>8m+q5sXH*jmo*RFzze1Q9@rH;7ZX` zicwUyax1|d23SP7QFzfJiplq~BIMnDMS6|Jq%D2S*BfImM&nW$r)DY?iA4Eecx5Py zGs3et;alRFvKc9<4FVKxAH^``<5`^O%NFrPmSu5bGgJKI8M8QXj7yFPr<3MpZMBZe zcOX9vDFYi*YYnx=)>LY(vDVPK#apP>guGs#MjbYui`0Q_dy${^^tQb#SGKZrEB;DP zx32t4QK8r8^A@6aHF+c0JQNM15KV_rg$>jehGh6aL_kcnnL^FDi-kOoNQ|OTGnAWf z>JXcW;JymWcPIbL{nm->+_#oR*zhR!*B={mY?ZqBA(G5R{| zv#e(7#`W=3Uw_-Sz2|JHJFwzMdw|jOxKcm(JU^O>-nFW4eLDJm!@2M(ix1af7P43U6XGZmZ7m%id*!#kzhv~T++yY9G# zJt#GoJ}OP&{#AfiHSX`FK9tm+CWJKugw8=!8_LzHsJ#D@h>tBw#D^Er59D587|aKr z$m9MwBSV8S4lFby%rxd)3ao5LJ*@oSW@l|2R$~S%ee<(T>?lfz_zrHJw(9_@{nG@h z@>DO|I`-7w*>V7iYD!bN;8(zAOL*mLE@9wz;I?`v2b8SdC=AVwexV4mD{+@lJUR7X zS5}ZV9C^1qq_9!{8_KJeL)^9Qh2AX*lfEwcvu$svN;=ynVn);8IjtSjCR2Au$0n1h z%hS`zI;gDK+BHFm1OmT9>zqzF_AJ%A*}2ZY?t&W=VS?c&I&WrRR_PfX8uCloX8;l7g8Y@&Q7WJW&gYe0K8%0Ryr?wRyIZKC6j2-El zNtkr?OR&H^us;PXFm`oxOdCyI;%hP*NdL*2fCh8z%g{h2)L}tn{y|O65Rm9Cu-m8< zCL$kp5khTE-_zd8trZ zh zgG{#Ba-?p3mowq$jim+$Q(F%tXWF|D6qcFejSw!e(o|u%34<#H(?LKuEJGy7!Lxwv zegsOlTw_Zyni5`<9<30sA|I@t0bjf*?#WexP#5D0GrX7wp+cIgmH98I5)lGrN(fkG z+HGeMgtu>)(@eJ1wyZMdGuL?Y)JBk~qnldCj5=dWE0`9hXgsi$IPyeaX+?kAXUl8O z-ICx1loOORjz5?V)rDwYoQ_GJjzVEEc+g^v3UxWO++zy-CE?;U)3Kuo0m4F*=@5!! zXlylCU};&1yCO`VcIM)A{;^@JW|CnZqsGGAb3fVIFKxSuN+xQPYpSZ&Bx@%8 zMZ4OX#;e(vO~#zAXmx8_RjgC`SWjbFpVN`!>`OHEU{j6TB1$a!w+az&wM3TiGsJt#yF0UV$~KZYB-XEirxu-<*eXu4#$@|| z(PXS^i*)2n_OK%s>E*cEwz6SjmCa;3YMdHQRCc%ZwROiz+4W<82}IdPw)XK#Dr*-G zvS(Qu&F|h@_~QJ$V0c6jADf?lxITfzgnJeavG-YvN+aoYwwb7A4Z`M=OSRgca8MV{wJaOHOi2r40S<>GC3F1*iv!M?*G^o(?= z3?b=K`O2M;pPyt;p=U-^$y5AMg6Pw<29pL+1@ z?3E`@J-7`ApXFE1XAX+l0o{b#{+=I{G6xq&JBKTO#z(u5IjG8Bc{#59IUNLqP65J= zELSv$uQILp-rKjz@L9N3hR=%*6&(7Te26`kIrLdp0M{>F_4ktx-Gm!z_*MTn z`OqD>;hX%>`zIf|IeXQKlMh|ba@jlls(Ja4m>tGq_~p zE0)r^^odxkMeowZ*#%Smmkh7l(0|Fux^!dtC1s6`WtWsUf-c>|4zu@FZ71t@qf7L= zRVt(tWb`{zKGmGe=y&%RkJa96`sn7=ej_{F!MfM>_eqy@;I6CR+h%#t$0KI&uBmtKeS*mZPu}_K;O|$HR zvCdE>f=eoT)_1I!(hW6tk76nhV~zfSshEVZ!G}$lgO?OMQFRWGDWl(w^1|8xC(_9`kX$C31RvOkjX49Z>rMc~jZK;_goJ9+_nfGXcshM=Y>B=H z$V9^40*L*IaCM{_%|sEwVKoa_E`zdMkm!?gr4YqF!!duUhUej;7>w~GAgB7#MZBY$ z#S&WmrrzEmy*5?ODysE{+0saZS`&|i>ow|_Cf=&iRL1#Vc0qr0WeOn;b)^mIj{0B? zDtNV4r23dC=<|g_K40)hF~2`XFRbr30oy!GGY7^`h?oo-3Kdv|r5A~lJID$-1HE4+ zzpKPy3RN%2a~8RZD2gK()S2=?m0+TUil<1$M3Knlm09+8KdZ7teC^o6TL%UPO_~z# zRr%o-E%NPSjrhwBf5)CX($+h+rrVziJosW}-623d0vV}*WF!^ZSDh?CZGbTIJuY>a zPL(=HF8dZgXg>Ae0dV90;@sGn;l_)6d@uO8e9)9RxF`XTF!M6M(tPT{&w;5KIa4#9 z%nCmXRwy4bE#r5XBXNHj7lYYp-5qr&6i8*W&BONP7+A~;%d60zR z!aQhW52gE;Yl%z8FKdf{w>Xi}6h-tw$L^N*HPT{a#zwnanFh74A(e2+eo&O&%ywW6 zT|;Ubep!>wQo6RI7p!fdf2AqUJQv3Bi5i0WK`802%k$Tjtr;9ncaM&B-q^qHSCx@) z6`bc)KpPUspC*A^Wj|FQCs~wB&N!%un~SpOrxMl^22LRz>4rA$~iPh;|GW5fNLFFN__W5bF+C%Ujxtw_JE`C!v zRFty|6L@1M}AE^r+Zw&}avTcuG4F2%QZIiwn~3w&iQbbw0=~MowwmIUr_Ly9 zDWf<8Dq@s>;IlUIS=$(ehz>q%fn3s%nY>^SFnN@#*BkcoX(E_(ABP1*Kfpq()sG8$ zy>>Iom1##2Q$)X19jfGzsUe8-(Wf-n2bi#UYpsf(&_cOeJEf7F;#;cK+%GXV$|Ri zjC#Fs9MNX_&4S*jCjis(^es_a$bI#HaXVVC6=%F126*^i8=mI_hqrh?-4!2Vw#!Dw z^|Qs9{%g0Iz<=pjF-(3;D2^A$W6?-B81R>Pi@d;?<+`06ERc4qbJ1Q3O2zd%;EGK9 zK}wb)&x6e=T}q9R(YRV&;wv(2xK;nMVRLz;=vZ@Qeo;|=eo<3liTTN&a0Iw{_nu;9-#({f5XyWOuU|!U*-C{Nx zsGy-nuAe}0y5L;gjSr56NEmHI$@}Acij{S3ZAg@EcwqYl7o7FL#z3@T%XfQIsotuw z)$V*_&APgZRnZ;a`}oJ7-4$C^R=2L^+g07&Rmq0UoAZ+(xQ{OUmCXvb0*?z2@Cf3F z5K1NMLJk&IDQ3%z0wskaT5Urp6xM3%jpe~`Wo0;6jvHOQuo;s1wX}!ia3<8gVZu=& z->nRK5F}>h>%j^7k|pOJxaF?iw&&m-$fEuc=o*daZUjhC)HDn(FG(ay{PFqkvZVCyc)k5@HI-l6 zD^vC`0{c)af_MEzPA~KjrIryw6To`mCqS+nRXvO-Cu)z-mN@g7u(*I13WfP7-&TSr zIdlE!cn`%2j8E2WdAT5Xwr%1vh<)2zlU`>uq&qIQUc6(c&CtHF$+mep1n=u>Y3W;g z?v|zv4XWv-plk&wpW~qP3kQ^mK_P*TcMjGFHS0Ay$#TTEC&0^V7+`z0iZn4g5p3|t zKRFYnOev+mq^N)=V_5w*zr0a0LM91O+%gfMJxxAHrK+Nvstj!}^kx?*QgCp`PP?HE zGn}MZ8;l+4i>+9&{DJ^2+WcqE-O@aXIm#1;$o(k7FK5|(Q0S51!mOlyu*aB{v=4@^ z*6*^%+3O%g#jw)RJSQ>)k`bj|q>mvP;(U}WQrD!{kJQyS>h;6#cGuN+b=B8(hH(hI~e=(V$^wUM2M)ELhm1NnRcmIk&vIs|UHb2nR%gAktnu-k4M8 zQrmUWk*K!7T99;Je6cf$4_f@7v#VY8j*Zou9I1kWmK+TAV++^99!w@ouq@yu^m_(j z2Kb4hGJ+bhBUBbbgIrXNT0@F{rgDuA0y5}1iuTE`k6r(+`Ih=yEVne@VBVv8U{rc! zRJx9gq;m_`vj5IL0hj_?A3Xso2cCrJ6ag*ZQTv31i&LKflQyuOUaC3s4b8ZJ{VnEq zuirDu&K_kWqbDfcJdHWj;0aV%9tBRp)xds`*bC-+5YZ6AlG^b^YA|X9t<|d1*H2!5 zA6^*ki8b^BmULo&`?0^ns^Y6q-$7M;KC~3!8vI&+&upL=NJp&(k(rGm zQi24O3R0^ZSK6quy=oe%#*`0cw}>WFlL?zSOux`U_^!8~dRgYgi8KNhDd7l@;T25C z2MX0m`Oi>{kT6V;zj(V>Sb$(3#*2E6QZuG-&l=(|(|(2zd|z0O%ti2(6TKV>Ti7QYF}!RU->wsG9|%hd^o6&k7tLo|>$V z{UTO9IW>HIW_3kFL&fSD;N??7FMAXLTqHk1MBsVkD0K+~9hR14O)f*J#8v;22sOM! zY+5Ely_pf57DcFq1?kVsuy7Z92)2v@Db1V;VRdpZ;=(FsfKgXIc>A)00OajxhuN-L z3AIoAB{b8jNoZiRA+itFM)msK9(MOthx3Z;TW;EH?cCjGDKZzYYP&e_qfbA%<@PF>ccCa965}8dG_4C<;ktL@5ar>fEA-y;ULv}L7#fH7fXhWS1>sQsO%u( z1)~GieSw{kC>RA?!OX~nfS>B-nGA^X39=wXq{)&PDI?rC$L$1U8kGq=O_O-rC)aOq z#VjQq`_211Dp6J8;QDfNd1Z^rq+Yplpurk5mQ|LU_l%F+RbM$;S%25a_-G<=S4*Ex zH{5(zB0-p3iZPd9%wck&AVGrCA~8-_Mu85*prNDEP|>^yJs~-%bK#uw#loROZxLt1zzemer+>T6>`5V)Mo6 zI@UDZvWJG(G-A;AHqr1R1NF+l>jonj>oJTqA7j-~>?#JKFdZs=fNjCsYoPD}4#*Y$ zc$q|n)f^)>bI~oF#hiGDCO(1f_?zs_vU~-K7SREIGvVZ$DI8^j--@`2$_!Ql0;8-v z2uuU7#;HIR-;*>>VGsVi1=^|+iqc-PneYOSOUMRzSdK~y%N2?G&c7TzdgAC&wu^m4 zx=y+d*WZBazw=?P_w(zS@5(Fhz4FQ>H$dTP@}gq^dFfn~i2%K$Qd*!Vf^aa$E~0#o zKS1>{*c_gG;wU?toh^L|XIzI1zxAOmY{3)ny)t`YX0bFf?Sh5v3fw9~W$D?pQoLA} z8czpzg-pPg=_--~PTYl4a1Zt=tP#Hlt`?4RtI9a;BcgN*?s@V(AXOZ@e)1~5&?oMq zb>0A^Nvc)=W8soO%&ZcllNF`GvE=(fuHd%|3*j<<0{$U#Nn~_dzV8%#mPJgN8Pkq@ zPi@-V+tX{(RTO-tyFqJcNM32aa(atR<*cr_Csv};b!MIwT-bJ>e(ta>46u)1}oO+CGRM)jmxV}g{#=>n34fHpB|B220;Yls1PZ$3ke96m`NoAUf*)v=;(D@*7lB$ zo^RiE_gTlc-L=bp;!EN$gV)X+pZ*kXv>!KmEPEpdvUYGIj|0`#xZQ=P$%P~Pw_ZCs zdaV_=={;Zdw0+lI+m4@g_pYshPfZ`6xi$z8eS(!DzJ`<}Pz0=OW@Eq_vRwS2mPMbi zur&NeqtpXPxe%mf1t%?ItW@-T*c**epCh^vMj+zCZ6EeRWb3Uz(+GrxTiO3C{0>w3 zkkV8xretQnGS3bUVjMTZmNF-N3PMhO)+{8;VX|4saSC)~>kw+pdC1uB0qPJE!H-4E zQFr5@*&%A2?m4GjqjK9*cN}uXZN4U_tI_9b%-;$S2Jyt#@Wilc_!^Sdhd)Zv`p02` zpcHHyy)XoY0atI$Z*=(@UCt(-El#yy zK8s}_RZ3X~c>$DCkL27o|4HB3oy#8?l%786hm!_zXxWesVN69rRGby{;6o;= z0L4pBVVhEWU)s1!Pz8GzS<-?QO{I}tKwOWsUN8cVDeJHE2Yv2FfvSCw+PQS1_4M`6} zH!~U))4>`oS~X}9g7iZwRcklcR63Iu2>$~CShyFoVVS08&2T96Cg?0Ww7SQcTGThfZCO1`EBMFX*tybM z%#oCS!;1Q{pZ2hC)S|3i98TTL2R!l)2(@oEMYGNp%#om%0VIvPcB>gr8HKqK-7gb~Q0s!^{GC$8k26sCh zWVn*&!SJ2As{Ked{ry=dPV8qtWlZ@*3AhQCQNhqN#AX%B*GUXr?MQC3v`fG6z06CP9GfO?cD!i5{d zEP(_mQhq5{yga#%t?dV>1${gN5j zG1+n>lr6K|;Gp6*gY4?#1i2c0ZyR9Mr4}p|!m9MJ30FIqNuPOtct$5Dif*A552CvUI4(h_W$J@rs~) zK99@@>~pU>u+E)w_qtP_j#iVguc4{VWSJZG&`(7Nn^9S&vH85oi`rKk4Xy1LU46Cq z3Tk#;Z{M_{Wz1^d+&8-2`YHTa*;ZfQHvhe@W}ceXhB*esM`7;_kOo?kV*+9nJArIu z8lsH@otEr+D)A_xAQ=&18}+#I2x2~~l^%nhQ zY)!I5&u-9nGypez!anpgJ%j~`3p>*#ZkOE(h1u(|P?gX^9n@!xb12s)vH`%pfAC>H zltU+I8!??Z;18Pts&-IRYXPRl@F5}mgSieQmXPQ)rN)j&*y!#GeHLGvpT z7UAEZ983?K84&2HhA@}!VMhW-bF-HRYT8rr+4^adUSo>)_YKyzwk0+QQ1}}u7`;Z&Apun<969Y(aJip)(L_3uNKo!wq9RdIUM4TRTvtsl)efsC64z|x z+k*4}b%DHjh?gQq05&h|LcDw1@;p2pgpS{jjo5Uyy{p@L(4EV8uK9p<(z4OKan+<< zw61qG_8T?E+D7#3(im$Vv#`4?HG4M2ruU#*S88zW+CfR&(a?$%v7)x#?sQSQ`#Ht5 z|5q`EjJz^ob9y5Jz|=ae`Utt@nZX)mlzX7T9JvD5;_8CvKv@o*o64k+VblvL&t2}@v+uA z79aa|Xa8vGnK9|5mi5$zq5=^M-GDc0NeGi^7;?eoL|BnbI-|~Hq-Y8=(?FHlCIDr1 zCOvgtV5%9=8UWmA)XrE?MWS6hOa%xlE6U=i+5w;!RC}v&%X}0X2s^AWQp1cwdZ-ND zWr-*}CIqNqS;pqsh>`*~H#4 zNzdox`_c(N5^ilSS-jbX|UN}-;y>8R+iqd+ozE|45enm^7x7Tbh&kNPGS8v#g zd7D5Ar?3Pbp+rDaYoHa@0k{P}8-vRn0f^f$JtYO-l&L65PHjBwehHrenfzJF<^QaZC`d7Ei*$h29I*(f4Fu#%Ceza-W00cUE%jnusHn4YN z>&Du(qqneQ-Azs8jxNRsTd*>5N)a)G&`0Fxv2)NI4b&flgr`@oOogS;>GacvOhLk^ zd?o{x_~28~H3;Yx7vgRQUn-B0PYBMOhI-%^IylSJK-m`L+ySO($&*>-PpnOeQW zf*x}wt@W}kTen)K^^M8q0lmgvVEmfpPQYHx)V1JnkVhMR(p?s(Ykxh4dc7a zUwqIwyRyEitL?_N?&i8xGsXun*a{4`Ms+y?eX*-x(nlf-Z>fm=Jg>Fw?_P3oKL>xcBZ zKxlVw+HBpku5hw&-5Tqpu`AuS)(8f^v$Ne~-LYDA`Q5g;6*cYcHPIGRN$&2U^}Eau zK4{v#zO`pXb6J(w zw1t2Iq>4lR9Y>&z4!aTJ(?}s2sTCF%!skw6WiXHv3>cx)$gYhdY8?e0OYXS}RiG5O z>({MCuixfyd0}q8tI}XvYchMIJMU1MqHUFywz0tjzg_;=W^HUcv% z;S4AXS-1_qo*bCu4@iP~WAh|)DVB!J`Z~8KHylCqJZ&kQfzR69d+TD2m6eULy3yw5 z(Iuaw*n<_g|8J^Wuv&;ttY#=Wk@rJJ=P^eCONWf}ZuL z@HT>$ZjghPgntNn*wP;U2N`VD3x5!1#S8fo**H>-rAN3q1%f>|E7*>_RH%?O0W&5# zn31uF!c&ZV%?b-0FcYDM3P&k)%knzBvWZ9zb~0n_uto~mMvZkK6z8y9sFS~M4F$E@ znh^hcrG;&>%s-3I8u~?}tvN=&uw#i(2qoD<2_w3`en0aC{uChkEePj$7E>q|J|Z(F zg!p6g!aYS8wwJa7I4LFeDDB6#0ETK|%$ttNCu)wIu~V6HDo+G0^yax8HeP+Ym=%Kv zENxbno2`i_huZQWELPn;HrCxeHtF|z{q&j~GmdpLEBzX+p`WB*(%+hBH#M>g3q#_l zcpG1bfH0Lt(vG~nVP!ni_QsN+b2v#u1|E=am^L$m-Y`;9LOZ=APy+eqr2TIB;Qdba z$hi;L^XHh^56w~z{betmy7M0$8v5xFn8CuUpu9=230|@Y8z0sRl(z%!2;=mA+E^`& z4ALYqDbA?;mX6COFMl4d4$JW|RqDjI=|$F+1?dGgp*jJeoi^eIh9M`cGYgZ_3!3OZ zeu@i-o$ug16>)*p2pTkiAqk{jqb9eA#f0>#gn49QM}BB^6t3yC4Q;D5rJT*6DWPN%l4NQw&H48bXb@;0J`E-=j++VzUf} zfos;RS@Wd)MvmE^K-vEsz;osq5Db2DVDbRPhhrC4U(~K;RVzyAo z$%l{MVL(8jI3xp6Md3j-Lqyx<*5tY@G}b_1=}53=LfU96S8S zndha;|9}!h!Xe}Xe~-P1>uf?MA_)8uAuHM73LqqcD`@L4-R@eMRA;w4X=SWoNhHv( zx$AOGCIsj{Y+y1o^oo0V$a_p!k?z49L`XXn7^7qwQ6P#AktZOCJY!IRE`l#3R1YT_ zrk3{Zm?!4SfniWjf$&BQ1G*!WN8YB`&jV%LXjmLk6iQN3h%>sOuDmxemoVAQE6*Q5 zqPFzg!5wD18KRHR^z+7~L2Kx5e8=>rrx-2lJ)SpBy{X+RX8U)gdN;0|UAeLMmez)7 zLu;?sQ{?d?(_`VULcX{~ybOTzK!!uu56p@fDG#PXnI#aVe~s-eWpAkBl4W&EKev`d zA|)l^@N>%hkCk`!UZfa5mlQ|dI^_dE>;=%z1<<`@;vkTd?Gr#%!^I}YB#qNvC8L@~ z7@;%+s!qZojM`5`{gy)*;N&Wko8bKWw#}7j^gMD-8>>diu1IesI&wZ?mbx@rZ*v5{ z^)_v7JJz z7a}4_?FgSeX*-`B=4t{N#SSKp@FN2&H%MQjzv6|BjrTS-;&%1I9^R>&ZfqiL0Is*p zt#ug}8H5En_!mMdf`4TX%qb2e1CeayS@gWUCia*~O7OpNGkXjH0=>OoHXX*e4ZSWLY=}X#R^RqG?c4GraHNLf*R$LXarOyUaduJN|;V%NBNnsCZFlViL}>l zXWY&2L#%l&x&~*$D~Z667(;@;VjrNA$oMRqY>2ur_0&f5q_(zpPi>cW(tK!2`kdv$ zsXbGhER(uA{Me~u=S>Y$t@z<7>BR7q{FyJ(4)Ib1(G&IMz2Z0#k?Aj>3O_ma=Si}& zEQOsae<`wamLL;oK|HeGMSn1)(bNX{-}!HmtaVK=4B;yn3`6*0pUzO~{iCB_%Y4R8 z4TAZgUm(Uv0pI^hI5t>3TvARy6-7+?RY40Ih)F-Qut-q)3XF0G#+W$vn=ziIc_ALM zhqFkt03HXY9#wR}AB2uUf>;{E1oCWFn;me2Ae-Nh4%EALkE&qN)&1E>^2RCZK+PB05mp(ovGGHM_i;CHT9L2Er(@Y1MwRKIEl zWL>q&VzERm(NLhI$Xfsmfqw{eF&V;>Axngk8Xe=HE)oe#GMbghna>I<8+HW@hGM() z8!NloE?HED)h&TCf3e%`Q)$+!jAJc<@{*EVH!_5u+;EcteX}fv&#ZfSR@&ui>B}q0 z%Xb%MKVVG)!k5K5_9~nw=$3{p4*iehUho}&YXWZ~FM9`zyDJ!U;APiqi-?NL#0e@b z21%8j>*dyhr4)%pWE2$ik*>jkuKJaLYC}nBprm`CzdJda<8jp%2LdHu9`5Z!@#NOl zL^K@lUfI_-(p=Zs2p1OJ_VLcIFF_dWCWGjHQWqwoi@n|%TOvQ#ih$fTK0K#bx zOQF2t;yk=qy+4+W#u{S&A^sh|0pJU8oxKhr)F_100X{W8DLL03OrIx1^VV@_f}jRw zz`{$dFI~it9$P;%IbDumT-CQvq}CDlD_3M%H_2S6PD1h=EEXin5xgL+o)r1#Mq@}n zbR<*)K??x{2U9Iww4k7VDx|797OaWHo;_u8>ttOn9Gpo}zHA03@b2^|0qckT6B~>gG!uu#6K2+zmrqMCsJ@M0 z;&mrd1OP>6C5;uKbq1J&APMV2&{spqI7vpt^`+9g=uKS4On&Kaq_v(K{;Tvy(p>)> zd>bmOGNOM;zNfW#2Wuh6IpPlgBsLU4s?A-Pyk(Di=lgFE^a%#!Y2`Oq0t2ElR66*i z09B|L@BuHpdyDjfdgti-Z(!nX;Bmh~Ng%)IK_5U#D8zIE#G9~_>@rL>L;Z8lKs!RA zWC+>yJZndDX4=8tl@8dcyyv4XnCD9D@bu=0L@yf3V?;gFYvpehF;EYc`pK7PU*4D@ zAkv>~Eq%E#=eRxD4^`MuK`4j(f0>`Ti zkkJ!fBeI6>Wj{1M9(c<7RPp*^{0%%VhI@ZK`ph$S=2`xT39bl{VXqJ8vlhP|@w#WM4IU$n~kCR@Ler{%G zTa@pQcf2U}}(gfWROy2ypIgkW|ou4-7)K z-m68BOzJsHM3dSU21^~(EYMl+hlG=54XAsebOCU=UFO;IV(O}UT7LRUHs9MfX2qEppTBQu~jvw=KnOaZQIQL3&I!RAJ^Y%pugS5<;sN6nQjNL;D~|oC{x*c88?M)1RC!zaX?Ir zgh~?rM83yf>?k(qkb`3**$eszaTXnrJoL*Wjz}EceA8VP)&DS+(k#^%GaG zT6Oirz`^eBg9Gy4ypobUylS!sabivOD9-sIKaO)S-UP@H+RB2PB4C6|x=Y0+3|OS? z!2?E|el!cfDe34^=oZ?Qkj>IGz zrW>6vUd3fN6cP~+if;qq?bNH%Ofm_vHBea95tvDk{|q9Ni8q9Q2y~XKA$GN$yrZ~K zh0f8kazKGH0Tp&4_K0e?nMvmPFER1L*{Lp_j_JIPyTrQ(2j}mH$Y*Bhl6Jejy+nF? z$!wg&sHy&FMua2=C(aN|D2oM2vcM|hr)b8*g?Z{#1A&NyAV=cdk2HVe+{qQ)4c#l4 zv}@nKU6RP8?iDM#p=2#W%t>Hh0x?PfRms94p)AGeoDO9Z@{K3?L(qXqq#Kj|Mi0X6 z!wa{HD^+HpO4y&?n}@JSY*!teF0^q3Jz{9}F#fA`2AvvJJFFJ#71-n|#MbV>8W}{L zVTbIY2IRNFW@E7k<9HJ+({`JPrpC0ERYFxI{PAdDL?seRa~!TfPKdS|Hksl^N|IAR zM?v`L<)E z^)jtl`qg;*_|VYRLl=P5xZy--=?hdkfAY4fj{FJYRvdZwVXToBL1GtxL;GMT{bAbZ zN5qx}J`E~eVt_lc24-GSwb#s0E5Nu9@g-CjNz`lyeL;ML4&jbmf|5f6(MJr~6R4^| zj!bGZszQw9zi?r?DtnFbiVyWHl%art5G=*;(O`w(>TpC+AqLPzToM?QVy?=>IFR^D z|2rv$1PG`Lq3ZQ{>Cq93&eXrR=g`Q&$ZpHW?w+?uueYHLzI01-&`^`Sdt>KX0SaKjB_(znMBj_nb1Qhi$1vZ51A?#}?^MgY<;#Dq_!jSjGZAhsg`QU(X~ z^rHy<&>Qw;R6Dr&KtDv>4|lxDery@LSOdCcL7lQ%KGybS%TMk$nxr3FSapGC)!?uFW<8lwE%CTAPN}4`W~VxJh`BAa-@O6*Izy?RE@^W( z+DcejGK1E|6d6(l3B)dh(xnFIn`(%Wi!@SB34!8ix7dp)vXaCGl~a)$R8a60>G0~r z`=no%*q^YlFIq?jly)-bIR-Q7k8|&+8 zs^ZZcG*W~UGN;r=I{~YnB`_XriN$Z&1+^+@s2MFf9MO?ho&AdMou4)sGt?&EmCW&a zGvCT8ZJ+9R(3*8%x{58;c6WX*KMsdxu&mH@QHllBocic?7L@Z3K@TgG9Q8p6Q{;8HX1+7eWBca#45rhb2m^wOYg>k$I z+G(>MQJrL)QZ^D?wb_mI!I$v1a}nOGoBaQ@lPDC#LaM#&{7;^`kpgJ60f3QIOe$ki zwA?oSiut{9k?$m%wX0*Wxy=Lv?!NXtogJO*fVRXxa@2h1_*k^3QrkOvAO06FzbniVYh5VXxp|NyJMLa77f?Uk#Xm%n(=zuefJGA+;O~ zHLzOy5p+m77Lk`Gt=TKvcz;I664uIiG%jd^mHJ=!VMn_g{hrQeK+3}TR+;(e= ziieM+uFv1qEdxY>5c?s4hBdTMw$hX(g|vkhLRne@-JtZrYcbFQO(|=>79M>qT_2@T z`a(SZe&^m9dF0q6;nDZU_XRA;^30uc&pr3tv!A?M06z*@ zX6T&0rQ`gXiDt5OD&wm(LudQuXDy9YNIfU}=Fu01KmQ#3AwKj2xfrr)j#NNmQ$AX$ zI1u4%QjkZ-bZ-{h6$nyBYMTOg8e&<{loT=s+-gD-i+gTc{Ugt>E^fc(@?75=dBE&=Xi%UKQY@K1 zd3X??h&7laYbTmMms9DnK3ja`ghpmUxnqkGbOk;xU=NGQYcj@GKOsi^g;rc z!GdTXf(79neq&6A1i{ftF>vOr2bSTT%yXQ3@L-~lb=i__uKknlbN+ks4`663+gI*( zUYmT#`OKtuT$vu_(7$%J_g>_=YvoUJUfVanx_LRbi*&HUS$(^I z|Kpak=ik@AY}X*W(7&l#CxIG}z}zenfG-I|@Gm2Q!a#-uvL+&EATymBckhK?&1DnY z+Z*S2wr=`*&UZI3ms@=mM6hS}ywCHAE&0=`zUwYOJ9KvZ<(13&ULYE{xB5$M+SG>L z!_;;|zzbq6pApjWM98aB^sHmMK@ZJMlFAVh#%GKA+q1Oe*;aySXCE$kv;Z~^Os zSlsX4f7fxh`t~$7!>!&idEVsWPu=zBCA-)g8DV$}ipZ0xvI2YMd`<$~7E#1mGE%eQ zWWdIUtY)^*z9v@|Rb(2jV?zf!whFSe0Vj{Vtg$0VY~;zJ(3yfdB^DvUPw$=H?zTE0 zy{|m0{j6Kuk9?IyaE{n*XPLaqZ=XD4nX~nA|M`nZZa;E_250x*_`kUJBjnn}cggI4g7{S9~S zY}s{B!#%qv@7mvd?H8J^xv}}iYhqsjE;mR?XhrLA-zVURLx8t2@QEC8@C6G^8hnh+ zHAG3M|8%kIU4J!v!+xea-=H_Vqkjeo&qP3A1fd#d?At|(nC@@gMEZeRPp|A&o^l7w zPY1nC0KNGraFWv)>~oU+N?5~0dVoe{&;*Ifz&FI{0V4_*wdjTHb3(Z#QX39EoxXF2 z`?@6q?%&?je$(gNcP;s~`}oe*-=zx;g zjs7v*y&QKZw7U_rtJzjFhV?f`n$O#f7IL7K^sp$m<>!)5MDq%Mgc3Hw=@+uj9s!}6 z$F(pcoa%Wz{6*LKNaMq^G{3<|JZprLAfxaZ-2o9@=QG&-xyA+xWJ-aZ!X24EZ+z9#F>T`5ZP#sRG@Ii&-Th(nxO7Z8e^Kd5@# z#jWkG$E$we)Qs&N*r@eLU!Mw3ceV0dZXaw~&kg-?=mN=0;fZ}(rti=N6sHJsl#a^{ z>?s^*8>vRq{0AE$GZ&LMrp3Ev48@vvg*w2Wt`}D@89g4B0+XrA6IuG>v5_&cRx5nO zV+Ou6%M^_370=VDo^_nO{ zihSo*c6~to31TBFzkg}^D2D20%g|(&obpj#$Et+R0Vc#~oc=ifpAdJXK?s9NJj_F_= z(OS?izzvc96{ePZh{WSAXi~>Qv5$ymRs!D#V9CV?}GQqQtUnVr}Jo zs_uyw@jK>?86h_9HRvamAXkXgZij4=>c*9#keVro^Vh5hX@R`$@X`VSsO1YQ8L~;u zIDyeV9rk6jytpbXN#Xjc`ie4)RS?aKl23)Ke!@Kf#fDtAyfP9rbBZk{TL`klgvTJN zTKn4*UFGV2%Ev2^V(g#rsfpy>QD_A+1?UZ`7n(?dPLu*N zws$RkDaI}A52%YV$OgE3XX}Fy@v;TPOr$IDnFk+YkUTL6Y+^_OewId9qpCE>V)g*c zUJM#~8Z}xsz*U7H0UZCZ&tqF7HUN2oSO8!U7J6CA&7u5Pglqb#)GZ@oL3cjT1ldRN zX`0OD*PpXKH`X0LEdR zj$SLDo=>&75MO3Pj+USK=$S;UILNfHAACZ7%?Ic7F3~yL*Lc%tb7txtfB`nJfG{0ARI%HDW8-ViiF4$p(R(5Mox)U^t`$5ek4_$ zB@(LIoU8R@Dmg`|RD=J9L@MxB3pmSh3Kx~AAcuI+{Q5aBA=WCR_ z*xV>b;}gmhVs6=qi|V>HFywAuIc+9HV|!(LI=Vlaj2Am9axYyzd9K6lj7^z5*Xee| z9XtBc>$WCih0W`hO!E~tFWS&H(6=Mq(Vm_@3oq?-pa!rIQ5^3Uc_$WKmM*{x8fkIq zu<{f&EumqDK+yEVk_bCif33wHlUoq8KjV<=p`okfIvyUAn<7WLM1;5tjn9#_k4j4v zrjj3&>(0J%Zuhp{J;5!9dgZ?k=I#7iP&^Fx&Ot;-q18)fk4XzX$emMq-4>_9J21o0 zH_GMID3;#?VR6zzCrGk|-zc&mQShQGRY%=?M08;Nxa#rI@uKqwQn?Ggg~rfr%0NZ* z298*922&{kAI$5`WP-Pl>Z1Q8n)&v=wv@x+zoxC-;RvYr$mh-*y!D!PR1!(i3oA7I z^%DA~J>_&jv6<7>zMpIuZe!a+wJ^wuD6+v$~lRX`-79c=WmQ6o*6UwR> zyicn?gIf)`@TFHD+!&N5LAuq@C>&g8HoHHB4-u9d?7K(>afjiNwlCt zz+81m9yep~rE6R44pUJPy%yiq)MU5YXT+;(6k8$^o4|jG)Z&+5FoeDp`N23kKm>mf z!z&_Akb7?qvhSth?a5aDqRyeM&;CBCy|A2qR9h-JsimzN(dMa1lUk&Vd z^9t}9{9@|H8&gy!@nP1)UcvFlp&-xZCk}BlVrjvfbqD%yIeYbGGfl}^>yv%W=ge5Jdyd62YZsEZ5Fbe?#lON( z`O@sv%&g}kdH~vl$-EDbBMl0y2SL*m@o$0Z2fJ4%Z>y2-gGj2wVjm3_vSYAsoeYoa zr_{hBBcM7071ShoamY?X{JID=8&AMN=CjMluBB`<(kGB^MzXW1*J*JmlpGkT5@Ba` zwN>LI<4;Z!q(n2LeI*2jC3X^8+!{U`zh|#jMbVU?iodE~HvDonML+XDn44M1_{&)h zRaFhfAN5w_Z}b^6OdylXs{~;@DV0KC`iJK~SOxl<;)I2f7kMXP3qC+Bv@k7NkkyW8 z7n}qrwqUo~P}{`e;9X`MJst)dDx3|i+TE6YSllzcy(<-|tSl>|lJJ$0O1KNlLS^v0 z7Z>_V1Eqk|R~4!X$Hq?z@9^h(eN|PT7fE8W^eW;GKdWVk>X}B^ z8VKiwwfZA#4~z8{QM^!_u*R9stUl7%7^!Y(sMg-cXxji08M%*lqpo%##U>F>p|l_g z1~v|gB{mp*i6+gR`P6^AFu$-MIGk%_10c`}gh!F=z1(*QZz7>-a8^$(0uo^HH{1k4VLD0(XIQv`Ro z0m0n$R6cYE4;`lfZc#o|!h>+$QY1R-g&xKhhbnUwkOe)5$BCooeHY@-8@kp~@b-%I zN;)yJL$}ElhNx6;(u~k;b2MW1TEi&Fgj{3wgGy#)aR20?fdjGcWEol?kC;GHmiCgi7m=z@rP(-%O z^jk42+>8m`_CCU~izu8M|ByMo3X(NefgVFzA{l64mEci~G7=p{h2P;I#wG-HhXNsQ zHwE6wtA^6*2RbvCf5DF{%Dbl&Y3O~FTY=CFk!1wu5R!C9gf1XAmuK7;@WghJgv@`8)tZ zCNK2xsw90O7$8DQ=`!}lvhLaHi?h>maPSZ8C+ZZeL)LKMOs9-gCHoC2xuqD3)z9u; zhSAh1>?ebNfSQb63m}_aTw(S}s91n+6hu-Y8%vNNq3=;^4MNyUzB>N2V!8+Qkkdz8qyf#@ywJhk{#}r91>EI>V~#c#JWHr@G9a^ zL>Mb|>ttv*faqN;Q6}iktWB3CL&2ce9Q7uxA$gU0^a=ITA3UwT@bCY8mfgf3%KD!8 z$5ZV3r+=#My5ZTZM^pYFm8_&{jt~O*BTY_OvBN*DST@*Pkb0SQCB0i&4K9gdR)vlnhNe+&WZ=a3B;(f!DBIX20catUp!2Je?)o>yy^we zB5KovDb0gv1lr16oEIo{m`9O72>yvDgQ%VxeXDHY>eABH3(Mxdc24uzXF~x3!)}(A zp>%VKZ(<@VR1(Dgz@FjeNF4qG>tiu&z3i!=s*^HRsdlUGIi=aq&qa22zg?XoULEXy zhYHi-{qPjDwqCFQ56TKld*t(RC

B=;3!w+{B{L&f<+ckk!tlVd+w{IiDWXt7ijLRMmk zqNKR+3U3cYS1QWD;}X{#QW_E7kVXXB=BDc09JdQMk-6H6eI88s6fo0} zPYDGgaUYJQ-M2b)CAov60=(ZdK0(Ld;nEG+%qN z{bx4O$-7d>@MIhxU4|b^e&3TVx#N-er^!Hc(!$1&l|{(U%IuStSM#K_wjl^VvMrtF z*@45uz&lM80{R(M786M&A*7TfLW#J%s+$rdx|uyagsn)?`%@8<!_rj$01WqJsftFv0$}|j0J0t8|e%Zg@nfRyKGmU?oDVH>W2o5 z0HYwXmhwsO%>*k@gb@rmypA0a9{ktf=!ld}T7zg$Rpp+%f2aG4yVVbn>osxS#Q25k z6NoKh+bT9q-MIg!B5k>^Z?GD%Sl@W|*(Ka-S_(_YluQ96u46*CBn6ig18BH-Q)Ft# z2eir`nOO(pMn;Y>D!VXfWWHzhq3Y@oe*U1nvkUYO59-yA)DHcV{*J{dk*ei|@&#~v zB&DU&!PG4vP@Vvd9@#kTsj!sI;;`5p`+UraBoikknV?RFCwHHpdEGf~Z_YlD3AnYf z^pxbVS{&TC?IPng;v3wq+oNaewXQ{$WNUSzHd>%% zTrb9NOA70LU%6u5*E8twuc(;l=$U>aO3Yci;BBPnK zCaM9*s9QQXlQ_XG;1vk234(fA6uNRU{N&tKd9N<%QJ;(3Dgvt>l3#n~8T1%M$~#;^ zpLmfHBV|&Cv#u%_Kg;OH9)-EMTK${;;T`S6DT-YTbDt1m#lU#rSmrt$85cAq4trQn ztbziUh!1rS4c-kNHu%p>fK8A5C=nnDU5b8?l?dL}~SVY8$3e?*O&5yi?wQ1FHT z6f)yUi;D^=J+rK|FjN#m9rXfl!Px1U3JEx&Mp+?id#Fs#!bR7NEwk;iY@fYl27MY- z@hNMH^5m9tQmJ#0Q!n08UTqlSe5nG9Px=jPC|NKANEDT|qJ}ICl9n#KS&(i`d9jNt zLj-%IDip1ZmLo_Vbtq98Q@~HLGbb%RtdHRM%pVNVVu!G@m`8s0ns&|KQ^9^(u}A$j zELtX$O6&w*sgo=AjF=9!`BYC76%-WVNBs}_HER_LA<;sbstoykLRl0dEgfznNw>HN zC4|Do;b35F(q$k@#)Dn}HklcsEE{t5>*H%!sCgPPUYQ9m@jCU_Em<(L=GJq=?17@0 zyVUO>LAI?wtag@hp68d>@hw;mm^tNO(^F!v31w+WsU9V*I@RZk zf_HqSpqMXP*la9jXZ#%L+Fm&VaKE4mU=o{S{>mGmy7SC$QBnM^3j2`o$D%92n?D8D$r*qi$i z3<@=Hqt*ocfaU-cvrxDU-JXmLyWv;1$*U)=nzVYdjWy7#`b+*z*3z&wEvsAYufA$; zUEPxAuk<_4)*5IG6Hw#VBLz}7YoUW6y*mx%qP1)D=AWbgrF^w*Fk22 z3yIQLP8An~d>FqM@my4B2K+GrmI?oZPhpPRi;C1q>`7OlTNOB4L3($jPB_Ib0$XThGxP)~UP2eU9I9-A)$v}?Ypf|LD<@l={>WwYzJhOSJ z`q@s{v$nLTH#sYFShFMiwi(}W+&h5#nH=}9vs3Z` za4$>@3YqIO1;$8k?DYCYqlyT%Fega_sx+{)XydWh`)_v?y4aKIq@to2`t}5$ar=S# zN-~3@GA^J|VURE^@-LYkt30c<(UyK#d~W&3IiWC(;N`ON%me|!&v6Mg^~1;=lAEq;0t{O zkrSEeXmkXRRT7N1`=E|q_DeA-pLc^45hE^cv{&Kh@Ee`=3NK_CD zu5Gsf-+d(B1N+KmoG@h)PINg-)3 z<$cSFA2NrY_g#ws8ix9=)P;^rLgbwW-?AWr!D`~(FcSjaAS@v5a2&rD-|su+#Ue&L zB!!UV>qVxo-BOBqk&+-ntKqo`qI#;;B5Dq!YM*1l2$ID+`+fJV=ikkS;dN8%8;B5bF%H;?9wZg&xQ6DA-CtUAn zB9BSIK?!#yuMUT-9@*LtB?3oXmZK77VGY-s$vigJrCq5!;3y(R!r_q5OE2WsOhyxA zJV5X=S4ZRUYzAOQ!1QDaUJi$YU%2eDH8)T6mQ~i3m)BL6d1v3;|EW)H+)`FmS5h1Z z6c^Wq-CKHY=(ypoinS~($x#pVmHP>VT+51S22jrv!37M1y2Q2#Q4wusAi1ms z$5SN0SkASuD|q-iC7eLE$+`m3@S5F*SNMrgZ69!Pav=+3v;Vr}lC@W6#i)2ltv(?XwxS;}%*NUwW3`F5q-E!lN2Rm-P z@y0aUbou(LKY#9J>X*q+i?%&{+q$K-kAOzuThfS`H(+PdRti;yc8*jD-Ttwb6c$Wb ztFpo`Fxp4N-^D@z8Z3iXEChLX#iWy=fMW^!BA@T2>iIovBcCy++~GOHNDrS9oO;4g z40rLBz=tlmfKYJSW3E~$9oS8iz-KfO^oF;v&)j(9tsMt%yiu-Bt6#qC+|OUV{&Kbn ztVEJ7#d(>B70Q#)SOEF%W1cr_B_cRK(zCUNLzgA95LJR$Lefy>nah_CKFU^_1J3om zhYt0gYxCRGdoE?yACmp=DWfi0CECT6oi(u5Qbb5JPZidJMzuX&OiI?`DJAbFKlnW zaN)B6>D(;?1AE}kl$8-^&kA&H zA?!@r*fFiYExmYFN1CGy4;>m>fJ$()!5_&11&IdrH)z{YE;2H3DEb&06^MH1{U?to zAO5xdu@k##DnqXV$xGm1*q!paQDj5$U~Od-*g<%ob_zuhR|MXtg+UV5Au(;l%~`@s zaVpFc?&vbHHltl72%Ph2@ETek7^T1jHBK0?Vt2Ev*QurKt##UKFaAY$r*~hN-o1C` zr}xg>3-{hX;2BxRXX}(;-^V6L53q9&W~ZPvG<=;rk>c1nJOQiFk|(zrn~+Tn23-lpiLLSIWmgUf^hg@0-J-ZY&1l0 zkqZN^49K}SlZm`I#gBFocsR{6Pa}E~pm7qTjc6dm7H|6f+x?r^HZ|SW#vW9!3qyB` z^0{J~4`M0q=1buNW!inYFpfdO*8qgfPAqLJ8t!RqRzkG56;+c^Fqaxfkh$4H9i1a| zCAwhJh1`)e>UCTsLKz1S9RwU;J2~_?xTIp?pbkc9iL77dFpr~k*|bT0Y12LIZmiU* zHUT_er2YF}#(Ej>n=9>o*iG^apw9s{H2{B9;ved$MK7^}%wpWZgDc5t1XASLjND~Z zNBBmyIV*Cdg_~*YtA!ktE9C;~^pE7A1gMLMOCvBihxX4^C$Jahs-I%>X3$J#>{)a+ z{##Bowj7Ya+a%9a@?l2yQNK5jOIGI5i3Mbe5JR1>A)v{`V0d=>+&-@#mBMI8Be2Pj z08ALwyD|5Ng2EK|`%0 zHuDD~po1O^wBJ4Yhd=zm=7Sj20X23JTLDtGJcP3cU9}?#b0om( z)Zc(AOCA5{|L@~4*COuoewcnlYKoh3ZIIu9a|ty}=2>BoV^}F5i6qxeZrR2x)CDdqb_rt)&pt&&?ki zy318$1xrtx7~k54puARLCt7TFXZ)8B%}ch$laRZNn1f9Em_%o4g{90g1sT4 zTR+$T{B!d;6ii7|I4huld030e1v+Y_8L3n*+(=SYX?_l(ZA~mvLQI-Bq?WEYNkG;e zh`6&hnHTKHlI=KNhN)W!niPneLDgpssMK!1p5h4uM`TvU%zwnH!!wog4m3_3AfJ zLj0H|_Vp*oHw|vqZ$K%)OEA`cr=AYs*aqs+0>lUoGbl{ZN zAIQ3X;FQ-77_Vpbr?@`kr2|CA6XtgVd3;4p!&!ghN03)ifuft#TceRZ5n2&G=+>O9{vki z8p;d8c)7wRQrL;shcPg?8M_ujQU(XcIB_nE3u_7*@Q!SXLCnY-DwM@w0*=AWI{0S< z4RI)1LJkcZ`bXByIBh9VZ#a=&RDZxBOGx7c`HZ{{x7;M(L@kbJX->JIMxa0b{Q0VB z*c`l@KNt%>1`@`ehjB@?StO;_pJ8 z5b;+dli(cW>zs##=N-~+^e_6XbeXhYx>~wU`l9q@={B@y`nvQ@>0app=^^R6(hsG_ zr6;AQq-Uk)(TC|}>2=TzNsv@B+VF$+*8fj@CzrGi{P||Otx1`@of0F)7`n&Xj^r18a&!`nu?Q)n8UbSLY&Pc(nW8;wloJ2v| zHa3IJX7gDmTgq0l)vSk|!#1$<*ad6{+s!UwpJkV^{p@OX9s45tGP{l4!M@JE$?io@ z^@rGZ1>HjNfdggu$87klf3JV1(>Q%^q;LIuE54`C^mqL`{W^Ut`d*Wb}E#x-h1E4!0^r@!)x=)w5IJNO;9w~EjF&-^L;0d(Vw^gp2Ef8yif7mR*{ zZhR3B=a=)b_UI49Z!{eZtjr}e&>Q-<{9XbAAC9ydc?1Uj|KT4LFP%9}mD;6Q(54q6 z>wCG>C7mtxO6!sTdOmzlJEc!ad!4-6wrpdRY3t z^qBN-(odwPrJqZ`kbWh-D*Ycx@+Oe&a+*Kc2OfyjtKep<;m2(FOy3)S58`+Fq3`Hj zzfZr0z60g+??+y%|E~Xi!(yxU{UM5)cVZ7;mfA0^_4o1-*zbGls>D7L7VG{)$aD1eY3nTx5Zf6>LS8 z`pg{5$%u+s!t66@`r^leX{^2*rwLOjPtt>BAI^h)fDP7vDiZ|lLPkU$rB^P+S) zTv1sKRZx@~Zean9W?jsRpJN=7EGX2k^VrKQ2v{>cABKZr>M4c94l8F_E=Y>3hWHa= z*u}!3Wi_JU5K}|W1w_D6^c%XTc?BG!(vder(GvnGK}5cVvnXjhE3tHJ>i}w|p0_i# zK4t!67I<-1GIP^ZAPCo3EN$nuNwy44QAQATJQ|O{>?zPG5SZ=rUxd<9bK}>5NqY3hgP)7 z2%>{SG9O=NxOP2 z-8ywG{#-cq$C-iMk%HlCBlGc)`dWpCsx8%?k+rzxK-b(u`C?jMiryS0 zmR2;$sf|{Q4~;i6jnizBlTDOkF_C%6u0*0M+0qqHbY&4h7DH*nCAcu&)q+=$}v#RV_!E-5R+?3PH1atJ9&zf;5{bbNb`;>*+2`=7{t@yOaGVJfguvD>%CTmH~Ip^dSvzfEmEcJ)8)kj-B z&80sqf3&pOgAb3E|FA59XGl^jTzfYG1!I|xDfwJpg{ubd2GGOTYgR5g4-{h>IXrL3 zLIKcv2D_fpO&RQZ>Np<`+3JAc0O|=m@sS;9lYrm=t3OIMK!7lO!x@14cq1T^Vemr=CwFGz4av0Jn+d)Mtm25{J{L?z;g}h`TV54YPtc5bLjH&$ zdC7>6fh3a{l2ZD!Mzlx>B@$^z+@c5XwC>~M(RjeTRyn`~iqR?u2-q@6H!h<^s!!Fz z9S4UljR#LD*paBGCF^A^3X;-T*m@4`7so#u|G@N|LfymqMc>EJS-( z-i$l>HAr{nPt+L+X0mGVc6nVBOfIOXV}Qv_K`%5{a%$=hO>#9;D+GAx0VIjg05TFn z+XTQl_Ypd_Bj4dj&?CWGg=0kAvvIE3Sc%zBAC$&?8j<~1OL`rZ)MmQ!Oz2s z@JQWhf=9B>JmE#fe9*;~Pf2~|Ep;-UpytriI3E*pqo+aQ+F%(pF57to@JlG0i9??E95%T)wed@c+b69=xF!QiG`}$7&On#wn@Fsb4-yka9 z5e)1Jz(BE9lTrz^IEAo`a7yes=q0FWg|IjZ?^AjZBBgZdF=xbXa1W|p+l1c(j}i}L zYt(DmOZ;)_R%K$}iH+K$qyyS?jgK->l33nNyjw2o?%;c4S#0f5O^EhC+{PS4fORvPT_-^)^bGUNHbC?9u)$27PF(p z9|g1u4D2EK4G)X(NBY_JK6TvT zzGHn##fi@h@JI1&0^|)p2VBzxI~O_~A;SRAp;L#Fo%wT6rfGD7Nb(hm;58mN(8so` z@Ae%&rd)pFjlKasFM19U9-c$u;%QXCWi%pwfF$+BK6R`4o#VOmgH%qwjWmc!W$a3= z;32?Q%D5z6Hti4!4dD=C-L+GFRdl$R&gDKD5uRsf&Ni+<(UUD+#^ zixpEi;%L3lC)&8l4)^u-9nRWkv~YZ?S^JIed2QOX=b_Wmv4r#oE4mAq5g;z3*Oo;# zftFD5k;44UJ*WU_?mWe|C-g85ox-<0p$Ti-hfObVg`G$s0UEyX6|oyR{xv|rp%o1f z3q`5}5Cr^gFw~!`33MbJ}eHOJHc5|)dQVluqQZEJvX`_GY58bCfiL5LqXnIVmt_r@fswt$LBuK;A(S^`Kv8ZB0&>>8bxDWR z6~ISQvOej7WAeUZ`gFCaUXOwJ=?G~%d#0rOQ22kwNiC*1aE#r_$2jpbeF%g#*rkTl zI7qLQuR!%rX&*uM!kZx}Eo+8!#$dI*7|+ue<0FF3?xs!;ePF0*rv-fI1`L-5IdQALv>by_O$*K7fm@prirmT&PNsGa`tfa{myj~cNL>XBC5_B*`8A5)6kVfUAWE5h93?;fH zJ58Eu#w9eWKc`7(e91{VyH+f_CYx;r54%ZUddOvV3CSp8GhzhFO28SMSvh@kXW@qe zJ#|9xXvBbFA&KcLXBd}Do7`dwvjfSRWHE)TC;9-i&bpuPn`H z9#nvO2{3Xy0;m6*jLnZ2EWekP{;w#jgg+wcFQnQvD=3JjP;@EoHCx1 z$P;8qOF?7^rGYrm>D|V*58tLCk7{a>d=HsXn1aAiN3C>6&!zt$mJ)4YpjclFvS%Rx zZ{rY%up`tWpzh?Hy!ZzYnA7So+ac-^k)1}7IGyOo^-n+S^}fN^`tUe#b0Qu3hbIpV zO$8BtlM~^;s9GH!4w*9ZBOX04AiwbP%j)yPKeTU8cl~_8BX%fX2t|tEws;16&8aw- zr?4~W9hkG3QNs7u&-^)~ea`b@i-rP%d2J5IHm zSqi$%8-kAcxnPx|DWv`gXY8;9LH0>5LJUh=nyer2<0Qaj`6-}n2zoL$SazCdRX8CPr?ZtL2vI)QAo0Fd_-+LD1(~J$+63A#r)jBVTQpniYq;0TC{{nl7lD?9vNIv9E~t%%g`j9@ZmYw;sH8Q z7)5jgN=Qy2>4(k{WM9KFHKv>b!T?e@v2k4j(s@ji4zut>{FI=82KOzl)!cBnpGzoDxR{#so5W=I%)&bF&r(&PIklvSD{{bz+1> z>z2U14K&D&X4%LlKF+tv2olr<+c1#ArTJsWba|du)SznIiR3`A6oV3(-TVRrhpM;_ z9nEzzdB)!3ll$j{!{;7Y3fA_<+|5(^mff-eC2Dm&VR%$sPv`;`ST8PMRMgZsDw2P& zQz)Lmdwl7a*N4NiH%+EdH{7zUZ_4JmG%AFW6k7w7b69B*3dcrEG7Kg6a@fVFE%Y9TZ}O(uVV1)5XfqgJRDHS8W0RGfJfFU$@t1h~m|e&S5XBj=|X!?S=~GWbGTo^VKcyXHhe&6(T} z00Em{o{%1V;ZO~~9|-CI3iG&-{qdB5?T6Hfhp;aAhtZA?t!8VKz2GMwO9?oRQP}sW z7&(-Hr&Q`90ksvqu~shwwb2ObE6cYR(m!V91I%_%Vyy1hBI4N z;kJXpya4OAfd5PlD#L0wnVtv^B6E&|Q=|sziU5{F+@_)KbZ&$Esoy5l4pFlEWCo6t zUTB(zlU=B<0kUIwNRWkKPU3hW0B_TXi^TDNts=mQkQ1T_gg6z1_`j(L5be^xQ5AvH zTt8hApoJhsAO%H$NT1ZGPf`)kFoltiLlIc>FHi&oHsB9kqTa9evqkE6)IPRYeLyg6 zeiVGP9DBS^R|L*T`sOFTm-J9#2xQ?CmI2y9T*Qo?wk{#$9X~f1Vry_~p}wmy6lV&U zj&_n!ZoCW|H92zdF~byuSjI=8F-Wt?99v=td~tA=42`aQxE{#F_xb zsgU@IC<9~2ej_ZX93H{;Pg@}nBXhPPyaDo~TqWSfO1@ras1k6wnoGYl^O445p%j39 zp&Sw%BUG{p20<=MLJ&j93sokgN-?yABP24&d|aN?#8k~hO@eBcTEuNAx>9fk5->19 zYJrfhh1K;F5rXx#6F3G5eUfspKDY+9hIhctC2d_u%|Z!06d?A~(v!kKh^B(wsVQLp zb0tZr1YvF?(2NA1kcKphQovPaqjm(67D@qGSA=4Upj`>>dY}ZF0-X0I3F-{a&QVEF ze+Cc^om97XYnqL~x5nw56xKw}5!Bv;G;B6&_9I?-PvQh_)M+4aldeSn1^nDKshgR-7`4ngw0Do<}z^tAICQY z_5pGc>^kH1%Q9kVriC*xFlGq_1`}guRsYA%SOKB%1Ck{liz4uMCZYyGrduxg5_|&A z*mE=IoUm+X06P-_Mzdz}*ceSBb8<@^%?@1PjQZdR*(!v5Lh?b7O-hUZA$K;90fO!% z9pg9@_B1;BGpv?#FC6rvGcUy5(0?Ey3{83sqHZX-=fr17{GxCrzFpwzgI$CqIL%iw z91?{cbdps{MA?v)j^sHS7BMyyHN+J*jf43ptczq5nQCl8&AQSI^8+5UlHQ?u+AMTj z&_E~I9laI1JSg_Xg=Ze&a}QBgI> zX@gA!Y6-&>4*NaN2K#nL-!*CWOcCkm3|Aw`D~ zABU%CLLPq#*Vy?}J|4f&k(M!eXPp4r7C%D?SDe^1Vg@6axz28lR+2L}d5@4RKF*}a zkl?b|q^4?|;l#zr8PT3b{6t0j5w=#JL|!axxGNkCR&lCyil{pBy;E@`Y#qGO&LKf# z^o_%}yKd#i2GxXGzV*dc<&g{ImgoGX&*1e3D-gzH0wAl@;ApOYqu}M^4So#B;?E;S zz@L+aGVuu7IGVlsWS%p+y;}GMhIJ#F4&OS&cqn!OoP^pNQBNm+fRW$`X%q%_E;!=v zW5|t7Kp21rvJedEQ~!c09DiZH26GDgJ(!$g{uZLO?!@>#0 z3ng{;!Rr8!rF{UwY+`0)JK;AI`V~X6)Ot>!yQWlH9H`8%qy|zpi{xj1Y7`sfZPbw% zmTyI~76rx1nk>T|zA0od|Jn31ce!WVvRU&jY|+x|+Ll-P);HHrwUyiI>cyLL!^+23 zox5tz0rh?LKfkf0XHo0K$0xS(7wFdJq174StEID3-KPQ{0eIAGg4)pYm_-BwTG3&T zT33d{G?8$1xH?ibayrz0;xwj19V|~hrEj^|8?KL-*W2^aHUp(WZj?*VLP{_VE?a{s!WrsmGQXU zV%msTtTg4rD&NL%K`DybBOnM+TBcbw1RVsL@C-2&Ozc9Un8nnKTrrCY9T-H*>Zb8E z$=YP7ydYW_HD*j{jXyIPQ&ewH@129LksqB8c28+IT#BC$wf7}s z+e|;<#>Q~v`0-;Wzg;1&Yo6OUzEWI_En`dotd-Edp$a>?wk8@vZmNvbRd`Mm6Ho2s zEkj1hZlu)S>PWcKI8)m1r%e0HG%_4B!H;D+9F9G!FX_DxF&9C^QUK-AqU2<&3Ktjo zU3NyNNVbzEAO(uJlP1w91K%h|7Y~%lNZqrbbUM6EL9a(P!~YibPLo+^$tCmVU9u!5 z-qg3IZkmadTG=Mvw|v#I^r~gcu3BpO>hLG_5~bV97Rt<}PlLztiO>xW1=l<$v9Q#h znue_n8Ih-rBB=?s1(f?m?{~@vFyr*25~=@_RxA*?17o81m^@)@ys967@5s_&sfK-k zD%fPyMk!6412A|h=$@!3m*be$6L=6gHhT0Kb&F)^ID4;)rCjRc8@B9Xug{;aE@UzF zIU+usW7QgmDVD0p<6uWGVctdCCR>3pYKU$EV)!Vb`#vFU8w zz*ZC`q)>-2U&xoA|Cq)){!M#-=27%fU5KYM)z5EIqIzF$=h~H`n9NaB8X) zYfhlo9tbh6gaZotEBa9PH1g=1u{R&9YA|j8+V<^Rw#ctR0I1%=LhNO=mc4uu6sgoy zP%Z+4L@`EsE~AJb)KVt%m1Kcjg?s{pPf8Y&tMnd^6ik6CuN(#+hrt&PL=k5mSD5e3 zABAI8kG=Wz?GtwF$bj%8_Di*a9R&mppy@hZ&6Jvqq0t}Z3DbT<&^>C%BXpAtWy5;b z$TnkIwjQO_;hgeCLJIaBHX_k(>_?w^O#KWCY;fn9u{y6am6jpR?wHse%`1kRTdj~J2F9Bp z1W;0kH-JEggaj7b54Fuem~4Alby0!0tUXqveQ3IG1Z|EFlmxmEgzUO4K4YYrxQ;AqYz2RlulYz3Fe!~~VZ*ivk}p2r4S4`KUw}V|s`iv`h&KrdvIz;Wl4`HuJSTfPI{o`9$nzRra zvas+*fby!eY(p!+ySNZ3p*}Hb4IawLr2u3oCO{MSt03Q%{3!?}rl>-6m*@YiDEw@u zEM#q9pnx?zecKQQAG*zP&o|PPtDXJ^z%Sukph0Sonxu16=U~56Q#vRL;O5LiJv6Nr zn-!Z12$#_*6E%`;X3GZ2>g45G`X#%=VP7fP?T#K7bJ!i7jg7L@*wolG0c9v^BBAoK zl7fIQFV}6gNDXp>8ym_Dsga5Sqk|XT;-p!GsWd+t!C9~@R{aBtNyL%mLnl$$#MNt@ zjs>$>OU&xnzN&HQTDd1)*VvFWn`;^`a$OdmYB7&*n%LN8@9}?1y~o9FcUf1>oi-b# zwkJ2u?p!dvGz5KM+@c9JkqPBRskyiFtq_;mPAO8gF=f|vLtaG~)=I{Fn#1A9FEpV^MNbDd2CZdN(XQcLIsjX>Zd`-;5wnTZT3eZ5RB=<3|ec>eo-Mo}ftA zAdKZ_>gb;DE2%#0_7!_c_7)JoPm!*!L1eDs#rKd9R!pY!;ejH3lKIQ%c z94D|4k{*TA3Dt6(HrWh)y^G$>T!}VIi}M2#>I(%*^Gk6rnqc5xRmeq~(W|LS{E$Yp z8F}1Lq93#lUc|;tSigJs`U$aLM@B#I}tD~qHgRd>b5G{FhfRaxFQZMugq~pV1cI}H*Q|sg#sc{rGGJ$YJ(KFk*N<;(Fiwi- z>`W#_#)LDO*i*FsPiJgEUca3}6UdrIA}JThW}1m#IMXB%cOO?SS8IlceH8 ze|exh$8Gc3(WXs9DP^wft7TM?6oZNcJ1H*-ay-)57^!Y(sMg-~RaJjoTUl94Kk8Zf zrx7r_QK23%L)t>q0`#+izGgPM}^=9i7ongFc{(1J7aEzO}d3uq~i+3BF_0FX$C zP%_X$Yw~$nMvZ~Jm7pa}W(SLIB~2#J^AegRyEJGA{qnt*Q7R~py?6Y$0L1el zJ74{xdJHnYx`J&vejGyD@ctrtq+($(tHQtt4T+N^I#4Otg!@%Lvb51#IhxGtXr9IbH^feed;YuXCW@DVgl`PAQh>&Tc*N2l=`| z)XmAFNs%iC^dYSwv$=`QVsmpYiv;@-T$a|K*VI653&XlQ4C~IwwSxZyz6c)iqp#}+ z%&uAwsTSrK0ZcBiGbJ_2@AFXGGDsJ+Kj5<%^{630^1K8>7HU|)>{TM(2+)H@(kL7x zpxC2c&OYM{+3c0rz{A`2GsoF3b<3k_*AMM(S@x*2*{6;}=+_nu%D{2h&MamaCnVdq zCHcXc2NQK8h_5@fGKfnGybeXNIH4&+^fJTyV1~k^TV5q76cTn8_Or=?21*%fq@#;h zt|}`nDWZk8>AYU&L^zr0T;feW!iL@-@Gps(y@z%c_9Dm1O$QHdTInvdq63INzXo=x z!t7`Sg8pUa=N4M*s4{iQzXIo|mBGy5Qx-H_Rziu0w(>x^dO1h>1_RF3&mG^Zwm-_g zso}iu;%p`*YF!sg8&Z8a3>FVGP}?VgV>(@Exu%_?P;;p&1-KRDGdBzb7Uu>DOvXdw*0lJgP`8L zlzRUUCcnp|_kN)M6m$9Ow2o;91wB_k0CN7|0k!wgAx_hW50Aibi8N07=KKd;uxCwn zF`E@dEJ&49Knz3?IGn_G!*=SI9B%k#9Co8v;N&DyOdW>!%>oN&c6V2*s;rb;{E^Di zab>l(5?cw(>gaRj#L1^g7dq=ES$6zb% zBOK-=dRVLwl|Ti$6eXC`sQaiSfN42~t9%*u5uzAIYYe0Db=CErXa*y867|xl@xG_e zLj5c?fho*Ae_&t>HW|2O7GEdv7}fx4E@os}2(2LjnfjXR60#L?E!ctGYKM4d9$0 z9jyc!KlX5%fYB5O^Bs0=(KE+hoO)LC%6^F?ngddqKWam)v6-Knn8Q?>-}CfSYx9fE z4q5rRCiyhTDI9v%(!4YsdW-W)EjaWBe>_5au!FJBNTvL_E*q>P=q?A0;GkBpw7MoS zEKK6u(}c+^(JX@{A9kt_Tt+uB#FPZ*V%ioI(!h!oUe$TITz>Mb%WawKlIz_ z@}lA?Uhm|RLF!mDd>&h2$AK>BLJ>u3-3V%f&1)Z(ECAQJnCK1Cfl-6PaR`1rMjJ0p zehB%ZFbZ4s4f2v}tusSLUpat(SjY~TJMM%T&n)yRZs`OHL@qGp?+ur-;Mja22dA2&?~xd^7BR8h!9St_=pz7_kuQt``~zNYev@Db=w>gwvIn z7rFdV9FY<`Nx5^){Eyr9)rA?pUYJzxR#aH|S6 znuGB~ST_?vYa;9&f^n0~7;F|dZjvEG{UH{fu>Pd{TW-7yP+1|Y1cVC(D^3e-LIqe} zmT(jgUS1v<^6~P$mvgFeh1&x938@%-wWN8j&# z|Grm#wS`@;M+ab%hlg%p_n*0GfD{gRkiv(V>FA+DIuQe9d!^ShM#zu^zgY>?a<(8; zQC?^=&4oz};k9DbG^3CeoQbSLRCcwjw7AGo%{A&>q90>e3L}Vv{-b`3 zJ~2=7nDBzh!kI+!9`f0F>E%G6y`wc)SgR!w;#Vjh@CDSmm6Rxj>48bZ|EC}MR^Xe*&)V$Z|ED4V{u6V{6EEt(f{*H zT!Mzo*p@cVJ4&TmVvwY(no#Zv-Mm!`EE~_oC zEez(B`bvqDV7^W`iRh34D+yqBqPDI#X;^DxtVDYE`t`eGWaT_O!dA(_xZ~pEi!!0I2fUZ*P+?rfYW?NWnO~PUe$ChT}gMo=`d?wU_gQG)pNf(qCl+zhm zRA?ko;rkmV%PbPrs%)J^pphZ;hLb-x(*8ZTTehXsga6dQ%y_((q&i*PunbNFK8-j! z9EBdI@O?SlvK_0}MelZQVzx_*!{H+Ij0)F<>!OjO%A(4$5;)HaHP2TL2n=2yO=yGr z2XWcMZZL8PaeH%;z9d;s^L7!?!UNXBJzx9z>kWiu@_Lc?>xSsf4gC4@#s? zQt}W#W3;S)oNRi40Wk#4E5%LEJWw3wX8;CW2JR@Fn9xvx8rk+f@kBB1Z-uXmyScDW zWd(tT3Ef;2%Z3&Tu^imNtXN=tF=g^RM}A@BlzEQA!bDM7pwM6C2s#puM9(xf zuWw6Y%{2AlzAfyRrIFHx@TzGuW=#8hyL$1AX$NQFo5&5*Wg2)CvEjL!&~5tv_ab%WDM{6$SWF2ec1kN4xxjUq}~gKfG+V1Rpw4kRPUH z3Re}eIuPlEIT=xp5QaqXBlrN&(@8OdMFoM9{1Ty%OCI5{i&vs?DX)s}gXJq6iTltU z#1~6U3|9vHQ)cpBw_(WsTqyZM3JzHHf4*vjx zA4k$mWe(`4BvpuQ0sC-fm*CHO9bKmII=U|%VU>e_eP8{HGDqDC>+YSnBqHsQC(2te zg5@E^I>hRH$)GRDB5l`yI7@w+&6$2J+de_1YTMJLJ~>~Wgso|L$YH{j$teB{CWF?X zHG0vc2fsb}+Yj>B^@h*5uUuL!x5zt3zptz1moH9!@hE>itK}#@|B}Drz9{M?Pe66= z;pZizcv=!ixHTHR_wdUN^)Da3_vMBL6nLHcn_thN*Wb_v0~0w5qM#K4D5cWZQx4ct z1O% zavzM^7oXzBu2h-ViwGZdyP(rR7!h)F03Su*yK$PaXxJKtofygzya!e*0%GG77i$fM z@fViJd!TyG)AM>RGP_I#&hdMriRpm_I~RU#&HTPP$!DV7eW6|IB!NmiTFYUBEeW|7y7b}qOi zO^DRN$>*>;`{A*-*t#Ty$Mm|H#b#Mt8Iq*-X{}RQn#V;WRiTBI3o6Qr3WDekfi2<= zkqH3h6d>$#Qw~Y|Q5+5=>!S&d_5q%UWSn9q`0r7gJ)-YO`VEAs+6A2|L0C;G5-(hp zcp^T@VyY?$RhX@FCT_dLU#2Jl|E1w;f+0mI3|=#snj=piS5+8kG|7bpE9zo(9kqp1 zJEpUmP+@pn-HOIo!~A;m59@5KE~&BG>dI;-J|6V>3STeu`GSLQPHxICF7W5(D-QFx zimIlfcs&YD_@JVi>qFJeCD`UB=s|s80Z}PIF(qgt4E+=IX0<3*usKvaHCrIjAPcS+ zn{e7fNCZ4)U79K_s;yztgvOdgZKArWyfhfd^?4m;2rrrxH zp(M2}gurBln8AOM78OHG{;1n1s?XA*-Gs0#sZCmhV5(>}lN#!(W6@Y8f4@hx4iBv8Ihg5kCTh+;-UA%@ziI6oSrHC?J4DIv1p=^upUZ&Ah01 z{)0X&X3a^LL&Lv#wChvww9?41N@s>1aK4s zve-MC<8^lDg)3v7T}qGK5RElXHJeMyFYIV{*gMCwK&-;<+H=;Fy6HAcI6SAW-Da(< zy!HRG_9cLE7uEmY`Of#dSF*W}=4|eyO`7cW-A&T8&E51)Z(8WFP0}gAZR(t zC7v7tMMM-)JUB$WK|xTt6a_>%R0ISOMMPAfoB!v{%x*Smdf@M0$bRpcH*em&dGoGW zzqF*PwyMnUNOlC4S2cFo^~9C+%QvrXD=e+4D6X|-yLT;W>_FEQxA<3|&NkXxt) z?P&H_)RXpYfi|RXMNgzc3S6Xp<4#*|`-(dUOaoJ4h0)?z zJ=8SVbxqe`lREh7HZ@$cX^&@P!!;WRHZBQV5LmJ#kXKxscLDtbmS9qg$8;?O&jG@9 z^Y(d|m)OcgJ8@x{m5D2X(Qt4j;Ld;|+yT+sVe6j-&m{s)AE$!R+jo#ud`Giy(bAX{iO7<42wS1+juW)%i=OQ62a4W0-!TiNyoPe;yYuDIe} zc$yY~TGp^p{X8M|RFFcdBnQqjNmvEyE3w6k)8KY2cd!@%D*_Mbr&DI%fpfc5LRL5` z3Jai;N{ht?(mES%$524Q6FJ>a6ERT*9Fl3Q(ugbt!>y!~3%tG9`pD7iy`-T#6$;rT zyKi+vsMJU{omplrLjG*{((wz)%(+SA&{>e|XJB03R*6nJX+2H?ve*aZl zuNvZCdw&BkG4;g<%&d>H$kCoOh%C2hYtvo$16E;0!$utV1vLAybXW*zP84~#Q|L&c z#Gxrltc>l>JV03*BIy)PmHhsm+ugU9Z7suZ&yc>q`;}L^k6sSQyMU|;^kJb^r6FXr zC@&W(Em#d{Nesao!%}cNk?aeVh-6=t<#VzUU0NY4q#f9>stbkem1@b06|F59yQI*d z%1+Xu7bOOT8G@CsTA7fzJau4xLSNUi!52Qj4=>a^b+D5{j#>Xk_d z$YAIUHLfrpuzyz7+RGhFs^--?%I!;zK0Usz4$K(FB!|)2Iliq15iq)LcbJ{*fuuP` zCC8RgIlR(HXElv=uhcb)A8b|pyU4=K_T>cyD_7*O?;NdQ4`sJ6%g2scGNRWqX?<7bPwWE!>si zOKCqnuykKjFPoFtRUcZG`0gvKCt6y@*PIMx`$^YRS6QvqFSw4oV0syg&NrIiIr@7@yI3+~IlFAd9c~cl98577A|t>! z7wP{w*a)I1u!7E}M-*>AV*TFi=4i--YhPqy)oJOA7F;+oaxb*=Vqt;eo<*fMX; zxm{i7vN_M-$usXPJ$F^ZR?FJj&;Wv1dd})q=Pm`Xb?EWU`tPwr+5&B7^R}wFxa9K@Ic3UZLi0o&}#I`-5%k>$is**4o?cp1H*f z%luVy8F9XrpQ(Nf7=1651uU!&4J+#<2r?6~s#k@e_9Pg6IIq3Vh3oCs! z1CcvfVt%E60Vy`Ax$8x9=V86Lw|P$)bGX3pVF8V6uN$6W6nhhEC+s*f<`$X;Tf!dA z%c8t!tr%OGi4Z6+!5Y6829kQ#M(#% zjc5+1-2u7YX&BDUI5;Vg$7!s|$k4Qmxf#j|L*6^-sc!6fs5#+1uNY+(Ry$LwDQ3sg z2++`EU1nY5>nd^B8#nn@Y*^4`cLWw}U{^UKPg`uh^VOt>?GGmrbF5zB^RB3FSmgCC zI(mI0Thq9yZj*waxIMw2qjfaHg%d&Z28MmC9pvjO+A+gLT!5XEA>55(0F(EL;Ox@@ z#x23ij|KH3G4>q~;ZDi5C4T3{@cXpn+(Fp0pt~ovAf);cOg4t$IBN=G%tr$AWUC{G zX=5kE5TjeE5D+UD`x-7)A3o*Jp;$fkODJMvm^x0qP%q@i_c55_R1e3d!s!Sjn#IH- zw5zlBu;2Aq%J(-ssee4Bxol?t?rc5%uAjPk{;2xbtMFGyuETS(b>U`?PDZrOp()_u zm`6y1X%HSe@ZiBljIj@Od`~Y|a9i4S&8|9d`#h+KNW3J^GB1rPQdh)d-$8Wh0982P zdx-ESa|@X}DZJk_pr!E1Z{mp?U3S8c&~=#@p0w7kswgSSurjR}tskfB}Je}>Q|D78AHdj7mp zieH1{g5pKTYc7f3WD~MM=R)&3S_rzGweyEvU(PFCQtr34y3c5CYz{3r{p-h4!Q#`C z%JTg4%a$y+>Z&`k7c_x`P8spCV5h0jYAGtGsshUHlW$d>pNG+=w#=Swt7=v(2V~Y2>m?-MJO*1B)^uZ~fZoYT7f+ zRL36iW7qmKvg@*5eKo6Yv2E#D9U)KTGps+`pVu+c3AqbNo%G%4tOO{ocQl_-RFK9I z?YWX9Ehnrxq)Ws9!fYc1E-XuRM4+JGxPfVeEVGzKNPAB+H+HyyqP9G-d~PAJNfzlx*!F4jM!$7h8E%@XNnP8l=H!I*l>Ke>7%+}x_Mnoc=e*Yzw9xUi$5J9+imYkOAUT<7lO?zlF6 zOfLyM$Xr~rox1Mz<=0R~ls zF{rttcy2~oVx7A#*6lNq2t|fk*%Jdr(g&J1qRS(q?9xix3_P-ww)LUy_3dl(=9D=S zd{re2OZ`=DcXh{E9hF5>I1GxVQTLLv&ir6XMcO=n#iG)A7Vr3WbArI*d-_H}I+fb4 zW-Ml$h-XSbn_*9Nks07v`cZfzLjfGPZ8p~yIH3!RtIGz5H+Vypl@#T{f{Z3tx+_ni z$=S!O1!p!j`#3AXna!NG0z~sHWmK^helui)T@1I*QBL(m0`Lw1+VPL^dXJuodo zvw?*<4GYA3xG+7MrhN+ru^9%**v+*GE=?m-a>-nn_S~*uf(2$R_6l^xXVJRCXeb)tiQPho@FSi3#W@hcnUP6y_+Qj*Z0+xS8gn99S+2l}N<+wcEw`wTEF%aN5@v7cs4Q5o}7< zJTS4MmBlM4G$N*sn9JrSpJ+)=;#!hUcFt4oMYUG%cChDZ1)Yb9jNCXN6E|$b zNW~4SeN7pXZNUvHL%Oofnhi>bOyszRnVm!pdu6HAHkVEl6SqJ*+_K+XD$^((*pif! z_R+28qTU0|yBC|=rb&rgAs>FGeedGMd)q&gRk!G`OZt~MY|Z`67#L6`z-!lo+1*K5 zNx*FZy=~Tg&oQCH(T(;!_os%kDY&`PzV_K?5m319D_>!!KlN1P79UH!L zvM~L-VYbSnd|}A+$(K{-q32~r2My~!1`*Sq2p(Z4ApveRo5`&PZVwJhW|WjP zN!dx+8L4)+-JJ^W^b{d%Vn-SHA*NT_X(P3C%xAFhR#;XxuJraJ?;c@uzW2TF4c<^E z%%ycVu$P~Hnt3DtdhD^MpN`ypAz4r_tT^i|cy^qwwZO{o1q|{m4LPB)wumwyJrT+t z5^qF?7HvOzm?I#{MMx+wW~`XJZZm9^@cpt^LTd_-EWI{zM&t?RXE)UVmK%?>9l5^i zhU+@6J<`HzSTI-<*;O67=7t;EjvQHf!*%V~9YOs+NBu`1Y}{m^l$`pL(a9De~u zIeCI980J?8gVpRN=8rrPS=x2v+K%gP=(-+Iw1leJjWyUh9s8OuJ%XBVSbF40+YOp? z@++wRc2u7X)}0L}v0|(g=7FTWT5oe$V=lXitr;2bhvAs(DM@;wO;7BHzLnb$DQHXU zhm~JT-K@c_YiBycMK{xsnnYNRg_06_d3dl(@84L|nA4^uv!o2*G1d-=%TfmK(rofD zg@=5mzZ7Rk{Uq*)yNH6!sA~#V>+QgA&C$;d4qiJr$j%wOXZeeRgRh7y+=yJvUWw$k zG}W=IYY6G#>L9!E(4j+-Cs_^s;#3?k0x;zWsg~Sqk;e<+B6g%&0F`2zj_pZFT6HdM z!!t9+7IP6OAokH?13&n}%RjvN(MR>myN~Yg#xE%&dnaFHZ|l#3x|TFIr7_1ca0q@F zsdvQo(3A%X)j=l$0YHOJ1iF99w5ZwPGl>9P^)E#v#RVoPdp~*N%0D}K91mT2<&~T8 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 O->Y!;IC@JP^Z5%-25>R} literal 0 HcmV?d00001 diff --git a/src/Ryujinx/Assets/Fonts/Mono/JetBrainsMonoNL-Regular.ttf b/src/Ryujinx/Assets/Fonts/Mono/JetBrainsMonoNL-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..70d2ec9e28d6e06e923629b78b8a12c12e841589 GIT binary patch literal 208576 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

M*a5~oB;oGMxw@F(#} zkSvKjLhDw@5wJB_R9I&q)KZEj!sto79q_pEWGNgfF3Rz{3q6JCuII8+F$a;FO|USk z4 z1*#@NS?6pZ;CI+1sUXi^5-7=Z+kFo7Rnt*Q8Ro`nnbjM`q~5@u$xC+}j?~pfDr##h z^jBk5wck{gl~vKVcB=7i3e0X4W(UlWl+a}W4QQZiSuJB&TAW*)o}kjmHk@0jW(|<9 z(5(S>KGe^0WdQM$X-1U6z)>FvwV-^Kg643B@@0SumFts_Y1T~7Ioivg@c4D=h{un7 zQ~qGQ4>I0$!J%d(60L6@OoP;cra?JUGO;WZHHgrN1NkVEl12(z3!t?CTJSrbNXsCT zz+lOtrF`QICuQ-gHcluhXrb}=yey@Hz%EMAk`{6vi=IPTNVexibTW47(2o1%Zvoan zjdwyPS(igP$uslQptYm-gqN5vo$DD+JEg53b0>M+I#9+=VyO1z^`R(_f}W6^QV(mc z!zk&K&E7kFSODVrke#i4NqY_Qxwe{ZKYSRbxyk)S^hia$Ug=HxppFBeOTMHT`9WorupH7&QtSZ><+CbGoRhlnQ{raiIt29av7 z6Dp10bd*BhyFz=xpwaP{*%f~=egUYHlPZ>a6Wx9v8c$i2Y@BIkV-=VLtkPy4xE`x7 zvm`n>73Jmfrj__RSOnz;>U)d2jHtXUQ9wnX8&p|C_asPO0_LA9veR0Sv;N7ahI5K6 zU`Ida@Pc8E|7%XI+g6mleCxgUZcSzvsqWewxigK8dT_v_44mKV$p9Ci^+zHAD&=8! zk(!ytQAuMajtX%X#&QlMRomu30w&r;;AMp8umZMqFeBSy^*LVxi+%6ad9QMy-YsnR zdgm0#i+ekc{6W5U9QAF|Xj0^K0euL!Pi<~uv)J66%R(}r!ewdwdF>0-pfIhw)3ojk zy9HpS3MA3mnzoAe0dr{Te$B?5Q-H|=cIG5z`+XinX(Kg??+^GErafv1kZdo3kcJu- zuzHnF1)U;q$WXapmAz2BvLJi{p5X9V2 z?rj;HB`_)H8p-Ko!yc-g#5sIHeqJswD}h>9M7EanjNmMtY!&np0>#EzQ=FGqC3b~g zAK3C=OzZ{qW+$}!zTf^HlivHj_7lwIzvuPL+bj4~#r+`X5AN4C?BCC6`oMuH7%qe; z{I$LZT(Cv8yO>=?v56ft4-f-U1P&*$-LRduN=`StDo%%4EXd$uK|x}UezU;B$=yAe zD2EUZxgt_lG^@DEUT80bK^%>#GH~+g(uKjgNfz``(nfkyJ2jvR{;gX<^fh+f6if8= zb?w~Qv$?Hd)$FIPs_t_3@A zs1A6?gwR12Pc9;P8DtKQ*IyS-O35!OvyOaIsXFq~6ojFANftcg)Lo1Yk)^Pw!Ox&@ zG}#o%wi%q0WJ|n2xa7wkP7^Sif?$r*p)Y#s*lVID)4T#-OB~(&s2m^l4c6Jr&n?Vp zDasjs>dEyv1y-l5{9KoOYUKnDJ+&x1Nr&F@>>?Wuz40GS(H~ z0V6o56)dfxNlXfpIQMj6GEFo~VabP`>I0WC%)>bQ{`#usdi7QI-pfuO1hb4^i=DX` z=iRmA=OWJM_w(icf;nDqd*L{>n3 zif=RY-O}ZUkS_{tRW&xqi>~zit+=u}aoE3zlM+h07sZ^#trQ1zbp5mo` z9FWUY++@urQGoI1a65$^5BV{YMDC;U$G^$-!PC*XQG+J#g$@GZ^gtA%(z7s2T!opD za~^ehi9iQAfo^~;fGzi-hi`svc8RY9_j%Dv7KL|$pp7QjK6RZt91O%sBNrY?sO6`h zvth&b;T7}xab#cEHg|4Y+uY8Ba_;ciXAgg6c>BDTo%{dZo!Fh|#*cYDQ21%lN4fnG zfgb4iCByoMo&bkz|z6et_i`xc)sizy+x25AY9>Lcu!I@>)=zl@|@1#^aWqO~$zFKsFQwVUn{` z0-B3deAwM|lOy2;E&UYI z)s26=S)1MXK_6y~r@6MfzF(kpqRY)ngOGBk4c^1oJ7`6~!D%MN4?5N;GWZI!}s4&{*o2`dr z%hZu44C*Gm0P0OsJc!o7Q8v|H=t%j1r?C`%-EjUgsS9SfAm$#Hu1mmx3P1|;WL2it z*It~#jQ|TV6JU_Cvct|)8SNi;;1ssfra&+rspPO$QR1OxBgAvdDFq1fHtxZ(4Obp+ z!Zl;Zyh}7p3`=2zThKphnCKJw4|z9uA!FhAA^8q@=DZ|wAkfv*5v=sa{E+oLD$mK+Z< z`MVQ$LvEecSMxe1jgHCKkao@~ili!Hh@_iZP=*ShTO}EWFA?7Xn+3&pQ28#)23Rr> z-%(Ob93v7gt}3a@3uYJjiimGuz8P@n(4j(%1G5v%!W%cOwK=LGdC{g#7sbd{d0>jg zm8~Qrr}hmt*njG&{o2>wI?DWt2@s%b6$iHomyq!lc2|qAyTS>j8}DFHqDop8FmV(^ z(A~$mCAlSZCg$gvNmTghCe>9eQA%~C07(i(K8ipi6KLKhf6lO88?WOR$@XM&{O<;s zDeu%Ni2)Zk4}%ARDJ+XHS4SiHW%*^r zg>ZD`>0YW#5Ewi(I#+_L20%`_tjKx8{Zw)KkYqdEGetlPZ`CmOQeDk|UQbvi4;6W; zuK%9!PVt{4g%Gyoaf#GNO6uV!ik^)R(lbHZlp?K#U0Raq6exx-WNl(q5w>xdL0}@MBy@36#2QB!#Bgv2t73z(ksIsr z0$V*|M_{WjEy=`*P+e6~UQ%CLpP%c`_7rCp!*>NI4N;91_&2B?KHXR`_wVXQCD|QY zT3~1t9$HF zhz$>&Y=DCI@^b@)IfX*gmOR3*)>MWTqP#4<4<@Z}q{)Xq9llsgGkFo`EcE>)D-_E5 zAOAw_Z;j6GP)$wE?EE@;UPZTc%J_}we5Ml|0Vy4`=TgV+<@}hlh2Ds@w7P3YBd`D`hk~f zYhF6=^_OaEQDJrQZ-29he*P9aDHGhH9nzkPsE{IQL*jH8N#tDg4<&1@MZPivXAP#y zxZDkW*mkMQ2_9&tp2UdKfP>WLaBxe%V_1R!jJ=Pb8FY;xrY&^)tW1nfh5Fn$bXYX3 zhGD)X9R?N&wF%X10thQrgW+g6z&Z*aDCoIy$&LH$*|MB%FWc#zKd^quxtH{xIl#Wq z)x`$12cPlHa=T~wP8t6P8@TGKuiSU-wE(4d;)q<2X^?fi1ijWq6QD7aIA1C`GgLI- z9g|dhhHB?ZgKj3*Eom-z|11c7!SUpDWWdL5v)KpXXwI2%NJ=F?C%u)xF`o zuL3NYba(CJO`Y*jG|_zRW&Zp;|K-;Ni;9BRut4Gz>wKlIJTFpRn76jEZAoX|+MGj&_UhuQ<{t)qzPwlSe7@lL8|{rb1-bsL9K~skMQU4` zYS6RUo9UOGw&sdPaOLL|Es!Ap`)K#`rwSegs1p`?gbm)k(sMEpOt(o7_>8HzBO}c)90ucxVP|_3@ zws6&@3$MF$$F9{&7O&|^RJA(fRmq`|vrgL{u9!8e0^bLFcdcbBuimq3hxR}H>(=(3 zzhrr7Vb7|e^S5Z<7&)(x)iqXMP*dMfbAB~Sut<3mAIO_AyK)3Q>`6E(L&XIa)lO}> z^C58}O%)BC6*h)VgeqAutXnMd2FRCUnj2u30|6|9$fDw)=f6n(1rSt^bsNRN+1m7* z5X2;PO8p2us)*3x6lthvC@m=}%z-V$n<*g{UQZJrE_ctJ2p zHhY;3#ZF~;uH2uI0mps&db>cVgAntyrz(LH1v#FHJ5x?Z^)0 zi$@UNB`upcQ_jFD%#jw8OCX0@|3arn$cY8ESj5@e7*st(qCvBlQLRjtHi68P4e(#i zv-UHoDHbg+3zZZ)Y|xG8uy(tkua+jFAbn%;Akm|vO-%bs72%^{Uk(Xb*oypb%(w2W z;o0@@IXA^lt?RCs)7(7!%r&urGu2^BEE=n8DKEXacX@YxAUb!?S7za`vi zbK4V56|>2@R4Z*qP~Pt$lZQbeTOYKIbSF-SJq>0*$Cw0Tf&&~&7ZbpQVGM-yV<(T0 z9l;84x}pRNUSw$_baYudB~tFoX42e_cIp9BS2L@;Gtya@pAC86X_vgr>jusqv`O8( zu?Kb{iT~ViK;it{W>5jr;tx7X{H;K^jnynYFOfKJ>9QS(#ExYhL$TOU z2mjeMd*Q;_v%9-O`P6$oKh)K|y<>FI?nR>=`b(^Sb=&T?RSlrT-EFJuS9LaD-rU*Q zOjn~#e5jzglbE>)Ee%qebOuMv+G_A)wlqT}W&|H6ZCLC7yEqsSC~?h*k_gqVNka=XL(b>=_tgMX1Dk~eIT0hV3U>C^0 zQdDIY_RIq4-4gq*yg=yPThTn`&+>~>RGBq#v)qltZ_;qxY~}#Zo1iK1*R7A|HfZ zCW$~u@#Kp(YCpm9$7?@DBe^*)r&P>}sWTVp7%gfvK53a$Rlz;tL658i;>2sfY1r~* zLp{YKYZonEGtjfVs=O?g(e0?6e{sv2o={}X;w1&kBh1pXYGv=L1*7>TqmimvzFC3# zki7U!UubC6;tCTU{;9MyM@e;%M^8>-2G|JzI~+g2(BUL9aj3@BZ<2?x^u<8HT42e| zMW#FF>TeJbM{k zCZsFlqQOK-RV7(Cg?QzOdZHv%lN*xjv)CH6Ep#Rg;Sq_OzG69uQxJ3$R_f#^awQN} zW3~pfe^kcfl~t{+<41-suw{9%ku5#LJJ5I)2Cn|ism*S}TY&VQga?JL@x zK=+cOqNRO#?7QO?>?gtQ#f61^eTCX0c1Cv2;q088?87Cn}Hq`@aWjYWS%mG$ElvM5Hx|mAVRHLsMKER0zPCt~0cbPKz>1`B9MDjJIF50pY@D22;pR;{!?aav`GZ0A`Z@F~ewvK7OXc`0RIK!~u9WgvOZPHYz1FBdRitbks?1qzF_ zys(f-g|&sXQKTADqzY++h^#_?EmlBr&j|k_8J)|IqmbY~6uk`F=7=}JBXQHNbs+us=LubmgmMb1HES8;A* zr}il<_y@%m4K-V}2brU=qOq1NV>HiBKF=y-T%48IQqJs7ux_}_OcQk@l!y{7QWJzD z067o{DuNbl%h)10?RM_1r-TcqeSjt$Yp9u3SXGFmvx*3aI&IRP<4>A96NHwZ5}jt8 z`%h+fH&<^?j;y>gucSEds+s0Lx4trF+jZGx4;KV-s9bEAy$Ffv_aHd*7lkQOS^{e% z`YnN$jpBYj#==oGjEG;y_FMO{7b)TRt6#;vPvBhtv-B7)6t&;dYDJL|6_$-G1;SID zj?T~%L(gk3JoZ`=cW%Xd7gfqTI zBcL+iO^_*4&!&2wM&Kb82{E3{!elvSHw~d3kDSe){siv*Gr!k(IvfMo?jqp}gHO{) zAn*j5oZ-G2Je{-<2_f*L_)$FM$^;dN)EOOuHb8v{&x2B8g=CHHbq>|O8PWe1i(?I5 z9F&{kunhS9lH@P(>&AKt>hO8pXjvyY5Gt+nJidP?%_EHGGIQ&2pmw*|1uIw9&YM@e zl6^;ek8FX=Rrkdj`>NaKHa5;3zqOqWw6CsTtwT+QD}p*tT8M~lq&35JFg6K2 z1wL}jnQ6==7w}2~&1{P`0Vqf>s7(_$A}K?Tfo;-#bb#$BJh;79s3?3d&;gSp1C0j5v*%nA~1;#N8qPV(Nt zL~#H+fzE}p(!%`Qpua9qmm;wlcLJn1GGlNnMi@&7F*G2oiBpimyz@_)UmJ1$i2QQd^tHrcS`db;Fh3G;jKl6bb-nl88Z4{`M{4FP z$wb$Zn(~$3oI11h^VWGvy~SaeHI~eu9d7s6c1Tu{{LWK#$?{tPZie*An(A;Fyxx<& zd?}}b!Gt-P;D`_l%K#-s7Z&(^SvlUEncEyIWi~ZbQK68Y9D>3eX^tWXpX>uc)V?q` zs2*H+PMAFqK4+n;!2Mb6bDwqRvn>CM3%1Q2|9i)l`M>m~xl!cyj;1EGybspry#01g z{g2}f+HPC#IXw%{=~3C{dI&Ae;LOD1GT?X^PMlg=l&v5=ZYhZ=4%pqvM1=p`BG082 znj^{6yg3ntY)DoxX)@N*0f_SdXt)(|MR25oL!0ti-3Zq(vt#VkDRu!E1xQ#y12e&x z&si6DW>_pPXUkB+;#|F8Ei%Q}k9F>>&0zzV

@zqGZ4MHtjs_g@rQqwZt&oyngXP?&+Qe%3Ts{%|IP(Myhqi(Gf84@$++u=``OqQ$ z9Vjr9)FSdL;mq+d#3Yd3o(7YPCcX_q7S)v*~uFJj&)NK;k0*ryJ=8A2gBj4)V- ziJ7_bT)D^rG7#;Vis<7xK@9jmGrfnyOgz(gF$muiKaqPlzU!s$BwSSm`HI6?$6%9( z(wz;KKM!K7!{OW^p`F}O3&AHX76Kxz3Om2UW^)Wm@Lp|%r^jJKBuOU?V0U6;eY6q4 z{$U!IYQY^VE6Pd(K3BcFenyNzc{j8KoZ~9e-gP!fM*)#-IBH9gDa#iU5`Knit=4(9 zBq%u@t$knYYbczghE|~{)b_{P>smAN-Hlycjg4J$&v)iII0iq|`AJkl`X_`rq=RH& zw(xv8$`m(ikcnztp5c@va`%ObeaQcJwq!Je;qqo^Zr%)y2XDYage5#-&)z&C(OOQ>lh?kw z{YvfJgkOsacfB&7&lFf-Z#!rB65|$fu5VNI`Zqu0z{QpHt^Wt_)+g zuC&=Awv&QZ@Ga(YRZ2$Zz+OPIc{|j8sgy6rZ@DLSQ(_~zbx?)~bmp?VGO#Lkhs*Au z)qwed$1jogO$Qg^AYd4BQb4&28&p;K236sTg--;o*mOs1xi`DKEIaI>*sbZbZ4#qk zGJxB$;$#-8l+^J-sN>CC9WQNlpYgStz6Ovc8##f+lVi}-=hpfQNmDP4wt1SC)ztQn ze|X%bBt6VHPhdI&ZWwwFBG?r&nxc-S&KEc6M#g_K3HINS+k_@J;%kg|~2lRB&GWS=@uj)!2- zjHb(2J?HjXFBUTEz-cl|YqGv`^y4_oJsbbeuqh&Au5?wfP!gOIUq?mlat z_SQSL#O6fe%!KVvpi^kNh&^l|2NKmm0F#5g$2M(OWgM3fD5H z26f84_p)`r`jvK9jCt?63s*q_K$uAm4p%pP9tBjN2z3ONCA5@SRFPGV7(iGKGnnc^ zCcR2WFyam3f*pZ`2VO8zx)7_bAdLfC6pI&PEJU$`ep?iQEh>7^s|Yud z>$Fp~U$7>&zXq`E+p}QLt&8@4dEqU4x>yZsZLQHZR>ybm-Me7Vp5DD*?*8%~JpU;? ze|*~KJC1rj4Bz_m$va8j1%MHuFc%$$S=Ftr)oed&(te@!F4}X;!Y}V#bSt3fidVCJ zHE7I?uF1W7@Z`O{d-g2YD>)|a#pCbC<1@iOgNT3$LDa4Sxi?B9i478Ss#Y|9W6EZD z7!^6oBfD&}YjdVM0|_G8UR(BN_--Zd8VOM^>wOHrB$?F6os8A9xTTCtz@;X$2*<9& z2Iro~4?L#kA#fRHh>;6YoE&y*pec-ZC^o}C;h!RR%U|EoS}k`2zcu5xkB;6lI?6sZ z`t2pZ8y$U%|Ar5=tJqswepg35yQzkdzM;C6?Hd~#(_UaT^b>FS3w8kbK5V!Y{*ys< zgAm=WBI_GeiZe3R@s4b|its0*2uaG5XooQ@q=3o#M3*kM^^rUN}T@llj9dA z@sq4$BNM-aL+MpeS7)Llo7opr(BPFQ_Q9LaQso&u4weL*zGzwoyBV+NCaDMrLzIgC zmBmYL0uwM7aL*M#g_=}~o811TFMVk>zQ1(aVDi%6|DGh85oEx> zC;uIf?@n~#VXz1iL4$o#04gLO_#h<9W~yg|R<3xla`_zT<2asjBmf~m$o6_&RQ3}9 zgySNnk;6a+xu%xwU%Ks?$8RGb014~i4+jhc2-tumErPdbFOcnlsj3_Sj>FRS#95il zO|y5itsXy^LY52cK~lDQGi2Fk4=6~hu_5?Ibvo5Syr|9%**UUPbuMpgASckN>(;J5 zB{{Hcac}p6#Ju*|@s@_+#^Jh}%8JtB{PKeGfG;yID-S1RD2PLx8NoV6yBvM!yxqEcLgU0w9Exp%ZjF4r&r`}uMGhTj=CiocxN-Q3)L zKKM#!>0G50lQdW5>d{gpb(1Qg*Yn!nmU}Z?`g0F&S z$jeYo(UlVQWDs9S`iI?gn3p; zrp?Ic+Ra0)zm8KgaAJMe_P(^B->!VFaOV=SN8Vp z&d$!x&d$!v78GPciHs>7lR8TZWUCrq>`Y2yP>*3E_k}SjR!Aj60d_5++{IbXFo_~? zhFT(r9wZDTz|c>bU7w4M54ABM($keWw$%TNbQ}W>cg}GmlvYoB?4h`Vf+CCwX-zP6 zM?;AlzD3{6lx>Xj8wYLq)aFH1FlF;Xf_$E~=YvIB66j*9slHwT?VkyRNm>F7EeAh0 z1!FqsgM!o?R&8K}XV{@&lq$y*;J&T5*07~=5L8m#D2?RaR}r+Nu}*7!(-4qgkq;3U zk&Ix@bZ&}9QCs0l8~pO|Wn+qqq$!SpD)SIfK}z*QX<*M*3a_aUk_jzGH^QhP*m$&5 zjU5E(_SFmSzki0~%((yl1*_#~0KlE}DM%p^%c-9Qx+4hd1SwnEZBw-qN29Q}Vsxdn znw~fzHuaL&w$C9TzGaGcql|z!^0?7+l}?N@WQ-wWPALBymnj z<=cUEJ&g@L(~Hsy@&mDF#uJ;mwfkLo1s6d)?;R+Rb%!(b==3bp{8SvQZLj|GsHX``o$hbM&>f zvShz(J}$}LGR><0BpVsogjC>VXMGy*p9ttNJ(_t;8lHY%#aMb8eJXR9~2f$Sp@Heh5Kx=cut1j17L_P_s%y zBuP=Yr{&T~?XzZ)Kw$FpaiY3<)>#+KE}9(ZKed1DEL;MUi)t@Ct9n+o7&m<~%zvcX zv=XztG@N1(>v8ZLSRE$)CDMjbIoE;h9TW|5Fvx^0cPiinkwLLf7$I*ZsM#x&@=W3< zX1`GGJ`7qMH_DAxtcIX)23vslGrrk-u;sCU7l!oRhc^R|c{qdP(Z!Y(c7uWH>E&?E zDsCLzV2q7(3W{KEtazE4e1~nOewHQf%;6iXM`~X@WXJWuv7fT0m4P(hQ=R}Lv4-?i zq*mVz7E>{{m82Dj&4hI8f+B*Z!>J<;A|RZYAP&Nb34-a$X|OO3!oql(H@T`}{J1hX z0b$r8I0k%E~9pN}sC4zo&9@%ATCC z(3|1T^XAVltEeceC>)VnP>?$!r=TEf8ex@{6DN?Y>C+SM6-+FstV|r3M#?=}Gt-&v zz)+>~7lk>wa7D~1L>sCwZ&lM55#27LG;C-id{_5M4Tv;sh0p<22O5k0cARntlSL^B zq^E6#HBeTT4gI!lXF>N0_2cpxGr*}LGhizfavim%z!XwaJW?6JPAAjMp8FB&pOomT z-Ht~6@Cfu6V^2Gc)Zy>^PwwQzp1P;&@ITsCg$=p+s_}EI1yT)#AJ6TAbOv2{>gr)`qX>WWn6&#jHj2+x3h?yQ;rOH^r1zLfHlmKsNb zqG|WnG&k3rcDgj#IO9`svxh97KdX9P|98iZDjH`-&U7X#myo2 z-FV92skIv6>$9W&L|5-~4IM-W)5xc7cS)2jUewamSYJ1LM(vE6;UnoYv)oVF6FU<0 zl^=S$>{F3OK>V&7Cn)msEJg1VpT+7x+u4a5Q0FCDyf@-PZ0c+Pk>`et@KHe z$~*+wk{&5#q%2Juy;Y)G-Ar3?!{90e8vn-B|N>9d$Q%!UDe6!6Wb z%kVhb8eKGD#AG`|YJ8Ylw@9%E(N(3U2Ftfdg-7YXLNiid5hG}&R7R_tx>y3K73m;ttV)2FC0(g3Ds6QG8obu@3^bC=aF7{&Wogpo2=&;#5 zW&NuyYNS(2uzCjEa!X;wG-7UH9ro1HAq~SN#ZbwxW$$O1*&j@R71{8T_q<@ z`DEb+D3A`4a#toBdVR#q1PTyZ0m~m~aiB^f@^Cq3!y6J^BBP%(gysbaA#!%k$Q&N@z_F2ve*w?p;0 zL;8O#zP%cI^`$_QALU!R0!!=K%?N3TMgaax74W|B6{}|ew1$iZjnTx^oK+A{IHB-8wP@{Y`C2> z?0RuFVLX&joWn;FB*6Gy*-k*HdR16`JglF5bT=@}ITiS#9lyvFI1dlszTv})tJ zEgP5B&pRqOE#9*H_@(Te8?!1C54AtN@e2q`fG|}gbJ~1oN^Ms8$di_?+L8U8+p;>> z&uv*yGqWjs{K&1X%eG~qm1(dRC#sduO=7c+!?A~P8UGFq^FZdZk;Xw1s7I?iKxbAI zEpA*2uRSqWNX8Sk!V^Z0t%gS+985fT7Co3y$8{?3tDyzk2_z_WbADpI-Mx#D!y->37X*nLXI3 z8*a*rEp+B5o4(@2yxT4E(SzvDm(kFAIegGiMiHiAVwQAnLAlVBGh1KglTDNAW0 z)~I|gmrbm<>fIokXlJNc=%3caq1`>azZ2g(xV1}{`>maih)AiOK50p%Y5TEj4{CdA zhu&~g<}eZ%S(HS?^6fwbJMb(x$!2g82d)5RVO;x?mhRSs9FE3WAfIBqNh? zhiaDQXXi1P2W+CbRPmI#bs?8n_4DeQ=QiUwjya(@SewqAI$3)EO223svdnUbQ{Z!% z2(;#h;WmoO;s2Y$eX4x!Q{g|55nK1vKmWYXi*C8ao7WH`zbT&>KYssy^}M3*h7VK0mFC1Zf+CTZhoc(kD5lVJ{Bdj7 zELn^Jvgx?k@v-$suQ_(@vCEe(UcF@XqJ;}u8s^Wdi+Dl!W@=RiSaOa+*iq!DlHmyZ z42U}-L>`RMPe$ud6o1&8isE6I{$zX~9`gqO?7&OFf4Z68CQCh0$^@4tC%CjMY+1nc zd~l}Iwt&*P8Z+I*iE^%+IC-LSP8dGpNhi<4&UiYgl48eIP>&?;_bE-!dTh~wy?WXs zx02@$KlP2kZYM_^nOkT&c?;8(j^2rl0!$nkuttJ&m@=4_;pEXc4kAj+gxQOLkzKk9 z+?t)24RVm@JY;611nKD8d*FNy0-kne8{qA4k{7*ym#`xG>~F#KlgX zmaj1DZoqUSC0s&RR!=OD4j9tE5&>Z4&KzcQxEVs#XSOrg-l{6M9ptt12q0 zGU;oHpG=;mT?l87%&(umwh}sh)Y|}(D@MJgFjIobFm^zQ+NX!nwz7c8kzr0T;gKRR zKDh&~O(F0VBtJ|a*hOJG3rh-%Irdj0UPRilV{TJ_qtZr2@Q2+({1qatp`)XtZeJa) z@>aKRMMLDLk%q`US1-ExeB6`IWWrAu{SR59p1 zDJmt4dR!g(196jF12?|MkO|Ss)yLzt%qxRF;(JJIRtk;UrW|>MPzC0(q~sw$tXs+QhIs9A|d3Q_Q4gz01!$zrBD zxwq$6k$4j3%->>`Uy+CN4cO z8dqP^#2kEiulh30a#TwuOYpHnf*S%rsP2Xf(c$_V#Z|~6|JHSEZ{mGiWVsTiffMMY zfd??Wd_#d22?~N&EMs8RG%W1pvmj3{s_e1Qz3xYUSpQB3s+C z;YWqQ6OwL8L|VzFCB|R0dSBbB6|(YW%MMi%q&k#@;xKseOyvMTNeEHwmjsl`hTJO4 ziCu(}mMxR04bi;=eSj&)3M%wWGHYP)1fy;9U7%q>EfoQXG$m5H+{p9@nvi&M;ra!E zDN}R4;l{?W{F9~$_@gJxcis8&&#Nda zn=qlQtU@*OLNqh`|9p+c4zoskuJ>3{fr}b*rZo##_aFmNC^#3e4d?d^;gj!M zaoSm|`|Yw$$w}S4El!eMY=7U)1Q+^~rIg|$MfhEvA z{O^WRYBewdNLorIhf<`hqI~R_ii!^-GiOHRpIcfqW;6o#mZDi(2J#202fjAg35tCk zYSI;w-)z~`(ech@m*Kh}{{M{OqD@_>e%0z!_QE9}ftQ|F`W>RDL;Ye{#!I({R*~p1wCInGs6je?| zujgCUs>({}J<+jA-gW|%jW{%lSb6fagM0!S^i?ZLKjCUa5Uk)5&qWY{V{z7mapOwr z9`>e;on4VpHWOaCbrv~rA(?>45ZgZ6C_Qi?y^>65ZN>Kw54<|?0`!}oF2@L%o*sCZ zeD9dV!f~`y9=Mw*8n_%`->y8uk8x7d-1&(Ix)}X90g37~dI5P3)BNE1QLiJVSEW2A zMHu9{fu2j`43Q=tHz{u-|%I{6eKDw7YqVha# zQufmm$c>mQ(!?{#JQpHQHd539Z-8f*kcE`r40z;PP*$3F)qHgyQqDxjr-?u66rXGn zSmzZv))Q4M21h`j#esw&8!-_S&NW&Itk%pBIxa>)YBdz}(afS>R zWoG7j(J;3Dlf)QukO-p&fNHf*dz0!b<>DK$ zF9rn-r~xc0!xQ9KITJ=qkf%}-Ef5%Waw4>TA*Af!)F}a0CBr~TDI3L}4A5%W$8r*= zFOyOc1Uoq;%QcCPTHG^W1_+N-XjT#2@rILZDC8Zx3;Zg~_hmwmn)aMKp zjdbsTr|O;8PZo<3AxMgSkQ9%Y&l)q!L-N^ol57^NV_+@{{@kaq4%j(Lb)sAiJ)n-v zJdFh*?A!sN;5{QIyv_m;c5X)sjwIE>4x0vH=N_c|+oZgSl)F^Q2PWkTHVwj#%<~_U zvI}`$Q7IoDl=6{D*~h9N$jGlgHYxjQ0>aL#NI8(qGYfengo$LzLZn=Q6vV5>a3t0f z5Uj3;(DVtyB6Md;>4lDZ;>32X3L(}jbT(9OpRBMb#3!%R9A8goUw=Jn(Bk1ac*=ts zahF~~W`d9>Drvo2hB=~O6??JSiEX6~@-SPv8Ar(=m0}@PiEI`u?>{NmhWatsLxj2w zp;b!@O0zO}p2)*ztRTa*Ly8l{DNCc&;Y--E73)`-^Rs=879(e$z1ttZ{#`QPq^{!# zCw>s*VJH3}I*w^5`E+(Nz%Hgn9oBjr{ot&#b}yVge)8n;vll{){jXIFS!r0s z_wGKScmAhTd;LT(}-@)4hiEYzFlC<4Q(O3HbM$K}%DnXj&?V%D)6V$Z&#`zH-<# zmhO@0QLLB|^9j;ABj@6nLu?Bub!jG7Cmku`O*7g~OoUQl`QzU9-H9_UTys%u#Y+0Y zzJ0w)c&7EIK6?#$xk|mZI{HAf{nzUfY7AT4LRy zt9z8)09kRA)qnR$87&E+6lC`Q+3S~ouO9Ss6Gc(GaNOicNGI5>{_1xUdlDa9CqeeTa z$htsLWVv@}7VR5uc!DiQ zWq6`ak{?q(1_XJ~N%EgSj;4(V(_!Le-PS`;p&^f1EPG&&5@QRGoQ>jqLdix8#Rx@- z!`Y~^50kp0t2$2T^6HngPAU&pOln=yz|Psddv|MH`J_qZb**5f|Fz0fSZT8Id)rUg zwEhSx&%DbccGe<>)K63>1|J+pZUu2Hg?QZW)9BYQ2r1_NU9z}ISnWLnXIjPl5h(fWFk4Ak8TTX{!Pr8Q99! z2g2+{U;-g9r9l$|+i~!8scFU{E2=}Wsz8?$%0OG=#tu@JG$1@YWf}fG20XIxv%*He*9+ z=ZKkwx7>2e{;I{JdkaHj6PEynj)6wRR6H5JN$U7o*_|-<#NjLe1IGYiQyc*~;K_xc zanj}!hnB;Ng4@fLzwS7D+?Wy>MIk3!p9Tjfq7;u^w-7dQt^N=YGf)Kz#cU0IH>Pt0-#Zl{yj zcA%>gHeK*?cP8n0gYsB(oV6mgC~$Wt@=$JUddfq&)!_}cwVYTpr&moxQ2kOIl#>l- zzA>c4KObF2SCAgi(#}FUe?v1M{h$$`K)cNp`Yu-5kg-cT`DF%Hy57p_Oy%(R;)7~? zWW$I_@?JG!1zZ8|EUEmHyL8%&CC;DV_PMO2l1_g^ZlN4F>H4%O6Q%@%xTHbt@(f}Q zuLt#Vsl0`V?8l*i(6h53U-}6aRu;G<({W%Z_oSF|pi_z_<|7qFQyxU*?;ZP_FMbTr z0)lMs zUj8d0xe^}|cQBk*H(Ut3c1N0Yiv4cr=2RXA1)B`1PB@O$vVLhHNQ8PO)&wFKyD}Z- zOC)HXnN?5Z+08PY!`ko+^DL}2u;wpo2vIfi^d{gqp5kP<`6QMmS5jmQ;6zAmd5X-n~C7yim&L9_(d75Fud zMOw^iQ>8Rm{kU&KT93*wHm{nloy8ehe&9Y{U6u0y5ywadDv z9^#wf@T~$|TLDogTF`^mRa-7v8G^y;QD~RE4sT&<4KopPA@%!%a}TeteApL9<9msR z4z#ih*h+<<99ZbHwg57Tu{iJ~aV&dc3bxsUfVBpHA^b%U#lW-L@wfSqt^S|G+@bm? ziaPrMXB2hB&>Iq0+mRLrbcd#bUO?4@zc~I5#>xuSmQJ*%8~;g4=|^ta3o@z4K)63B(GFJ@G+wuF(gJ@@$CI72d^wtM#3{s{~Ns@MTt6EhJ5}&K_v;{To zQZ18|t#e3d+Ei`5xV9s`A2mxH^x#=ivCO*~Ohi)paP2hhi0($J>>){a zow&=fxD{h;IZ9aaKm4jm!PTqEY(w30+)9oh>82lVeW**O$b506YkVFqm*gpN^s&Zg z%sL5WMDeBMFtS&+sy0fhi6Lzj-ux0b<5~937O5{${{~_hR%Tw%Df()Mai3`Y8uPbw zu7I^F%&^m~UqSrJ#4)tlB*)rJa;@7)9?2&KXu@}_OUVd01x~UKSOZo&DJ0U_{Lf?* zDZ-G9kzz91dXSWmF{G4~k+If8WE>f9Jxt0;1(`r9$wUm!X{5^ffJ`Ej$rLixf^#*Q z4sw5l%&>lAJ!*YOW?H``)dWEZFaymbUwvtBccch6llNQoS7LbKx5jl!1CQGc#$WrUO*6m<$e+AR<$TG5= ztgymlrS+Qi5m`l6lQm>5%rTE9>&SZOUTUl-$wuobYa2Pn`aL<897m2Po5%?yN;Z== z(oSMz3*sBrTC>SE(m_rn+rcjDthY(0^#ihlbdfmeCMQ{QNssjg=_P%npX?;N$ZoQS zoJ>xEKR^dLm7GRSCufkoYla zXM$K(oLo#Uf!Ft2t|wn3H&~0w*U60_^{1^qaufLm2G%ZeGx?^~PrgNNf%Wybt)=8P@*Qg# z`7XH~((4`MPI4F7PwuwuB=0^}6*j zd4l}Tx_~@sts_q%VEohM8Ed_DI{5>6*4k^GNuDFmlNZQ~bSj+&iERd*i7*AT5SJ)O9qQstLyv}O zgx28f!P#^Ut%C>CJopsWTVJ-mLK|o!ZKBPz1>sj0(1mb^JBlu*OXyOB4qHxF(3Nx* zeACv@we)DZ4w0@l(2evMdMrJT9#1#X6KIrfrfsyH#t`~rE8Rvr=!tYYLeuP^T{KR+ z=}EMQ_R>DuPj}K?bT{2YPo}5PQ|W2+bb1EeOV6Zd(X;6}u%S7Ro=-nVFQ6CFi|9Uj zF}(z#>n^32L4LmiGWb>WYWfBGMS2armR?7{M88bGLcdC{r(dHt(67@Q=}q(-^k(`^ z`Yn13y_J5O-bTNJ*l)MfJLsMCF1nxIP4A)KqxaJL==bRl=nv_S=#T0B^e6PE^k?(| z`g8gV`b+vN`XK!^eTY6xAECdYkJ8`L$LQnq3Hm$wBz=nho<2>Vp?{#y(&y;&^ac7N zeTlwIU!kwkKhoFe>+}u!C;BG+GkuG`P5(mwO8-XxPT!&bp#P-*qVLl8===2F^aJ`I z`XT*@er#Qbz<3Ed01dC)AcBJ-_6BewADjs?SSHJ2*(`_UvOEUMA~u2*vXN{QD`LfL zG%I0aSSc%GW7#-1o|Ur-1{s!3WL0buo6M%LscagX&StQgteVYY0TyHqb6JRaEX*Pd z7LjZ=o5Sj`{W_1$XZ5UsHL@nw%vxA0Tfi2wMeHcHSjqATJCSW? zoool|VsX~ZPGUW*m-VrJwv+8*yV)LgGCPHx%1&davoqLUb|yQEoz2c+=d$zI`RsG- z0(K$0i0xw+TR*hkwcfMdXP2~icn$$gk{)~#4Ad>tB*8>|Pc^Q|0q1-p`6 z#ja*wKoF8IvTI;aH=kY0u47+fU&e|g+dAGl0qc@__7(P3c0KzVyMcY3-NsP_Cx4fe#Cyv?q@%-&ar-kbG?4berA1xJ-~hrTjgI^SF>NT zU$F<-uh~QFVfG074SSURmOaKEXHT%-u_xJ6?Dy}~cJ_E+{d_ILIU`v?0c`xkqcy~o~X|7IVs|F93)N9<#E zfF;;~44#hDwGl2IQMPPY`s08#p2@R#HuPbCx8AYt#bo|@s{-oStE?-nE3BKX8!^Q< zSeNr0p3C!iJ}KZYO6kK@Pl zP5cBN<(qjMZ|5<-g>U8Ccn3d`Z|9wS2k+u>-pxQt)Sj zP68p6(?y2J6j>r$Li35JBMxSA>Ko!XhGS;DJ9|%n@~PK%FP%i+a%@8by<6 z7A>MxED#IDB5{;hES89+VwqSjR*02il~^s-h_&Kqu}-WP8^lI&j5t;tCyp1J#0erQ zHj6gVE@EPf*ebS(4soK`E;_{y(Iw)dTbv|%M6c)*{bHxsC3cHF;$(4(I8~e`P8Vm0 zz2Z!9mN;9SBhD4)iSxzh#0BC)ago?3E*6)F&x=dNW#V#i1$1;7*5|DAtc$D*t$o(n z;!1H9jF8^6&JtH!KNDXNUliAfYsGcqOXADoE8?r-dhs=JgZR3*QQRcHA#N7m6yFlJ zh+D zA$}=-B_0&N77vMs#UtW3;!*Ki@tAmAJRyE3o)k}s-;1ZkGvW{8S@E2BUc4Y)6fcRF z#Vg`f@kjBRcwM|9{v_TMe->|vx5Zz?U&Y_V-^DxPAL5_lU*cWyo_JsUTYMn?BR&)# ziI2qrkq`sWI9_5skLAV1)=Sni)+^R?)(h4jtY@tkt(R?r!^ar(roy%nQZ5}a*fZ@c zJKN5&bL~7k-!8C6*oF2;dz4*d7u%!l5_^nYYM0q#?Q!;ayWFm@C)kztM7zqKWKXuI z*i-Fk_H=uOJ=3nXXW0QeXgjuRhiuOd+Y!6QuC-^|bL={Mu07A5Z`a!mcB9>}xhJ+W zme$|Z5o~E_(f7u%xd+VMG53(X2ZBw_`n^HDwTYq0HtEsJ{r>%d-md@Dj%%=8uU$m_)*41Y>w?&Z~x1M;k&u&q$ z+AS(k7u{$;ZZcIjnW~x$$W5WlmSl0}69ZjiLt2Z0ro}*`T3740TD2+=Yz^59RE=2+ z27#1C1%i%~xgc3OUkD{t*22L&_M#NrHW^$r)ub&lwJy@N+Kc)+I@@DeM-6_dOLxQe z5``UmNwUR(pxelopiX<4{%KjtPa%)BbZxblr&QZ)8q;hV-E8pEY`U)5$D8TGrWUb$ zTfC=BqpH~e-Qs^`ay1*Qw*+#QZ|m>c8tv)d(HZUUOIvQ5rm)k}khQ!Qy1#82(pBb` z0SsHqfV5-DUJtf38d#f5olT~WCIf4e zml;czW573HH8!Tj3>dM&A&(+eGXjpM@?pq(_EuG6*49DjGzJ_ub8E76zD*AKZG(C2 zjwDh8!RA0lM|Eest#i$)#Tt$#gO;Y+v*|blwRg1HoeF#Ux7tR#Gl?K@h$h|%5bZ9F;I3$Q9D4V7_qLebm69zKW-$#Z$OO zk7|V7lLELGv3qsXdWT`j3D%0vc-K}4s*+dqrF;}tz<^gY+Wo05HdC7BkLWYS6>vAq z-{+4lrsXXW(LdPI7K5KwgRd69<)+0gtvUTeTH5co)bNyk#Z&q{&_`kSZC&NxkH!j473%+wG;a8_&raz0`Jl z$#x@4vfZA&LlzXacgb5MOLw4p&QIw@m5`h4N|QH*NpF`)K9g3!))b@;cJ;HpMc!&{ ziQr%$OOFfl>;oMPXrMh=NHAdUk+)#h9z_A_IX{JfR6_0^pTyLw{65&C`a*u_0~rjO zA5_8WMbcR6C$;Lu?w2YYqA z1XUjMfvVhOY7M6TA}KBCf8Lz>(yCrY3>l#2cRfnYiyo@#B~y)8^_Zmxt$J2n6O3f( z9;)u`bpl9|H^rYrLI1AUL?9H@a!V+vc~U4~?ppH1@0uxvf_l~s1^n-{zz_=RK_1dF z67uV5D-_hsD-_VoD-=}h2*3O9dYTIbwM-QXDux^g`EWX>9>>7v`0$zhj)BWDa5)AJ z$H3(%5ewxRcmjU;rhdo3=NPyGem);=zrB7v2Ht=vKVa$$n0f-H9LI;x)E6-D*ZOx; zKGq*{iV5j;P9W51`bDpI@NV*%$slAVfsht=10gL~;%?y4B4r@dsu@ivs0A!ZlR$a{ zXv2(Z^hnA}ZR#(If$8BD2nAXsJ?Y^UawHws8Wgz(RM&KomKg&f&F2Fl92%@@t@VF5 zD8%WKD&6zb4d|{xrE5^>`t=wTc&5u-gJRczH(lZyl)DDyAp>8?)DtqO4jH&SlRsqO z3K_UU29A({D`ema8F)Oud{ckOz!x%b8Hp|A`EdK~_3JV4dZv8O)aRLcJX21{htJgK z`K06H)#QU9t4YY@Yc%cEf-^|S;d5014^oCgjyfLNWAY z1a?hNZYtGyL+DA(rh5Jeg$9{2s3Mh~LYkgLLudE4C~u7QMa6>XjvY}2pj#VCYw7Oo zfb_&S;wRREpVw@|6JLbYxL6$R?v7$Px?^*DlrHV3%lhg14lMUN6CdvH+H6p5zu^H_YTO~3?d#tlBnieyt zI2k`M`D33#MTbPic7=*gg$iAMV-xM_r@K4S;u;^UXItFV?1)~4ls+J(-yo$M2x-F~ zUPWBCBSV&}8zY~5;0sb;^v|XU^^#{^{Olu#z3VRwNa`h1)uta+!*v$ZSoM;Q#;OMm zzZUcZt`_`p4`-_8E97M=jNuWIf<}jWw)=zOS_mKg!Di2`(Kj`k5yackuaLpzk4^g4 ztZ!-rB9DFz=>kGQ^EAw()9e(bFK_O-T(pm##FVD-D_7TJ&$N z>gFjX<^-LPe$|yCdZ>ifGl{xRXf9M@MBj8Xy;}XIEA(`Qp03c-6?(ctPgfY$jSTBX zhIM^mU0+z&7uNNKb$vJwKvo;p^@VkPVO?LiG2`S|PrO=Q())JBWoOi+_jc@74;ft@ zT`~2P8SB`(O$zM6+Keq7J7uC40GvRLMnIrOaW%XvE{MD0dbn%E2Wk`-!@I_Ophj^s zyeqDXd#whgy(_*W9eTcM^&nxA51D=2u#i=c8C&B0J?2S*qVh?QRlZ(mCcE^bhFPZS zhNvgi+^+r|J*p1%AnTA1rVjb2>(EcK4wX;Vq4McE)T6FLWmL$LPjVPIfry^n0*!iB z3N-53A<$^>5;1r|3@n}B;3Z=45;1s*)Jk3s{5Yy7%!`y7f{J}h%&C_gA6NR#$B25% zRlrFE3}%&}4rWch>8#0DHIV>#l~Y$9Nv%AhD>q=tnJ8GBH;DPvcfU;2poq?FzLes- z6UbG>W#IH*&3BGkr~t7#tNAXVXg61NtNKnp=~wlgd^KR}tcpoBXic7j=}u!`%Mwl? z7|w|8ZUbk+N>~5lHs^vGv4VvfB^GUuneNrXj1zEMGuz^r0kJCXjg@xCdOG6mQVk8Y zUb|A{G&QVIzZD(&H(3czb5bGz?rQ3HBAR%dNLVwtNJI~=NLYywj;p0v+?5F9M4EIn zTrC|VU6qG)O;ojJu+{3p76@n^9GV-*IjJ8_lluG~*i7msYZ)JH3l(W(Y*Gf6)zZEa zOO#-3S!(j|A5|F z(B0u^U{QkkLNAI?lI|u{slU^bwBu-vyW>D71VrpemTS7#Y0+fh1oS-+Y05&6bnJ|F z#=6>Kx~z~U9mlQBitX;`1-bThL_5>59L8kt0}5AA)g(i`wOTZGB6`*0xLOyByKcJM zpqY^a<)i%0)vF=gbvbT>rb{QHn49CY=q_>eDix^Ibm)W)Vj2xfYji^z0vd4*0gadj zy=rruM!yS8xmr&Pycu}Rq~X+j_$raNXYDrZ|#6S44SbF^BC{R?vTU3H>Ql11@MNw zD}{BlCJi+DWMD>Zt!}Mbt3h*XHP+l(Guj&rdFg$P))oV5AY!nZyc?|Pg_`5&g%Aik zoZSGx&8|{lHaJ>pym{=;S8?cpF>ZZ9@KkLcsDRN`1uVf8_IC>VhN;Plh)g@ zqXQ#Nx4qU-9@Y#B7e3{fHafa(j$_*D)EG+Ai&MwZdJf!uiqQ2tVK=)QdTO*JrH3Mo z>An4J+xoUeb(aN0fm}aVN~0aU8Hq{_aDh+;gm$1O-s6v|#teWfnPXJX2aetg!Z)T9 z_390P8AO>*bWEo@wT9$t!?{wAh2h=b+1JtCxyRt8Hd7~eclP(DMSFVUyZXD;Pr=$q zrh4y@vX@D!$xun{@m-pxg0;0er8Bn0&lA=uo8x`k^izL#yPsQASkUxx&|p1iupTtM z7&Hh8nnngqZwC!O2!-?4%KE1W-1e$rQvi&#NhUAL` zKlvgd*X8ML0Vk-JzPKB{6wp-U8b%s1R24BukC;w~nD#|lb!SCdHPu8~H6QVe(CQhX z)q~L5-nAL~FWXi9o)KC-BeZ%o5n+DqPRV6z_YBQ?hP!z+&1s!mQu5Vk67gy@wmfjJ zp1zddYc-T!t%lO8HBcH7^0Z|ct(=*w2BSC8+e1JKCN{{euF2i&2?}zm@Yr;!|&Ixxvyu04KHNMix|q* zsztzK;M3Y%lyB-YiyAMYCt1(PtDccpJu{PeMjr6A_7;PS7`TlP;Ta*qGs1#rX zypS0@T4jj#7+O?_I$i+X&#`T0zFdiMeOO}oP;pI%p?UIT}bM?E7!c}7C= zwCWjjV)7Z~hNo54NH^sM4L*%L>xB(nYgILNw=}%2p<~zdkE>PPj%)DahIM(a!J}*7 za19;024AkJ$2IV}TE&cVG<~}UpRQ?_Yxs$4=nfITRlmB1?p#C9a6{GUh7MiBms~@? zt{JDU8UL=qqigW$nsMYBI&;nVbj=Lr8hpBju3W>%;0J5q(Rg&tICBmCxQ1`KX1utD zK3qdjt{MNX;ZLp^m#)7qHsjDW^x_)6=Nc^?TsL+7et#LdaLqV#4ZXW&5#XBscMaXS zhA+Ej{JVy}T{GTY!`EFy7p`ae+3=w)UH?}GU2g|P1Z(PH3T{C7~Gv~Nwthm9Z zQSH&b=#q}E?Jd1+(QY5g9H`A>eg50%_Snvjwpf#HQY%z^rjp_zKP>O^KPVZJzDBAC z5BbHKUGX8{)-;TWb+s?wvNYD-(Z9p|l&_N3#CG?YgwZ;oC)(A!qXV9(alg%D5Bi}| zii_s6+*lXZ|qMd7^5V@k#AJ%-KDY~XsY>W5z>SYUztaPfG{}8akylei30K@7%sJED$px&)? zTr)qoO)Yty(EX;sHKt2$o?s=^a1j0FcExtd+yHC&)o z&#G>~E9yZhJ?+DrpVbrVhNX$pjO6xi>)6t_$Zvg~dR^Y{cU*SrKp55A7wzd=zGWd4 zcQC{=K#ee|DcxNlSC4%ieHb++Q&I1puC{I1r~*%E2nYc)q2OMl0d>L>P^qW}Kv0ZBnQUHQzJizBWK;EPvc0KUv8Oxu z9W?fXFWCAWe1ZCY@C7@>c*#v-AoaJ9dKobU7pcEvKQviT5Ie<#FR7JF!!7($kczC7 zypFC#w-#s^ECtc5QeIM#;$V+DS(&SA&hhs&)la#oP1}R3*Gyv-gpV?fm5~G~)y_`k z%S$yil9`Q_lzcQ6NqEeV7I?Z`g*Ww>>Z*QB0;iI)R8f*>+V&Va4WrwG zDbInF=h~EK*E~ZxpUf|x{rvLT&o7_dd`(iSd<9BMLST3T_HqDyN)8wX3?`^LhbIgv zL)AV!hb}{o!4_!m&0WdOcvoYxC7`Wpa5w3CvkdQUt}%8+e@bqb-{F&yN#M)YE?L4> zuV_M441(wydAK9$h4zakFXMSBQjWvlCV03K>ty^#tW)7lLaYnmSAiIo)<1E5*ZLUO z1pJ^0DT1#vAr_@590a|{9pw6!EIyDu$~~GjYwP*|@?t71u&K2G?(fc&lK0ibUCgo>1tfpQbbLX-le$0 zyA;<=h>AjJltyuFqwTnEp<8h6popUa&(eNe_s~7Ko&@b3T;YLZQTW-sVKMQpon Date: Mon, 6 Jan 2025 07:53:27 -0600 Subject: [PATCH 18/69] UI: default OnlyShowOwnedGames in compat list to true --- src/Ryujinx/Utilities/Compat/CompatibilityViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityViewModel.cs b/src/Ryujinx/Utilities/Compat/CompatibilityViewModel.cs index 2490f222a..8140c041f 100644 --- a/src/Ryujinx/Utilities/Compat/CompatibilityViewModel.cs +++ b/src/Ryujinx/Utilities/Compat/CompatibilityViewModel.cs @@ -9,7 +9,7 @@ namespace Ryujinx.Ava.Utilities.Compat { public partial class CompatibilityViewModel : ObservableObject { - [ObservableProperty] private bool _onlyShowOwnedGames; + [ObservableProperty] private bool _onlyShowOwnedGames = true; private IEnumerable _currentEntries = CompatibilityCsv.Shared.Entries; private readonly string[] _ownedGameTitleIds = []; From 30b22ce6ba10c78ec5f3f9e44402ca07d4281d99 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Mon, 6 Jan 2025 08:02:37 -0600 Subject: [PATCH 19/69] UI: fix nullref --- src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs b/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs index 4abe7465e..a3f9fc62d 100644 --- a/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs +++ b/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs @@ -35,8 +35,9 @@ namespace Ryujinx.Ava.Utilities.Compat IssueNumber = row[header.IndexOf("issue_number")].Parse(); var titleIdRow = row[header.IndexOf("extracted_game_id")].ToString(); - if (!string.IsNullOrEmpty(titleIdRow)) - TitleId = titleIdRow; + TitleId = !string.IsNullOrEmpty(titleIdRow) + ? titleIdRow + : default(Optional); var issueTitleRow = row[header.IndexOf("issue_title")].ToString(); if (TitleId.HasValue) From 323c356d9cd17c79f97937204592d7b9e3928fe1 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Mon, 6 Jan 2025 22:03:39 -0600 Subject: [PATCH 20/69] UI: Widen compatibility list, and make search box take up all space horizontally --- src/Ryujinx/Ryujinx.csproj | 4 +- .../UI/Views/Main/MainMenuBarView.axaml.cs | 2 +- .../Compat/CompatibilityContentDialog.axaml | 20 ++++++++++ .../CompatibilityContentDialog.axaml.cs | 37 +++++++++++++++++++ .../Utilities/Compat/CompatibilityList.axaml | 23 ++++++------ .../Compat/CompatibilityList.axaml.cs | 35 +----------------- 6 files changed, 72 insertions(+), 49 deletions(-) create mode 100644 src/Ryujinx/Utilities/Compat/CompatibilityContentDialog.axaml create mode 100644 src/Ryujinx/Utilities/Compat/CompatibilityContentDialog.axaml.cs diff --git a/src/Ryujinx/Ryujinx.csproj b/src/Ryujinx/Ryujinx.csproj index 55f683af9..7a49a5a94 100644 --- a/src/Ryujinx/Ryujinx.csproj +++ b/src/Ryujinx/Ryujinx.csproj @@ -169,8 +169,8 @@ - - CompatibilityList.axaml + + CompatibilityContentDialog.axaml Code diff --git a/src/Ryujinx/UI/Views/Main/MainMenuBarView.axaml.cs b/src/Ryujinx/UI/Views/Main/MainMenuBarView.axaml.cs index b22b324c0..bf95667c9 100644 --- a/src/Ryujinx/UI/Views/Main/MainMenuBarView.axaml.cs +++ b/src/Ryujinx/UI/Views/Main/MainMenuBarView.axaml.cs @@ -227,6 +227,6 @@ namespace Ryujinx.Ava.UI.Views.Main public void CloseWindow(object sender, RoutedEventArgs e) => Window.Close(); - private async void OpenCompatibilityList(object sender, RoutedEventArgs e) => await CompatibilityList.Show(); + private async void OpenCompatibilityList(object sender, RoutedEventArgs e) => await CompatibilityContentDialog.Show(); } } diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityContentDialog.axaml b/src/Ryujinx/Utilities/Compat/CompatibilityContentDialog.axaml new file mode 100644 index 000000000..fbceefc33 --- /dev/null +++ b/src/Ryujinx/Utilities/Compat/CompatibilityContentDialog.axaml @@ -0,0 +1,20 @@ + + + + + + 900 + + + diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityContentDialog.axaml.cs b/src/Ryujinx/Utilities/Compat/CompatibilityContentDialog.axaml.cs new file mode 100644 index 000000000..27c560d90 --- /dev/null +++ b/src/Ryujinx/Utilities/Compat/CompatibilityContentDialog.axaml.cs @@ -0,0 +1,37 @@ +using Avalonia.Styling; +using FluentAvalonia.UI.Controls; +using Ryujinx.Ava.UI.Helpers; +using System; +using System.Threading.Tasks; + +namespace Ryujinx.Ava.Utilities.Compat +{ + public partial class CompatibilityContentDialog : ContentDialog + { + protected override Type StyleKeyOverride => typeof(ContentDialog); + + public static async Task Show() + { + await CompatibilityHelper.InitAsync(); + + CompatibilityContentDialog contentDialog = new() + { + Content = new CompatibilityList { DataContext = new CompatibilityViewModel(RyujinxApp.MainWindow.ViewModel.ApplicationLibrary) } + }; + + Style closeButton = new(x => x.Name("CloseButton")); + closeButton.Setters.Add(new Setter(WidthProperty, 80d)); + + Style closeButtonParent = new(x => x.Name("CommandSpace")); + closeButtonParent.Setters.Add(new Setter(HorizontalAlignmentProperty, Avalonia.Layout.HorizontalAlignment.Right)); + + contentDialog.Styles.Add(closeButton); + contentDialog.Styles.Add(closeButtonParent); + + await ContentDialogHelper.ShowAsync(contentDialog); + } + + public CompatibilityContentDialog() => InitializeComponent(); + } +} + diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml b/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml index fd912ad05..7d5b4f20f 100644 --- a/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml +++ b/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml @@ -11,25 +11,24 @@ - - - - - - - - + + + + + + + - - + diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs b/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs index 68b645efd..9860fbc27 100644 --- a/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs +++ b/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs @@ -1,41 +1,9 @@ -using Avalonia; -using Avalonia.Controls; -using Avalonia.Markup.Xaml; -using Avalonia.Styling; -using FluentAvalonia.UI.Controls; -using Ryujinx.Ava.Common.Locale; -using Ryujinx.Ava.UI.Helpers; -using Ryujinx.Ava.UI.Windows; -using System.Threading.Tasks; +using Avalonia.Controls; namespace Ryujinx.Ava.Utilities.Compat { public partial class CompatibilityList : UserControl { - public static async Task Show() - { - await CompatibilityHelper.InitAsync(); - - ContentDialog contentDialog = new() - { - PrimaryButtonText = string.Empty, - SecondaryButtonText = string.Empty, - CloseButtonText = LocaleManager.Instance[LocaleKeys.SettingsButtonClose], - Content = new CompatibilityList { DataContext = new CompatibilityViewModel(RyujinxApp.MainWindow.ViewModel.ApplicationLibrary) } - }; - - Style closeButton = new(x => x.Name("CloseButton")); - closeButton.Setters.Add(new Setter(WidthProperty, 80d)); - - Style closeButtonParent = new(x => x.Name("CommandSpace")); - closeButtonParent.Setters.Add(new Setter(HorizontalAlignmentProperty, Avalonia.Layout.HorizontalAlignment.Right)); - - contentDialog.Styles.Add(closeButton); - contentDialog.Styles.Add(closeButtonParent); - - await ContentDialogHelper.ShowAsync(contentDialog); - } - public CompatibilityList() { InitializeComponent(); @@ -53,4 +21,3 @@ namespace Ryujinx.Ava.Utilities.Compat } } } - From b5fafb63943e92bdb98bd548badd387fafb103aa Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Mon, 6 Jan 2025 23:52:20 -0600 Subject: [PATCH 21/69] UI: stop using async voids in MainMenuBarView; use RelayCommands --- .../UI/Views/Main/MainMenuBarView.axaml | 51 +++++------ .../UI/Views/Main/MainMenuBarView.axaml.cs | 89 ++++++++----------- .../CompatibilityContentDialog.axaml.cs | 26 +----- .../Compat/CompatibilityList.axaml.cs | 24 +++++ 4 files changed, 88 insertions(+), 102 deletions(-) diff --git a/src/Ryujinx/UI/Views/Main/MainMenuBarView.axaml b/src/Ryujinx/UI/Views/Main/MainMenuBarView.axaml index d2f050c5a..6bce21851 100644 --- a/src/Ryujinx/UI/Views/Main/MainMenuBarView.axaml +++ b/src/Ryujinx/UI/Views/Main/MainMenuBarView.axaml @@ -56,7 +56,7 @@ ToolTip.Tip="{ext:Locale LoadTitleUpdatesFromFolderTooltip}" /> @@ -72,7 +72,7 @@ ToolTip.Tip="{ext:Locale OpenRyujinxLogsTooltip}" /> @@ -167,7 +167,7 @@ Header="{ext:Locale MenuBarShowFileTypes}" /> @@ -277,56 +275,55 @@ - - + + - + - - - - + + + + diff --git a/src/Ryujinx/UI/Views/Main/MainMenuBarView.axaml.cs b/src/Ryujinx/UI/Views/Main/MainMenuBarView.axaml.cs index bf95667c9..07d5fd03f 100644 --- a/src/Ryujinx/UI/Views/Main/MainMenuBarView.axaml.cs +++ b/src/Ryujinx/UI/Views/Main/MainMenuBarView.axaml.cs @@ -2,6 +2,7 @@ using Avalonia; using Avalonia.Controls; using Avalonia.Interactivity; using Avalonia.Threading; +using CommunityToolkit.Mvvm.Input; using Gommon; using Ryujinx.Ava.Common.Locale; using Ryujinx.Ava.UI.Helpers; @@ -17,6 +18,7 @@ using Ryujinx.HLE.HOS.Services.Nfc.AmiiboDecryption; using System; using System.Collections.Generic; using System.Linq; +using System.Threading.Tasks; namespace Ryujinx.Ava.UI.Views.Main { @@ -34,6 +36,34 @@ namespace Ryujinx.Ava.UI.Views.Main ToggleFileTypesMenuItem.ItemsSource = GenerateToggleFileTypeItems(); ChangeLanguageMenuItem.ItemsSource = GenerateLanguageMenuItems(); + + MiiAppletMenuItem.Command = new AsyncRelayCommand(OpenMiiApplet); + CloseRyujinxMenuItem.Command = new RelayCommand(CloseWindow); + OpenSettingsMenuItem.Command = new AsyncRelayCommand(OpenSettings); + PauseEmulationMenuItem.Command = new RelayCommand(() => ViewModel.AppHost?.Pause()); + ResumeEmulationMenuItem.Command = new RelayCommand(() => ViewModel.AppHost?.Resume()); + StopEmulationMenuItem.Command = new AsyncRelayCommand(() => ViewModel.AppHost?.ShowExitPrompt().OrCompleted()!); + CheatManagerMenuItem.Command = new AsyncRelayCommand(OpenCheatManagerForCurrentApp); + InstallFileTypesMenuItem.Command = new AsyncRelayCommand(InstallFileTypes); + UninstallFileTypesMenuItem.Command = new AsyncRelayCommand(UninstallFileTypes); + XciTrimmerMenuItem.Command = new AsyncRelayCommand(() => XCITrimmerWindow.Show(ViewModel)); + AboutWindowMenuItem.Command = new AsyncRelayCommand(AboutWindow.Show); + CompatibilityListMenuItem.Command = new AsyncRelayCommand(CompatibilityList.Show); + + UpdateMenuItem.Command = new AsyncRelayCommand(async () => + { + if (Updater.CanUpdate(true)) + await Updater.BeginUpdateAsync(true); + }); + + FaqMenuItem.Command = + SetupGuideMenuItem.Command = + LdnGuideMenuItem.Command = new RelayCommand(OpenHelper.OpenUrl); + + WindowSize720PMenuItem.Command = + WindowSize1080PMenuItem.Command = + WindowSize1440PMenuItem.Command = + WindowSize2160PMenuItem.Command = new RelayCommand(ChangeWindowSize); } private CheckBox[] GenerateToggleFileTypeItems() => @@ -96,22 +126,7 @@ namespace Ryujinx.Ava.UI.Views.Main } } - private async void StopEmulation_Click(object sender, RoutedEventArgs e) - { - await ViewModel.AppHost?.ShowExitPrompt().OrCompleted()!; - } - - private void PauseEmulation_Click(object sender, RoutedEventArgs e) - { - ViewModel.AppHost?.Pause(); - } - - private void ResumeEmulation_Click(object sender, RoutedEventArgs e) - { - ViewModel.AppHost?.Resume(); - } - - public async void OpenSettings(object sender, RoutedEventArgs e) + public async Task OpenSettings() { Window.SettingsWindow = new(Window.VirtualFileSystem, Window.ContentManager); @@ -124,7 +139,7 @@ namespace Ryujinx.Ava.UI.Views.Main public static readonly AppletMetadata MiiApplet = new("miiEdit", 0x0100000000001009); - public async void OpenMiiApplet(object sender, RoutedEventArgs e) + public async Task OpenMiiApplet() { if (MiiApplet.CanStart(ViewModel.ContentManager, out var appData, out var nacpData)) { @@ -132,13 +147,7 @@ namespace Ryujinx.Ava.UI.Views.Main } } - public async void OpenAmiiboWindow(object sender, RoutedEventArgs e) - => await ViewModel.OpenAmiiboWindow(); - - public async void OpenBinFile(object sender, RoutedEventArgs e) - => await ViewModel.OpenBinFile(); - - public async void OpenCheatManagerForCurrentApp(object sender, RoutedEventArgs e) + public async Task OpenCheatManagerForCurrentApp() { if (!ViewModel.IsGameRunning) return; @@ -166,7 +175,7 @@ namespace Ryujinx.Ava.UI.Views.Main ViewModel.IsAmiiboBinRequested = ViewModel.IsAmiiboRequested && AmiiboBinReader.HasAmiiboKeyFile; } - private async void InstallFileTypes_Click(object sender, RoutedEventArgs e) + private async Task InstallFileTypes() { ViewModel.AreMimeTypesRegistered = FileAssociationHelper.Install(); if (ViewModel.AreMimeTypesRegistered) @@ -175,7 +184,7 @@ namespace Ryujinx.Ava.UI.Views.Main await ContentDialogHelper.CreateErrorDialog(LocaleManager.Instance[LocaleKeys.DialogInstallFileTypesErrorMessage]); } - private async void UninstallFileTypes_Click(object sender, RoutedEventArgs e) + private async Task UninstallFileTypes() { ViewModel.AreMimeTypesRegistered = !FileAssociationHelper.Uninstall(); if (!ViewModel.AreMimeTypesRegistered) @@ -184,11 +193,8 @@ namespace Ryujinx.Ava.UI.Views.Main await ContentDialogHelper.CreateErrorDialog(LocaleManager.Instance[LocaleKeys.DialogUninstallFileTypesErrorMessage]); } - private async void ChangeWindowSize_Click(object sender, RoutedEventArgs e) + private void ChangeWindowSize(string resolution) { - if (sender is not MenuItem { Tag: string resolution }) - return; - (int resolutionWidth, int resolutionHeight) = resolution.Split(' ', 2) .Into(parts => (int.Parse(parts[0]), int.Parse(parts[1])) @@ -201,7 +207,7 @@ namespace Ryujinx.Ava.UI.Views.Main double windowWidthScaled = (resolutionWidth * Program.WindowScaleFactor); double windowHeightScaled = ((resolutionHeight + barsHeight) * Program.WindowScaleFactor); - await Dispatcher.UIThread.InvokeAsync(() => + Dispatcher.UIThread.Post(() => { ViewModel.WindowState = WindowState.Normal; @@ -209,24 +215,7 @@ namespace Ryujinx.Ava.UI.Views.Main }); } - public async void CheckForUpdates(object sender, RoutedEventArgs e) - { - if (Updater.CanUpdate(true)) - await Updater.BeginUpdateAsync(true); - } - - private void MenuItem_OnClick(object sender, RoutedEventArgs e) - { - if (sender is MenuItem { Tag: string url }) - OpenHelper.OpenUrl(url); - } - - public async void OpenXCITrimmerWindow(object sender, RoutedEventArgs e) => await XCITrimmerWindow.Show(ViewModel); - - public async void OpenAboutWindow(object sender, RoutedEventArgs e) => await AboutWindow.Show(); - - public void CloseWindow(object sender, RoutedEventArgs e) => Window.Close(); - - private async void OpenCompatibilityList(object sender, RoutedEventArgs e) => await CompatibilityContentDialog.Show(); + public void CloseWindow() => Window.Close(); + } } diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityContentDialog.axaml.cs b/src/Ryujinx/Utilities/Compat/CompatibilityContentDialog.axaml.cs index 27c560d90..513600bc0 100644 --- a/src/Ryujinx/Utilities/Compat/CompatibilityContentDialog.axaml.cs +++ b/src/Ryujinx/Utilities/Compat/CompatibilityContentDialog.axaml.cs @@ -1,35 +1,11 @@ -using Avalonia.Styling; -using FluentAvalonia.UI.Controls; -using Ryujinx.Ava.UI.Helpers; +using FluentAvalonia.UI.Controls; using System; -using System.Threading.Tasks; namespace Ryujinx.Ava.Utilities.Compat { public partial class CompatibilityContentDialog : ContentDialog { protected override Type StyleKeyOverride => typeof(ContentDialog); - - public static async Task Show() - { - await CompatibilityHelper.InitAsync(); - - CompatibilityContentDialog contentDialog = new() - { - Content = new CompatibilityList { DataContext = new CompatibilityViewModel(RyujinxApp.MainWindow.ViewModel.ApplicationLibrary) } - }; - - Style closeButton = new(x => x.Name("CloseButton")); - closeButton.Setters.Add(new Setter(WidthProperty, 80d)); - - Style closeButtonParent = new(x => x.Name("CommandSpace")); - closeButtonParent.Setters.Add(new Setter(HorizontalAlignmentProperty, Avalonia.Layout.HorizontalAlignment.Right)); - - contentDialog.Styles.Add(closeButton); - contentDialog.Styles.Add(closeButtonParent); - - await ContentDialogHelper.ShowAsync(contentDialog); - } public CompatibilityContentDialog() => InitializeComponent(); } diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs b/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs index 9860fbc27..f78eb2098 100644 --- a/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs +++ b/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs @@ -1,9 +1,33 @@ using Avalonia.Controls; +using Avalonia.Styling; +using Ryujinx.Ava.UI.Helpers; +using System.Threading.Tasks; namespace Ryujinx.Ava.Utilities.Compat { public partial class CompatibilityList : UserControl { + public static async Task Show() + { + await CompatibilityHelper.InitAsync(); + + CompatibilityContentDialog contentDialog = new() + { + Content = new CompatibilityList { DataContext = new CompatibilityViewModel(RyujinxApp.MainWindow.ViewModel.ApplicationLibrary) } + }; + + Style closeButton = new(x => x.Name("CloseButton")); + closeButton.Setters.Add(new Setter(WidthProperty, 80d)); + + Style closeButtonParent = new(x => x.Name("CommandSpace")); + closeButtonParent.Setters.Add(new Setter(HorizontalAlignmentProperty, Avalonia.Layout.HorizontalAlignment.Right)); + + contentDialog.Styles.Add(closeButton); + contentDialog.Styles.Add(closeButtonParent); + + await ContentDialogHelper.ShowAsync(contentDialog); + } + public CompatibilityList() { InitializeComponent(); From 259526430c1c84cfc78d522a98d823d6a129d3f8 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Tue, 7 Jan 2025 00:36:22 -0600 Subject: [PATCH 22/69] UI: Properly space language menu items instead of prepending a space to the language name --- src/Ryujinx/UI/Views/Main/MainMenuBarView.axaml.cs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/Ryujinx/UI/Views/Main/MainMenuBarView.axaml.cs b/src/Ryujinx/UI/Views/Main/MainMenuBarView.axaml.cs index 07d5fd03f..c50b073dd 100644 --- a/src/Ryujinx/UI/Views/Main/MainMenuBarView.axaml.cs +++ b/src/Ryujinx/UI/Views/Main/MainMenuBarView.axaml.cs @@ -1,6 +1,6 @@ using Avalonia; using Avalonia.Controls; -using Avalonia.Interactivity; +using Avalonia.Layout; using Avalonia.Threading; using CommunityToolkit.Mvvm.Input; using Gommon; @@ -42,7 +42,7 @@ namespace Ryujinx.Ava.UI.Views.Main OpenSettingsMenuItem.Command = new AsyncRelayCommand(OpenSettings); PauseEmulationMenuItem.Command = new RelayCommand(() => ViewModel.AppHost?.Pause()); ResumeEmulationMenuItem.Command = new RelayCommand(() => ViewModel.AppHost?.Resume()); - StopEmulationMenuItem.Command = new AsyncRelayCommand(() => ViewModel.AppHost?.ShowExitPrompt().OrCompleted()!); + StopEmulationMenuItem.Command = new AsyncRelayCommand(() => ViewModel.AppHost?.ShowExitPrompt().OrCompleted()); CheatManagerMenuItem.Command = new AsyncRelayCommand(OpenCheatManagerForCurrentApp); InstallFileTypesMenuItem.Command = new AsyncRelayCommand(InstallFileTypes); UninstallFileTypesMenuItem.Command = new AsyncRelayCommand(UninstallFileTypes); @@ -104,8 +104,10 @@ namespace Ryujinx.Ava.UI.Views.Main MenuItem menuItem = new() { - Padding = new Thickness(10, 0, 0, 0), - Header = " " + languageName, + Padding = new Thickness(15, 0, 0, 0), + Margin = new Thickness(3, 0, 3, 0), + HorizontalAlignment = HorizontalAlignment.Stretch, + Header = languageName, Command = MiniCommand.Create(() => MainWindowViewModel.ChangeLanguage(language)) }; From d8265f77726181b712b881afe8ab96a471db427f Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Tue, 7 Jan 2025 03:37:07 -0600 Subject: [PATCH 23/69] Embed compatibility list into executable instead of downloading Co-Authored-By: Vita Chumakova --- docs/compatibility.csv | 4303 +++++++++++++++++ src/Ryujinx/Ryujinx.csproj | 3 + src/Ryujinx/UI/Helpers/MiniCommand.cs | 1 + .../UI/Views/Main/MainMenuBarView.axaml.cs | 21 +- .../Utilities/Compat/CompatibilityHelper.cs | 32 - .../Compat/CompatibilityList.axaml.cs | 12 +- 6 files changed, 4328 insertions(+), 44 deletions(-) create mode 100644 docs/compatibility.csv delete mode 100644 src/Ryujinx/Utilities/Compat/CompatibilityHelper.cs diff --git a/docs/compatibility.csv b/docs/compatibility.csv new file mode 100644 index 000000000..3fa58aa80 --- /dev/null +++ b/docs/compatibility.csv @@ -0,0 +1,4303 @@ +issue_number,issue_title,extracted_game_id,issue_labels,extracted_status,last_event_date,events_count +42,ARMS - 01009B500007C000,01009B500007C000,status-playable;ldn-works;LAN,playable,2024-08-28 7:49:24,9 +43,Pokemon Quest - 01005D100807A000,01005D100807A000,status-playable,playable,2022-02-22 16:12:32,10 +44,Retro City Rampage DX,,status-playable,playable,2021-01-05 17:04:17,8 +45,Kirby Star Allies - 01007E3006DDA000,01007E3006DDA000,status-playable;nvdec,playable,2023-11-15 17:06:19,23 +46,Bayonetta 2 - 01007960049A0000,01007960049A0000,status-playable;nvdec;ldn-works;LAN,playable,2022-11-26 3:46:09,10 +47,Bloons TD 5 - 0100B8400A1C6000,0100B8400A1C6000,Needs Update;audio;gpu;services;status-boots,boots,2021-04-18 23:02:46,5 +48,Urban Trial Playground - 01001B10068EC000,01001B10068EC000,UE4;nvdec;online;status-playable,playable,2021-03-25 20:56:51,8 +49,Ben 10 - 01006E1004404000,01006E1004404000,nvdec;status-playable,playable,2021-02-26 14:08:35,8 +50,Lanota,,status-playable,playable,2019-09-04 1:58:14,5 +51,Portal Knights - 0100437004170000,0100437004170000,ldn-untested;online;status-playable,playable,2021-05-27 19:29:04,5 +52,Thimbleweed Park - 01009BD003B36000,01009BD003B36000,status-playable,playable,2022-08-24 11:15:31,9 +53,Pokkén Tournament DX - 0100B3F000BE2000,0100B3F000BE2000,status-playable;nvdec;ldn-works;opengl-backend-bug;LAN;amd-vendor-bug;intel-vendor-bug,playable,2024-07-18 23:11:08,24 +55,Farming Simulator Nintendo Switch Edition,,nvdec;status-playable,playable,2021-01-19 14:46:44,6 +56,Sonic Forces - 01001270012B6000,01001270012B6000,status-playable,playable,2024-07-28 13:11:21,13 +57,One Piece Pirate Warriors 3,,nvdec;status-playable,playable,2020-05-10 6:23:52,6 +58,Dragon Quest Heroes I + II (JP) - 0100CD3000BDC000,0100CD3000BDC000,nvdec;status-playable,playable,2021-04-08 14:27:16,9 +59,Dragon Quest Builders - 010008900705C000,010008900705C000,gpu;status-ingame;nvdec,ingame,2023-08-14 9:54:36,19 +60,Don't Starve - 0100751007ADA000,0100751007ADA000,status-playable;nvdec,playable,2022-02-05 20:43:34,7 +61,Bud Spencer & Terence Hill - Slaps and Beans - 01000D200AC0C000,01000D200AC0C000,status-playable,playable,2022-07-17 12:37:00,6 +62,Fantasy Hero Unsigned Legacy - 0100767008502000,0100767008502000,status-playable,playable,2022-07-26 12:28:52,8 +64,MUSNYX,,status-playable,playable,2020-05-08 14:24:43,4 +65,Mario Tennis Aces - 0100BDE00862A000,0100BDE00862A000,gpu;status-ingame;nvdec;ldn-works;LAN,ingame,2024-09-28 15:54:40,23 +66,Higurashi no Naku Koro ni Hō - 0100F6A00A684000,0100F6A00A684000,audio;status-ingame,ingame,2021-09-18 14:40:28,10 +67,Nintendo Entertainment System - Nintendo Switch Online - 0100D870045B6000,0100D870045B6000,status-playable;online,playable,2022-07-01 15:45:06,3 +68,SEGA Ages: Sonic The Hedgehog - 010051F00AC5E000,010051F00AC5E000,slow;status-playable,playable,2023-03-05 20:16:31,10 +69,10 Second Run Returns - 01004D1007926000,01004D1007926000,gpu;status-ingame,ingame,2022-07-17 13:06:18,8 +70,PriPara: All Idol Perfect Stage - 010007F00879E000,010007F00879E000,status-playable,playable,2022-11-22 16:35:52,4 +71,Shantae and the Pirate's Curse - 0100EFD00A4FA000,0100EFD00A4FA000,status-playable,playable,2024-04-29 17:21:57,11 +72,DARK SOULS™: REMASTERED - 01004AB00A260000,01004AB00A260000,gpu;status-ingame;nvdec;online-broken,ingame,2024-04-09 19:47:58,15 +73,The Liar Princess and the Blind Prince,,audio;slow;status-playable,playable,2020-06-08 21:23:28,3 +74,Dead Cells - 0100646009FBE000,0100646009FBE000,status-playable,playable,2021-09-22 22:18:49,7 +75,Sonic Mania,,status-playable,playable,2020-06-08 17:30:57,6 +76,The Mahjong,,Needs Update;crash;services;status-nothing,nothing,2021-04-01 22:06:22,6 +77,Angels of Death - 0100AE000AEBC000,0100AE000AEBC000,nvdec;status-playable,playable,2021-02-22 14:17:15,7 +78,Penny-Punching Princess - 0100C510049E0000,0100C510049E0000,status-playable,playable,2022-08-09 13:37:05,6 +79,Just Shapes & Beats,,ldn-untested;nvdec;status-playable,playable,2021-02-09 12:18:36,7 +80,Minecraft - Nintendo Switch Edition - 01006BD001E06000,01006BD001E06000,status-playable;ldn-broken,playable,2023-10-15 1:47:08,17 +81,FINAL FANTASY XV POCKET EDITION HD,,status-playable,playable,2021-01-05 17:52:08,5 +82,Dragon Ball Xenoverse 2 - 010078D000F88000,010078D000F88000,gpu;status-ingame;nvdec;online;ldn-untested,ingame,2022-07-24 12:31:01,12 +83,Atelier Lydie & Suelle: The Alchemists and the Mysterious Paintings - 010009900947A000,010009900947A000,nvdec;status-playable,playable,2021-06-03 18:37:01,11 +84,Nights of Azure 2: Bride of the New Moon - 0100628004BCE000,0100628004BCE000,status-menus;crash;nvdec;regression,menus,2022-11-24 16:00:39,9 +85,RXN -Raijin-,,nvdec;status-playable,playable,2021-01-10 16:05:43,6 +86,The Legend of Zelda: Breath of the Wild - 01007EF00011E000,01007EF00011E000,gpu;status-ingame;amd-vendor-bug;mac-bug,ingame,2024-09-23 19:35:46,66 +87,The Messenger,,status-playable,playable,2020-03-22 13:51:37,4 +88,Starlink: Battle for Atlas - 01002CC003FE6000,01002CC003FE6000,services-horizon;status-nothing;crash;Needs Update,nothing,2024-05-05 17:25:11,13 +89,Nintendo Labo - Toy-Con 01: Variety Kit - 0100C4B0034B2000,0100C4B0034B2000,gpu;status-ingame,ingame,2022-08-07 12:56:07,7 +90,Diablo III: Eternal Collection - 01001B300B9BE000,01001B300B9BE000,status-playable;online-broken;ldn-works,playable,2023-08-21 23:48:03,49 +91,Road Redemption - 010053000B986000,010053000B986000,status-playable;online-broken,playable,2022-08-12 11:26:20,4 +92,Brawlhalla - 0100C6800B934000,0100C6800B934000,online;opengl;status-playable,playable,2021-06-03 18:26:09,8 +93,Super Mario Odyssey - 0100000000010000,0100000000010000,status-playable;nvdec;intel-vendor-bug;mac-bug,playable,2024-08-25 1:32:34,69 +95,Sonic Mania Plus - 01009AA000FAA000,01009AA000FAA000,status-playable,playable,2022-01-16 4:09:11,6 +96,Pokken Tournament DX Demo - 010030D005AE6000,010030D005AE6000,status-playable;demo;opengl-backend-bug,playable,2022-08-10 12:03:19,4 +97,Fast RMX - 01009510001CA000,01009510001CA000,slow;status-ingame;crash;ldn-partial,ingame,2024-06-22 20:48:58,22 +98,Steins;Gate Elite,,status-playable,playable,2020-08-04 7:33:32,4 +99,Memories Off -Innocent Fille- for Dearest,,status-playable,playable,2020-08-04 7:31:22,4 +100,Enchanting Mahjong Match,,gpu;status-ingame,ingame,2020-04-17 22:01:31,3 +101,Code of Princess EX - 010034E005C9C000,010034E005C9C000,nvdec;online;status-playable,playable,2021-06-03 10:50:13,4 +102,20XX - 0100749009844000,0100749009844000,gpu;status-ingame,ingame,2023-08-14 9:41:44,11 +103,Cartoon Network Battle Crashers - 0100085003A2A000,0100085003A2A000,status-playable,playable,2022-07-21 21:55:40,7 +104,Danmaku Unlimited 3,,status-playable,playable,2020-11-15 0:48:35,8 +105,Mega Man Legacy Collection Vol.1 - 01002D4007AE0000,01002D4007AE0000,gpu;status-ingame,ingame,2021-06-03 18:17:17,8 +106,Sparkle ZERO,,gpu;slow;status-ingame,ingame,2020-03-23 18:19:18,3 +107,Sparkle 2,,status-playable,playable,2020-10-19 11:51:39,6 +108,Sparkle Unleashed - 01000DC007E90000,01000DC007E90000,status-playable,playable,2021-06-03 14:52:15,4 +109,I AM SETSUNA - 0100849000BDA000,0100849000BDA000,status-playable,playable,2021-11-28 11:06:11,11 +110,Lego City Undercover - 01003A30012C0000,01003A30012C0000,status-playable;nvdec,playable,2024-09-30 8:44:27,9 +111,Mega Man X Legacy Collection,,audio;crash;services;status-menus,menus,2020-12-04 4:30:17,6 +112,Super Bomberman R - 01007AD00013E000,01007AD00013E000,status-playable;nvdec;online-broken;ldn-works,playable,2022-08-16 19:19:14,9 +113,Mega Man 11 - 0100B0C0086B0000,0100B0C0086B0000,status-playable,playable,2021-04-26 12:07:53,6 +114,Undertale - 010080B00AD66000,010080B00AD66000,status-playable,playable,2022-08-31 17:31:46,11 +115,"Pokémon: Let's Go, Eevee! - 0100187003A36000",0100187003A36000,status-ingame;crash;nvdec;online-broken;ldn-broken,ingame,2024-06-01 15:03:04,24 +116,Poly Bridge,,services;status-playable,playable,2020-06-08 23:32:41,6 +117,BlazBlue: Cross Tag Battle,,nvdec;online;status-playable,playable,2021-01-05 20:29:37,5 +118,Capcom Beat 'Em Up Bundle,,status-playable,playable,2020-03-23 18:31:24,3 +119,Owlboy,,status-playable,playable,2020-10-19 14:24:45,5 +120,Subarashiki Kono Sekai -Final Remix-,,services;slow;status-ingame,ingame,2020-02-10 16:21:51,4 +121,Ultra Street Fighter II: The Final Challengers - 01007330027EE000,01007330027EE000,status-playable;ldn-untested,playable,2021-11-25 7:54:58,5 +122,Mighty Gunvolt Burst,,status-playable,playable,2020-10-19 16:05:49,4 +123,Super Meat Boy,,services;status-playable,playable,2020-04-02 23:10:07,5 +124,UNO - 01005AA00372A000,01005AA00372A000,status-playable;nvdec;ldn-untested,playable,2022-07-28 14:49:47,9 +125,Tales of the Tiny Planet - 0100408007078000,0100408007078000,status-playable,playable,2021-01-25 15:47:41,6 +126,Octopath Traveler,,UE4;crash;gpu;status-ingame,ingame,2020-08-31 2:34:36,9 +127,A magical high school girl - 01008DD006C52000,01008DD006C52000,status-playable,playable,2022-07-19 14:40:50,4 +128,Superbeat: Xonic EX - 0100FF60051E2000,0100FF60051E2000,status-ingame;crash;nvdec,ingame,2022-08-19 18:54:40,2 +129,DRAGON BALL FighterZ - 0100A250097F0000,0100A250097F0000,UE4;ldn-broken;nvdec;online;status-playable,playable,2021-06-11 16:19:04,12 +130,Arcade Archives VS. SUPER MARIO BROS.,,online;status-playable,playable,2021-04-08 14:48:11,8 +131,Celeste,,status-playable,playable,2020-06-17 10:14:40,2 +132,Hollow Knight - 0100633007D48000,0100633007D48000,status-playable;nvdec,playable,2023-01-16 15:44:56,4 +133,Shining Resonance Refrain - 01009A5009A9E000,01009A5009A9E000,status-playable;nvdec,playable,2022-08-12 18:03:01,7 +134,Valkyria Chronicles 4 Demo - 0100FBD00B91E000,0100FBD00B91E000,slow;status-ingame;demo,ingame,2022-08-29 20:39:07,3 +136,Super Smash Bros. Ultimate - 01006A800016E000,01006A800016E000,gpu;status-ingame;crash;nvdec;ldn-works;intel-vendor-bug,ingame,2024-09-14 23:05:21,56 +137,Cendrillon palikA - 01006B000A666000,01006B000A666000,gpu;status-ingame;nvdec,ingame,2022-07-21 22:52:24,12 +138,Atari Flashback Classics,,,,2018-12-15 6:55:27,1 +139,RPG Maker MV,,nvdec;status-playable,playable,2021-01-05 20:12:01,5 +140,SNK 40th Anniversary Collection - 01004AB00AEF8000,01004AB00AEF8000,status-playable,playable,2022-08-14 13:33:15,8 +141,Firewatch - 0100AC300919A000,0100AC300919A000,status-playable,playable,2021-06-03 10:56:38,9 +142,Taiko no Tatsujin: Drum 'n' Fun! - 01002C000B552000,01002C000B552000,status-playable;online-broken;ldn-broken,playable,2023-05-20 15:10:12,12 +143,Fairy Fencer F™: Advent Dark Force - 0100F6D00B8F2000,0100F6D00B8F2000,status-ingame;32-bit;crash;nvdec,ingame,2023-04-16 3:53:48,9 +144,Azure Striker Gunvolt: STRIKER PACK - 0100192003FA4000,0100192003FA4000,32-bit;status-playable,playable,2024-02-10 23:51:21,12 +145,LIMBO - 01009C8009026000,01009C8009026000,cpu;status-boots;32-bit,boots,2023-06-28 15:39:19,10 +147,Dragon Marked for Death: Frontline Fighters (Empress & Warrior) - 010089700150E000,010089700150E000,status-playable;ldn-untested;audout,playable,2022-03-10 6:44:34,5 +148,SENRAN KAGURA Reflexions,,status-playable,playable,2020-03-23 19:15:23,11 +149,Dies irae Amantes amentes For Nintendo Switch - 0100BB900B5B4000,0100BB900B5B4000,status-nothing;32-bit;crash,nothing,2022-02-16 7:09:05,9 +150,TETRIS 99 - 010040600C5CE000,010040600C5CE000,gpu;status-ingame;online-broken;ldn-untested,ingame,2024-05-02 16:36:41,28 +151,Yoshi's Crafted World Demo Version,,gpu;status-boots;status-ingame,boots,2020-12-16 14:57:40,3 +152,8-BIT ADVENTURE STEINS;GATE,,audio;status-ingame,ingame,2020-01-12 15:05:06,1 +153,Ao no Kanata no Four Rhythm - 0100FA100620C000,0100FA100620C000,status-playable,playable,2022-07-21 10:50:42,8 +154,DELTARUNE Chapter 1 - 010023800D64A000,010023800D64A000,status-playable,playable,2023-01-22 4:47:44,4 +155,My Girlfriend is a Mermaid!?,,nvdec;status-playable,playable,2020-05-08 13:32:55,6 +156,SEGA Mega Drive Classics,,online;status-playable,playable,2021-01-05 11:08:00,5 +157,Aragami: Shadow Edition - 010071800BA74000,010071800BA74000,nvdec;status-playable,playable,2021-02-21 20:33:23,5 +158,この世の果てで恋を唄う少女YU-NO,,audio;status-ingame,ingame,2021-01-22 7:00:16,2 +159,Xenoblade Chronicles 2 - 0100E95004038000,0100E95004038000,deadlock;status-ingame;amd-vendor-bug,ingame,2024-03-28 14:31:41,51 +160,Atelier Rorona Arland no Renkinjutsushi DX (JP) - 01002D700B906000,01002D700B906000,status-playable;nvdec,playable,2022-12-02 17:26:54,3 +161,DEAD OR ALIVE Xtreme 3 Scarlet - 01009CC00C97C000,01009CC00C97C000,status-playable,playable,2022-07-23 17:05:06,23 +162,Blaster Master Zero 2 - 01005AA00D676000,01005AA00D676000,status-playable,playable,2021-04-08 15:22:59,2 +163,Vroom in the Night Sky - 01004E90028A2000,01004E90028A2000,status-playable;Needs Update;vulkan-backend-bug,playable,2023-02-20 2:32:29,7 +164,Our World Is Ended.,,nvdec;status-playable,playable,2021-01-19 22:46:57,6 +165,Mortal Kombat 11 - 0100F2200C984000,0100F2200C984000,slow;status-ingame;nvdec;online-broken;ldn-broken,ingame,2024-06-19 2:22:17,10 +166,SEGA Ages: Virtua Racing - 010054400D2E6000,010054400D2E6000,status-playable;online-broken,playable,2023-01-29 17:08:39,6 +167,BOXBOY! + BOXGIRL!,,status-playable,playable,2020-11-08 1:11:54,6 +168,Hyrule Warriors: Definitive Edition - 0100AE00096EA000,0100AE00096EA000,services-horizon;status-ingame;nvdec,ingame,2024-06-16 10:34:05,36 +170,Cytus α - 010063100B2C2000,010063100B2C2000,nvdec;status-playable,playable,2021-02-20 13:40:46,5 +171,Resident Evil 4 - 010099A00BC1E000,010099A00BC1E000,status-playable;nvdec,playable,2022-11-16 21:16:04,12 +172,Team Sonic Racing - 010092B0091D0000,010092B0091D0000,status-playable;online-broken;ldn-works,playable,2024-02-05 15:05:27,9 +173,Pang Adventures - 010083700B730000,010083700B730000,status-playable,playable,2021-04-10 12:16:59,7 +174,Remi Lore - 010095900B436000,010095900B436000,status-playable,playable,2021-06-03 18:58:15,6 +175,SKYHILL - 0100A0A00D1AA000,0100A0A00D1AA000,status-playable,playable,2021-03-05 15:19:11,5 +176,Valkyria Chronicles 4 - 01005C600AC68000,01005C600AC68000,audout;nvdec;status-playable,playable,2021-06-03 18:12:25,6 +177,Crystal Crisis - 0100972008234000,0100972008234000,nvdec;status-playable,playable,2021-02-20 13:52:44,5 +178,Crash Team Racing Nitro-Fueled - 0100F9F00C696000,0100F9F00C696000,gpu;status-ingame;nvdec;online-broken,ingame,2023-06-25 2:40:17,19 +179,Collection of Mana,,status-playable,playable,2020-10-19 19:29:45,5 +180,Super Mario Maker 2 - 01009B90006DC000,01009B90006DC000,status-playable;online-broken;ldn-broken,playable,2024-08-25 11:05:19,22 +181,Nekopara Vol.3 - 010045000E418000,010045000E418000,status-playable,playable,2022-10-03 12:49:04,6 +182,Moero Chronicle Hyper - 0100B8500D570000,0100B8500D570000,32-bit;status-playable,playable,2022-08-11 7:21:56,12 +183,Monster Hunter XX Demo,,32-bit;cpu;status-nothing,nothing,2020-03-22 10:12:28,3 +184,Super Neptunia RPG - 01004D600AC14000,01004D600AC14000,status-playable;nvdec,playable,2022-08-17 16:38:52,8 +185,Terraria - 0100E46006708000,0100E46006708000,status-playable;online-broken,playable,2022-09-12 16:14:57,5 +186,Megaman Legacy Collection 2,,status-playable,playable,2021-01-06 8:47:59,2 +187,Blazing Chrome,,status-playable,playable,2020-11-16 4:56:54,6 +188,Dragon Quest Builders 2 - 010042000A986000,010042000A986000,status-playable,playable,2024-04-19 16:36:38,10 +189,CLANNAD - 0100A3A00CC7E000,0100A3A00CC7E000,status-playable,playable,2021-06-03 17:01:02,6 +190,Ys VIII: Lacrimosa of Dana - 01007F200B0C0000,01007F200B0C0000,status-playable;nvdec,playable,2023-08-05 9:26:41,20 +191,PC Building Simulator,,status-playable,playable,2020-06-12 0:31:58,4 +192,NO THING,,status-playable,playable,2021-01-04 19:06:01,2 +193,The Swords of Ditto,,slow;status-ingame,ingame,2020-12-06 0:13:12,2 +194,Kill la Kill - IF,,status-playable,playable,2020-06-09 14:47:08,6 +195,Spyro Reignited Trilogy,,Needs More Attention;UE4;crash;gpu;nvdec;status-menus,menus,2021-01-22 13:01:56,6 +196,FINAL FANTASY VIII REMASTERED - 01008B900DC0A000,01008B900DC0A000,status-playable;nvdec,playable,2023-02-15 10:57:48,8 +197,Super Nintendo Entertainment System - Nintendo Switch Online,,status-playable,playable,2021-01-05 0:29:48,5 +198,スーパーファミコン Nintendo Switch Online,,slow;status-ingame,ingame,2020-03-14 5:48:38,3 +199,Street Fighter 30th Anniversary Collection - 0100024008310000,0100024008310000,status-playable;online-broken;ldn-partial,playable,2022-08-20 16:50:47,7 +200,Cadence of Hyrule Crypt of the NecroDancer Featuring The Legend of Zelda - 01000B900D8B0000,01000B900D8B0000,slow;status-playable;nvdec,playable,2024-04-01 22:43:40,19 +201,Nekopara Vol.2,,status-playable,playable,2020-12-16 11:04:47,5 +202,Nekopara Vol.1 - 0100B4900AD3E000,0100B4900AD3E000,status-playable;nvdec,playable,2022-08-06 18:25:54,5 +203,Gunvolt Chronicles: Luminous Avenger iX,,status-playable,playable,2020-06-16 22:47:07,3 +204,Outlast - 01008D4007A1E000,01008D4007A1E000,status-playable;nvdec;loader-allocator;vulkan-backend-bug,playable,2024-01-27 4:44:26,7 +205,OKAMI HD - 0100276009872000,0100276009872000,status-playable;nvdec,playable,2024-04-05 6:24:58,6 +207,Luigi's Mansion 3 - 0100DCA0064A6000,0100DCA0064A6000,gpu;slow;status-ingame;Needs Update;ldn-works,ingame,2024-09-27 22:17:36,57 +208,The Legend of Zelda: Link's Awakening - 01006BB00C6F0000,01006BB00C6F0000,gpu;status-ingame;nvdec;mac-bug,ingame,2023-08-09 17:37:40,29 +209,Cat Quest,,status-playable,playable,2020-04-02 23:09:32,4 +216,Xenoblade Chronicles 2: Torna - The Golden Country - 0100C9F009F7A000,0100C9F009F7A000,slow;status-playable;nvdec,playable,2023-01-28 16:47:28,4 +217,Devil May Cry,,nvdec;status-playable,playable,2021-01-04 19:43:08,2 +218,Fire Emblem Warriors - 0100F15003E64000,0100F15003E64000,status-playable;nvdec,playable,2023-05-10 1:53:10,17 +219,Disgaea 4 Complete Plus,,gpu;slow;status-playable,playable,2020-02-18 10:54:28,2 +220,Donkey Kong Country Tropical Freeze - 0100C1F0051B6000,0100C1F0051B6000,status-playable,playable,2024-08-05 16:46:10,16 +221,Puzzle and Dragons GOLD,,slow;status-playable,playable,2020-05-13 15:09:34,2 +222,Fe,,,,2020-01-21 4:08:33,1 +223,MARIO & SONIC AT THE OLYMPIC GAMES TOKYO 2020 - 010002C00C270000,010002C00C270000,status-ingame;crash;online-broken;ldn-works,ingame,2024-08-23 16:12:55,23 +224,void* tRrLM(); //Void Terrarium - 0100FF7010E7E000,0100FF7010E7E000,gpu;status-ingame;Needs Update;regression,ingame,2023-02-10 1:13:25,8 +225,Cars 3 Driven to Win - 01008D1001512000,01008D1001512000,gpu;status-ingame,ingame,2022-07-21 21:21:05,11 +226,Yu-Gi-Oh! Legacy of the Duelist: Link Evolution! - 010022400BE5A000,010022400BE5A000,status-playable,playable,2024-09-27 21:48:43,23 +227,Baba Is You - 01002CD00A51C000,01002CD00A51C000,status-playable,playable,2022-07-17 5:36:54,8 +228,Thronebreaker: The Witcher Tales - 0100E910103B4000,0100E910103B4000,nvdec;status-playable,playable,2021-06-03 16:40:15,4 +229,Fitness Boxing,,services;status-ingame,ingame,2020-05-17 14:00:48,4 +230,Fire Emblem: Three Houses - 010055D009F78000,010055D009F78000,status-playable;online-broken,playable,2024-09-14 23:53:50,47 +231,Persona 5: Scramble,,deadlock;status-boots,boots,2020-10-04 3:22:29,7 +232,Pokémon Sword - 0100ABF008968000,0100ABF008968000,deadlock;status-ingame;crash;online-broken;ldn-works;LAN,ingame,2024-08-26 15:40:37,63 +233,Mario + Rabbids Kingdom Battle - 010067300059A000,010067300059A000,slow;status-playable;opengl-backend-bug,playable,2024-05-06 10:16:54,20 +234,Tokyo Mirage Sessions #FE Encore - 0100A9400C9C2000,0100A9400C9C2000,32-bit;status-playable;nvdec,playable,2022-07-07 9:41:07,8 +235,Disgaea 1 Complete - 01004B100AF18000,01004B100AF18000,status-playable,playable,2023-01-30 21:45:23,3 +237,初音ミク Project DIVA MEGA39's - 0100F3100DA46000,0100F3100DA46000,audio;status-playable;loader-allocator,playable,2022-07-29 11:45:52,25 +239,Minna de Wai Wai! Spelunker - 0100C3F000BD8000,0100C3F000BD8000,status-nothing;crash,nothing,2021-11-03 7:17:11,4 +242,Nickelodeon Paw Patrol: On a Roll - 0100CEC003A4A000,0100CEC003A4A000,nvdec;status-playable,playable,2021-01-28 21:14:49,5 +243,Rune Factory 4 Special - 010051D00E3A4000,010051D00E3A4000,status-ingame;32-bit;crash;nvdec,ingame,2023-05-06 8:49:17,47 +244,Mario Kart 8 Deluxe - 0100152000022000,0100152000022000,32-bit;status-playable;ldn-works;LAN;amd-vendor-bug,playable,2024-09-19 11:55:17,57 +245,Pokémon Mystery Dungeon Rescue Team DX - 01003D200BAA2000,01003D200BAA2000,status-playable;mac-bug,playable,2024-01-21 0:16:32,9 +246,YGGDRA UNION We’ll Never Fight Alone,,status-playable,playable,2020-04-03 2:20:47,4 +247,メモリーズオフ - Innocent Fille - 010065500B218000,010065500B218000,status-playable,playable,2022-12-02 17:36:48,6 +248,Bokujou Monogatari Saikai no Mineraru Taun (Story of Seasons: Friends of Mineral Town) - 01001D900D9AC000,01001D900D9AC000,slow;status-ingame;crash;Needs Update,ingame,2022-04-24 22:46:04,4 +249,Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy - Deluxe Edition - 0100CE500D226000,0100CE500D226000,status-playable;nvdec;opengl,playable,2022-09-14 15:01:57,14 +250,Animal Crossing: New Horizons - 01006F8002326000,01006F8002326000,gpu;status-ingame;crash;nvdec;online-broken;ldn-works;mac-bug,ingame,2024-09-23 13:31:49,112 +251,Crayon Shin-chan The Storm Called Flaming Kasukabe Runner!,,services;status-menus,menus,2020-03-20 14:00:57,2 +252,Super One More Jump - 0100284007D6C000,0100284007D6C000,status-playable,playable,2022-08-17 16:47:47,5 +253,Trine - 0100D9000A930000,0100D9000A930000,ldn-untested;nvdec;status-playable,playable,2021-06-03 11:28:15,3 +254,Sky Force Reloaded,,status-playable,playable,2021-01-04 20:06:57,3 +255,World of Goo - 010009E001D90000,010009E001D90000,gpu;status-boots;32-bit;crash;regression,boots,2024-04-12 5:52:14,4 +256,ZERO GUNNER 2,,status-playable,playable,2021-01-04 20:17:14,2 +257,Zaccaria Pinball - 010092400A678000,010092400A678000,status-playable;online-broken,playable,2022-09-03 15:44:28,5 +258,1917 - The Alien Invasion DX,,status-playable,playable,2021-01-08 22:11:16,4 +259,Astro Duel Deluxe - 0100F0400351C000,0100F0400351C000,32-bit;status-playable,playable,2021-06-03 11:21:48,4 +260,Another World - 01003C300AAAE000,01003C300AAAE000,slow;status-playable,playable,2022-07-21 10:42:38,4 +261,Ring Fit Adventure - 01002FF008C24000,01002FF008C24000,crash;services;status-nothing,nothing,2021-04-14 19:00:01,7 +262,Arcade Classics Anniversary Collection - 010050000D6C4000,010050000D6C4000,status-playable,playable,2021-06-03 13:55:10,3 +263,Assault Android Cactus+ - 0100DF200B24C000,0100DF200B24C000,status-playable,playable,2021-06-03 13:23:55,6 +264,American Fugitive,,nvdec;status-playable,playable,2021-01-04 20:45:11,2 +265,Nickelodeon Kart Racers,,status-playable,playable,2021-01-07 12:16:49,2 +266,Neonwall - 0100743008694000,0100743008694000,status-playable;nvdec,playable,2022-08-06 18:49:52,3 +267,Never Stop Sneakin',,,,2020-03-19 12:55:40,1 +268,Next Up Hero,,online;status-playable,playable,2021-01-04 22:39:36,2 +269,Ninja Striker,,status-playable,playable,2020-12-08 19:33:29,3 +270,Not Not a Brain Buster,,status-playable,playable,2020-05-10 2:05:26,5 +271,Oh...Sir! The Hollywood Roast,,status-ingame,ingame,2020-12-06 0:42:30,2 +272,Old School Musical,,status-playable,playable,2020-12-10 12:51:12,3 +273,Abyss,,,,2020-03-19 15:41:55,1 +274,Alteric,,status-playable,playable,2020-11-08 13:53:22,10 +277,AIRHEART - Tales of Broken Wings - 01003DD00BFEE000,01003DD00BFEE000,status-playable,playable,2021-02-26 15:20:27,4 +278,Necrosphere,,,,2020-03-19 17:25:03,1 +279,Neverout,,,,2020-03-19 17:33:39,1 +280,Old Man's Journey - 0100CE2007A86000,0100CE2007A86000,nvdec;status-playable,playable,2021-01-28 19:16:52,2 +281,Dr Kawashima's Brain Training - 0100ED000D390000,0100ED000D390000,services;status-ingame,ingame,2023-06-04 0:06:46,3 +282,Nine Parchments - 0100D03003F0E000,0100D03003F0E000,status-playable;ldn-untested,playable,2022-08-07 12:32:08,3 +283,All-Star Fruit Racing - 0100C1F00A9B8000,0100C1F00A9B8000,status-playable;nvdec;UE4,playable,2022-07-21 0:35:37,3 +284,Armello,,nvdec;status-playable,playable,2021-01-07 11:43:26,3 +285,DOOM 64,,nvdec;status-playable;vulkan,playable,2020-10-13 23:47:28,11 +286,Motto New Pazzmatsu-san Shimpin Sotsugyo Keikaku,,,,2020-03-20 14:53:55,1 +287,Refreshing Sideways Puzzle Ghost Hammer,,status-playable,playable,2020-10-18 12:08:54,4 +288,Astebreed - 010057A00C1F6000,010057A00C1F6000,status-playable,playable,2022-07-21 17:33:54,3 +289,ASCENDANCE,,status-playable,playable,2021-01-05 10:54:40,2 +290,Astral Chain - 01007300020FA000,01007300020FA000,status-playable,playable,2024-07-17 18:02:19,15 +291,Oceanhorn,,status-playable,playable,2021-01-05 13:55:22,2 +292,NORTH,,nvdec;status-playable,playable,2021-01-05 16:17:44,2 +293,No Heroes Here,,online;status-playable,playable,2020-05-10 2:41:57,4 +294,New Frontier Days -Founding Pioneers-,,status-playable,playable,2020-12-10 12:45:07,3 +295,Star Ghost,,,,2020-03-20 23:40:10,1 +296,Stern Pinball Arcade - 0100AE0006474000,0100AE0006474000,status-playable,playable,2022-08-16 14:24:41,6 +297,Nightmare Boy,,status-playable,playable,2021-01-05 15:52:29,2 +298,Pinball FX3 - 0100DB7003828000,0100DB7003828000,status-playable;online-broken,playable,2022-11-11 23:49:07,5 +299,Polygod - 010017600B180000,010017600B180000,slow;status-ingame;regression,ingame,2022-08-10 14:38:14,3 +300,Prison Architect - 010029200AB1C000,010029200AB1C000,status-playable,playable,2021-04-10 12:27:58,4 +301,Psikyo Collection Vol 1,,32-bit;status-playable,playable,2020-10-11 13:18:47,3 +302,Raging Justice - 01003D00099EC000,01003D00099EC000,status-playable,playable,2021-06-03 14:06:50,6 +303,Old School Racer 2,,status-playable,playable,2020-10-19 12:11:26,3 +304,Death Road to Canada - 0100423009358000,0100423009358000,gpu;audio;status-nothing;32-bit;crash,nothing,2023-06-28 15:39:26,8 +305,Feather - 0100E4300CB3E000,0100E4300CB3E000,status-playable,playable,2021-06-03 14:11:27,3 +306,Laser Kitty Pow Pow,,,,2020-03-21 23:44:13,1 +307,Bad Dudes,,status-playable,playable,2020-12-10 12:30:56,3 +308,Bomber Crew - 01007900080B6000,01007900080B6000,status-playable,playable,2021-06-03 14:21:28,4 +309,Death Squared,,status-playable,playable,2020-12-04 13:00:15,3 +310,PAC-MAN CHAMPIONSHIP EDITION 2 PLUS,,status-playable,playable,2021-01-19 22:06:18,5 +311,RollerCoaster Tycoon Adventures,,nvdec;status-playable,playable,2021-01-05 18:14:18,2 +312,STAY - 0100616009082000,0100616009082000,crash;services;status-boots,boots,2021-04-23 14:24:52,3 +313,STRIKERS1945 for Nintendo Switch - 0100FF5005B76000,0100FF5005B76000,32-bit;status-playable,playable,2021-06-03 19:35:04,6 +314,STRIKERS1945II for Nintendo Switch - 0100720008ED2000,0100720008ED2000,32-bit;status-playable,playable,2021-06-03 19:43:00,5 +315,BLEED,,,,2020-03-22 9:15:11,1 +316,Earthworms Demo,,status-playable,playable,2021-01-05 16:57:11,2 +317,MEMBRANE,,,,2020-03-22 10:25:32,1 +318,Mercenary Kings,,online;status-playable,playable,2020-10-16 13:05:58,3 +319,Morphite,,status-playable,playable,2021-01-05 19:40:55,2 +320,Spiral Splatter,,status-playable,playable,2020-06-04 14:03:57,3 +321,Odium to the Core,,gpu;status-ingame,ingame,2021-01-08 14:03:52,3 +322,Brawl,,nvdec;slow;status-playable,playable,2020-06-04 14:23:18,3 +323,Defunct,,status-playable,playable,2021-01-08 21:33:46,2 +324,Dracula's Legacy,,nvdec;status-playable,playable,2020-12-10 13:24:25,3 +325,Submerged - 0100EDA00D866000,0100EDA00D866000,status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-08-16 15:17:01,7 +326,Resident Evil Revelations - 0100643002136000,0100643002136000,status-playable;nvdec;ldn-untested,playable,2022-08-11 12:44:19,3 +327,"Pokémon: Let's Go, Pikachu! - 010003F003A34000",010003F003A34000,status-ingame;crash;nvdec;online-broken;ldn-broken,ingame,2024-03-15 7:55:41,23 +328,Syberia 1 & 2 - 01004BB00421E000,01004BB00421E000,status-playable,playable,2021-12-24 12:06:25,8 +329,Light Fall,,nvdec;status-playable,playable,2021-01-18 14:55:36,3 +330,PLANET ALPHA,,UE4;gpu;status-ingame,ingame,2020-12-16 14:42:20,2 +331,Game Doraemon Nobita no Shin Kyoryu - 01006BD00F8C0000,01006BD00F8C0000,gpu;status-ingame,ingame,2023-02-27 2:03:28,3 +332,Shift Happens,,status-playable,playable,2021-01-05 21:24:18,2 +333,SENRAN KAGURA Peach Ball - 0100D1800D902000,0100D1800D902000,status-playable,playable,2021-06-03 15:12:10,3 +334,Shadow Bug,,,,2020-03-23 20:26:08,1 +335,Dandy Dungeon: Legend of Brave Yamada,,status-playable,playable,2021-01-06 9:48:47,2 +336,Scribblenauts Mega Pack,,nvdec;status-playable,playable,2020-12-17 22:56:14,2 +337,Scribblenauts Showdown,,gpu;nvdec;status-ingame,ingame,2020-12-17 23:05:53,2 +338,Super Chariot - 010065F004E5E000,010065F004E5E000,status-playable,playable,2021-06-03 13:19:01,5 +339,Table Top Racing World Tour Nitro Edition,,status-playable,playable,2020-04-05 23:21:30,4 +340,The Pinball Arcade - 0100CD300880E000,0100CD300880E000,status-playable;online-broken,playable,2022-08-22 19:49:46,6 +341,The Room - 010079400BEE0000,010079400BEE0000,status-playable,playable,2021-04-14 18:57:05,4 +342,The Binding of Isaac: Afterbirth+ - 010021C000B6A000,010021C000B6A000,status-playable,playable,2021-04-26 14:11:56,6 +343,World Soccer Pinball,,status-playable,playable,2021-01-06 0:37:02,2 +344,ZOMBIE GOLD RUSH,,online;status-playable,playable,2020-09-24 12:56:08,2 +345,Wondershot - 0100F5D00C812000,0100F5D00C812000,status-playable,playable,2022-08-31 21:05:31,4 +346,Yet Another Zombie Defense HD,,status-playable,playable,2021-01-06 0:18:39,2 +347,Among the Sleep - Enhanced Edition - 010046500C8D2000,010046500C8D2000,nvdec;status-playable,playable,2021-06-03 15:06:25,4 +348,Silence - 0100F1400B0D6000,0100F1400B0D6000,nvdec;status-playable,playable,2021-06-03 14:46:17,2 +349,A Robot Named Fight,,,,2020-03-24 19:27:39,1 +350,60 Seconds! - 0100969005E98000,0100969005E98000,services;status-ingame,ingame,2021-11-30 1:04:14,3 +351,Xenon Racer - 010028600BA16000,010028600BA16000,status-playable;nvdec;UE4,playable,2022-08-31 22:05:30,5 +352,Awesome Pea,,status-playable,playable,2020-10-11 12:39:23,4 +354,Woodle Tree 2,,gpu;slow;status-ingame,ingame,2020-06-04 18:44:00,4 +355,Volgarr the Viking,,status-playable,playable,2020-12-18 15:25:50,4 +356,VVVVVV,,,,2020-03-24 21:53:29,1 +357,Vegas Party - 01009CD003A0A000,01009CD003A0A000,status-playable,playable,2021-04-14 19:21:41,5 +358,Worms W.M.D - 01001AE005166000,01001AE005166000,gpu;status-boots;crash;nvdec;ldn-untested,boots,2023-09-16 21:42:59,7 +359,Ambition of the Slimes,,,,2020-03-24 22:46:18,1 +360,WINDJAMMERS,,online;status-playable,playable,2020-10-13 11:24:25,4 +361,WarGroove - 01000F0002BB6000,01000F0002BB6000,status-playable;online-broken,playable,2022-08-31 10:30:45,4 +362,Car Mechanic Manager,,status-playable,playable,2020-07-23 18:50:17,2 +363,Cattails - 010004400B28A000,010004400B28A000,status-playable,playable,2021-06-03 14:36:57,5 +364,Chameleon Run Deluxe Edition,,,,2020-03-25 0:20:21,1 +365,ClusterPuck 99,,status-playable,playable,2021-01-06 0:28:12,2 +366,Coloring Book - 0100A7000BD28000,0100A7000BD28000,status-playable,playable,2022-07-22 11:17:05,5 +367,Crashlands - 010027100BD16000,010027100BD16000,status-playable,playable,2021-05-27 20:30:06,3 +368,Crimsonland - 01005640080B0000,01005640080B0000,status-playable,playable,2021-05-27 20:50:54,2 +369,Cubikolor,,,,2020-03-25 0:39:17,1 +370,My Friend Pedro: Blood Bullets Bananas - 010031200B94C000,010031200B94C000,nvdec;status-playable,playable,2021-05-28 11:19:17,3 +371,VA-11 HALL-A - 0100A6700D66E000,0100A6700D66E000,status-playable,playable,2021-02-26 15:05:34,6 +372,Octodad Dadliest Catch - 0100CAB006F54000,0100CAB006F54000,crash;status-boots,boots,2021-04-23 15:26:12,3 +373,Neko Navy: Daydream Edition,,,,2020-03-25 10:11:47,1 +374,Neon Chrome - 010075E0047F8000,010075E0047F8000,status-playable,playable,2022-08-06 18:38:34,4 +375,NeuroVoider,,status-playable,playable,2020-06-04 18:20:05,3 +376,Ninjin: Clash of Carrots - 010003C00B868000,010003C00B868000,status-playable;online-broken,playable,2024-07-10 5:12:26,10 +377,Nuclien,,status-playable,playable,2020-05-10 5:32:55,3 +378,Number Place 10000 - 010020500C8C8000,010020500C8C8000,gpu;status-menus,menus,2021-11-24 9:14:23,7 +379,Octocopter: Double or Squids,,status-playable,playable,2021-01-06 1:30:16,2 +380,Odallus - 010084300C816000,010084300C816000,status-playable,playable,2022-08-08 12:37:58,4 +381,One Eyed Kutkh,,,,2020-03-25 11:42:58,1 +382,One More Dungeon,,status-playable,playable,2021-01-06 9:10:58,2 +383,1-2-Switch - 01000320000CC000,01000320000CC000,services;status-playable,playable,2022-02-18 14:44:03,3 +384,ACA NEOGEO AERO FIGHTERS 2 - 0100AC40038F4000,0100AC40038F4000,online;status-playable,playable,2021-04-08 15:44:09,3 +385,Captain Toad: Treasure Tracker - 01009BF0072D4000,01009BF0072D4000,32-bit;status-playable,playable,2024-04-25 0:50:16,3 +386,Vaccine,,nvdec;status-playable,playable,2021-01-06 1:02:07,2 +387,Carnival Games - 010088C0092FE000,010088C0092FE000,status-playable;nvdec,playable,2022-07-21 21:01:22,5 +388,OLYMPIC GAMES TOKYO 2020,,ldn-untested;nvdec;online;status-playable,playable,2021-01-06 1:20:24,2 +389,Yodanji,,,,2020-03-25 16:28:53,1 +390,Axiom Verge,,status-playable,playable,2020-10-20 1:07:18,2 +391,Blaster Master Zero - 0100225000FEE000,0100225000FEE000,32-bit;status-playable,playable,2021-03-05 13:22:33,2 +392,SamuraiAces for Nintendo Switch,,32-bit;status-playable,playable,2020-11-24 20:26:55,4 +393,Rogue Aces - 0100EC7009348000,0100EC7009348000,gpu;services;status-ingame;nvdec,ingame,2021-11-30 2:18:30,7 +394,Pokémon HOME,,Needs Update;crash;services;status-menus,menus,2020-12-06 6:01:51,2 +395,Safety First!,,status-playable,playable,2021-01-06 9:05:23,2 +396,3D MiniGolf,,status-playable,playable,2021-01-06 9:22:11,2 +397,DOUBLE DRAGON4,,,,2020-03-25 23:46:46,1 +398,Don't Die Mr. Robot DX - 010007200AC0E000,010007200AC0E000,status-playable;nvdec,playable,2022-09-02 18:34:38,7 +399,DERU - The Art of Cooperation,,status-playable,playable,2021-01-07 16:59:59,4 +400,Darts Up - 0100BA500B660000,0100BA500B660000,status-playable,playable,2021-04-14 17:22:22,2 +401,Deponia - 010023600C704000,010023600C704000,nvdec;status-playable,playable,2021-01-26 17:17:19,2 +402,Devious Dungeon - 01009EA00A320000,01009EA00A320000,status-playable,playable,2021-03-04 13:03:06,2 +403,Turok - 010085500D5F6000,010085500D5F6000,gpu;status-ingame,ingame,2021-06-04 13:16:24,3 +404,Toast Time: Smash Up!,,crash;services;status-menus,menus,2020-04-03 12:26:59,3 +405,The VideoKid,,nvdec;status-playable,playable,2021-01-06 9:28:24,2 +406,Timberman VS,,,,2020-03-26 14:18:29,1 +407,Time Recoil - 0100F770045CA000,0100F770045CA000,status-playable,playable,2022-08-24 12:44:03,3 +408,Toby: The Secret Mine,,nvdec;status-playable,playable,2021-01-06 9:22:33,2 +409,Toki Tori,,,,2020-03-26 14:49:54,1 +410,Totes the Goat,,,,2020-03-26 14:55:00,1 +411,Twin Robots: Ultimate Edition - 0100047009742000,0100047009742000,status-playable;nvdec,playable,2022-08-25 14:24:03,2 +412,Ultimate Runner - 010045200A1C2000,010045200A1C2000,status-playable,playable,2022-08-29 12:52:40,3 +413,UnExplored - Unlocked Edition,,status-playable,playable,2021-01-06 10:02:16,2 +414,Unepic - 01008F80049C6000,01008F80049C6000,status-playable,playable,2024-01-15 17:03:00,6 +415,Uncanny Valley - 01002D900C5E4000,01002D900C5E4000,nvdec;status-playable,playable,2021-06-04 13:28:45,2 +416,Ultra Hyperball,,status-playable,playable,2021-01-06 10:09:55,2 +417,Timespinner - 0100DD300CF3A000,0100DD300CF3A000,gpu;status-ingame,ingame,2022-08-09 9:39:11,5 +418,Tiny Barbarian DX,,,,2020-03-26 18:46:29,1 +419,TorqueL -Physics Modified Edition-,,,,2020-03-26 18:55:23,1 +420,Unholy Heights,,,,2020-03-26 19:03:43,1 +421,Uurnog Uurnlimited,,,,2020-03-26 19:34:02,1 +422,de Blob 2,,nvdec;status-playable,playable,2021-01-06 13:00:16,2 +423,The Trail: Frontier Challenge - 0100B0E0086F6000,0100B0E0086F6000,slow;status-playable,playable,2022-08-23 15:10:51,3 +425,Toy Stunt Bike: Tiptop's Trials - 01009FF00A160000,01009FF00A160000,UE4;status-playable,playable,2021-04-10 13:56:34,3 +426,TumbleSeed,,,,2020-03-26 21:27:06,1 +427,Type:Rider,,status-playable,playable,2021-01-06 13:12:55,2 +428,Dawn of the Breakers - 0100F0B0081DA000,0100F0B0081DA000,status-menus;online-broken;vulkan-backend-bug,menus,2022-12-08 14:40:03,5 +429,Thumper - 01006F6002840000,01006F6002840000,gpu;status-ingame,ingame,2024-08-12 2:41:07,6 +430,Revenge of Justice - 010027400F708000 ,010027400F708000,status-playable;nvdec,playable,2022-11-20 15:43:23,3 +431,Dead Synchronicity: Tomorrow Comes Today,,,,2020-03-26 23:13:28,1 +435,Them Bombs,,,,2020-03-27 12:46:15,1 +436,Alwa's Awakening,,status-playable,playable,2020-10-13 11:52:01,5 +437,La Mulana 2 - 010038000F644000,010038000F644000,status-playable,playable,2022-09-03 13:45:57,7 +438,Tied Together - 0100B6D00C2DE000,0100B6D00C2DE000,nvdec;status-playable,playable,2021-04-10 14:03:46,4 +439,Magic Scroll Tactics,,,,2020-03-27 14:00:41,1 +440,SeaBed,,status-playable,playable,2020-05-17 13:25:37,4 +441,Wenjia,,status-playable,playable,2020-06-08 11:38:30,4 +442,DragonBlaze for Nintendo Switch,,32-bit;status-playable,playable,2020-10-14 11:11:28,3 +443,Debris Infinity - 010034F00BFC8000,010034F00BFC8000,nvdec;online;status-playable,playable,2021-05-28 12:14:39,4 +444,Die for Valhalla!,,status-playable,playable,2021-01-06 16:09:14,2 +445,Double Cross,,status-playable,playable,2021-01-07 15:34:22,4 +446,Deep Ones,,services;status-nothing,nothing,2020-04-03 2:54:19,3 +447,One Step to Eden,,,,2020-03-27 16:31:39,1 +448,Bravely Default II Demo - 0100B6801137E000,0100B6801137E000,gpu;status-ingame;crash;UE4;demo,ingame,2022-09-27 5:39:47,7 +449,Prison Princess - 0100F4800F872000,0100F4800F872000,status-playable,playable,2022-11-20 15:00:25,4 +450,NinNinDays - 0100746010E4C000,0100746010E4C000,status-playable,playable,2022-11-20 15:17:29,4 +451,Syrup and the Ultimate Sweet,,,,2020-03-27 21:10:42,1 +452,Touhou Gensou Mahjong,,,,2020-03-27 21:36:20,1 +453,Shikhondo Soul Eater,,,,2020-03-27 22:14:23,1 +454, de Shooting wa Machigatteiru Daroka,,,,2020-03-27 22:27:54,1 +456,MY HERO ONE'S JUSTICE,,UE4;crash;gpu;online;status-menus,menus,2020-12-10 13:11:04,7 +457,Heaven Dust,,status-playable,playable,2020-05-17 14:02:41,4 +458,Touhou Sky Arena matsuri climax,,,,2020-03-28 0:25:17,1 +459,Mercenaries Wings The False Phoenix,,crash;services;status-nothing,nothing,2020-05-08 22:42:12,4 +460,Don't Sink - 0100C4D00B608000,0100C4D00B608000,gpu;status-ingame,ingame,2021-02-26 15:41:11,4 +461,Disease -Hidden Object-,,,,2020-03-28 8:17:51,1 +462,Dexteritrip,,status-playable,playable,2021-01-06 12:51:12,2 +463,Devil Engine - 010031B00CF66000,010031B00CF66000,status-playable,playable,2021-06-04 11:54:30,5 +464,Detective Gallo - 01009C0009842000,01009C0009842000,status-playable;nvdec,playable,2022-07-24 11:51:04,2 +465,Zettai kaikyu gakuen,,gpu;nvdec;status-ingame,ingame,2020-08-25 15:15:54,2 +466,Demetrios - The BIG Cynical Adventure - 0100AB600ACB4000,0100AB600ACB4000,status-playable,playable,2021-06-04 12:01:01,3 +467,Degrees of Separation,,status-playable,playable,2021-01-10 13:40:04,6 +468,De Mambo - 01008E900471E000,01008E900471E000,status-playable,playable,2021-04-10 12:39:40,4 +469,Death Mark,,status-playable,playable,2020-12-13 10:56:25,3 +470,Deemo - 01002CC0062B8000,01002CC0062B8000,status-playable,playable,2022-07-24 11:34:33,4 +472,Disgaea 5 Complete - 01005700031AE000,01005700031AE000,nvdec;status-playable,playable,2021-03-04 15:32:54,2 +473,The World Ends With You -Final Remix- - 0100C1500B82E000,0100C1500B82E000,status-playable;ldn-untested,playable,2022-07-09 1:11:21,13 +474,Don't Knock Twice - 0100E470067A8000,0100E470067A8000,status-playable,playable,2024-05-08 22:37:58,3 +475,True Fear: Forsaken Souls - Part 1,,nvdec;status-playable,playable,2020-12-15 21:39:52,3 +476,Disco Dodgeball Remix,,online;status-playable,playable,2020-09-28 23:24:49,2 +477,Demon's Crystals - 0100A2B00BD88000,0100A2B00BD88000,status-nothing;crash;regression,nothing,2022-12-07 16:33:17,3 +478,Dimension Drive,,,,2020-03-29 10:40:38,1 +479,Tower of Babel,,status-playable,playable,2021-01-06 17:05:15,2 +480,Disc Jam - 0100510004D2C000,0100510004D2C000,UE4;ldn-untested;nvdec;online;status-playable,playable,2021-04-08 16:40:35,4 +481,DIABOLIK LOVERS CHAOS LINEAGE - 010027400BD24000,010027400BD24000,gpu;status-ingame;Needs Update,ingame,2023-06-08 2:20:44,21 +482,Detention,,,,2020-03-29 11:17:35,1 +483,Tumblestone,,status-playable,playable,2021-01-07 17:49:20,4 +484,De Blob,,nvdec;status-playable,playable,2021-01-06 17:34:46,2 +485,The Voice ,,services;status-menus,menus,2020-07-28 20:48:49,2 +486,DESTINY CONNECT,,UE4;gpu;nvdec;status-ingame,ingame,2020-12-16 12:20:36,2 +487,The Sexy Brutale,,status-playable,playable,2021-01-06 17:48:28,2 +488,Unicornicopia,,,,2020-03-29 13:01:35,1 +489,Ultra Space Battle Brawl,,,,2020-03-29 13:13:02,1 +490,Unruly Heroes,,status-playable,playable,2021-01-07 18:09:31,4 +491,UglyDolls: An Imperfect Adventure - 010079000B56C000,010079000B56C000,status-playable;nvdec;UE4,playable,2022-08-25 14:42:16,5 +492,Use Your Words - 01007C0003AEC000,01007C0003AEC000,status-menus;nvdec;online-broken,menus,2022-08-29 17:22:10,6 +493,New Super Lucky's Tale - 010017700B6C2000,010017700B6C2000,status-playable,playable,2024-03-11 14:14:10,7 +494,Yooka-Laylee and the Impossible Lair - 010022F00DA66000,010022F00DA66000,status-playable,playable,2021-03-05 17:32:21,4 +495,GRIS - 0100E1700C31C000,0100E1700C31C000,nvdec;status-playable,playable,2021-06-03 13:33:44,3 +496,Monster Boy and the Cursed Kingdom - 01006F7001D10000,01006F7001D10000,status-playable;nvdec,playable,2022-08-04 20:06:32,3 +497,Guns Gore and Cannoli 2,,online;status-playable,playable,2021-01-06 18:43:59,2 +498,Mark of the Ninja Remastered - 01009A700A538000,01009A700A538000,status-playable,playable,2022-08-04 15:48:30,4 +499,DOOM - 0100416004C00000,0100416004C00000,gpu;slow;status-ingame;nvdec;online-broken,ingame,2024-09-23 15:40:07,11 +500,TINY METAL - 010074800741A000,010074800741A000,UE4;gpu;nvdec;status-ingame,ingame,2021-03-05 17:11:57,3 +501,Shadowgate,,status-playable,playable,2021-04-24 7:32:57,2 +502,R-Type Dimensions EX,,status-playable,playable,2020-10-09 12:04:43,3 +503,Thea: The Awakening,,status-playable,playable,2021-01-18 15:08:47,3 +506,Toki,,nvdec;status-playable,playable,2021-01-06 19:59:23,2 +507,Superhot - 01001A500E8B4000,01001A500E8B4000,status-playable,playable,2021-05-05 19:51:30,2 +508,Tools Up!,,crash;status-ingame,ingame,2020-07-21 12:58:17,4 +509,The Stretchers - 0100AA400A238000,0100AA400A238000,status-playable;nvdec;UE4,playable,2022-09-16 15:40:58,7 +510,Shantae: Half-Genie Hero Ultimate Edition,,status-playable,playable,2020-06-04 20:14:20,4 +511,Monster Hunter Generation Ultimate - 0100770008DD8000,0100770008DD8000,32-bit;status-playable;online-broken;ldn-works,playable,2024-03-18 14:35:36,25 +512,ATV Drift & Tricks - 01000F600B01E000,01000F600B01E000,UE4;online;status-playable,playable,2021-04-08 17:29:17,4 +513,Metaloid: Origin,,status-playable,playable,2020-06-04 20:26:35,3 +514,The Walking Dead: The Final Season - 010060F00AA70000,010060F00AA70000,status-playable;online-broken,playable,2022-08-23 17:22:32,3 +515,Lyrica,,,,2020-03-31 10:09:40,1 +516,Beat Cop,,status-playable,playable,2021-01-06 19:26:48,2 +517,Broforce - 010060A00B53C000,010060A00B53C000,ldn-untested;online;status-playable,playable,2021-05-28 12:23:38,4 +518,Ludo Mania,,crash;services;status-nothing,nothing,2020-04-03 0:33:47,2 +519,The Way Remastered,,,,2020-03-31 10:34:26,1 +520,Little Inferno,,32-bit;gpu;nvdec;status-ingame,ingame,2020-12-17 21:43:56,3 +521,Toki Tori 2+,,,,2020-03-31 10:53:13,1 +522,Bastion - 010038600B27E000,010038600B27E000,status-playable,playable,2022-02-15 14:15:24,5 +523,Lovers in a Dangerous Spacetime,,,,2020-03-31 13:45:03,1 +524,Back in 1995,,,,2020-03-31 13:52:35,1 +525,Lost Phone Stories,,services;status-ingame,ingame,2020-04-05 23:17:33,4 +526,The Walking Dead - 010029200B6AA000,010029200B6AA000,status-playable,playable,2021-06-04 13:10:56,3 +527,Beyblade Burst Battle Zero - 010068600AD16000,010068600AD16000,services;status-menus;crash;Needs Update,menus,2022-11-20 15:48:32,8 +528,Tiny Hands Adventure - 010061A00AE64000,010061A00AE64000,status-playable,playable,2022-08-24 16:07:48,3 +529,My Time At Portia - 0100E25008E68000,0100E25008E68000,status-playable,playable,2021-05-28 12:42:55,3 +531,NBA 2K Playgrounds 2 - 01001AE00C1B2000,01001AE00C1B2000,status-playable;nvdec;online-broken;UE4;vulkan-backend-bug,playable,2022-08-06 14:40:38,5 +532,Valfaris - 010089700F30C000,010089700F30C000,status-playable,playable,2022-09-16 21:37:24,5 +533,Wandersong - 0100F8A00853C000,0100F8A00853C000,nvdec;status-playable,playable,2021-06-04 15:33:34,6 +535,Untitled Goose Game,,status-playable,playable,2020-09-26 13:18:06,2 +536,Unbox: Newbie's Adventure - 0100592005164000,0100592005164000,status-playable;UE4,playable,2022-08-29 13:12:56,4 +537,Trine 4: The Nightmare Prince - 010055E00CA68000,010055E00CA68000,gpu;status-ingame;ldn-untested,ingame,2023-10-23 2:40:46,8 +538,Travis Strikes Again: No More Heroes - 010011600C946000,010011600C946000,status-playable;nvdec;UE4,playable,2022-08-25 12:36:38,6 +539,Bubble Bobble 4 Friends - 010010900F7B4000,010010900F7B4000,nvdec;status-playable,playable,2021-06-04 15:27:55,7 +540,Bloodstained: Curse of the Moon,,status-playable,playable,2020-09-04 10:42:17,2 +541,Unravel TWO - 0100E5D00CC0C000,0100E5D00CC0C000,status-playable;nvdec,playable,2024-05-23 15:45:05,14 +542,Blazing Beaks,,status-playable,playable,2020-06-04 20:37:06,5 +543,Moonlighter,,,,2020-04-01 12:52:32,1 +544,Rock N' Racing Grand Prix,,status-playable,playable,2021-01-06 20:23:57,2 +545,Blossom Tales - 0100C1000706C000,0100C1000706C000,status-playable,playable,2022-07-18 16:43:07,3 +546,Maria The Witch,,,,2020-04-01 13:22:05,1 +547,Runbow,,online;status-playable,playable,2021-01-08 22:47:44,5 +548,Salt And Sanctuary,,status-playable,playable,2020-10-22 11:52:19,3 +549,Bomb Chicken,,,,2020-04-01 13:52:21,1 +550,Typoman,,,,2020-04-01 14:01:55,1 +551,BOX Align,,crash;services;status-nothing,nothing,2020-04-03 17:26:56,3 +552,Bridge Constructor Portal,,,,2020-04-01 14:59:34,1 +553,METAGAL,,status-playable,playable,2020-06-05 0:05:48,3 +554,Severed,,status-playable,playable,2020-12-15 21:48:48,3 +555,Bombslinger - 010087300445A000,010087300445A000,services;status-menus,menus,2022-07-19 12:53:15,5 +556,ToeJam & Earl: Back in the Groove,,status-playable,playable,2021-01-06 22:56:58,2 +557,SHIFT QUANTUM,,UE4;crash;status-ingame,ingame,2020-11-06 21:54:08,2 +558,Mana Spark,,status-playable,playable,2020-12-10 13:41:01,3 +559,BOOST BEAST,,,,2020-04-01 22:07:28,1 +560,Bass Pro Shops: The Strike - Championship Edition - 0100E3100450E000,0100E3100450E000,gpu;status-boots;32-bit,boots,2022-12-09 15:58:16,6 +561,Semispheres,,status-playable,playable,2021-01-06 23:08:31,2 +562,Megaton Rainfall - 010005A00B312000,010005A00B312000,gpu;status-boots;opengl,boots,2022-08-04 18:29:43,5 +563,Romancing SaGa 2 - 01001F600829A000,01001F600829A000,status-playable,playable,2022-08-12 12:02:24,3 +564,Runner3,,,,2020-04-02 12:58:46,1 +565,Shakedown: Hawaii,,status-playable,playable,2021-01-07 9:44:36,2 +566,Minit,,,,2020-04-02 13:15:45,1 +567,Little Nightmares - 01002FC00412C000,01002FC00412C000,status-playable;nvdec;UE4,playable,2022-08-03 21:45:35,7 +568,Shephy,,,,2020-04-02 13:33:44,1 +569,Millie - 0100976008FBE000,0100976008FBE000,status-playable,playable,2021-01-26 20:47:19,3 +570,Bloodstained: Ritual of the Night - 010025A00DF2A000,010025A00DF2A000,status-playable;nvdec;UE4,playable,2022-07-18 14:27:35,4 +571,Shape Of The World - 0100B250009B96000,0100B250009B9600,UE4;status-playable,playable,2021-03-05 16:42:28,3 +572,Bendy and the Ink Machine - 010074500BBC4000,010074500BBC4000,status-playable,playable,2023-05-06 20:35:39,4 +573,Brothers: A Tale of Two Sons - 01000D500D08A000,01000D500D08A000,status-playable;nvdec;UE4,playable,2022-07-19 14:02:22,6 +574,Raging Loop,,,,2020-04-03 12:29:28,1 +575,A Hat In Time - 010056E00853A000,010056E00853A000,status-playable,playable,2024-06-25 19:52:44,4 +576,Cooking Mama: Cookstar - 010060700EFBA000,010060700EFBA000,status-menus;crash;loader-allocator,menus,2021-11-20 3:19:35,3 +578,Marble Power Blast - 01008E800D1FE000,01008E800D1FE000,status-playable,playable,2021-06-04 16:00:02,3 +579,NARUTO™: Ultimate Ninja® STORM - 0100715007354000,0100715007354000,status-playable;nvdec,playable,2022-08-06 14:10:31,3 +580,Oddmar,,,,2020-04-04 20:46:28,1 +581,BLEED 2,,,,2020-04-05 11:29:05,1 +582,Sea King - 0100E4A00D066000,0100E4A00D066000,UE4;nvdec;status-playable,playable,2021-06-04 15:49:22,2 +583,Sausage Sports Club,,gpu;status-ingame,ingame,2021-01-10 5:37:17,2 +584,Mini Metro,,,,2020-04-05 11:55:19,1 +585,Mega Mall Story - 0100BBC00CB9A000,0100BBC00CB9A000,slow;status-playable,playable,2022-08-04 17:10:58,3 +586,BILLIARD,,,,2020-04-05 13:41:11,1 +587,The Wardrobe,,,,2020-04-05 13:53:33,1 +588,LITTLE FRIENDS -DOGS & CATS-,,status-playable,playable,2020-11-12 12:45:51,3 +589,LOST SPHEAR,,status-playable,playable,2021-01-10 6:01:21,2 +590,Morphies Law,,UE4;crash;ldn-untested;nvdec;online;status-menus,menus,2020-11-22 17:05:29,4 +591,Mercenaries Saga Chronicles,,status-playable,playable,2021-01-10 12:48:19,2 +592,The Swindle - 010040D00B7CE000,010040D00B7CE000,status-playable;nvdec,playable,2022-08-22 20:53:52,2 +593,Monster Energy Supercross - The Official Videogame - 0100742007266000,0100742007266000,status-playable;nvdec;UE4,playable,2022-08-04 20:25:00,5 +594,Monster Energy Supercross - The Official Videogame 2 - 0100F8100B982000,0100F8100B982000,status-playable;nvdec;UE4;ldn-untested,playable,2022-08-04 21:21:24,5 +595,Lumo - 0100FF00042EE000,0100FF00042EE000,status-playable;nvdec,playable,2022-02-11 18:20:30,5 +596,Monopoly for Nintendo Switch - 01007430037F6000,01007430037F6000,status-playable;nvdec;online-broken,playable,2024-02-06 23:13:01,7 +597,Mantis Burn Racing - 0100E98002F6E000,0100E98002F6E000,status-playable;online-broken;ldn-broken,playable,2024-09-02 2:13:04,4 +598,Moorhuhn Remake,,,,2020-04-05 19:22:41,1 +599,Lovecraft's Untold Stories,,,,2020-04-05 19:31:15,1 +600,Moonfall Ultimate,,nvdec;status-playable,playable,2021-01-17 14:01:25,2 +602,Max: The Curse Of Brotherhood - 01001C9007614000,01001C9007614000,status-playable;nvdec,playable,2022-08-04 16:33:04,2 +603,Manticore - Galaxy on Fire - 0100C9A00952A000,0100C9A00952A000,status-boots;crash;nvdec,boots,2024-02-04 4:37:24,6 +604,The Shapeshifting Detective,,nvdec;status-playable,playable,2021-01-10 13:10:49,2 +605,Mom Hid My Game!,,,,2020-04-06 11:32:10,1 +606,Meow Motors,,UE4;gpu;status-ingame,ingame,2020-12-18 0:24:01,3 +607,Mahjong Solitaire Refresh - 01008C300B624000,01008C300B624000,status-boots;crash,boots,2022-12-09 12:02:55,5 +608,Lucah: Born of a Dream,,,,2020-04-06 12:11:01,1 +609,Moon Hunters,,,,2020-04-06 12:35:17,1 +610,Mad Carnage,,status-playable,playable,2021-01-10 13:00:07,2 +611,Monument Builders Rushmore,,,,2020-04-06 13:49:35,1 +612,Lost Sea,,,,2020-04-06 14:08:14,1 +613,Mahjong Deluxe 3,,,,2020-04-06 14:13:32,1 +614,MONSTER JAM CRUSH IT!™ - 010088400366E000,010088400366E000,UE4;nvdec;online;status-playable,playable,2021-04-08 19:29:27,5 +615,Midnight Deluxe,,,,2020-04-06 14:33:34,1 +616,Metropolis: Lux Obscura,,,,2020-04-06 14:47:15,1 +617,Lode Runner Legacy,,status-playable,playable,2021-01-10 14:10:28,2 +618,Masters of Anima - 0100CC7009196000,0100CC7009196000,status-playable;nvdec,playable,2022-08-04 16:00:09,4 +619,Monster Dynamite,,,,2020-04-06 17:55:14,1 +620,The Warlock of Firetop Mountain,,,,2020-04-06 21:44:13,1 +621,Mecho Tales - 0100C4F005EB4000,0100C4F005EB4000,status-playable,playable,2022-08-04 17:03:19,4 +622,Titan Quest - 0100605008268000,0100605008268000,status-playable;nvdec;online-broken,playable,2022-08-19 21:54:15,4 +623,This Is the Police - 0100066004D68000,0100066004D68000,status-playable,playable,2022-08-24 11:37:05,3 +625,Miles & Kilo,,status-playable,playable,2020-10-22 11:39:49,3 +626,This War of Mine: Complete Edition - 0100A8700BC2A000,0100A8700BC2A000,gpu;status-ingame;32-bit;nvdec,ingame,2022-08-24 12:00:44,5 +627,Transistor,,status-playable,playable,2020-10-22 11:28:02,3 +628,Momodora: Revere Under the Moonlight - 01004A400C320000,01004A400C320000,deadlock;status-nothing,nothing,2022-02-06 3:47:43,4 +629,Monster Puzzle,,status-playable,playable,2020-09-28 22:23:10,2 +630,Tiny Troopers Joint Ops XL,,,,2020-04-07 12:30:46,1 +631,This Is the Police 2 - 01004C100A04C000,01004C100A04C000,status-playable,playable,2022-08-24 11:49:17,3 +633,Trials Rising - 01003E800A102000,01003E800A102000,status-playable,playable,2024-02-11 1:36:39,11 +634,Mainlining,,status-playable,playable,2020-06-05 1:02:00,3 +635,Treadnauts,,status-playable,playable,2021-01-10 14:57:41,2 +636,Treasure Stack,,,,2020-04-07 13:27:32,1 +637,Monkey King: Master of the Clouds,,status-playable,playable,2020-09-28 22:35:48,2 +638,Trailblazers - 0100BCA00843A000,0100BCA00843A000,status-playable,playable,2021-03-02 20:40:49,2 +639,Stardew Valley - 0100E65002BB8000,0100E65002BB8000,status-playable;online-broken;ldn-untested,playable,2024-02-14 3:11:19,16 +640,TT Isle of Man,,nvdec;status-playable,playable,2020-06-22 12:25:13,3 +641,Truberbrook - 0100E6300D448000,0100E6300D448000,status-playable,playable,2021-06-04 17:08:00,3 +642,Troll and I - 0100F78002040000,0100F78002040000,gpu;nvdec;status-ingame,ingame,2021-06-04 16:58:50,3 +644,Rock 'N Racing Off Road DX,,status-playable,playable,2021-01-10 15:27:15,2 +645,Touhou Genso Wanderer RELOADED - 01004E900B082000,01004E900B082000,gpu;status-ingame;nvdec,ingame,2022-08-25 11:57:36,3 +646,Splasher,,,,2020-04-08 11:02:41,1 +647,Rogue Trooper Redux - 01001CC00416C000,01001CC00416C000,status-playable;nvdec;online-broken,playable,2022-08-12 11:53:01,4 +648,Semblance,,,,2020-04-08 11:22:11,1 +649,Saints Row: The Third - The Full Package - 0100DE600BEEE000,0100DE600BEEE000,slow;status-playable;LAN,playable,2023-08-24 2:40:58,4 +650,SEGA AGES PHANTASY STAR,,status-playable,playable,2021-01-11 12:49:48,2 +651,SEGA AGES SPACE HARRIER,,status-playable,playable,2021-01-11 12:57:40,2 +652,SEGA AGES OUTRUN,,status-playable,playable,2021-01-11 13:13:59,2 +653,Schlag den Star - 0100ACB004006000,0100ACB004006000,slow;status-playable;nvdec,playable,2022-08-12 14:28:22,4 +654,Serial Cleaner,,,,2020-04-08 15:26:22,1 +655,Rotating Brave,,,,2020-04-09 12:25:59,1 +656,SteamWorld Quest,,nvdec;status-playable,playable,2020-11-09 13:10:04,3 +657,Shaq Fu: A Legend Reborn,,,,2020-04-09 13:24:32,1 +658,Season Match Bundle - Part 1 and 2,,status-playable,playable,2021-01-11 13:28:23,2 +659,Bulb Boy,,,,2020-04-09 16:22:39,1 +660,SteamWorld Dig - 01009320084A4000,01009320084A4000,status-playable,playable,2024-08-19 12:12:23,3 +661,Shadows of Adam,,status-playable,playable,2021-01-11 13:35:58,2 +662,Battle Princess Madelyn,,status-playable,playable,2021-01-11 13:47:23,2 +663,Shiftlings - 01000750084B2000,01000750084B2000,nvdec;status-playable,playable,2021-03-04 13:49:54,2 +664,Save the Ninja Clan,,status-playable,playable,2021-01-11 13:56:37,2 +665,SteamWorld Heist: Ultimate Edition,,,,2020-04-10 11:21:15,1 +666,Battle Chef Brigade,,status-playable,playable,2021-01-11 14:16:28,2 +667,Shelter Generations - 01009EB004CB0000,01009EB004CB0000,status-playable,playable,2021-06-04 16:52:39,3 +668,Bow to Blood: Last Captain Standing,,slow;status-playable,playable,2020-10-23 10:51:21,3 +669,Samsara,,status-playable,playable,2021-01-11 15:14:12,2 +670,Touhou Kobuto V: Burst Battle,,status-playable,playable,2021-01-11 15:28:58,2 +671,Screencheat,,,,2020-04-10 13:16:02,1 +672,BlobCat - 0100F3500A20C000,0100F3500A20C000,status-playable,playable,2021-04-23 17:09:30,3 +673,SteamWorld Dig 2 - 0100CA9002322000,0100CA9002322000,status-playable,playable,2022-12-21 19:25:42,4 +674,She Remembered Caterpillars - 01004F50085F2000,01004F50085F2000,status-playable,playable,2022-08-12 17:45:14,3 +675,Broken Sword 5 - the Serpent's Curse - 01001E60085E6000,01001E60085E6000,status-playable,playable,2021-06-04 17:28:59,3 +676,Banner Saga 3,,slow;status-boots,boots,2021-01-11 16:53:57,2 +677,Stranger Things 3: The Game,,status-playable,playable,2021-01-11 17:44:09,2 +678,Blades of Time - 0100CFA00CC74000,0100CFA00CC74000,deadlock;status-boots;online,boots,2022-07-17 19:19:58,8 +679,BLAZBLUE CENTRALFICTION Special Edition,,nvdec;status-playable,playable,2020-12-15 23:50:04,3 +680,Brawlout - 010060200A4BE000,010060200A4BE000,ldn-untested;online;status-playable,playable,2021-06-04 17:35:35,4 +681,Bouncy Bob,,,,2020-04-10 16:45:27,1 +682,Broken Age - 0100EDD0068A6000,0100EDD0068A6000,status-playable,playable,2021-06-04 17:40:32,3 +683,Attack on Titan 2,,status-playable,playable,2021-01-04 11:40:01,3 +684,Battle Worlds: Kronos - 0100DEB00D5A8000,0100DEB00D5A8000,nvdec;status-playable,playable,2021-06-04 17:48:02,3 +685,BLADE ARCUS Rebellion From Shining - 0100C4400CB7C000,0100C4400CB7C000,status-playable,playable,2022-07-17 18:52:28,4 +686,Away: Journey to the Unexpected - 01002F1005F3C000,01002F1005F3C000,status-playable;nvdec;vulkan-backend-bug,playable,2022-11-06 15:31:04,5 +687,Batman: The Enemy Within,,crash;status-nothing,nothing,2020-10-16 5:49:27,2 +688,Batman - The Telltale Series,,nvdec;slow;status-playable,playable,2021-01-11 18:19:35,2 +689,Big Crown: Showdown - 010088100C35E000,010088100C35E000,status-menus;nvdec;online;ldn-untested,menus,2022-07-17 18:25:32,4 +690,Strike Suit Zero: Director's Cut - 010072500D52E000,010072500D52E000,crash;status-boots,boots,2021-04-23 17:15:14,3 +691,Black Paradox,,,,2020-04-11 12:13:22,1 +692,Spelunker Party! - 010021F004270000,010021F004270000,services;status-boots,boots,2022-08-16 11:25:49,4 +693,OK K.O.! Let's Play Heroes,,nvdec;status-playable,playable,2021-01-11 18:41:02,2 +694,Steredenn,,status-playable,playable,2021-01-13 9:19:42,2 +695,State of Mind,,UE4;crash;status-boots,boots,2020-06-22 22:17:50,2 +696,Bloody Zombies,,,,2020-04-11 18:23:57,1 +697,MudRunner - American Wilds - 01009D200952E000,01009D200952E000,gpu;status-ingame;ldn-untested;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-16 11:40:52,6 +698,Big Buck Hunter Arcade,,nvdec;status-playable,playable,2021-01-12 20:31:39,2 +699,Sparkle 2 Evo,,,,2020-04-11 18:48:19,1 +700,Brave Dungeon + Dark Witch's Story: COMBAT,,status-playable,playable,2021-01-12 21:06:34,2 +701,BAFL,,status-playable,playable,2021-01-13 8:32:51,2 +702,Steamburg,,status-playable,playable,2021-01-13 8:42:01,2 +703,Splatoon 2 - 01003BC0000A0000,01003BC0000A0000,status-playable;ldn-works;LAN,playable,2024-07-12 19:11:15,25 +704,Blade Strangers - 01005950022EC000,01005950022EC000,status-playable;nvdec,playable,2022-07-17 19:02:43,5 +705,Sports Party - 0100DE9005170000,0100DE9005170000,nvdec;status-playable,playable,2021-03-05 13:40:42,4 +706,Banner Saga,,,,2020-04-12 14:06:23,1 +707,Banner Saga 2,,crash;status-boots,boots,2021-01-13 8:56:09,2 +708,Hand of Fate 2 - 01003620068EA000,01003620068EA000,status-playable,playable,2022-08-01 15:44:16,3 +709,State of Anarchy: Master of Mayhem,,nvdec;status-playable,playable,2021-01-12 19:00:05,2 +710,Sphinx and the Cursed Mummy™ - 0100BD500BA94000,0100BD500BA94000,gpu;status-ingame;32-bit;opengl,ingame,2024-05-20 6:00:51,15 +711,Risk - 0100E8300A67A000,0100E8300A67A000,status-playable;nvdec;online-broken,playable,2022-08-01 18:53:28,5 +712,Baseball Riot - 01004860080A0000,01004860080A0000,status-playable,playable,2021-06-04 18:07:27,4 +713,Spartan - 0100E6A009A26000,0100E6A009A26000,UE4;nvdec;status-playable,playable,2021-03-05 15:53:19,3 +714,Halloween Pinball,,status-playable,playable,2021-01-12 16:00:46,2 +715,Streets of Red : Devil's Dare Deluxe,,,,2020-04-12 18:08:29,1 +716,Spider Solitaire F,,,,2020-04-12 20:26:44,1 +717,Starship Avenger Operation: Take Back Earth,,status-playable,playable,2021-01-12 15:52:55,2 +718,Battle Chasers: Nightwar,,nvdec;slow;status-playable,playable,2021-01-12 12:27:34,2 +719,Infinite Minigolf,,online;status-playable,playable,2020-09-29 12:26:25,2 +720,Blood Waves - 01007E700D17E000,01007E700D17E000,gpu;status-ingame,ingame,2022-07-18 13:04:46,4 +722,Stick It to the Man,,,,2020-04-13 12:29:25,1 +723,Bad Dream: Fever - 0100B3B00D81C000,0100B3B00D81C000,status-playable,playable,2021-06-04 18:33:12,6 +724,Spectrum - 01008B000A5AE000,01008B000A5AE000,status-playable,playable,2022-08-16 11:15:59,3 +725,Battlezone Gold Edition - 01006D800A988000,01006D800A988000,gpu;ldn-untested;online;status-boots,boots,2021-06-04 18:36:05,3 +726,Squareboy vs Bullies: Arena Edition,,,,2020-04-13 12:51:57,1 +727,Beach Buggy Racing - 010095C00406C000,010095C00406C000,online;status-playable,playable,2021-04-13 23:16:50,2 +728,Avenger Bird,,,,2020-04-13 13:01:51,1 +729,Beholder,,status-playable,playable,2020-10-16 12:48:58,3 +730,Binaries,,,,2020-04-13 13:12:42,1 +731,Space Ribbon - 010010A009830000,010010A009830000,status-playable,playable,2022-08-15 17:17:10,3 +732,BINGO for Nintendo Switch,,status-playable,playable,2020-07-23 16:17:36,2 +733,Bibi Blocksberg - Big Broom Race 3,,status-playable,playable,2021-01-11 19:07:16,2 +734,Sparkle 3: Genesis,,,,2020-04-13 14:01:48,1 +735,"Bury me, my Love",,status-playable,playable,2020-11-07 12:47:37,3 +736,Bad North - 0100E98006F22000,0100E98006F22000,status-playable,playable,2022-07-17 13:44:25,4 +737,Stikbold! A Dodgeball Adventure DELUXE,,status-playable,playable,2021-01-11 20:12:54,2 +738,BUTCHER,,status-playable,playable,2021-01-11 18:50:17,2 +739,Bird Game + - 01001B700B278000,01001B700B278000,status-playable;online,playable,2022-07-17 18:41:57,3 +740,SpiritSphere DX - 01009D60080B4000,01009D60080B4000,status-playable,playable,2021-07-03 23:37:49,3 +741,Behind The Screen,,,,2020-04-13 15:41:34,1 +742,Bibi & Tina - Adventures with Horses,,nvdec;slow;status-playable,playable,2021-01-13 8:58:09,2 +743,Space Dave,,,,2020-04-13 15:57:37,1 +744,Hellblade: Senua's Sacrifice - 010044500CF8E000,010044500CF8E000,gpu;status-ingame;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-01 19:36:50,5 +745,Happy Birthdays,,,,2020-04-13 23:34:41,1 +746,GUILTY GEAR XX ACCENT CORE PLUS R,,nvdec;status-playable,playable,2021-01-13 9:28:33,2 +747,Hob: The Definitive Edition,,status-playable,playable,2021-01-13 9:39:19,2 +748,Jurassic Pinball - 0100CE100A826000,0100CE100A826000,status-playable,playable,2021-06-04 19:02:37,3 +749,Hyper Light Drifter - Special Edition - 01003B200B372000,01003B200B372000,status-playable;vulkan-backend-bug,playable,2023-01-13 15:44:48,13 +750,GUNBIRD for Nintendo Switch - 01003C6008940000,01003C6008940000,32-bit;status-playable,playable,2021-06-04 19:16:01,4 +751,GUNBIRD2 for Nintendo Switch,,status-playable,playable,2020-10-10 14:41:16,3 +752,Hammerwatch - 01003B9007E86000,01003B9007E86000,status-playable;online-broken;ldn-broken,playable,2022-08-01 16:28:46,2 +753,Into The Breach,,,,2020-04-14 14:05:04,1 +754,Horizon Chase Turbo - 01009EA00B714000,01009EA00B714000,status-playable,playable,2021-02-19 19:40:56,4 +755,Gunlord X,,,,2020-04-14 14:30:34,1 +756,Ittle Dew 2+,,status-playable,playable,2020-11-17 11:44:32,2 +757,Hue,,,,2020-04-14 14:52:35,1 +758,Iconoclasts - 0100BC60099FE000,0100BC60099FE000,status-playable,playable,2021-08-30 21:11:04,5 +759,James Pond Operation Robocod,,status-playable,playable,2021-01-13 9:48:45,2 +760,Hello Neighbor - 0100FAA00B168000,0100FAA00B168000,status-playable;UE4,playable,2022-08-01 21:32:23,5 +761,Gunman Clive HD Collection,,status-playable,playable,2020-10-09 12:17:35,3 +762,Human Resource Machine,,32-bit;status-playable,playable,2020-12-17 21:47:09,2 +763,INSIDE - 0100D2D009028000,0100D2D009028000,status-playable,playable,2021-12-25 20:24:56,3 +765,Hello Neighbor: Hide And Seek,,UE4;gpu;slow;status-ingame,ingame,2020-10-24 10:59:57,3 +766,Has-Been Heroes,,status-playable,playable,2021-01-13 13:31:48,2 +767,GUNBARICH for Nintendo Switch,,,,2020-04-14 21:58:40,1 +768,Hell is Other Demons,,status-playable,playable,2021-01-13 13:23:02,2 +769,"I, Zombie",,status-playable,playable,2021-01-13 14:53:44,2 +770,Hello Kitty Kruisers With Sanrio Friends - 010087D0084A8000,010087D0084A8000,nvdec;status-playable,playable,2021-06-04 19:08:46,3 +771,IMPLOSION - 0100737003190000,0100737003190000,status-playable;nvdec,playable,2021-12-12 3:52:13,4 +772,Ikaruga - 01009F20086A0000,01009F20086A0000,status-playable,playable,2023-04-06 15:00:02,4 +773,Ironcast,,status-playable,playable,2021-01-13 13:54:29,2 +774,Jettomero: Hero of the Universe - 0100A5A00AF26000,0100A5A00AF26000,status-playable,playable,2022-08-02 14:46:43,2 +775,Harvest Moon: Light of Hope Special Edition,,,,2020-04-15 13:00:41,1 +776,Heroine Anthem Zero episode 1 - 01001B70080F0000,01001B70080F0000,status-playable;vulkan-backend-bug,playable,2022-08-01 22:02:36,4 +777,Hunting Simulator - 0100C460040EA000,0100C460040EA000,status-playable;UE4,playable,2022-08-02 10:54:08,5 +778,Guts and Glory,,,,2020-04-15 14:06:57,1 +779,Island Flight Simulator - 010077900440A000,010077900440A000,status-playable,playable,2021-06-04 19:42:46,2 +780,Hollow - 0100F2100061E8000,0100F2100061E800,UE4;gpu;status-ingame,ingame,2021-03-03 23:42:56,2 +781,Heroes of the Monkey Tavern,,,,2020-04-15 15:24:33,1 +783,Jotun: Valhalla Edition,,,,2020-04-15 15:46:21,1 +784,OniNaki - 0100CF4011B2A000,0100CF4011B2A000,nvdec;status-playable,playable,2021-02-27 21:52:42,1 +785,Diary of consultation with me (female doctor),,,,2020-04-15 16:13:40,1 +786,JunkPlanet,,status-playable,playable,2020-11-09 12:38:33,3 +787,Hexologic,,,,2020-04-15 16:46:07,1 +788,JYDGE - 010035A0044E8000,010035A0044E8000,status-playable,playable,2022-08-02 21:20:13,4 +789,Mushroom Quest,,status-playable,playable,2020-05-17 13:07:08,4 +790,Infernium,,UE4;regression;status-nothing,nothing,2021-01-13 16:36:07,2 +791,Star-Crossed Myth - The Department of Wishes - 01005EB00EA10000,01005EB00EA10000,gpu;status-ingame,ingame,2021-06-04 19:34:36,3 +792,Joe Dever's Lone Wolf,,,,2020-04-15 18:27:04,1 +793,Final Fantasy VII - 0100A5B00BDC6000,0100A5B00BDC6000,status-playable,playable,2022-12-09 17:03:30,5 +794,Irony Curtain: From Matryoshka with Love - 0100E5700CD56000,0100E5700CD56000,status-playable,playable,2021-06-04 20:12:37,3 +795,Guns Gore and Cannoli,,,,2020-04-16 12:37:22,1 +796,ICEY,,status-playable,playable,2021-01-14 16:16:04,3 +797,Jumping Joe & Friends,,status-playable,playable,2021-01-13 17:09:42,2 +798,Johnny Turbo's Arcade Wizard Fire - 0100D230069CC000,0100D230069CC000,status-playable,playable,2022-08-02 20:39:15,2 +799,Johnny Turbo's Arcade Two Crude Dudes - 010080D002CC6000,010080D002CC6000,status-playable,playable,2022-08-02 20:29:50,3 +800,Johnny Turbo's Arcade Sly Spy,,,,2020-04-16 13:56:32,1 +801,Johnny Turbo's Arcade Caveman Ninja,,,,2020-04-16 14:11:07,1 +802,Heroki - 010057300B0DC000,010057300B0DC000,gpu;status-ingame,ingame,2023-07-30 19:30:01,6 +803,Immortal Redneck - 0100F400435A000,,nvdec;status-playable,playable,2021-01-27 18:36:28,2 +804,Hungry Shark World,,status-playable,playable,2021-01-13 18:26:08,2 +805,Homo Machina,,,,2020-04-16 15:10:24,1 +806,InnerSpace,,,,2020-04-16 16:38:45,1 +807,INK,,,,2020-04-16 16:48:26,1 +808,Human: Fall Flat,,status-playable,playable,2021-01-13 18:36:05,2 +809,Hotel Transylvania 3: Monsters Overboard - 0100017007980000,0100017007980000,nvdec;status-playable,playable,2021-01-27 18:55:31,2 +810,It's Spring Again,,,,2020-04-16 19:08:21,1 +811,FINAL FANTASY IX - 01006F000B056000,01006F000B056000,audout;nvdec;status-playable,playable,2021-06-05 11:35:00,6 +812,Harvest Life - 0100D0500AD30000,0100D0500AD30000,status-playable,playable,2022-08-01 16:51:45,2 +813,INVERSUS Deluxe - 01001D0003B96000,01001D0003B96000,status-playable;online-broken,playable,2022-08-02 14:35:36,3 +814,HoPiKo,,status-playable,playable,2021-01-13 20:12:38,2 +815,I Hate Running Backwards,,,,2020-04-16 20:53:45,1 +816,Hexagravity - 01007AC00E012000,01007AC00E012000,status-playable,playable,2021-05-28 13:47:48,3 +817,Holy Potatoes! A Weapon Shop?!,,,,2020-04-16 22:25:50,1 +818,In Between,,,,2020-04-17 11:08:14,1 +819,Hunter's Legacy: Purrfect Edition - 010068000CAC0000,010068000CAC0000,status-playable,playable,2022-08-02 10:33:31,3 +820,Job the Leprechaun,,status-playable,playable,2020-06-05 12:10:06,3 +821,Henry the Hamster Handler,,,,2020-04-17 11:30:02,1 +822,FINAL FANTASY XII THE ZODIAC AGE - 0100EB100AB42000,0100EB100AB42000,status-playable;opengl;vulkan-backend-bug,playable,2024-08-11 7:01:54,10 +823,Hiragana Pixel Party,,status-playable,playable,2021-01-14 8:36:50,2 +824,Heart and Slash,,status-playable,playable,2021-01-13 20:56:32,2 +825,InkSplosion,,,,2020-04-17 12:11:41,1 +826,I and Me,,,,2020-04-17 12:18:43,1 +827,Earthlock - 01006E50042EA000,01006E50042EA000,status-playable,playable,2021-06-05 11:51:02,3 +828,Figment - 0100118009C68000,0100118009C68000,nvdec;status-playable,playable,2021-01-27 19:36:05,2 +829,Dusty Raging Fist,,,,2020-04-18 14:02:20,1 +830,Eternum Ex,,status-playable,playable,2021-01-13 20:28:32,2 +831,Dragon's Lair Trilogy,,nvdec;status-playable,playable,2021-01-13 22:12:07,2 +832,FIFA 18 - 0100F7B002340000,0100F7B002340000,gpu;status-ingame;online-broken;ldn-untested,ingame,2022-07-26 12:43:59,4 +833,Dream Alone - 0100AA0093DC000,,nvdec;status-playable,playable,2021-01-27 19:41:50,2 +834,Fight of Gods,,,,2020-04-18 17:22:19,1 +835,Fallout Shelter,,,,2020-04-18 19:48:28,1 +836,Drift Legends,,,,2020-04-18 20:15:36,1 +837,Feudal Alloy,,status-playable,playable,2021-01-14 8:48:14,2 +838,EVERSPACE - 0100DCF0093EC000,0100DCF0093EC000,status-playable;UE4,playable,2022-08-14 1:16:24,14 +839,Epic Loon - 0100262009626000,0100262009626000,status-playable;nvdec,playable,2022-07-25 22:06:13,3 +840,EARTH WARS - 01009B7006C88000,01009B7006C88000,status-playable,playable,2021-06-05 11:18:33,3 +841,Finding Teddy 2 : Definitive Edition - 0100FF100FB68000,0100FF100FB68000,gpu;status-ingame,ingame,2024-04-19 16:51:33,5 +842,Rocket League - 01005EE0036EC000,01005EE0036EC000,gpu;status-ingame;online-broken;ldn-untested,ingame,2024-02-08 19:51:36,5 +845,Fimbul - 0100C3A00BB76000,0100C3A00BB76000,status-playable;nvdec,playable,2022-07-26 13:31:47,2 +846,Fairune Collection - 01008A6009758000,01008A6009758000,status-playable,playable,2021-06-06 15:29:56,3 +847,Enigmatis 2: The Mists of Ravenwood - 0100C6200A0AA000,0100C6200A0AA000,crash;regression;status-boots,boots,2021-06-06 15:15:30,3 +848,Energy Balance,,,,2020-04-22 11:13:18,1 +849,DragonFangZ,,status-playable,playable,2020-09-28 21:35:18,2 +850,Dragon's Dogma: Dark Arisen - 010032C00AC58000,010032C00AC58000,status-playable,playable,2022-07-24 12:58:33,5 +851,Everything,,,,2020-04-22 11:35:04,1 +852,Dust: An Elysian Tail - 0100B6E00A420000,0100B6E00A420000,status-playable,playable,2022-07-25 15:28:12,4 +853,EXTREME POKER,,,,2020-04-22 11:54:54,1 +854,Dyna Bomb,,status-playable,playable,2020-06-07 13:26:55,3 +855,Escape Doodland,,,,2020-04-22 12:10:08,1 +856,Drone Fight - 010058C00A916000,010058C00A916000,status-playable,playable,2022-07-24 14:31:56,4 +857,Resident Evil,,,,2020-04-22 12:31:10,1 +858,Dungeon Rushers,,,,2020-04-22 12:43:24,1 +859,Embers of Mirrim,,,,2020-04-22 12:56:52,1 +860,FIFA 19 - 0100FFA0093E8000,0100FFA0093E8000,gpu;status-ingame;nvdec;online-broken;ldn-untested,ingame,2022-07-26 13:07:07,4 +861,Energy Cycle,,,,2020-04-22 13:40:48,1 +862,Dragons Dawn of New Riders,,nvdec;status-playable,playable,2021-01-27 20:05:26,2 +863,Enter the Gungeon - 01009D60076F6000,01009D60076F6000,status-playable,playable,2022-07-25 20:28:33,3 +864,Drowning - 010052000A574000,010052000A574000,status-playable,playable,2022-07-25 14:28:26,3 +865,Earth Atlantis,,,,2020-04-22 14:42:46,1 +866,Evil Defenders,,nvdec;status-playable,playable,2020-09-28 17:11:00,2 +867,Dustoff Heli Rescue 2,,,,2020-04-22 15:31:34,1 +868,Energy Cycle Edge - 0100B8700BD14000,0100B8700BD14000,services;status-ingame,ingame,2021-11-30 5:02:31,3 +869,Element - 0100A6700AF10000,0100A6700AF10000,status-playable,playable,2022-07-25 17:17:16,3 +870,Duck Game,,,,2020-04-22 17:10:36,1 +871,Fill-a-Pix: Phil's Epic Adventure,,status-playable,playable,2020-12-22 13:48:22,3 +872,Elliot Quest - 0100128003A24000,0100128003A24000,status-playable,playable,2022-07-25 17:46:14,3 +873,Drawful 2 - 0100F7800A434000,0100F7800A434000,status-ingame,ingame,2022-07-24 13:50:21,5 +874,Energy Invasion,,status-playable,playable,2021-01-14 21:32:26,2 +875,Dungeon Stars,,status-playable,playable,2021-01-18 14:28:37,2 +876,FINAL FANTASY X/X-2 HD REMASTER - 0100BC300CB48000,0100BC300CB48000,gpu;status-ingame,ingame,2022-08-16 20:29:26,8 +878,Revenant Saga,,,,2020-04-22 23:52:09,1 +880,Resident Evil 0,,,,2020-04-23 1:04:42,1 +882,Fate/EXTELLA - 010053E002EA2000,010053E002EA2000,gpu;status-ingame;nvdec;online-broken;vulkan-backend-bug;opengl-backend-bug,ingame,2023-04-24 23:37:55,7 +883,RiME,,UE4;crash;gpu;status-boots,boots,2020-07-20 15:52:38,2 +884,DYNASTY WARRIORS 8: Xtreme Legends Definitive Edition - 0100E9A00CB30000,0100E9A00CB30000,status-playable;nvdec,playable,2024-06-26 0:16:30,4 +886,Rival Megagun,,nvdec;online;status-playable,playable,2021-01-19 14:01:46,2 +887,Riddled Corpses EX - 01002C700C326000,01002C700C326000,status-playable,playable,2021-06-06 16:02:44,6 +888,Fear Effect Sedna,,nvdec;status-playable,playable,2021-01-19 13:10:33,1 +889,Redout: Lightspeed Edition,,,,2020-04-23 14:46:59,1 +890,RESIDENT EVIL REVELATIONS 2 - 010095300212A000,010095300212A000,status-playable;online-broken;ldn-untested,playable,2022-08-11 12:57:50,3 +891,Robonauts - 0100618004096000,0100618004096000,status-playable;nvdec,playable,2022-08-12 11:33:23,3 +892,Road to Ballhalla - 010002F009A7A000,010002F009A7A000,UE4;status-playable,playable,2021-06-07 2:22:36,3 +893,Fate/EXTELLA LINK - 010051400B17A000,010051400B17A000,ldn-untested;nvdec;status-playable,playable,2021-01-27 0:45:50,6 +894,Rocket Fist,,,,2020-04-23 16:56:33,1 +895,RICO - 01009D5009234000,01009D5009234000,status-playable;nvdec;online-broken,playable,2022-08-11 20:16:40,4 +896,R.B.I. Baseball 17 - 0100B5A004302000,0100B5A004302000,status-playable;online-working,playable,2022-08-11 11:55:47,2 +897,Red Faction Guerrilla Re-Mars-tered - 010075000C608000,010075000C608000,ldn-untested;nvdec;online;status-playable,playable,2021-06-07 3:02:13,3 +900,Riptide GP: Renegade - 01002A6006AA4000,01002A6006AA4000,online;status-playable,playable,2021-04-13 23:33:02,4 +901,Realpolitiks,,,,2020-04-24 12:33:00,1 +902,Fall Of Light - Darkest Edition - 01005A600BE60000,01005A600BE60000,slow;status-ingame;nvdec,ingame,2024-07-24 4:19:26,5 +903,Reverie: Sweet As Edition,,,,2020-04-24 13:24:37,1 +904,RIVE: Ultimate Edition,,status-playable,playable,2021-03-24 18:45:55,3 +905,R.B.I. Baseball 18 - 01005CC007616000,01005CC007616000,status-playable;nvdec;online-working,playable,2022-08-11 11:27:52,3 +906,Refunct,,UE4;status-playable,playable,2020-12-15 22:46:21,2 +907,Rento Fortune Monolit,,ldn-untested;online;status-playable,playable,2021-01-19 19:52:21,2 +908,Super Mario Party - 010036B0034E4000,010036B0034E4000,gpu;status-ingame;Needs Update;ldn-works,ingame,2024-06-21 5:10:16,25 +909,Farm Together,,status-playable,playable,2021-01-19 20:01:19,2 +910,Regalia: Of Men and Monarchs - Royal Edition - 0100FDF0083A6000,0100FDF0083A6000,status-playable,playable,2022-08-11 12:24:01,3 +911,Red Game Without a Great Name,,status-playable,playable,2021-01-19 21:42:35,2 +912,R.B.I. Baseball 19 - 0100FCB00BF40000,0100FCB00BF40000,status-playable;nvdec;online-working,playable,2022-08-11 11:43:52,3 +913,Eagle Island - 010037400C7DA000,010037400C7DA000,status-playable,playable,2021-04-10 13:15:42,3 +915,RIOT: Civil Unrest - 010088E00B816000,010088E00B816000,status-playable,playable,2022-08-11 20:27:56,3 +917,Revenant Dogma,,,,2020-04-25 17:51:48,1 +919,World of Final Fantasy Maxima,,status-playable,playable,2020-06-07 13:57:23,2 +920,ITTA - 010068700C70A000,010068700C70A000,status-playable,playable,2021-06-07 3:15:52,6 +921,Pirates: All Aboard!,,,,2020-04-27 12:18:29,1 +922,Wolfenstein II The New Colossus - 01009040091E0000,01009040091E0000,gpu;status-ingame,ingame,2024-04-05 5:39:46,9 +923,Onimusha: Warlords,,nvdec;status-playable,playable,2020-07-31 13:08:39,2 +924,Radiation Island - 01009E40095EE000,01009E40095EE000,status-ingame;opengl;vulkan-backend-bug,ingame,2022-08-11 10:51:04,3 +925,Pool Panic,,,,2020-04-27 13:49:19,1 +926,Quad Fighter K,,,,2020-04-27 14:00:50,1 +927,PSYVARIAR DELTA - 0100EC100A790000,0100EC100A790000,nvdec;status-playable,playable,2021-01-20 13:01:46,2 +928,Puzzle Box Maker - 0100476004A9E000,0100476004A9E000,status-playable;nvdec;online-broken,playable,2022-08-10 18:00:52,5 +929,Psikyo Collection Vol. 3 - 0100A2300DB78000,0100A2300DB78000,status-ingame,ingame,2021-06-07 2:46:23,2 +930,Pianista: The Legendary Virtuoso - 010077300A86C000,010077300A86C000,status-playable;online-broken,playable,2022-08-09 14:52:56,3 +931,Quarantine Circular - 0100F1400BA88000,0100F1400BA88000,status-playable,playable,2021-01-20 15:24:15,2 +932,Pizza Titan Ultra - 01004A900C352000,01004A900C352000,nvdec;status-playable,playable,2021-01-20 15:58:42,2 +933,Phantom Trigger - 0100C31005A50000,0100C31005A50000,status-playable,playable,2022-08-09 14:27:30,2 +934,Operación Triunfo 2017 - 0100D5400BD90000,0100D5400BD90000,services;status-ingame;nvdec,ingame,2022-08-08 15:06:42,3 +935,Rad Rodgers Radical Edition - 010000600CD54000,010000600CD54000,status-playable;nvdec;online-broken,playable,2022-08-10 19:57:23,3 +936,Ape Out - 01005B100C268000,01005B100C268000,status-playable,playable,2022-09-26 19:04:47,3 +937,Decay of Logos - 010027700FD2E000,010027700FD2E000,status-playable;nvdec,playable,2022-09-13 14:42:13,3 +938,Q.U.B.E. 2 - 010023600AA34000,010023600AA34000,UE4;status-playable,playable,2021-03-03 21:38:57,2 +939,Pikuniku,,,,2020-04-28 11:02:59,1 +940,Picross S,,,,2020-04-28 11:14:18,1 +941,PHANTOM BREAKER: BATTLE GROUNDS OVER DRIVE - 0100063005C86000,0100063005C86000,audio;status-playable;nvdec,playable,2024-02-29 14:20:35,6 +942,Pilot Sports - 01007A500B0B2000,01007A500B0B2000,status-playable,playable,2021-01-20 15:04:17,2 +943,Paper Wars,,,,2020-04-28 11:46:56,1 +944,Fushigi no Gensokyo Lotus Labyrinth,,Needs Update;audio;gpu;nvdec;status-ingame,ingame,2021-01-20 15:30:02,2 +945,OPUS: The Day We Found Earth - 010049C0075F0000,010049C0075F0000,nvdec;status-playable,playable,2021-01-21 18:29:31,2 +946,Psikyo Collection Vol.2 - 01009D400C4A8000,01009D400C4A8000,32-bit;status-playable,playable,2021-06-07 3:22:07,3 +947,PixARK,,,,2020-04-28 12:32:16,1 +948,Puyo Puyo Tetris,,,,2020-04-28 12:46:37,1 +949,Puzzle Puppers,,,,2020-04-28 12:54:05,1 +950,OVERWHELM - 01005F000CC18000,01005F000CC18000,status-playable,playable,2021-01-21 18:37:18,2 +951,Rapala Fishing: Pro Series,,nvdec;status-playable,playable,2020-12-16 13:26:53,2 +952,Power Rangers: Battle for the Grid,,status-playable,playable,2020-06-21 16:52:42,4 +953,Professional Farmer: Nintendo Switch Edition,,slow;status-playable,playable,2020-12-16 13:38:19,2 +954,Project Nimbus: Complete Edition - 0100ACE00DAB6000,0100ACE00DAB6000,status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-08-10 17:35:43,6 +955,Perfect Angle - 010089F00A3B4000,010089F00A3B4000,status-playable,playable,2021-01-21 18:48:45,2 +956,Oniken: Unstoppable Edition - 010037900C814000,010037900C814000,status-playable,playable,2022-08-08 14:52:06,3 +957,Pixeljunk Monsters 2 - 0100E4D00A690000,0100E4D00A690000,status-playable,playable,2021-06-07 3:40:01,3 +958,Pocket Rumble,,,,2020-04-28 19:13:20,1 +959,Putty Pals,,,,2020-04-28 19:35:49,1 +960,Overcooked! Special Edition - 01009B900401E000,01009B900401E000,status-playable,playable,2022-08-08 20:48:52,3 +961,Panda Hero,,,,2020-04-28 20:33:24,1 +962,Piczle Lines DX,,UE4;crash;nvdec;status-menus,menus,2020-11-16 4:21:31,9 +963,Packet Queen #,,,,2020-04-28 21:43:26,1 +964,Punch Club,,,,2020-04-28 22:28:01,1 +965,Oxenfree,,,,2020-04-28 23:56:28,1 +966,Rayman Legends: Definitive Edition - 01005FF002E2A000,01005FF002E2A000,status-playable;nvdec;ldn-works,playable,2023-05-27 18:33:07,3 +968,Poi: Explorer Edition - 010086F0064CE000,010086F0064CE000,nvdec;status-playable,playable,2021-01-21 19:32:00,2 +969,Paladins - 011123900AEE0000,011123900AEE0000,online;status-menus,menus,2021-01-21 19:21:37,2 +970,Q-YO Blaster,,gpu;status-ingame,ingame,2020-06-07 22:36:53,3 +971,Please Don't Touch Anything,,,,2020-04-29 12:15:59,1 +972,Puzzle Adventure Blockle,,,,2020-04-29 13:05:19,1 +973,Plantera - 010087000428E000,010087000428E000,status-playable,playable,2022-08-09 15:36:28,4 +974,One Strike,,,,2020-04-29 13:43:11,1 +975,Party Arcade - 01007FC00A040000,01007FC00A040000,status-playable;online-broken;UE4;ldn-untested,playable,2022-08-09 12:32:53,4 +976,PAYDAY 2 - 0100274004052000,0100274004052000,status-playable;nvdec;online-broken;ldn-untested,playable,2022-08-09 12:56:39,3 +977,Quest of Dungeons - 01001DE005012000,01001DE005012000,status-playable,playable,2021-06-07 10:29:22,3 +978,Plague Road - 0100FF8005EB2000,0100FF8005EB2000,status-playable,playable,2022-08-09 15:27:14,5 +979,Picture Painting Puzzle 1000!,,,,2020-04-29 14:58:39,1 +980,Ni No Kuni Wrath of the White Witch - 0100E5600D446000,0100E5600D446000,status-boots;32-bit;nvdec,boots,2024-07-12 4:52:59,29 +981,Overcooked! 2 - 01006FD0080B2000,01006FD0080B2000,status-playable;ldn-untested,playable,2022-08-08 16:48:10,2 +982,Qbik,,,,2020-04-29 15:50:22,1 +983,Rain World - 010047600BF72000,010047600BF72000,status-playable,playable,2023-05-10 23:34:08,4 +984,Othello,,,,2020-04-29 17:06:10,1 +985,Pankapu,,,,2020-04-29 17:24:48,1 +986,Pode - 01009440095FE000,01009440095FE000,nvdec;status-playable,playable,2021-01-25 12:58:35,2 +987,PLANET RIX-13,,,,2020-04-29 22:00:16,1 +988,Picross S2,,status-playable,playable,2020-10-15 12:01:40,2 +989,Picross S3,,status-playable,playable,2020-10-15 11:55:27,3 +990,"POISOFT'S ""Thud""",,,,2020-04-29 22:26:06,1 +991,Paranautical Activity - 010063400B2EC000,010063400B2EC000,status-playable,playable,2021-01-25 13:49:19,2 +992,oOo: Ascension - 010074000BE8E000,010074000BE8E000,status-playable,playable,2021-01-25 14:13:34,2 +993,Pic-a-Pix Pieces,,,,2020-04-30 12:07:19,1 +994,Perception,,UE4;crash;nvdec;status-menus,menus,2020-12-18 11:49:23,3 +995,Pirate Pop Plus,,,,2020-04-30 12:19:57,1 +996,Outlast 2 - 0100DE70085E8000,0100DE70085E8000,status-ingame;crash;nvdec,ingame,2022-01-22 22:28:05,8 +997,Project Highrise: Architect's Edition - 0100BBD00976C000,0100BBD00976C000,status-playable,playable,2022-08-10 17:19:12,4 +998,Perchang - 010011700D1B2000,010011700D1B2000,status-playable,playable,2021-01-25 14:19:52,2 +999,Out Of The Box - 01005A700A166000,01005A700A166000,status-playable,playable,2021-01-28 1:34:27,3 +1000,Paperbound Brawlers - 01006AD00B82C000,01006AD00B82C000,status-playable,playable,2021-01-25 14:32:15,2 +1001,Party Golf - 0100B8E00359E000,0100B8E00359E000,status-playable;nvdec,playable,2022-08-09 12:38:30,8 +1002,PAN-PAN A tiny big adventure - 0100F0D004CAE000,0100F0D004CAE000,audout;status-playable,playable,2021-01-25 14:42:00,2 +1003,OVIVO,,,,2020-04-30 15:12:05,1 +1004,Penguin Wars,,,,2020-04-30 15:28:21,1 +1005,Physical Contact: Speed - 01008110036FE000,01008110036FE000,status-playable,playable,2022-08-09 14:40:46,3 +1006,Pic-a-Pix Deluxe,,,,2020-04-30 16:00:55,1 +1007,Puyo Puyo Esports,,,,2020-04-30 16:13:17,1 +1008,Qbics Paint - 0100A8D003BAE000,0100A8D003BAE000,gpu;services;status-ingame,ingame,2021-06-07 10:54:09,3 +1009,Piczle Lines DX 500 More Puzzles!,,UE4;status-playable,playable,2020-12-15 23:42:51,3 +1010,Pato Box - 010031F006E76000,010031F006E76000,status-playable,playable,2021-01-25 15:17:52,2 +1011,Phoenix Wright: Ace Attorney Trilogy - 0100CB000A142000,0100CB000A142000,status-playable,playable,2023-09-15 22:03:12,4 +1012,Physical Contact: 2048,,slow;status-playable,playable,2021-01-25 15:18:32,2 +1013,OPUS Collection - 01004A200BE82000,01004A200BE82000,status-playable,playable,2021-01-25 15:24:04,2 +1014,Party Planet,,,,2020-04-30 18:30:59,1 +1015,Physical Contact: Picture Place,,,,2020-04-30 18:43:20,1 +1017,Tanzia - 01004DF007564000,01004DF007564000,status-playable,playable,2021-06-07 11:10:25,4 +1018,Syberia 3 - 0100CBE004E6C000,0100CBE004E6C000,nvdec;status-playable,playable,2021-01-25 16:15:12,2 +1019,SUPER DRAGON BALL HEROES WORLD MISSION - 0100E5E00C464000,0100E5E00C464000,status-playable;nvdec;online-broken,playable,2022-08-17 12:56:30,4 +1020,Tales of Vesperia: Definitive Edition - 01002C0008E52000,01002C0008E52000,status-playable,playable,2024-09-28 3:20:47,10 +1021,Surgeon Simulator CPR,,,,2020-05-01 15:11:43,1 +1022,Super Inefficient Golf - 010056800B534000,010056800B534000,status-playable;UE4,playable,2022-08-17 15:53:45,4 +1023,Super Daryl Deluxe,,,,2020-05-01 18:23:22,1 +1024,Sushi Striker: The Way of Sushido,,nvdec;status-playable,playable,2020-06-26 20:49:11,5 +1025,Super Volley Blast - 010035B00B3F0000,010035B00B3F0000,status-playable,playable,2022-08-19 18:14:40,3 +1026,Stunt Kite Party - 0100AF000B4AE000,0100AF000B4AE000,nvdec;status-playable,playable,2021-01-25 17:16:56,2 +1027,Super Putty Squad - 0100331005E8E000,0100331005E8E000,gpu;status-ingame;32-bit,ingame,2024-04-29 15:51:54,6 +1028,SWORD ART ONLINE: Hollow Realization Deluxe Edition - 01001B600D1D6000,01001B600D1D6000,status-playable;nvdec,playable,2022-08-19 19:19:15,4 +1029,SUPER ROBOT WARS T,,online;status-playable,playable,2021-03-25 11:00:40,10 +1030,Tactical Mind - 01000F20083A8000,01000F20083A8000,status-playable,playable,2021-01-25 18:05:00,2 +1031,Super Beat Sports - 0100F7000464A000,0100F7000464A000,status-playable;ldn-untested,playable,2022-08-16 16:05:50,2 +1032,Suicide Guy - 01005CD00A2A2000,01005CD00A2A2000,status-playable,playable,2021-01-26 13:13:54,2 +1033,Sundered: Eldritch Edition - 01002D3007962000,01002D3007962000,gpu;status-ingame,ingame,2021-06-07 11:46:00,3 +1034,Super Blackjack Battle II Turbo - The Card Warriors,,,,2020-05-02 9:45:57,1 +1035,Super Skelemania,,status-playable,playable,2020-06-07 22:59:50,3 +1036,Super Ping Pong Trick Shot,,,,2020-05-02 10:02:55,1 +1037,Subsurface Circular,,,,2020-05-02 10:36:40,1 +1038,Super Hero Fight Club: Reloaded,,,,2020-05-02 10:49:51,1 +1039,Superola and the lost burgers,,,,2020-05-02 10:57:54,1 +1040,Super Tennis Blast - 01000500DB50000,,status-playable,playable,2022-08-19 16:20:48,3 +1041,Swap This!,,,,2020-05-02 11:37:51,1 +1042,Super Sportmatchen - 0100A9300A4AE000,0100A9300A4AE000,status-playable,playable,2022-08-19 12:34:40,3 +1043,Super Destronaut DX,,,,2020-05-02 12:13:53,1 +1044,Summer Sports Games,,,,2020-05-02 12:45:15,1 +1045,Super Kickers League - 0100196009998000,0100196009998000,status-playable,playable,2021-01-26 13:36:48,2 +1046,Switch 'N' Shoot,,,,2020-05-03 2:02:08,1 +1047,Super Mutant Alien Assault,,status-playable,playable,2020-06-07 23:32:45,3 +1048,Tallowmere,,,,2020-05-03 2:23:10,1 +1050,Wizard of Legend - 0100522007AAA000,0100522007AAA000,status-playable,playable,2021-06-07 12:20:46,3 +1051,WARRIORS OROCHI 4 ULTIMATE - 0100E8500AD58000,0100E8500AD58000,status-playable;nvdec;online-broken,playable,2024-08-07 1:50:37,10 +1052,What Remains of Edith Finch - 010038900DFE0000,010038900DFE0000,slow;status-playable;UE4,playable,2022-08-31 19:57:59,3 +1053,Wasteland 2: Director's Cut - 010039A00BC64000,010039A00BC64000,nvdec;status-playable,playable,2021-01-27 13:34:11,2 +1054,Victor Vran Overkill Edition - 0100E81007A06000,0100E81007A06000,gpu;deadlock;status-ingame;nvdec;opengl,ingame,2022-08-30 11:46:56,6 +1055,Witch Thief - 01002FC00C6D0000,01002FC00C6D0000,status-playable,playable,2021-01-27 18:16:07,2 +1056,VSR: Void Space Racing - 0100C7C00AE6C000,0100C7C00AE6C000,status-playable,playable,2021-01-27 14:08:59,2 +1057,Warparty,,nvdec;status-playable,playable,2021-01-27 18:26:32,2 +1058,Windstorm,,UE4;gpu;nvdec;status-ingame,ingame,2020-12-22 13:17:48,4 +1059,WAKU WAKU SWEETS,,,,2020-05-03 19:46:53,1 +1060,Windstorm - Ari's Arrival - 0100D6800CEAC000,0100D6800CEAC000,UE4;status-playable,playable,2021-06-07 19:33:19,3 +1061,V-Rally 4 - 010064400B138000,010064400B138000,gpu;nvdec;status-ingame,ingame,2021-06-07 19:37:31,5 +1062,Valkyria Chronicles - 0100CAF00B744000,0100CAF00B744000,status-ingame;32-bit;crash;nvdec,ingame,2022-11-23 20:03:32,8 +1063,WILL: A Wonderful World,,,,2020-05-03 22:34:06,1 +1065,WILD GUNS Reloaded - 0100CFC00A1D8000,0100CFC00A1D8000,status-playable,playable,2021-01-28 12:29:05,2 +1066,Valthirian Arc: Hero School Story,,,,2020-05-04 12:06:06,1 +1067,War Theatre - 010084D00A134000,010084D00A134000,gpu;status-ingame,ingame,2021-06-07 19:42:45,3 +1068,"Vostok, Inc. - 01004D8007368000",01004D8007368000,status-playable,playable,2021-01-27 17:43:59,2 +1069,Way of the Passive Fist - 0100BA200C378000,0100BA200C378000,gpu;status-ingame,ingame,2021-02-26 21:07:06,4 +1070,Vesta - 010057B00712C000,010057B00712C000,status-playable;nvdec,playable,2022-08-29 21:03:39,3 +1071,West of Loathing - 010031B00A4E8000,010031B00A4E8000,status-playable,playable,2021-01-28 12:35:19,2 +1072,Vaporum - 010030F00CA1E000,010030F00CA1E000,nvdec;status-playable,playable,2021-05-28 14:25:33,3 +1073,Vandals - 01007C500D650000,01007C500D650000,status-playable,playable,2021-01-27 21:45:46,2 +1074,Active Neurons - 010039A010DA0000,010039A010DA0000,status-playable,playable,2021-01-27 21:31:21,2 +1075,Voxel Sword - 0100BFB00D1F4000,0100BFB00D1F4000,status-playable,playable,2022-08-30 14:57:27,2 +1076,Levelhead,,online;status-ingame,ingame,2020-10-18 11:44:51,9 +1077,Violett - 01005880063AA000,01005880063AA000,nvdec;status-playable,playable,2021-01-28 13:09:36,2 +1078,Wheels of Aurelia - 0100DFC00405E000,0100DFC00405E000,status-playable,playable,2021-01-27 21:59:25,2 +1079,Varion,,,,2020-05-04 15:50:27,1 +1080,Warlock's Tower,,,,2020-05-04 16:03:52,1 +1081,Vectronom,,,,2020-05-04 16:14:05,1 +1083,Yooka-Laylee - 0100F110029C8000,0100F110029C8000,status-playable,playable,2021-01-28 14:21:45,2 +1084,WWE 2K18 - 010009800203E000,010009800203E000,status-playable;nvdec,playable,2023-10-21 17:22:01,4 +1085,Wulverblade - 010033700418A000,010033700418A000,nvdec;status-playable,playable,2021-01-27 22:29:05,2 +1086,YIIK: A Postmodern RPG - 0100634008266000,0100634008266000,status-playable,playable,2021-01-28 13:38:37,2 +1087,Yesterday Origins,,,,2020-05-05 14:17:14,1 +1088,Zarvot - 0100E7900C40000,,status-playable,playable,2021-01-28 13:51:36,2 +1089,World to the West,,,,2020-05-05 14:47:07,1 +1090,Yonder: The Cloud Catcher Chronicles - 0100CC600ABB2000,0100CC600ABB2000,status-playable,playable,2021-01-28 14:06:25,2 +1092,Emma: Lost in Memories - 010017b0102a8000,010017b0102a8000,nvdec;status-playable,playable,2021-01-28 16:19:10,2 +1094,Zotrix: Solar Division - 01001EE00A6B0000,01001EE00A6B0000,status-playable,playable,2021-06-07 20:34:05,5 +1095,X-Morph: Defense,,status-playable,playable,2020-06-22 11:05:31,3 +1096,Wonder Boy: The Dragon's Trap - 0100A6300150C000,0100A6300150C000,status-playable,playable,2021-06-25 4:53:21,2 +1097,Yoku's Island Express - 010002D00632E000,010002D00632E000,status-playable;nvdec,playable,2022-09-03 13:59:02,4 +1098,Woodle Tree Adventures,,,,2020-05-06 12:48:20,1 +1099,World Neverland - 01008E9007064000,01008E9007064000,status-playable,playable,2021-01-28 17:44:23,2 +1100,Yomawari: The Long Night Collection - 010012F00B6F2000,010012F00B6F2000,status-playable,playable,2022-09-03 14:36:59,4 +1101,Xenon Valkyrie+ - 010064200C324000,010064200C324000,status-playable,playable,2021-06-07 20:25:53,2 +1102,Word Search by POWGI,,,,2020-05-06 18:16:35,1 +1103,Zombie Scrapper,,,,2020-05-06 18:27:12,1 +1104,Moving Out - 0100C4C00E73E000,0100C4C00E73E000,nvdec;status-playable,playable,2021-06-07 21:17:24,3 +1105,Wonderboy Returns Remix,,,,2020-05-06 22:21:59,1 +1106,Xenoraid - 0100928005BD2000,0100928005BD2000,status-playable,playable,2022-09-03 13:01:10,5 +1107,Zombillie,,status-playable,playable,2020-07-23 17:42:23,2 +1108,World Conqueror X,,status-playable,playable,2020-12-22 16:10:29,3 +1109,Xeodrifter - 01005B5009364000,01005B5009364000,status-playable,playable,2022-09-03 13:18:39,5 +1110,Yono and the Celestial Elephants - 0100BE50042F6000,0100BE50042F6000,status-playable,playable,2021-01-28 18:23:58,2 +1111,Moto Racer 4 - 01002ED00B01C000,01002ED00B01C000,UE4;nvdec;online;status-playable,playable,2021-04-08 19:09:11,3 +1112,NARUTO SHIPPUDEN™: Ultimate Ninja Storm 3 Full Burst - 01006BB00800A000,01006BB00800A000,status-playable;nvdec,playable,2024-06-16 14:58:05,2 +1113,NAMCO MUSEUM - 010002F001220000,010002F001220000,status-playable;ldn-untested,playable,2024-08-13 7:52:21,3 +1114,Mother Russia Bleeds,,,,2020-05-07 17:29:22,1 +1115,MotoGP 18 - 0100361007268000,0100361007268000,status-playable;nvdec;UE4;ldn-untested,playable,2022-08-05 11:41:45,3 +1116,Mushroom Wars 2,,nvdec;status-playable,playable,2020-09-28 15:26:08,2 +1117,Mugsters - 010073E008E6E000,010073E008E6E000,status-playable,playable,2021-01-28 17:57:17,2 +1118,Mulaka - 0100211005E94000,0100211005E94000,status-playable,playable,2021-01-28 18:07:20,2 +1119,Mummy Pinball - 010038B00B9AE000,010038B00B9AE000,status-playable,playable,2022-08-05 16:08:11,2 +1120,Moto Rush GT - 01003F200D0F2000,01003F200D0F2000,status-playable,playable,2022-08-05 11:23:55,2 +1121,Mutant Football League Dynasty Edition - 0100C3E00ACAA000,0100C3E00ACAA000,status-playable;online-broken,playable,2022-08-05 17:01:51,3 +1122,Mr. Shifty,,slow;status-playable,playable,2020-05-08 15:28:16,1 +1123,MXGP3 - The Official Motocross Videogame,,UE4;gpu;nvdec;status-ingame,ingame,2020-12-16 14:00:20,2 +1124,My Memory of Us - 0100E7700C284000,0100E7700C284000,status-playable,playable,2022-08-20 11:03:14,4 +1125,N++ - 01000D5005974000,01000D5005974000,status-playable,playable,2022-08-05 21:54:58,4 +1126,MUJO,,status-playable,playable,2020-05-08 16:31:04,1 +1127,MotoGP 19 - 01004B800D0E8000,01004B800D0E8000,status-playable;nvdec;online-broken;UE4,playable,2022-08-05 11:54:14,3 +1128,Muddledash,,services;status-ingame,ingame,2020-05-08 16:46:14,1 +1129,My Little Riding Champion,,slow;status-playable,playable,2020-05-08 17:00:53,1 +1130,Motorsport Manager for Nintendo Switch - 01002A900D6D6000,01002A900D6D6000,status-playable;nvdec,playable,2022-08-05 12:48:14,2 +1132,Muse Dash,,status-playable,playable,2020-06-06 14:41:29,3 +1133,NAMCO MUSEUM ARCADE PAC - 0100DAA00AEE6000,0100DAA00AEE6000,status-playable,playable,2021-06-07 21:44:50,2 +1134,MyFarm 2018,,,,2020-05-09 12:14:19,1 +1135,Mutant Mudds Collection - 01004BE004A86000,01004BE004A86000,status-playable,playable,2022-08-05 17:11:38,4 +1136,Ms. Splosion Man,,online;status-playable,playable,2020-05-09 20:45:43,1 +1137,New Super Mario Bros. U Deluxe - 0100EA80032EA000,0100EA80032EA000,32-bit;status-playable,playable,2023-10-08 2:06:37,9 +1138,Nelke & the Legendary Alchemists ~Ateliers of the New World~ - 01006ED00BC76000,01006ED00BC76000,status-playable,playable,2021-01-28 19:39:42,2 +1139,Nihilumbra,,status-playable,playable,2020-05-10 16:00:12,1 +1140,Observer - 01002A000C478000,01002A000C478000,UE4;gpu;nvdec;status-ingame,ingame,2021-03-03 20:19:45,2 +1141,NOT A HERO - 0100CB800B07E000,0100CB800B07E000,status-playable,playable,2021-01-28 19:31:24,2 +1142,Nightshade,,nvdec;status-playable,playable,2020-05-10 19:43:31,1 +1143,Night in the Woods - 0100921006A04000,0100921006A04000,status-playable,playable,2022-12-03 20:17:54,3 +1144,Nippon Marathon - 010037200C72A000,010037200C72A000,nvdec;status-playable,playable,2021-01-28 20:32:46,2 +1145,One Piece Unlimited World Red Deluxe Edition,,status-playable,playable,2020-05-10 22:26:32,1 +1146,Numbala,,status-playable,playable,2020-05-11 12:01:07,1 +1147,Night Trap - 25th Anniversary Edition - 0100D8500A692000,0100D8500A692000,status-playable;nvdec,playable,2022-08-08 13:16:14,10 +1148,Ninja Shodown,,status-playable,playable,2020-05-11 12:31:21,1 +1149,OkunoKA - 01006AB00BD82000,01006AB00BD82000,status-playable;online-broken,playable,2022-08-08 14:41:51,2 +1150,Mechstermination Force - 0100E4600D31A000,0100E4600D31A000,status-playable,playable,2024-07-04 5:39:15,2 +1151,Lines X,,status-playable,playable,2020-05-11 15:28:30,1 +1152,Katamari Damacy REROLL - 0100D7000C2C6000,0100D7000C2C6000,status-playable,playable,2022-08-02 21:35:05,3 +1153,Lifeless Planet - 01005B6008132000,01005B6008132000,status-playable,playable,2022-08-03 21:25:13,2 +1154,League of Evil - 01009C100390E000,01009C100390E000,online;status-playable,playable,2021-06-08 11:23:27,2 +1155,Life Goes On - 010006300AFFE000,010006300AFFE000,status-playable,playable,2021-01-29 19:01:20,2 +1156,Leisure Suit Larry: Wet Dreams Don't Dry - 0100A8E00CAA0000,0100A8E00CAA0000,status-playable,playable,2022-08-03 19:51:44,4 +1157,Legend of Kay Anniversary - 01002DB007A96000,01002DB007A96000,nvdec;status-playable,playable,2021-01-29 18:38:29,2 +1158,Kunio-Kun: The World Classics Collection - 010060400ADD2000,010060400ADD2000,online;status-playable,playable,2021-01-29 20:21:46,2 +1159,Letter Quest Remastered,,status-playable,playable,2020-05-11 21:30:34,1 +1160,Koi DX,,status-playable,playable,2020-05-11 21:37:51,1 +1161,Knights of Pen and Paper +1 Deluxier Edition,,status-playable,playable,2020-05-11 21:46:32,1 +1162,Late Shift - 0100055007B86000,0100055007B86000,nvdec;status-playable,playable,2021-02-01 18:43:58,2 +1163,Lethal League Blaze - 01003AB00983C000,01003AB00983C000,online;status-playable,playable,2021-01-29 20:13:31,2 +1164,Koloro - 01005D200C9AA000,01005D200C9AA000,status-playable,playable,2022-08-03 12:34:02,2 +1165,Little Dragons Cafe,,status-playable,playable,2020-05-12 0:00:52,1 +1166,Legendary Fishing - 0100A7700B46C000,0100A7700B46C000,online;status-playable,playable,2021-04-14 15:08:46,4 +1167,Knock-Knock - 010001A00A1F6000,010001A00A1F6000,nvdec;status-playable,playable,2021-02-01 20:03:19,2 +1168,KAMEN RIDER CLIMAX SCRAMBLE - 0100BDC00A664000,0100BDC00A664000,status-playable;nvdec;ldn-untested,playable,2024-07-03 8:51:11,6 +1169,Kingdom: New Lands - 0100BD9004AB6000,0100BD9004AB6000,status-playable,playable,2022-08-02 21:48:50,2 +1170,Lapis x Labyrinth - 01005E000D3D8000,01005E000D3D8000,status-playable,playable,2021-02-01 18:58:08,2 +1171,Last Day of June - 0100DA700879C000,0100DA700879C000,nvdec;status-playable,playable,2021-06-08 11:35:32,3 +1172,Levels+,,status-playable,playable,2020-05-12 13:51:39,1 +1173,Katana ZERO - 010029600D56A000,010029600D56A000,status-playable,playable,2022-08-26 8:09:09,11 +1174,Layers of Fear: Legacy,,nvdec;status-playable,playable,2021-02-15 16:30:41,2 +1175,Kotodama: The 7 Mysteries of Fujisawa - 010046600CCA4000,010046600CCA4000,audout;status-playable,playable,2021-02-01 20:28:37,2 +1176,Lichtspeer: Double Speer Edition,,status-playable,playable,2020-05-12 16:43:09,1 +1177,Koral,,UE4;crash;gpu;status-menus,menus,2020-11-16 12:41:26,3 +1178,KeroBlaster,,status-playable,playable,2020-05-12 20:42:52,1 +1179,Kentucky Robo Chicken,,status-playable,playable,2020-05-12 20:54:17,1 +1180,L.A. Noire - 0100830004FB6000,0100830004FB6000,status-playable,playable,2022-08-03 16:49:35,3 +1181,Kill The Bad Guy,,status-playable,playable,2020-05-12 22:16:10,1 +1182,Legendary Eleven - 0100A73006E74000,0100A73006E74000,status-playable,playable,2021-06-08 12:09:03,3 +1183,Kitten Squad - 01000C900A136000,01000C900A136000,status-playable;nvdec,playable,2022-08-03 12:01:59,5 +1184,Labyrinth of Refrain: Coven of Dusk - 010058500B3E0000,010058500B3E0000,status-playable,playable,2021-02-15 17:38:48,2 +1185,KAMIKO,,status-playable,playable,2020-05-13 12:48:57,1 +1186,Left-Right: The Mansion,,status-playable,playable,2020-05-13 13:02:12,1 +1187,Knight Terrors,,status-playable,playable,2020-05-13 13:09:22,1 +1188,Kingdom: Two Crowns,,status-playable,playable,2020-05-16 19:36:21,2 +1189,Kid Tripp,,crash;status-nothing,nothing,2020-10-15 7:41:23,2 +1190,King Oddball,,status-playable,playable,2020-05-13 13:47:57,1 +1191,KORG Gadget,,status-playable,playable,2020-05-13 13:57:24,1 +1192,Knights of Pen and Paper 2 Deluxiest Edition,,status-playable,playable,2020-05-13 14:07:00,1 +1193,Keep Talking and Nobody Explodes - 01008D400A584000,01008D400A584000,status-playable,playable,2021-02-15 18:05:21,2 +1194,Jet Lancer - 0100F3500C70C000,0100F3500C70C000,gpu;status-ingame,ingame,2021-02-15 18:15:47,2 +1195,Furi - 01000EC00AF98000,01000EC00AF98000,status-playable,playable,2022-07-27 12:21:20,2 +1196,Forgotton Anne - 010059E00B93C000,010059E00B93C000,nvdec;status-playable,playable,2021-02-15 18:28:07,2 +1197,GOD EATER 3 - 01001C700873E000,01001C700873E000,gpu;status-ingame;nvdec,ingame,2022-07-29 21:33:21,13 +1198,Guacamelee! Super Turbo Championship Edition,,status-playable,playable,2020-05-13 23:44:18,1 +1199,Frost - 0100B5300B49A000,0100B5300B49A000,status-playable,playable,2022-07-27 12:00:36,2 +1200,GO VACATION - 0100C1800A9B6000,0100C1800A9B6000,status-playable;nvdec;ldn-works,playable,2024-05-13 19:28:53,5 +1201,Grand Prix Story - 0100BE600D07A000,0100BE600D07A000,status-playable,playable,2022-08-01 12:42:23,2 +1202,Freedom Planet,,status-playable,playable,2020-05-14 12:23:06,1 +1203,Fossil Hunters - 0100CA500756C000,0100CA500756C000,status-playable;nvdec,playable,2022-07-27 11:37:20,2 +1204,For The King - 010069400B6BE000,010069400B6BE000,nvdec;status-playable,playable,2021-02-15 18:51:44,2 +1205,Flashback,,nvdec;status-playable,playable,2020-05-14 13:57:29,1 +1206,Golf Story,,status-playable,playable,2020-05-14 14:56:17,1 +1207,Firefighters: Airport Fire Department,,status-playable,playable,2021-02-15 19:17:00,2 +1208,Chocobo's Mystery Dungeon Every Buddy!,,slow;status-playable,playable,2020-05-26 13:53:13,2 +1209,CHOP,,,,2020-05-14 17:13:00,1 +1211,FunBox Party,,status-playable,playable,2020-05-15 12:07:02,1 +1212,Friday the 13th: Killer Puzzle - 010003F00BD48000,010003F00BD48000,status-playable,playable,2021-01-28 1:33:38,3 +1213,Johnny Turbo's Arcade Gate of Doom - 010069B002CDE000,010069B002CDE000,status-playable,playable,2022-07-29 12:17:50,3 +1214,Frederic: Resurrection of Music,,nvdec;status-playable,playable,2020-07-23 16:59:53,2 +1215,Frederic 2,,status-playable,playable,2020-07-23 16:44:37,2 +1216,Fort Boyard,,nvdec;slow;status-playable,playable,2020-05-15 13:22:53,1 +1217,Flipping Death - 01009FB002B2E000,01009FB002B2E000,status-playable,playable,2021-02-17 16:12:30,2 +1218,Flat Heroes - 0100C53004C52000,0100C53004C52000,gpu;status-ingame,ingame,2022-07-26 19:37:37,4 +1219,Flood of Light,,status-playable,playable,2020-05-15 14:15:25,1 +1220,FRAMED COLLECTION - 0100F1A00A5DC000,0100F1A00A5DC000,status-playable;nvdec,playable,2022-07-27 11:48:15,4 +1221,Guacamelee! 2,,status-playable,playable,2020-05-15 14:56:59,1 +1223,Flinthook,,online;status-playable,playable,2021-03-25 20:42:29,4 +1224,FORMA.8,,nvdec;status-playable,playable,2020-11-15 1:04:32,3 +1225,FOX n FORESTS - 01008A100A028000,01008A100A028000,status-playable,playable,2021-02-16 14:27:49,2 +1226,Gotcha Racing 2nd,,status-playable,playable,2020-07-23 17:14:04,2 +1227,Floor Kids - 0100DF9005E7A000,0100DF9005E7A000,status-playable;nvdec,playable,2024-08-18 19:38:49,4 +1228,Firefighters - The Simulation - 0100434003C58000,0100434003C58000,status-playable,playable,2021-02-19 13:32:05,2 +1229,Flip Wars - 010095A004040000,010095A004040000,services;status-ingame;ldn-untested,ingame,2022-05-02 15:39:18,4 +1230,TowerFall,,status-playable,playable,2020-05-16 18:58:07,6 +1231,Towertale,,status-playable,playable,2020-10-15 13:56:58,10 +1236,Football Manager Touch 2018 - 010097F0099B4000,010097F0099B4000,status-playable,playable,2022-07-26 20:17:56,4 +1237,Fruitfall Crush,,status-playable,playable,2020-10-20 11:33:33,2 +1238,Forest Home,,,,2020-05-17 13:33:08,1 +1239,Fly O'Clock VS,,status-playable,playable,2020-05-17 13:39:52,1 +1240,Gal Metal - 01B8000C2EA000,,status-playable,playable,2022-07-27 20:57:48,3 +1241,Gear.Club Unlimited - 010065E003FD8000,010065E003FD8000,status-playable,playable,2021-06-08 13:03:19,4 +1242,Gear.Club Unlimited 2 - 010072900AFF0000,010072900AFF0000,status-playable;nvdec;online-broken,playable,2022-07-29 12:52:16,3 +1243,GRIP - 0100459009A2A000,0100459009A2A000,status-playable;nvdec;online-broken;UE4,playable,2022-08-01 15:00:22,8 +1244,Ginger: Beyond the Crystal - 0100C50007070000,0100C50007070000,status-playable,playable,2021-02-17 16:27:00,2 +1245,Slayin 2 - 01004E900EDDA000,01004E900EDDA000,gpu;status-ingame,ingame,2024-04-19 16:15:26,5 +1246,Grim Fandango Remastered - 0100B7900B024000,0100B7900B024000,status-playable;nvdec,playable,2022-08-01 13:55:58,2 +1247,Gal*Gun 2 - 010024700901A000,010024700901A000,status-playable;nvdec;UE4,playable,2022-07-27 12:45:37,6 +1248,Golem Gates - 01003C000D84C000,01003C000D84C000,status-ingame;crash;nvdec;online-broken;UE4,ingame,2022-07-30 11:35:11,5 +1249,Full Metal Furies,,online,,2020-05-18 13:22:06,1 +1250,GIGA WRECKER Alt. - 010045F00BFC2000,010045F00BFC2000,status-playable,playable,2022-07-29 14:13:54,4 +1251,Gelly Break - 01009D000AF3A000,01009D000AF3A000,UE4;status-playable,playable,2021-03-03 16:04:02,2 +1252,The World Next Door - 0100E6200D56E000,0100E6200D56E000,status-playable,playable,2022-09-21 14:15:23,2 +1253,GREEN - 010068D00AE68000,010068D00AE68000,status-playable,playable,2022-08-01 12:54:15,2 +1254,Feathery Ears,,,,2020-05-18 14:48:31,1 +1255,Gorogoa - 0100F2A005C98000,0100F2A005C98000,status-playable,playable,2022-08-01 11:55:08,2 +1256,Girls und Panzer Dream Tank Match DX - 01006DD00CC96000,01006DD00CC96000,status-playable;ldn-untested,playable,2022-09-12 16:07:11,21 +1257,Super Crush KO,,,,2020-05-18 15:49:23,1 +1258,Gem Smashers - 01001A4008192000,01001A4008192000,nvdec;status-playable,playable,2021-06-08 13:40:51,4 +1259,Grave Danger,,status-playable,playable,2020-05-18 17:41:28,1 +1260,Fury Unleashed,,crash;services;status-ingame,ingame,2020-10-18 11:52:40,4 +1261,TaniNani - 01007DB010D2C000,01007DB010D2C000,crash;kernel;status-nothing,nothing,2021-04-08 3:06:44,4 +1262,Atelier Escha & Logy: Alchemists Of The Dusk Sky DX - 0100E5600EE8E000,0100E5600EE8E000,status-playable;nvdec,playable,2022-11-20 16:01:41,3 +1263,Battle of Elemental Burst,,,,2020-05-18 23:27:22,1 +1264,Gun Crazy,,,,2020-05-18 23:47:28,1 +1265,Ascendant Hearts,,,,2020-05-19 8:50:44,1 +1266,Infinite Beyond the Mind,,,,2020-05-19 9:17:17,1 +1268,FullBlast,,status-playable,playable,2020-05-19 10:34:13,1 +1269,The Legend of Heroes: Trails of Cold Steel III,,status-playable,playable,2020-12-16 10:59:18,4 +1270,Goosebumps: The Game,,status-playable,playable,2020-05-19 11:56:52,1 +1271,Gonner,,status-playable,playable,2020-05-19 12:05:02,1 +1272,Monster Viator,,,,2020-05-19 12:15:18,1 +1273,Umihara Kawase Fresh,,,,2020-05-19 12:29:18,1 +1274,Operencia The Stolen Sun - 01006CF00CFA4000,01006CF00CFA4000,UE4;nvdec;status-playable,playable,2021-06-08 13:51:07,2 +1275,Goetia,,status-playable,playable,2020-05-19 12:55:39,1 +1276,Grid Mania,,status-playable,playable,2020-05-19 14:11:05,1 +1277,Pantsu Hunter,,status-playable,playable,2021-02-19 15:12:27,2 +1278,GOD WARS THE COMPLETE LEGEND,,nvdec;status-playable,playable,2020-05-19 14:37:50,1 +1279,Dark Burial,,,,2020-05-19 14:38:34,1 +1280,Langrisser I and II - 0100BAB00E8C0000,0100BAB00E8C0000,status-playable,playable,2021-02-19 15:46:10,2 +1281,My Secret Pets,,,,2020-05-19 15:26:56,1 +1282,Grass Cutter,,slow;status-ingame,ingame,2020-05-19 18:27:42,1 +1283,Giana Sisters: Twisted Dreams - Owltimate Edition - 01003830092B8000,01003830092B8000,status-playable,playable,2022-07-29 14:06:12,6 +1284,FUN! FUN! Animal Park - 010002F00CC20000,010002F00CC20000,status-playable,playable,2021-04-14 17:08:52,2 +1285,Graceful Explosion Machine,,status-playable,playable,2020-05-19 20:36:55,1 +1286,Garage,,status-playable,playable,2020-05-19 20:59:53,1 +1287,Game Dev Story,,status-playable,playable,2020-05-20 0:00:38,1 +1289,Gone Home - 0100EEC00AA6E000,0100EEC00AA6E000,status-playable,playable,2022-08-01 11:14:20,2 +1290,Geki Yaba Runner Anniversary Edition - 01000F000D9F0000,01000F000D9F0000,status-playable,playable,2021-02-19 18:59:07,2 +1291,Gridd: Retroenhanced,,status-playable,playable,2020-05-20 11:32:40,1 +1292,Green Game - 0100CBB0070EE000,0100CBB0070EE000,nvdec;status-playable,playable,2021-02-19 18:51:55,2 +1293,Glaive: Brick Breaker,,status-playable,playable,2020-05-20 12:15:59,1 +1294,Furwind - 0100A6B00D4EC000,0100A6B00D4EC000,status-playable,playable,2021-02-19 19:44:08,2 +1295,Goat Simulator - 010032600C8CE000,010032600C8CE000,32-bit;status-playable,playable,2022-07-29 21:02:33,6 +1296,Gnomes Garden 2,,status-playable,playable,2021-02-19 20:08:13,2 +1297,Gensokyo Defenders - 010000300C79C000,010000300C79C000,status-playable;online-broken;UE4,playable,2022-07-29 13:48:12,4 +1298,Guess the Character,,status-playable,playable,2020-05-20 13:14:19,1 +1299,Gato Roboto - 010025500C098000,010025500C098000,status-playable,playable,2023-01-20 15:04:11,7 +1300,Gekido Kintaro's Revenge,,status-playable,playable,2020-10-27 12:44:05,3 +1301,Ghost 1.0 - 0100EEB005ACC000,0100EEB005ACC000,status-playable,playable,2021-02-19 20:48:47,2 +1302,GALAK-Z: Variant S - 0100C9800A454000,0100C9800A454000,status-boots;online-broken,boots,2022-07-29 11:59:12,2 +1303,Cuphead - 0100A5C00D162000,0100A5C00D162000,status-playable,playable,2022-02-01 22:45:55,3 +1304,Darkest Dungeon - 01008F1008DA6000,01008F1008DA6000,status-playable;nvdec,playable,2022-07-22 18:49:18,5 +1305,Cabela's: The Hunt - Championship Edition - 0100E24004510000,0100E24004510000,status-menus;32-bit,menus,2022-07-21 20:21:25,5 +1306,Darius Cozmic Collection,,status-playable,playable,2021-02-19 20:59:06,2 +1309,Ion Fury - 010041C00D086000,010041C00D086000,status-ingame;vulkan-backend-bug,ingame,2022-08-07 8:27:51,8 +1310,Void Bastards - 0100D010113A8000,0100D010113A8000,status-playable,playable,2022-10-15 0:04:19,3 +1311,Our two Bedroom Story - 010097F010FE6000,010097F010FE6000,gpu;status-ingame;nvdec,ingame,2023-10-10 17:41:20,4 +1312,Dark Witch Music Episode: Rudymical,,status-playable,playable,2020-05-22 9:44:44,1 +1313,Cave Story+,,status-playable,playable,2020-05-22 9:57:25,1 +1314,Crawl,,status-playable,playable,2020-05-22 10:16:05,1 +1315,Chasm,,status-playable,playable,2020-10-23 11:03:43,3 +1316,Princess Closet,,,,2020-05-22 10:34:06,1 +1317,Color Zen,,status-playable,playable,2020-05-22 10:56:17,1 +1318,Coffee Crisis - 0100CF800C810000,0100CF800C810000,status-playable,playable,2021-02-20 12:34:52,2 +1319,Croc's World,,status-playable,playable,2020-05-22 11:21:09,1 +1320,Chicken Rider,,status-playable,playable,2020-05-22 11:31:17,1 +1321,Caveman Warriors,,status-playable,playable,2020-05-22 11:44:20,1 +1322,Clustertruck - 010096900A4D2000,010096900A4D2000,slow;status-ingame,ingame,2021-02-19 21:07:09,2 +1323,Yumeutsutsu Re:After - 0100B56011502000,0100B56011502000,status-playable,playable,2022-11-20 16:09:06,2 +1324,Danger Mouse - 01003ED0099B0000,01003ED0099B0000,status-boots;crash;online,boots,2022-07-22 15:49:45,2 +1325,Circle of Sumo,,status-playable,playable,2020-05-22 12:45:21,1 +1326,Chicken Range - 0100F6C00A016000,0100F6C00A016000,status-playable,playable,2021-04-23 12:14:23,3 +1327,Conga Master Party!,,status-playable,playable,2020-05-22 13:22:24,1 +1328,SNK HEROINES Tag Team Frenzy - 010027F00AD6C000,010027F00AD6C000,status-playable;nvdec;online-broken;ldn-untested,playable,2022-08-14 14:19:25,5 +1329,Conduct TOGETHER! - 010043700C9B0000,010043700C9B0000,nvdec;status-playable,playable,2021-02-20 12:59:00,2 +1330,"Calculation Castle: Greco's Ghostly Challenge ""Addition""",,32-bit;status-playable,playable,2020-11-01 23:40:11,4 +1331,"Calculation Castle: Greco's Ghostly Challenge ""Subtraction""",,32-bit;status-playable,playable,2020-11-01 23:47:42,3 +1332,"Calculation Castle: Greco's Ghostly Challenge ""Multiplication""",,32-bit;status-playable,playable,2020-11-02 0:04:33,3 +1333,"Calculation Castle: Greco's Ghostly Challenge ""Division""",,32-bit;status-playable,playable,2020-11-01 23:54:55,3 +1334,Chicken Assassin: Reloaded - 0100E3C00A118000,0100E3C00A118000,status-playable,playable,2021-02-20 13:29:01,2 +1335,eSports Legend,,,,2020-05-22 18:58:46,1 +1336,Crypt of the Necrodancer - 0100CEA007D08000,0100CEA007D08000,status-playable;nvdec,playable,2022-11-01 9:52:06,2 +1337,Crash Bandicoot N. Sane Trilogy - 0100D1B006744000,0100D1B006744000,status-playable,playable,2024-02-11 11:38:14,3 +1338,Castle of Heart - 01003C100445C000,01003C100445C000,status-playable;nvdec,playable,2022-07-21 23:10:45,2 +1339,Darkwood,,status-playable,playable,2021-01-08 21:24:06,3 +1340,A Fold Apart,,,,2020-05-23 8:10:49,1 +1341,Blind Men - 010089D011310000,010089D011310000,audout;status-playable,playable,2021-02-20 14:15:38,2 +1343,Darksiders Warmastered Edition - 0100E1400BA96000,0100E1400BA96000,status-playable;nvdec,playable,2023-03-02 18:08:09,4 +1344,OBAKEIDORO!,,nvdec;online;status-playable,playable,2020-10-16 16:57:34,3 +1345,De:YABATANIEN,,,,2020-05-23 10:48:51,1 +1346,Crash Dummy,,nvdec;status-playable,playable,2020-05-23 11:12:43,1 +1347,Castlevania Anniversary Collection,,audio;status-playable,playable,2020-05-23 11:40:29,1 +1348,Flan - 010038200E088000,010038200E088000,status-ingame;crash;regression,ingame,2021-11-17 7:39:28,3 +1349,Sisters Royale: Five Sisters Under Fire,,,,2020-05-23 15:12:09,1 +1350,Game Tengoku CruisinMix Special,,,,2020-05-23 17:30:59,1 +1351,Cosmic Star Heroine - 010067C00A776000,010067C00A776000,status-playable,playable,2021-02-20 14:30:47,2 +1352,Croixleur Sigma - 01000F0007D92000,01000F0007D92000,status-playable;online,playable,2022-07-22 14:26:54,3 +1353,Cities: Skylines - Nintendo Switch Edition,,status-playable,playable,2020-12-16 10:34:57,3 +1354,Castlestorm - 010097C00AB66000,010097C00AB66000,status-playable;nvdec,playable,2022-07-21 22:49:14,5 +1355,Coffin Dodgers - 0100178009648000,0100178009648000,status-playable,playable,2021-02-20 14:57:41,2 +1356,Child of Light,,nvdec;status-playable,playable,2020-12-16 10:23:10,7 +1357,Wizards of Brandel,,status-nothing,nothing,2020-10-14 15:52:33,3 +1358,Contra Anniversary Collection - 0100DCA00DA7E000,0100DCA00DA7E000,status-playable,playable,2022-07-22 11:30:12,2 +1359,Cartoon Network Adventure Time: Pirates of the Enchiridion - 0100C4E004406000,0100C4E004406000,status-playable;nvdec,playable,2022-07-21 21:49:01,4 +1361,Claybook - 010009300AA6C000,010009300AA6C000,slow;status-playable;nvdec;online;UE4,playable,2022-07-22 11:11:34,4 +1363,Crashbots - 0100BF200CD74000,0100BF200CD74000,status-playable,playable,2022-07-22 13:50:52,2 +1364,Crossing Souls - 0100B1E00AA56000,0100B1E00AA56000,nvdec;status-playable,playable,2021-02-20 15:42:54,2 +1365,Groove Coaster: Wai Wai Party!!!! - 0100EB500D92E000,0100EB500D92E000,status-playable;nvdec;ldn-broken,playable,2021-11-06 14:54:27,5 +1367,Candle - The Power of the Flame,,nvdec;status-playable,playable,2020-05-26 12:10:20,1 +1368,Minecraft Dungeons - 01006C100EC08000,01006C100EC08000,status-playable;nvdec;online-broken;UE4,playable,2024-06-26 22:10:43,13 +1369,Constructor Plus,,status-playable,playable,2020-05-26 12:37:40,1 +1370,The Wonderful 101: Remastered - 0100B1300FF08000,0100B1300FF08000,slow;status-playable;nvdec,playable,2022-09-30 13:49:28,2 +1371,Dandara,,status-playable,playable,2020-05-26 12:42:33,1 +1372,ChromaGun,,status-playable,playable,2020-05-26 12:56:42,1 +1373,Crayola Scoot - 0100C66007E96000,0100C66007E96000,status-playable;nvdec,playable,2022-07-22 14:01:55,4 +1374,Chess Ultra - 0100A5900472E000,0100A5900472E000,status-playable;UE4,playable,2023-08-30 23:06:31,7 +1375,Clue,,crash;online;status-menus,menus,2020-11-10 9:23:48,2 +1376,ACA NEOGEO Metal Slug X,,crash;services;status-menus,menus,2020-05-26 14:07:20,1 +1377,ACA NEOGEO ZUPAPA!,,online;status-playable,playable,2021-03-25 20:07:33,3 +1378,ACA NEOGEO WORLD HEROES PERFECT,,crash;services;status-menus,menus,2020-05-26 14:14:36,1 +1379,ACA NEOGEO WAKU WAKU 7 - 0100CEF001DC0000,0100CEF001DC0000,online;status-playable,playable,2021-04-10 14:20:52,2 +1380,ACA NEOGEO THE SUPER SPY - 0100F7F00AFA2000,0100F7F00AFA2000,online;status-playable,playable,2021-04-10 14:26:33,3 +1381,ACA NEOGEO THE LAST BLADE 2 - 0100699008792000,0100699008792000,online;status-playable,playable,2021-04-10 14:31:54,3 +1382,ACA NEOGEO THE KING OF FIGHTERS '99 - 0100583001DCA000,0100583001DCA000,online;status-playable,playable,2021-04-10 14:36:56,3 +1383,ACA NEOGEO THE KING OF FIGHTERS '98,,crash;services;status-menus,menus,2020-05-26 14:54:20,1 +1384,ACA NEOGEO THE KING OF FIGHTERS '97 - 0100170008728000,0100170008728000,online;status-playable,playable,2021-04-10 14:43:27,3 +1385,ACA NEOGEO THE KING OF FIGHTERS '96 - 01006F0004FB4000,01006F0004FB4000,online;status-playable,playable,2021-04-10 14:49:10,3 +1386,ACA NEOGEO THE KING OF FIGHTERS '95 - 01009DC001DB6000,01009DC001DB6000,status-playable,playable,2021-03-29 20:27:35,5 +1387,ACA NEOGEO THE KING OF FIGHTERS '94,,crash;services;status-menus,menus,2020-05-26 15:03:44,1 +1388,ACA NEOGEO THE KING OF FIGHTERS 2003 - 0100EF100AFE6000,0100EF100AFE6000,online;status-playable,playable,2021-04-10 14:54:31,3 +1389,ACA NEOGEO THE KING OF FIGHTERS 2002 - 0100CFD00AFDE000,0100CFD00AFDE000,online;status-playable,playable,2021-04-10 15:01:55,2 +1390,ACA NEOGEO THE KING OF FIGHTERS 2001 - 010048200AFC2000,010048200AFC2000,online;status-playable,playable,2021-04-10 15:16:23,3 +1391,ACA NEOGEO THE KING OF FIGHTERS 2000 - 0100B97002B44000,0100B97002B44000,online;status-playable,playable,2021-04-10 15:24:35,3 +1392,ACA NEOGEO SUPER SIDEKICKS 3: THE NEXT GLORY - 0100A4D00A308000,0100A4D00A308000,online;status-playable,playable,2021-04-10 15:39:22,3 +1393,ACA NEOGEO SUPER SIDEKICKS 2 - 010055A00A300000,010055A00A300000,online;status-playable,playable,2021-04-10 16:05:58,3 +1394,ACA NEOGEO SPIN MASTER - 01007D1004DBA000,01007D1004DBA000,online;status-playable,playable,2021-04-10 15:50:19,3 +1395,ACA NEOGEO SHOCK TROOPERS,,crash;services;status-menus,menus,2020-05-26 15:29:34,1 +1396,ACA NEOGEO SENGOKU 3 - 01008D000877C000,01008D000877C000,online;status-playable,playable,2021-04-10 16:11:53,3 +1397,ACA NEOGEO SENGOKU 2 - 01009B300872A000,01009B300872A000,online;status-playable,playable,2021-04-10 17:36:44,2 +1398,ACA NEOGEO SAMURAI SHODOWN SPECIAL V - 010049F00AFE8000,010049F00AFE8000,online;status-playable,playable,2021-04-10 18:07:13,2 +1399,ACA NEOGEO SAMURAI SHODOWN IV - 010047F001DBC000,010047F001DBC000,online;status-playable,playable,2021-04-12 12:58:54,2 +1400,ACA NEOGEO SAMURAI SHODOWN - 01005C9002B42000,01005C9002B42000,online;status-playable,playable,2021-04-01 17:11:35,2 +1401,ACA NEOGEO REAL BOUT FATAL FURY SPECIAL - 010088500878C000,010088500878C000,online;status-playable,playable,2021-04-01 17:18:27,2 +1402,ACA NEOGEO OVER TOP - 01003A5001DBA000,01003A5001DBA000,status-playable,playable,2021-02-21 13:16:25,2 +1403,ACA NEOGEO NINJA COMMANDO - 01007E800AFB6000,01007E800AFB6000,online;status-playable,playable,2021-04-01 17:28:18,2 +1404,ACA NEOGEO NINJA COMBAT - 010052A00A306000,010052A00A306000,status-playable,playable,2021-03-29 21:17:28,5 +1405,ACA NEOGEO NEO TURF MASTERS - 01002E70032E8000,01002E70032E8000,status-playable,playable,2021-02-21 15:12:01,2 +1406,ACA NEOGEO Money Puzzle Exchanger - 010038F00AFA0000,010038F00AFA0000,online;status-playable,playable,2021-04-01 17:59:56,2 +1407,ACA NEOGEO METAL SLUG 4 - 01009CE00AFAE000,01009CE00AFAE000,online;status-playable,playable,2021-04-01 18:12:18,2 +1408,ACA NEOGEO METAL SLUG 3,,crash;services;status-menus,menus,2020-05-26 16:32:45,1 +1409,ACA NEOGEO METAL SLUG 2 - 010086300486E000,010086300486E000,online;status-playable,playable,2021-04-01 19:25:52,2 +1410,ACA NEOGEO METAL SLUG - 0100EBE002B3E000,0100EBE002B3E000,status-playable,playable,2021-02-21 13:56:48,2 +1411,ACA NEOGEO MAGICIAN LORD - 01007920038F6000,01007920038F6000,online;status-playable,playable,2021-04-01 19:33:26,2 +1412,ACA NEOGEO MAGICAL DROP II,,crash;services;status-menus,menus,2020-05-26 16:48:24,1 +1413,SNK Gals Fighters,,,,2020-05-26 16:56:16,1 +1414,ESP Ra.De. Psi - 0100F9600E746000,0100F9600E746000,audio;slow;status-ingame,ingame,2024-03-07 15:05:08,4 +1415,ACA NEOGEO LEAGUE BOWLING,,crash;services;status-menus,menus,2020-05-26 17:11:04,1 +1416,ACA NEOGEO LAST RESORT - 01000D10038E6000,01000D10038E6000,online;status-playable,playable,2021-04-01 19:51:22,2 +1417,ACA NEOGEO GHOST PILOTS - 01005D700A2F8000,01005D700A2F8000,online;status-playable,playable,2021-04-01 20:26:45,2 +1418,ACA NEOGEO GAROU: MARK OF THE WOLVES - 0100CB2001DB8000,0100CB2001DB8000,online;status-playable,playable,2021-04-01 20:31:10,2 +1419,ACA NEOGEO FOOTBALL FRENZY,,status-playable,playable,2021-03-29 20:12:12,5 +1420,ACA NEOGEO FATAL FURY - 0100EE6002B48000,0100EE6002B48000,online;status-playable,playable,2021-04-01 20:36:23,2 +1421,ACA NEOGEO CROSSED SWORDS - 0100D2400AFB0000,0100D2400AFB0000,online;status-playable,playable,2021-04-01 20:42:59,2 +1422,ACA NEOGEO BLAZING STAR,,crash;services;status-menus,menus,2020-05-26 17:29:02,1 +1423,ACA NEOGEO BASEBALL STARS PROFESSIONAL - 01003FE00A2F6000,01003FE00A2F6000,online;status-playable,playable,2021-04-01 21:23:05,2 +1424,ACA NEOGEO AGGRESSORS OF DARK KOMBAT - 0100B4800AFBA000,0100B4800AFBA000,online;status-playable,playable,2021-04-01 22:48:01,2 +1425,ACA NEOGEO AERO FIGHTERS 3 - 0100B91008780000,0100B91008780000,online;status-playable,playable,2021-04-12 13:11:17,2 +1426,ACA NEOGEO 3 COUNT BOUT - 0100FC000AFC6000,0100FC000AFC6000,online;status-playable,playable,2021-04-12 13:16:42,2 +1427,ACA NEOGEO 2020 SUPER BASEBALL - 01003C400871E000,01003C400871E000,online;status-playable,playable,2021-04-12 13:23:51,2 +1428,Arcade Archives Traverse USA - 010029D006ED8000,010029D006ED8000,online;status-playable,playable,2021-04-15 8:11:06,4 +1429,Arcade Archives TERRA CRESTA,,crash;services;status-menus,menus,2020-08-18 20:20:55,3 +1430,Arcade Archives STAR FORCE - 010069F008A38000,010069F008A38000,online;status-playable,playable,2021-04-15 8:39:09,4 +1431,Arcade Archives Sky Skipper - 010008F00B054000,010008F00B054000,online;status-playable,playable,2021-04-15 8:58:09,4 +1432,Arcade Archives RYGAR - 0100C2D00981E000,0100C2D00981E000,online;status-playable,playable,2021-04-15 8:48:30,4 +1433,Arcade Archives Renegade - 010081E001DD2000,010081E001DD2000,status-playable;online,playable,2022-07-21 11:45:40,5 +1434,Arcade Archives PUNCH-OUT!! - 01001530097F8000,01001530097F8000,online;status-playable,playable,2021-03-25 22:10:55,4 +1435,Arcade Archives OMEGA FIGHTER,,crash;services;status-menus,menus,2020-08-18 20:50:54,3 +1436,Arcade Archives Ninja-Kid,,online;status-playable,playable,2021-03-26 20:55:07,4 +1437,Arcade Archives NINJA GAIDEN - 01003EF00D3B4000,01003EF00D3B4000,audio;online;status-ingame,ingame,2021-04-12 16:27:53,4 +1438,Arcade Archives MOON PATROL - 01003000097FE000,01003000097FE000,online;status-playable,playable,2021-03-26 11:42:04,4 +1439,Arcade Archives MARIO BROS. - 0100755004608000,0100755004608000,online;status-playable,playable,2021-03-26 11:31:32,4 +1440,Arcade Archives Kid's Horehore Daisakusen - 0100E7C001DE0000,0100E7C001DE0000,online;status-playable,playable,2021-04-12 16:21:29,4 +1441,Arcade Archives Kid Niki Radical Ninja - 010010B008A36000,010010B008A36000,audio;status-ingame;online,ingame,2022-07-21 11:02:04,5 +1442,Arcade Archives Ikki - 01000DB00980A000,01000DB00980A000,online;status-playable,playable,2021-03-25 23:11:28,4 +1443,Arcade Archives HEROIC EPISODE - 01009A4008A30000,01009A4008A30000,online;status-playable,playable,2021-03-25 23:01:26,4 +1444,Arcade Archives DOUBLE DRAGON II The Revenge - 01009E3001DDE000,01009E3001DDE000,online;status-playable,playable,2021-04-12 16:05:29,4 +1445,Arcade Archives DOUBLE DRAGON - 0100F25001DD0000,0100F25001DD0000,online;status-playable,playable,2021-03-25 22:44:34,4 +1446,Arcade Archives DONKEY KONG,,Needs Update;crash;services;status-menus,menus,2021-03-24 18:18:43,4 +1447,Arcade Archives CRAZY CLIMBER - 0100BB1001DD6000,0100BB1001DD6000,online;status-playable,playable,2021-03-25 22:24:15,4 +1448,Arcade Archives City CONNECTION - 010007A00980C000,010007A00980C000,online;status-playable,playable,2021-03-25 22:16:15,4 +1449,Arcade Archives 10-Yard Fight - 0100BE80097FA000,0100BE80097FA000,online;status-playable,playable,2021-03-25 21:26:41,4 +1450,Ark: Survival Evolved - 0100D4A00B284000,0100D4A00B284000,gpu;status-ingame;nvdec;online-broken;UE4;ldn-untested,ingame,2024-04-16 0:53:56,4 +1451,Art of Balance - 01008EC006BE2000,01008EC006BE2000,gpu;status-ingame;ldn-works,ingame,2022-07-21 17:13:57,3 +1452,Aces of the Luftwaffe Squadron,,nvdec;slow;status-playable,playable,2020-05-27 12:29:42,1 +1453,Atelier Lulua ~ The Scion of Arland ~,,nvdec;status-playable,playable,2020-12-16 14:29:19,2 +1454,Apocalipsis,,deadlock;status-menus,menus,2020-05-27 12:56:37,1 +1456,Aqua Moto Racing Utopia - 0100D0D00516A000,0100D0D00516A000,status-playable,playable,2021-02-21 21:21:00,2 +1457,Arc of Alchemist - 0100C7D00E6A0000,0100C7D00E6A0000,status-playable;nvdec,playable,2022-10-07 19:15:54,3 +1458,1979 Revolution: Black Friday - 0100D1000B18C000,0100D1000B18C000,nvdec;status-playable,playable,2021-02-21 21:03:43,2 +1459,ABZU - 0100C1300BBC6000,0100C1300BBC6000,status-playable;UE4,playable,2022-07-19 15:02:52,3 +1460,Asterix & Obelix XXL 2 - 010050400BD38000,010050400BD38000,deadlock;status-ingame;nvdec,ingame,2022-07-21 17:54:14,3 +1461,Astro Bears Party,,status-playable,playable,2020-05-28 11:21:58,1 +1462,AQUA KITTY UDX - 0100AC10085CE000,0100AC10085CE000,online;status-playable,playable,2021-04-12 15:34:11,4 +1463,Assassin's Creed III Remastered - 01007F600B134000,01007F600B134000,status-boots;nvdec,boots,2024-06-25 20:12:11,4 +1464,Antiquia Lost,,status-playable,playable,2020-05-28 11:57:32,1 +1465,Animal Super Squad - 0100EFE009424000,0100EFE009424000,UE4;status-playable,playable,2021-04-23 20:50:50,4 +1466,Anima: Arcane Edition - 010033F00B3FA000,010033F00B3FA000,nvdec;status-playable,playable,2021-01-26 16:55:51,2 +1467,American Ninja Warrior: Challenge - 010089D00A3FA000,010089D00A3FA000,nvdec;status-playable,playable,2021-06-09 13:11:17,5 +1468,Air Conflicts: Pacific Carriers,,status-playable,playable,2021-01-04 10:52:50,2 +1469,Agatha Knife,,status-playable,playable,2020-05-28 12:37:58,1 +1470,ACORN Tactics - 0100DBC0081A4000,0100DBC0081A4000,status-playable,playable,2021-02-22 12:57:40,2 +1471,Anarcute - 010050900E1C6000,010050900E1C6000,status-playable,playable,2021-02-22 13:17:59,2 +1472,39 Days to Mars - 0100AF400C4CE000,0100AF400C4CE000,status-playable,playable,2021-02-21 22:12:46,2 +1473,Animal Rivals Switch - 010065B009B3A000,010065B009B3A000,status-playable,playable,2021-02-22 14:02:42,2 +1474,88 Heroes,,status-playable,playable,2020-05-28 14:13:02,1 +1475,Aegis Defenders - 01008E60065020000,01008E6006502000,status-playable,playable,2021-02-22 13:29:33,2 +1476,Jeopardy! - 01006E400AE2A000,01006E400AE2A000,audout;nvdec;online;status-playable,playable,2021-02-22 13:53:46,2 +1477,Akane - 01007F100DE52000,01007F100DE52000,status-playable;nvdec,playable,2022-07-21 0:12:18,2 +1478,Aaero - 010097A00CC0A000,010097A00CC0A000,status-playable;nvdec,playable,2022-07-19 14:49:55,4 +1479,99Vidas,,online;status-playable,playable,2020-10-29 13:00:40,3 +1480,AngerForce: Reloaded for Nintendo Switch - 010001E00A5F6000,010001E00A5F6000,status-playable,playable,2022-07-21 10:37:17,4 +1481,36 Fragments of Midnight,,status-playable,playable,2020-05-28 15:12:59,1 +1482,Akihabara - Feel the Rhythm Remixed - 010053100B0EA000,010053100B0EA000,status-playable,playable,2021-02-22 14:39:35,2 +1483,Bertram Fiddle Episode 2: A Bleaker Predicklement - 010021F00C1C0000,010021F00C1C0000,nvdec;status-playable,playable,2021-02-22 14:56:37,2 +1484,6180 the moon,,status-playable,playable,2020-05-28 15:39:24,1 +1485,Ace of Seafood - 0100FF1004D56000,0100FF1004D56000,status-playable,playable,2022-07-19 15:32:25,2 +1486,12 orbits,,status-playable,playable,2020-05-28 16:13:26,1 +1487,Access Denied - 0100A9900CB5C000,0100A9900CB5C000,status-playable,playable,2022-07-19 15:25:10,2 +1488,Air Hockey,,status-playable,playable,2020-05-28 16:44:37,1 +1489,2064: Read Only Memories,,deadlock;status-menus,menus,2020-05-28 16:53:58,1 +1490,12 is Better Than 6 - 01007F600D1B8000,01007F600D1B8000,status-playable,playable,2021-02-22 16:10:12,2 +1491,Sid Meier's Civilization VI - 010044500C182000,010044500C182000,status-playable;ldn-untested,playable,2024-04-08 16:03:40,7 +1492,Sniper Elite V2 Remastered - 0100BB000A3AA000,0100BB000A3AA000,slow;status-ingame;nvdec;online-broken;ldn-untested,ingame,2022-08-14 13:23:13,5 +1493,South Park: The Fractured But Whole - 01008F2005154000,01008F2005154000,slow;status-playable;online-broken,playable,2024-07-08 17:47:28,5 +1494,SkyScrappers,,status-playable,playable,2020-05-28 22:11:25,1 +1495,Shio - 0100C2F00A568000,0100C2F00A568000,status-playable,playable,2021-02-22 16:25:09,2 +1496,NBA 2K18 - 0100760002048000,0100760002048000,gpu;status-ingame;ldn-untested,ingame,2022-08-06 14:17:51,3 +1497,Sky Force Anniversary - 010083100B5CA000,010083100B5CA000,status-playable;online-broken,playable,2022-08-12 20:50:07,2 +1498,Slay the Spire - 010026300BA4A000,010026300BA4A000,status-playable,playable,2023-01-20 15:09:26,4 +1499,Sky Gamblers: Storm Raiders - 010093D00AC38000,010093D00AC38000,gpu;audio;status-ingame;32-bit,ingame,2022-08-12 21:13:36,8 +1500,Shovel Knight: Treasure Trove,,status-playable,playable,2021-02-14 18:24:39,4 +1501,Sine Mora EX - 01002820036A8000,01002820036A8000,gpu;status-ingame;online-broken,ingame,2022-08-12 19:36:18,7 +1502,NBA Playgrounds - 0100F5A008126000,0100F5A008126000,status-playable;nvdec;online-broken;UE4,playable,2022-08-06 16:13:44,6 +1503,Shut Eye,,status-playable,playable,2020-07-23 18:08:35,2 +1504,SINNER: Sacrifice for Redemption - 0100B16009C10000,0100B16009C10000,status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-08-12 20:37:33,5 +1505,SKYPEACE,,status-playable,playable,2020-05-29 14:14:30,1 +1506,Slain,,status-playable,playable,2020-05-29 14:26:16,1 +1507,Umihara Kawase BaZooka!,,,,2020-05-29 14:56:48,1 +1508,Sigi - A Fart for Melusina - 01007FC00B674000,01007FC00B674000,status-playable,playable,2021-02-22 16:46:58,2 +1509,Sky Ride - 0100DDB004F30000,0100DDB004F30000,status-playable,playable,2021-02-22 16:53:07,2 +1510,Soccer Slammers,,status-playable,playable,2020-05-30 7:48:14,1 +1511,Songbringer,,status-playable,playable,2020-06-22 10:42:02,3 +1512,Sky Rogue,,status-playable,playable,2020-05-30 8:26:28,1 +1513,Shovel Knight: Specter of Torment,,status-playable,playable,2020-05-30 8:34:17,1 +1514,Snow Moto Racing Freedom - 010045300516E000,010045300516E000,gpu;status-ingame;vulkan-backend-bug,ingame,2022-08-15 16:05:14,4 +1515,Snake Pass - 0100C0F0020E8000,0100C0F0020E8000,status-playable;nvdec;UE4,playable,2022-01-03 4:31:52,5 +1516,Shu,,nvdec;status-playable,playable,2020-05-30 9:08:59,1 +1517,"SOLDAM Drop, Connect, Erase",,status-playable,playable,2020-05-30 9:18:54,1 +1518,SkyTime,,slow;status-ingame,ingame,2020-05-30 9:24:51,1 +1519,NBA 2K19 - 01001FF00B544000,01001FF00B544000,crash;ldn-untested;services;status-nothing,nothing,2021-04-16 13:07:21,2 +1520,Shred!2 - Freeride MTB,,status-playable,playable,2020-05-30 14:34:09,1 +1521,Skelly Selest,,status-playable,playable,2020-05-30 15:38:18,1 +1522,Snipperclips Plus - 01008E20047DC000,01008E20047DC000,status-playable,playable,2023-02-14 20:20:13,4 +1523,SolDivide for Nintendo Switch - 0100590009C38000,0100590009C38000,32-bit;status-playable,playable,2021-06-09 14:13:03,6 +1524,Slime-san,,status-playable,playable,2020-05-30 16:15:12,1 +1525,Skies of Fury,,status-playable,playable,2020-05-30 16:40:54,1 +1526,SlabWell - 01003AD00DEAE000,01003AD00DEAE000,status-playable,playable,2021-02-22 17:02:51,2 +1527,Smoke and Sacrifice - 0100207007EB2000,0100207007EB2000,status-playable,playable,2022-08-14 12:38:27,2 +1528,Sky Gamblers - Afterburner - 010003F00CC98000,010003F00CC98000,gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-12 21:04:55,5 +1529,Slice Dice & Rice - 0100F4500AA4E000,0100F4500AA4E000,online;status-playable,playable,2021-02-22 17:44:23,2 +1530,Slayaway Camp: Butcher's Cut - 0100501006494000,0100501006494000,status-playable;opengl-backend-bug,playable,2022-08-12 23:44:05,4 +1531,Snowboarding the Next Phase - 0100BE200C34A000,0100BE200C34A000,nvdec;status-playable,playable,2021-02-23 12:56:58,2 +1532,Skylanders Imaginators,,crash;services;status-boots,boots,2020-05-30 18:49:18,1 +1533,Slime-san Superslime Edition,,status-playable,playable,2020-05-30 19:08:08,1 +1534,Skee-Ball,,status-playable,playable,2020-11-16 4:44:07,3 +1535,Marvel Ultimate Alliance 3: The Black Order - 010060700AC50000,010060700AC50000,status-playable;nvdec;ldn-untested,playable,2024-02-14 19:51:51,33 +1536,The Elder Scrolls V: Skyrim - 01000A10041EA000,01000A10041EA000,gpu;status-ingame;crash,ingame,2024-07-14 3:21:31,7 +1537,Risk of Rain,,,,2020-05-31 22:32:45,1 +1538,Risk of Rain 2 - 010076D00E4BA000,010076D00E4BA000,status-playable;online-broken,playable,2024-03-04 17:01:05,6 +1539,The Mummy Demastered - 0100496004194000,0100496004194000,status-playable,playable,2021-02-23 13:11:27,2 +1540,Teslagrad - 01005C8005F34000,01005C8005F34000,status-playable,playable,2021-02-23 14:41:02,2 +1541,Pushy and Pully in Blockland,,status-playable,playable,2020-07-04 11:44:41,3 +1542,The Raven Remastered - 010058A00BF1C000,010058A00BF1C000,status-playable;nvdec,playable,2022-08-22 20:02:47,2 +1543,Reed Remastered,,,,2020-05-31 23:15:15,1 +1544,The Infectious Madness of Doctor Dekker - 01008940086E0000,01008940086E0000,status-playable;nvdec,playable,2022-08-22 16:45:01,3 +1545,The Fall,,gpu;status-ingame,ingame,2020-05-31 23:31:16,1 +1546,The Fall Part 2: Unbound,,status-playable,playable,2021-11-06 2:18:08,2 +1547,The Red Strings Club,,status-playable,playable,2020-06-01 10:51:18,1 +1548,Omega Labyrinth Life - 01001D600E51A000,01001D600E51A000,status-playable,playable,2021-02-23 21:03:03,2 +1549,The Mystery of the Hudson Case,,status-playable,playable,2020-06-01 11:03:36,1 +1550,Tennis World Tour - 0100092006814000,0100092006814000,status-playable;online-broken,playable,2022-08-22 14:27:10,7 +1551,The Lost Child - 01008A000A404000,01008A000A404000,nvdec;status-playable,playable,2021-02-23 15:44:20,2 +1552,Little Misfortune - 0100E7000E826000,0100E7000E826000,nvdec;status-playable,playable,2021-02-23 20:39:44,2 +1553,The End is Nigh,,status-playable,playable,2020-06-01 11:26:45,1 +1554,The Caligula Effect: Overdose,,UE4;gpu;status-ingame,ingame,2021-01-04 11:07:50,2 +1555,The Flame in the Flood: Complete Edition - 0100C38004DCC000,0100C38004DCC000,gpu;status-ingame;nvdec;UE4,ingame,2022-08-22 16:23:49,4 +1556,The Journey Down: Chapter One - 010052C00B184000,010052C00B184000,nvdec;status-playable,playable,2021-02-24 13:32:41,2 +1557,The Journey Down: Chapter Two,,nvdec;status-playable,playable,2021-02-24 13:32:13,2 +1558,The Journey Down: Chapter Three - 01006BC00B188000,01006BC00B188000,nvdec;status-playable,playable,2021-02-24 13:45:27,2 +1559,The Mooseman - 010033300AC1A000,010033300AC1A000,status-playable,playable,2021-02-24 12:58:57,2 +1560,The Long Reach - 010052B003A38000,010052B003A38000,nvdec;status-playable,playable,2021-02-24 14:09:48,2 +1561,Asdivine Kamura,,,,2020-06-01 15:04:50,1 +1562,THE LAST REMNANT Remastered - 0100AC800D022000,0100AC800D022000,status-playable;nvdec;UE4,playable,2023-02-09 17:24:44,7 +1563,The Princess Guide - 0100E6A00B960000,0100E6A00B960000,status-playable,playable,2021-02-24 14:23:34,2 +1564,The LEGO NINJAGO Movie Video Game - 01007FC00206E000,01007FC00206E000,status-nothing;crash,nothing,2022-08-22 19:12:53,3 +1565,The Next Penelope - 01000CF0084BC000,01000CF0084BC000,status-playable,playable,2021-01-29 16:26:11,2 +1566,Tennis,,status-playable,playable,2020-06-01 20:50:36,1 +1567,The King's Bird - 010020500BD98000,010020500BD98000,status-playable,playable,2022-08-22 19:07:46,2 +1568,The First Tree - 010098800A1E4000,010098800A1E4000,status-playable,playable,2021-02-24 15:51:05,2 +1569,The Jackbox Party Pack - 0100AE5003EE6000,0100AE5003EE6000,status-playable;online-working,playable,2023-05-28 9:28:40,4 +1570,The Jackbox Party Pack 2 - 010015D003EE4000,010015D003EE4000,status-playable;online-working,playable,2022-08-22 18:23:40,3 +1571,The Jackbox Party Pack 3 - 0100CC80013D6000,0100CC80013D6000,slow;status-playable;online-working,playable,2022-08-22 18:41:06,2 +1572,The Jackbox Party Pack 4 - 0100E1F003EE8000,0100E1F003EE8000,status-playable;online-working,playable,2022-08-22 18:56:34,2 +1573,The LEGO Movie 2 - Videogame - 0100A4400BE74000,0100A4400BE74000,status-playable,playable,2023-03-01 11:23:37,4 +1574,The Gardens Between - 0100B13007A6A000,0100B13007A6A000,status-playable,playable,2021-01-29 16:16:53,2 +1575,The Bug Butcher,,status-playable,playable,2020-06-03 12:02:04,1 +1576,Funghi Puzzle Funghi Explosion,,status-playable,playable,2020-11-23 14:17:41,3 +1577,The Escapists: Complete Edition - 01001B700BA7C000,01001B700BA7C000,status-playable,playable,2021-02-24 17:50:31,2 +1578,The Escapists 2,,nvdec;status-playable,playable,2020-09-24 12:31:31,2 +1579,TENGAI for Nintendo Switch,,32-bit;status-playable,playable,2020-11-25 19:52:26,4 +1580,The Book of Unwritten Tales 2 - 010062500BFC0000,010062500BFC0000,status-playable,playable,2021-06-09 14:42:53,3 +1581,The Bridge,,status-playable,playable,2020-06-03 13:53:26,1 +1582,Ai: the Somnium Files - 010089B00D09C000,010089B00D09C000,status-playable;nvdec,playable,2022-09-04 14:45:06,2 +1583,The Coma: Recut,,status-playable,playable,2020-06-03 15:11:23,1 +1584,Ara Fell: Enhanced Edition,,,,2020-06-03 15:11:30,1 +1585,The Final Station - 0100CDC00789E000,0100CDC00789E000,status-playable;nvdec,playable,2022-08-22 15:54:39,2 +1586,The Count Lucanor - 01000850037C0000,01000850037C0000,status-playable;nvdec,playable,2022-08-22 15:26:37,3 +1587,Testra's Escape,,status-playable,playable,2020-06-03 18:21:14,1 +1588,The Low Road - 0100BAB00A116000,0100BAB00A116000,status-playable,playable,2021-02-26 13:23:22,2 +1589,The Adventure Pals - 01008ED0087A4000,01008ED0087A4000,status-playable,playable,2022-08-22 14:48:52,2 +1591,The Longest Five Minutes - 0100CE1004E72000,0100CE1004E72000,gpu;status-boots,boots,2023-02-19 18:33:11,7 +1592,The Inner World,,nvdec;status-playable,playable,2020-06-03 21:22:29,1 +1593,The Inner World - The Last Wind Monk,,nvdec;status-playable,playable,2020-11-16 13:09:40,3 +1594,The MISSING: J.J. Macfield and the Island of Memories - 0100F1B00B456000,0100F1B00B456000,status-playable,playable,2022-08-22 19:36:18,2 +1595,Jim Is Moving Out!,,deadlock;status-ingame,ingame,2020-06-03 22:05:19,1 +1596,The Darkside Detective,,status-playable,playable,2020-06-03 22:16:18,1 +1597,Tesla vs Lovecraft - 0100FBC007EAE000,0100FBC007EAE000,status-playable,playable,2023-11-21 6:19:36,6 +1598,The Lion's Song - 0100735004898000,0100735004898000,status-playable,playable,2021-06-09 15:07:16,3 +1599,Tennis in the Face - 01002970080AA000,01002970080AA000,status-playable,playable,2022-08-22 14:10:54,4 +1600,The Adventures of Elena Temple,,status-playable,playable,2020-06-03 23:15:35,1 +1602,The friends of Ringo Ishikawa - 010030700CBBC000,010030700CBBC000,status-playable,playable,2022-08-22 16:33:17,4 +1603,Redeemer: Enhanced Edition - 01000D100DCF8000,01000D100DCF8000,status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-09-11 10:20:24,3 +1604,Alien Escape,,status-playable,playable,2020-06-03 23:43:18,1 +1605,LEGO DC Super-Villains - 010070D009FEC000,010070D009FEC000,status-playable,playable,2021-05-27 18:10:37,3 +1606,LEGO Worlds,,crash;slow;status-ingame,ingame,2020-07-17 13:35:39,2 +1607,LEGO The Incredibles - 0100A01006E00000,0100A01006E00000,status-nothing;crash,nothing,2022-08-03 18:36:59,5 +1608,LEGO Harry Potter Collection - 010052A00B5D2000,010052A00B5D2000,status-ingame;crash,ingame,2024-01-31 10:28:07,8 +1609,Reed 2,,,,2020-06-04 16:43:29,1 +1610,The Men of Yoshiwara: Ohgiya,,,,2020-06-04 17:00:22,1 +1611,The Rainsdowne Players,,,,2020-06-04 17:16:02,1 +1612,Tonight we Riot - 0100D400100F8000,0100D400100F8000,status-playable,playable,2021-02-26 15:55:09,2 +1613,Skelattack - 01001A900F862000,01001A900F862000,status-playable,playable,2021-06-09 15:26:26,3 +1614,HyperParasite - 010061400ED90000,010061400ED90000,status-playable;nvdec;UE4,playable,2022-09-27 22:05:44,7 +1615,Climbros,,,,2020-06-04 21:02:21,1 +1616,Sweet Witches - 0100D6D00EC2C000,0100D6D00EC2C000,status-playable;nvdec,playable,2022-10-20 14:56:37,3 +1617,Whispering Willows - 010015A00AF1E000,010015A00AF1E000,status-playable;nvdec,playable,2022-09-30 22:33:05,4 +1618,The Outer Worlds - 0100626011656000,0100626011656000,gpu;status-ingame;nvdec;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-10-03 17:55:32,3 +1619,RADIO HAMMER STATION - 01008FA00ACEC000,01008FA00ACEC000,audout;status-playable,playable,2021-02-26 20:20:06,2 +1620,Light Tracer - 010087700D07C000,010087700D07C000,nvdec;status-playable,playable,2021-05-05 19:15:43,2 +1621,Uta no Prince-sama Amazing Aria & Sweet Serenade LOVE - 0100D4300EBF8000,0100D4300EBF8000,status-nothing;crash;Needs More Attention;Needs Update,nothing,2022-02-09 8:57:44,2 +1622,The Amazing Shinsengumi: Heroes in Love,,,,2020-06-06 9:27:49,1 +1623,Snow Battle Princess Sayuki,,,,2020-06-06 11:59:03,1 +1624,Good Job!,,status-playable,playable,2021-03-02 13:15:55,3 +1625,Ghost Blade HD - 010063200C588000,010063200C588000,status-playable;online-broken,playable,2022-09-13 21:51:21,5 +1626,HardCube - 01000C90117FA000,01000C90117FA000,status-playable,playable,2021-05-05 18:33:03,2 +1627,STAR OCEAN First Departure R - 0100EBF00E702000,0100EBF00E702000,nvdec;status-playable,playable,2021-07-05 19:29:16,1 +1629,Hair Mower 3D,,,,2020-06-08 2:29:17,1 +1630,Clubhouse Games: 51 Worldwide Classics - 010047700D540000,010047700D540000,status-playable;ldn-works,playable,2024-05-21 16:12:57,5 +1631,Torchlight 2,,status-playable,playable,2020-07-27 14:18:37,2 +1632,Creature in the Well,,UE4;gpu;status-ingame,ingame,2020-11-16 12:52:40,3 +1633,Panty Party,,,,2020-06-08 14:06:02,1 +1634,DEADLY PREMONITION Origins - 0100EBE00F22E000,0100EBE00F22E000,32-bit;status-playable;nvdec,playable,2024-03-25 12:47:46,8 +1635,Pillars of Eternity - 0100D6200E130000,0100D6200E130000,status-playable,playable,2021-02-27 0:24:21,2 +1636,Jump King,,status-playable,playable,2020-06-09 10:12:39,1 +1638,Bug Fables,,status-playable,playable,2020-06-09 11:27:00,1 +1639,DOOM 3 - 010029D00E740000,010029D00E740000,status-menus;crash,menus,2024-08-03 5:25:47,8 +1640,Raiden V: Director's Cut - 01002B000D97E000,01002B000D97E000,deadlock;status-boots;nvdec,boots,2024-07-12 7:31:46,6 +1641,Fantasy Strike - 0100944003820000,0100944003820000,online;status-playable,playable,2021-02-27 1:59:18,2 +1642,Hell Warders - 0100A4600E27A000,0100A4600E27A000,online;status-playable,playable,2021-02-27 2:31:03,2 +1643,THE NINJA SAVIORS Return of the Warriors - 01001FB00E386000,01001FB00E386000,online;status-playable,playable,2021-03-25 23:48:07,5 +1644,DOOM (1993) - 010018900DD00000,010018900DD00000,status-menus;nvdec;online-broken,menus,2022-09-06 13:32:19,4 +1645,DOOM 2 - 0100D4F00DD02000,0100D4F00DD02000,nvdec;online;status-playable,playable,2021-06-03 20:10:01,5 +1646,Songbird Symphony - 0100E5400BF94000,0100E5400BF94000,status-playable,playable,2021-02-27 2:44:04,2 +1647,Titans Pinball,,slow;status-playable,playable,2020-06-09 16:53:52,1 +1648,TERRORHYTHM (TRRT) - 010043700EB68000,010043700EB68000,status-playable,playable,2021-02-27 13:18:14,2 +1649,Pawarumi - 0100A56006CEE000,0100A56006CEE000,status-playable;online-broken,playable,2022-09-10 15:19:33,3 +1650,Rise: Race the Future - 01006BA00E652000,01006BA00E652000,status-playable,playable,2021-02-27 13:29:06,2 +1651,Run the Fan - 010074F00DE4A000,010074F00DE4A000,status-playable,playable,2021-02-27 13:36:28,2 +1652,Tetsumo Party,,status-playable,playable,2020-06-09 22:39:55,1 +1653,Snipperclips - 0100704000B3A000,0100704000B3A000,status-playable,playable,2022-12-05 12:44:55,2 +1654,The Tower of Beatrice - 010047300EBA6000,010047300EBA6000,status-playable,playable,2022-09-12 16:51:42,1 +1655,FIA European Truck Racing Championship - 01007510040E8000,01007510040E8000,status-playable;nvdec,playable,2022-09-06 17:51:59,5 +1656,Bear With Me - The Lost Robots - 010020700DE04000,010020700DE04000,nvdec;status-playable,playable,2021-02-27 14:20:10,1 +1658,Mutant Year Zero: Road to Eden - 0100E6B00DEA4000,0100E6B00DEA4000,status-playable;nvdec;UE4,playable,2022-09-10 13:31:10,4 +1659,Solo: Islands of the Heart - 010008600D1AC000,010008600D1AC000,gpu;status-ingame;nvdec,ingame,2022-09-11 17:54:43,3 +1660,1971 PROJECT HELIOS - 0100829010F4A000,0100829010F4A000,status-playable,playable,2021-04-14 13:50:19,1 +1661,Damsel - 0100BD2009A1C000,0100BD2009A1C000,status-playable,playable,2022-09-06 11:54:39,3 +1662,The Forbidden Arts - 01007700D4AC000,,status-playable,playable,2021-01-26 16:26:24,1 +1663,Turok 2: Seeds of Evil - 0100CDC00D8D6000,0100CDC00D8D6000,gpu;status-ingame;vulkan,ingame,2022-09-12 17:50:05,6 +1664,"Tactics V: ""Obsidian Brigade"" - 01007C7006AEE000",01007C7006AEE000,status-playable,playable,2021-02-28 15:09:42,1 +1665,SWORD ART ONLINE: FATAL BULLET COMPLETE EDITION - 01005DF00DC26000,01005DF00DC26000,UE4;gpu;online;status-ingame,ingame,2021-06-09 16:58:50,4 +1666,Subdivision Infinity DX - 010001400E474000,010001400E474000,UE4;crash;status-boots,boots,2021-03-03 14:26:46,1 +1667,#RaceDieRun,,status-playable,playable,2020-07-04 20:23:16,2 +1668,Wreckin' Ball Adventure - 0100C5D00EDB8000,0100C5D00EDB8000,status-playable;UE4,playable,2022-09-12 18:56:28,3 +1669,PictoQuest - 010043B00E1CE000,010043B00E1CE000,status-playable,playable,2021-02-27 15:03:16,1 +1670,VASARA Collection - 0100FE200AF48000,0100FE200AF48000,nvdec;status-playable,playable,2021-02-28 15:26:10,1 +1671,The Vanishing of Ethan Carter - 0100BCF00E970000,0100BCF00E970000,UE4;status-playable,playable,2021-06-09 17:14:47,2 +1672,"Enchanted in the Moonlight - Kiryu, Chikage & Yukinojo - 010068300E08E000",010068300E08E000,gpu;status-ingame;nvdec,ingame,2022-11-20 16:18:45,1 +1674,Demon's Tier+ - 0100161011458000,0100161011458000,status-playable,playable,2021-06-09 17:25:36,2 +1676,INSTANT SPORTS - 010099700D750000,010099700D750000,status-playable,playable,2022-09-09 12:59:40,2 +1677,Friday the 13th: The Game - 010092A00C4B6000,010092A00C4B6000,status-playable;nvdec;online-broken;UE4,playable,2022-09-06 17:33:27,4 +1678,Arcade Archives VS. GRADIUS - 01004EC00E634000,01004EC00E634000,online;status-playable,playable,2021-04-12 14:53:58,4 +1679,Desktop Rugby,,,,2020-06-10 23:21:11,1 +1680,Divinity Original Sin 2 - 010027400CDC6000,010027400CDC6000,services;status-menus;crash;online-broken;regression,menus,2023-08-13 17:20:03,6 +1681,Grandia HD Collection - 0100E0600BBC8000,0100E0600BBC8000,status-boots;crash,boots,2024-08-19 4:29:48,11 +1682,Bubsy: Paws on Fire! - 0100DBE00C554000,0100DBE00C554000,slow;status-ingame,ingame,2023-08-24 2:44:51,4 +1683,River City Girls,,nvdec;status-playable,playable,2020-06-10 23:44:09,1 +1684,Super Dodgeball Beats,,,,2020-06-10 23:45:22,1 +1685,RAD - 010024400C516000,010024400C516000,gpu;status-menus;crash;UE4,menus,2021-11-29 2:01:56,3 +1686,Super Jumpy Ball,,status-playable,playable,2020-07-04 18:40:36,3 +1687,Headliner: NoviNews - 0100EFE00E1DC000,0100EFE00E1DC000,online;status-playable,playable,2021-03-01 11:36:00,2 +1688,Atelier Ryza: Ever Darkness & the Secret Hideout - 0100D1900EC80000,0100D1900EC80000,status-playable,playable,2023-10-15 16:36:50,2 +1689,Ancestors Legacy - 01009EE0111CC000,01009EE0111CC000,status-playable;nvdec;UE4,playable,2022-10-01 12:25:36,5 +1690,Resolutiion - 0100E7F00FFB8000,0100E7F00FFB8000,crash;status-boots,boots,2021-04-25 21:57:56,3 +1691,Puzzle Quest: The Legend Returns,,,,2020-06-11 10:05:15,1 +1692,FAR: Lone Sails - 010022700E7D6000,010022700E7D6000,status-playable,playable,2022-09-06 16:33:05,2 +1693,Awesome Pea 2 - 0100B7D01147E000,0100B7D01147E000,status-playable,playable,2022-10-01 12:34:19,3 +1694,Arcade Archives PLUS ALPHA,,audio;status-ingame,ingame,2020-07-04 20:47:55,3 +1695,Caveblazers - 01001A100C0E8000,01001A100C0E8000,slow;status-ingame,ingame,2021-06-09 17:57:28,3 +1696,Piofiore no banshou - ricordo,,,,2020-06-11 19:14:52,1 +1697,Raining Blobs,,,,2020-06-11 19:32:04,1 +1698,Hyper Jam,,UE4;crash;status-boots,boots,2020-12-15 22:52:11,2 +1699,The Midnight Sanctuary - 0100DEC00B2BC000,0100DEC00B2BC000,status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-10-03 17:17:32,4 +1700,Indiecalypse,,nvdec;status-playable,playable,2020-06-11 20:19:09,1 +1701,Liberated - 0100C8000F146000,0100C8000F146000,gpu;status-ingame;nvdec,ingame,2024-07-04 4:58:24,5 +1702,Nelly Cootalot,,status-playable,playable,2020-06-11 20:55:42,1 +1703,Corpse Party: Blood Drive - 010016400B1FE000,010016400B1FE000,nvdec;status-playable,playable,2021-03-01 12:44:23,2 +1704,Professor Lupo and his Horrible Pets,,status-playable,playable,2020-06-12 0:08:45,1 +1705,Atelier Meruru ~ The Apprentice of Arland ~ DX,,nvdec;status-playable,playable,2020-06-12 0:50:48,1 +1706,Atelier Totori ~ The Adventurer of Arland ~ DX,,nvdec;status-playable,playable,2020-06-12 1:04:56,1 +1707,Red Wings - Aces of the Sky,,status-playable,playable,2020-06-12 1:19:53,1 +1708,L.F.O. - Lost Future Omega - ,,UE4;deadlock;status-boots,boots,2020-10-16 12:16:44,2 +1709,One Night Stand,,,,2020-06-12 16:34:34,1 +1710,They Came From the Sky,,status-playable,playable,2020-06-12 16:38:19,1 +1711,Nurse Love Addiction,,,,2020-06-12 16:48:29,1 +1712,THE TAKEOVER,,nvdec,,2020-06-12 16:52:28,1 +1713,Totally Reliable Delivery Service - 0100512010728000,0100512010728000,status-playable;online-broken,playable,2024-09-27 19:32:22,7 +1714,Nurse Love Syndrome - 010003701002C000,010003701002C000,status-playable,playable,2022-10-13 10:05:22,2 +1715,Undead and Beyond - 010076F011F54000,010076F011F54000,status-playable;nvdec,playable,2022-10-04 9:11:18,2 +1716,Borderlands: Game of the Year Edition - 010064800F66A000,010064800F66A000,slow;status-ingame;online-broken;ldn-untested,ingame,2023-07-23 21:10:36,3 +1717,TurtlePop: Journey to Freedom,,status-playable,playable,2020-06-12 17:45:39,1 +1718,DAEMON X MACHINA - 0100B6400CA56000,0100B6400CA56000,UE4;audout;ldn-untested;nvdec;status-playable,playable,2021-06-09 19:22:29,7 +1719,Blasphemous - 0100698009C6E000,0100698009C6E000,nvdec;status-playable,playable,2021-03-01 12:15:31,2 +1720,The Sinking City - 010028D00BA1A000,010028D00BA1A000,status-playable;nvdec;UE4,playable,2022-09-12 16:41:55,4 +1721,Battle Supremacy - Evolution - 010099B00E898000,010099B00E898000,gpu;status-boots;nvdec,boots,2022-02-17 9:02:50,3 +1722,STEINS;GATE: My Darling's Embrace - 0100CB400E9BC000,0100CB400E9BC000,status-playable;nvdec,playable,2022-11-20 16:48:34,3 +1723,Dragon Quest XI S: Echoes of an Elusive Age - Definitive Edition - 01006C300E9F0000,01006C300E9F0000,status-playable;UE4,playable,2021-11-27 12:27:11,8 +1724,Star Wars™ Pinball - 01006DA00DEAC000,01006DA00DEAC000,status-playable;online-broken,playable,2022-09-11 18:53:31,7 +1725,Space Cows,,UE4;crash;status-menus,menus,2020-06-15 11:33:20,1 +1726,Ritual - 0100BD300F0EC000,0100BD300F0EC000,status-playable,playable,2021-03-02 13:51:19,2 +1727,Snooker 19 - 01008DA00CBBA000,01008DA00CBBA000,status-playable;nvdec;online-broken;UE4,playable,2022-09-11 17:43:22,4 +1728,Sydney Hunter and the Curse of the Mayan,,status-playable,playable,2020-06-15 12:15:57,1 +1729,CONTRA: ROGUE CORPS,,crash;nvdec;regression;status-menus,menus,2021-01-07 13:23:35,8 +1730,Tyd wag vir Niemand - 010073A00C4B2000,010073A00C4B2000,status-playable,playable,2021-03-02 13:39:53,2 +1731,Detective Dolittle - 010030600E65A000,010030600E65A000,status-playable,playable,2021-03-02 14:03:59,2 +1733,Rebel Cops - 0100D9B00E22C000,0100D9B00E22C000,status-playable,playable,2022-09-11 10:02:53,2 +1734,Sayonara Wild Hearts - 010010A00A95E000,010010A00A95E000,status-playable,playable,2023-10-23 3:20:01,2 +1735,Neon Drive - 010032000EAC6000,010032000EAC6000,status-playable,playable,2022-09-10 13:45:48,2 +1736,GRID Autosport - 0100DC800A602000,0100DC800A602000,status-playable;nvdec;online-broken;ldn-untested,playable,2023-03-02 20:14:45,5 +1737,DISTRAINT: Deluxe Edition,,status-playable,playable,2020-06-15 23:42:24,1 +1738,Jet Kave Adventure - 0100E4900D266000,0100E4900D266000,status-playable;nvdec,playable,2022-09-09 14:50:39,2 +1739,LEGO Jurassic World - 01001C100E772000,01001C100E772000,status-playable,playable,2021-05-27 17:00:20,3 +1740,Neo Cab Demo,,crash;status-boots,boots,2020-06-16 0:14:00,1 +1741,Reel Fishing: Road Trip Adventure - 010007C00E558000,010007C00E558000,status-playable,playable,2021-03-02 16:06:43,2 +1742,Zombie Army Trilogy,,ldn-untested;online;status-playable,playable,2020-12-16 12:02:28,2 +1743,Project Warlock,,status-playable,playable,2020-06-16 10:50:41,1 +1744,Super Toy Cars 2 - 0100C6800D770000,0100C6800D770000,gpu;regression;status-ingame,ingame,2021-03-02 20:15:15,2 +1745,Call of Cthulhu - 010046000EE40000,010046000EE40000,status-playable;nvdec;UE4,playable,2022-12-18 3:08:30,5 +1746,Overpass - 01008EA00E816000,01008EA00E816000,status-playable;online-broken;UE4;ldn-untested,playable,2022-10-17 15:29:47,6 +1747,The Little Acre - 0100A5000D590000,0100A5000D590000,nvdec;status-playable,playable,2021-03-02 20:22:27,2 +1748,Lost Horizon 2,,nvdec;status-playable,playable,2020-06-16 12:02:12,1 +1749,Rogue Robots,,status-playable,playable,2020-06-16 12:16:11,1 +1750,Skelittle: A Giant Party!! - 01008E700F952000,01008E700F952000,status-playable,playable,2021-06-09 19:08:34,3 +1751,Magazine Mogul - 01004A200E722000,01004A200E722000,status-playable;loader-allocator,playable,2022-10-03 12:05:34,2 +1752,Dead by Daylight - 01004C400CF96000,01004C400CF96000,status-boots;nvdec;online-broken;UE4,boots,2022-09-13 14:32:13,4 +1753,Ori and the Blind Forest: Definitive Edition - 010061D00DB74000,010061D00DB74000,status-playable;nvdec;online-broken,playable,2022-09-14 19:58:13,4 +1754,Northgard - 0100A9E00D97A000,0100A9E00D97A000,status-menus;crash,menus,2022-02-06 2:05:35,4 +1755,Freedom Finger - 010082B00EE50000,010082B00EE50000,nvdec;status-playable,playable,2021-06-09 19:31:30,4 +1756,Atelier Shallie: Alchemists of the Dusk Sea DX,,nvdec;status-playable,playable,2020-11-25 20:54:12,2 +1757,Dragon Quest - 0100EFC00EFB2000,0100EFC00EFB2000,gpu;status-boots,boots,2021-11-09 3:31:32,6 +1758,Dragon Quest II: Luminaries of the Legendary Line - 010062200EFB4000,010062200EFB4000,status-playable,playable,2022-09-13 16:44:11,7 +1759,Atelier Ayesha: The Alchemist of Dusk DX - 0100D9D00EE8C000,0100D9D00EE8C000,status-menus;crash;nvdec;Needs Update,menus,2021-11-24 7:29:54,2 +1760,Dragon Quest III: The Seeds of Salvation - 010015600EFB6000,010015600EFB6000,gpu;status-boots,boots,2021-11-09 3:38:34,6 +1761,Habroxia,,status-playable,playable,2020-06-16 23:04:42,1 +1762,Petoons Party - 010044400EEAE000,010044400EEAE000,nvdec;status-playable,playable,2021-03-02 21:07:58,2 +1763,Fight'N Rage,,status-playable,playable,2020-06-16 23:35:19,1 +1764,Cyber Protocol,,nvdec;status-playable,playable,2020-09-28 14:47:40,2 +1765,Barry Bradford's Putt Panic Party,,nvdec;status-playable,playable,2020-06-17 1:08:34,1 +1766,Potata: Fairy Flower,,nvdec;status-playable,playable,2020-06-17 9:51:34,1 +1767,Kawaii Deathu Desu,,,,2020-06-17 9:59:15,1 +1768,The Spectrum Retreat - 010041C00A68C000,010041C00A68C000,status-playable,playable,2022-10-03 18:52:40,2 +1769,Moero Crystal H - 01004EB0119AC000,01004EB0119AC000,32-bit;status-playable;nvdec;vulkan-backend-bug,playable,2023-07-05 12:04:22,15 +1770,Modern Combat Blackout - 0100D8700B712000,0100D8700B712000,crash;status-nothing,nothing,2021-03-29 19:47:15,2 +1771,Forager - 01001D200BCC4000,01001D200BCC4000,status-menus;crash,menus,2021-11-24 7:10:17,5 +1772,Ultimate Ski Jumping 2020 - 01006B601117E000,01006B601117E000,online;status-playable,playable,2021-03-02 20:54:11,2 +1773,Strangers of the Power 3,,,,2020-06-17 14:45:52,1 +1774,Little Triangle,,status-playable,playable,2020-06-17 14:46:26,1 +1775,Nice Slice,,nvdec;status-playable,playable,2020-06-17 15:13:27,1 +1776,Project Starship,,,,2020-06-17 15:33:18,1 +1777,Puyo Puyo Champions,,online;status-playable,playable,2020-06-19 11:35:08,1 +1778,Shantae and the Seven Sirens,,nvdec;status-playable,playable,2020-06-19 12:23:40,1 +1779,SYNAPTIC DRIVE,,online;status-playable,playable,2020-09-07 13:44:05,4 +1780,XCOM 2 Collection - 0100D0B00FB74000,0100D0B00FB74000,gpu;status-ingame;crash,ingame,2022-10-04 9:38:30,14 +1781,BioShock Remastered - 0100AD10102B2000,0100AD10102B2000,services-horizon;status-boots;crash;Needs Update,boots,2024-06-06 1:08:52,6 +1782,Burnout Paradise Remastered - 0100DBF01000A000,0100DBF01000A000,nvdec;online;status-playable,playable,2021-06-13 2:54:46,4 +1783,Adam's Venture: Origins - 0100C0C0040E4000,0100C0C0040E4000,status-playable,playable,2021-03-04 18:43:57,2 +1784,"Invisible, Inc.",,crash;status-nothing,nothing,2021-01-29 16:28:13,2 +1785,Vektor Wars - 010098400E39E000,010098400E39E000,status-playable;online-broken;vulkan-backend-bug,playable,2022-10-04 9:23:46,3 +1786,Flux8,,nvdec;status-playable,playable,2020-06-19 20:55:11,1 +1787,Beyond Enemy Lines: Covert Operations - 010056500CAD8000,010056500CAD8000,status-playable;UE4,playable,2022-10-01 13:11:50,4 +1788,Genetic Disaster,,status-playable,playable,2020-06-19 21:41:12,1 +1789,Castle Pals - 0100DA2011F18000,0100DA2011F18000,status-playable,playable,2021-03-04 21:00:33,2 +1790,BioShock 2 Remastered - 01002620102C6000,01002620102C6000,services;status-nothing,nothing,2022-10-29 14:39:22,3 +1791,BioShock Infinite: The Complete Edition - 0100D560102C8000,0100D560102C8000,services-horizon;status-nothing;crash,nothing,2024-08-11 21:35:01,3 +1792,Borderlands 2: Game of the Year Edition - 010096F00FF22000,010096F00FF22000,status-playable,playable,2022-04-22 18:35:07,4 +1793,Borderlands: The Pre-Sequel Ultimate Edition - 010007400FF24000,010007400FF24000,nvdec;status-playable,playable,2021-06-09 20:17:10,3 +1794,The Coma 2: Vicious Sisters,,gpu;status-ingame,ingame,2020-06-20 12:51:51,1 +1795,Roll'd,,status-playable,playable,2020-07-04 20:24:01,3 +1796,Big Drunk Satanic Massacre - 01002FA00DE72000,01002FA00DE72000,status-playable,playable,2021-03-04 21:28:22,2 +1797,LUXAR - 0100EC2011A80000,0100EC2011A80000,status-playable,playable,2021-03-04 21:11:57,2 +1798,OneWayTicket,,UE4;status-playable,playable,2020-06-20 17:20:49,1 +1799,Radiation City - 0100DA400E07E000,0100DA400E07E000,status-ingame;crash,ingame,2022-09-30 11:15:04,2 +1800,Arcade Spirits,,status-playable,playable,2020-06-21 11:45:03,1 +1801,Bring Them Home - 01000BF00BE40000,01000BF00BE40000,UE4;status-playable,playable,2021-04-12 14:14:43,3 +1802,Fly Punch Boom!,,online;status-playable,playable,2020-06-21 12:06:11,1 +1803,Xenoblade Chronicles Definitive Edition - 0100FF500E34A000,0100FF500E34A000,status-playable;nvdec,playable,2024-05-04 20:12:41,25 +1805,A Winter's Daydream,,,,2020-06-22 14:52:38,1 +1806,DEAD OR SCHOOL - 0100A5000F7AA000,0100A5000F7AA000,status-playable;nvdec,playable,2022-09-06 12:04:09,2 +1807,Biolab Wars,,,,2020-06-22 15:50:34,1 +1808,Worldend Syndrome,,status-playable,playable,2021-01-03 14:16:32,3 +1809,The Tiny Bang Story - 01009B300D76A000,01009B300D76A000,status-playable,playable,2021-03-05 15:39:05,2 +1810,Neo Cab - 0100EBB00D2F4000,0100EBB00D2F4000,status-playable,playable,2021-04-24 0:27:58,3 +1811,Sniper Elite 3 Ultimate Edition - 010075A00BA14000,010075A00BA14000,status-playable;ldn-untested,playable,2024-04-18 7:47:49,7 +1812,Boku to Nurse no Kenshuu Nisshi - 010093700ECEC000,010093700ECEC000,status-playable,playable,2022-11-21 20:38:34,2 +1813,80 Days,,status-playable,playable,2020-06-22 21:43:01,1 +1814,Mirror,,,,2020-06-22 21:46:55,1 +1815,SELFY COLLECTION Dream Stylist,,,,2020-06-22 22:15:25,1 +1817,G-MODE Archives 4 Beach Volleyball Girl Drop,,,,2020-06-22 22:36:36,1 +1818,Star Horizon,,,,2020-06-22 23:03:45,1 +1819,To the Moon,,status-playable,playable,2021-03-20 15:33:38,4 +1820,Darksiders II Deathinitive Edition - 010071800BA98000,010071800BA98000,gpu;status-ingame;nvdec;online-broken,ingame,2024-06-26 0:37:25,6 +1821,SpongeBob SquarePants: Battle for Bikini Bottom - Rehydrated - 010062800D39C000,010062800D39C000,status-playable;online-broken;UE4;ldn-broken;vulkan-backend-bug,playable,2023-08-01 19:29:34,9 +1822,Sleep Tight - 01004AC0081DC000,01004AC0081DC000,gpu;status-ingame;UE4,ingame,2022-08-13 0:17:32,5 +1823,SUPER ROBOT WARS V,,online;status-playable,playable,2020-06-23 12:56:37,1 +1824,Ghostbusters: The Video Game Remastered - 010008A00F632000,010008A00F632000,status-playable;nvdec,playable,2021-09-17 7:26:57,3 +1825,FIFA 20 Legacy Edition - 01005DE00D05C000,01005DE00D05C000,gpu;status-ingame;nvdec;online-broken;ldn-untested,ingame,2022-09-13 17:57:20,5 +1826,VARIABLE BARRICADE NS - 010045C0109F2000,010045C0109F2000,status-playable;nvdec,playable,2022-02-26 15:50:13,2 +1827,Super Cane Magic ZERO - 0100D9B00DB5E000,0100D9B00DB5E000,status-playable,playable,2022-09-12 15:33:46,2 +1829,Whipsey and the Lost Atlas,,status-playable,playable,2020-06-23 20:24:14,1 +1830,FUZE4 - 0100EAD007E98000,0100EAD007E98000,status-playable;vulkan-backend-bug,playable,2022-09-06 19:25:01,4 +1831,Legend of the Skyfish,,status-playable,playable,2020-06-24 13:04:22,1 +1832,Grand Brix Shooter,,slow;status-playable,playable,2020-06-24 13:23:54,1 +1833,Pokémon Café Mix - 010072400E04A000,010072400E04A000,status-playable,playable,2021-08-17 20:00:04,3 +1834,BULLETSTORM: DUKE OF SWITCH EDITION - 01003DD00D658000,01003DD00D658000,status-playable;nvdec,playable,2022-03-03 8:30:24,4 +1835,Brunch Club,,status-playable,playable,2020-06-24 13:54:07,1 +1836,Invisigun Reloaded - 01005F400E644000,01005F400E644000,gpu;online;status-ingame,ingame,2021-06-10 12:13:24,5 +1837,AER - Memories of Old - 0100A0400DDE0000,0100A0400DDE0000,nvdec;status-playable,playable,2021-03-05 18:43:43,2 +1838,Farm Mystery - 01000E400ED98000,01000E400ED98000,status-playable;nvdec,playable,2022-09-06 16:46:47,5 +1839,Ninjala - 0100CCD0073EA000,0100CCD0073EA000,status-boots;online-broken;UE4,boots,2024-07-03 20:04:49,10 +1840,Shojo Jigoku no Doku musume,,,,2020-06-25 11:25:12,1 +1841,Jump Rope Challenge - 0100B9C012706000,0100B9C012706000,services;status-boots;crash;Needs Update,boots,2023-02-27 1:24:28,3 +1842,Knight Squad,,status-playable,playable,2020-08-09 16:54:51,3 +1843,WARBORN,,status-playable,playable,2020-06-25 12:36:47,1 +1844,The Bard's Tale ARPG: Remastered and Resnarkled - 0100CD500DDAE000,0100CD500DDAE000,gpu;status-ingame;nvdec;online-working,ingame,2024-07-18 12:52:01,6 +1845,NAMCOT COLLECTION,,audio;status-playable,playable,2020-06-25 13:35:22,1 +1846,Code: Realize ~Future Blessings~ - 010002400F408000,010002400F408000,status-playable;nvdec,playable,2023-03-31 16:57:47,2 +1847,Code: Realize ~Guardian of Rebirth~,,,,2020-06-25 15:09:14,1 +1848,Polandball: Can Into Space!,,status-playable,playable,2020-06-25 15:13:26,1 +1849,Ruiner - 01006EC00F2CC000,01006EC00F2CC000,status-playable;UE4,playable,2022-10-03 14:11:33,3 +1850,Summer in Mara - 0100A130109B2000,0100A130109B2000,nvdec;status-playable,playable,2021-03-06 14:10:38,2 +1851,Brigandine: The Legend of Runersia - 010011000EA7A000,010011000EA7A000,status-playable,playable,2021-06-20 6:52:25,14 +1852,Duke Nukem 3D: 20th Anniversary World Tour - 01007EF00CB88000,01007EF00CB88000,32-bit;status-playable;ldn-untested,playable,2022-08-19 22:22:40,6 +1853,Outbuddies DX - 0100B8900EFA6000,0100B8900EFA6000,gpu;status-ingame,ingame,2022-08-04 22:39:24,4 +1854,Mr. DRILLER DrillLand,,nvdec;status-playable,playable,2020-07-24 13:56:48,2 +1855,Fable of Fairy Stones - 0100E3D0103CE000,0100E3D0103CE000,status-playable,playable,2021-05-05 21:04:54,2 +1856,Destrobots - 01008BB011ED6000,01008BB011ED6000,status-playable,playable,2021-03-06 14:37:05,2 +1857,Aery - 0100875011D0C000,0100875011D0C000,status-playable,playable,2021-03-07 15:25:51,2 +1858,TETRA for Nintendo Switch,,status-playable,playable,2020-06-26 20:49:55,1 +1859,Push the Crate 2 - 0100B60010432000,0100B60010432000,UE4;gpu;nvdec;status-ingame,ingame,2021-06-10 14:20:01,3 +1860,Railway Empire - 01002EE00DC02000,01002EE00DC02000,status-playable;nvdec,playable,2022-10-03 13:53:50,3 +1861,Endless Fables: Dark Moor - 01004F3011F92000,01004F3011F92000,gpu;nvdec;status-ingame,ingame,2021-03-07 15:31:03,2 +1862,Across the Grooves,,status-playable,playable,2020-06-27 12:29:51,1 +1863,Behold the Kickmen,,status-playable,playable,2020-06-27 12:49:45,1 +1864,Blood & Guts Bundle,,status-playable,playable,2020-06-27 12:57:35,1 +1865,Seek Hearts - 010075D0101FA000,010075D0101FA000,status-playable,playable,2022-11-22 15:06:26,2 +1866,Edna & Harvey: The Breakout - Anniversary Edition - 01004F000B716000,01004F000B716000,status-ingame;crash;nvdec,ingame,2022-08-01 16:59:56,5 +1867,-KLAUS-,,nvdec;status-playable,playable,2020-06-27 13:27:30,1 +1868,Gun Gun Pixies,,,,2020-06-27 13:31:06,1 +1869,Tcheco in the Castle of Lucio,,status-playable,playable,2020-06-27 13:35:43,1 +1870,My Butler,,status-playable,playable,2020-06-27 13:46:23,1 +1871,Caladrius Blaze - 01004FD00D66A000,01004FD00D66A000,deadlock;status-nothing;nvdec,nothing,2022-12-07 16:44:37,4 +1872,Shipped,,status-playable,playable,2020-11-21 14:22:32,3 +1873,The Alliance Alive HD Remastered - 010045A00E038000,010045A00E038000,nvdec;status-playable,playable,2021-03-07 15:43:45,2 +1874,Monochrome Order,,,,2020-06-27 14:38:40,1 +1875,My Lovely Daughter - 010086B00C784000,010086B00C784000,status-playable,playable,2022-11-24 17:25:32,2 +1876,Caged Garden Cock Robin,,,,2020-06-27 16:47:22,1 +1877,A Knight's Quest - 01005EF00CFDA000,01005EF00CFDA000,status-playable;UE4,playable,2022-09-12 20:44:20,6 +1878,The Witcher 3: Wild Hunt - 01003D100E9C6000,01003D100E9C6000,status-playable;nvdec;vulkan-backend-bug;amd-vendor-bug,playable,2024-02-22 12:21:51,11 +1879,BATTLESTAR GALACTICA Deadlock,,nvdec;status-playable,playable,2020-06-27 17:35:44,1 +1880,STELLATUM - 0100BC800EDA2000,0100BC800EDA2000,gpu;status-playable,playable,2021-03-07 16:30:23,2 +1881,Reventure - 0100E2E00EA42000,0100E2E00EA42000,status-playable,playable,2022-09-15 20:07:06,2 +1882,Killer Queen Black - 0100F2900B3E2000,0100F2900B3E2000,ldn-untested;online;status-playable,playable,2021-04-08 12:46:18,3 +1883,Puchitto kurasutā,,Need-Update;crash;services;status-menus,menus,2020-07-04 16:44:28,2 +1884,Silk - 010045500DFE2000,010045500DFE2000,nvdec;status-playable,playable,2021-06-10 15:34:37,2 +1885,Aldred - Knight of Honor - 01000E000EEF8000,01000E000EEF8000,services;status-playable,playable,2021-11-30 1:49:17,2 +1886,Tamashii - 010012800EE3E000,010012800EE3E000,status-playable,playable,2021-06-10 15:26:20,2 +1887,Overlanders - 0100D7F00EC64000,0100D7F00EC64000,status-playable;nvdec;UE4,playable,2022-09-14 20:15:06,3 +1888,Romancing SaGa 3,,audio;gpu;status-ingame,ingame,2020-06-27 20:26:18,1 +1889,Hakoniwa Explorer Plus,,slow;status-ingame,ingame,2021-02-19 16:56:19,3 +1890,Fractured Minds - 01004200099F2000,01004200099F2000,status-playable,playable,2022-09-13 21:21:40,3 +1891,Strange Telephone,,,,2020-06-27 21:00:43,1 +1892,Strikey Sisters,,,,2020-06-27 22:20:14,1 +1893,IxSHE Tell - 0100DEB00F12A000,0100DEB00F12A000,status-playable;nvdec,playable,2022-12-02 18:00:42,3 +1894,Monster Farm - 0100E9900ED74000,0100E9900ED74000,32-bit;nvdec;status-playable,playable,2021-05-05 19:29:13,3 +1895,Pachi Pachi On A Roll,,,,2020-06-28 10:28:59,1 +1896,MISTOVER,,,,2020-06-28 11:23:53,1 +1897,Little Busters! Converted Edition - 0100943010310000,0100943010310000,status-playable;nvdec,playable,2022-09-29 15:34:56,3 +1898,Snack World The Dungeon Crawl Gold - 0100F2800D46E000,0100F2800D46E000,gpu;slow;status-ingame;nvdec;audout,ingame,2022-05-01 21:12:44,7 +1899,Super Kirby Clash - 01003FB00C5A8000,01003FB00C5A8000,status-playable;ldn-works,playable,2024-07-30 18:21:55,8 +1900,SEGA AGES Thunder Force IV,,,,2020-06-29 12:06:07,1 +1901,SEGA AGES Puyo Puyo - 01005F600CB0E000,01005F600CB0E000,online;status-playable,playable,2021-05-05 16:09:28,3 +1902,EAT BEAT DEADSPIKE-san - 0100A9B009678000,0100A9B009678000,audio;status-playable;Needs Update,playable,2022-12-02 19:25:29,2 +1903,AeternoBlade II - 01009D100EA28000,01009D100EA28000,status-playable;online-broken;UE4;vulkan-backend-bug,playable,2022-09-12 21:11:18,3 +1904,WRC 8 FIA World Rally Championship - 010087800DCEA000,010087800DCEA000,status-playable;nvdec,playable,2022-09-16 23:03:36,4 +1905,Yaga - 01006FB00DB02000,01006FB00DB02000,status-playable;nvdec,playable,2022-09-16 23:17:17,2 +1906,Woven - 01006F100EB16000,01006F100EB16000,nvdec;status-playable,playable,2021-06-02 13:41:08,3 +1907,Kissed by the Baddest Bidder - 0100F3A00F4CA000,0100F3A00F4CA000,gpu;status-ingame;nvdec,ingame,2022-12-04 20:57:11,3 +1910,Thief of Thieves - 0100CE700F62A000,0100CE700F62A000,status-nothing;crash;loader-allocator,nothing,2021-11-03 7:16:30,2 +1911,Squidgies Takeover,,status-playable,playable,2020-07-20 22:28:08,2 +1912,Balthazar's Dreams - 0100BC400FB64000,0100BC400FB64000,status-playable,playable,2022-09-13 0:13:22,2 +1913,ZenChess,,status-playable,playable,2020-07-01 22:28:27,1 +1914,Sparklite - 01007ED00C032000,01007ED00C032000,status-playable,playable,2022-08-06 11:35:41,4 +1915,Some Distant Memory - 01009EE00E91E000,01009EE00E91E000,status-playable,playable,2022-09-15 21:48:19,2 +1916,Skybolt Zack - 010041C01014E000,010041C01014E000,status-playable,playable,2021-04-12 18:28:00,3 +1917,Tactical Mind 2,,status-playable,playable,2020-07-01 23:11:07,1 +1918,Super Street: Racer - 0100FB400F54E000,0100FB400F54E000,status-playable;UE4,playable,2022-09-16 13:43:14,2 +1919,TOKYO DARK - REMEMBRANCE - - 01003E500F962000,01003E500F962000,nvdec;status-playable,playable,2021-06-10 20:09:49,2 +1920,Party Treats,,status-playable,playable,2020-07-02 0:05:00,1 +1921,Rocket Wars,,status-playable,playable,2020-07-24 14:27:39,2 +1922,Rawr-Off,,crash;nvdec;status-menus,menus,2020-07-02 0:14:44,1 +1923,Blair Witch - 01006CC01182C000,01006CC01182C000,status-playable;nvdec;UE4,playable,2022-10-01 14:06:16,6 +1924,Urban Trial Tricky - 0100A2500EB92000,0100A2500EB92000,status-playable;nvdec;UE4,playable,2022-12-06 13:07:56,6 +1925,Infliction - 01001CB00EFD6000,01001CB00EFD6000,status-playable;nvdec;UE4,playable,2022-10-02 13:15:55,4 +1926,Catherine Full Body for Nintendo Switch (JP) - 0100BAE0077E4000,0100BAE0077E4000,Needs Update;gpu;status-ingame,ingame,2021-02-21 18:06:11,14 +1927,Night Call - 0100F3A0095A6000,0100F3A0095A6000,status-playable;nvdec,playable,2022-10-03 12:57:00,2 +1928,Grimshade - 01001E200F2F8000,01001E200F2F8000,status-playable,playable,2022-10-02 12:44:20,2 +1930,A Summer with the Shiba Inu - 01007DD011C4A000,01007DD011C4A000,status-playable,playable,2021-06-10 20:51:16,2 +1931,Holy Potatoes! What the Hell?!,,status-playable,playable,2020-07-03 10:48:56,1 +1932,Tower of Time,,gpu;nvdec;status-ingame,ingame,2020-07-03 11:11:12,1 +1933,Iron Wings - 01005270118D6000,01005270118D6000,slow;status-ingame,ingame,2022-08-07 8:32:57,4 +1934,Death Come True - 010012B011AB2000,010012B011AB2000,nvdec;status-playable,playable,2021-06-10 22:30:49,2 +1935,CAN ANDROIDS PRAY:BLUE,,,,2020-07-05 8:14:53,1 +1936,The Almost Gone,,status-playable,playable,2020-07-05 12:33:07,1 +1937,Urban Flow,,services;status-playable,playable,2020-07-05 12:51:47,1 +1938,Digimon Story Cyber Sleuth: Complete Edition - 010014E00DB56000,010014E00DB56000,status-playable;nvdec;opengl,playable,2022-09-13 15:02:37,4 +1939,Return of the Obra Dinn - 010032E00E6E2000,010032E00E6E2000,status-playable,playable,2022-09-15 19:56:45,2 +1940,YU-NO: A GIRL WHO CHANTS LOVE AT THE BOUND OF THIS WORLD. - 010037D00DBDC000,010037D00DBDC000,nvdec;status-playable,playable,2021-01-26 17:03:52,3 +1941,Summer Sweetheart - 01004E500DB9E000,01004E500DB9E000,status-playable;nvdec,playable,2022-09-16 12:51:46,5 +1942,ZikSquare - 010086700EF16000,010086700EF16000,gpu;status-ingame,ingame,2021-11-06 2:02:48,5 +1943,Planescape: Torment and Icewind Dale: Enhanced Editions - 010030B00C316000,010030B00C316000,cpu;status-boots;32-bit;crash;Needs Update,boots,2022-09-10 3:58:26,6 +1944,Megaquarium - 010082B00E8B8000,010082B00E8B8000,status-playable,playable,2022-09-14 16:50:00,2 +1945,Ice Age Scrat's Nutty Adventure - 01004E5007E92000,01004E5007E92000,status-playable;nvdec,playable,2022-09-13 22:22:29,2 +1946,Aggelos - 010004D00A9C0000,010004D00A9C0000,gpu;status-ingame,ingame,2023-02-19 13:24:23,5 +1947,Stranded Sails: Explorers of the Cursed Islands - 010078D00E8F4000,010078D00E8F4000,slow;status-playable;nvdec;UE4,playable,2022-09-16 11:58:38,3 +1948,Sub Level Zero: Redux - 0100E6400BCE8000,0100E6400BCE8000,status-playable,playable,2022-09-16 12:30:03,2 +1949,BurgerTime Party!,,slow;status-playable,playable,2020-11-21 14:11:53,3 +1950,Another Sight,,UE4;gpu;nvdec;status-ingame,ingame,2020-12-03 16:49:59,3 +1951,Baldur's Gate and Baldur's Gate II: Enhanced Editions - 010010A00DA48000,010010A00DA48000,32-bit;status-playable,playable,2022-09-12 23:52:15,6 +1952,Kine - 010089000F0E8000,010089000F0E8000,status-playable;UE4,playable,2022-09-14 14:28:37,3 +1953,Roof Rage - 010088100DD42000,010088100DD42000,status-boots;crash;regression,boots,2023-11-12 3:47:18,5 +1954,Pig Eat Ball - 01000FD00D5CC000,01000FD00D5CC000,services;status-ingame,ingame,2021-11-30 1:57:45,2 +1956,DORAEMON STORY OF SEASONS,,nvdec;status-playable,playable,2020-07-13 20:28:11,2 +1957,Root Letter: Last Answer - 010030A00DA3A000,010030A00DA3A000,status-playable;vulkan-backend-bug,playable,2022-09-17 10:25:57,2 +1959,Cat Quest II,,status-playable,playable,2020-07-06 23:52:09,1 +1960,Streets of Rage 4,,nvdec;online;status-playable,playable,2020-07-07 21:21:22,1 +1961,Deep Space Rush,,status-playable,playable,2020-07-07 23:30:33,1 +1962,Into the Dead 2 - 01000F700DECE000,01000F700DECE000,status-playable;nvdec,playable,2022-09-14 12:36:14,3 +1963,Dark Devotion - 010083A00BF6C000,010083A00BF6C000,status-playable;nvdec,playable,2022-08-09 9:41:18,5 +1964,Anthill - 010054C00D842000,010054C00D842000,services;status-menus;nvdec,menus,2021-11-18 9:25:25,3 +1965,Skullgirls: 2nd Encore - 010046B00DE62000,010046B00DE62000,status-playable,playable,2022-09-15 21:21:25,6 +1966,Tokyo School Life - 0100E2E00CB14000,0100E2E00CB14000,status-playable,playable,2022-09-16 20:25:54,2 +1967,Pixel Gladiator,,status-playable,playable,2020-07-08 2:41:26,1 +1968,Spirit Hunter: NG,,32-bit;status-playable,playable,2020-12-17 20:38:47,3 +1969,The Fox Awaits Me,,,,2020-07-08 11:58:56,1 +1970,Shalnor Legends: Sacred Lands - 0100B4900E008000,0100B4900E008000,status-playable,playable,2021-06-11 14:57:11,2 +1971,Hero must die. again,,,,2020-07-08 12:35:49,1 +1972,AeternoBlade I,,nvdec;status-playable,playable,2020-12-14 20:06:48,2 +1973,Sephirothic Stories - 010059700D4A0000,010059700D4A0000,services;status-menus,menus,2021-11-25 8:52:17,3 +1974,Ciel Fledge: A Daughter Raising Simulator,,,,2020-07-08 14:57:17,1 +1976,Olympia Soiree - 0100F9D00C186000,0100F9D00C186000,status-playable,playable,2022-12-04 21:07:12,2 +1977,Mighty Switch Force! Collection - 010060D00AE36000,010060D00AE36000,status-playable,playable,2022-10-28 20:40:32,3 +1978,Street Outlaws: The List - 010012400D202000,010012400D202000,nvdec;status-playable,playable,2021-06-11 12:15:32,4 +1979,TroubleDays,,,,2020-07-09 8:50:12,1 +1980,Legend of the Tetrarchs,,deadlock;status-ingame,ingame,2020-07-10 7:54:03,2 +1981,Soul Searching,,status-playable,playable,2020-07-09 18:39:07,1 +1982,Dusk Diver - 010011C00E636000,010011C00E636000,status-boots;crash;UE4,boots,2021-11-06 9:01:30,2 +1984,PBA Pro Bowling - 010085700ABC8000,010085700ABC8000,status-playable;nvdec;online-broken;UE4,playable,2022-09-14 23:00:49,2 +1985,Horror Pinball Bundle - 0100E4200FA82000,0100E4200FA82000,status-menus;crash,menus,2022-09-13 22:15:34,4 +1986,Farm Expert 2019 for Nintendo Switch,,status-playable,playable,2020-07-09 21:42:57,1 +1987,Super Monkey Ball: Banana Blitz HD - 0100B2A00E1E0000,0100B2A00E1E0000,status-playable;online-broken,playable,2022-09-16 13:16:25,2 +1988,Yuri - 0100FC900963E000,0100FC900963E000,status-playable,playable,2021-06-11 13:08:50,2 +1989,Vampyr - 01000BD00CE64000,01000BD00CE64000,status-playable;nvdec;UE4,playable,2022-09-16 22:15:51,4 +1990,Spirit Roots,,nvdec;status-playable,playable,2020-07-10 13:33:32,1 +1991,Resident Evil 5 - 010018100CD46000,010018100CD46000,status-playable;nvdec,playable,2024-02-18 17:15:29,6 +1992,RESIDENT EVIL 6 - 01002A000CD48000,01002A000CD48000,status-playable;nvdec,playable,2022-09-15 14:31:47,5 +1993,The Big Journey - 010089600E66A000,010089600E66A000,status-playable,playable,2022-09-16 14:03:08,2 +1994,Sky Gamblers: Storm Raiders 2 - 010068200E96E000,010068200E96E000,gpu;status-ingame,ingame,2022-09-13 12:24:04,2 +1995,Door Kickers: Action Squad - 01005ED00CD70000,01005ED00CD70000,status-playable;online-broken;ldn-broken,playable,2022-09-13 16:28:53,2 +1996,Agony,,UE4;crash;status-boots,boots,2020-07-10 16:21:18,1 +1997,Remothered: Tormented Fathers - 01001F100E8AE000,01001F100E8AE000,status-playable;nvdec;UE4,playable,2022-10-19 23:26:50,4 +1998,Biped - 010053B0117F8000,010053B0117F8000,status-playable;nvdec,playable,2022-10-01 13:32:58,2 +1999,Clash Force - 01005ED0107F4000,01005ED0107F4000,status-playable,playable,2022-10-01 23:45:48,2 +2000,Truck & Logistics Simulator - 0100F2100AA5C000,0100F2100AA5C000,status-playable,playable,2021-06-11 13:29:08,3 +2001,Collar X Malice - 010083E00F40E000,010083E00F40E000,status-playable;nvdec,playable,2022-10-02 11:51:56,3 +2002,TORICKY-S - 01007AF011732000,01007AF011732000,deadlock;status-menus,menus,2021-11-25 8:53:36,3 +2003,The Wanderer: Frankenstein's Creature,,status-playable,playable,2020-07-11 12:49:51,1 +2004,PRINCESS MAKER -FAERY TALES COME TRUE-,,,,2020-07-11 16:09:47,1 +2005,Princess Maker Go!Go! Princess,,,,2020-07-11 16:35:31,1 +2006,Paradox Soul,,,,2020-07-11 17:20:44,1 +2007,Diabolic - 0100F73011456000,0100F73011456000,status-playable,playable,2021-06-11 14:45:08,2 +2008,UBERMOSH:BLACK,,,,2020-07-11 17:42:34,1 +2009,Journey to the Savage Planet - 01008B60117EC000,01008B60117EC000,status-playable;nvdec;UE4;ldn-untested,playable,2022-10-02 18:48:12,2 +2010,Viviette - 010037900CB1C000,010037900CB1C000,status-playable,playable,2021-06-11 15:33:40,2 +2011,the StoryTale - 0100858010DC4000,0100858010DC4000,status-playable,playable,2022-09-03 13:00:25,5 +2012,Ghost Grab 3000,,status-playable,playable,2020-07-11 18:09:52,1 +2013,SEGA AGES Shinobi,,,,2020-07-11 18:17:27,1 +2014,eCrossminton,,status-playable,playable,2020-07-11 18:24:27,1 +2015,Dangerous Relationship,,,,2020-07-11 18:39:45,1 +2016,Indie Darling Bundle Vol. 3 - 01004DE011076000,01004DE011076000,status-playable,playable,2022-10-02 13:01:57,2 +2017,Murder by Numbers,,,,2020-07-11 19:12:19,1 +2018,BUSTAFELLOWS,,nvdec;status-playable,playable,2020-10-17 20:04:41,5 +2019,Love Letter from Thief X - 0100D36011AD4000,0100D36011AD4000,gpu;status-ingame;nvdec,ingame,2023-11-14 3:55:31,7 +2020,Escape Game Fort Boyard,,status-playable,playable,2020-07-12 12:45:43,1 +2021,SEGA AGES Gain Ground - 01001E600AF08000,01001E600AF08000,online;status-playable,playable,2021-05-05 16:16:27,3 +2022,The Wardrobe: Even Better Edition - 01008B200FC6C000,01008B200FC6C000,status-playable,playable,2022-09-16 19:14:55,2 +2023,SEGA AGES Wonder Boy: Monster Land - 01001E700AC60000,01001E700AC60000,online;status-playable,playable,2021-05-05 16:28:25,3 +2024,SEGA AGES Columns II: A Voyage Through Time,,,,2020-07-12 13:38:50,1 +2025,Zenith - 0100AAC00E692000,0100AAC00E692000,status-playable,playable,2022-09-17 9:57:02,3 +2026,Jumanji,,UE4;crash;status-boots,boots,2020-07-12 13:52:25,1 +2027,SEGA AGES Ichidant-R,,,,2020-07-12 13:54:29,1 +2028,STURMWIND EX - 0100C5500E7AE000,0100C5500E7AE000,audio;32-bit;status-playable,playable,2022-09-16 12:01:39,7 +2029,SEGA AGES Alex Kidd in Miracle World - 0100A8900AF04000,0100A8900AF04000,online;status-playable,playable,2021-05-05 16:35:47,3 +2030,The Lord of the Rings: Adventure Card Game - 010085A00C5E8000,010085A00C5E8000,status-menus;online-broken,menus,2022-09-16 15:19:32,2 +2031,Breeder Homegrown: Director's Cut,,,,2020-07-12 14:54:02,1 +2032,StarCrossed,,,,2020-07-12 15:15:22,1 +2033,The Legend of Dark Witch,,status-playable,playable,2020-07-12 15:18:33,1 +2034,One-Way Ticket,,,,2020-07-12 15:36:25,1 +2035,Ships - 01000E800FCB4000,01000E800FCB4000,status-playable,playable,2021-06-11 16:14:37,2 +2036,My Bewitching Perfume,,,,2020-07-12 15:55:15,1 +2037,Black and White Bushido,,,,2020-07-12 16:12:16,1 +2038,REKT,,online;status-playable,playable,2020-09-28 12:33:56,2 +2039,Nirvana Pilot Yume - 010020901088A000,010020901088A000,status-playable,playable,2022-10-29 11:49:49,1 +2040,Detective Jinguji Saburo Prism of Eyes,,status-playable,playable,2020-10-02 21:54:41,3 +2041,Harvest Moon: Mad Dash,,,,2020-07-12 20:37:50,1 +2042,Worse Than Death - 010037500C4DE000,010037500C4DE000,status-playable,playable,2021-06-11 16:05:40,2 +2043,Bad Dream: Coma - 01000CB00D094000,01000CB00D094000,deadlock;status-boots,boots,2023-08-03 0:54:18,2 +2044,Chou no Doku Hana no Kusari: Taishou Irokoi Ibun,,gpu;nvdec;status-ingame,ingame,2020-09-28 17:58:04,3 +2045,MODEL Debut #nicola,,,,2020-07-13 11:21:44,1 +2046,Chameleon,,,,2020-07-13 12:06:20,1 +2047,Gunka o haita neko,,gpu;nvdec;status-ingame,ingame,2020-08-25 12:37:56,2 +2048,Genso maneju,,,,2020-07-13 14:14:09,1 +2049,Coffee Talk,,status-playable,playable,2020-08-10 9:48:44,2 +2050,Labyrinth of the Witch,,status-playable,playable,2020-11-01 14:42:37,2 +2051,Ritual: Crown of Horns - 010042500FABA000,010042500FABA000,status-playable,playable,2021-01-26 16:01:47,2 +2052,THE GRISAIA TRILOGY - 01003b300e4aa000,01003b300e4aa000,status-playable,playable,2021-01-31 15:53:59,2 +2053,Perseverance,,status-playable,playable,2020-07-13 18:48:27,1 +2054,SEGA AGES Fantasy Zone,,,,2020-07-13 19:33:23,1 +2056,SEGA AGES Thunder Force AC,,,,2020-07-13 19:50:34,1 +2057,SEGA AGES Puyo Puyo 2,,,,2020-07-13 20:15:04,1 +2058,GRISAIA PHANTOM TRIGGER 01&02 - 01009D7011B02000,01009D7011B02000,status-playable;nvdec,playable,2022-12-04 21:16:06,3 +2059,Paper Dolls Original,,UE4;crash;status-boots,boots,2020-07-13 20:26:21,1 +2060,"STAY COOL, KOBAYASHI-SAN! A RIVER RANSOM STORY - 0100B61009C60000",0100B61009C60000,status-playable,playable,2021-01-26 17:37:28,2 +2061, SEGA AGES G-LOC AIR BATTLE,,,,2020-07-13 20:42:40,1 +2062,Think of the Children - 0100F2300A5DA000,0100F2300A5DA000,deadlock;status-menus,menus,2021-11-23 9:04:45,2 +2063,OTOKOMIZU,,status-playable,playable,2020-07-13 21:00:44,1 +2064,Puchikon 4 Smile BASIC,,,,2020-07-13 21:18:15,1 +2065,Neverlast,,slow;status-ingame,ingame,2020-07-13 23:55:19,1 +2066,MONKEY BARRELS - 0100FBD00ED24000,0100FBD00ED24000,status-playable,playable,2022-09-14 17:28:52,2 +2067,Ghost Parade,,status-playable,playable,2020-07-14 0:43:54,1 +2068,Hopping girl KOHANE Jumping Kingdom: Princess of the Black Rabbit - 010087800EE5A000,010087800EE5A000,status-boots;crash,boots,2023-02-19 0:51:21,2 +2069,OMG Zombies! - 01006DB00D970000,01006DB00D970000,32-bit;status-playable,playable,2021-04-12 18:04:45,5 +2070,Evan's Remains,,,,2020-07-14 5:56:25,1 +2071,Working Zombies,,,,2020-07-14 6:30:55,1 +2072,Saboteur II: Avenging Angel,,Needs Update;cpu;crash;status-nothing,nothing,2021-01-26 14:47:37,2 +2073,Quell Zen - 0100492012378000,0100492012378000,gpu;status-ingame,ingame,2021-06-11 15:59:53,2 +2074,The Touryst - 0100C3300D8C4000,0100C3300D8C4000,status-ingame;crash,ingame,2023-08-22 1:32:38,9 +2075,SMASHING THE BATTLE - 01002AA00C974000,01002AA00C974000,status-playable,playable,2021-06-11 15:53:57,2 +2076,Him & Her,,,,2020-07-14 8:09:57,1 +2077,Speed Brawl,,slow;status-playable,playable,2020-09-18 22:08:16,2 +2078,River City Melee Mach!! - 0100B2100767C000,0100B2100767C000,status-playable;online-broken,playable,2022-09-20 20:51:57,2 +2079,Please The Gods,,,,2020-07-14 10:10:27,1 +2080,One Person Story,,status-playable,playable,2020-07-14 11:51:02,1 +2081,Mary Skelter 2 - 01003DE00C95E000,01003DE00C95E000,status-ingame;crash;regression,ingame,2023-09-12 7:37:28,11 +2082,NecroWorm,,,,2020-07-14 12:15:16,1 +2083,Juicy Realm - 0100C7600F654000,0100C7600F654000,status-playable,playable,2023-02-21 19:16:20,5 +2084,Grizzland,,,,2020-07-14 12:28:03,1 +2085,Garfield Kart Furious Racing - 010061E00E8BE000,010061E00E8BE000,status-playable;ldn-works;loader-allocator,playable,2022-09-13 21:40:25,3 +2086,Close to the Sun - 0100B7200DAC6000,0100B7200DAC6000,status-boots;crash;nvdec;UE4,boots,2021-11-04 9:19:41,3 +2087,Xeno Crisis,,,,2020-07-14 12:46:55,1 +2088,Boreal Blade - 01008E500AFF6000,01008E500AFF6000,gpu;ldn-untested;online;status-ingame,ingame,2021-06-11 15:37:14,2 +2089,Animus: Harbinger - 0100E5A00FD38000,0100E5A00FD38000,status-playable,playable,2022-09-13 22:09:20,2 +2090,DEADBOLT,,,,2020-07-14 13:20:01,1 +2091,Headsnatchers,,UE4;crash;status-menus,menus,2020-07-14 13:29:14,1 +2092,DOUBLE DRAGON Ⅲ: The Sacred Stones - 01001AD00E49A000,01001AD00E49A000,online;status-playable,playable,2021-06-11 15:41:44,2 +2093,911 Operator Deluxe Edition,,status-playable,playable,2020-07-14 13:57:44,1 +2094,Disney Tsum Tsum Festival,,crash;status-menus,menus,2020-07-14 14:05:28,1 +2095,JUST DANCE 2020 - 0100DDB00DB38000,0100DDB00DB38000,status-playable,playable,2022-01-24 13:31:57,6 +2096,A Street Cat's Tale,,,,2020-07-14 14:10:13,1 +2097,Real Heroes: Firefighter - 010048600CC16000,010048600CC16000,status-playable,playable,2022-09-20 18:18:44,2 +2098,The Savior's Gang - 01002BA00C7CE000,01002BA00C7CE000,gpu;status-ingame;nvdec;UE4,ingame,2022-09-21 12:37:48,4 +2099,KATANA KAMI: A Way of the Samurai Story - 0100F9800EDFA000,0100F9800EDFA000,slow;status-playable,playable,2022-04-09 10:40:16,5 +2100,Toon War - 01009EA00E2B8000,01009EA00E2B8000,status-playable,playable,2021-06-11 16:41:53,2 +2101,2048 CAT,,,,2020-07-14 14:44:29,1 +2102,Tick Tock: A Tale for Two,,status-menus,menus,2020-07-14 14:49:38,1 +2103,HexON,,,,2020-07-14 14:54:27,1 +2104,Ancient Rush 2,,UE4;crash;status-menus,menus,2020-07-14 14:58:47,1 +2105,Under Night In-Birth Exe:Late[cl-r],,,,2020-07-14 15:06:07,1 +2106,Circuits - 01008FA00D686000,01008FA00D686000,status-playable,playable,2022-09-19 11:52:50,2 +2107,Breathing Fear,,status-playable,playable,2020-07-14 15:12:29,1 +2108,KAMINAZO Memories from the future,,,,2020-07-14 15:22:45,1 +2109,Big Pharma,,status-playable,playable,2020-07-14 15:27:30,1 +2110,Amoeba Battle - Microscopic RTS Action - 010041D00DEB2000,010041D00DEB2000,status-playable,playable,2021-05-06 13:33:41,2 +2111,Assassin's Creed The Rebel Collection - 010044700DEB0000,010044700DEB0000,gpu;status-ingame,ingame,2024-05-19 7:58:56,5 +2112,Defenders of Ekron - Definitive Edition - 01008BB00F824000,01008BB00F824000,status-playable,playable,2021-06-11 16:31:03,2 +2113,Hellmut: The Badass from Hell,,,,2020-07-14 15:56:49,1 +2114,Alien: Isolation - 010075D00E8BA000,010075D00E8BA000,status-playable;nvdec;vulkan-backend-bug,playable,2022-09-17 11:48:41,4 +2115,Immortal Planet - 01007BC00E55A000,01007BC00E55A000,status-playable,playable,2022-09-20 13:40:43,3 +2116,inbento,,,,2020-07-14 16:09:57,1 +2117,Ding Dong XL,,status-playable,playable,2020-07-14 16:13:19,1 +2118,KUUKIYOMI 2: Consider It More! - New Era - 010037500F282000,010037500F282000,status-nothing;crash;Needs Update,nothing,2021-11-02 9:34:40,4 +2119, KUUKIYOMI: Consider It!,,,,2020-07-14 16:21:36,1 +2120,MADORIS R,,,,2020-07-14 16:34:22,1 +2121,Kairobotica - 0100D5F00EC52000,0100D5F00EC52000,status-playable,playable,2021-05-06 12:17:56,3 +2122,Bouncy Bob 2,,status-playable,playable,2020-07-14 16:51:53,1 +2123,Grab the Bottle,,status-playable,playable,2020-07-14 17:06:41,1 +2124,Red Bow - 0100CF600FF7A000,0100CF600FF7A000,services;status-ingame,ingame,2021-11-29 3:51:34,2 +2125,Pocket Mini Golf,,,,2020-07-14 22:13:35,1 +2126,Must Dash Amigos - 0100F6000EAA8000,0100F6000EAA8000,status-playable,playable,2022-09-20 16:45:56,2 +2127,EarthNight - 0100A2E00BB0C000,0100A2E00BB0C000,status-playable,playable,2022-09-19 21:02:20,2 +2128,Baobabs Mauseoleum Ep 1: Ovnifagos Don't Eat Flamingos,,status-playable,playable,2020-07-15 5:06:29,1 +2129,Bloo Kid 2 - 010055900FADA000,010055900FADA000,status-playable,playable,2024-05-01 17:16:57,7 +2130,Narcos: Rise of the Cartels - 010072B00BDDE000,010072B00BDDE000,UE4;crash;nvdec;status-boots,boots,2021-03-22 13:18:47,2 +2131,PUSH THE CRATE - 010016400F07E000,010016400F07E000,status-playable;nvdec;UE4,playable,2022-09-15 13:28:41,3 +2132,Bee Simulator,,UE4;crash;status-boots,boots,2020-07-15 12:13:13,1 +2133,Where the Bees Make Honey,,status-playable,playable,2020-07-15 12:40:49,1 +2134,The Eyes of Ara - 0100B5900DFB2000,0100B5900DFB2000,status-playable,playable,2022-09-16 14:44:06,2 +2135,The Unicorn Princess - 010064E00ECBC000,010064E00ECBC000,status-playable,playable,2022-09-16 16:20:56,2 +2136,Sword of the Guardian,,status-playable,playable,2020-07-16 12:24:39,1 +2137,Waifu Uncovered - 0100B130119D0000,0100B130119D0000,status-ingame;crash,ingame,2023-02-27 1:17:46,8 +2138,Paper Mario The Origami King - 0100A3900C3E2000,0100A3900C3E2000,audio;status-playable;Needs Update,playable,2024-08-09 18:27:40,31 +2139,Touhou Spell Bubble,,status-playable,playable,2020-10-18 11:43:43,4 +2140,Crysis Remastered - 0100E66010ADE000,0100E66010ADE000,status-menus;nvdec,menus,2024-08-13 5:23:24,13 +2141,Helltaker,,,,2020-07-23 21:16:43,1 +2142,Shadow Blade Reload - 0100D5500DA94000,0100D5500DA94000,nvdec;status-playable,playable,2021-06-11 18:40:43,2 +2143,The Bunker - 01001B40086E2000,01001B40086E2000,status-playable;nvdec,playable,2022-09-16 14:24:05,2 +2144,War Tech Fighters - 010049500DE56000,010049500DE56000,status-playable;nvdec,playable,2022-09-16 22:29:31,2 +2145,Real Drift Racing,,status-playable,playable,2020-07-25 14:31:31,1 +2146,Phantaruk - 0100DDD00C0EA000,0100DDD00C0EA000,status-playable,playable,2021-06-11 18:09:54,2 +2148,Omensight: Definitive Edition,,UE4;crash;nvdec;status-ingame,ingame,2020-07-26 1:45:14,1 +2149,Phantom Doctrine - 010096F00E5B0000,010096F00E5B0000,status-playable;UE4,playable,2022-09-15 10:51:50,3 +2150,Monster Bugs Eat People,,status-playable,playable,2020-07-26 2:05:34,1 +2151,Machi Knights Blood bagos - 0100F2400D434000,0100F2400D434000,status-playable;nvdec;UE4,playable,2022-09-14 15:08:04,3 +2152,Offroad Racing - 01003CD00E8BC000,01003CD00E8BC000,status-playable;online-broken;UE4,playable,2022-09-14 18:53:22,3 +2154,Puzzle Book,,status-playable,playable,2020-09-28 13:26:01,2 +2155,SUSHI REVERSI - 01005AB01119C000,01005AB01119C000,status-playable,playable,2021-06-11 19:26:58,2 +2156,Strike Force - War on Terror - 010039100DACC000,010039100DACC000,status-menus;crash;Needs Update,menus,2021-11-24 8:08:20,3 +2157,Mr Blaster - 0100D3300F110000,0100D3300F110000,status-playable,playable,2022-09-14 17:56:24,2 +2158,Lust for Darkness,,nvdec;status-playable,playable,2020-07-26 12:09:15,1 +2159,Legrand Legacy: Tale of the Fatebounds,,nvdec;status-playable,playable,2020-07-26 12:27:36,1 +2160,Hardway Party,,status-playable,playable,2020-07-26 12:35:07,1 +2161,Earthfall: Alien Horde - 0100DFC00E472000,0100DFC00E472000,status-playable;nvdec;UE4;ldn-untested,playable,2022-09-13 17:32:37,3 +2162,Collidalot - 010030800BC36000,010030800BC36000,status-playable;nvdec,playable,2022-09-13 14:09:27,4 +2163,Miniature - The Story Puzzle - 010039200EC66000,010039200EC66000,status-playable;UE4,playable,2022-09-14 17:18:50,3 +2164,MEANDERS - 0100EEF00CBC0000,0100EEF00CBC0000,UE4;gpu;status-ingame,ingame,2021-06-11 19:19:33,2 +2165,Isoland,,status-playable,playable,2020-07-26 13:48:16,1 +2166,Fishing Star World Tour - 0100DEB00ACE2000,0100DEB00ACE2000,status-playable,playable,2022-09-13 19:08:51,5 +2167,Isoland 2: Ashes of Time,,status-playable,playable,2020-07-26 14:29:05,1 +2168,Golazo - 010013800F0A4000,010013800F0A4000,status-playable,playable,2022-09-13 21:58:37,2 +2169,Castle of No Escape 2 - 0100F5500FA0E000,0100F5500FA0E000,status-playable,playable,2022-09-13 13:51:42,2 +2170,Guess The Word,,status-playable,playable,2020-07-26 21:34:25,1 +2171,Black Future '88 - 010049000B69E000,010049000B69E000,status-playable;nvdec,playable,2022-09-13 11:24:37,2 +2172,The Childs Sight - 010066800E9F8000,010066800E9F8000,status-playable,playable,2021-06-11 19:04:56,2 +2173,Asterix & Obelix XXL3: The Crystal Menhir - 010081500EA1E000,010081500EA1E000,gpu;status-ingame;nvdec;regression,ingame,2022-11-28 14:19:23,4 +2174,Go! Fish Go!,,status-playable,playable,2020-07-27 13:52:28,1 +2175,Amnesia: Collection - 01003CC00D0BE000,01003CC00D0BE000,status-playable,playable,2022-10-04 13:36:15,4 +2176,Ages of Mages: the Last Keeper - 0100E4700E040000,0100E4700E040000,status-playable;vulkan-backend-bug,playable,2022-10-04 11:44:05,3 +2177,Worlds of Magic: Planar Conquest - 010000301025A000,010000301025A000,status-playable,playable,2021-06-12 12:51:28,2 +2178,Hang the Kings,,status-playable,playable,2020-07-28 22:56:59,1 +2179,Super Dungeon Tactics - 010023100B19A000,010023100B19A000,status-playable,playable,2022-10-06 17:40:40,2 +2180,Five Nights at Freddy's: Sister Location - 01003B200E440000,01003B200E440000,status-playable,playable,2023-10-06 9:00:58,5 +2181,Ice Cream Surfer,,status-playable,playable,2020-07-29 12:04:07,1 +2182,Demon's Rise,,status-playable,playable,2020-07-29 12:26:27,1 +2183,A Ch'ti Bundle - 010096A00CC80000,010096A00CC80000,status-playable;nvdec,playable,2022-10-04 12:48:44,2 +2184,Overwatch®: Legendary Edition - 0100F8600E21E000,0100F8600E21E000,deadlock;status-boots,boots,2022-09-14 20:22:22,2 +2185,Zombieland: Double Tap - Road Trip - 01000E5800D32C000,01000E5800D32C00,status-playable,playable,2022-09-17 10:08:45,2 +2186,Children of Morta - 01002DE00C250000,01002DE00C250000,gpu;status-ingame;nvdec,ingame,2022-09-13 17:48:47,3 +2187,Story of a Gladiator,,status-playable,playable,2020-07-29 15:08:18,1 +2188,SD GUNDAM G GENERATION CROSS RAYS - 010055700CEA8000,010055700CEA8000,status-playable;nvdec,playable,2022-09-15 20:58:44,5 +2189,Neverwinter Nights: Enhanced Edition - 010013700DA4A000,010013700DA4A000,gpu;status-menus;nvdec,menus,2024-09-30 2:59:19,7 +2190,Race With Ryan,,UE4;gpu;nvdec;slow;status-ingame,ingame,2020-11-16 4:35:33,2 +2191,StrikeForce Kitty,,nvdec;status-playable,playable,2020-07-29 16:22:15,1 +2192,Later Daters,,status-playable,playable,2020-07-29 16:35:45,1 +2193,Pine,,slow;status-ingame,ingame,2020-07-29 16:57:39,1 +2194,Japanese Rail Sim: Journey to Kyoto,,nvdec;status-playable,playable,2020-07-29 17:14:21,1 +2195,FoxyLand,,status-playable,playable,2020-07-29 20:55:20,1 +2196,Five Nights at Freddy's - 0100B6200D8D2000,0100B6200D8D2000,status-playable,playable,2022-09-13 19:26:36,3 +2197,Five Nights at Freddy's 2 - 01004EB00E43A000,01004EB00E43A000,status-playable,playable,2023-02-08 15:48:24,8 +2198,Five Nights at Freddy's 3 - 010056100E43C000,010056100E43C000,status-playable,playable,2022-09-13 20:58:07,2 +2199,Five Nights at Freddy's 4 - 010083800E43E000,010083800E43E000,status-playable,playable,2023-08-19 7:28:03,4 +2200,Widget Satchel - 0100C7800CA06000,0100C7800CA06000,status-playable,playable,2022-09-16 22:41:07,3 +2201,Nyan Cat: Lost in Space - 010049F00EC30000,010049F00EC30000,online;status-playable,playable,2021-06-12 13:22:03,4 +2202,Blacksad: Under the Skin - 010032000EA2C000,010032000EA2C000,status-playable,playable,2022-09-13 11:38:04,2 +2203,Mini Trains,,status-playable,playable,2020-07-29 23:06:20,1 +2204,Call of Juarez: Gunslinger - 0100B4700BFC6000,0100B4700BFC6000,gpu;status-ingame;nvdec,ingame,2022-09-17 16:49:46,3 +2205,Locomotion,,,,2020-07-31 8:17:09,1 +2206,Headspun,,status-playable,playable,2020-07-31 19:46:47,1 +2207,Exception - 0100F2D00C7DE000,0100F2D00C7DE000,status-playable;online-broken,playable,2022-09-20 12:47:10,2 +2208,Dead End Job - 01004C500BD40000,01004C500BD40000,status-playable;nvdec,playable,2022-09-19 12:48:44,2 +2209,Event Horizon: Space Defense,,status-playable,playable,2020-07-31 20:31:24,1 +2210,SAMURAI SHODOWN,,UE4;crash;nvdec;status-menus,menus,2020-09-06 2:17:00,2 +2211,BQM BlockQuest Maker,,online;status-playable,playable,2020-07-31 20:56:50,1 +2212,Hard West - 0100ECE00D13E000,0100ECE00D13E000,status-nothing;regression,nothing,2022-02-09 7:45:56,2 +2213,Override: Mech City Brawl - Super Charged Mega Edition - 01008A700F7EE000,01008A700F7EE000,status-playable;nvdec;online-broken;UE4,playable,2022-09-20 17:33:32,2 +2214,Where Are My Friends? - 0100FDB0092B4000,0100FDB0092B4000,status-playable,playable,2022-09-21 14:39:26,2 +2215,"Final Light, The Prison",,status-playable,playable,2020-07-31 21:48:44,1 +2216,Citizens of Space - 0100E4200D84E000,0100E4200D84E000,gpu;status-boots,boots,2023-10-22 6:45:44,7 +2217,Adventures of Bertram Fiddle: Episode 1: A Dreadly Business - 01003B400A00A000,01003B400A00A000,status-playable;nvdec,playable,2022-09-17 11:07:56,4 +2218,Momonga Pinball Adventures - 01002CC00BC4C000,01002CC00BC4C000,status-playable,playable,2022-09-20 16:00:40,2 +2219,Suicide Guy: Sleepin' Deeply - 0100DE000C2E4000,0100DE000C2E4000,status-ingame;Needs More Attention,ingame,2022-09-20 23:45:25,2 +2220,"Warhammer 40,000: Mechanicus - 0100C6000EEA8000",0100C6000EEA8000,nvdec;status-playable,playable,2021-06-13 10:46:38,2 +2221,Caretaker - 0100DA70115E6000,0100DA70115E6000,status-playable,playable,2022-10-04 14:52:24,5 +2222,Once Upon A Coma,,nvdec;status-playable,playable,2020-08-01 12:09:39,1 +2223,Welcome to Hanwell,,UE4;crash;status-boots,boots,2020-08-03 11:54:57,1 +2224,Radical Rabbit Stew,,status-playable,playable,2020-08-03 12:02:56,1 +2225,We should talk.,,crash;status-nothing,nothing,2020-08-03 12:32:36,1 +2226,Get 10 Quest,,status-playable,playable,2020-08-03 12:48:39,1 +2227,Dongo Adventure - 010088B010DD2000,010088B010DD2000,status-playable,playable,2022-10-04 16:22:26,2 +2228,Singled Out,,online;status-playable,playable,2020-08-03 13:06:18,1 +2229,Never Breakup - 010039801093A000,010039801093A000,status-playable,playable,2022-10-05 16:12:12,2 +2230,Ashen - 010027B00E40E000,010027B00E40E000,status-playable;nvdec;online-broken;UE4,playable,2022-09-17 12:19:14,3 +2231,JDM Racing,,status-playable,playable,2020-08-03 17:02:37,1 +2232,Farabel,,status-playable,playable,2020-08-03 17:47:28,1 +2233,Hover - 0100F6800910A000,0100F6800910A000,status-playable;online-broken,playable,2022-09-20 12:54:46,2 +2234,DragoDino,,gpu;nvdec;status-ingame,ingame,2020-08-03 20:49:16,1 +2235,Rift Keeper - 0100AC600D898000,0100AC600D898000,status-playable,playable,2022-09-20 19:48:20,2 +2236,Melbits World - 01000FA010340000,01000FA010340000,status-menus;nvdec;online,menus,2021-11-26 13:51:22,2 +2237,60 Parsecs! - 010010100FF14000,010010100FF14000,status-playable,playable,2022-09-17 11:01:17,2 +2238,Warhammer Quest 2,,status-playable,playable,2020-08-04 15:28:03,1 +2239,Rescue Tale - 01003C400AD42000,01003C400AD42000,status-playable,playable,2022-09-20 18:40:18,2 +2240,Akuto,,status-playable,playable,2020-08-04 19:43:27,1 +2241,Demon Pit - 010084600F51C000,010084600F51C000,status-playable;nvdec,playable,2022-09-19 13:35:15,2 +2242,Regions of Ruin,,status-playable,playable,2020-08-05 11:38:58,1 +2243,Roombo: First Blood,,nvdec;status-playable,playable,2020-08-05 12:11:37,1 +2244,Mountain Rescue Simulator - 01009DB00D6E0000,01009DB00D6E0000,status-playable,playable,2022-09-20 16:36:48,2 +2245,Mad Games Tycoon - 010061E00EB1E000,010061E00EB1E000,status-playable,playable,2022-09-20 14:23:14,2 +2247,Down to Hell - 0100B6600FE06000,0100B6600FE06000,gpu;status-ingame;nvdec,ingame,2022-09-19 14:01:26,2 +2248,Funny Bunny Adventures,,status-playable,playable,2020-08-05 13:46:56,1 +2249,Crazy Zen Mini Golf,,status-playable,playable,2020-08-05 14:00:00,1 +2250,Drawngeon: Dungeons of Ink and Paper - 0100B7E0102E4000,0100B7E0102E4000,gpu;status-ingame,ingame,2022-09-19 15:41:25,4 +2251,Farming Simulator 20 - 0100EB600E914000,0100EB600E914000,nvdec;status-playable,playable,2021-06-13 10:52:44,2 +2252,DreamBall,,UE4;crash;gpu;status-ingame,ingame,2020-08-05 14:45:25,1 +2253,DEMON'S TILT - 0100BE800E6D8000,0100BE800E6D8000,status-playable,playable,2022-09-19 13:22:46,2 +2254,Heroland,,status-playable,playable,2020-08-05 15:35:39,1 +2255,Double Switch - 25th Anniversary Edition - 0100FC000EE10000,0100FC000EE10000,status-playable;nvdec,playable,2022-09-19 13:41:50,2 +2256,Ultimate Racing 2D,,status-playable,playable,2020-08-05 17:27:09,1 +2257,THOTH,,status-playable,playable,2020-08-05 18:35:28,1 +2258,SUPER ROBOT WARS X,,online;status-playable,playable,2020-08-05 19:18:51,1 +2259,Aborigenus,,status-playable,playable,2020-08-05 19:47:24,1 +2260,140,,status-playable,playable,2020-08-05 20:01:33,1 +2261,Goken,,status-playable,playable,2020-08-05 20:22:38,1 +2262,Maitetsu: Pure Station - 0100D9900F220000,0100D9900F220000,status-playable,playable,2022-09-20 15:12:49,2 +2263,Super Mega Space Blaster Special Turbo,,online;status-playable,playable,2020-08-06 12:13:25,1 +2264,Squidlit,,status-playable,playable,2020-08-06 12:38:32,1 +2265,Stories Untold - 010074400F6A8000,010074400F6A8000,status-playable;nvdec,playable,2022-12-22 1:08:46,2 +2266,Super Saurio Fly,,nvdec;status-playable,playable,2020-08-06 13:12:14,1 +2267,Hero Express,,nvdec;status-playable,playable,2020-08-06 13:23:43,1 +2268,Demolish & Build - 010099D00D1A4000,010099D00D1A4000,status-playable,playable,2021-06-13 15:27:26,2 +2269,Masquerada: Songs and Shadows - 0100113008262000,0100113008262000,status-playable,playable,2022-09-20 15:18:54,2 +2270,Dreaming Canvas - 010058B00F3C0000,010058B00F3C0000,UE4;gpu;status-ingame,ingame,2021-06-13 22:50:07,2 +2271,Time Tenshi,,,,2020-08-06 14:38:37,1 +2272,FoxyLand 2,,status-playable,playable,2020-08-06 14:41:30,1 +2273,Nicole - 0100A95012668000,0100A95012668000,status-playable;audout,playable,2022-10-05 16:41:44,3 +2274,Spiral Memoria -The Summer I Meet Myself-,,,,2020-08-06 15:19:11,1 +2275,"Warhammer 40,000: Space Wolf - 0100E5600D7B2000",0100E5600D7B2000,status-playable;online-broken,playable,2022-09-20 21:11:20,3 +2276,KukkoroDays - 010022801242C000,010022801242C000,status-menus;crash,menus,2021-11-25 8:52:56,4 +2277,Shadows 2: Perfidia,,status-playable,playable,2020-08-07 12:43:46,1 +2278,Murasame No Sword Breaker PV,,,,2020-08-07 12:54:21,1 +2279,Escape from Chernobyl - 0100FEF00F0AA000,0100FEF00F0AA000,status-boots;crash,boots,2022-09-19 21:36:58,2 +2280,198X,,status-playable,playable,2020-08-07 13:24:38,1 +2281,Orn: The Tiny Forest Sprite,,UE4;gpu;status-ingame,ingame,2020-08-07 14:25:30,1 +2282,Oddworld: Stranger's Wrath HD - 01002EA00ABBA000,01002EA00ABBA000,status-menus;crash;nvdec;loader-allocator,menus,2021-11-23 9:23:21,2 +2283,Just Glide,,status-playable,playable,2020-08-07 17:38:10,1 +2284,Ember - 010041A00FEC6000,010041A00FEC6000,status-playable;nvdec,playable,2022-09-19 21:16:11,3 +2285,Crazy Strike Bowling EX,,UE4;gpu;nvdec;status-ingame,ingame,2020-08-07 18:15:59,1 +2286,requesting accessibility in the main UI,,,,2020-08-08 0:09:05,1 +2287,Invisible Fist,,status-playable,playable,2020-08-08 13:25:52,1 +2288,Nicky: The Home Alone Golf Ball,,status-playable,playable,2020-08-08 13:45:39,1 +2289,KING OF FIGHTERS R-2,,,,2020-08-09 12:39:55,1 +2290,The Walking Dead: Season Two,,status-playable,playable,2020-08-09 12:57:06,1 +2291,"Yoru, tomosu",,,,2020-08-09 12:57:28,1 +2292,Zero Zero Zero Zero,,,,2020-08-09 13:14:58,1 +2293,Duke of Defense,,,,2020-08-09 13:34:52,1 +2294,Himno,,,,2020-08-09 13:51:57,1 +2295,The Walking Dead: A New Frontier - 010056E00B4F4000,010056E00B4F4000,status-playable,playable,2022-09-21 13:40:48,2 +2296,Cruel Bands Career,,,,2020-08-09 15:00:25,1 +2297,CARRION,,crash;status-nothing,nothing,2020-08-13 17:15:12,2 +2299,CODE SHIFTER,,status-playable,playable,2020-08-09 15:20:55,1 +2300,Ultra Hat Dimension - 01002D4012222000,01002D4012222000,services;audio;status-menus,menus,2021-11-18 9:05:20,2 +2301,Root Film,,,,2020-08-09 17:47:35,1 +2302,NAIRI: Tower of Shirin,,nvdec;status-playable,playable,2020-08-09 19:49:12,1 +2303,Panzer Paladin - 01004AE0108E0000,01004AE0108E0000,status-playable,playable,2021-05-05 18:26:00,2 +2304,Sinless,,nvdec;status-playable,playable,2020-08-09 20:18:55,1 +2305,Aviary Attorney: Definitive Edition,,status-playable,playable,2020-08-09 20:32:12,1 +2306,Lumini,,status-playable,playable,2020-08-09 20:45:09,1 +2308,Music Racer,,status-playable,playable,2020-08-10 8:51:23,1 +2309,Curious Cases,,status-playable,playable,2020-08-10 9:30:48,1 +2311,7th Sector,,nvdec;status-playable,playable,2020-08-10 14:22:14,1 +2312,Ash of Gods: Redemption,,deadlock;status-nothing,nothing,2020-08-10 18:08:32,1 +2313,The Turing Test - 0100EA100F516000,0100EA100F516000,status-playable;nvdec,playable,2022-09-21 13:24:07,2 +2314,The Town of Light - 010058000A576000,010058000A576000,gpu;status-playable,playable,2022-09-21 12:51:34,2 +2315,The Park,,UE4;crash;gpu;status-ingame,ingame,2020-12-18 12:50:07,2 +2316,Rogue Legacy,,status-playable,playable,2020-08-10 19:17:28,1 +2317,Nerved - 01008B0010160000,01008B0010160000,status-playable;UE4,playable,2022-09-20 17:14:03,3 +2318,Super Korotama - 010000D00F81A000,010000D00F81A000,status-playable,playable,2021-06-06 19:06:22,3 +2319,Mosaic,,status-playable,playable,2020-08-11 13:07:35,1 +2320,Pumped BMX Pro - 01009AE00B788000,01009AE00B788000,status-playable;nvdec;online-broken,playable,2022-09-20 17:40:50,2 +2321,The Dark Crystal,,status-playable,playable,2020-08-11 13:43:41,1 +2322,Ageless,,,,2020-08-11 13:52:24,1 +2323,EQQO - 0100E95010058000,0100E95010058000,UE4;nvdec;status-playable,playable,2021-06-13 23:10:51,3 +2324,LAST FIGHT - 01009E100BDD6000,01009E100BDD6000,status-playable,playable,2022-09-20 13:54:55,2 +2325,Neverending Nightmares - 0100F79012600000,0100F79012600000,crash;gpu;status-boots,boots,2021-04-24 1:43:35,2 +2326,Monster Jam Steel Titans - 010095C00F354000,010095C00F354000,status-menus;crash;nvdec;UE4,menus,2021-11-14 9:45:38,2 +2327,Star Story: The Horizon Escape,,status-playable,playable,2020-08-11 22:31:38,1 +2328,LOCO-SPORTS - 0100BA000FC9C000,0100BA000FC9C000,status-playable,playable,2022-09-20 14:09:30,2 +2329,Eclipse: Edge of Light,,status-playable,playable,2020-08-11 23:06:29,1 +2331,Psikyo Shooting Stars Alpha - 01007A200F2E2000,01007A200F2E2000,32-bit;status-playable,playable,2021-04-13 12:03:43,3 +2332,Monster Energy Supercross - The Official Videogame 3 - 010097800EA20000,010097800EA20000,UE4;audout;nvdec;online;status-playable,playable,2021-06-14 12:37:54,2 +2333,Musou Orochi 2 Ultimate,,crash;nvdec;status-boots,boots,2021-04-09 19:39:16,2 +2334,Alien Cruise,,status-playable,playable,2020-08-12 13:56:05,1 +2335,KUNAI - 010035A00DF62000,010035A00DF62000,status-playable;nvdec,playable,2022-09-20 13:48:34,2 +2336,Haunted Dungeons: Hyakki Castle,,status-playable,playable,2020-08-12 14:21:48,1 +2337,Tangledeep,,crash;status-boots,boots,2021-01-05 4:08:41,2 +2338,Azuran Tales: Trials,,status-playable,playable,2020-08-12 15:23:07,1 +2339,LOST ORBIT: Terminal Velocity - 010054600AC74000,010054600AC74000,status-playable,playable,2021-06-14 12:21:12,2 +2340,Monster Blast - 0100E2D0128E6000,0100E2D0128E6000,gpu;status-ingame,ingame,2023-09-02 20:02:32,3 +2341,Need a Packet?,,status-playable,playable,2020-08-12 16:09:01,1 +2342,Downwell - 010093D00C726000,010093D00C726000,status-playable,playable,2021-04-25 20:05:24,5 +2343,Dex,,nvdec;status-playable,playable,2020-08-12 16:48:12,1 +2345,Magicolors,,status-playable,playable,2020-08-12 18:39:11,1 +2346,Jisei: The First Case HD - 010038D011F08000,010038D011F08000,audio;status-playable,playable,2022-10-05 11:43:33,2 +2347,Mittelborg: City of Mages,,status-playable,playable,2020-08-12 19:58:06,1 +2348,Psikyo Shooting Stars Bravo - 0100D7400F2E4000,0100D7400F2E4000,32-bit;status-playable,playable,2021-06-14 12:09:07,4 +2349,STAB STAB STAB!,,,,2020-08-13 16:39:00,1 +2350,fault - milestone one,,nvdec;status-playable,playable,2021-03-24 10:41:49,2 +2351,Gerrrms,,status-playable,playable,2020-08-15 11:32:52,1 +2352,Aircraft Evolution - 0100E95011FDC000,0100E95011FDC000,nvdec;status-playable,playable,2021-06-14 13:30:18,2 +2353,Creaks,,status-playable,playable,2020-08-15 12:20:52,1 +2354,ARCADE FUZZ,,status-playable,playable,2020-08-15 12:37:36,1 +2355,Esports powerful pro yakyuu 2020 - 010073000FE18000,010073000FE18000,gpu;status-ingame;crash;Needs More Attention,ingame,2024-04-29 5:34:14,7 +2356,Arcade Archives ALPHA MISSION - 01005DD00BE08000,01005DD00BE08000,online;status-playable,playable,2021-04-15 9:20:43,2 +2357,Arcade Archives ALPINE SKI - 010083800DC70000,010083800DC70000,online;status-playable,playable,2021-04-15 9:28:46,2 +2358,Arcade Archives ARGUS - 010014F001DE2000,010014F001DE2000,online;status-playable,playable,2021-04-16 6:51:25,2 +2359,Arcade Archives Armed F - 010014F001DE2000,010014F001DE2000,online;status-playable,playable,2021-04-16 7:00:17,2 +2360,Arcade Archives ATHENA - 0100BEC00C7A2000,0100BEC00C7A2000,online;status-playable,playable,2021-04-16 7:10:12,2 +2361,Arcade Archives Atomic Robo-Kid - 0100426001DE4000,0100426001DE4000,online;status-playable,playable,2021-04-16 7:20:29,2 +2362,Arcade Archives BOMB JACK - 0100192009824000,0100192009824000,online;status-playable,playable,2021-04-16 9:48:26,2 +2363,Arcade Archives CLU CLU LAND - 0100EDC00E35A000,0100EDC00E35A000,online;status-playable,playable,2021-04-16 10:00:42,2 +2364,Arcade Archives EXCITEBIKE,,,,2020-08-19 12:08:03,1 +2365,Arcade Archives FRONT LINE - 0100496006EC8000,0100496006EC8000,online;status-playable,playable,2021-05-05 14:10:49,2 +2366,Arcade Archives ICE CLIMBER - 01007D200D3FC000,01007D200D3FC000,online;status-playable,playable,2021-05-05 14:18:34,2 +2367,Arcade Archives IKARI WARRIORS - 010049400C7A8000,010049400C7A8000,online;status-playable,playable,2021-05-05 14:24:46,2 +2368,Arcade Archives IMAGE FIGHT - 010008300C978000,010008300C978000,online;status-playable,playable,2021-05-05 14:31:21,2 +2369,Arcade Archives MOON CRESTA - 01000BE001DD8000,01000BE001DD8000,online;status-playable,playable,2021-05-05 14:39:29,2 +2370,Arcade Archives Ninja Spirit - 01002F300D2C6000,01002F300D2C6000,online;status-playable,playable,2021-05-05 14:45:31,2 +2371,Arcade Archives POOYAN - 0100A6E00D3F8000,0100A6E00D3F8000,online;status-playable,playable,2021-05-05 17:58:19,2 +2372,Arcade Archives PSYCHO SOLDIER - 01000D200C7A4000,01000D200C7A4000,online;status-playable,playable,2021-05-05 18:02:19,2 +2373,Arcade Archives ROAD FIGHTER - 0100FBA00E35C000,0100FBA00E35C000,online;status-playable,playable,2021-05-05 18:09:17,2 +2374,Arcade Archives ROUTE 16 - 010060000BF7C000,010060000BF7C000,online;status-playable,playable,2021-05-05 18:40:41,2 +2375,Arcade Archives Shusse Ozumo - 01007A4009834000,01007A4009834000,online;status-playable,playable,2021-05-05 17:52:25,2 +2376,Arcade Archives Solomon's Key - 01008C900982E000,01008C900982E000,online;status-playable,playable,2021-04-19 16:27:18,3 +2377,Arcade Archives TERRA FORCE - 0100348001DE6000,0100348001DE6000,online;status-playable,playable,2021-04-16 20:03:27,2 +2378,Arcade Archives THE NINJA WARRIORS - 0100DC000983A000,0100DC000983A000,online;slow;status-ingame,ingame,2021-04-16 19:54:56,2 +2379,Arcade Archives TIME PILOT - 0100AF300D2E8000,0100AF300D2E8000,online;status-playable,playable,2021-04-16 19:22:31,2 +2380,Arcade Archives URBAN CHAMPION - 010042200BE0C000,010042200BE0C000,online;status-playable,playable,2021-04-16 10:20:03,2 +2381,Arcade Archives WILD WESTERN - 01001B000D8B6000,01001B000D8B6000,online;status-playable,playable,2021-04-16 10:11:36,2 +2382,Arcade Archives GRADIUS,,,,2020-08-19 13:42:45,1 +2383,Evergate,,,,2020-08-19 22:28:07,1 +2384,Naught - 0100103011894000,0100103011894000,UE4;status-playable,playable,2021-04-26 13:31:45,2 +2385,Vitamin Connection ,,,,2020-08-19 23:18:42,1 +2386,Rock of Ages 3: Make & Break - 0100A1B00DB36000,0100A1B00DB36000,status-playable;UE4,playable,2022-10-06 12:18:29,2 +2387,Cubicity - 010040D011D04000,010040D011D04000,status-playable,playable,2021-06-14 14:19:51,1 +2389,Anima Gate of Memories: The Nameless Chronicles - 01007A400B3F8000,01007A400B3F8000,status-playable,playable,2021-06-14 14:33:06,1 +2392,Big Dipper - 0100A42011B28000,0100A42011B28000,status-playable,playable,2021-06-14 15:08:19,1 +2394,Dodo Peak - 01001770115C8000,01001770115C8000,status-playable;nvdec;UE4,playable,2022-10-04 16:13:05,1 +2395,Cube Creator X - 010001600D1E8000,010001600D1E8000,status-menus;crash,menus,2021-11-25 8:53:28,4 +2397,Raji An Ancient Epic,,UE4;gpu;nvdec;status-ingame,ingame,2020-12-16 10:05:25,1 +2402,Red Siren : Space Defense - 010045400D73E000,010045400D73E000,UE4;status-playable,playable,2021-04-25 21:21:29,2 +2403,Shanky: The Vegan's Nightmare - 01000C00CC10000,,status-playable,playable,2021-01-26 15:03:55,1 +2407,Cricket 19 - 010022D00D4F0000,010022D00D4F0000,gpu;status-ingame,ingame,2021-06-14 14:56:07,4 +2408,Florence,,status-playable,playable,2020-09-05 1:22:30,4 +2409,Banner of the Maid - 010013C010C5C000,010013C010C5C000,status-playable,playable,2021-06-14 15:23:37,1 +2416,Super Loop Drive - 01003E300FCAE000,01003E300FCAE000,status-playable;nvdec;UE4,playable,2022-09-22 10:58:05,4 +2446,Buried Stars,,status-playable,playable,2020-09-07 14:11:58,2 +2447,FINAL FANTASY CRYSTAL CHRONICLES Remastered Edition - 0100CE4010AAC000,0100CE4010AAC000,status-playable,playable,2023-04-02 23:39:12,7 +2448,Go All Out - 01000C800FADC000,01000C800FADC000,status-playable;online-broken,playable,2022-09-21 19:16:34,3 +2449,This Strange Realm of Mine,,status-playable,playable,2020-08-28 12:07:24,1 +2450,Silent World,,status-playable,playable,2020-08-28 13:45:13,1 +2451,Alder's Blood,,status-playable,playable,2020-08-28 15:15:23,1 +2452,Red Death,,status-playable,playable,2020-08-30 13:07:37,1 +2453,3000th Duel - 0100FB5010D2E000,0100FB5010D2E000,status-playable,playable,2022-09-21 17:12:08,3 +2454,Rise of Insanity,,status-playable,playable,2020-08-30 15:42:14,1 +2455,Darksiders Genesis - 0100F2300D4BA000,0100F2300D4BA000,status-playable;nvdec;online-broken;UE4;ldn-broken,playable,2022-09-21 18:06:25,3 +2456,Space Blaze,,status-playable,playable,2020-08-30 16:18:05,1 +2457,Two Point Hospital - 010031200E044000,010031200E044000,status-ingame;crash;nvdec,ingame,2022-09-22 11:22:23,5 +2459,Is It Wrong to Try to Pick Up Girls in a Dungeon? Infinite Combate,,status-playable,playable,2020-08-31 13:52:21,1 +2460,Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz,,status-playable,playable,2020-08-31 14:17:42,1 +2461,Cat Girl Without Salad: Amuse-Bouche - 010076000C86E000,010076000C86E000,status-playable,playable,2022-09-03 13:01:47,4 +2462,moon,,,,2020-08-31 15:46:23,1 +2463,Lines XL,,status-playable,playable,2020-08-31 17:48:23,1 +2464,Knightin'+,,status-playable,playable,2020-08-31 18:18:21,1 +2465,King Lucas - 0100E6B00FFBA000,0100E6B00FFBA000,status-playable,playable,2022-09-21 19:43:23,2 +2466,Skulls of the Shogun: Bone-a-fide Edition,,status-playable,playable,2020-08-31 18:58:12,1 +2467,SEGA AGES SONIC THE HEDGEHOG 2 - 01000D200C614000,01000D200C614000,status-playable,playable,2022-09-21 20:26:35,2 +2468,Devil May Cry 3 Special Edition - 01007B600D5BC000,01007B600D5BC000,status-playable;nvdec,playable,2024-07-08 12:33:23,8 +2469,Double Dragon & Kunio-Kun: Retro Brawler Bundle,,status-playable,playable,2020-09-01 12:48:46,1 +2470,Lost Horizon,,status-playable,playable,2020-09-01 13:41:22,1 +2471,Unlock the King,,status-playable,playable,2020-09-01 13:58:27,1 +2472,Vasilis,,status-playable,playable,2020-09-01 15:05:35,1 +2473,Mathland,,status-playable,playable,2020-09-01 15:40:06,1 +2474,MEGAMAN ZERO/ZX LEGACY COLLECTION - 010025C00D410000,010025C00D410000,status-playable,playable,2021-06-14 16:17:32,2 +2475,Afterparty - 0100DB100BBCE000,0100DB100BBCE000,status-playable,playable,2022-09-22 12:23:19,2 +2476,Tiny Racer - 01005D0011A40000,01005D0011A40000,status-playable,playable,2022-10-07 11:13:03,2 +2477,Skully - 0100D7B011654000,0100D7B011654000,status-playable;nvdec;UE4,playable,2022-10-06 13:52:59,3 +2478,Megadimension Neptunia VII,,32-bit;nvdec;status-playable,playable,2020-12-17 20:56:03,2 +2479,Kingdom Rush - 0100A280121F6000,0100A280121F6000,status-nothing;32-bit;crash;Needs More Attention,nothing,2022-10-05 12:34:00,5 +2480,Cubers: Arena - 010082E00F1CE000,010082E00F1CE000,status-playable;nvdec;UE4,playable,2022-10-04 16:05:40,3 +2481,Air Missions: HIND,,status-playable,playable,2020-12-13 10:16:45,2 +2482,Fairy Tail - 0100CF900FA3E000,0100CF900FA3E000,status-playable;nvdec,playable,2022-10-04 23:00:32,2 +2484,Sentinels of Freedom - 01009E500D29C000,01009E500D29C000,status-playable,playable,2021-06-14 16:42:19,2 +2485,SAMURAI SHOWDOWN NEOGEO COLLECTION - 0100F6800F48E000,0100F6800F48E000,nvdec;status-playable,playable,2021-06-14 17:12:56,3 +2486,Rugby Challenge 4 - 010009B00D33C000,010009B00D33C000,slow;status-playable;online-broken;UE4,playable,2022-10-06 12:45:53,3 +2487,Neon Abyss - 0100BAB01113A000,0100BAB01113A000,status-playable,playable,2022-10-05 15:59:44,2 +2488,Max & The Book of Chaos,,status-playable,playable,2020-09-02 12:24:43,1 +2489,Family Mysteries: Poisonous Promises - 0100034012606000,0100034012606000,audio;status-menus;crash,menus,2021-11-26 12:35:06,2 +2490,Interrogation: You will be deceived - 010041501005E000,010041501005E000,status-playable,playable,2022-10-05 11:40:10,2 +2491,Instant Sports Summer Games,,gpu;status-menus,menus,2020-09-02 13:39:28,1 +2492,AvoCuddle,,status-playable,playable,2020-09-02 14:50:13,1 +2493,Be-A Walker,,slow;status-ingame,ingame,2020-09-02 15:00:31,1 +2494,"Soccer, Tactics & Glory - 010095C00F9DE000",010095C00F9DE000,gpu;status-ingame,ingame,2022-09-26 17:15:58,3 +2495,The Great Perhaps,,status-playable,playable,2020-09-02 15:57:04,1 +2496,Volta-X - 0100A7900E79C000,0100A7900E79C000,status-playable;online-broken,playable,2022-10-07 12:20:51,1 +2497,Hero Hours Contract,,,,2020-09-03 3:13:22,1 +2498,Starlit Adventures Golden Stars,,status-playable,playable,2020-11-21 12:14:43,3 +2499,Superliminal,,status-playable,playable,2020-09-03 13:20:50,1 +2500,Robozarro,,status-playable,playable,2020-09-03 13:33:40,1 +2501,QuietMansion2,,status-playable,playable,2020-09-03 14:59:35,1 +2502,DISTRAINT 2,,status-playable,playable,2020-09-03 16:08:12,1 +2503,Bloodstained: Curse of the Moon 2,,status-playable,playable,2020-09-04 10:56:27,1 +2504,Deadly Premonition 2 - 0100BAC011928000,0100BAC011928000,status-playable,playable,2021-06-15 14:12:36,2 +2505,CrossCode - 01003D90058FC000,01003D90058FC000,status-playable,playable,2024-02-17 10:23:19,6 +2506,Metro: Last Light Redux - 0100F0400E850000,0100F0400E850000,slow;status-ingame;nvdec;vulkan-backend-bug,ingame,2023-11-01 11:53:52,6 +2507,Soul Axiom Rebooted,,nvdec;slow;status-ingame,ingame,2020-09-04 12:41:01,1 +2508,Portal Dogs,,status-playable,playable,2020-09-04 12:55:46,1 +2509,Bucket Knight,,crash;status-ingame,ingame,2020-09-04 13:11:24,1 +2510,Arcade Archives LIFE FORCE,,status-playable,playable,2020-09-04 13:26:25,1 +2511,Stela - 01002DE01043E000,01002DE01043E000,UE4;status-playable,playable,2021-06-15 13:28:34,4 +2512,7 Billion Humans,,32-bit;status-playable,playable,2020-12-17 21:04:58,4 +2513,Rack N Ruin,,status-playable,playable,2020-09-04 15:20:26,1 +2515,Piffle,,,,2020-09-06 0:07:53,1 +2516,BATTOJUTSU,,,,2020-09-06 0:07:58,1 +2517,Super Battle Cards,,,,2020-09-06 0:08:01,1 +2518,Hayfever - 0100EA900FB2C000,0100EA900FB2C000,status-playable;loader-allocator,playable,2022-09-22 17:35:41,6 +2519,Save Koch - 0100C8300FA90000,0100C8300FA90000,status-playable,playable,2022-09-26 17:06:56,2 +2520,MY HERO ONE'S JUSTICE 2,,UE4;gpu;nvdec;status-ingame,ingame,2020-12-18 14:08:47,2 +2521,Deep Diving Adventures - 010026800FA88000,010026800FA88000,status-playable,playable,2022-09-22 16:43:37,2 +2522,Trials of Mana Demo - 0100E1D00FBDE000,0100E1D00FBDE000,status-playable;nvdec;UE4;demo;vulkan-backend-bug,playable,2022-09-26 18:00:02,2 +2523,Sky Racket,,status-playable,playable,2020-09-07 12:22:24,1 +2524,LA-MULANA 1 & 2 - 0100E5D00F4AE000,0100E5D00F4AE000,status-playable,playable,2022-09-22 17:56:36,4 +2525,Exit the Gungeon - 0100DD30110CC000,0100DD30110CC000,status-playable,playable,2022-09-22 17:04:43,2 +2529,Super Mario 3D All-Stars - 010049900F546000,010049900F546000,services-horizon;slow;status-ingame;vulkan;amd-vendor-bug,ingame,2024-05-07 2:38:16,16 +2530,Cupid Parasite - 0100F7E00DFC8000,0100F7E00DFC8000,gpu;status-ingame,ingame,2023-08-21 5:52:36,3 +2531,Toraware no Paruma Deluxe Edition,,,,2020-09-20 9:34:41,1 +2533,Uta no☆Prince-sama♪ Repeat Love - 010024200E00A000,010024200E00A000,status-playable;nvdec,playable,2022-12-09 9:21:51,2 +2534,Clock Zero ~Shuuen no Ichibyou~ Devote - 01008C100C572000,01008C100C572000,status-playable;nvdec,playable,2022-12-04 22:19:14,3 +2535,Dear Magi - Mahou Shounen Gakka -,,status-playable,playable,2020-11-22 16:45:16,4 +2536,Reine des Fleurs,,cpu;crash;status-boots,boots,2020-09-27 18:50:39,2 +2537,Kaeru Batake DE Tsukamaete,,,,2020-09-20 17:06:57,1 +2538,Koi no Hanasaku Hyakkaen,,32-bit;gpu;nvdec;status-ingame,ingame,2020-10-03 14:17:10,4 +2539,Brothers Conflict: Precious Baby,,,,2020-09-20 19:13:24,1 +2540,Dairoku: Ayakashimori - 010061300DF48000,010061300DF48000,status-nothing;Needs Update;loader-allocator,nothing,2021-11-30 5:09:38,4 +2542,Yunohana Spring! - Mellow Times -,,audio;crash;status-menus,menus,2020-09-27 19:27:40,2 +2543,Nil Admirari no Tenbin: Irodori Nadeshiko,,,,2020-09-21 15:59:26,1 +2544,Shiritsu Berubara Gakuen ~Versailles no Bara Re*imagination~,,cpu;crash;status-boots,boots,2020-09-27 19:01:25,2 +2545,BEAST Darling! ~Kemomimi Danshi to Himitsu no Ryou~,,crash;status-menus,menus,2020-10-04 6:12:08,3 +2546,Kin'iro no Corda Octave,,status-playable,playable,2020-09-22 13:23:12,3 +2547,Moujuutsukai to Ouji-sama ~Flower & Snow~,,,,2020-09-22 17:22:03,1 +2548,Spooky Ghosts Dot Com - 0100C6100D75E000,0100C6100D75E000,status-playable,playable,2021-06-15 15:16:11,3 +2549,NBA 2K21 - 0100E24011D1E000,0100E24011D1E000,gpu;status-boots,boots,2022-10-05 15:31:51,2 +2550,Commander Keen in Keen Dreams - 0100C4D00D16A000,0100C4D00D16A000,gpu;status-ingame,ingame,2022-08-04 20:34:20,8 +2551,Minecraft - 0100D71004694000,0100D71004694000,status-ingame;crash;ldn-broken,ingame,2024-09-29 12:08:59,21 +2552,PGA TOUR 2K21 - 010053401147C000,010053401147C000,deadlock;status-ingame;nvdec,ingame,2022-10-05 21:53:50,4 +2553,The Executioner - 0100C2E0129A6000,0100C2E0129A6000,nvdec;status-playable,playable,2021-01-23 0:31:28,2 +2554,Tamiku - 010008A0128C4000,010008A0128C4000,gpu;status-ingame,ingame,2021-06-15 20:06:55,2 +2555,"Shinobi, Koi Utsutsu",,,,2020-09-23 11:04:27,1 +2556,Hades - 0100535012974000,0100535012974000,status-playable;vulkan,playable,2022-10-05 10:45:21,11 +2557,Wolfenstein: Youngblood - 01003BD00CAAE000,01003BD00CAAE000,status-boots;online-broken,boots,2024-07-12 23:49:20,4 +2558,Taimumari: Complete Edition - 010040A00EA26000,010040A00EA26000,status-playable,playable,2022-12-06 13:34:49,4 +2559,Sangoku Rensenki ~Otome no Heihou!~,,gpu;nvdec;status-ingame,ingame,2020-10-17 19:13:14,3 +2560,Norn9 ~Norn + Nonette~ LOFN - 01001A500AD6A000,01001A500AD6A000,status-playable;nvdec;vulkan-backend-bug,playable,2022-12-09 9:29:16,4 +2561,Disaster Report 4: Summer Memories - 010020700E2A2000,010020700E2A2000,status-playable;nvdec;UE4,playable,2022-09-27 19:41:31,5 +2562,No Straight Roads - 01009F3011004000,01009F3011004000,status-playable;nvdec,playable,2022-10-05 17:01:38,4 +2563,Gnosia - 01008EF013A7C000,01008EF013A7C000,status-playable,playable,2021-04-05 17:20:30,5 +2564,Shin Hayarigami 1 and 2 Pack,,,,2020-09-25 15:56:19,1 +2566,Gothic Murder: Adventure That Changes Destiny,,deadlock;status-ingame;crash,ingame,2022-09-30 23:16:53,2 +2567,Grand Theft Auto 3 - 05B1D2ABD3D30000,05B1D2ABD3D30000,services;status-nothing;crash;homebrew,nothing,2023-05-01 22:01:58,3 +2568,Super Mario 64 - 054507E0B7552000,054507E0B7552000,status-ingame;homebrew,ingame,2024-03-20 16:57:27,2 +2569,Satsujin Tantei Jack the Ripper - 0100A4700BC98000,0100A4700BC98000,status-playable,playable,2021-06-21 16:32:54,3 +2570,Yoshiwara Higanbana Kuon no Chigiri,,nvdec;status-playable,playable,2020-10-17 19:14:46,3 +2571,Katakoi Contrast - collection of branch - - 01007FD00DB20000,01007FD00DB20000,status-playable;nvdec,playable,2022-12-09 9:41:26,2 +2572,Tlicolity Eyes - twinkle showtime - - 010019500DB1E000,010019500DB1E000,gpu;status-boots,boots,2021-05-29 19:43:44,2 +2573,Omega Vampire,,nvdec;status-playable,playable,2020-10-17 19:15:35,3 +2574,Iris School of Wizardry - Vinculum Hearts - - 0100AD300B786000,0100AD300B786000,status-playable,playable,2022-12-05 13:11:15,2 +2575,"Meiji Katsugeki Haikara Ryuuseigumi - Seibai Shimaseu, Yonaoshi Kagyou - 0100EA100DF92000",0100EA100DF92000,32-bit;status-playable;nvdec,playable,2022-12-05 13:19:12,3 +2576,Undead Darlings ~no cure for love~,,,,2020-09-30 8:34:06,1 +2577,LEGO Marvel Super Heroes 2 - 0100D3A00409E000,0100D3A00409E000,status-nothing;crash,nothing,2023-03-02 17:12:33,5 +2578,RollerCoaster Tycoon 3: Complete Edition - 01004900113F8000,01004900113F8000,32-bit;status-playable,playable,2022-10-17 14:18:01,4 +2579,R.B.I. Baseball 20 - 010061400E7D4000,010061400E7D4000,status-playable,playable,2021-06-15 21:16:29,2 +2580,BATTLESLOTHS,,status-playable,playable,2020-10-03 8:32:22,1 +2581,Explosive Jake - 01009B7010B42000,01009B7010B42000,status-boots;crash,boots,2021-11-03 7:48:32,4 +2582,Dezatopia - 0100AFC00E06A000,0100AFC00E06A000,online;status-playable,playable,2021-06-15 21:06:11,2 +2583,Wordify,,status-playable,playable,2020-10-03 9:01:07,1 +2585,Wizards: Wand of Epicosity - 0100C7600E77E000,0100C7600E77E000,status-playable,playable,2022-10-07 12:32:06,2 +2586,Titan Glory - 0100FE801185E000,0100FE801185E000,status-boots,boots,2022-10-07 11:36:40,3 +2587,Soccer Pinball - 0100B5000E05C000,0100B5000E05C000,UE4;gpu;status-ingame,ingame,2021-06-15 20:56:51,2 +2588,Steam Tactics - 0100AE100DAFA000,0100AE100DAFA000,status-playable,playable,2022-10-06 16:53:45,2 +2589,Trover Saves the Universe,,UE4;crash;status-nothing,nothing,2020-10-03 10:25:27,1 +2590,112th Seed,,status-playable,playable,2020-10-03 10:32:38,1 +2591,Spitlings - 010042700E3FC000,010042700E3FC000,status-playable;online-broken,playable,2022-10-06 16:42:39,3 +2592,Unlock the King 2 - 0100A3E011CB0000,0100A3E011CB0000,status-playable,playable,2021-06-15 20:43:55,3 +2593,Preventive Strike - 010009300D278000,010009300D278000,status-playable;nvdec,playable,2022-10-06 10:55:51,2 +2594,Hidden - 01004E800F03C000,01004E800F03C000,slow;status-ingame,ingame,2022-10-05 10:56:53,2 +2595,Pulstario - 0100861012474000,0100861012474000,status-playable,playable,2022-10-06 11:02:01,2 +2596,Frontline Zed,,status-playable,playable,2020-10-03 12:55:59,1 +2597,bayala - the game - 0100194010422000,0100194010422000,status-playable,playable,2022-10-04 14:09:25,2 +2598,City Bus Driving Simulator - 01005E501284E000,01005E501284E000,status-playable,playable,2021-06-15 21:25:59,2 +2599,Memory Lane - 010062F011E7C000,010062F011E7C000,status-playable;UE4,playable,2022-10-05 14:31:03,3 +2600,Minefield - 0100B7500F756000,0100B7500F756000,status-playable,playable,2022-10-05 15:03:29,2 +2601,Double Kick Heroes,,gpu;status-ingame,ingame,2020-10-03 14:33:59,1 +2602,Little Shopping,,status-playable,playable,2020-10-03 16:34:35,1 +2603,Car Quest - 01007BD00AE70000,01007BD00AE70000,deadlock;status-menus,menus,2021-11-18 8:59:18,2 +2604,RogueCube - 0100C7300C0EC000,0100C7300C0EC000,status-playable,playable,2021-06-16 12:16:42,2 +2605,Timber Tennis Versus,,online;status-playable,playable,2020-10-03 17:07:15,1 +2606,Swimsanity! - 010049D00C8B0000,010049D00C8B0000,status-menus;online,menus,2021-11-26 14:27:16,2 +2607,Dininho Adventures,,status-playable,playable,2020-10-03 17:25:51,1 +2608,Rhythm of the Gods,,UE4;crash;status-nothing,nothing,2020-10-03 17:39:59,1 +2609,"Rainbows, toilets & unicorns",,nvdec;status-playable,playable,2020-10-03 18:08:18,1 +2610,Super Mario Bros. 35 - 0100277011F1A000,0100277011F1A000,status-menus;online-broken,menus,2022-08-07 16:27:25,2 +2611,Bohemian Killing - 0100AD1010CCE000,0100AD1010CCE000,status-playable;vulkan-backend-bug,playable,2022-09-26 22:41:37,2 +2612,Colorgrid,,status-playable,playable,2020-10-04 1:50:52,1 +2613,Dogurai,,status-playable,playable,2020-10-04 2:40:16,1 +2614,The Legend of Heroes: Trails of Cold Steel III Demo - 01009B101044C000,01009B101044C000,demo;nvdec;status-playable,playable,2021-04-23 1:07:32,2 +2615,Star Wars Jedi Knight: Jedi Academy - 01008CA00FAE8000,01008CA00FAE8000,gpu;status-boots,boots,2021-06-16 12:35:30,2 +2616,Panzer Dragoon: Remake,,status-playable,playable,2020-10-04 4:03:55,1 +2617,Blackmoor2 - 0100A0A00E660000,0100A0A00E660000,status-playable;online-broken,playable,2022-09-26 20:26:34,3 +2618,CHAOS CODE -NEW SIGN OF CATASTROPHE- - 01007600115CE000,01007600115CE000,status-boots;crash;nvdec,boots,2022-04-04 12:24:21,3 +2619,Saints Row IV - 01008D100D43E000,01008D100D43E000,status-playable;ldn-untested;LAN,playable,2023-12-04 18:33:37,5 +2620,Troubleshooter,,UE4;crash;status-nothing,nothing,2020-10-04 13:46:50,1 +2621,Children of Zodiarcs,,status-playable,playable,2020-10-04 14:23:33,1 +2622,VtM Coteries of New York,,status-playable,playable,2020-10-04 14:55:22,1 +2623,Grand Guilds - 010038100D436000,010038100D436000,UE4;nvdec;status-playable,playable,2021-04-26 12:49:05,2 +2624,Best Friend Forever,,,,2020-10-04 15:41:42,1 +2625,Copperbell,,status-playable,playable,2020-10-04 15:54:36,1 +2626,Deep Sky Derelicts Definitive Edition - 0100C3E00D68E000,0100C3E00D68E000,status-playable,playable,2022-09-27 11:21:08,3 +2627,Wanba Warriors,,status-playable,playable,2020-10-04 17:56:22,1 +2628,Mist Hunter - 010059200CC40000,010059200CC40000,status-playable,playable,2021-06-16 13:58:58,2 +2629,Shinsekai Into the Depths - 01004EE0104F6000,01004EE0104F6000,status-playable,playable,2022-09-28 14:07:51,2 +2630,ELEA: Paradigm Shift,,UE4;crash;status-nothing,nothing,2020-10-04 19:07:43,1 +2631,Harukanaru Toki no Naka De 7,,,,2020-10-05 10:12:41,1 +2632,Saiaku Naru Saiyaku Ningen ni Sasagu,,,,2020-10-05 10:26:45,1 +2633,planetarian HD ~the reverie of a little planet~,,status-playable,playable,2020-10-17 20:26:20,3 +2634,Hypnospace Outlaw - 0100959010466000,0100959010466000,status-ingame;nvdec,ingame,2023-08-02 22:46:49,2 +2635,Dei Gratia no Rashinban - 010071C00CBA4000,010071C00CBA4000,crash;status-nothing,nothing,2021-07-13 2:25:32,2 +2636,Rogue Company,,,,2020-10-05 17:52:10,1 +2637,MX Nitro - 0100161009E5C000,0100161009E5C000,status-playable,playable,2022-09-27 22:34:33,2 +2638,Wanderjahr TryAgainOrWalkAway,,status-playable,playable,2020-12-16 9:46:04,2 +2639,Pooplers,,status-playable,playable,2020-11-02 11:52:10,2 +2640,Beyond Enemy Lines: Essentials - 0100B8F00DACA000,0100B8F00DACA000,status-playable;nvdec;UE4,playable,2022-09-26 19:48:16,4 +2642,Lust for Darkness: Dawn Edition - 0100F0B00F68E000,0100F0B00F68E000,nvdec;status-playable,playable,2021-06-16 13:47:46,2 +2643,Nerdook Bundle Vol. 1,,gpu;slow;status-ingame,ingame,2020-10-07 14:27:10,1 +2644,Indie Puzzle Bundle Vol 1 - 0100A2101107C000,0100A2101107C000,status-playable,playable,2022-09-27 22:23:21,2 +2645,Wurroom,,status-playable,playable,2020-10-07 22:46:21,1 +2646,Valley - 0100E0E00B108000,0100E0E00B108000,status-playable;nvdec,playable,2022-09-28 19:27:58,2 +2647,FIFA 21 Legacy Edition - 01000A001171A000,01000A001171A000,gpu;status-ingame;online-broken,ingame,2023-12-11 22:10:19,7 +2648,Hotline Miami Collection - 0100D0E00E51E000,0100D0E00E51E000,status-playable;nvdec,playable,2022-09-09 16:41:19,4 +2649,QuakespasmNX,,status-nothing;crash;homebrew,nothing,2022-07-23 19:28:07,3 +2650,nxquake2,,services;status-nothing;crash;homebrew,nothing,2022-08-04 23:14:04,5 +2651,ONE PIECE: PIRATE WARRIORS 4 - 01008FE00E2F6000,01008FE00E2F6000,status-playable;online-broken;ldn-untested,playable,2022-09-27 22:55:46,2 +2652,The Complex - 01004170113D4000,01004170113D4000,status-playable;nvdec,playable,2022-09-28 14:35:41,3 +2653,Gigantosaurus The Game - 01002C400E526000,01002C400E526000,status-playable;UE4,playable,2022-09-27 21:20:00,4 +2654,TY the Tasmanian Tiger,,32-bit;crash;nvdec;status-menus,menus,2020-12-17 21:15:00,2 +2655,Speaking Simulator,,status-playable,playable,2020-10-08 13:00:39,1 +2656,Pikmin 3 Deluxe Demo - 01001CB0106F8000,01001CB0106F8000,32-bit;crash;demo;gpu;status-ingame,ingame,2021-06-16 18:38:07,2 +2657,Rascal Fight,,status-playable,playable,2020-10-08 13:23:30,1 +2658,Rain City,,status-playable,playable,2020-10-08 16:59:03,1 +2660,Fury Unleashed Demo,,status-playable,playable,2020-10-08 20:09:21,1 +2661,Bridge 3,,status-playable,playable,2020-10-08 20:47:24,1 +2662,RMX Real Motocross,,status-playable,playable,2020-10-08 21:06:15,1 +2663,Birthday of Midnight,,,,2020-10-09 9:43:24,1 +2664,WARSAW,,,,2020-10-09 10:31:40,1 +2665,Candy Raid: The Factory,,,,2020-10-09 10:43:39,1 +2666,World for Two,,,,2020-10-09 12:37:07,1 +2667,Voxel Pirates - 0100AFA011068000,0100AFA011068000,status-playable,playable,2022-09-28 22:55:02,2 +2668,Voxel Galaxy - 0100B1E0100A4000,0100B1E0100A4000,status-playable,playable,2022-09-28 22:45:02,2 +2669,Journey of the Broken Circle,,,,2020-10-09 13:24:52,1 +2670,Daggerhood,,,,2020-10-09 13:54:02,1 +2671,Flipon,,,,2020-10-09 14:23:40,1 +2672,Nevaeh - 0100C20012A54000,0100C20012A54000,gpu;nvdec;status-ingame,ingame,2021-06-16 17:29:03,2 +2673,Bookbound Brigade,,status-playable,playable,2020-10-09 14:30:29,1 +2674,Aery - Sky Castle - 010018E012914000,010018E012914000,status-playable,playable,2022-10-21 17:58:49,3 +2675,Nickelodeon Kart Racers 2 Grand Prix,,,,2020-10-09 14:54:17,1 +2676,Issho ni Asobo Koupen chan,,,,2020-10-09 14:57:27,1 +2677,Kono Subarashii Sekai ni Shukufuku o Kono Yokubo no Isho ni Choai o - 010016C011AAA000,010016C011AAA000,status-playable,playable,2023-04-26 9:51:08,4 +2678,Kono Subarashii Sekai ni Shukufuku wo! Kurenai Densetsu,,,,2020-10-09 15:06:00,1 +2679,Hide & Dance!,,,,2020-10-09 15:10:06,1 +2680,Pro Yakyuu Famista 2020,,,,2020-10-09 15:21:25,1 +2681,METAL MAX Xeno Reborn - 0100E8F00F6BE000,0100E8F00F6BE000,status-playable,playable,2022-12-05 15:33:53,2 +2682,Ikenfell - 010040900AF46000,010040900AF46000,status-playable,playable,2021-06-16 17:18:44,3 +2683,Depixtion,,status-playable,playable,2020-10-10 18:52:37,1 +2684,GREEN The Life Algorithm - 0100DFE00F002000,0100DFE00F002000,status-playable,playable,2022-09-27 21:37:13,2 +2685,Served! A gourmet race - 0100B2C00E4DA000,0100B2C00E4DA000,status-playable;nvdec,playable,2022-09-28 12:46:00,2 +2686,OTTTD,,slow;status-ingame,ingame,2020-10-10 19:31:07,1 +2687,Metamorphosis - 010055200E87E000,010055200E87E000,UE4;audout;gpu;nvdec;status-ingame,ingame,2021-06-16 16:18:11,3 +2688,Zero Strain - 01004B001058C000,01004B001058C000,services;status-menus;UE4,menus,2021-11-10 7:48:32,2 +2689,Time Carnage - 01004C500B698000,01004C500B698000,status-playable,playable,2021-06-16 17:57:28,2 +2690,Spiritfarer - 0100BD400DC52000,0100BD400DC52000,gpu;status-ingame,ingame,2022-10-06 16:31:38,2 +2691,Street Power Soccer,,UE4;crash;status-boots,boots,2020-11-21 12:28:57,2 +2692,OZMAFIA!! -vivace-,,,,2020-10-12 10:24:45,1 +2693,Road to Guangdong,,slow;status-playable,playable,2020-10-12 12:15:32,1 +2694,Prehistoric Dude,,gpu;status-ingame,ingame,2020-10-12 12:38:48,1 +2695,MIND Path to Thalamus - 0100F5700C9A8000,0100F5700C9A8000,UE4;status-playable,playable,2021-06-16 17:37:25,2 +2696,Manifold Garden,,status-playable,playable,2020-10-13 20:27:13,1 +2697,INMOST - 0100F1401161E000,0100F1401161E000,status-playable,playable,2022-10-05 11:27:40,3 +2698,G.I. Joe Operation Blackout,,UE4;crash;status-boots,boots,2020-11-21 12:37:44,2 +2699,Petal Crash,,,,2020-10-14 7:58:02,1 +2700,Helheim Hassle,,status-playable,playable,2020-10-14 11:38:36,1 +2701,FuzzBall - 010067600F1A0000,010067600F1A0000,crash;status-nothing,nothing,2021-03-29 20:13:21,2 +2702,Fight Crab - 01006980127F0000,01006980127F0000,status-playable;online-broken;ldn-untested,playable,2022-10-05 10:24:04,3 +2703,Faeria - 010069100DB08000,010069100DB08000,status-menus;nvdec;online-broken,menus,2022-10-04 16:44:41,2 +2704,Escape from Tethys,,status-playable,playable,2020-10-14 22:38:25,1 +2705,Chinese Parents - 010046F012A04000,010046F012A04000,status-playable,playable,2021-04-08 12:56:41,3 +2706,Boomerang Fu - 010081A00EE62000,010081A00EE62000,status-playable,playable,2024-07-28 1:12:41,4 +2707,Bite the Bullet,,status-playable,playable,2020-10-14 23:10:11,1 +2708,Pretty Princess Magical Coordinate,,status-playable,playable,2020-10-15 11:43:41,2 +2709,A Short Hike,,status-playable,playable,2020-10-15 0:19:58,1 +2710,HYPERCHARGE: Unboxed - 0100A8B00F0B4000,0100A8B00F0B4000,status-playable;nvdec;online-broken;UE4;ldn-untested,playable,2022-09-27 21:52:39,3 +2711,Anima: Gate of Memories - 0100706005B6A000,0100706005B6A000,nvdec;status-playable,playable,2021-06-16 18:13:18,2 +2712,Perky Little Things - 01005CD012DC0000,01005CD012DC0000,status-boots;crash;vulkan,boots,2024-08-04 7:22:46,9 +2713,Save Your Nuts - 010091000F72C000,010091000F72C000,status-playable;nvdec;online-broken;UE4,playable,2022-09-27 23:12:02,4 +2714,Unknown Fate,,slow;status-ingame,ingame,2020-10-15 12:27:42,1 +2715,Picross S4,,status-playable,playable,2020-10-15 12:33:46,1 +2716,The Station - 010007F00AF56000,010007F00AF56000,status-playable,playable,2022-09-28 18:15:27,2 +2717,Liege Dragon - 010041F0128AE000,010041F0128AE000,status-playable,playable,2022-10-12 10:27:03,2 +2718,G-MODE Archives 06 The strongest ever Julia Miyamoto,,status-playable,playable,2020-10-15 13:06:26,1 +2719,Prinny: Can I Really Be the Hero? - 01007A0011878000,01007A0011878000,32-bit;status-playable;nvdec,playable,2023-10-22 9:25:25,5 +2720,"Prinny 2: Dawn of Operation Panties, Dood! - 01008FA01187A000",01008FA01187A000,32-bit;status-playable,playable,2022-10-13 12:42:58,4 +2721,Convoy,,status-playable,playable,2020-10-15 14:43:50,1 +2722,Fight of Animals,,online;status-playable,playable,2020-10-15 15:08:28,1 +2723,Strawberry Vinegar - 0100D7E011C64000,0100D7E011C64000,status-playable;nvdec,playable,2022-12-05 16:25:40,3 +2724,Inside Grass: A little adventure,,status-playable,playable,2020-10-15 15:26:27,1 +2725,Battle Princess Madelyn Royal Edition - 0100A7500DF64000,0100A7500DF64000,status-playable,playable,2022-09-26 19:14:49,2 +2726,A HERO AND A GARDEN - 01009E1011EC4000,01009E1011EC4000,status-playable,playable,2022-12-05 16:37:47,2 +2727,Trials of Mana - 0100D7800E9E0000,0100D7800E9E0000,status-playable;UE4,playable,2022-09-30 21:50:37,3 +2728,Ultimate Fishing Simulator - 010048901295C000,010048901295C000,status-playable,playable,2021-06-16 18:38:23,2 +2729,Struggling,,status-playable,playable,2020-10-15 20:37:03,1 +2730,Samurai Jack Battle Through Time - 01006C600E46E000,01006C600E46E000,status-playable;nvdec;UE4,playable,2022-10-06 13:33:59,2 +2731,House Flipper - 0100CAE00EB02000,0100CAE00EB02000,status-playable,playable,2021-06-16 18:28:32,2 +2732,Aokana - Four Rhythms Across the Blue - 0100990011866000,0100990011866000,status-playable,playable,2022-10-04 13:50:26,2 +2733,NARUTO SHIPPUDEN: ULTIMATE NINJA STORM 4 ROAD TO BORUTO - 010084D00CF5E000,010084D00CF5E000,status-playable,playable,2024-06-29 13:04:22,10 +2734,Where Angels Cry - 010027D011C9C000,010027D011C9C000,gpu;status-ingame;nvdec,ingame,2022-09-30 22:24:47,3 +2735,The Copper Canyon Dixie Dash - 01000F20102AC000,01000F20102AC000,status-playable;UE4,playable,2022-09-29 11:42:29,3 +2736,Cloudpunk,,,,2020-10-15 23:03:55,1 +2737,MotoGP 20 - 01001FA00FBBC000,01001FA00FBBC000,status-playable;ldn-untested,playable,2022-09-29 17:58:01,3 +2738,Little Town Hero,,status-playable,playable,2020-10-15 23:28:48,1 +2739,Broken Lines,,status-playable,playable,2020-10-16 0:01:37,1 +2740,Crown Trick - 0100059012BAE000,0100059012BAE000,status-playable,playable,2021-06-16 19:36:29,2 +2741,Archaica: Path of LightInd,,crash;status-nothing,nothing,2020-10-16 13:22:26,1 +2742,Indivisible - 01001D3003FDE000,01001D3003FDE000,status-playable;nvdec,playable,2022-09-29 15:20:57,2 +2743,Thy Sword - 01000AC011588000,01000AC011588000,status-ingame;crash,ingame,2022-09-30 16:43:14,3 +2744,Spirit of the North - 01005E101122E000,01005E101122E000,status-playable;UE4,playable,2022-09-30 11:40:47,3 +2745,Megabyte Punch,,status-playable,playable,2020-10-16 14:07:18,1 +2746,Book of Demons - 01007A200F452000,01007A200F452000,status-playable,playable,2022-09-29 12:03:43,5 +2747,80's OVERDRIVE,,status-playable,playable,2020-10-16 14:33:32,1 +2748,My Universe My Baby,,,,2020-10-17 14:04:01,1 +2749,Mario Kart Live: Home Circuit - 0100ED100BA3A000,0100ED100BA3A000,services;status-nothing;crash;Needs More Attention,nothing,2022-12-07 22:36:52,2 +2750,STONE - 010070D00F640000,010070D00F640000,status-playable;UE4,playable,2022-09-30 11:53:32,2 +2751,Newt One,,status-playable,playable,2020-10-17 21:21:48,1 +2752,Zoids Wild Blast Unleashed - 010069C0123D8000,010069C0123D8000,status-playable;nvdec,playable,2022-10-15 11:26:59,2 +2753,KINGDOM HEARTS Melody of Memory DEMO,,,,2020-10-18 14:57:30,1 +2754,Escape First,,status-playable,playable,2020-10-20 22:46:53,1 +2755,If My Heart Had Wings - 01001AC00ED72000,01001AC00ED72000,status-playable,playable,2022-09-29 14:54:57,2 +2756,Felix the Reaper,,nvdec;status-playable,playable,2020-10-20 23:43:03,1 +2757,War-Torn Dreams,,crash;status-nothing,nothing,2020-10-21 11:36:16,1 +2758,TT Isle of Man 2 - 010000400F582000,010000400F582000,gpu;status-ingame;nvdec;online-broken,ingame,2022-09-30 22:13:05,3 +2759,Kholat - 0100F680116A2000,0100F680116A2000,UE4;nvdec;status-playable,playable,2021-06-17 11:52:48,2 +2760,Dungeon of the Endless - 010034300F0E2000,010034300F0E2000,nvdec;status-playable,playable,2021-05-27 19:16:26,2 +2761,Gravity Rider Zero - 01002C2011828000,01002C2011828000,gpu;status-ingame;vulkan-backend-bug,ingame,2022-09-29 13:56:13,6 +2762,Oddworld: Munch's Oddysee - 0100BB500EE3C000,0100BB500EE3C000,gpu;nvdec;status-ingame,ingame,2021-06-17 12:11:50,2 +2763,Five Nights at Freddy's: Help Wanted - 0100F7901118C000,0100F7901118C000,status-playable;UE4,playable,2022-09-29 12:40:09,4 +2764,Gates of Hell,,slow;status-playable,playable,2020-10-22 12:44:26,1 +2765,Concept Destruction - 0100971011224000,0100971011224000,status-playable,playable,2022-09-29 12:28:56,2 +2766,Zenge,,status-playable,playable,2020-10-22 13:23:57,1 +2767,Water Balloon Mania,,status-playable,playable,2020-10-23 20:20:59,1 +2768,The Persistence - 010050101127C000,010050101127C000,nvdec;status-playable,playable,2021-06-06 19:15:40,2 +2769,The House of Da Vinci 2,,status-playable,playable,2020-10-23 20:47:17,1 +2770,The Experiment: Escape Room - 01006050114D4000,01006050114D4000,gpu;status-ingame,ingame,2022-09-30 13:20:35,3 +2771,Telling Lies,,status-playable,playable,2020-10-23 21:14:51,1 +2772,She Sees Red - 01000320110C2000,01000320110C2000,status-playable;nvdec,playable,2022-09-30 11:30:15,3 +2773,Golf With Your Friends - 01006FB00EBE0000,01006FB00EBE0000,status-playable;online-broken,playable,2022-09-29 12:55:11,2 +2774,Island Saver,,nvdec;status-playable,playable,2020-10-23 22:07:02,1 +2775,Devil May Cry 2 - 01007CF00D5BA000,01007CF00D5BA000,status-playable;nvdec,playable,2023-01-24 23:03:20,3 +2776,The Otterman Empire - 0100B0101265C000,0100B0101265C000,UE4;gpu;status-ingame,ingame,2021-06-17 12:27:15,2 +2777,SaGa SCARLET GRACE: AMBITIONS - 010003A00D0B4000,010003A00D0B4000,status-playable,playable,2022-10-06 13:20:31,3 +2778,REZ PLZ,,status-playable,playable,2020-10-24 13:26:12,1 +2779,Bossgard - 010076F00EBE4000,010076F00EBE4000,status-playable;online-broken,playable,2022-10-04 14:21:13,2 +2780,1993 Shenandoah,,status-playable,playable,2020-10-24 13:55:42,1 +2781,Ori and the Will of the Wisps - 01008DD013200000,01008DD013200000,status-playable,playable,2023-03-07 0:47:13,12 +2782,WWE 2K Battlegrounds - 010081700EDF4000,010081700EDF4000,status-playable;nvdec;online-broken;UE4,playable,2022-10-07 12:44:40,5 +2783,Shaolin vs Wutang : Eastern Heroes - 01003AB01062C000,01003AB01062C000,deadlock;status-nothing,nothing,2021-03-29 20:38:54,2 +2784,Mini Motor Racing X - 01003560119A6000,01003560119A6000,status-playable,playable,2021-04-13 17:54:49,4 +2785,Secret Files 3,,nvdec;status-playable,playable,2020-10-24 15:32:39,1 +2786,Othercide - 0100E5900F49A000,0100E5900F49A000,status-playable;nvdec,playable,2022-10-05 19:04:38,2 +2787,Eiga Sumikko Gurashi Tobidasu Ehon to Himitsu no Ko Game de Asobo Ehon no Sekai,,status-playable,playable,2020-11-12 0:11:50,2 +2788,Party Hard 2 - 010022801217E000,010022801217E000,status-playable;nvdec,playable,2022-10-05 20:31:48,2 +2789,Paradise Killer - 01007FB010DC8000,01007FB010DC8000,status-playable;UE4,playable,2022-10-05 19:33:05,5 +2790,MX vs ATV All Out - 0100218011E7E000,0100218011E7E000,status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-10-25 19:51:46,3 +2791,CastleStorm 2,,UE4;crash;nvdec;status-boots,boots,2020-10-25 11:22:44,1 +2792,Hotshot Racing - 0100BDE008218000,0100BDE008218000,gpu;status-ingame;nvdec;online-broken;ldn-untested;vulkan-backend-bug,ingame,2024-02-04 21:31:17,4 +2793,Bounty Battle - 0100E1200DC1A000,0100E1200DC1A000,status-playable;nvdec,playable,2022-10-04 14:40:51,2 +2794,Avicii Invector,,status-playable,playable,2020-10-25 12:12:56,1 +2795,Ys Origin - 0100F90010882000,0100F90010882000,status-playable;nvdec,playable,2024-04-17 5:07:33,2 +2796,Kirby Fighters 2 - 0100227010460000,0100227010460000,ldn-works;online;status-playable,playable,2021-06-17 13:06:39,2 +2798,JUMP FORCE Deluxe Edition - 0100183010F12000,0100183010F12000,status-playable;nvdec;online-broken;UE4,playable,2023-10-01 15:56:05,10 +2799,The Survivalists,,status-playable,playable,2020-10-27 15:51:13,1 +2800,"Season Match Full Bundle - Parts 1, 2 and 3",,status-playable,playable,2020-10-27 16:15:22,1 +2801,Moai VI: Unexpected Guests,,slow;status-playable,playable,2020-10-27 16:40:20,1 +2802,Agatha Christie - The ABC Murders,,status-playable,playable,2020-10-27 17:08:23,1 +2803,Remothered: Broken Porcelain - 0100FBD00F5F6000,0100FBD00F5F6000,UE4;gpu;nvdec;status-ingame,ingame,2021-06-17 15:13:11,2 +2804,Need For Speed Hot Pursuit Remastered,,audio;online;slow;status-ingame,ingame,2020-10-27 17:46:58,1 +2805,WarriOrb - 010032700EAC4000,010032700EAC4000,UE4;status-playable,playable,2021-06-17 15:45:14,2 +2806,Townsmen - A Kingdom Rebuilt - 010049E00BA34000,010049E00BA34000,status-playable;nvdec,playable,2022-10-14 22:48:59,3 +2807,Oceanhorn 2 Knights of the Lost Realm - 01006CB010840000,01006CB010840000,status-playable,playable,2021-05-21 18:26:10,6 +2808,No More Heroes 2 Desperate Struggle - 010071400F204000,010071400F204000,32-bit;status-playable;nvdec,playable,2022-11-19 1:38:13,4 +2809,No More Heroes - 0100F0400F202000,0100F0400F202000,32-bit;status-playable,playable,2022-09-13 7:44:27,6 +2810,Rusty Spount Rescue Adventure,,,,2020-10-29 17:06:42,1 +2811,Pixel Puzzle Makeout League - 010000E00E612000,010000E00E612000,status-playable,playable,2022-10-13 12:34:00,3 +2812,Futari de! Nyanko Daisensou - 01003C300B274000,01003C300B274000,status-playable,playable,2024-01-05 22:26:52,2 +2814,MAD RAT DEAD,,,,2020-10-31 13:30:24,1 +2815,The Language of Love,,Needs Update;crash;status-nothing,nothing,2020-12-03 17:54:00,3 +2816,Torn Tales - Rebound Edition,,status-playable,playable,2020-11-01 14:11:59,1 +2817,Spaceland,,status-playable,playable,2020-11-01 14:31:56,1 +2818,HARDCORE MECHA,,slow;status-playable,playable,2020-11-01 15:06:33,1 +2819,Barbearian - 0100F7E01308C000,0100F7E01308C000,Needs Update;gpu;status-ingame,ingame,2021-06-28 16:27:50,2 +2821,INSTANT Chef Party,,,,2020-11-01 23:15:58,1 +2822,Pikmin 3 Deluxe - 0100F4C009322000,0100F4C009322000,gpu;status-ingame;32-bit;nvdec;Needs Update,ingame,2024-09-03 0:28:26,22 +2823,Cobra Kai The Karate Kid Saga Continues - 01005790110F0000,01005790110F0000,status-playable,playable,2021-06-17 15:59:13,2 +2824,Seven Knights -Time Wanderer- - 010018400C24E000,010018400C24E000,status-playable;vulkan-backend-bug,playable,2022-10-13 22:08:54,3 +2825,Kangokuto Mary Skelter Finale,,audio;crash;status-ingame,ingame,2021-01-09 22:39:28,2 +2826,Shadowverse Champions Battle - 01002A800C064000,01002A800C064000,status-playable,playable,2022-10-02 22:59:29,5 +2827,Bakugan Champions of Vestroia,,status-playable,playable,2020-11-06 19:07:39,2 +2828,Jurassic World Evolution Complete Edition - 010050A011344000,010050A011344000,cpu;status-menus;crash,menus,2023-08-04 18:06:54,6 +2829,KAMEN RIDER memory of heroez / Premium Sound Edition - 0100A9801180E000,0100A9801180E000,status-playable,playable,2022-12-06 3:14:26,4 +2830,Shin Megami Tensei III NOCTURNE HD REMASTER - 010045800ED1E000,010045800ED1E000,gpu;status-ingame;Needs Update,ingame,2022-11-03 19:57:01,6 +2832,FUSER - 0100E1F013674000,0100E1F013674000,status-playable;nvdec;UE4,playable,2022-10-17 20:58:32,4 +2833,Mad Father,,status-playable,playable,2020-11-12 13:22:10,1 +2834,Café Enchanté,,status-playable,playable,2020-11-13 14:54:25,1 +2835,JUST DANCE 2021,,,,2020-11-14 6:22:04,1 +2836,Medarot Classics Plus Kuwagata Ver,,status-playable,playable,2020-11-21 11:30:40,3 +2837,Medarot Classics Plus Kabuto Ver,,status-playable,playable,2020-11-21 11:31:18,3 +2838,Forest Guardian,,,,2020-11-14 17:00:13,1 +2840,Fantasy Tavern Sextet -Vol.1 New World Days- - 01000E2012F6E000,01000E2012F6E000,gpu;status-ingame;crash;Needs Update,ingame,2022-12-05 16:48:00,2 +2841,Ary and the Secret of Seasons - 0100C2500CAB6000,0100C2500CAB6000,status-playable,playable,2022-10-07 20:45:09,2 +2842,Dark Quest 2,,status-playable,playable,2020-11-16 21:34:52,1 +2843,Cooking Tycoons 2: 3 in 1 Bundle,,status-playable,playable,2020-11-16 22:19:33,1 +2844,Cooking Tycoons: 3 in 1 Bundle,,status-playable,playable,2020-11-16 22:44:26,1 +2845,Agent A: A puzzle in disguise,,status-playable,playable,2020-11-16 22:53:27,1 +2846,ROBOTICS;NOTES DaSH,,status-playable,playable,2020-11-16 23:09:54,1 +2847,Hunting Simulator 2 - 010061F010C3A000,010061F010C3A000,status-playable;UE4,playable,2022-10-10 14:25:51,3 +2848,9 Monkeys of Shaolin,,UE4;gpu;slow;status-ingame,ingame,2020-11-17 11:58:43,1 +2849,Tin & Kuna,,status-playable,playable,2020-11-17 12:16:12,1 +2850,Seers Isle,,status-playable,playable,2020-11-17 12:28:50,1 +2851,Royal Roads,,status-playable,playable,2020-11-17 12:54:38,1 +2852,Rimelands - 01006AC00EE6E000,01006AC00EE6E000,status-playable,playable,2022-10-13 13:32:56,2 +2853,Mekorama - 0100B360068B2000,0100B360068B2000,gpu;status-boots,boots,2021-06-17 16:37:21,2 +2854,Need for Speed Hot Pursuit Remastered - 010029B0118E8000,010029B0118E8000,status-playable;online-broken,playable,2024-03-20 21:58:02,14 +2855,Mech Rage,,status-playable,playable,2020-11-18 12:30:16,1 +2856,Modern Tales: Age of Invention - 010004900D772000,010004900D772000,slow;status-playable,playable,2022-10-12 11:20:19,2 +2857,Dead Z Meat - 0100A24011F52000,0100A24011F52000,UE4;services;status-ingame,ingame,2021-04-14 16:50:16,2 +2858,Along the Edge,,status-playable,playable,2020-11-18 15:00:07,1 +2859,Country Tales - 0100C1E012A42000,0100C1E012A42000,status-playable,playable,2021-06-17 16:45:39,2 +2860,Ghost Sweeper - 01004B301108C000,01004B301108C000,status-playable,playable,2022-10-10 12:45:36,3 +2862,Hyrule Warriors: Age of Calamity - 01002B00111A2000,01002B00111A2000,gpu;deadlock;slow;status-ingame;crash;nvdec;amd-vendor-bug,ingame,2024-02-28 0:47:00,39 +2864,Path of Sin: Greed - 01001E500EA16000,01001E500EA16000,status-menus;crash,menus,2021-11-24 8:00:00,3 +2865,Hoggy 2 - 0100F7300ED2C000,0100F7300ED2C000,status-playable,playable,2022-10-10 13:53:35,3 +2866,Queen's Quest 4: Sacred Truce - 0100DCF00F13A000,0100DCF00F13A000,status-playable;nvdec,playable,2022-10-13 12:59:21,3 +2867,ROBOTICS;NOTES ELITE,,status-playable,playable,2020-11-26 10:28:20,1 +2868,Taiko no Tatsujin Rhythmic Adventure Pack,,status-playable,playable,2020-12-03 7:28:26,2 +2869,Pinstripe,,status-playable,playable,2020-11-26 10:40:40,1 +2870,Torchlight III - 010075400DDB8000,010075400DDB8000,status-playable;nvdec;online-broken;UE4,playable,2022-10-14 22:20:17,2 +2871,Ben 10: Power Trip - 01009CD00E3AA000,01009CD00E3AA000,status-playable;nvdec,playable,2022-10-09 10:52:12,2 +2872,Zoids Wild Infinity Blast,,,,2020-11-26 16:15:37,1 +2873,Picross S5 - 0100AC30133EC000,0100AC30133EC000,status-playable,playable,2022-10-17 18:51:42,5 +2874,Worm Jazz - 01009CD012CC0000,01009CD012CC0000,gpu;services;status-ingame;UE4;regression,ingame,2021-11-10 10:33:04,4 +2875,TTV2,,status-playable,playable,2020-11-27 13:21:36,1 +2876,Deadly Days,,status-playable,playable,2020-11-27 13:38:55,1 +2877,Pumpkin Jack - 01006C10131F6000,01006C10131F6000,status-playable;nvdec;UE4,playable,2022-10-13 12:52:32,3 +2878,Active Neurons 2 - 01000D1011EF0000,01000D1011EF0000,status-playable,playable,2022-10-07 16:21:42,2 +2879,Niche - a genetics survival game,,nvdec;status-playable,playable,2020-11-27 14:01:11,1 +2880,Monstrum - 010039F00EF70000,010039F00EF70000,status-playable,playable,2021-01-31 11:07:26,3 +2881,TRANSFORMERS: BATTLEGROUNDS - 01005E500E528000,01005E500E528000,online;status-playable,playable,2021-06-17 18:08:19,2 +2882,UBERMOSH:SANTICIDE,,status-playable,playable,2020-11-27 15:05:01,1 +2884,SPACE ELITE FORCE,,status-playable,playable,2020-11-27 15:21:05,1 +2885,Oddworld: New 'n' Tasty - 01005E700ABB8000,01005E700ABB8000,nvdec;status-playable,playable,2021-06-17 17:51:32,2 +2886,Immortal Realms: Vampire Wars - 010079501025C000,010079501025C000,nvdec;status-playable,playable,2021-06-17 17:41:46,2 +2887,Horace - 010086D011EB8000,010086D011EB8000,status-playable,playable,2022-10-10 14:03:50,3 +2888,Maid of Sker : Upscale Resolution not working,,,,2020-11-29 15:36:42,3 +2889,Professor Rubik's Brain Fitness,,,,2020-11-30 11:22:45,1 +2890,QV ( キュビ ),,,,2020-11-30 11:22:49,1 +2892,Double Pug Switch - 0100A5D00C7C0000,0100A5D00C7C0000,status-playable;nvdec,playable,2022-10-10 10:59:35,2 +2893,Trollhunters: Defenders of Arcadia,,gpu;nvdec;status-ingame,ingame,2020-11-30 13:27:09,1 +2894,Outbreak: Epidemic - 0100C850130FE000,0100C850130FE000,status-playable,playable,2022-10-13 10:27:31,2 +2895,Blackjack Hands,,status-playable,playable,2020-11-30 14:04:51,1 +2896,Piofiore: Fated Memories,,nvdec;status-playable,playable,2020-11-30 14:27:50,1 +2897,Task Force Kampas,,status-playable,playable,2020-11-30 14:44:15,1 +2898,Nexomon: Extinction,,status-playable,playable,2020-11-30 15:02:22,1 +2899,realMyst: Masterpiece Edition,,nvdec;status-playable,playable,2020-11-30 15:25:42,1 +2900,Neighbours back From Hell - 010065F00F55A000,010065F00F55A000,status-playable;nvdec,playable,2022-10-12 15:36:48,2 +2901,Sakai and... - 01007F000EB36000,01007F000EB36000,status-playable;nvdec,playable,2022-12-15 13:53:19,18 +2902,Supraland - 0100A6E01201C000,0100A6E01201C000,status-playable;nvdec;UE4;opengl-backend-bug,playable,2022-10-14 9:49:11,2 +2903,Ministry of Broadcast - 010069200EB80000,010069200EB80000,status-playable,playable,2022-08-10 0:31:16,3 +2904,Inertial Drift - 01002BD00F626000,01002BD00F626000,status-playable;online-broken,playable,2022-10-11 12:22:19,2 +2905,SuperEpic: The Entertainment War - 0100630010252000,0100630010252000,status-playable,playable,2022-10-13 23:02:48,2 +2906,HARDCORE Maze Cube,,status-playable,playable,2020-12-04 20:01:24,1 +2907,Firework,,status-playable,playable,2020-12-04 20:20:09,1 +2908,GORSD,,status-playable,playable,2020-12-04 22:15:21,1 +2909,Georifters,,UE4;crash;nvdec;status-menus,menus,2020-12-04 22:30:50,1 +2910,Giraffe and Annika,,UE4;crash;status-ingame,ingame,2020-12-04 22:41:57,1 +2911,Doodle Derby,,status-boots,boots,2020-12-04 22:51:48,1 +2912,"Good Pizza, Great Pizza",,status-playable,playable,2020-12-04 22:59:18,1 +2913,HyperBrawl Tournament,,crash;services;status-boots,boots,2020-12-04 23:03:27,1 +2914,Dustoff Z,,status-playable,playable,2020-12-04 23:22:29,1 +2915,Embracelet,,status-playable,playable,2020-12-04 23:45:00,1 +2916,"Cook, Serve, Delicious! 3?! - 0100B82010B6C000",0100B82010B6C000,status-playable,playable,2022-10-09 12:09:34,2 +2917,CAPTAIN TSUBASA: RISE OF NEW CHAMPIONS - 0100EAE010560000,0100EAE010560000,status-playable;online-broken;vulkan-backend-bug,playable,2022-10-09 11:20:50,2 +2918,Yomi wo Saku Hana,,,,2020-12-05 7:14:40,1 +2921,Immortals Fenyx Rising - 01004A600EC0A000,01004A600EC0A000,gpu;status-menus;crash,menus,2023-02-24 16:19:55,11 +2923,Supermarket Shriek - 0100C01012654000,0100C01012654000,status-playable,playable,2022-10-13 23:19:20,2 +2924,Absolute Drift,,status-playable,playable,2020-12-10 14:02:44,1 +2925,CASE 2: Animatronics Survival - 0100C4C0132F8000,0100C4C0132F8000,status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-10-09 11:45:03,2 +2926,BIG-Bobby-Car - The Big Race,,slow;status-playable,playable,2020-12-10 14:25:06,1 +2927,Asterix & Obelix XXL: Romastered - 0100F46011B50000,0100F46011B50000,gpu;status-ingame;nvdec;opengl,ingame,2023-08-16 21:22:06,3 +2928,Chicken Police - Paint it RED!,,nvdec;status-playable,playable,2020-12-10 15:10:11,1 +2929,Descenders,,gpu;status-ingame,ingame,2020-12-10 15:22:36,1 +2930,Outbreak: The Nightmare Chronicles - 01006EE013100000,01006EE013100000,status-playable,playable,2022-10-13 10:41:57,2 +2931,#Funtime,,status-playable,playable,2020-12-10 16:54:35,1 +2932,My Little Dog Adventure,,gpu;status-ingame,ingame,2020-12-10 17:47:37,1 +2933,n Verlore Verstand,,slow;status-ingame,ingame,2020-12-10 18:00:28,1 +2934,Oneiros - 0100463013246000,0100463013246000,status-playable,playable,2022-10-13 10:17:22,2 +2935,#KillAllZombies,,slow;status-playable,playable,2020-12-16 1:50:25,7 +2936,Connection Haunted,,slow;status-playable,playable,2020-12-10 18:57:14,1 +2938,Goosebumps Dead of Night,,gpu;nvdec;status-ingame,ingame,2020-12-10 20:02:16,1 +2939,"#Halloween, Super Puzzles Dream",,nvdec;status-playable,playable,2020-12-10 20:43:58,1 +2940,The Long Return,,slow;status-playable,playable,2020-12-10 21:05:10,1 +2941,The Bluecoats: North & South,,nvdec;status-playable,playable,2020-12-10 21:22:29,1 +2942,Puyo Puyo Tetris 2 - 010038E011940000,010038E011940000,status-playable;ldn-untested,playable,2023-09-26 11:35:25,8 +2943,Yuppie Psycho: Executive Edition,,crash;status-ingame,ingame,2020-12-11 10:37:06,1 +2945,Root Double -Before Crime * After Days- Xtend Edition - 0100936011556000,0100936011556000,status-nothing;crash,nothing,2022-02-05 2:03:49,2 +2946,Hidden Folks,,,,2020-12-11 11:48:16,1 +2947,KINGDOM HEARTS Melody of Memory,,crash;nvdec;status-ingame,ingame,2021-03-03 17:34:12,2 +2948,Unhatched,,status-playable,playable,2020-12-11 12:11:09,1 +2949,Tropico 6 - 0100FBE0113CC000,0100FBE0113CC000,status-playable;nvdec;UE4,playable,2022-10-14 23:21:03,2 +2950,Star Renegades,,nvdec;status-playable,playable,2020-12-11 12:19:23,1 +2951,Alpaca Ball: Allstars,,nvdec;status-playable,playable,2020-12-11 12:26:29,1 +2952,Nordlicht,,,,2020-12-11 12:37:12,1 +2953,Sakuna: Of Rice and Ruin - 0100B1400E8FE000,0100B1400E8FE000,status-playable,playable,2023-07-24 13:47:13,2 +2954,Re:Turn - One Way Trip - 0100F03011616000,0100F03011616000,status-playable,playable,2022-08-29 22:42:53,3 +2955,L.O.L. Surprise! Remix: We Rule the World - 0100F2B0123AE000,0100F2B0123AE000,status-playable,playable,2022-10-11 22:48:03,4 +2956,They Bleed Pixels - 01001C2010D08000,01001C2010D08000,gpu;status-ingame,ingame,2024-08-09 5:52:18,3 +2957,If Found...,,status-playable,playable,2020-12-11 13:43:14,1 +2958,Gibbous - A Cthulhu Adventure - 0100D95012C0A000,0100D95012C0A000,status-playable;nvdec,playable,2022-10-10 12:57:17,2 +2959,Duck Life Adventure - 01005BC012C66000,01005BC012C66000,status-playable,playable,2022-10-10 11:27:03,2 +2960,Sniper Elite 4 - 010007B010FCC000,010007B010FCC000,gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug,ingame,2024-06-18 17:53:15,4 +2961,Serious Sam Collection - 010007D00D43A000,010007D00D43A000,status-boots;vulkan-backend-bug,boots,2022-10-13 13:53:34,3 +2962,Slide Stars - 010010D011E1C000,010010D011E1C000,status-menus;crash,menus,2021-11-25 8:53:43,3 +2963,Tank Mechanic Simulator,,status-playable,playable,2020-12-11 15:10:45,1 +2964,Five Dates,,nvdec;status-playable,playable,2020-12-11 15:17:11,1 +2965,MagiCat,,status-playable,playable,2020-12-11 15:22:07,1 +2966,Family Feud 2021 - 010060200FC44000,010060200FC44000,status-playable;online-broken,playable,2022-10-10 11:42:21,3 +2967,LUNA The Shadow Dust,,,,2020-12-11 15:26:55,1 +2968,Paw Patrol: Might Pups Save Adventure Bay! - 01001F201121E000,01001F201121E000,status-playable,playable,2022-10-13 12:17:55,2 +2969,30-in-1 Game Collection - 010056D00E234000,010056D00E234000,status-playable;online-broken,playable,2022-10-15 17:47:09,2 +2970,Truck Driver - 0100CB50107BA000,0100CB50107BA000,status-playable;online-broken,playable,2022-10-20 17:42:33,2 +2971,Bridge Constructor: The Walking Dead,,gpu;slow;status-ingame,ingame,2020-12-11 17:31:32,1 +2972,Speed 3: Grand Prix - 0100F18010BA0000,0100F18010BA0000,status-playable;UE4,playable,2022-10-20 12:32:31,2 +2973,Wonder Blade,,status-playable,playable,2020-12-11 17:55:31,1 +2974,Super Blood Hockey,,status-playable,playable,2020-12-11 20:01:41,1 +2975,Who Wants to Be a Millionaire?,,crash;status-nothing,nothing,2020-12-11 20:22:42,1 +2976,My Aunt is a Witch - 01002C6012334000,01002C6012334000,status-playable,playable,2022-10-19 9:21:17,2 +2977,Flatland: Prologue,,status-playable,playable,2020-12-11 20:41:12,1 +2978,Fantasy Friends - 010017C012726000,010017C012726000,status-playable,playable,2022-10-17 19:42:39,2 +2979,MO:Astray,,crash;status-ingame,ingame,2020-12-11 21:45:44,1 +2980,Wartile Complete Edition,,UE4;crash;gpu;status-menus,menus,2020-12-11 21:56:10,1 +2981,Super Punch Patrol - 01001F90122B2000,01001F90122B2000,status-playable,playable,2024-07-12 19:49:02,2 +2982,Chronos,,UE4;gpu;nvdec;status-ingame,ingame,2020-12-11 22:16:35,1 +2983,Going Under,,deadlock;nvdec;status-ingame,ingame,2020-12-11 22:29:46,1 +2984,Castle Crashers Remastered - 010001300D14A000,010001300D14A000,gpu;status-boots,boots,2024-08-10 9:21:20,12 +2985,Morbid: The Seven Acolytes - 010040E00F642000,010040E00F642000,status-playable,playable,2022-08-09 17:21:58,3 +2986,Elrador Creatures,,slow;status-playable,playable,2020-12-12 12:35:35,1 +2987,Sam & Max Save the World,,status-playable,playable,2020-12-12 13:11:51,1 +2988,Quiplash 2 InterLASHional - 0100AF100EE76000,0100AF100EE76000,status-playable;online-working,playable,2022-10-19 17:43:45,4 +2989,Monster Truck Championship - 0100D30010C42000,0100D30010C42000,slow;status-playable;nvdec;online-broken;UE4,playable,2022-10-18 23:16:51,2 +2990,Liberated: Enhanced Edition - 01003A90133A6000,01003A90133A6000,gpu;status-ingame;nvdec,ingame,2024-07-04 4:48:48,2 +2991,Empire of Sin,,nvdec,,2020-12-12 13:48:05,1 +2992,Girabox,,status-playable,playable,2020-12-12 13:55:05,1 +2993,Shiren the Wanderer: The Tower of Fortune and the Dice of Fate - 01007430122D0000,01007430122D0000,status-playable;nvdec,playable,2022-10-20 11:44:36,2 +2994,2048 Battles,,status-playable,playable,2020-12-12 14:21:25,1 +2995,Reaper: Tale of a Pale Swordsman,,status-playable,playable,2020-12-12 15:12:23,1 +2996,Demong Hunter,,status-playable,playable,2020-12-12 15:27:08,1 +2997,Rise and Shine,,status-playable,playable,2020-12-12 15:56:43,1 +2998,12 Labours of Hercules II: The Cretan Bull - 0100B1A010014000,0100B1A010014000,cpu;status-nothing;32-bit;crash,nothing,2022-12-07 13:43:10,3 +2999,"#womenUp, Super Puzzles Dream",,status-playable,playable,2020-12-12 16:57:25,1 +3000,"#NoLimitFantasy, Super Puzzles Dream",,nvdec;status-playable,playable,2020-12-12 17:21:32,1 +3001,2urvive - 01007550131EE000,01007550131EE000,status-playable,playable,2022-11-17 13:49:37,3 +3002,2weistein – The Curse of the Red Dragon - 0100E20012886000,0100E20012886000,status-playable;nvdec;UE4,playable,2022-11-18 14:47:07,4 +3003,64,,status-playable,playable,2020-12-12 21:31:58,1 +3004,4x4 Dirt Track,,status-playable,playable,2020-12-12 21:41:42,1 +3005,Aeolis Tournament,,online;status-playable,playable,2020-12-12 22:02:14,1 +3006,Adventures of Pip,,nvdec;status-playable,playable,2020-12-12 22:11:55,1 +3007,9th Dawn III,,status-playable,playable,2020-12-12 22:27:27,1 +3008,Ailment,,status-playable,playable,2020-12-12 22:30:41,1 +3009,Adrenaline Rush - Miami Drive,,status-playable,playable,2020-12-12 22:49:50,1 +3010,Adventures of Chris,,status-playable,playable,2020-12-12 23:00:02,1 +3011,Akuarium,,slow;status-playable,playable,2020-12-12 23:43:36,1 +3012,Alchemist's Castle,,status-playable,playable,2020-12-12 23:54:08,1 +3013,Angry Video Game Nerd I & II Deluxe,,crash;status-ingame,ingame,2020-12-12 23:59:54,1 +3015,SENTRY,,status-playable,playable,2020-12-13 12:00:24,1 +3016,Squeakers,,status-playable,playable,2020-12-13 12:13:05,1 +3017,ALPHA,,status-playable,playable,2020-12-13 12:17:45,1 +3018,Shoot 1UP DX,,status-playable,playable,2020-12-13 12:32:47,1 +3019,Animal Hunter Z,,status-playable,playable,2020-12-13 12:50:35,1 +3020,Star99 - 0100E6B0115FC000,0100E6B0115FC000,status-menus;online,menus,2021-11-26 14:18:51,2 +3021,Alwa's Legacy,,status-playable,playable,2020-12-13 13:00:57,1 +3022,TERROR SQUID - 010070C00FB56000,010070C00FB56000,status-playable;online-broken,playable,2023-10-30 22:29:29,2 +3023,Animal Fight Club,,gpu;status-ingame,ingame,2020-12-13 13:13:33,1 +3024,"Momotaro Dentetsu Showa, Heisei, Reiwa mo Teiban! - 010093100DA04000",010093100DA04000,gpu;status-ingame,ingame,2023-09-22 10:21:46,3 +3025,Dokapon UP! Dreamy Roulette,,,,2020-12-13 14:53:27,1 +3026,ANIMUS,,status-playable,playable,2020-12-13 15:11:47,1 +3027,Pretty Princess Party - 01007F00128CC000,01007F00128CC000,status-playable,playable,2022-10-19 17:23:58,2 +3028,John Wick Hex - 01007090104EC000,01007090104EC000,status-playable,playable,2022-08-07 8:29:12,3 +3029,Animal Up,,status-playable,playable,2020-12-13 15:39:02,1 +3030,Derby Stallion,,,,2020-12-13 15:47:01,1 +3031,Ankh Guardian - Treasure of the Demon's Temple,,status-playable,playable,2020-12-13 15:55:49,1 +3032,Police X Heroine Lovepatrina! Love na Rhythm de Taihoshimasu!,,,,2020-12-13 16:12:56,1 +3033,Klondike Solitaire,,status-playable,playable,2020-12-13 16:17:27,1 +3034,Apocryph,,gpu;status-ingame,ingame,2020-12-13 23:24:10,1 +3035,Apparition,,nvdec;slow;status-ingame,ingame,2020-12-13 23:57:04,1 +3036,Tiny Gladiators,,status-playable,playable,2020-12-14 0:09:43,1 +3037,Aperion Cyberstorm,,status-playable,playable,2020-12-14 0:40:16,1 +3038,Cthulhu Saves Christmas,,status-playable,playable,2020-12-14 0:58:55,1 +3039,Kagamihara/Justice - 0100D58012FC2000,0100D58012FC2000,crash;status-nothing,nothing,2021-06-21 16:41:29,3 +3040,Greedroid,,status-playable,playable,2020-12-14 11:14:32,1 +3041,Aqua Lungers,,crash;status-ingame,ingame,2020-12-14 11:25:57,1 +3042,Atomic Heist - 01005FE00EC4E000,01005FE00EC4E000,status-playable,playable,2022-10-16 21:24:32,2 +3043,Nexoria: Dungeon Rogue Heroes - 0100B69012EC6000,0100B69012EC6000,gpu;status-ingame,ingame,2021-10-04 18:41:29,2 +3044,Armed 7 DX,,status-playable,playable,2020-12-14 11:49:56,1 +3045,Ord.,,status-playable,playable,2020-12-14 11:59:06,1 +3046,Commandos 2 HD Remaster - 010065A01158E000,010065A01158E000,gpu;status-ingame;nvdec,ingame,2022-08-10 21:52:27,2 +3047,Atomicrops - 0100AD30095A4000,0100AD30095A4000,status-playable,playable,2022-08-06 10:05:07,3 +3048,Rabi-Ribi - 01005BF00E4DE000,01005BF00E4DE000,status-playable,playable,2022-08-06 17:02:44,3 +3049,Assault Chainguns KM,,crash;gpu;status-ingame,ingame,2020-12-14 12:48:34,1 +3050,Attack of the Toy Tanks,,slow;status-ingame,ingame,2020-12-14 12:59:12,1 +3051,AstroWings SpaceWar,,status-playable,playable,2020-12-14 13:10:44,1 +3052,ATOMIK RunGunJumpGun,,status-playable,playable,2020-12-14 13:19:24,1 +3053,Arrest of a stone Buddha - 0100184011B32000,0100184011B32000,status-nothing;crash,nothing,2022-12-07 16:55:00,4 +3054,Midnight Evil - 0100A1200F20C000,0100A1200F20C000,status-playable,playable,2022-10-18 22:55:19,2 +3055,Awakening of Cthulhu - 0100085012D64000,0100085012D64000,UE4;status-playable,playable,2021-04-26 13:03:07,2 +3056,Axes - 0100DA3011174000,0100DA3011174000,status-playable,playable,2021-04-08 13:01:58,3 +3057,ASSAULT GUNNERS HD Edition,,,,2020-12-14 14:47:09,1 +3058,Shady Part of Me - 0100820013612000,0100820013612000,status-playable,playable,2022-10-20 11:31:55,3 +3059,A Frog Game,,status-playable,playable,2020-12-14 16:09:53,1 +3060,A Dark Room,,gpu;status-ingame,ingame,2020-12-14 16:14:28,1 +3061,A Sound Plan,,crash;status-boots,boots,2020-12-14 16:46:21,1 +3062,Actual Sunlight,,gpu;status-ingame,ingame,2020-12-14 17:18:41,1 +3063,Acthung! Cthulhu Tactics,,status-playable,playable,2020-12-14 18:40:27,1 +3064,ATOMINE,,gpu;nvdec;slow;status-playable,playable,2020-12-14 18:56:50,1 +3065,Adventure Llama,,status-playable,playable,2020-12-14 19:32:24,1 +3066,Minoria - 0100FAE010864000,0100FAE010864000,status-playable,playable,2022-08-06 18:50:50,3 +3067,Adventure Pinball Bundle,,slow;status-playable,playable,2020-12-14 20:31:53,1 +3068,Aery - Broken Memories - 0100087012810000,0100087012810000,status-playable,playable,2022-10-04 13:11:52,2 +3069,Fobia,,status-playable,playable,2020-12-14 21:05:23,1 +3070,Alchemic Jousts - 0100F5400AB6C000,0100F5400AB6C000,gpu;status-ingame,ingame,2022-12-08 15:06:28,2 +3071,Akash Path of the Five,,gpu;nvdec;status-ingame,ingame,2020-12-14 22:33:12,1 +3072,Witcheye,,status-playable,playable,2020-12-14 22:56:08,1 +3073,Zombie Driver,,nvdec;status-playable,playable,2020-12-14 23:15:10,1 +3074,Keen: One Girl Army,,status-playable,playable,2020-12-14 23:19:52,1 +3075,AFL Evolution 2 - 01001B400D334000,01001B400D334000,slow;status-playable;online-broken;UE4,playable,2022-12-07 12:45:56,2 +3076,Elden: Path of the Forgotten,,status-playable,playable,2020-12-15 0:33:19,1 +3077,Desire remaster ver.,,crash;status-boots,boots,2021-01-17 2:34:37,4 +3078,Alluris - 0100AC501122A000,0100AC501122A000,gpu;status-ingame;UE4,ingame,2023-08-02 23:13:50,2 +3079,Almightree the Last Dreamer,,slow;status-playable,playable,2020-12-15 13:59:03,1 +3080,Windscape - 010059900BA3C000,010059900BA3C000,status-playable,playable,2022-10-21 11:49:42,2 +3082,Warp Shift,,nvdec;status-playable,playable,2020-12-15 14:48:48,1 +3083,Alphaset by POWGI,,status-playable,playable,2020-12-15 15:15:15,1 +3084,Storm Boy - 010040D00BCF4000,010040D00BCF4000,status-playable,playable,2022-10-20 14:15:06,2 +3085,Fire & Water,,status-playable,playable,2020-12-15 15:43:20,1 +3086,Animated Jigsaws Collection,,nvdec;status-playable,playable,2020-12-15 15:58:34,1 +3087,More Dark,,status-playable,playable,2020-12-15 16:01:06,1 +3088,Clea,,crash;status-ingame,ingame,2020-12-15 16:22:56,1 +3089,Animal Fun for Toddlers and Kids,,services;status-boots,boots,2020-12-15 16:45:29,1 +3090,Brick Breaker,,crash;status-ingame,ingame,2020-12-15 17:03:59,1 +3091,Anode,,status-playable,playable,2020-12-15 17:18:58,1 +3092,Animal Pairs - Matching & Concentration Game for Toddlers & Kids - 010033C0121DC000,010033C0121DC000,services;status-boots,boots,2021-11-29 23:43:14,2 +3093,Animals for Toddlers,,services;status-boots,boots,2020-12-15 17:27:27,1 +3094,Stellar Interface - 01005A700C954000,01005A700C954000,status-playable,playable,2022-10-20 13:44:33,2 +3095,Anime Studio Story,,status-playable,playable,2020-12-15 18:14:05,1 +3096,Brick Breaker,,nvdec;online;status-playable,playable,2020-12-15 18:26:23,1 +3097,Anti-Hero Bundle - 0100596011E20000,0100596011E20000,status-playable;nvdec,playable,2022-10-21 20:10:30,2 +3098,Alt-Frequencies,,status-playable,playable,2020-12-15 19:01:33,1 +3099,Tanuki Justice - 01007A601318C000,01007A601318C000,status-playable;opengl,playable,2023-02-21 18:28:10,5 +3100,Norman's Great Illusion,,status-playable,playable,2020-12-15 19:28:24,1 +3101,Welcome to Primrose Lake - 0100D7F010B94000,0100D7F010B94000,status-playable,playable,2022-10-21 11:30:57,2 +3102,Dream,,status-playable,playable,2020-12-15 19:55:07,1 +3103,Lofi Ping Pong,,crash;status-ingame,ingame,2020-12-15 20:09:22,1 +3104,Antventor,,nvdec;status-playable,playable,2020-12-15 20:09:27,1 +3105,Space Pioneer - 010047B010260000,010047B010260000,status-playable,playable,2022-10-20 12:24:37,2 +3106,Death and Taxes,,status-playable,playable,2020-12-15 20:27:49,1 +3107,Deleveled,,slow;status-playable,playable,2020-12-15 21:02:29,1 +3108,Jenny LeClue - Detectivu,,crash;status-nothing,nothing,2020-12-15 21:07:07,1 +3109,Biz Builder Delux,,slow;status-playable,playable,2020-12-15 21:36:25,1 +3110,Creepy Tale,,status-playable,playable,2020-12-15 21:58:03,1 +3111,Among Us - 0100B0C013912000,0100B0C013912000,status-menus;online;ldn-broken,menus,2021-09-22 15:20:17,12 +3112,Spinch - 010076D0122A8000,010076D0122A8000,status-playable,playable,2024-07-12 19:02:10,2 +3113,Carto - 0100810012A1A000,0100810012A1A000,status-playable,playable,2022-09-04 15:37:06,2 +3114,Laraan,,status-playable,playable,2020-12-16 12:45:48,1 +3116,Spider Solitaire,,status-playable,playable,2020-12-16 16:19:30,1 +3117,Sin Slayers - 01006FE010438000,01006FE010438000,status-playable,playable,2022-10-20 11:53:52,2 +3118,AO Tennis 2 - 010047000E9AA000,010047000E9AA000,status-playable;online-broken,playable,2022-09-17 12:05:07,2 +3119,Area 86,,status-playable,playable,2020-12-16 16:45:52,1 +3120,Art Sqool - 01006AA013086000,01006AA013086000,status-playable;nvdec,playable,2022-10-16 20:42:37,2 +3121,Utopia 9 - A Volatile Vacation,,nvdec;status-playable,playable,2020-12-16 17:06:42,1 +3122,Arrog,,status-playable,playable,2020-12-16 17:20:50,1 +3123,Warlocks 2: God Slayers,,status-playable,playable,2020-12-16 17:36:50,1 +3124,Artifact Adventure Gaiden DX,,status-playable,playable,2020-12-16 17:49:25,1 +3125,Asemblance,,UE4;gpu;status-ingame,ingame,2020-12-16 18:01:23,1 +3126,Death Tales,,status-playable,playable,2020-12-17 10:55:52,2 +3127,Asphalt 9: Legends - 01007B000C834000,01007B000C834000,services;status-menus;crash;online-broken,menus,2022-12-07 13:28:29,4 +3128,Barbarous! Tavern of Emyr - 01003350102E2000,01003350102E2000,status-playable,playable,2022-10-16 21:50:24,2 +3129,Baila Latino - 010076B011EC8000,010076B011EC8000,status-playable,playable,2021-04-14 16:40:24,2 +3130,Unit 4,,status-playable,playable,2020-12-16 18:54:13,1 +3131,Ponpu,,status-playable,playable,2020-12-16 19:09:34,1 +3132,ATOM RPG - 0100B9400FA38000,0100B9400FA38000,status-playable;nvdec,playable,2022-10-22 10:11:48,2 +3133,Automachef,,status-playable,playable,2020-12-16 19:51:25,1 +3134,Croc's World 2,,status-playable,playable,2020-12-16 20:01:40,1 +3135,Ego Protocol,,nvdec;status-playable,playable,2020-12-16 20:16:35,1 +3136,Azure Reflections - 01006FB00990E000,01006FB00990E000,nvdec;online;status-playable,playable,2021-04-08 13:18:25,3 +3137,Back to Bed,,nvdec;status-playable,playable,2020-12-16 20:52:04,1 +3138,Azurebreak Heroes,,status-playable,playable,2020-12-16 21:26:17,1 +3139,Marooners - 010044600FDF0000,010044600FDF0000,status-playable;nvdec;online-broken,playable,2022-10-18 21:35:26,2 +3140,BaconMan - 0100EAF00E32E000,0100EAF00E32E000,status-menus;crash;nvdec,menus,2021-11-20 2:36:21,2 +3141,Peaky Blinders: Mastermind - 010002100CDCC000,010002100CDCC000,status-playable,playable,2022-10-19 16:56:35,2 +3142,Crash Drive 2,,online;status-playable,playable,2020-12-17 2:45:46,1 +3143,Blood will be Spilled,,nvdec;status-playable,playable,2020-12-17 3:02:03,1 +3144,Nefarious,,status-playable,playable,2020-12-17 3:20:33,1 +3145,Blacksea Odyssey - 01006B400C178000,01006B400C178000,status-playable;nvdec,playable,2022-10-16 22:14:34,2 +3146,Baobabs Mausoleum Ep2: 1313 Barnabas Dead Ends Drive,,status-playable,playable,2020-12-17 11:22:50,1 +3147,Life of Boris: Super Slav,,status-ingame,ingame,2020-12-17 11:40:05,1 +3148,Baobabs Mausoleum Ep.3: Un Pato en Muertoburgo,,nvdec;status-playable,playable,2020-12-17 11:43:10,1 +3149,Baron: Fur Is Gonna Fly - 010039C0106C6000,010039C0106C6000,status-boots;crash,boots,2022-02-06 2:05:43,3 +3150,Deployment - 01000BF00B6BC000,01000BF00B6BC000,slow;status-playable;online-broken,playable,2022-10-17 16:23:59,2 +3151,PixelJunk Eden 2,,crash;status-ingame,ingame,2020-12-17 11:55:52,1 +3152,Batbarian: Testament of the Primordials,,status-playable,playable,2020-12-17 12:00:59,1 +3153,Abyss of The Sacrifice - 010047F012BE2000,010047F012BE2000,status-playable;nvdec,playable,2022-10-21 13:56:28,2 +3154,Nightmares from the Deep 2: The Siren's Call - 01006E700B702000,01006E700B702000,status-playable;nvdec,playable,2022-10-19 10:58:53,2 +3155,Vera Blanc: Full Moon,,audio;status-playable,playable,2020-12-17 12:09:30,1 +3156,Linelight,,status-playable,playable,2020-12-17 12:18:07,1 +3157,Battle Hunters - 0100A3B011EDE000,0100A3B011EDE000,gpu;status-ingame,ingame,2022-11-12 9:19:17,2 +3159,Day and Night,,status-playable,playable,2020-12-17 12:30:51,1 +3160,Zombie's Cool,,status-playable,playable,2020-12-17 12:41:26,1 +3161,Battle of Kings,,slow;status-playable,playable,2020-12-17 12:45:23,1 +3162,Ghostrunner,,UE4;crash;gpu;nvdec;status-ingame,ingame,2020-12-17 13:01:59,1 +3163,Battleground - 0100650010DD4000,0100650010DD4000,status-ingame;crash,ingame,2021-09-06 11:53:23,2 +3164,Little Racer - 0100E6D00E81C000,0100E6D00E81C000,status-playable,playable,2022-10-18 16:41:13,2 +3165,Battle Planet - Judgement Day,,status-playable,playable,2020-12-17 14:06:20,1 +3166,Dokuro,,nvdec;status-playable,playable,2020-12-17 14:47:09,1 +3167,Reflection of Mine,,audio;status-playable,playable,2020-12-17 15:06:37,1 +3168,Foregone,,deadlock;status-ingame,ingame,2020-12-17 15:26:53,1 +3169,Choices That Matter: And The Sun Went Out,,status-playable,playable,2020-12-17 15:44:08,1 +3170,BATTLLOON,,status-playable,playable,2020-12-17 15:48:23,1 +3171,Grim Legends: The Forsaken Bride - 010009F011F90000,010009F011F90000,status-playable;nvdec,playable,2022-10-18 13:14:06,3 +3172,Glitch's Trip,,status-playable,playable,2020-12-17 16:00:57,1 +3173,Maze,,status-playable,playable,2020-12-17 16:13:58,1 +3174,Bayonetta - 010076F0049A2000,010076F0049A2000,status-playable;audout,playable,2022-11-20 15:51:59,6 +3176,Gnome More War,,status-playable,playable,2020-12-17 16:33:07,1 +3177,Fin and the Ancient Mystery,,nvdec;status-playable,playable,2020-12-17 16:40:39,1 +3178,Nubarron: The adventure of an unlucky gnome,,status-playable,playable,2020-12-17 16:45:17,1 +3179,Survive! Mr. Cube - 010029A00AEB0000,010029A00AEB0000,status-playable,playable,2022-10-20 14:44:47,2 +3180,Saboteur SiO,,slow;status-ingame,ingame,2020-12-17 16:59:49,1 +3181,Flowlines VS,,status-playable,playable,2020-12-17 17:01:53,1 +3182,Beat Me! - 01002D20129FC000,01002D20129FC000,status-playable;online-broken,playable,2022-10-16 21:59:26,2 +3183,YesterMorrow,,crash;status-ingame,ingame,2020-12-17 17:15:25,1 +3184,Drums,,status-playable,playable,2020-12-17 17:21:51,1 +3185,Gnomes Garden: Lost King - 010036C00D0D6000,010036C00D0D6000,deadlock;status-menus,menus,2021-11-18 11:14:03,2 +3186,Edna & Harvey: Harvey's New Eyes - 0100ABE00DB4E000,0100ABE00DB4E000,nvdec;status-playable,playable,2021-01-26 14:36:08,2 +3187,Roarr! - 010068200C5BE000,010068200C5BE000,status-playable,playable,2022-10-19 23:57:45,2 +3188,PHOGS!,,online;status-playable,playable,2021-01-18 15:18:37,2 +3189,Idle Champions of the Forgotten Realms,,online;status-boots,boots,2020-12-17 18:24:57,1 +3190,Polyroll - 010074B00ED32000,010074B00ED32000,gpu;status-boots,boots,2021-07-01 16:16:50,3 +3191,Control Ultimate Edition - Cloud Version - 0100041013360000,0100041013360000,Needs Update;crash;services;status-nothing,nothing,2021-04-18 22:34:06,2 +3192,Wilmot's Warehouse - 010071F00D65A000,010071F00D65A000,audio;gpu;status-ingame,ingame,2021-06-02 17:24:32,3 +3193,Jack N' Jill DX,,,,2020-12-18 2:27:22,1 +3194,Izneo - 0100D8E00C874000,0100D8E00C874000,status-menus;online-broken,menus,2022-08-06 15:56:23,2 +3195,Dicey Dungeons - 0100BBF011394000,0100BBF011394000,gpu;audio;slow;status-ingame,ingame,2023-08-02 20:30:12,2 +3196,Rabbids Adventure Party Demo / 疯狂兔子:奇遇派对 - 试玩版,,,,2020-12-18 5:53:35,1 +3197,Venture Kid - 010095B00DBC8000,010095B00DBC8000,crash;gpu;status-ingame,ingame,2021-04-18 16:33:17,2 +3199,Death Coming - 0100F3B00CF32000,0100F3B00CF32000,status-nothing;crash,nothing,2022-02-06 7:43:03,2 +3200,OlliOlli: Switch Stance - 0100E0200B980000,0100E0200B980000,gpu;status-boots,boots,2024-04-25 8:36:37,3 +3201,Cybxus Heart - 01006B9013672000,01006B9013672000,gpu;slow;status-ingame,ingame,2022-01-15 5:00:49,2 +3202,Gensou Rougoku no Kaleidscope - 0100AC600EB4C000,0100AC600EB4C000,status-menus;crash,menus,2021-11-24 8:45:07,2 +3203,Witch Spring 3 Re:Fine -The Story of the Marionette Witch Eirudy- - 0100454012E32000,0100454012E32000,status-ingame;crash,ingame,2021-08-08 11:56:18,3 +3204,Hulu - 0100A66003384000,0100A66003384000,status-boots;online-broken,boots,2022-12-09 10:05:00,3 +3205,Strife: Veteran Edition - 0100BDE012928000,0100BDE012928000,gpu;status-ingame,ingame,2022-01-15 5:10:42,2 +3209,Peasant Knight,,status-playable,playable,2020-12-22 9:30:50,2 +3210,Double Dragon Neon - 01005B10132B2000,01005B10132B2000,gpu;audio;status-ingame;32-bit,ingame,2022-09-20 18:00:20,2 +3211,Nekopara Vol.4,,crash;status-ingame,ingame,2021-01-17 1:47:18,2 +3212,Super Meat Boy Forever - 01009C200D60E000,01009C200D60E000,gpu;status-boots,boots,2021-04-26 14:25:39,2 +3213,Gems of Magic: Lost Family,,,,2020-12-24 15:33:57,1 +3214,Wagamama High Spec,,,,2020-12-25 9:02:51,1 +3215,BIT.TRIP RUNNER - 0100E62012D3C000,0100E62012D3C000,status-playable,playable,2022-10-17 14:23:24,3 +3216,BIT.TRIP VOID - 01000AD012D3A000,01000AD012D3A000,status-playable,playable,2022-10-17 14:31:23,2 +3217,Dark Arcana: The Carnival - 01003D301357A000,01003D301357A000,gpu;slow;status-ingame,ingame,2022-02-19 8:52:28,2 +3218,Food Girls,,,,2020-12-27 14:48:48,1 +3219,Override 2 Super Mech League - 0100647012F62000,0100647012F62000,status-playable;online-broken;UE4,playable,2022-10-19 15:56:04,4 +3220,Unto The End - 0100E49013190000,0100E49013190000,gpu;status-ingame,ingame,2022-10-21 11:13:29,2 +3221,Outbreak: Lost Hope - 0100D9F013102000,0100D9F013102000,crash;status-boots,boots,2021-04-26 18:01:23,2 +3222,Croc's World 3,,status-playable,playable,2020-12-30 18:53:26,1 +3223,COLLECTION of SaGA FINAL FANTASY LEGEND,,status-playable,playable,2020-12-30 19:11:16,1 +3224,The Adventures of 00 Dilly,,status-playable,playable,2020-12-30 19:32:29,1 +3225,Funimation - 01008E10130F8000,01008E10130F8000,gpu;status-boots,boots,2021-04-08 13:08:17,3 +3227,Aleste Collection,,,,2021-01-01 11:30:59,1 +3228,Trail Boss BMX,,,,2021-01-01 16:51:27,1 +3229,DEEMO -Reborn- - 01008B10132A2000,01008B10132A2000,status-playable;nvdec;online-broken,playable,2022-10-17 15:18:11,2 +3232,Catherine Full Body - 0100BF00112C0000,0100BF00112C0000,status-playable;nvdec,playable,2023-04-02 11:00:37,14 +3233,Hell Sports,,,,2021-01-03 15:40:25,1 +3234,Traditional Tactics Ne+,,,,2021-01-03 15:40:29,1 +3235,Earth Defense Force World Brothers ( ま~るい地球が四角くなった!? デジボク地球防衛軍 ) - 0100B9E012992000,0100B9E012992000,status-playable;UE4,playable,2022-12-07 12:59:16,3 +3236,The House of Da Vinci,,status-playable,playable,2021-01-05 14:17:19,2 +3237,Monster Sanctuary,,crash;status-ingame,ingame,2021-04-04 5:06:41,2 +3239,Monster Hunter Rise Demo - 010093A01305C000,010093A01305C000,status-playable;online-broken;ldn-works;demo,playable,2022-10-18 23:04:17,15 +3244,InnerSpace,,status-playable,playable,2021-01-13 19:36:14,1 +3245,Scott Pilgrim vs The World: The Game - 0100394011C30000,0100394011C30000,services-horizon;status-nothing;crash,nothing,2024-07-12 8:13:03,11 +3246,Fantasy Tavern Sextet -Vol.2 Adventurer's Days-,,gpu;slow;status-ingame;crash,ingame,2021-11-06 2:57:29,2 +3247,Monster Hunter XX Nintendo Switch Ver ( Double Cross ) - 0100C3800049C000,0100C3800049C000,status-playable,playable,2024-07-21 14:08:09,7 +3248,Football Manager 2021 Touch - 01007CF013152000,01007CF013152000,gpu;status-ingame,ingame,2022-10-17 20:08:23,3 +3249,Eyes: The Horror Game - 0100EFE00A3C2000,0100EFE00A3C2000,status-playable,playable,2021-01-20 21:59:46,1 +3250,Evolution Board Game - 01006A800FA22000,01006A800FA22000,online;status-playable,playable,2021-01-20 22:37:56,1 +3251,PBA Pro Bowling 2021 - 0100F95013772000,0100F95013772000,status-playable;online-broken;UE4,playable,2022-10-19 16:46:40,2 +3252,Body of Evidence - 0100721013510000,0100721013510000,status-playable,playable,2021-04-25 22:22:11,2 +3253,The Hong Kong Massacre,,crash;status-ingame,ingame,2021-01-21 12:06:56,1 +3254,Arkanoid vs Space Invaders,,services;status-ingame,ingame,2021-01-21 12:50:30,1 +3256,Professor Lupo: Ocean - 0100D1F0132F6000,0100D1F0132F6000,status-playable,playable,2021-04-14 16:33:33,2 +3257,My Universe - School Teacher - 01006C301199C000,01006C301199C000,nvdec;status-playable,playable,2021-01-21 16:02:52,1 +3258,FUZE Player - 010055801134E000,010055801134E000,status-ingame;online-broken;vulkan-backend-bug,ingame,2022-10-18 12:23:53,2 +3259,Defentron - 0100CDE0136E6000,0100CDE0136E6000,status-playable,playable,2022-10-17 15:47:56,2 +3260,Thief Simulator - 0100CE400E34E000,0100CE400E34E000,status-playable,playable,2023-04-22 4:39:11,3 +3261,Stardash - 01002100137BA000,01002100137BA000,status-playable,playable,2021-01-21 16:31:19,1 +3262,The Last Dead End - 0100AAD011592000,0100AAD011592000,gpu;status-ingame;UE4,ingame,2022-10-20 16:59:44,3 +3263,Buddy Mission BOND Demo [ バディミッション BOND ],,Incomplete,,2021-01-23 18:07:40,3 +3264,Disgaea 6: Defiance of Destiny Demo [ 魔界戦記ディスガイア6 ] - 01005EE013888000,01005EE013888000,gpu;status-ingame;demo,ingame,2022-12-06 15:27:59,4 +3265,Down in Bermuda,,,,2021-01-22 15:29:19,1 +3268,Blacksmith of the Sand Kingdom - 010068E013450000,010068E013450000,status-playable,playable,2022-10-16 22:37:44,3 +3269,Tennis World Tour 2 - 0100950012F66000,0100950012F66000,status-playable;online-broken,playable,2022-10-14 10:43:16,4 +3270,Shadow Gangs - 0100BE501382A000,0100BE501382A000,cpu;gpu;status-ingame;crash;regression,ingame,2024-04-29 0:07:26,15 +3271,Red Colony - 0100351013A06000,0100351013A06000,status-playable,playable,2021-01-25 20:44:41,1 +3272,Construction Simulator 3 - Console Edition - 0100A5600FAC0000,0100A5600FAC0000,status-playable,playable,2023-02-06 9:31:23,3 +3273,Speed Truck Racing - 010061F013A0E000,010061F013A0E000,status-playable,playable,2022-10-20 12:57:04,2 +3274,Arcanoid Breakout - 0100E53013E1C000,0100E53013E1C000,status-playable,playable,2021-01-25 23:28:02,1 +3275,Life of Fly - 0100B3A0135D6000,0100B3A0135D6000,status-playable,playable,2021-01-25 23:41:07,1 +3276,Little Nightmares II DEMO - 010093A0135D6000,010093A0135D6000,status-playable;UE4;demo;vulkan-backend-bug,playable,2024-05-16 18:47:20,2 +3277,Iris Fall - 0100945012168000,0100945012168000,status-playable;nvdec,playable,2022-10-18 13:40:22,2 +3278,Dirt Trackin Sprint Cars - 01004CB01378A000,01004CB01378A000,status-playable;nvdec;online-broken,playable,2022-10-17 16:34:56,2 +3279,Gal*Gun Returns [ ぎゃる☆がん りたーんず ] - 0100047013378000,0100047013378000,status-playable;nvdec,playable,2022-10-17 23:50:46,2 +3280,Disgaea 6: Defiance of Destiny [ FG ] [ 魔界戦記ディスガイア6 ] - 0100307011D80000,0100307011D80000,status-playable,playable,2021-06-08 13:20:33,3 +3281,Buddy Mission BOND [ FG ] [ バディミッション BOND ] - 0100DB300B996000,0100DB300B996000,,,2021-01-30 4:22:26,1 +3282,CONARIUM - 010015801308E000,010015801308E000,UE4;nvdec;status-playable,playable,2021-04-26 17:57:53,3 +3284,Balan Wonderworld Demo - 0100E48013A34000,0100E48013A34000,gpu;services;status-ingame;UE4;demo,ingame,2023-02-16 20:05:07,4 +3285,War Truck Simulator - 0100B6B013B8A000,0100B6B013B8A000,status-playable,playable,2021-01-31 11:22:54,1 +3286,The Last Campfire - 0100449011506000,0100449011506000,status-playable,playable,2022-10-20 16:44:19,3 +3287,Spinny's journey - 01001E40136FE000,01001E40136FE000,status-ingame;crash,ingame,2021-11-30 3:39:44,2 +3288,Sally Face - 0100BBF0122B4000,0100BBF0122B4000,status-playable,playable,2022-06-06 18:41:24,2 +3289,Otti house keeper - 01006AF013A9E000,01006AF013A9E000,status-playable,playable,2021-01-31 12:11:24,1 +3290,Neoverse Trinity Edition - 01001A20133E000,,status-playable,playable,2022-10-19 10:28:03,3 +3291,Missile Dancer - 0100CFA0138C8000,0100CFA0138C8000,status-playable,playable,2021-01-31 12:22:03,1 +3292,Grisaia Phantom Trigger 03 - 01005250123B8000,01005250123B8000,audout;status-playable,playable,2021-01-31 12:30:47,1 +3293,GRISAIA PHANTOM TRIGGER 04 -0100D970123BA000,0100D970123BA000,audout;status-playable,playable,2021-01-31 12:40:37,1 +3294,GRISAIA PHANTOM TRIGGER 05 - 01002330123BC000,01002330123BC000,audout;nvdec;status-playable,playable,2021-01-31 12:49:59,1 +3295,GRISAIA PHANTOM TRIGGER 5.5 - 0100CAF013AE6000,0100CAF013AE6000,audout;nvdec;status-playable,playable,2021-01-31 12:59:44,1 +3296,Dreamo - 0100D24013466000,0100D24013466000,status-playable;UE4,playable,2022-10-17 18:25:28,2 +3297,Dirt Bike Insanity - 0100A8A013DA4000,0100A8A013DA4000,status-playable,playable,2021-01-31 13:27:38,1 +3298,Calico - 010013A00E750000,010013A00E750000,status-playable,playable,2022-10-17 14:44:28,2 +3299,ADVERSE - 01008C901266E000,01008C901266E000,UE4;status-playable,playable,2021-04-26 14:32:51,2 +3300,All Walls Must Fall - 0100CBD012FB6000,0100CBD012FB6000,status-playable;UE4,playable,2022-10-15 19:16:30,2 +3301,Bus Driver Simulator - 010030D012FF6000,010030D012FF6000,status-playable,playable,2022-10-17 13:55:27,2 +3302,Blade II The Return of Evil - 01009CC00E224000,01009CC00E224000,audio;status-ingame;crash;UE4,ingame,2021-11-14 2:49:59,5 +3303,Ziggy The Chaser - 0100D7B013DD0000,0100D7B013DD0000,status-playable,playable,2021-02-04 20:34:27,1 +3304,Colossus Down - 0100E2F0128B4000,0100E2F0128B4000,status-playable,playable,2021-02-04 20:49:50,1 +3305,Turrican Flashback - 01004B0130C8000,,status-playable;audout,playable,2021-08-30 10:07:56,2 +3306,Ubongo - Deluxe Edition,,status-playable,playable,2021-02-04 21:15:01,1 +3307,Märchen Forest - 0100B201D5E000,,status-playable,playable,2021-02-04 21:33:34,1 +3308,Re:ZERO -Starting Life in Another World- The Prophecy of the Throne,,gpu;status-boots;crash;nvdec;vulkan,boots,2023-03-07 21:27:24,8 +3309,Tracks - Toybox Edition - 0100192010F5A000,0100192010F5A000,UE4;crash;status-nothing,nothing,2021-02-08 15:19:18,1 +3310,TOHU - 0100B5E011920000,0100B5E011920000,slow;status-playable,playable,2021-02-08 15:40:44,1 +3311,Redout: Space Assault - 0100326010B98000,0100326010B98000,status-playable;UE4,playable,2022-10-19 23:04:35,2 +3312,Gods Will Fall - 0100CFA0111C8000,0100CFA0111C8000,status-playable,playable,2021-02-08 16:49:59,1 +3313,Cyber Shadow - 0100C1F0141AA000,0100C1F0141AA000,status-playable,playable,2022-07-17 5:37:41,4 +3314,Atelier Ryza 2: Lost Legends & the Secret Fairy - 01009A9012022000,01009A9012022000,status-playable,playable,2022-10-16 21:06:06,2 +3315,Heaven's Vault - 0100FD901000C000,0100FD901000C000,crash;status-ingame,ingame,2021-02-08 18:22:01,1 +3316,Contraptions - 01007D701298A000,01007D701298A000,status-playable,playable,2021-02-08 18:40:50,1 +3317,My Universe - Pet Clinic Cats & Dogs - 0100CD5011A02000,0100CD5011A02000,status-boots;crash;nvdec,boots,2022-02-06 2:05:53,3 +3318,Citizens Unite!: Earth x Space - 0100D9C012900000,0100D9C012900000,gpu;status-ingame,ingame,2023-10-22 6:44:19,4 +3319,Blue Fire - 010073B010F6E000,010073B010F6E000,status-playable;UE4,playable,2022-10-22 14:46:11,2 +3320,Shakes on a Plane - 01008DA012EC0000,01008DA012EC0000,status-menus;crash,menus,2021-11-25 8:52:25,3 +3321,Glyph - 0100EB501130E000,0100EB501130E000,status-playable,playable,2021-02-08 19:56:51,1 +3322,Flying Hero X - 0100419013A8A000,0100419013A8A000,status-menus;crash,menus,2021-11-17 7:46:58,2 +3323,Disjunction - 01000B70122A2000,01000B70122A2000,gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug,ingame,2024-04-28 23:55:24,8 +3324,Grey Skies: A War of the Worlds Story - 0100DA7013792000,0100DA7013792000,status-playable;UE4,playable,2022-10-24 11:13:59,2 +3325,"#womenUp, Super Puzzles Dream Demo - 0100D87012A14000",0100D87012A14000,nvdec;status-playable,playable,2021-02-09 0:03:31,1 +3326,n Verlore Verstand - Demo - 01009A500E3DA000,01009A500E3DA000,status-playable,playable,2021-02-09 0:13:32,1 +3327,10 Second Run RETURNS Demo - 0100DC000A472000,0100DC000A472000,gpu;status-ingame,ingame,2021-02-09 0:17:18,1 +3328,16-Bit Soccer Demo - 0100B94013D28000,0100B94013D28000,status-playable,playable,2021-02-09 0:23:07,1 +3329,1993 Shenandoah Demo - 0100148012550000,0100148012550000,status-playable,playable,2021-02-09 0:43:43,1 +3330,9 Monkeys of Shaolin Demo - 0100C5F012E3E000,0100C5F012E3E000,UE4;gpu;nvdec;status-ingame,ingame,2021-02-09 1:03:30,1 +3331,99Vidas Demo - 010023500C2F0000,010023500C2F0000,status-playable,playable,2021-02-09 12:51:31,1 +3332,A Duel Hand Disaster Trackher: DEMO - 0100582012B90000,0100582012B90000,crash;demo;nvdec;status-ingame,ingame,2021-03-24 18:45:27,2 +3333,Aces of the Luftwaffe Squadron Demo - 010054300D822000,010054300D822000,nvdec;status-playable,playable,2021-02-09 13:12:28,1 +3334,Active Neurons 2 Demo - 010031C0122B0000,010031C0122B0000,status-playable,playable,2021-02-09 13:40:21,1 +3335,Adventures of Chris Demo - 0100A0A0136E8000,0100A0A0136E8000,status-playable,playable,2021-02-09 13:49:21,1 +3336,Aegis Defenders Demo - 010064500AF72000,010064500AF72000,status-playable,playable,2021-02-09 14:04:17,1 +3337,Aeolis Tournament Demo - 01006710122CE000,01006710122CE000,nvdec;status-playable,playable,2021-02-09 14:22:30,1 +3338,AeternoBlade Demo Version - 0100B1C00949A000,0100B1C00949A000,nvdec;status-playable,playable,2021-02-09 14:39:26,1 +3339,AeternoBlade II Demo Version,,gpu;nvdec;status-ingame,ingame,2021-02-09 15:10:19,1 +3340,Agent A: A puzzle in disguise (Demo) - 01008E8012C02000,01008E8012C02000,status-playable,playable,2021-02-09 18:30:41,1 +3341,Airfield Mania Demo - 010010A00DB72000,010010A00DB72000,services;status-boots;demo,boots,2022-04-10 3:43:02,2 +3342,Alder's Blood Prologue - 01004510110C4000,01004510110C4000,crash;status-ingame,ingame,2021-02-09 19:03:03,1 +3343,AI: The Somnium Files Demo - 0100C1700FB34000,0100C1700FB34000,nvdec;status-playable,playable,2021-02-10 12:52:33,1 +3344,Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz Trial version - 0100A8A00D27E000,0100A8A00D27E000,status-playable,playable,2021-02-10 13:33:59,1 +3345,Animated Jigsaws: Beautiful Japanese Scenery DEMO - 0100A1900B5B8000,0100A1900B5B8000,nvdec;status-playable,playable,2021-02-10 13:49:56,1 +3346,APE OUT DEMO - 010054500E6D4000,010054500E6D4000,status-playable,playable,2021-02-10 14:33:06,1 +3347,Anime Studio Story Demo - 01002B300EB86000,01002B300EB86000,status-playable,playable,2021-02-10 14:50:39,1 +3348,Aperion Cyberstorm Demo - 01008CA00D71C000,01008CA00D71C000,status-playable,playable,2021-02-10 15:53:21,1 +3350,ARMS Demo,,status-playable,playable,2021-02-10 16:30:13,1 +3351,Art of Balance DEMO - 010062F00CAE2000,010062F00CAE2000,gpu;slow;status-ingame,ingame,2021-02-10 17:17:12,1 +3352,Assault on Metaltron Demo - 0100C5E00E540000,0100C5E00E540000,status-playable,playable,2021-02-10 19:48:06,1 +3353,Automachef Demo - 01006B700EA6A000,01006B700EA6A000,status-playable,playable,2021-02-10 20:35:37,1 +3354,AVICII Invector Demo - 0100E100128BA000,0100E100128BA000,status-playable,playable,2021-02-10 21:04:58,1 +3355,Awesome Pea (Demo) - 010023800D3F2000,010023800D3F2000,status-playable,playable,2021-02-10 21:48:21,1 +3356,Awesome Pea 2 (Demo) - 0100D2011E28000,,crash;status-nothing,nothing,2021-02-10 22:08:27,1 +3357,Ayakashi koi gikyoku Free Trial - 010075400DEC6000,010075400DEC6000,status-playable,playable,2021-02-10 22:22:11,1 +3358,Bad North Demo,,status-playable,playable,2021-02-10 22:48:38,1 +3359,Baobabs Mausoleum: DEMO - 0100D3000AEC2000,0100D3000AEC2000,status-playable,playable,2021-02-10 22:59:25,1 +3360,Battle Chef Brigade Demo - 0100DBB00CAEE000,0100DBB00CAEE000,status-playable,playable,2021-02-10 23:15:07,1 +3361,Mercenaries Blaze Dawn of the Twin Dragons - 0100a790133fc000,0100a790133fc000,,,2021-02-11 18:43:00,1 +3362,Fallen Legion Revenants Demo - 0100cac013776000,0100cac013776000,,,2021-02-11 18:43:06,1 +3363,Bear With Me - The Lost Robots Demo - 010024200E97E800,010024200E97E800,nvdec;status-playable,playable,2021-02-12 22:38:12,1 +3364,Birds and Blocks Demo - 0100B6B012FF4000,0100B6B012FF4000,services;status-boots;demo,boots,2022-04-10 4:53:03,2 +3365,Black Hole Demo - 01004BE00A682000,01004BE00A682000,status-playable,playable,2021-02-12 23:02:17,1 +3366,Blasphemous Demo - 0100302010338000,0100302010338000,status-playable,playable,2021-02-12 23:49:56,1 +3367,Blaster Master Zero DEMO - 010025B002E92000,010025B002E92000,status-playable,playable,2021-02-12 23:59:06,1 +3368,Bleep Bloop DEMO - 010091700EA2A000,010091700EA2A000,nvdec;status-playable,playable,2021-02-13 0:20:53,1 +3369,Block-a-Pix Deluxe Demo - 0100E1C00DB6C000,0100E1C00DB6C000,status-playable,playable,2021-02-13 0:37:39,1 +3370,Get Over Here - 0100B5B00E77C000,0100B5B00E77C000,status-playable,playable,2022-10-28 11:53:52,3 +3371,Unspottable - 0100B410138C0000,0100B410138C0000,status-playable,playable,2022-10-25 19:28:49,2 +3373,Blossom Tales Demo - 01000EB01023E000,01000EB01023E000,status-playable,playable,2021-02-13 14:22:53,1 +3374,Boomerang Fu Demo Version - 010069F0135C4000,010069F0135C4000,demo;status-playable,playable,2021-02-13 14:38:13,1 +3375,Bot Vice Demo - 010069B00EAC8000,010069B00EAC8000,crash;demo;status-ingame,ingame,2021-02-13 14:52:42,1 +3376,BOXBOY! + BOXGIRL! Demo - 0100B7200E02E000,0100B7200E02E000,demo;status-playable,playable,2021-02-13 14:59:08,1 +3377,Super Mario 3D World + Bowser's Fury - 010028600EBDA000,010028600EBDA000,status-playable;ldn-works,playable,2024-07-31 10:45:37,38 +3378,Brawlout Demo - 0100C1B00E1CA000,0100C1B00E1CA000,demo;status-playable,playable,2021-02-13 22:46:53,1 +3379,Brigandine: The Legend of Runersia Demo - 0100703011258000,0100703011258000,status-playable,playable,2021-02-14 14:44:10,1 +3380,Brotherhood United Demo - 0100F19011226000,0100F19011226000,demo;status-playable,playable,2021-02-14 21:10:57,1 +3381,Bucket Knight demo - 0100F1B010A90000,0100F1B010A90000,demo;status-playable,playable,2021-02-14 21:23:09,1 +3382,BurgerTime Party! Demo - 01005780106E8000,01005780106E8000,demo;status-playable,playable,2021-02-14 21:34:16,1 +3383,Cadence of Hyrule Crypt of the NecroDancer Featuring The Legend of Zelda Demo - 010065700EE0600,,demo;gpu;nvdec;status-ingame,ingame,2021-02-14 21:48:15,1 +3384,Cafeteria Nipponica Demo - 010060400D21C000,010060400D21C000,demo;status-playable,playable,2021-02-14 22:11:35,1 +3385,Cake Bash Demo - 0100699012F82000,0100699012F82000,crash;demo;status-ingame,ingame,2021-02-14 22:21:15,1 +3386,Captain Toad: Treasure Tracker Demo - 01002C400B6B6000,01002C400B6B6000,32-bit;demo;status-playable,playable,2021-02-14 22:36:09,1 +3387,CAPTAIN TSUBASA: RISE OF NEW CHAMPIONS DEMO VERSION - 01002320137CC000,01002320137CC000,slow;status-playable,playable,2021-02-14 22:45:35,1 +3388,Castle Crashers Remastered Demo - 0100F6D01060E000,0100F6D01060E000,gpu;status-boots;demo,boots,2022-04-10 10:57:10,2 +3389,Cat Quest II Demo - 0100E86010220000,0100E86010220000,demo;status-playable,playable,2021-02-15 14:11:57,1 +3390,Caveman Warriors Demo,,demo;status-playable,playable,2021-02-15 14:44:08,1 +3391,Chickens Madness DEMO - 0100CAC011C3A000,0100CAC011C3A000,UE4;demo;gpu;nvdec;status-ingame,ingame,2021-02-15 15:02:10,1 +3392,Little Nightmares II - 010097100EDD6000,010097100EDD6000,status-playable;UE4,playable,2023-02-10 18:24:44,4 +3393,Rhythm Fighter - 0100729012D18000,0100729012D18000,crash;status-nothing,nothing,2021-02-16 18:51:30,2 +3394,大図書館の羊飼い -Library Party-01006de00a686000,01006de00a686000,,,2021-02-16 7:20:19,2 +3395,Timothy and the Mysterious Forest - 0100393013A10000,0100393013A10000,gpu;slow;status-ingame,ingame,2021-06-02 0:42:11,2 +3396,Pixel Game Maker Series Werewolf Princess Kaguya - 0100859013CE6000,0100859013CE6000,crash;services;status-nothing,nothing,2021-03-26 0:23:07,2 +3397,D.C.4 ~ダ・カーポ4~-0100D8500EE14000,0100D8500EE14000,,,2021-02-17 8:46:35,1 +3398,Yo kai watch 1 for Nintendo Switch - 0100C0000CEEA000,0100C0000CEEA000,gpu;status-ingame;opengl,ingame,2024-05-28 11:11:49,21 +3399,Project TRIANGLE STRATEGY Debut Demo - 01002980140F6000,01002980140F6000,status-playable;UE4;demo,playable,2022-10-24 21:40:27,4 +3400,SNK VS. CAPCOM: THE MATCH OF THE MILLENNIUM - 010027D0137E0000,010027D0137E0000,,,2021-02-19 12:35:20,2 +3401,Super Soccer Blast - 0100D61012270000,0100D61012270000,gpu;status-ingame,ingame,2022-02-16 8:39:12,2 +3404,VOEZ (Japan Version) - 0100A7F002830000,0100A7F002830000,,,2021-02-19 15:07:49,1 +3405,Dungreed - 010045B00C496000,010045B00C496000,,,2021-02-19 16:18:07,1 +3406,Capcom Arcade Stadium - 01001E0013208000,01001E0013208000,status-playable,playable,2021-03-17 5:45:14,2 +3408,Urban Street Fighting - 010054F014016000,010054F014016000,status-playable,playable,2021-02-20 19:16:36,1 +3409,The Long Dark - 01007A700A87C000,01007A700A87C000,status-playable,playable,2021-02-21 14:19:52,1 +3410,Rebel Galaxy: Outlaw - 0100CAA01084A000,0100CAA01084A000,status-playable;nvdec,playable,2022-12-01 7:44:56,3 +3411,Persona 5: Strikers (US) - 0100801011C3E000,0100801011C3E000,status-playable;nvdec;mac-bug,playable,2023-09-26 9:36:01,16 +3412,Steven Universe Unleash the Light,,,,2021-02-25 2:33:05,1 +3413,Ghosts 'n Goblins Resurrection - 0100D6200F2BA000,0100D6200F2BA000,status-playable,playable,2023-05-09 12:40:41,5 +3414,Taxi Chaos - 0100B76011DAA000,0100B76011DAA000,slow;status-playable;online-broken;UE4,playable,2022-10-25 19:13:00,4 +3415,COTTOn Reboot! [ コットン リブート! ] - 01003DD00F94A000,01003DD00F94A000,status-playable,playable,2022-05-24 16:29:24,6 +3416,STORY OF SEASONS Pioneers of Olive [ 牧場物語 オリーブタウンと希望の大地 ] - 010017301007E000,010017301007E000,status-playable,playable,2021-03-18 11:42:19,3 +3417,Bravely Default II - 01006DC010326000,01006DC010326000,gpu;status-ingame;crash;Needs Update;UE4,ingame,2024-04-26 6:11:26,23 +3418,Forward To The Sky - 0100DBA011136000,0100DBA011136000,,,2021-02-27 12:11:42,1 +3419,Just Dance 2019,,gpu;online;status-ingame,ingame,2021-02-27 17:21:27,2 +3423,Harvest Moon One World - 010016B010FDE00,,status-playable,playable,2023-05-26 9:17:19,2 +3424,Just Dance 2017 - 0100BCE000598000,0100BCE000598000,online;status-playable,playable,2021-03-05 9:46:01,2 +3425,コープスパーティー ブラッドカバー リピーティッドフィアー (Corpse Party Blood Covered: Repeated Fear) - 0100965012E22000,0100965012E22000,,,2021-03-05 9:47:52,1 +3426,Sea of Solitude The Director's Cut - 0100AFE012BA2000,0100AFE012BA2000,gpu;status-ingame,ingame,2024-07-12 18:29:29,14 +3431,Just Dance 2018 - 0100A0500348A000,0100A0500348A000,,,2021-03-13 8:09:14,1 +3434,Crash Bandicoot 4: It's About Time - 010073401175E000,010073401175E000,status-playable;nvdec;UE4,playable,2024-03-17 7:13:45,5 +3435,Bloody Bunny : The Game - 0100E510143EC000,0100E510143EC000,status-playable;nvdec;UE4,playable,2022-10-22 13:18:55,2 +3437,Plants vs. Zombies: Battle for Neighborville Complete Edition - 0100C56010FD8000,0100C56010FD8000,gpu;audio;status-boots;crash,boots,2024-09-02 12:58:14,11 +3438,Cathedral - 0100BEB01327A000,0100BEB01327A000,,,2021-03-19 22:12:46,1 +3439,Night Vision - 0100C3801458A000,0100C3801458A000,,,2021-03-19 22:20:53,1 +3440,Stubbs the Zombie in Rebel Without a Pulse - 0100964012528000,0100964012528000,,,2021-03-19 22:56:50,1 +3443,Hitman 3 - Cloud Version - 01004990132AC000,01004990132AC000,Needs Update;crash;services;status-nothing,nothing,2021-04-18 22:35:07,2 +3444,Speed Limit - 01000540139F6000,01000540139F6000,gpu;status-ingame,ingame,2022-09-02 18:37:40,2 +3445,Dig Dog - 0100A5A00DBB0000,0100A5A00DBB0000,gpu;status-ingame,ingame,2021-06-02 17:17:51,2 +3446,Renzo Racer - 01007CC0130C6000,01007CC0130C6000,status-playable,playable,2021-03-23 22:28:05,1 +3447,Persephone,,status-playable,playable,2021-03-23 22:39:19,1 +3448,Cresteaju,,gpu;status-ingame,ingame,2021-03-24 10:46:06,1 +3449,Boom Blaster,,status-playable,playable,2021-03-24 10:55:56,1 +3450,Soccer Club Life: Playing Manager - 010017B012AFC000,010017B012AFC000,gpu;status-ingame,ingame,2022-10-25 11:59:22,2 +3451,Radio Commander - 0100BAD013B6E000,0100BAD013B6E000,nvdec;status-playable,playable,2021-03-24 11:20:46,1 +3452,Negative - 01008390136FC000,01008390136FC000,nvdec;status-playable,playable,2021-03-24 11:29:41,1 +3453,Hero-U: Rogue to Redemption - 010077D01094C000,010077D01094C000,nvdec;status-playable,playable,2021-03-24 11:40:01,1 +3454,Haven - 0100E2600DBAA000,0100E2600DBAA000,status-playable,playable,2021-03-24 11:52:41,1 +3455,Escape First 2 - 010021201296A000,010021201296A000,status-playable,playable,2021-03-24 11:59:41,1 +3456,Active Neurons 3 - 0100EE1013E12000,0100EE1013E12000,status-playable,playable,2021-03-24 12:20:20,1 +3457,Blizzard Arcade Collection - 0100743013D56000,0100743013D56000,status-playable;nvdec,playable,2022-08-03 19:37:26,2 +3458,Hellpoint - 010024600C794000,010024600C794000,status-menus,menus,2021-11-26 13:24:20,2 +3460,Death's Hangover - 0100492011A8A000,0100492011A8A000,gpu;status-boots,boots,2023-08-01 22:38:06,3 +3461,Storm in a Teacup - 0100B2300B932000,0100B2300B932000,gpu;status-ingame,ingame,2021-11-06 2:03:19,3 +3462,Charge Kid - 0100F52013A66000,0100F52013A66000,gpu;status-boots;audout,boots,2024-02-11 1:17:47,2 +3465,Monster Hunter Rise - 0100B04011742000,0100B04011742000,gpu;slow;status-ingame;crash;nvdec;online-broken;Needs Update;ldn-works,ingame,2024-08-24 11:04:59,25 +3466,Gotobun no Hanayome Natsu no Omoide mo Gotobun [ 五等分の花嫁∬ ~夏の思い出も五等分~ ] - 0100FB5013670000,0100FB5013670000,,,2021-03-27 16:51:27,1 +3469,Steam Prison - 01008010118CC000,01008010118CC000,nvdec;status-playable,playable,2021-04-01 15:34:11,1 +3470,Rogue Heroes: Ruins of Tasos - 01009FA010848000,01009FA010848000,online;status-playable,playable,2021-04-01 15:41:25,1 +3471,Fallen Legion Revenants - 0100AA801258C000,0100AA801258C000,status-menus;crash,menus,2021-11-25 8:53:20,3 +3472, R-TYPE FINAL 2 Demo - 01007B0014300000,01007B0014300000,slow;status-ingame;nvdec;UE4;demo,ingame,2022-10-24 21:57:42,3 +3473,Fire Emblem: Shadow Dragon and the Blade of Light - 0100A12011CC8000,0100A12011CC8000,status-playable,playable,2022-10-17 19:49:14,6 +3475,Dariusburst - Another Chronicle EX+ - 010015800F93C000,010015800F93C000,online;status-playable,playable,2021-04-05 14:21:43,1 +3476,Curse of the Dead Gods - 0100D4A0118EA000,0100D4A0118EA000,status-playable,playable,2022-08-30 12:25:38,4 +3477,Clocker - 0100DF9013AD4000,0100DF9013AD4000,status-playable,playable,2021-04-05 15:05:13,1 +3478,Azur Lane: Crosswave - 01006AF012FC8000,01006AF012FC8000,UE4;nvdec;status-playable,playable,2021-04-05 15:15:25,1 +3479,AnShi - 01000FD00DF78000,01000FD00DF78000,status-playable;nvdec;UE4,playable,2022-10-21 19:37:01,2 +3480,Aery - A Journey Beyond Time - 0100DF8014056000,0100DF8014056000,status-playable,playable,2021-04-05 15:52:25,1 +3481,Sir Lovelot - 0100E9201410E000,0100E9201410E000,status-playable,playable,2021-04-05 16:21:46,1 +3482,Pixel Game Maker Series Puzzle Pedestrians - 0100EA2013BCC000,0100EA2013BCC000,status-playable,playable,2022-10-24 20:15:50,3 +3483,Monster Jam Steel Titans 2 - 010051B0131F0000,010051B0131F0000,status-playable;nvdec;UE4,playable,2022-10-24 17:17:59,2 +3484,Huntdown - 0100EBA004726000,0100EBA004726000,status-playable,playable,2021-04-05 16:59:54,1 +3485,GraviFire - 010054A013E0C000,010054A013E0C000,status-playable,playable,2021-04-05 17:13:32,1 +3486,Dungeons & Bombs,,status-playable,playable,2021-04-06 12:46:22,1 +3487,Estranged: The Departure - 01004F9012FD8000,01004F9012FD8000,status-playable;nvdec;UE4,playable,2022-10-24 10:37:58,2 +3488,Demon's Rise - Lords of Chaos - 0100E29013818000,0100E29013818000,status-playable,playable,2021-04-06 16:20:06,1 +3489,Bibi & Tina at the horse farm - 010062400E69C000,010062400E69C000,status-playable,playable,2021-04-06 16:31:39,1 +3490,WRC 9 The Official Game - 01001A0011798000,01001A0011798000,gpu;slow;status-ingame;nvdec,ingame,2022-10-25 19:47:39,2 +3491,Woodsalt - 0100288012966000,0100288012966000,status-playable,playable,2021-04-06 17:01:48,1 +3492,Kingdoms of Amalur: Re-Reckoning - 0100EF50132BE000,0100EF50132BE000,status-playable,playable,2023-08-10 13:05:08,2 +3493,Jiffy - 01008330134DA000,01008330134DA000,gpu;status-ingame;opengl,ingame,2024-02-03 23:11:24,4 +3494,A-Train: All Aboard! Tourism - 0100A3E010E56000,0100A3E010E56000,nvdec;status-playable,playable,2021-04-06 17:48:19,1 +3495,Synergia - 01009E700F448000,01009E700F448000,status-playable,playable,2021-04-06 17:58:04,1 +3496,R.B.I. Baseball 21 - 0100B4A0115CA000,0100B4A0115CA000,status-playable;online-working,playable,2022-10-24 22:31:45,2 +3497,NEOGEO POCKET COLOR SELECTION Vol.1 - 010006D0128B4000,010006D0128B4000,status-playable,playable,2023-07-08 20:55:36,2 +3498,Mighty Fight Federation - 0100C1E0135E0000,0100C1E0135E0000,online;status-playable,playable,2021-04-06 18:39:56,1 +3499,Lost Lands: The Four Horsemen - 0100133014510000,0100133014510000,status-playable;nvdec,playable,2022-10-24 16:41:00,2 +3500,In rays of the Light - 0100A760129A0000,0100A760129A0000,status-playable,playable,2021-04-07 15:18:07,1 +3501,DARQ Complete Edition - 0100440012FFA000,0100440012FFA000,audout;status-playable,playable,2021-04-07 15:26:21,1 +3502,Can't Drive This - 0100593008BDC000,0100593008BDC000,status-playable,playable,2022-10-22 14:55:17,1 +3503,Wanderlust Travel Stories - 0100B27010436000,0100B27010436000,status-playable,playable,2021-04-07 16:09:12,1 +3504,Tales from the Borderlands - 0100F0C011A68000,0100F0C011A68000,status-playable;nvdec,playable,2022-10-25 18:44:14,4 +3506,Star Wars: Republic Commando - 0100FA10115F8000,0100FA10115F8000,gpu;status-ingame;32-bit,ingame,2023-10-31 15:57:17,9 +3507,Barrage Fantasia - 0100F2A013752000,0100F2A013752000,,,2021-04-08 1:02:06,1 +3509,Atelier Rorona - The Alchemist of Arland - DX - 010088600C66E000,010088600C66E000,nvdec;status-playable,playable,2021-04-08 15:33:15,1 +3510,PAC-MAN 99 - 0100AD9012510000,0100AD9012510000,gpu;status-ingame;online-broken,ingame,2024-04-23 0:48:25,5 +3511,MAGLAM LORD - 0100C2C0125FC000,0100C2C0125FC000,,,2021-04-09 9:10:45,2 +3513,Part Time UFO - 01006B5012B32000 ,01006B5012B32000,status-ingame;crash,ingame,2023-03-03 3:13:05,2 +3515,Fitness Boxing - 0100E7300AAD4000,0100E7300AAD4000,status-playable,playable,2021-04-14 20:33:33,1 +3516,Fitness Boxing 2: Rhythm & Exercise - 0100073011382000,0100073011382000,crash;status-ingame,ingame,2021-04-14 20:40:48,1 +3517,Overcooked! All You Can Eat - 0100F28011892000,0100F28011892000,ldn-untested;online;status-playable,playable,2021-04-15 10:33:52,1 +3518,SpyHack - 01005D701264A000,01005D701264A000,status-playable,playable,2021-04-15 10:53:51,1 +3519,Oh My Godheads: Party Edition - 01003B900AE12000,01003B900AE12000,status-playable,playable,2021-04-15 11:04:11,1 +3520,My Hidden Things - 0100E4701373E000,0100E4701373E000,status-playable,playable,2021-04-15 11:26:06,1 +3521,Merchants of Kaidan - 0100E5000D3CA000,0100E5000D3CA000,status-playable,playable,2021-04-15 11:44:28,1 +3522,Mahluk dark demon - 010099A0145E8000,010099A0145E8000,status-playable,playable,2021-04-15 13:14:24,1 +3523,Fred3ric - 0100AC40108D8000,0100AC40108D8000,status-playable,playable,2021-04-15 13:30:31,1 +3524,Fishing Universe Simulator - 010069800D292000,010069800D292000,status-playable,playable,2021-04-15 14:00:43,1 +3525,Exorder - 0100FA800A1F4000,0100FA800A1F4000,nvdec;status-playable,playable,2021-04-15 14:17:20,1 +3526,FEZ - 01008D900B984000,01008D900B984000,gpu;status-ingame,ingame,2021-04-18 17:10:16,6 +3527,Danger Scavenger - ,,nvdec;status-playable,playable,2021-04-17 15:53:04,1 +3528,Hellbreachers - 01002BF013F0C000,01002BF013F0C000,,,2021-04-17 17:19:20,1 +3531,Cooking Simulator - 01001E400FD58000,01001E400FD58000,status-playable,playable,2021-04-18 13:25:23,1 +3532,Digerati Presents: The Dungeon Crawl Vol. 1 - 010035D0121EC000,010035D0121EC000,slow;status-ingame,ingame,2021-04-18 14:04:55,1 +3533,Clea 2 - 010045E0142A4000,010045E0142A4000,status-playable,playable,2021-04-18 14:25:18,1 +3534,Livestream Escape from Hotel Izanami - 0100E45014338000,0100E45014338000,,,2021-04-19 2:20:34,1 +3535,Ai Kiss 2 [ アイキス2 ] - 01000E9013CD4000,01000E9013CD4000,,,2021-04-19 2:49:12,1 +3536,Pikachin-Kit – Game de Pirameki Daisakusen [ ピカちんキット ゲームでピラメキ大作戦!] - 01009C100A8AA000,01009C100A8AA000,,,2021-04-19 3:11:07,1 +3537,Ougon musou kyoku CROSS [ 黄金夢想曲†CROSS] - 010011900E720000,010011900E720000,,,2021-04-19 3:22:41,1 +3538,Cargo Crew Driver - 0100DD6014870000,0100DD6014870000,status-playable,playable,2021-04-19 12:54:22,1 +3539,Black Legend - 0100C3200E7E6000,0100C3200E7E6000,gpu;status-ingame;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-10-22 12:54:48,2 +3540,Balan Wonderworld - 0100438012EC8000,0100438012EC8000,status-playable;nvdec;UE4,playable,2022-10-22 13:08:43,2 +3541,Arkham Horror: Mother's Embrace - 010069A010606000,010069A010606000,nvdec;status-playable,playable,2021-04-19 15:40:55,1 +3542,S.N.I.P.E.R. Hunter Scope - 0100B8B012ECA000,0100B8B012ECA000,status-playable,playable,2021-04-19 15:58:09,1 +3543,Ploid Saga - 0100E5B011F48000 ,0100E5B011F48000,status-playable,playable,2021-04-19 16:58:45,1 +3544,Kaze and the Wild Masks - 010038B00F142000,010038B00F142000,status-playable,playable,2021-04-19 17:11:03,1 +3545,I Saw Black Clouds - 01001860140B0000,01001860140B0000,nvdec;status-playable,playable,2021-04-19 17:22:16,1 +3546,Escape from Life Inc - 010023E013244000,010023E013244000,status-playable,playable,2021-04-19 17:34:09,1 +3547,El Hijo - A Wild West Tale - 010020A01209C000,010020A01209C000,nvdec;status-playable,playable,2021-04-19 17:44:08,1 +3548,Bomber Fox - 0100A1F012948000,0100A1F012948000,nvdec;status-playable,playable,2021-04-19 17:58:13,1 +3549,Stitchy in Tooki Trouble - 010077B014518000,010077B014518000,status-playable,playable,2021-05-06 16:25:53,2 +3550,SaGa Frontier Remastered - 0100A51013530000,0100A51013530000,status-playable;nvdec,playable,2022-11-03 13:54:56,2 +3552,Wonder Boy Asha in Monster World [ ワンダーボーイ アーシャ・イン・モンスターワールド ] - 0100EB2012E36000,0100EB2012E36000,status-nothing;crash,nothing,2021-11-03 8:45:06,2 +3553,Raiden IV x Mikado Remix [ 雷電Ⅳ×MIKADO remix ] - 01005CD013116000,01005CD013116000,status-playable,playable,2022-07-29 15:50:13,3 +3554,Uno no Tatsujin Machigai Sagashi Museum for Nintendo Switch [ -右脳の達人- まちがいさがしミュージアム for Nintendo Switch ] - 01001030136C6000,01001030136C6000,,,2021-04-22 21:59:27,1 +3555,Shantae - 0100430013120000,0100430013120000,status-playable,playable,2021-05-21 4:53:26,8 +3556,The Legend of Heroes: Trails of Cold Steel IV - 0100D3C010DE8000,0100D3C010DE8000,nvdec;status-playable,playable,2021-04-23 14:01:05,1 +3558,Effie - 01002550129F0000,01002550129F0000,status-playable,playable,2022-10-27 14:36:39,4 +3559,Death end re;Quest - 0100AEC013DDA000,0100AEC013DDA000,status-playable,playable,2023-07-09 12:19:54,2 +3560,THE LEGEND OF HEROES: ZERO NO KISEKI KAI [英雄傳說 零之軌跡:改] - 01005E5013862000,01005E5013862000,status-nothing;crash,nothing,2021-09-30 14:41:07,2 +3561,Yoshi's Crafted World - 01006000040C2000,01006000040C2000,gpu;status-ingame;audout,ingame,2021-08-30 13:25:51,5 +3563,TY the Tasmanian Tiger 2: Bush Rescue HD - 0100BC701417A000,0100BC701417A000,,,2021-05-04 23:11:57,1 +3564,Nintendo Labo Toy-Con 03: Vehicle Kit - 01001E9003502000,01001E9003502000,services;status-menus;crash,menus,2022-08-03 17:20:11,3 +3566,Say No! More - 01001C3012912000,01001C3012912000,status-playable,playable,2021-05-06 13:43:34,1 +3567,Potion Party - 01000A4014596000,01000A4014596000,status-playable,playable,2021-05-06 14:26:54,1 +3568,Saviors of Sapphire Wings & Stranger of Sword City Revisited - 0100AA00128BA000,0100AA00128BA000,status-menus;crash,menus,2022-10-24 23:00:46,4 +3569,Lost Words: Beyond the Page - 0100018013124000,0100018013124000,status-playable,playable,2022-10-24 17:03:21,2 +3570,Lost Lands 3: The Golden Curse - 0100156014C6A000,0100156014C6A000,status-playable;nvdec,playable,2022-10-24 16:30:00,2 +3571,ISLAND - 0100F06013710000,0100F06013710000,status-playable,playable,2021-05-06 15:11:47,1 +3572,SilverStarChess - 010016D00A964000,010016D00A964000,status-playable,playable,2021-05-06 15:25:57,1 +3573,Breathedge - 01000AA013A5E000,01000AA013A5E000,UE4;nvdec;status-playable,playable,2021-05-06 15:44:28,1 +3574,Isolomus - 010001F0145A8000,010001F0145A8000,services;status-boots,boots,2021-11-03 7:48:21,2 +3575,Relicta - 01002AD013C52000,01002AD013C52000,status-playable;nvdec;UE4,playable,2022-10-31 12:48:33,2 +3576,Rain on Your Parade - 0100BDD014232000,0100BDD014232000,status-playable,playable,2021-05-06 19:32:04,1 +3579,World's End Club Demo - 0100BE101453E000,0100BE101453E000,,,2021-05-08 16:22:55,1 +3580,Very Very Valet Demo - 01006C8014DDA000,01006C8014DDA000,status-boots;crash;Needs Update;demo,boots,2022-11-12 15:26:13,2 +3581,Miitopia Demo - 01007DA0140E8000,01007DA0140E8000,services;status-menus;crash;demo,menus,2023-02-24 11:50:58,3 +3582,Knight Squad 2 - 010024B00E1D6000,010024B00E1D6000,status-playable;nvdec;online-broken,playable,2022-10-28 18:38:09,1 +3584,Tonarini kanojo noiru shiawase ~ Curious Queen ~ [ となりに彼女のいる幸せ~Curious Queen~] - 0100A18011BE4000,0100A18011BE4000,,,2021-05-11 13:40:34,1 +3585,Mainichi mamoru miya sanchino kyou nogohan [ 毎日♪ 衛宮さんちの今日のごはん ] - 01005E6010114000,01005E6010114000,,,2021-05-11 13:45:30,1 +3588,Commander Keen in Keen Dreams: Definitive Edition - 0100E400129EC000,0100E400129EC000,status-playable,playable,2021-05-11 19:33:54,1 +3589,SD Gundam G Generation Genesis (0100CEE0140CE000),0100CEE0140CE000,,,2021-05-13 12:29:50,1 +3590,Poison Control - 0100EB6012FD2000,0100EB6012FD2000,status-playable,playable,2021-05-16 14:01:54,1 +3591,My Riding Stables 2: A New Adventure - 010042A00FBF0000,010042A00FBF0000,status-playable,playable,2021-05-16 14:14:59,1 +3592,Dragon Audit - 0100DBC00BD5A000,0100DBC00BD5A000,crash;status-ingame,ingame,2021-05-16 14:24:46,1 +3595,Arcaea - 0100E680149DC000,0100E680149DC000,status-playable,playable,2023-03-16 19:31:21,11 +3596,Calculator - 010004701504A000,010004701504A000,status-playable,playable,2021-06-11 13:27:20,2 +3597,Rune Factory 5 (JP) - 010014D01216E000,010014D01216E000,gpu;status-ingame,ingame,2021-06-01 12:00:36,5 +3599,SD GUNDAM G GENERATION CROSS RAYS PREMIUM G SOUND EDITION - 010022900D3EC00,,status-playable;nvdec,playable,2022-09-15 20:45:57,3 +3601,War Of Stealth - assassin - 01004FA01391A000,01004FA01391A000,status-playable,playable,2021-05-22 17:34:38,1 +3602,Under Leaves - 01008F3013E4E000,01008F3013E4E000,status-playable,playable,2021-05-22 18:13:58,1 +3603,Travel Mosaics 7: Fantastic Berlin - ,,status-playable,playable,2021-05-22 18:37:34,1 +3604,Travel Mosaics 6: Christmas Around the World - 0100D520119D6000,0100D520119D6000,status-playable,playable,2021-05-26 0:52:47,1 +3605,Travel Mosaics 5: Waltzing Vienna - 01004C4010C00000,01004C4010C00000,status-playable,playable,2021-05-26 11:49:35,1 +3606,Travel Mosaics 4: Adventures in Rio - 010096D010BFE000,010096D010BFE000,status-playable,playable,2021-05-26 11:54:58,1 +3607,Travel Mosaics 3: Tokyo Animated - 0100102010BFC000,0100102010BFC000,status-playable,playable,2021-05-26 12:06:27,1 +3608,Travel Mosaics 2: Roman Holiday - 0100A8D010BFA000,0100A8D010BFA000,status-playable,playable,2021-05-26 12:33:16,1 +3609,Travel Mosaics: A Paris Tour - 01007DB00A226000,01007DB00A226000,status-playable,playable,2021-05-26 12:42:26,1 +3610,Rolling Gunner - 010076200CA16000,010076200CA16000,status-playable,playable,2021-05-26 12:54:18,1 +3611,MotoGP 21 - 01000F5013820000,01000F5013820000,gpu;status-ingame;nvdec;online-broken;UE4;ldn-untested,ingame,2022-10-28 21:35:08,2 +3612,Little Mouse's Encyclopedia - 0100FE0014200000,0100FE0014200000,status-playable,playable,2022-10-28 19:38:58,2 +3615,Himehibi 1 gakki - Princess Days - 0100F8D0129F4000,0100F8D0129F4000,status-nothing;crash,nothing,2021-11-03 8:34:19,6 +3616,Dokapon Up! Mugen no Roulette - 010048100D51A000,010048100D51A000,gpu;status-menus;Needs Update,menus,2022-12-08 19:39:10,6 +3617,Umineko no Naku Koro ni Saku - うみねこのなく頃に咲 ~猫箱と夢想の交響曲~ - 01006A300BA2C000,01006A300BA2C000,status-playable;audout,playable,2023-05-04 17:25:23,4 +3618,Paint (0100946012446000),0100946012446000,,,2021-05-31 12:57:19,1 +3622,Knockout City - 01009EF00DDB4000,01009EF00DDB4000,services;status-boots;online-broken,boots,2022-12-09 9:48:58,4 +3623,Trine 2 - 010064E00A932000,010064E00A932000,nvdec;status-playable,playable,2021-06-03 11:45:20,1 +3624,Trine 3: The Artifacts of Power - 0100DEC00A934000,0100DEC00A934000,ldn-untested;online;status-playable,playable,2021-06-03 12:01:24,1 +3625,Jamestown+ - 010000100C4B8000,010000100C4B8000,,,2021-06-05 9:09:39,1 +3626,Lonely Mountains Downhill - 0100A0C00E0DE000,0100A0C00E0DE000,status-playable;online-broken,playable,2024-07-04 5:08:11,4 +3627,Densha de go!! Hashirou Yamanote Sen - 0100BC501355A000,0100BC501355A000,status-playable;nvdec;UE4,playable,2023-11-09 7:47:58,14 +3631,Warui Ohsama to Rippana Yuusha - 0100556011C10000,0100556011C10000,,,2021-06-24 14:22:15,1 +3632,TONY HAWK'S™ PRO SKATER™ 1 + 2 - 0100CC00102B4000,0100CC00102B4000,gpu;status-ingame;Needs Update,ingame,2024-09-24 8:18:14,11 +3633,Mario Golf: Super Rush - 0100C9C00E25C000,0100C9C00E25C000,gpu;status-ingame,ingame,2024-08-18 21:31:48,17 +3634,Neo : The World Ends with You (DEMO)- 新すばらしきこのせかい (体験版) - 01001AB0141A8000,01001AB0141A8000,crash;status-ingame,ingame,2021-07-18 7:29:18,7 +3635,LEGO Builder’s Journey - 01005EE0140AE000 ,01005EE0140AE000,,,2021-06-26 21:31:59,1 +3638,Disgaea 6: Defiance of Destiny - 0100ABC013136000,0100ABC013136000,deadlock;status-ingame,ingame,2023-04-15 0:50:32,9 +3641,Game Builder Garage - 0100FA5010788000,0100FA5010788000,status-ingame,ingame,2024-04-20 21:46:22,4 +3644,Miitopia - 01003DA010E8A000,01003DA010E8A000,gpu;services-horizon;status-ingame,ingame,2024-09-06 10:39:13,26 +3645,DOOM Eternal - 0100B1A00D8CE000,0100B1A00D8CE000,gpu;slow;status-ingame;nvdec;online-broken,ingame,2024-08-28 15:57:17,7 +3646,Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy DX+ - 0100FDB00AA800000,0100FDB00AA80000,gpu;status-ingame;nvdec;opengl,ingame,2022-09-14 15:15:55,3 +3647,Sky: Children of the Light - 0100C52011460000,0100C52011460000,cpu;status-nothing;online-broken,nothing,2023-02-23 10:57:10,7 +3649,Tantei bokumetsu 探偵撲滅 - 0100CBA014014000,0100CBA014014000,,,2021-07-11 15:58:42,1 +3650,"The Legend of Heroes: Sen no Kiseki I - 0100AD0014AB4000 (Japan, Asia)",0100AD0014AB4000,,,2021-07-12 11:15:02,1 +3651,SmileBASIC 4 - 0100C9100B06A000,0100C9100B06A000,gpu;status-menus,menus,2021-07-29 17:35:59,2 +3652,The Legend of Zelda: Breath of the Wild Demo - 0100509005AF2000,0100509005AF2000,status-ingame;demo,ingame,2022-12-24 5:02:58,4 +3653,Kanda Alice mo Suiri Suru 神田アリス も 推理スル - 01003BD013E30000,01003BD013E30000,,,2021-07-15 0:30:16,1 +3655,Crayon Shin-chan Ora to Hakase no Natsuyasumi Owaranai Nanokakan no Tabi - 01005BA00F486000,01005BA00F486000,status-playable,playable,2021-07-21 10:41:33,2 +3657,The Legend of Zelda: Skyward Sword HD - 01002DA013484000,01002DA013484000,gpu;status-ingame,ingame,2024-06-14 16:48:29,29 +3659,Monster wo taoshite tsuyoi ken ya yoroi wo te ni shinasai. Shinde mo akiramezu ni tsuyoku nari nasai. Yuushatai ga maoh wo taosu sono hi wo shinzite imasu. - モンスターを倒して強い剣や鎧を手にしなさい。死んでも諦めずに強くなりなさい。勇者隊が魔王を倒すその日を信じています。 - 01004E10142FE000,01004E10142FE000,crash;status-ingame,ingame,2021-07-23 10:56:44,3 +3660,Suguru Nature - 0100BF9012AC6000,0100BF9012AC6000,crash;status-ingame,ingame,2021-07-29 11:36:27,3 +3662,Cris Tales - 0100B0400EBC4000,0100B0400EBC4000,crash;status-ingame,ingame,2021-07-29 15:10:53,3 +3666,"Ren'ai, Karichaimashita 恋愛、借りちゃいました - 0100142013cea000",0100142013cea000,,,2021-07-28 0:37:48,1 +3668,Dai Gyakuten Saiban 1 & 2 -Naruhodou Ryuunosuke no Bouken to Kakugo- - 大逆転裁判1&2 -成歩堂龍ノ介の冒險と覺悟- - 0100D7F00FB1A000,0100D7F00FB1A000,,,2021-07-29 6:38:53,1 +3669,New Pokémon Snap - 0100F4300BF2C000,0100F4300BF2C000,status-playable,playable,2023-01-15 23:26:57,4 +3671,Astro Port Shmup Collection - 01000A601139E000,01000A601139E000,,,2021-08-03 13:14:37,1 +3672,Monster Hunter Stories 2: Wings of Ruin ID 0100E2101144600,,services;status-ingame,ingame,2022-07-10 19:27:30,5 +3674,Picross S GENESIS and Master System edition - ピクロスS MEGA DRIVE & MARKⅢ edition - 010089701567A000,010089701567A000,,,2021-08-10 4:18:06,2 +3676,ooKing simulator pizza -010033c014666000,010033c014666000,,,2021-08-15 20:49:24,2 +3677,Everyday♪ Today's MENU for EMIYA Family - 010031B012254000,010031B012254000,,,2021-08-15 19:27:36,1 +3679,Hatsune Miku Logic Paint S - 0100B4101459A000,0100B4101459A000,,,2021-08-19 0:23:50,2 +3680,シークレットゲーム KILLER QUEEN for Nintendo Switch,,,,2021-08-21 8:12:41,1 +3681,リベリオンズ: Secret Game 2nd Stage for Nintendo Switch - 010096000B658000,010096000B658000,,,2021-08-21 8:28:40,1 +3682,Susanoh -Nihon Shinwa RPG- - スサノオ ~日本神話RPG~ - 0100F3001472A000,0100F3001472A000,,,2021-08-22 4:20:18,1 +3683,Genkai Tokki Moero Crystal H- 極限凸起 萌情水晶 H - 한계돌파 모에로크리스탈 H - 0100D7E0110B2000,0100D7E0110B2000,32-bit;status-playable,playable,2022-06-06 0:42:09,8 +3688,World's End Club - 01005A2014362000,01005A2014362000,,,2021-08-28 13:20:14,1 +3689,Axiom Verge 2,,,,2021-09-02 8:01:30,1 +3690,Slot - 01007DD011608000,01007DD011608000,,,2021-09-04 1:40:29,1 +3691,Golf - 01007D8010018000,01007D8010018000,,,2021-09-04 1:55:37,1 +3692,World Soccer - 010083B00B97A000,010083B00B97A000,,,2021-09-04 2:07:29,1 +3693,DogFight - 0100E80013BB0000,0100E80013BB0000,,,2021-09-04 14:12:30,1 +3694,Demon Gaze Extra - デモンゲイズ エクストラ - 01005110142A8000,01005110142A8000,,,2021-09-04 15:06:19,1 +3695,Spy Alarm - 01000E6015350000,01000E6015350000,services;status-ingame,ingame,2022-12-09 10:12:51,2 +3696,Rainbocorns - 01005EE0142F6000,01005EE0142F6000,,,2021-09-04 15:53:49,1 +3697,ZOMB - 0100E2B00E064000,0100E2B00E064000,,,2021-09-04 16:07:19,1 +3698,Bubble - 01004A4011CB4000,01004A4011CB4000,,,2021-09-04 16:16:24,1 +3699,Guitar - 0100A2D00EFBE000,0100A2D00EFBE000,,,2021-09-04 18:54:14,1 +3700,Hunt - 01000DE0125B8000,01000DE0125B8000,,,2021-09-06 11:29:19,1 +3701,Fight - 0100995013404000,0100995013404000,,,2021-09-06 11:31:42,1 +3702,Table Tennis - 0100CB00125B6000,0100CB00125B6000,,,2021-09-06 11:55:38,1 +3703,No More Heroes 3 - 01007C600EB42000,01007C600EB42000,gpu;status-ingame;UE4,ingame,2024-03-11 17:06:19,4 +3704,Idol Days - 愛怒流でいす - 01002EC014BCA000,01002EC014BCA000,gpu;status-ingame;crash,ingame,2021-12-19 15:31:28,3 +3705,Checkers - 01001B80124E4000,01001B80124E4000,,,2021-09-06 16:07:24,1 +3707,King's Bounty II,,,,2021-09-07 21:12:57,1 +3708,KeyWe - 0100E2B012056000,0100E2B012056000,,,2021-09-07 22:30:10,1 +3712,Sonic Colors Ultimate [010040E0116B8000],010040E0116B8000,status-playable,playable,2022-11-12 21:24:26,4 +3713,SpongeBob: Krusty Cook-Off - 01000D3013E8C000,01000D3013E8C000,,,2021-09-08 13:26:06,1 +3714,Snakes & Ladders - 010052C00ABFA000,010052C00ABFA000,,,2021-09-08 13:45:26,1 +3715,Darts - 01005A6010A04000,01005A6010A04000,,,2021-09-08 14:18:00,1 +3716,Luna's Fishing Garden - 0100374015A2C000,0100374015A2C000,,,2021-09-11 11:38:34,1 +3718,WarioWare: Get It Together! - 0100563010E0C000,0100563010E0C000,gpu;status-ingame;opengl-backend-bug,ingame,2024-04-23 1:04:56,5 +3719,SINce Memories Off the starry sky - 0100E94014792000,0100E94014792000,,,2021-09-17 2:03:06,1 +3720,Bang Dream Girls Band Party for Nintendo Switch,,status-playable,playable,2021-09-19 3:06:58,6 +3721,ENDER LILIES: Quietus of the Knights - 0100CCF012E9A000,0100CCF012E9A000,,,2021-09-19 1:10:44,1 +3724,Lost in Random - 01005FE01291A000,01005FE01291A000,gpu;status-ingame,ingame,2022-12-18 7:09:28,9 +3725,Miyamoto Sansuu Kyoushitsu Kashikoku Naru Puzzle Daizen - 宮本算数教室 賢くなるパズル 大全 - 01004ED014160000,01004ED014160000,,,2021-09-30 12:09:06,1 +3726,Hot Wheels Unleashed,,,,2021-10-01 1:14:17,1 +3727,Memories Off - 0100978013276000,0100978013276000,,,2021-10-05 18:50:06,1 +3729,Blue Reflections Second Light [Demo] [JP] - 01002FA01610A000,01002FA01610A000,,,2021-10-08 9:19:34,1 +3730,Metroid Dread - 010093801237C000,010093801237C000,status-playable,playable,2023-11-13 4:02:36,25 +3731,Kentucky Route Zero [0100327005C94000],0100327005C94000,status-playable,playable,2024-04-09 23:22:46,2 +3732,Cotton/Guardian Saturn Tribute Games,,gpu;status-boots,boots,2022-11-27 21:00:51,2 +3733,The Great Ace Attorney Chronicles - 010036E00FB20000,010036E00FB20000,status-playable,playable,2023-06-22 21:26:29,3 +3736,第六妖守-Dairoku-Di Liu Yao Shou -Dairoku -0100ad80135f4000,0100ad80135f4000,,,2021-10-17 4:42:47,1 +3737,Touhou Genso Wanderer -Lotus Labyrinth R- - 0100a7a015e4c000,0100a7a015e4c000,,,2021-10-17 20:10:40,1 +3740,Crysis 2 Remastered - 0100582010AE0000,0100582010AE0000,deadlock;status-menus,menus,2023-09-21 10:46:17,4 +3741,Crysis 3 Remastered - 0100CD3010AE2000 ,0100CD3010AE2000,deadlock;status-menus,menus,2023-09-10 16:03:50,3 +3743,Dying Light: Platinum Edition - 01008c8012920000,01008c8012920000,services-horizon;status-boots,boots,2024-03-11 10:43:32,3 +3745,Steel Assault - 01001C6014772000,01001C6014772000,status-playable,playable,2022-12-06 14:48:30,4 +3746,Foreclosed - 0100AE001256E000,0100AE001256E000,status-ingame;crash;Needs More Attention;nvdec,ingame,2022-12-06 14:41:12,1 +3751,Nintendo 64 - Nintendo Switch Online - 0100C9A00ECE6000,0100C9A00ECE6000,gpu;status-ingame;vulkan,ingame,2024-04-23 20:21:07,15 +3752,Mario Party Superstars - 01006FE013472000,01006FE013472000,gpu;status-ingame;ldn-works;mac-bug,ingame,2024-05-16 11:23:34,23 +3756,Wheel of Fortune [010033600ADE6000],010033600ADE6000,status-boots;crash;Needs More Attention;nvdec,boots,2023-11-12 20:29:24,6 +3757,Abarenbo Tengu & Zombie Nation - 010040E012A5A000,010040E012A5A000,,,2021-10-31 18:24:00,1 +3758,Eight Dragons - 01003AD013BD2000,01003AD013BD2000,status-playable;nvdec,playable,2022-10-27 14:47:28,2 +3760,Restless Night [0100FF201568E000],0100FF201568E000,status-nothing;crash,nothing,2022-02-09 10:54:49,2 +3762,rRootage Reloaded [01005CD015986000],01005CD015986000,status-playable,playable,2022-08-05 23:20:18,10 +3763,Just Dance 2022 - 0100EA6014BB8000,0100EA6014BB8000,gpu;services;status-ingame;crash;Needs Update,ingame,2022-10-28 11:01:53,5 +3764,LEGO Marvel Super Heroes - 01006F600FFC8000,01006F600FFC8000,status-playable,playable,2024-09-10 19:02:19,7 +3765,Destructivator SE [0100D74012E0A000],0100D74012E0A000,,,2021-11-06 14:12:07,1 +3766,Diablo 2 Resurrected - 0100726014352000,0100726014352000,gpu;status-ingame;nvdec,ingame,2023-08-18 18:42:47,16 +3767,World War Z [010099F013898000],010099F013898000,,,2021-11-09 12:00:01,1 +3768,STAR WARS Jedi Knight II Jedi Outcast - 0100BB500EACA000,0100BB500EACA000,gpu;status-ingame,ingame,2022-09-15 22:51:00,3 +3770,Shin Megami Tensei V - 010063B012DC6000,010063B012DC6000,status-playable;UE4,playable,2024-02-21 6:30:07,38 +3771,Mercenaries Rebirth Call of the Wild Lynx - [010031e01627e000],010031e01627e000,,,2021-11-13 17:14:02,1 +3772,Summer Pockets REFLECTION BLUE - 0100273013ECA000,0100273013ECA000,,,2021-11-15 14:25:26,1 +3773,Spelunky - 0100710013ABA000,0100710013ABA000,status-playable,playable,2021-11-20 17:45:03,2 +3774,Spelunky 2 - 01007EC013ABC000,01007EC013ABC000,,,2021-11-17 19:31:16,1 +3775,MARSUPILAMI-HOOBADVENTURE - 010074F014628000,010074F014628000,,,2021-11-19 7:43:14,1 +3776,Pokémon Brilliant Diamond - 0100000011D90000,0100000011D90000,gpu;status-ingame;ldn-works,ingame,2024-08-28 13:26:35,54 +3778,Ice Station Z - 0100954014718000,0100954014718000,status-menus;crash,menus,2021-11-21 20:02:15,4 +3784,Shiro - 01000244016BAE000,01000244016BAE00,gpu;status-ingame,ingame,2024-01-13 8:54:39,2 +3785,Yuru Camp △ Have a nice day! - 0100D12014FC2000,0100D12014FC2000,,,2021-11-29 10:46:03,1 +3786,Iridium - 010095C016C14000,010095C016C14000,status-playable,playable,2022-08-05 23:19:53,7 +3787,Black The Fall - 0100502007f54000,0100502007f54000,,,2021-12-05 3:08:22,1 +3788,Loop Hero - 010004E01523C000,010004E01523C000,,,2021-12-12 18:11:42,2 +3790,The Battle Cats Unite! - 01001E50141BC000,01001E50141BC000,deadlock;status-ingame,ingame,2021-12-14 21:38:34,2 +3792,Life is Strange: True Colors [0100500012AB4000],0100500012AB4000,gpu;status-ingame;UE4,ingame,2024-04-08 16:11:52,8 +3796,Deathsmiles I・II - 01009120119B4000,01009120119B4000,status-playable,playable,2024-04-08 19:29:00,7 +3797,Deedlit in Wonder Labyrinth - 0100EF0015A9A000,0100EF0015A9A000,deadlock;status-ingame;Needs Update;Incomplete,ingame,2022-01-19 10:00:59,3 +3798,Hamidashi Creative - 01006FF014152000,01006FF014152000,gpu;status-ingame,ingame,2021-12-19 15:30:51,2 +3799,Ys IX: Monstrum Nox - 0100E390124D8000,0100E390124D8000,status-playable,playable,2022-06-12 4:14:42,11 +3801,Animal Crossing New Horizons Island Transfer Tool - 0100F38011CFE000,0100F38011CFE000,services;status-ingame;Needs Update;Incomplete,ingame,2022-12-07 13:51:19,2 +3802,Pokémon Mystery Dungeon Rescue Team DX (DEMO) - 010040800FB54000,010040800FB54000,,,2022-01-09 2:15:04,1 +3804,Monopoly Madness - 01005FF013DC2000,01005FF013DC2000,status-playable,playable,2022-01-29 21:13:52,2 +3805,DoDonPachi Resurrection - 怒首領蜂大復活 - 01005A001489A000,01005A001489A000,status-ingame;32-bit;crash,ingame,2024-01-25 14:37:32,5 +3808,Shadow Man Remastered - 0100C3A013840000,0100C3A013840000,gpu;status-ingame,ingame,2024-05-20 6:01:39,5 +3814,Star Wars - Knights Of The Old Republic - 0100854015868000,0100854015868000,gpu;deadlock;status-boots,boots,2024-02-12 10:13:51,4 +3815,Gunvolt Chronicles: Luminous Avenger iX 2 - 0100763015C2E000,0100763015C2E000,status-nothing;crash;Needs Update,nothing,2022-04-29 15:34:34,4 +3816,Furaiki 4 - 風雨来記4 - 010046601125A000,010046601125A000,,,2022-01-27 17:37:47,1 +3817,Pokémon Legends: Arceus - 01001F5010DFA000,01001F5010DFA000,gpu;status-ingame;Needs Update;ldn-works,ingame,2024-09-19 10:02:02,83 +3826,Demon Gaze EXTRA - 0100FCC0168FC000,0100FCC0168FC000,,,2022-02-05 16:25:26,1 +3828,Fatal Frame: Maiden of Black Water - 0100BEB015604000,0100BEB015604000,status-playable,playable,2023-07-05 16:01:40,5 +3830,OlliOlli World - 0100C5D01128E000,0100C5D01128E000,,,2022-02-08 13:01:22,1 +3831,Horse Club Adventures - 0100A6B012932000,0100A6B012932000,,,2022-02-10 1:59:25,4 +3832,Toree 3D (0100E9701479E000),0100E9701479E000,,,2022-02-15 18:41:33,1 +3833,Picross S7,,status-playable,playable,2022-02-16 12:51:25,2 +3834,Nintendo Switch Sports Online Play Test - 01000EE017182000,01000EE017182000,gpu;status-ingame,ingame,2022-03-16 7:44:12,3 +3836,MLB The Show 22 Tech Test - 0100A9F01776A000,0100A9F01776A000,services;status-nothing;crash;Needs Update;demo,nothing,2022-12-09 10:28:34,2 +3837,Cruis'n Blast - 0100B41013C82000,0100B41013C82000,gpu;status-ingame,ingame,2023-07-30 10:33:47,10 +3839,Crunchyroll - 0100C090153B4000,0100C090153B4000,,,2022-02-20 13:56:29,2 +3840,PUZZLE & DRAGONS Nintendo Switch Edition - 01001D701375A000,01001D701375A000,,,2022-02-20 11:01:34,1 +3842,Hatsune Miku Connecting Puzzle TAMAGOTORI - 0100118016036000,0100118016036000,,,2022-02-23 2:07:05,1 +3844,Mononoke Slashdown - 0100F3A00FB78000,0100F3A00FB78000,status-menus;crash,menus,2022-05-04 20:55:47,4 +3846,Tsukihime - A piece of blue glass moon- - 01001DC01486A800,01001DC01486A800,,,2022-02-28 14:35:38,1 +3849,Kirby and the Forgotten Land (Demo version) - 010091201605A000,010091201605A000,status-playable;demo,playable,2022-08-21 21:03:01,3 +3850,Super Zangyura - 01001DA016942000,01001DA016942000,,,2022-03-05 4:54:47,1 +3851,Atelier Sophie 2: The Alchemist of the Mysterious Dream - 010082A01538E000,010082A01538E000,status-ingame;crash,ingame,2022-12-01 4:34:03,10 +3852,SEGA Genesis - Nintendo Switch Online - 0100B3C014BDA000,0100B3C014BDA000,status-nothing;crash;regression,nothing,2022-04-11 7:27:21,3 +3853,TRIANGLE STRATEGY - 0100CC80140F8000,0100CC80140F8000,gpu;status-ingame;Needs Update;UE4;vulkan-backend-bug,ingame,2024-09-25 20:48:37,23 +3854,Pretty Girls Breakers! - 0100DD2017994000,0100DD2017994000,,,2022-03-10 3:43:51,1 +3855,Chocobo GP - 01006A30124CA000,01006A30124CA000,gpu;status-ingame;crash,ingame,2022-06-04 14:52:18,11 +3856,.hack//G.U. Last Recode - 0100BA9014A02000,0100BA9014A02000,deadlock;status-boots,boots,2022-03-12 19:15:47,6 +3857,Monster World IV - 01008CF014560000,01008CF014560000,,,2022-03-12 4:25:01,1 +3858,Cosmos Bit - 01004810171EA000,01004810171EA000,,,2022-03-12 4:25:58,1 +3859,The Cruel King and the Great Hero - 0100EBA01548E000,0100EBA01548E000,gpu;services;status-ingame,ingame,2022-12-02 7:02:08,2 +3860,Lateral Freeze ,,,,2022-03-15 16:00:18,1 +3862,Miss Kobayashi's Dragonmaid Burst Forth!! Choro-gon☆Breath Demo - 0100FA7017CA6000,0100FA7017CA6000,,,2022-03-19 7:26:02,1 +3863,Neptunia X SENRAN KAGURA Ninja Wars - 01006D90165A2000,01006D90165A2000,,,2022-03-21 6:58:28,1 +3864,13 Sentinels Aegis Rim Demo - 0100C54015002000,0100C54015002000,status-playable;demo,playable,2022-04-13 14:15:48,2 +3866,Kirby and the Forgotten Land - 01004D300C5AE000,01004D300C5AE000,gpu;status-ingame,ingame,2024-03-11 17:11:21,35 +3867,Love of Love Emperor of LOVE! - 010015C017776000,010015C017776000,,,2022-03-25 8:46:23,1 +3868,Hatsune Miku JIGSAW PUZZLE - 010092E016B26000,010092E016B26000,,,2022-03-25 8:49:39,1 +3870,The Ryuo's Work is Never Done! - 010033100EE12000,010033100EE12000,status-playable,playable,2022-03-29 0:35:37,1 +3871,Miss Kobayashi's Dragonmaid Burst Forth!! Choro-gon☆Breath - 01005AB015994000,01005AB015994000,gpu;status-playable,playable,2022-03-28 2:22:24,1 +3875,MLB® The Show™ 22 - 0100876015D74000,0100876015D74000,gpu;slow;status-ingame,ingame,2023-04-25 6:28:43,8 +3878,13 Sentinels Aegis Rim - 01003FC01670C000,01003FC01670C000,slow;status-ingame,ingame,2024-06-10 20:33:38,9 +3879,Metal Dogs ,,,,2022-04-15 14:32:19,1 +3881,STAR WARS: The Force Unleashed - 0100153014544000,0100153014544000,status-playable,playable,2024-05-01 17:41:28,3 +3882,JKSV - 00000000000000000,0000000000000000,,,2022-04-21 23:34:59,1 +3886,Jigsaw Masterpieces - 0100BB800E0D2000,0100BB800E0D2000,,,2022-05-04 21:14:45,1 +3887,QuickSpot - 0100E4501677E000,0100E4501677E000,,,2022-05-04 21:14:48,1 +3888,Yomawari 3 - 0100F47016F26000,0100F47016F26000,status-playable,playable,2022-05-10 8:26:51,6 +3889,Marco & The Galaxy Dragon Demo - 0100DA7017C9E000,0100DA7017C9E000,gpu;status-ingame;demo,ingame,2023-06-03 13:05:33,2 +3890,Demon Turf: Neon Splash - 010010C017B28000,010010C017B28000,,,2022-05-04 21:35:59,1 +3896,Taiko Risshiden V DX - 0100346017304000,0100346017304000,status-nothing;crash,nothing,2022-06-06 16:25:31,3 +3901,The Stanley Parable: Ultra Deluxe - 010029300E5C4000,010029300E5C4000,gpu;status-ingame,ingame,2024-07-12 23:18:26,6 +3902,CHAOS;HEAD NOAH - 0100957016B90000,0100957016B90000,status-playable,playable,2022-06-02 22:57:19,1 +3904,LOOPERS - 010062A0178A8000,010062A0178A8000,gpu;slow;status-ingame;crash,ingame,2022-06-17 19:21:45,3 +3905,二ノ国 白き聖灰の女王 - 010032400E700000,010032400E700000,services;status-menus;32-bit,menus,2023-04-16 17:11:06,8 +3907,even if TEMPEST - 010095E01581C000,010095E01581C000,gpu;status-ingame,ingame,2023-06-22 23:50:25,8 +3908,Mario Strikers Battle League Football First Kick [01008A30182F2000],01008A30182F2000,,,2022-06-09 20:58:06,2 +3910,Mario Strikers: Battle League Football - 010019401051C000,010019401051C000,status-boots;crash;nvdec,boots,2024-05-07 6:23:56,13 +3911,鬼滅之刃:火之神血風譚 / Demon Slayer -Kimetsu no Yaiba- The Hinokami Chronicles - 0100309016E7A000,0100309016E7A000,status-playable;UE4,playable,2024-08-08 4:51:49,12 +3912,Teenage Mutant Ninja Turtles: Shredder's Revenge - 0100FE701475A000,0100FE701475A000,deadlock;status-boots;crash,boots,2024-09-28 9:31:39,14 +3913,MOFUMOFU Sensen - 0100B46017500000,0100B46017500000,gpu;status-menus,menus,2024-09-21 21:51:08,2 +3914,OMORI - 010014E017B14000,010014E017B14000,status-playable,playable,2023-01-07 20:21:02,2 +3916,30 in 1 game collection vol. 2 - 0100DAC013D0A000,0100DAC013D0A000,status-playable;online-broken,playable,2022-10-15 17:22:27,6 +3917,索尼克:起源 / Sonic Origins - 01009FB016286000,01009FB016286000,status-ingame;crash,ingame,2024-06-02 7:20:15,10 +3919,Fire Emblem Warriors: Three Hopes - 010071F0143EA000,010071F0143EA000,gpu;status-ingame;nvdec,ingame,2024-05-01 7:07:42,6 +3920,LEGO Star Wars: The Skywalker Saga - 010042D00D900000,010042D00D900000,gpu;slow;status-ingame,ingame,2024-04-13 20:08:46,4 +3922,Pocky & Rocky Reshrined - 01000AF015596000,01000AF015596000,,,2022-06-26 21:34:16,1 +3923,Horgihugh And Friends - 010085301797E000,010085301797E000,,,2022-06-26 21:34:22,1 +3924,The movie The Quintessential Bride -Five Memories Spent with You- - 01005E9016BDE000,01005E9016BDE000,status-playable,playable,2023-12-14 14:43:43,2 +3925,nx-hbmenu - 0000000000000000,0000000000000000,status-boots;Needs Update;homebrew,boots,2024-04-06 22:05:32,12 +3926,Portal 2 - 0100ABD01785C000,0100ABD01785C000,gpu;status-ingame,ingame,2023-02-20 22:44:15,3 +3927,Portal - 01007BB017812000,01007BB017812000,status-playable,playable,2024-06-12 3:48:29,5 +3928,EVE ghost enemies - 01007BE0160D6000,01007BE0160D6000,gpu;status-ingame,ingame,2023-01-14 3:13:30,4 +3929,PowerSlave Exhumed - 01008E100E416000,01008E100E416000,gpu;status-ingame,ingame,2023-07-31 23:19:10,2 +3930,Quake - 0100BA5012E54000,0100BA5012E54000,gpu;status-menus;crash,menus,2022-08-08 12:40:34,3 +3932,Rustler - 010071E0145F8000,010071E0145F8000,,,2022-07-06 2:09:18,1 +3933,Colors Live - 010020500BD86000,010020500BD86000,gpu;services;status-boots;crash,boots,2023-02-26 2:51:07,3 +3934,WAIFU IMPACT - 0100393016D7E000,0100393016D7E000,,,2022-07-08 22:16:51,1 +3935,Sherlock Holmes: The Devil's Daughter - 010020F014DBE000,010020F014DBE000,gpu;status-ingame,ingame,2022-07-11 0:07:26,3 +3936,0100EE40143B6000 - Fire Emblem Warriors: Three Hopes (Japan) ,0100EE40143B6000,,,2022-07-11 18:41:30,4 +3938,Wunderling - 01001C400482C000,01001C400482C000,audio;status-ingame;crash,ingame,2022-09-10 13:20:12,2 +3939,SYNTHETIK: Ultimate - 01009BF00E7D2000,01009BF00E7D2000,gpu;status-ingame;crash,ingame,2022-08-30 3:19:25,2 +3940,Breakout: Recharged - 010022C016DC8000,010022C016DC8000,slow;status-ingame,ingame,2022-11-06 15:32:57,3 +3942,Banner Saga Trilogy - 0100CE800B94A000,0100CE800B94A000,slow;status-playable,playable,2024-03-06 11:25:20,2 +3943,CAPCOM BELT ACTION COLLECTION - 0100F6400A77E000,0100F6400A77E000,status-playable;online;ldn-untested,playable,2022-07-21 20:51:23,1 +3944,死神と少女/Shinigami to Shoujo - 0100AFA01750C000,0100AFA01750C000,gpu;status-ingame;Incomplete,ingame,2024-03-22 1:06:45,8 +3946,Darius Cozmic Collection Special Edition - 010059C00BED4000,010059C00BED4000,status-playable,playable,2022-07-22 16:26:50,1 +3950,Earthworms - 0100DCE00B756000,0100DCE00B756000,status-playable,playable,2022-07-25 16:28:55,1 +3951,LIVE A LIVE - 0100CF801776C000,0100CF801776C000,status-playable;UE4;amd-vendor-bug,playable,2023-02-05 15:12:07,15 +3952,Fit Boxing - 0100807008868000 ,0100807008868000,status-playable,playable,2022-07-26 19:24:55,1 +3953,Gurimugurimoa OnceMore Demo - 01002C8018554000,01002C8018554000,status-playable,playable,2022-07-29 22:07:31,2 +3954,Trinity Trigger Demo - 010048201891A000,010048201891A000,,,2022-07-26 23:32:10,1 +3955,SD GUNDAM BATTLE ALLIANCE Demo - 0100829018568000,0100829018568000,audio;status-ingame;crash;demo,ingame,2022-08-01 23:01:20,4 +3956,Fortnite - 010025400AECE000,010025400AECE000,services-horizon;status-nothing,nothing,2024-04-06 18:23:25,5 +3957,Furi Definitive Edition - 01000EC00AF98000,01000EC00AF98000,status-playable,playable,2022-07-27 12:35:08,1 +3958,Jackbox Party Starter - 0100814017CB6000,0100814017CB6000,Incomplete,,2022-07-29 22:18:07,3 +3959,Digimon Survive - 010047500B7B2000,010047500B7B2000,,,2022-07-29 12:33:28,1 +3960,Xenoblade Chronicles 3 - 010074F013262000,010074F013262000,gpu;status-ingame;crash;nvdec;vulkan-backend-bug;amd-vendor-bug,ingame,2024-08-06 19:56:44,73 +3961,Slime Rancher: Plortable Edition - 0100B9C0148D0000,0100B9C0148D0000,,,2022-07-30 6:02:55,1 +3962,Lost Ruins - 01008AD013A86800,01008AD013A86800,gpu;status-ingame,ingame,2023-02-19 14:09:00,3 +3963,Heroes of Hammerwatch - 0100D2B00BC54000,0100D2B00BC54000,status-playable,playable,2022-08-01 18:30:21,1 +3965,Zombie Army 4: Dead War - ,,,,2022-08-01 20:03:53,1 +3966,Plague Inc: Evolved - 01000CE00CBB8000,01000CE00CBB8000,,,2022-08-02 2:32:33,1 +3968,Kona - 0100464009294000,0100464009294000,status-playable,playable,2022-08-03 12:48:19,1 +3969,Minecraft: Story Mode - The Complete Adventure - 010059C002AC2000,010059C002AC2000,status-boots;crash;online-broken,boots,2022-08-04 18:56:58,1 +3970,LA-MULANA - 010026000F662800,010026000F662800,gpu;status-ingame,ingame,2022-08-12 1:06:21,3 +3971,Minecraft: Story Mode - Season Two - 01003EF007ABA000,01003EF007ABA000,status-playable;online-broken,playable,2023-03-04 0:30:50,3 +3972,My Riding Stables - Life with Horses - 010028F00ABAE000,010028F00ABAE000,status-playable,playable,2022-08-05 21:39:07,1 +3973,NBA Playgrounds - 010002900294A000,010002900294A000,status-playable;nvdec;online-broken;UE4,playable,2022-08-06 17:06:59,1 +3975,Nintendo Labo Toy-Con 02: Robot Kit - 01009AB0034E0000,01009AB0034E0000,gpu;status-ingame,ingame,2022-08-07 13:03:19,1 +3976,Nintendo Labo Toy-Con 04: VR Kit - 0100165003504000,0100165003504000,services;status-boots;crash,boots,2023-01-17 22:30:24,4 +3977,Azure Striker GUNVOLT 3 - 01004E90149AA000,01004E90149AA000,status-playable,playable,2022-08-10 13:46:49,2 +3978,Clumsy Rush Ultimate Guys - 0100A8A0174A4000,0100A8A0174A4000,,,2022-08-10 2:12:29,1 +3979,The DioField Chronicle Demo - 01009D901624A000,01009D901624A000,,,2022-08-10 2:18:16,1 +3980,Professional Construction - The Simulation - 0100A9800A1B6000,0100A9800A1B6000,slow;status-playable,playable,2022-08-10 15:15:45,1 +3981,"Pokémon: Let's Go, Pikachu! demo - 01009AD008C4C000",01009AD008C4C000,slow;status-playable;demo,playable,2023-11-26 11:23:20,3 +3984,Retail Interactive Display Menu (DevQuestMenu)- 0100069000078000,0100069000078000,services;status-nothing;crash,nothing,2022-08-11 13:19:41,1 +3985,Retimed - 010086E00BCB2000,010086E00BCB2000,status-playable,playable,2022-08-11 13:32:39,1 +3986,DRAGON BALL Z: KAKAROT + A NEW POWER AWAKENS SET - 010051C0134F8000,010051C0134F8000,status-playable;vulkan-backend-bug,playable,2024-08-28 0:03:50,5 +3987,Runbow Deluxe Edition - 0100D37009B8A000,0100D37009B8A000,status-playable;online-broken,playable,2022-08-12 12:20:25,1 +3988,Saturday Morning RPG - 0100F0000869C000,0100F0000869C000,status-playable;nvdec,playable,2022-08-12 12:41:50,1 +3989,Slain Back from Hell - 0100BB100AF4C000,0100BB100AF4C000,status-playable,playable,2022-08-12 23:36:19,1 +3990,Spidersaurs - 010040B017830000,010040B017830000,,,2022-08-14 3:12:30,1 +3993,月姫 -A piece of blue glass moon- - 01001DC01486A000,01001DC01486A000,,,2022-08-15 15:41:29,1 +3994,Spacecats with Lasers - 0100D9B0041CE000,0100D9B0041CE000,status-playable,playable,2022-08-15 17:22:44,1 +3995,Spellspire - 0100E74007EAC000,0100E74007EAC000,status-playable,playable,2022-08-16 11:21:21,1 +3996,Spot The Difference - 0100E04009BD4000,0100E04009BD4000,status-playable,playable,2022-08-16 11:49:52,1 +3997,Spot the Differences: Party! - 010052100D1B4000,010052100D1B4000,status-playable,playable,2022-08-16 11:55:26,1 +3998,Demon Throttle - 01001DA015650000,01001DA015650000,,,2022-08-17 0:54:49,1 +3999,Kirby’s Dream Buffet - 0100A8E016236000,0100A8E016236000,status-ingame;crash;online-broken;Needs Update;ldn-works,ingame,2024-03-03 17:04:44,5 +4000,DOTORI - 0100DBD013C92000,0100DBD013C92000,,,2022-08-17 15:10:52,1 +4002,Syberia 2 - 010028C003FD6000,010028C003FD6000,gpu;status-ingame,ingame,2022-08-24 12:43:03,2 +4003,Drive Buy - 010093A0108DC000,010093A0108DC000,,,2022-08-21 3:30:18,1 +4004,Taiko no Tatsujin Rhythm Festival Demo - 0100AA2018846000,0100AA2018846000,,,2022-08-22 23:31:57,1 +4005,Splatoon 3: Splatfest World Premiere - 0100BA0018500000,0100BA0018500000,gpu;status-ingame;online-broken;demo,ingame,2022-09-19 3:17:12,5 +4006,Transcripted - 010009F004E66000,010009F004E66000,status-playable,playable,2022-08-25 12:13:11,1 +4010,eBaseball Powerful Pro Yakyuu 2022 - 0100BCA016636000,0100BCA016636000,gpu;services-horizon;status-nothing;crash,nothing,2024-05-26 23:07:19,32 +4011,Firegirl: Hack 'n Splash Rescue DX - 0100DAF016D48000,0100DAF016D48000,,,2022-08-30 15:32:22,1 +4012,Little Noah: Scion of Paradise - 0100535014D76000,0100535014D76000,status-playable;opengl-backend-bug,playable,2022-09-14 4:17:13,2 +4013,Tinykin - 0100A73016576000,0100A73016576000,gpu;status-ingame,ingame,2023-06-18 12:12:24,3 +4014,Youtubers Life - 00100A7700CCAA4000,00100A7700CCAA40,status-playable;nvdec,playable,2022-09-03 14:56:19,1 +4015,Cozy Grove - 01003370136EA000,01003370136EA000,gpu;status-ingame,ingame,2023-07-30 22:22:19,2 +4016,A Duel Hand Disaster: Trackher - 010026B006802000,010026B006802000,status-playable;nvdec;online-working,playable,2022-09-04 14:24:55,1 +4017,Angry Bunnies: Colossal Carrot Crusade - 0100F3500D05E000,0100F3500D05E000,status-playable;online-broken,playable,2022-09-04 14:53:26,1 +4018,CONTRA: ROGUE CORPS Demo - 0100B8200ECA6000,0100B8200ECA6000,gpu;status-ingame,ingame,2022-09-04 16:46:52,1 +4021,The Gardener and the Wild Vines - 01006350148DA000,01006350148DA000,gpu;status-ingame,ingame,2024-04-29 16:32:10,2 +4025,HAAK - 0100822012D76000,0100822012D76000,gpu;status-ingame,ingame,2023-02-19 14:31:05,2 +4026,Temtem - 0100C8B012DEA000,0100C8B012DEA000,status-menus;online-broken,menus,2022-12-17 17:36:11,4 +4027,Oniken - 010057C00D374000,010057C00D374000,status-playable,playable,2022-09-10 14:22:38,1 +4028,Ori and the Blind Forest: Definitive Edition Demo - 010005800F46E000,010005800F46E000,status-playable,playable,2022-09-10 14:40:12,1 +4029,Spyro Reignited Trilogy - 010077B00E046000,010077B00E046000,status-playable;nvdec;UE4,playable,2022-09-11 18:38:33,1 +4031,Disgaea 4 Complete+ Demo - 010068C00F324000,010068C00F324000,status-playable;nvdec,playable,2022-09-13 15:21:59,1 +4032,Disney Classic Games: Aladdin and The Lion King - 0100A2F00EEFC000 ,0100A2F00EEFC000,status-playable;online-broken,playable,2022-09-13 15:44:17,1 +4035,Pokémon Shield - 01008DB008C2C000,01008DB008C2C000,deadlock;status-ingame;crash;online-broken;ldn-works;LAN,ingame,2024-08-12 7:20:22,7 +4036,Shadowrun Returns - 0100371013B3E000,0100371013B3E000,gpu;status-ingame;Needs Update,ingame,2022-10-04 21:32:31,4 +4037,Shadowrun: Dragonfall - Director's Cut - 01008310154C4000,01008310154C4000,gpu;status-ingame;Needs Update,ingame,2022-10-04 20:52:18,3 +4038,Shadowrun: Hong Kong - Extended Edition - 0100C610154CA000,0100C610154CA000,gpu;status-ingame;Needs Update,ingame,2022-10-04 20:53:09,3 +4039,Animal Drifters - 010057F0195DE000,010057F0195DE000,,,2022-09-20 21:43:54,1 +4040,Paddles - 0100F5E019300000,0100F5E019300000,,,2022-09-20 21:46:00,1 +4041,River City Girls Zero - 0100E2D015DEA000,0100E2D015DEA000,,,2022-09-20 22:18:30,1 +4042,JoJos Bizarre Adventure All-Star Battle R - 01008120128C2000,01008120128C2000,status-playable,playable,2022-12-03 10:45:10,2 +4044,OneShot: World Machine EE,,,,2022-09-22 8:11:47,1 +4045,Taiko no Tatsujin: Rhythm Festival - 0100BCA0135A0000,0100BCA0135A0000,status-playable,playable,2023-11-13 13:16:34,17 +4046,Trinity Trigger - 01002D7010A54000,01002D7010A54000,status-ingame;crash,ingame,2023-03-03 3:09:09,4 +4048,太鼓之達人 咚咚雷音祭 - 01002460135a4000,01002460135a4000,,,2022-09-27 7:17:54,1 +4049,Life is Strange Remastered - 0100DC301186A000,0100DC301186A000,status-playable;UE4,playable,2022-10-03 16:54:44,12 +4050,Life is Strange: Before the Storm Remastered - 010008501186E000,010008501186E000,status-playable,playable,2023-09-28 17:15:44,4 +4051,Hatsune Miku: Project DIVA Mega Mix - 01001CC00FA1A000,01001CC00FA1A000,audio;status-playable;online-broken,playable,2024-01-07 23:12:57,10 +4053,Shovel Knight Dig - 0100B62017E68000,0100B62017E68000,,,2022-09-30 20:51:35,1 +4054,Couch Co-Op Bundle Vol. 2 - 01000E301107A000,01000E301107A000,status-playable;nvdec,playable,2022-10-02 12:04:21,1 +4056,Shadowverse: Champion’s Battle - 01003B90136DA000,01003B90136DA000,status-nothing;crash,nothing,2023-03-06 0:31:50,7 +4057,Jinrui no Ninasama he - 0100F4D00D8BE000,0100F4D00D8BE000,status-ingame;crash,ingame,2023-03-07 2:04:17,1 +4058,XEL - 0100CC9015360000,0100CC9015360000,gpu;status-ingame,ingame,2022-10-03 10:19:39,2 +4059,Catmaze - 01000A1018DF4000,01000A1018DF4000,,,2022-10-03 11:10:48,1 +4060,Lost Lands: Dark Overlord - 0100BDD010AC8000 ,0100BDD010AC8000,status-playable,playable,2022-10-03 11:52:58,1 +4061,STAR WARS Episode I: Racer - 0100BD100FFBE000 ,0100BD100FFBE000,slow;status-playable;nvdec,playable,2022-10-03 16:08:36,1 +4062,Story of Seasons: Friends of Mineral Town - 0100ED400EEC2000,0100ED400EEC2000,status-playable,playable,2022-10-03 16:40:31,1 +4063,Collar X Malice -Unlimited- - 0100E3B00F412000 ,0100E3B00F412000,status-playable;nvdec,playable,2022-10-04 15:30:40,1 +4064,Bullet Soul - 0100DA4017FC2000,0100DA4017FC2000,,,2022-10-05 9:41:49,1 +4065,Kwaidan ~Azuma manor story~ - 0100894011F62000 ,0100894011F62000,status-playable,playable,2022-10-05 12:50:44,1 +4066,Shantae: Risky's Revenge - Director's Cut - 0100ADA012370000,0100ADA012370000,status-playable,playable,2022-10-06 20:47:39,2 +4067,NieR:Automata The End of YoRHa Edition - 0100B8E016F76000,0100B8E016F76000,slow;status-ingame;crash,ingame,2024-05-17 1:06:34,23 +4069,Star Seeker: The secret of the sourcerous Standoff - 0100DFC018D86000,0100DFC018D86000,,,2022-10-09 15:46:05,1 +4072,Hyrule Warriors: Age of Calamity - Demo Version - 0100A2C01320E000,0100A2C01320E000,slow;status-playable,playable,2022-10-10 17:37:41,1 +4073,My Universe - Fashion Boutique - 0100F71011A0A000,0100F71011A0A000,status-playable;nvdec,playable,2022-10-12 14:54:19,1 +4075,Star Trek Prodigy: Supernova - 01009DF015776000,01009DF015776000,status-playable;nvdec;UE4;opengl-backend-bug,playable,2022-10-14 10:18:50,2 +4076,Dungeon Nightmares 1 + 2 Collection - 0100926013600000,0100926013600000,status-playable,playable,2022-10-17 18:54:22,1 +4077,Food Truck Tycoon - 0100F3900D0F0000 ,0100F3900D0F0000,status-playable,playable,2022-10-17 20:15:55,1 +4078,Persona 5 Royal - 01005CA01580EOO,,,,2022-10-17 21:00:21,1 +4079,Nintendo Switch Sports - 0100D2F00D5C0000,0100D2F00D5C0000,deadlock;status-boots,boots,2024-09-10 14:20:24,24 +4080,Grim Legends 2: Song Of The Dark Swan - 010078E012D80000,010078E012D80000,status-playable;nvdec,playable,2022-10-18 12:58:45,1 +4082,My Universe - Cooking Star Restaurant - 0100CD5011A02000,0100CD5011A02000,status-playable,playable,2022-10-19 10:00:44,1 +4083,Not Tonight - 0100DAF00D0E2000 ,0100DAF00D0E2000,status-playable;nvdec,playable,2022-10-19 11:48:47,1 +4084,Outbreak: The New Nightmare - 0100B450130FC000,0100B450130FC000,status-playable,playable,2022-10-19 15:42:07,1 +4085,Alan Wake Remaster - 01000623017A58000,01000623017A5800,,,2022-10-21 6:13:39,2 +4086,Persona 5 Royal - 01005CA01580E000,01005CA01580E000,gpu;status-ingame,ingame,2024-08-17 21:45:15,15 +4087,Shing! (サムライフォース:斬!) - 01009050133B4000,01009050133B4000,status-playable;nvdec,playable,2022-10-22 0:48:54,2 +4089,Mario + Rabbids® Sparks of Hope - 0100317013770000,0100317013770000,gpu;status-ingame;Needs Update,ingame,2024-06-20 19:56:19,35 +4090,3D Arcade Fishing - 010010C013F2A000,010010C013F2A000,status-playable,playable,2022-10-25 21:50:51,1 +4091,Aerial Knight's Never Yield - 0100E9B013D4A000,0100E9B013D4A000,status-playable,playable,2022-10-25 22:05:00,1 +4092,Aluna: Sentinel of the Shards - 010045201487C000,010045201487C000,status-playable;nvdec,playable,2022-10-25 22:17:03,1 +4093,Atelier Firis: The Alchemist and the Mysterious Journey DX - 010023201421E000,010023201421E000,gpu;status-ingame;nvdec,ingame,2022-10-25 22:46:19,1 +4094,Atelier Sophie: The Alchemist of the Mysterious Book DX - 01001A5014220000,01001A5014220000,status-playable,playable,2022-10-25 23:06:20,1 +4095,Backworlds - 0100FEA014316000,0100FEA014316000,status-playable,playable,2022-10-25 23:20:34,1 +4097,Bakumatsu Renka SHINSENGUMI - 01008260138C4000,01008260138C4000,status-playable,playable,2022-10-25 23:37:31,1 +4098,Bamerang - 01008D30128E0000,01008D30128E0000,status-playable,playable,2022-10-26 0:29:39,1 +4099,Battle Axe - 0100747011890000,0100747011890000,status-playable,playable,2022-10-26 0:38:01,1 +4100,Beautiful Desolation - 01006B0014590000,01006B0014590000,gpu;status-ingame;nvdec,ingame,2022-10-26 10:34:38,1 +4101,Bladed Fury - 0100DF0011A6A000,0100DF0011A6A000,status-playable,playable,2022-10-26 11:36:26,1 +4102,Boris The Rocket - 010092C013FB8000,010092C013FB8000,status-playable,playable,2022-10-26 13:23:09,1 +4103,BraveMatch - 010081501371E000,010081501371E000,status-playable;UE4,playable,2022-10-26 13:32:15,1 +4104,Brawl Chess - 010068F00F444000,010068F00F444000,status-playable;nvdec,playable,2022-10-26 13:59:17,1 +4108,CLANNAD Side Stories - 01007B01372C000,,status-playable,playable,2022-10-26 15:03:04,1 +4109,DC Super Hero Girls™: Teen Power - 0100F8F00C4F2000,0100F8F00C4F2000,nvdec,,2022-10-26 15:16:47,1 +4110,Devil Slayer - Raksasi - 01003C900EFF6000,01003C900EFF6000,status-playable,playable,2022-10-26 19:42:32,1 +4111,Disagaea 6: Defiance of Destiny Demo - 0100918014B02000,0100918014B02000,status-playable;demo,playable,2022-10-26 20:02:04,1 +4113,DreamWorks Spirit Lucky's Big Adventure - 0100236011B4C000,0100236011B4C000,status-playable,playable,2022-10-27 13:30:52,1 +4114,Dull Grey - 010068D0141F2000,010068D0141F2000,status-playable,playable,2022-10-27 13:40:38,1 +4115,Dunk Lords - 0100EC30140B6000,0100EC30140B6000,status-playable,playable,2024-06-26 0:07:26,3 +4116,Earth Defense Force: World Brothers - 0100298014030000,0100298014030000,status-playable;UE4,playable,2022-10-27 14:13:31,1 +4117,EQI - 01000FA0149B6000,01000FA0149B6000,status-playable;nvdec;UE4,playable,2022-10-27 16:42:32,1 +4118,Exodemon - 0100A82013976000,0100A82013976000,status-playable,playable,2022-10-27 20:17:52,1 +4119,Famicom Detective Club: The Girl Who Stands Behind - 0100D670126F6000,0100D670126F6000,status-playable;nvdec,playable,2022-10-27 20:41:40,1 +4120,Famicom Detective Club: The Missing Heir - 010033F0126F4000,010033F0126F4000,status-playable;nvdec,playable,2022-10-27 20:56:23,1 +4121,Fighting EX Layer Another Dash - 0100D02014048000,0100D02014048000,status-playable;online-broken;UE4,playable,2024-04-07 10:22:33,2 +4122,Fire: Ungh's Quest - 010025C014798000,010025C014798000,status-playable;nvdec,playable,2022-10-27 21:41:26,1 +4125,Haunted Dawn: The Zombie Apocalypse - 01009E6014F18000,01009E6014F18000,status-playable,playable,2022-10-28 12:31:51,1 +4126,Yomawari: The Long Night Collection - 010043D00BA3200,,Incomplete,,2022-10-29 10:23:17,6 +4128,Splatoon 3 - 0100C2500FC20000,0100C2500FC20000,status-playable;ldn-works;opengl-backend-bug;LAN;amd-vendor-bug,playable,2024-08-04 23:49:11,38 +4129,Bayonetta 3 - 01004A4010FEA000,01004A4010FEA000,gpu;status-ingame;crash;nvdec;vulkan-backend-bug;opengl-backend-bug;amd-vendor-bug;ASTC,ingame,2024-09-28 14:34:33,45 +4130,Instant Sports Tennis - 010031B0145B8000,010031B0145B8000,status-playable,playable,2022-10-28 16:42:17,1 +4131,Just Die Already - 0100AC600CF0A000,0100AC600CF0A000,status-playable;UE4,playable,2022-12-13 13:37:50,2 +4132,King of Seas Demo - 0100515014A94000,0100515014A94000,status-playable;nvdec;UE4,playable,2022-10-28 18:09:31,1 +4133,King of Seas - 01008D80148C8000,01008D80148C8000,status-playable;nvdec;UE4,playable,2022-10-28 18:29:41,1 +4134,Layers of Fear 2 - 01001730144DA000,01001730144DA000,status-playable;nvdec;UE4,playable,2022-10-28 18:49:52,1 +4135,Leisure Suit Larry - Wet Dreams Dry Twice - 010031A0135CA000,010031A0135CA000,status-playable,playable,2022-10-28 19:00:57,1 +4136,Life of Fly 2 - 010069A01506E000,010069A01506E000,slow;status-playable,playable,2022-10-28 19:26:52,1 +4137,Maneater - 010093D00CB22000,010093D00CB22000,status-playable;nvdec;UE4,playable,2024-05-21 16:11:57,3 +4138,Mighty Goose - 0100AD701344C000,0100AD701344C000,status-playable;nvdec,playable,2022-10-28 20:25:38,1 +4139,Missing Features 2D - 0100E3601495C000,0100E3601495C000,status-playable,playable,2022-10-28 20:52:54,1 +4140,Moorkuhn Kart 2 - 010045C00F274000,010045C00F274000,status-playable;online-broken,playable,2022-10-28 21:10:35,1 +4141,NINJA GAIDEN 3: Razor's Edge - 01002AF014F4C000,01002AF014F4C000,status-playable;nvdec,playable,2023-08-11 8:25:31,3 +4142,Nongunz: Doppelganger Edition - 0100542012884000,0100542012884000,status-playable,playable,2022-10-29 12:00:39,1 +4143,O---O - 01002E6014FC4000,01002E6014FC4000,status-playable,playable,2022-10-29 12:12:14,1 +4144,Off And On Again - 01006F5013202000,01006F5013202000,status-playable,playable,2022-10-29 19:46:26,3 +4145,Outbreak: Endless Nightmares - 0100A0D013464000,0100A0D013464000,status-playable,playable,2022-10-29 12:35:49,1 +4146,Picross S6 - 010025901432A000,010025901432A000,status-playable,playable,2022-10-29 17:52:19,1 +4147,Alfred Hitchcock - Vertigo - 0100DC7013F14000,0100DC7013F14000,,,2022-10-30 7:55:43,1 +4148,Port Royale 4 - 01007EF013CA0000,01007EF013CA0000,status-menus;crash;nvdec,menus,2022-10-30 14:34:06,1 +4149,Quantum Replica - 010045101288A000,010045101288A000,status-playable;nvdec;UE4,playable,2022-10-30 21:17:22,1 +4150,R-TYPE FINAL 2 - 0100F930136B6000,0100F930136B6000,slow;status-ingame;nvdec;UE4,ingame,2022-10-30 21:46:29,1 +4152,Retrograde Arena - 01000ED014A2C000,01000ED014A2C000,status-playable;online-broken,playable,2022-10-31 13:38:58,1 +4153,Rising Hell - 010020C012F48000,010020C012F48000,status-playable,playable,2022-10-31 13:54:02,1 +4154,Grand Theft Auto III - The Definitive Edition [0100C3C012718000],0100C3C012718000,,,2022-10-31 20:13:51,1 +4156,Grand Theft Auto: San Andreas - The Definitive Edition [010065A014024000],010065A014024000,,,2022-10-31 20:13:56,1 +4157,Hell Pie - 01000938017E5C000,01000938017E5C00,status-playable;nvdec;UE4,playable,2022-11-03 16:48:46,5 +4158,Zengeon - 0100057011E50000,0100057011E50000,services-horizon;status-boots;crash,boots,2024-04-29 15:43:07,2 +4159,Teenage Mutant Ninja Turtles: The Cowabunga Collection - 0100FDB0154E4000,0100FDB0154E4000,status-playable,playable,2024-01-22 19:39:04,2 +4160,Rolling Sky 2 - 0100579011B40000 ,0100579011B40000,status-playable,playable,2022-11-03 10:21:12,1 +4161,RWBY: Grimm Eclipse - 0100E21013908000,0100E21013908000,status-playable;online-broken,playable,2022-11-03 10:44:01,1 +4164,Shin Megami Tensei III Nocturne HD Remaster - 01003B0012DC2000,01003B0012DC2000,status-playable,playable,2022-11-03 22:53:27,1 +4165,BALDO THE GUARDIAN OWLS - 0100a75005e92000,0100a75005e92000,,,2022-11-04 6:36:18,1 +4166,Skate City - 0100134011E32000,0100134011E32000,status-playable,playable,2022-11-04 11:37:39,1 +4167,SnowRunner - 0100FBD13AB6000,,services;status-boots;crash,boots,2023-10-07 0:01:16,5 +4168,Spooky Chase - 010097C01336A000,010097C01336A000,status-playable,playable,2022-11-04 12:17:44,1 +4169,Strange Field Football - 01000A6013F86000,01000A6013F86000,status-playable,playable,2022-11-04 12:25:57,1 +4170,Subnautica Below Zero - 010014C011146000,010014C011146000,status-playable,playable,2022-12-23 14:15:13,1 +4171,Subnautica - 0100429011144000,0100429011144000,status-playable;vulkan-backend-bug,playable,2022-11-04 13:07:29,1 +4173,Pyramid Quest - 0100A4E017372000,0100A4E017372000,gpu;status-ingame,ingame,2023-08-16 21:14:52,3 +4174,Sonic Frontiers - 01004AD014BF0000,01004AD014BF0000,gpu;deadlock;status-ingame;amd-vendor-bug;intel-vendor-bug,ingame,2024-09-05 9:18:53,52 +4177,Metro 2033 Redux - 0100D4900E82C000,0100D4900E82C000,gpu;status-ingame,ingame,2022-11-09 10:53:13,3 +4180,Tactics Ogre Reborn - 0100E12013C1A000,0100E12013C1A000,status-playable;vulkan-backend-bug,playable,2024-04-09 6:21:35,3 +4182,"Good Night, Knight - 01003AD0123A2000",01003AD0123A2000,status-nothing;crash,nothing,2023-07-30 23:38:13,2 +4183,Sumire - 01003D50126A4000,01003D50126A4000,status-playable,playable,2022-11-12 13:40:43,1 +4184,Sunblaze - 0100BFE014476000,0100BFE014476000,status-playable,playable,2022-11-12 13:59:23,1 +4185,Taiwan Monster Fruit : Prologue - 010028E013E0A000,010028E013E0A000,Incomplete,,2022-11-12 14:10:20,1 +4187,Tested on Humans: Escape Room - 01006F701507A000,01006F701507A000,status-playable,playable,2022-11-12 14:42:52,1 +4188,The Longing - 0100F3D0122C2000,0100F3D0122C2000,gpu;status-ingame,ingame,2022-11-12 15:00:58,1 +4189,Total Arcade Racing - 0100A64010D48000,0100A64010D48000,status-playable,playable,2022-11-12 15:12:48,1 +4190,Very Very Valet - 0100379013A62000,0100379013A62000,status-playable;nvdec,playable,2022-11-12 15:25:51,1 +4191,Persona 4 Arena ULTIMAX [010075A016A3A000),010075A016A3A000,,,2022-11-12 17:27:51,1 +4192,Piofiore: Episodio 1926 - 01002B20174EE000,01002B20174EE000,status-playable,playable,2022-11-23 18:36:05,2 +4193,Seven Pirates H - 0100D6F016676000,0100D6F016676000,status-playable,playable,2024-06-03 14:54:12,3 +4194,Paradigm Paradox - 0100DC70174E0000,0100DC70174E0000,status-playable;vulkan-backend-bug,playable,2022-12-03 22:28:13,3 +4195,Wanna Survive - 0100D67013910000,0100D67013910000,status-playable,playable,2022-11-12 21:15:43,1 +4196,Wardogs: Red's Return - 010056901285A000,010056901285A000,status-playable,playable,2022-11-13 15:29:01,1 +4197,Warhammer Age of Sigmar: Storm Ground - 010031201307A000,010031201307A000,status-playable;nvdec;online-broken;UE4,playable,2022-11-13 15:46:14,1 +4198,Wing of Darkness - 010035B012F2000,,status-playable;UE4,playable,2022-11-13 16:03:51,1 +4199,Ninja Gaiden Sigma - 0100E2F014F46000,0100E2F014F46000,status-playable;nvdec,playable,2022-11-13 16:27:02,1 +4200,Ninja Gaiden Sigma 2 - 0100696014FA000,,status-playable;nvdec,playable,2024-07-31 21:53:48,12 +4201,MONSTER HUNTER STORIES 2: WINGS OF RUIN Trial Version - 010042501329E000,010042501329E000,status-playable;demo,playable,2022-11-13 22:20:26,1 +4202,112 Operator - 0100D82015774000,0100D82015774000,status-playable;nvdec,playable,2022-11-13 22:42:50,1 +4204,Aery - Calm Mind - 0100A801539000,,status-playable,playable,2022-11-14 14:26:58,1 +4205,Alex Kidd in Miracle World DX - 010025D01221A000,010025D01221A000,status-playable,playable,2022-11-14 15:01:34,1 +4209,Atari 50 The Anniversary Celebration - 010099801870E000,010099801870E000,slow;status-playable,playable,2022-11-14 19:42:10,4 +4210,FOOTBALL MANAGER 2023 TOUCH - 0100EDC01990E000,0100EDC01990E000,gpu;status-ingame,ingame,2023-08-01 3:40:53,15 +4212,ARIA CHRONICLE - 0100691013C46000,0100691013C46000,status-playable,playable,2022-11-16 13:50:55,1 +4216,B.ARK - 01009B901145C000,01009B901145C000,status-playable;nvdec,playable,2022-11-17 13:35:02,1 +4217,Pokémon Violet - 01008F6008C5E000,01008F6008C5E000,gpu;status-ingame;nvdec;ldn-works;amd-vendor-bug;mac-bug,ingame,2024-07-30 2:51:48,39 +4218,Pokémon Scarlet - 0100A3D008C5C000,0100A3D008C5C000,gpu;status-ingame;nvdec;ldn-works;amd-vendor-bug,ingame,2023-12-14 13:18:29,36 +4219,Bear's Restaurant - 0100CE014A4E000,,status-playable,playable,2024-08-11 21:26:59,2 +4220,BeeFense BeeMastered - 010018F007786000,010018F007786000,status-playable,playable,2022-11-17 15:38:12,1 +4222,Oddworld: Soulstorm - 0100D210177C6000,0100D210177C6000,services-horizon;status-boots;crash,boots,2024-08-18 13:13:26,6 +4224,Aquarium Hololive All CG,,,,2022-11-19 5:12:23,1 +4225,Billion Road - 010057700FF7C000,010057700FF7C000,status-playable,playable,2022-11-19 15:57:43,1 +4226,No Man’s Sky - 0100853015E86000,0100853015E86000,gpu;status-ingame,ingame,2024-07-25 5:18:17,13 +4228,Lunistice - 0100C2E01254C000,0100C2E01254C000,,,2022-11-23 18:44:18,1 +4229,The Oregon Trail - 0100B080184BC000,0100B080184BC000,gpu;status-ingame,ingame,2022-11-25 16:11:49,12 +4232,Smurfs Kart - 01009790186FE000,01009790186FE000,status-playable,playable,2023-10-18 0:55:00,6 +4233,DYSMANTLE - 010008900BC5A000,010008900BC5A000,gpu;status-ingame,ingame,2024-07-15 16:24:12,2 +4234,Happy Animals Mini Golf - 010066C018E50000,010066C018E50000,gpu;status-ingame,ingame,2022-12-04 19:24:28,2 +4237,Pocket Pool - 010019F019168000,010019F019168000,,,2022-11-27 3:36:39,1 +4238,7 Days of Rose - 01002D3019654000,01002D3019654000,,,2022-11-27 20:46:16,1 +4239,Garfield Lasagna Party - 01003C401895E000,01003C401895E000,,,2022-11-27 21:21:09,1 +4240,Paper Bad - 01002A0019914000,01002A0019914000,,,2022-11-27 22:01:45,1 +4242,Ultra Kaiju Monster Rancher - 01008E0019388000,01008E0019388000,,,2022-11-28 2:37:06,1 +4244,The Legend of Heroes: Trails from Zero - 01001920156C2000,01001920156C2000,gpu;status-ingame;mac-bug,ingame,2024-09-14 21:41:41,5 +4249,Harvestella - 0100A280187BC000,0100A280187BC000,status-playable;UE4;vulkan-backend-bug;mac-bug,playable,2024-02-13 7:04:11,4 +4251,Ace Angler: Fishing Spirits - 01007C50132C8000,01007C50132C8000,status-menus;crash,menus,2023-03-03 3:21:39,2 +4255,WHITE DAY : A labyrinth named school - 010076601839C000,010076601839C000,,,2022-12-03 7:17:03,1 +4257,Bravery and Greed - 0100F60017D4E000,0100F60017D4E000,gpu;deadlock;status-boots,boots,2022-12-04 2:23:47,2 +4260,River City Girls 2 - 01002E80168F4000,01002E80168F4000,status-playable,playable,2022-12-07 0:46:27,1 +4262,SAMURAI MAIDEN - 01003CE018AF6000,01003CE018AF6000,,,2022-12-05 2:56:48,1 +4263,Front Mission 1st Remake - 0100F200178F4000,0100F200178F4000,status-playable,playable,2023-06-09 7:44:24,9 +4267,Cardfight!! Vanguard Dear Days - 0100097016B04000,0100097016B04000,,,2022-12-06 0:37:12,1 +4268,MOL SOCCER ONLINE Lite - 010034501756C000,010034501756C000,,,2022-12-06 0:41:58,1 +4269,Goonya Monster - 010026301785A000,010026301785A000,,,2022-12-06 0:46:24,1 +4273,Battle Spirits Connected Battlers - 01009120155CC000,01009120155CC000,,,2022-12-07 0:21:33,1 +4274,TABE-O-JA - 0100E330127FC000,0100E330127FC000,,,2022-12-07 0:26:47,1 +4276,Solomon Program - 01008A801370C000,01008A801370C000,,,2022-12-07 0:33:02,1 +4278,Dragon Quest Treasures - 0100217014266000,0100217014266000,gpu;status-ingame;UE4,ingame,2023-05-09 11:16:52,11 +4279,Sword of the Necromancer - 0100E4701355C000,0100E4701355C000,status-ingame;crash,ingame,2022-12-10 1:28:39,2 +4280,Dragon Prana - 01001C5019074000,01001C5019074000,,,2022-12-10 2:10:53,1 +4281,Burger Patrol - 010013D018E8A000,010013D018E8A000,,,2022-12-10 2:12:02,1 +4284,Witch On The Holy Night - 010012A017F18800,010012A017F18800,status-playable,playable,2023-03-06 23:28:11,3 +4285,Hakoniwa Ranch Sheep Village - 010059C017346000 ,010059C017346000,,,2022-12-13 3:04:03,1 +4286,KASIORI - 0100E75014D7A000,0100E75014D7A000,,,2022-12-13 3:05:00,1 +4287,CRISIS CORE –FINAL FANTASY VII– REUNION - 01004BC0166CC000,01004BC0166CC000,status-playable,playable,2022-12-19 15:53:59,3 +4288,Bitmaster - 010026E0141C8000,010026E0141C8000,status-playable,playable,2022-12-13 14:05:51,1 +4289,Black Book - 0100DD1014AB8000,0100DD1014AB8000,status-playable;nvdec,playable,2022-12-13 16:38:53,1 +4290,Carnivores: Dinosaur Hunt,,status-playable,playable,2022-12-14 18:46:06,1 +4297,Trivial Pursuit Live! 2 - 0100868013FFC000,0100868013FFC000,status-boots,boots,2022-12-19 0:04:33,6 +4300,Astrologaster - 0100B80010C48000,0100B80010C48000,cpu;status-nothing;32-bit;crash,nothing,2023-06-28 15:39:31,3 +4303,Factorio - 01004200189F4000,01004200189F4000,deadlock;status-boots,boots,2024-06-11 19:26:16,8 +4305,The Punchuin - 01004F501962C000,01004F501962C000,,,2022-12-28 0:51:46,2 +4306,Adventure Academia The Fractured Continent - 01006E6018570000,01006E6018570000,,,2022-12-29 3:35:04,1 +4307,Illusion Garden Story ~Daiichi Sangyo Yuukarin~ - 01003FE0168EA000,01003FE0168EA000,,,2022-12-29 3:39:06,1 +4308,Popplings - 010063D019A70000,010063D019A70000,,,2022-12-29 3:42:21,1 +4309,Sports Story - 010025B0100D0000,010025B0100D0000,,,2022-12-29 3:45:54,1 +4310,Death Bite Shibito Magire - 01002EB01802A000,01002EB01802A000,,,2022-12-29 3:51:54,1 +4311,Yu-Gi-Oh! Rush Duel: Dawn of the Battle Royale!! Let's Go! Go Rush!! - 01002D60188DE000,01002D60188DE000,status-ingame;crash,ingame,2023-03-17 1:54:01,2 +4312,Asphalt 9 Legends - 01007B000C834800,01007B000C834800,,,2022-12-30 5:19:35,1 +4313,Arcade Archives TETRIS THE GRAND MASTER - 0100DFD016B7A000,0100DFD016B7A000,status-playable,playable,2024-06-23 1:50:29,3 +4314,Funny action Great adventure for good adults - 0100BB1018082000,0100BB1018082000,,,2023-01-01 3:13:21,1 +4315,Fairy Fencer F Refrain Chord - 010048C01774E000,010048C01774E000,,,2023-01-01 3:15:45,1 +4320,Needy Streamer Overload,,,,2023-01-01 23:24:14,1 +4321,Absolute Hero Remodeling Plan - 0100D7D015CC2000,0100D7D015CC2000,,,2023-01-02 3:42:59,1 +4322,Fourth God -Reunion- - 0100BF50131E6000,0100BF50131E6000,,,2023-01-02 3:45:28,1 +4323,Doll Princess of Marl Kingdom - 010078E0181D0000,010078E0181D0000,,,2023-01-02 3:49:45,1 +4324,Oshiritantei Pupupu Mirai no Meitantei Tojo! - 01000F7014504000,01000F7014504000,,,2023-01-02 3:51:59,1 +4325,Moshikashite Obake no Shatekiya for Nintendo Switch - 0100B580144F6000,0100B580144F6000,,,2023-01-02 3:55:10,1 +4326,Platinum Train-A trip through Japan - 0100B9400654E000,0100B9400654E000,,,2023-01-02 3:58:00,1 +4327,Deadly Eating Adventure Meshi - 01007B70146F6000,01007B70146F6000,,,2023-01-02 4:00:31,1 +4328,Gurimugurimoa OnceMore - 01003F5017760000,01003F5017760000,,,2023-01-02 4:03:49,1 +4329,Neko-Tomo - 0100FA00082BE000,0100FA00082BE000,,,2023-01-03 4:43:05,1 +4330,Wreckfest - 0100DC0012E48000,0100DC0012E48000,status-playable,playable,2023-02-12 16:13:00,2 +4331,VARIOUS DAYLIFE - 0100538017BAC000,0100538017BAC000,,,2023-01-03 13:41:46,1 +4332,WORTH LIFE - 0100D46014648000,0100D46014648000,,,2023-01-04 2:58:27,1 +4333,void* tRrLM2(); //Void Terrarium 2 - 010078D0175EE000,010078D0175EE000,status-playable,playable,2023-12-21 11:00:41,3 +4334,Witch's Garden - 010061501904E000,010061501904E000,gpu;status-ingame;crash;vulkan-backend-bug;opengl-backend-bug,ingame,2023-01-11 2:11:24,1 +4337,PUI PUI MOLCAR Let’s! MOLCAR PARTY! - 01004F6015612000,01004F6015612000,,,2023-01-05 23:05:00,1 +4339,Galleria Underground Labyrinth and the Witch’s Brigade - 01007010157B4000,01007010157B4000,,,2023-01-07 1:05:40,1 +4340,Simona's Requiem - 0100E8C019B36000,0100E8C019B36000,gpu;status-ingame,ingame,2023-02-21 18:29:19,2 +4342,Sonic Frontiers: Demo - 0100D0201A062000,0100D0201A062000,,,2023-01-07 14:50:19,1 +4345,Alphadia Neo - 010043101944A000,010043101944A000,,,2023-01-09 1:47:53,1 +4346,It’s Kunio-kun’s Three Kingdoms! - 0100056014DE0000,0100056014DE0000,,,2023-01-09 1:50:08,1 +4347,Neon White - 0100B9201406A000,0100B9201406A000,status-ingame;crash,ingame,2023-02-02 22:25:06,9 +4349,Typing Quest - 0100B7101475E000,0100B7101475E000,,,2023-01-10 3:23:00,1 +4350,Moorhuhn Jump and Run Traps and Treasures - 0100E3D014ABC000,0100E3D014ABC000,status-playable,playable,2024-03-08 15:10:02,2 +4351,Bandit Detective Buzzard - 01005DB0180B4000,01005DB0180B4000,,,2023-01-10 3:27:34,1 +4355,Curved Space - 0100CE5014026000,0100CE5014026000,status-playable,playable,2023-01-14 22:03:50,1 +4356,Destroy All Humans! - 01009E701356A000,01009E701356A000,gpu;status-ingame;nvdec;UE4,ingame,2023-01-14 22:23:53,1 +4357,Dininho Space Adventure - 010027E0158A6000,010027E0158A6000,status-playable,playable,2023-01-14 22:43:04,1 +4358,Vengeful Guardian: Moonrider - 01003A8018E60000,01003A8018E60000,deadlock;status-boots,boots,2024-03-17 23:35:37,11 +4359,Sumikko Gurashi Atsumare! Sumikko Town - 0100508013B26000,0100508013B26000,,,2023-01-16 4:42:55,1 +4360,Lone Ruin - 0100B6D016EE6000,0100B6D016EE6000,status-ingame;crash;nvdec,ingame,2023-01-17 6:41:19,3 +4363,Falcon Age - 0100C3F011B58000,0100C3F011B58000,,,2023-01-17 2:43:00,1 +4367,Persona 4 Golden - 010062B01525C000,010062B01525C000,status-playable,playable,2024-08-07 17:48:07,15 +4369,Persona 3 Portable - 0100DCD01525A000,0100DCD01525A000,,,2023-01-19 20:20:27,1 +4370,Fire Emblem: Engage - 0100A6301214E000,0100A6301214E000,status-playable;amd-vendor-bug;mac-bug,playable,2024-09-01 23:37:26,49 +4373,Sifu - 01007B5017A12000,01007B5017A12000,,,2023-01-20 19:58:54,5 +4374,Silver Nornir - 0100D1E018F26000,0100D1E018F26000,,,2023-01-21 4:25:06,1 +4375,Together - 010041C013C94000,010041C013C94000,,,2023-01-21 4:26:20,1 +4376,Party Party Time - 0100C6A019C84000,0100C6A019C84000,,,2023-01-21 4:27:40,1 +4379,Sumikko Gurashi Gakkou Seikatsu Hajimerun desu - 010070800D3E2000,010070800D3E2000,,,2023-01-22 2:47:34,1 +4380,Sumikko Gurashi Sugoroku every time in the corner - 0100713012BEC000,0100713012BEC000,,,2023-01-22 2:49:00,1 +4381,EA SPORTS FIFA 23 Nintendo Switch™ Legacy Edition - 01001C8016B4E000,01001C8016B4E000,gpu;status-ingame;crash,ingame,2024-06-10 23:33:05,26 +4382,Gesshizu Mori no Chiisana Nakama-tachi - 0100A0D011014000,0100A0D011014000,,,2023-01-23 3:56:43,1 +4383,Chickip Dancers Norinori Dance de Kokoro mo Odoru - 0100D85017B26000,0100D85017B26000,,,2023-01-23 3:56:47,1 +4384,Go Rally - 010055A0161F4000,010055A0161F4000,gpu;status-ingame,ingame,2023-08-16 21:18:23,5 +4385,Devil Kingdom - 01002F000E8F2000,01002F000E8F2000,status-playable,playable,2023-01-31 8:58:44,2 +4388,Cricket 22 - 0100387017100000,0100387017100000,status-boots;crash,boots,2023-10-18 8:01:57,2 +4389,サマータイムレンダ Another Horizon - 01005940182ec000,01005940182ec000,,,2023-01-28 2:15:25,1 +4390,Letters - a written adventure - 0100CE301678E800,0100CE301678E800,gpu;status-ingame,ingame,2023-02-21 20:12:38,2 +4391,Prinny Presents NIS Classics Volume 1 - 0100A6E01681C000,0100A6E01681C000,status-boots;crash;Needs Update,boots,2023-02-02 7:23:09,5 +4392,SpongeBob SquarePants The Cosmic Shake - 01009FB0172F4000,01009FB0172F4000,gpu;status-ingame;UE4,ingame,2023-08-01 19:29:53,3 +4393,THEATRHYTHM FINAL BAR LINE DEMO Version - 01004C5018BC4000,01004C5018BC4000,,,2023-02-01 16:59:55,1 +4395,"Blue Reflection: Second Light [USA, Europe] - 010071C013390000",010071C013390000,,,2023-02-02 2:44:04,1 +4396,牧場物語 Welcome!ワンダフルライフ - 0100936018EB4000,0100936018EB4000,status-ingame;crash,ingame,2023-04-25 19:43:52,6 +4397,Coromon - 010048D014322000,010048D014322000,,,2023-02-03 0:47:51,1 +4399,Exitman Deluxe - 0100648016520000,0100648016520000,,,2023-02-04 2:02:03,1 +4400,Life is Strange 2 - 0100FD101186C000,0100FD101186C000,status-playable;UE4,playable,2024-07-04 5:05:58,5 +4401,Fashion Police Squad,,Incomplete,,2023-02-05 12:36:50,2 +4402,Grindstone - 0100538012496000,0100538012496000,status-playable,playable,2023-02-08 15:54:06,2 +4403,Kemono Friends Picross - 01004B100BDA2000,01004B100BDA2000,status-playable,playable,2023-02-08 15:54:34,2 +4404,Picross Lord Of The Nazarick - 010012100E8DC000,010012100E8DC000,status-playable,playable,2023-02-08 15:54:56,2 +4406,Shovel Knight Pocket Dungeon - 01006B00126EC000,01006B00126EC000,,,2023-02-08 20:12:10,1 +4407,Game Boy - Nintendo Switch Online - 0100C62011050000,0100C62011050000,status-playable,playable,2023-03-21 12:43:48,2 +4408,ゲームボーイ Nintendo Switch Online - 0100395011044000,0100395011044000,,,2023-02-08 23:53:21,1 +4409,Game Boy Advance - Nintendo Switch Online - 010012F017576000,010012F017576000,status-playable,playable,2023-02-16 20:38:15,4 +4410,Kirby’s Return to Dream Land Deluxe - Demo - 010091D01A57E000,010091D01A57E000,status-playable;demo,playable,2023-02-18 17:21:55,3 +4411,Metroid Prime Remastered - 010012101468C000,010012101468C000,gpu;status-ingame;Needs Update;vulkan-backend-bug;opengl-backend-bug,ingame,2024-05-07 22:48:15,53 +4413,WBSC eBASEBALL: POWER PROS - 01007D9019626000,01007D9019626000,,,2023-02-09 2:56:56,1 +4414,Tricky Towers - 010015F005C8E000,010015F005C8E000,,,2023-02-09 14:58:15,1 +4415,Clunky Hero - [0100879019212000],0100879019212000,,,2023-02-10 7:41:34,1 +4416,Mercenaries Lament Requiem of the Silver Wolf - 0100E44019E4C000,0100E44019E4C000,,,2023-02-11 4:36:39,1 +4417,Pixel Cup Soccer Ultimate Edition - 0100E17019782000,0100E17019782000,,,2023-02-11 14:28:11,1 +4418,Sea of Stars Demo - 010036F0182C4000,010036F0182C4000,status-playable;demo,playable,2023-02-12 15:33:56,2 +4419,MistWorld the after - 010003801579A000,010003801579A000,,,2023-02-13 3:40:17,1 +4420,MistWorld the after 2 - 0100C50016CD6000,0100C50016CD6000,,,2023-02-13 3:40:23,1 +4421,Wonder Boy Anniversary Collection - 0100B49016FF0000,0100B49016FF0000,deadlock;status-nothing,nothing,2023-04-20 16:01:48,2 +4422,OddBallers - 010079A015976000,010079A015976000,,,2023-02-13 3:40:35,1 +4423,Game Doraemon Nobita’s Space War 2021 - 01000200128A4000,01000200128A4000,,,2023-02-14 2:52:57,1 +4424,Doraemon Nobita’s Brain Exercise Adventure - 0100E6F018D10000,0100E6F018D10000,,,2023-02-14 2:54:51,1 +4425,Makai Senki Disgaea 7 - 0100A78017BD6000,0100A78017BD6000,status-playable,playable,2023-10-05 0:22:18,3 +4427,Blanc - 010039501405E000,010039501405E000,gpu;slow;status-ingame,ingame,2023-02-22 14:00:13,3 +4428,Arcade Machine Gopher’s Revenge - 0100DCB019CAE000,0100DCB019CAE000,,,2023-02-15 21:48:46,1 +4429,Santa Claus Goblins Attack - 0100A0901A3E4000,0100A0901A3E4000,,,2023-02-15 21:48:50,1 +4430,Garden of Pets - 010075A01A312000,010075A01A312000,,,2023-02-15 21:48:52,1 +4431,THEATRHYTHM FINAL BAR LINE - 010024201834A000,010024201834A000,status-playable,playable,2023-02-19 19:58:57,5 +4432,Rob Riches - 010061501A2B6000,010061501A2B6000,,,2023-02-16 4:44:01,1 +4433,Cuddly Forest Friends - 01005980198D4000,01005980198D4000,,,2023-02-16 4:44:04,1 +4434,Dragon Quest X Awakening Five Races Offline - 0100E2E0152E4000,0100E2E0152E4000,status-playable;nvdec;UE4,playable,2024-08-20 10:04:24,4 +4435,Persona 5 Strikers Bonus Content - (01002F101340C000),01002F101340C000,,,2023-02-16 20:29:01,1 +4436,Let’s play duema! - 0100EFC0152E0000,0100EFC0152E0000,,,2023-02-18 3:09:55,1 +4437,Let’s play duema Duel Masters! 2022 - 010006C017354000,010006C017354000,,,2023-02-18 3:09:58,1 +4438,Heterogeneous Strongest King Encyclopedia Battle Coliseum - 0100BD00198AA000,0100BD00198AA000,,,2023-02-18 3:10:01,1 +4439,Hopping Girl Kohane EX - 0100D2B018F5C000,0100D2B018F5C000,,,2023-02-19 0:57:25,1 +4440,Earth Defense Force 2 for Nintendo Switch - 010082B013C8C000,010082B013C8C000,,,2023-02-19 1:13:14,1 +4441,Earth Defense Force 3 for Nintendo Switch - 0100E87013C98000,0100E87013C98000,,,2023-02-19 1:13:21,1 +4442,PAC-MAN WORLD Re-PAC - 0100D4401565E000,0100D4401565E000,,,2023-02-19 18:49:11,1 +4443,Eastward - 010071B00F63A000,010071B00F63A000,,,2023-02-19 19:50:36,1 +4444,Arcade Archives THE NEWZEALAND STORY - 010045D019FF0000,010045D019FF0000,,,2023-02-20 1:59:58,1 +4445,Foxy’s Coin Hunt - 0100EE401A378000,0100EE401A378000,,,2023-02-20 2:00:00,1 +4446,Samurai Warrior - 0100B6501A360000,0100B6501A360000,status-playable,playable,2023-02-27 18:42:38,2 +4447,NCL USA Bowl - 010004801A450000,010004801A450000,,,2023-02-20 2:00:05,1 +4448,Hentai RPG Isekai Journey - 010025A019C02000,010025A019C02000,,,2023-02-20 2:00:08,1 +4449,Dadish - 0100B8B013310000,0100B8B013310000,,,2023-02-20 23:19:02,1 +4450,Dadish 2 - 0100BB70140BA000,0100BB70140BA000,,,2023-02-20 23:28:43,1 +4451,Dadish 3 - 01001010181AA000,01001010181AA000,,,2023-02-20 23:38:55,1 +4453,Digimon World: Next Order - 0100F00014254000,0100F00014254000,status-playable,playable,2023-05-09 20:41:06,9 +4454,PAW Patrol The Movie: Adventure City Calls - 0100FFE013628000,0100FFE013628000,,,2023-02-22 14:09:11,1 +4455,PAW Patrol: Grand Prix - 0100360016800000,0100360016800000,gpu;status-ingame,ingame,2024-05-03 16:16:11,2 +4456,Gigantosaurus Dino Kart - 01001890167FE000,01001890167FE000,,,2023-02-23 3:15:01,1 +4457,Rise Of Fox Hero - 0100A27018ED0000,0100A27018ED0000,,,2023-02-23 3:15:04,1 +4458,MEGALAN 11 - 0100C7501360C000,0100C7501360C000,,,2023-02-23 3:15:06,1 +4459,Rooftop Renegade - 0100644012F0C000,0100644012F0C000,,,2023-02-23 3:15:10,1 +4460,Kirby’s Return to Dream Land Deluxe - 01006B601380E000,01006B601380E000,status-playable,playable,2024-05-16 19:58:04,14 +4461,Snow Bros. Special - 0100bfa01787c000,0100bfa01787c000,,,2023-02-24 2:25:54,1 +4462,Toree 2 - 0100C7301658C000,0100C7301658C000,,,2023-02-24 3:15:04,1 +4463,Red Hands - 2 Player Games - 01003B2019424000,01003B2019424000,,,2023-02-24 3:53:12,1 +4464,nPaint - 0100917019FD6000,0100917019FD6000,,,2023-02-24 3:53:18,1 +4465,Octopath Traveler II - 0100A3501946E000,0100A3501946E000,gpu;status-ingame;amd-vendor-bug,ingame,2024-09-22 11:39:20,29 +4466,Planet Cube Edge - 01007EA019CFC000,01007EA019CFC000,status-playable,playable,2023-03-22 17:10:12,2 +4467,Rumble Sus - 0100CE201946A000,0100CE201946A000,,,2023-02-25 2:19:01,1 +4468,Easy Come Easy Golf - 0100ECF01800C000,0100ECF01800C000,status-playable;online-broken;regression,playable,2024-04-04 16:15:00,5 +4470,Piano Learn and Play - 010038501A6B8000,010038501A6B8000,,,2023-02-26 2:57:12,1 +4471,nOS new Operating System - 01008AE019614000,01008AE019614000,status-playable,playable,2023-03-22 16:49:08,2 +4472,XanChuchamel - 0100D970191B8000,0100D970191B8000,,,2023-02-26 2:57:19,1 +4477,Rune Factory 3 Special - 01001EF017BE6000,01001EF017BE6000,,,2023-03-02 5:34:40,1 +4478,Light Fingers - 0100A0E005E42000,0100A0E005E42000,,,2023-03-03 3:04:09,1 +4479,Disaster Detective Saiga An Indescribable Mystery - 01005BF01A3EC000,01005BF01A3EC000,,,2023-03-04 0:34:26,1 +4480,Touhou Gouyoku Ibun ~ Sunken Fossil World. - 0100031018CFE000,0100031018CFE000,,,2023-03-04 0:34:29,1 +4485,Ninja Box - 0100272009E32000,0100272009E32000,,,2023-03-06 0:31:44,1 +4487,Rubber Bandits - 010060801843A000,010060801843A000,,,2023-03-07 22:26:57,1 +4489,Arcade Archives DON DOKO DON - 0100B6201A2AA000,0100B6201A2AA000,,,2023-03-14 0:13:52,1 +4490,Knights and Guns - 010060A011ECC000,010060A011ECC000,,,2023-03-14 0:13:54,1 +4491,Process of Elimination Demo - 01007F6019E2A000,01007F6019E2A000,,,2023-03-14 0:13:57,1 +4492,DREDGE [ CHAPTER ONE ] - 01000AB0191DA000,01000AB0191DA000,,,2023-03-14 1:49:12,1 +4493,Bayonetta Origins Cereza and the Lost Demon Demo - 010002801A3FA000,010002801A3FA000,gpu;status-ingame;demo,ingame,2024-02-17 6:06:28,4 +4494,Yo-Kai Watch 4++ - 010086C00AF7C000,010086C00AF7C000,status-playable,playable,2024-06-18 20:21:44,13 +4495,Tama Cannon - 0100D8601A848000,0100D8601A848000,,,2023-03-15 1:08:05,1 +4496,The Smile Alchemist - 0100D1C01944E000,0100D1C01944E000,,,2023-03-15 1:08:08,1 +4497,Caverns of Mars Recharged - 01009B201A10E000,01009B201A10E000,,,2023-03-15 1:08:12,1 +4498,Roniu's Tale - 010007E0193A2000,010007E0193A2000,,,2023-03-15 1:08:18,1 +4499,Mythology Waifus Mahjong - 0100C7101A5BE000,0100C7101A5BE000,,,2023-03-15 1:08:23,1 +4500,emoji Kart Racer - 0100AC601A26A000,0100AC601A26A000,,,2023-03-17 1:53:50,1 +4501,Self gunsbase - 01006BB015486000,01006BB015486000,,,2023-03-17 1:53:53,1 +4502,Melon Journey - 0100F68019636000,0100F68019636000,status-playable,playable,2023-04-23 21:20:01,3 +4503,Bayonetta Origins: Cereza and the Lost Demon - 0100CF5010FEC000,0100CF5010FEC000,gpu;status-ingame,ingame,2024-02-27 1:39:49,20 +4504,Uta no prince-sama All star After Secret - 01008030149FE000,01008030149FE000,,,2023-03-18 16:08:20,1 +4505,Hampuzz - 0100D85016326000,0100D85016326000,,,2023-03-19 0:39:40,1 +4506,Gotta Protectors Cart of Darkness - 01007570160E2000,01007570160E2000,,,2023-03-19 0:39:43,1 +4507,Game Type DX - 0100433017DAC000,0100433017DAC000,,,2023-03-20 0:29:23,1 +4508,Ray'z Arcade Chronology - 010088D018302000,010088D018302000,,,2023-03-20 0:29:26,1 +4509,Ruku's HeartBalloon - 01004570192D8000,01004570192D8000,,,2023-03-20 0:29:30,1 +4510,Megaton Musashi - 01001AD00E41E000,01001AD00E41E000,,,2023-03-21 1:11:33,1 +4511,Megaton Musashi X - 0100571018A70000,0100571018A70000,,,2023-03-21 1:11:39,1 +4513,In the Mood - 0100281017990000,0100281017990000,,,2023-03-22 0:53:54,1 +4514,Sixtar Gate STARTRAIL - 0100D29019BE4000,0100D29019BE4000,,,2023-03-22 0:53:57,1 +4515,Spelunker HD Deluxe - 010095701381A000,010095701381A000,,,2023-03-22 0:54:02,1 +4518,Pizza Tycoon - 0100A6301788E000,0100A6301788E000,,,2023-03-23 2:00:04,1 +4520,Cubic - 010081F00EAB8000,010081F00EAB8000,,,2023-03-23 2:00:12,1 +4523,Sherlock Purr - 010019F01AD78000,010019F01AD78000,,,2023-03-24 2:21:34,1 +4524,Blocky Farm - 0100E21016A68000,0100E21016A68000,,,2023-03-24 2:21:40,1 +4525,SD Shin Kamen Rider Ranbu [ SD シン・仮面ライダー 乱舞 ] - 0100CD40192AC000,0100CD40192AC000,,,2023-03-24 23:07:40,3 +4526,Peppa Pig: World Adventures - 0100FF1018E00000,0100FF1018E00000,Incomplete,,2023-03-25 7:46:56,3 +4528,Remnant: From the Ashes - 010010F01418E000,010010F01418E000,,,2023-03-26 20:30:16,2 +4529,Titanium Hound - 010010B0195EE000,010010B0195EE000,,,2023-03-26 19:06:35,1 +4530,MLB® The Show™ 23 - 0100913019170000,0100913019170000,gpu;status-ingame,ingame,2024-07-26 0:56:50,9 +4531,Grim Guardians Demon Purge - 0100B5301A180000,0100B5301A180000,,,2023-03-29 2:03:41,1 +4535,Blade Assault - 0100EA1018A2E000,0100EA1018A2E000,audio;status-nothing,nothing,2024-04-29 14:32:50,2 +4537,Bubble Puzzler - 0100FB201A21E000,0100FB201A21E000,,,2023-04-03 1:55:12,1 +4538,Tricky Thief - 0100F490198B8000,0100F490198B8000,,,2023-04-03 1:56:44,1 +4539,Scramballed - 0100106016602000,0100106016602000,,,2023-04-03 1:58:08,1 +4540,SWORD ART ONLINE Alicization Lycoris - 0100C6C01225A000,0100C6C01225A000,,,2023-04-03 2:03:00,1 +4542,Alice Gear Aegis CS Concerto of Simulatrix - 0100EEA0184C6000,0100EEA0184C6000,,,2023-04-05 1:40:02,1 +4543,Curse of the Sea Rats - 0100B970138FA000,0100B970138FA000,,,2023-04-08 15:56:01,1 +4544,THEATRHYTHM FINAL BAR LINE - 010081B01777C000,010081B01777C000,status-ingame;Incomplete,ingame,2024-08-05 14:24:55,6 +4545,Assault Suits Valken DECLASSIFIED - 0100FBC019042000,0100FBC019042000,,,2023-04-11 1:05:19,1 +4546,Xiaomei and the Flame Dragons Fist - 010072601922C000,010072601922C000,,,2023-04-11 1:06:46,1 +4547,Loop - 0100C88019092000,0100C88019092000,,,2023-04-11 1:08:03,1 +4548,Volley Pals - 01003A301A29E000,01003A301A29E000,,,2023-04-12 1:37:14,1 +4549,Catgotchi Virtual Pet - 0100CCF01A884000,0100CCF01A884000,,,2023-04-12 1:37:24,1 +4551,Pizza Tower - 05000FD261232000,05000FD261232000,status-ingame;crash,ingame,2024-09-16 0:21:56,6 +4552,Megaman Battle Network Legacy Collection Vol 1 - 010038E016264000,010038E016264000,status-playable,playable,2023-04-25 3:55:57,2 +4554,Process of Elimination - 01005CC018A32000,01005CC018A32000,,,2023-04-17 0:46:22,1 +4555,Detective Boys and the Strange Karakuri Mansion on the Hill [ 少年探偵団と丘の上の奇妙なカラクリ屋敷 ] - 0100F0801A5E8000,0100F0801A5E8000,,,2023-04-17 0:49:26,1 +4556,Dokapon Kingdom Connect [ ドカポンキングダムコネクト ] - 0100AC4018552000,0100AC4018552000,,,2023-04-17 0:53:37,1 +4557,Pixel Game Maker Series Tentacled Terrors Tyrannize Terra - 010040A01AABE000,010040A01AABE000,,,2023-04-18 2:29:14,1 +4558,Ultra Pixel Survive - 0100472019812000,0100472019812000,,,2023-04-18 2:29:20,1 +4559,PIANOFORTE - 0100D6D016F06000,0100D6D016F06000,,,2023-04-18 2:29:25,1 +4560,NASCAR Rivals - 0100545016D5E000,0100545016D5E000,status-ingame;crash;Incomplete,ingame,2023-04-21 1:17:47,4 +4561,Minecraft Legends - 01007C6012CC8000,01007C6012CC8000,gpu;status-ingame;crash,ingame,2024-03-04 0:32:24,9 +4564,Touhou Fan-made Virtual Autography - 0100196016944000,0100196016944000,,,2023-04-21 3:59:47,1 +4565,FINAL FANTASY I - 01000EA014150000,01000EA014150000,status-nothing;crash,nothing,2024-09-05 20:55:30,23 +4566,FINAL FANTASY II - 01006B7014156000,01006B7014156000,status-nothing;crash,nothing,2024-04-13 19:18:04,9 +4567,FINAL FANTASY III - 01002E2014158000,01002E2014158000,,,2023-04-21 11:50:01,1 +4569,FINAL FANTASY V - 0100AA201415C000,0100AA201415C000,status-playable,playable,2023-04-26 1:11:55,2 +4570,FINAL FANTASY VI - 0100AA001415E000,0100AA001415E000,,,2023-04-21 13:08:30,1 +4571,Advance Wars 1+2: Re-Boot Camp - 0100300012F2A000,0100300012F2A000,status-playable,playable,2024-01-30 18:19:44,4 +4572,Five Nights At Freddy’s Security Breach - 01009060193C4000,01009060193C4000,gpu;status-ingame;crash;mac-bug,ingame,2023-04-23 22:33:28,3 +4573,BUCCANYAR - 0100942019418000,0100942019418000,,,2023-04-23 0:59:51,1 +4574,BraveDungeon - The Meaning of Justice - 010068A00DAFC000,010068A00DAFC000,,,2023-04-23 13:34:05,2 +4575,Gemini - 010045300BE9A000,010045300BE9A000,,,2023-04-24 1:31:41,1 +4576,LOST EPIC - 010098F019A64000,010098F019A64000,,,2023-04-24 1:31:46,1 +4577,AKIBA'S TRIP2 Director's Cut - 0100FBD01884C000,0100FBD01884C000,,,2023-04-24 1:31:48,1 +4579,Afterimage - 010095E01A12A000,010095E01A12A000,,,2023-04-27 21:39:08,1 +4580,Fortress S - 010053C017D40000,010053C017D40000,,,2023-04-28 1:57:34,1 +4581,The Mageseeker: A League of Legends Story™ 0100375019B2E000,0100375019B2E000,,,2023-04-29 14:01:15,2 +4582,Cult of the Lamb - 01002E7016C46000,01002E7016C46000,,,2023-04-29 6:22:56,1 +4583,Disney SpeedStorm - 0100F0401435E000,0100F0401435E000,services;status-boots,boots,2023-11-27 2:15:32,4 +4584,The Outbound Ghost - 01000BC01801A000,01000BC01801A000,status-nothing,nothing,2024-03-02 17:10:58,2 +4586,Blaze Union Story to Reach the Future Remaster [ ブレイズ・ユニオン ] - 01003B001A81E000,01003B001A81E000,,,2023-05-02 2:03:16,1 +4587,Sakura Neko Calculator - 010029701AAD2000,010029701AAD2000,,,2023-05-02 6:16:04,1 +4593,Bramble The Mountain King - 0100E87017D0E000,0100E87017D0E000,services-horizon;status-playable,playable,2024-03-06 9:32:17,4 +4598,The Legend of Zelda: Tears of the Kingdom - 0100F2C0115B6000,0100F2C0115B6000,gpu;status-ingame;amd-vendor-bug;intel-vendor-bug;mac-bug,ingame,2024-08-24 12:38:30,155 +4603,Magical Drop VI - 0100B4D01A3A4000,0100B4D01A3A4000,,,2023-05-13 2:27:38,1 +4604,Yahari ge-mu demo ore no seishun rabukome hamachigatteiru. kan [ やはりゲームでも俺の青春ラブコメはまちがっている。完 ] - 010066801A138000,010066801A138000,,,2023-05-13 2:27:49,1 +4608,Mega Man Battle Network Legacy Collection Vol. 2 - 0100734016266000,0100734016266000,status-playable,playable,2023-08-03 18:04:32,4 +4615,Numolition - 010043C019088000,010043C019088000,,,2023-05-17 2:29:23,1 +4616,Vibitter for Nintendo Switch [ ビビッター ] - 0100D2A01855C000,0100D2A01855C000,,,2023-05-17 2:29:31,1 +4620,LEGO 2K Drive - 0100739018020000,0100739018020000,gpu;status-ingame;ldn-works,ingame,2024-04-09 2:05:12,15 +4622,Ys Memoire : The Oath in Felghana [ イース・メモワール -フェルガナの誓い- ] - 010070D01A192000,010070D01A192000,,,2023-05-22 1:12:30,1 +4623,Love on Leave - 0100E3701A870000,0100E3701A870000,,,2023-05-22 1:37:22,1 +4625,Puzzle Bobble Everybubble! - 010079E01A1E0000,010079E01A1E0000,audio;status-playable;ldn-works,playable,2023-06-10 3:53:40,4 +4627,Chasm: The Rift - 010034301A556000,010034301A556000,gpu;status-ingame,ingame,2024-04-29 19:02:48,2 +4631,Speed Crew Demo - 01005C001B696000,01005C001B696000,,,2023-06-04 0:18:22,1 +4632,Dr Fetus Mean Meat Machine Demo - 01001DA01B7C4000,01001DA01B7C4000,,,2023-06-04 0:18:30,1 +4634,Bubble Monsters - 0100FF801B87C000,0100FF801B87C000,,,2023-06-05 2:15:43,1 +4635,Puzzle Bobble / Bust-a-Move ( 16-Bit Console Version ) - 0100AFF019F3C000,0100AFF019F3C000,,,2023-06-05 2:15:53,1 +4636,Just Dance 2023 - 0100BEE017FC0000,0100BEE017FC0000,status-nothing,nothing,2023-06-05 16:44:54,1 +4638,We Love Katamari REROLL+ Royal Reverie - 010089D018D18000,010089D018D18000,,,2023-06-07 7:33:49,1 +4640,Loop8: Summer of Gods - 0100051018E4C000,0100051018E4C000,,,2023-06-10 17:09:56,1 +4641,Hatsune Miku - The Planet Of Wonder And Fragments Of Wishes - 010030301ABC2000,010030301ABC2000,,,2023-06-12 2:15:31,1 +4642,Speed Crew - 0100C1201A558000,0100C1201A558000,,,2023-06-12 2:15:35,1 +4644,Nocturnal - 01009C2019510000,01009C2019510000,,,2023-06-12 16:24:50,2 +4645,Harmony: The Fall of Reverie - 0100A65017D68000,0100A65017D68000,,,2023-06-13 22:37:51,1 +4647,Cave of Past Sorrows - 0100336019D36000,0100336019D36000,,,2023-06-18 1:42:19,1 +4648,BIRDIE WING -Golf Girls Story- - 01005B2017D92000,01005B2017D92000,,,2023-06-18 1:42:25,1 +4649,Dogotchi Virtual Pet - 0100BBD01A886000,0100BBD01A886000,,,2023-06-18 1:42:31,1 +4650,010036F018AC8000,010036F018AC8000,,,2023-06-18 13:11:56,1 +4653,Pikmin 1 - 0100AA80194B0000,0100AA80194B0000,audio;status-ingame,ingame,2024-05-28 18:56:11,17 +4654,Pikmin 2 - 0100D680194B2000,0100D680194B2000,gpu;status-ingame,ingame,2023-07-31 8:53:41,3 +4655,Ghost Trick Phantom Detective Demo - 010026C0184D4000,010026C0184D4000,,,2023-06-23 1:29:44,1 +4656,Dr Fetus' Mean Meat Machine - 01006C301B7C2000,01006C301B7C2000,,,2023-06-23 1:29:52,1 +4657,FIFA 22 Legacy Edition - 0100216014472000,0100216014472000,gpu;status-ingame,ingame,2024-03-02 14:13:48,2 +4658,Pretty Princess Magical Garden Island - 01001CA019DA2000,01001CA019DA2000,,,2023-06-26 2:43:04,1 +4659,Pool Together - 01009DB01BA16000,01009DB01BA16000,,,2023-06-26 2:43:13,1 +4660,Kizuna AI - Touch the Beat! - 0100BF2019B98000,0100BF2019B98000,,,2023-06-26 2:43:18,1 +4661,Convenience Stories - 0100DF801A092000,0100DF801A092000,,,2023-06-26 10:58:37,1 +4662,Pikmin 4 Demo - 0100E0B019974000,0100E0B019974000,gpu;status-ingame;nvdec;UE4;demo;amd-vendor-bug,ingame,2023-09-22 21:41:08,10 +4663,超探偵事件簿 レインコード (Master Detective Archives: Rain Code) - 0100F4401940A000,0100F4401940A000,status-ingame;crash,ingame,2024-02-12 20:58:31,9 +4665,Everybody 1-2-Switch! - 01006F900BF8E000,01006F900BF8E000,services;deadlock;status-nothing,nothing,2023-07-01 5:52:55,2 +4666,AEW Fight Forever - 0100BD10190C0000,0100BD10190C0000,,,2023-06-30 22:09:10,1 +4668,Master Detective Archives: Rain Code - 01004800197F0000,01004800197F0000,gpu;status-ingame,ingame,2024-04-19 20:11:09,22 +4673,The Lara Croft Collection - 010079C017F5E000,010079C017F5E000,services-horizon;deadlock;status-nothing,nothing,2024-07-12 22:45:51,12 +4675,Ghost Trick Phantom Detective - 010029B018432000,010029B018432000,status-playable,playable,2023-08-23 14:50:12,4 +4680,Sentimental Death Loop - 0100FFA01ACA8000,0100FFA01ACA8000,,,2023-07-10 3:23:08,1 +4681,The Settlers: New Allies - 0100F3200E7CA000,0100F3200E7CA000,deadlock;status-nothing,nothing,2023-10-25 0:18:05,4 +4683,Manic Mechanics - 010095A01550E000,010095A01550E000,,,2023-07-17 2:07:32,1 +4684,Crymachina Trial Edition ( Demo ) [ クライマキナ ] - 01000CC01C108000,01000CC01C108000,status-playable;demo,playable,2023-08-06 5:33:21,2 +4686,Xicatrice [ シカトリス ] - 0100EB601A932000,0100EB601A932000,,,2023-07-18 2:18:35,1 +4687,Trouble Witches Final! Episode 01: Daughters of Amalgam - 0100D06018DCA000,0100D06018DCA000,status-playable,playable,2024-04-08 15:08:11,2 +4688,The Quintessential Quintuplets: Gotopazu Story [ 五等分の花嫁 ごとぱずストーリー ] - 0100137019E9C000,0100137019E9C000,,,2023-07-18 2:18:50,1 +4689,Pinball FX - 0100DA70186D4000,0100DA70186D4000,status-playable,playable,2024-05-03 17:09:11,1 +4690,Moving Out 2 Training Day ( Demo ) - 010049E01B034000,010049E01B034000,,,2023-07-19 0:37:57,1 +4691,Cold Silence - 010035B01706E000,010035B01706E000,cpu;status-nothing;crash,nothing,2024-07-11 17:06:14,2 +4692,Demons of Asteborg - 0100B92015538000,0100B92015538000,,,2023-07-20 17:03:06,1 +4693,Pikmin 4 - 0100B7C00933A000,0100B7C00933A000,gpu;status-ingame;crash;UE4,ingame,2024-08-26 3:39:08,18 +4694,Grizzland - 010091300FFA0000,010091300FFA0000,gpu;status-ingame,ingame,2024-07-11 16:28:34,2 +4698,Disney Illusion Island,,,,2023-07-29 9:20:56,2 +4700,Double Dragon Gaiden: Rise of The Dragons - 010010401BC1A000,010010401BC1A000,,,2023-08-01 5:17:28,1 +4701,CRYSTAR -クライスタ- 0100E7B016778800,0100E7B016778800,,,2023-08-02 11:54:22,1 +4702,Orebody: Binders Tale - 010055A0189B8000,010055A0189B8000,,,2023-08-03 18:50:10,1 +4703,Ginnung - 01004B1019C7E000,01004B1019C7E000,,,2023-08-03 19:19:00,1 +4704,Legends of Amberland: The Forgotten Crown - 01007170100AA000,01007170100AA000,,,2023-08-03 22:18:17,1 +4705,Egglien - 0100E29019F56000,0100E29019F56000,,,2023-08-03 22:48:04,1 +4707,Dolmenjord - Viking Islands - 010012201B998000,010012201B998000,,,2023-08-05 20:55:28,1 +4708,The Knight & the Dragon - 010031B00DB34000,010031B00DB34000,gpu;status-ingame,ingame,2023-08-14 10:31:43,3 +4709,Cookies! Theory of Super Evolution - ,,,,2023-08-06 0:21:28,1 +4711,Jetboy - 010039C018168000,010039C018168000,,,2023-08-07 17:25:10,1 +4712,Townscaper - 01001260143FC000,01001260143FC000,,,2023-08-07 18:24:29,1 +4713,The Deer God - 01000B6007A3C000,01000B6007A3C000,,,2023-08-07 19:48:55,1 +4714,6 Souls - 0100421016BF2000,0100421016BF2000,,,2023-08-07 21:17:43,1 +4715,Brotato - 01002EF01A316000,01002EF01A316000,,,2023-08-10 14:57:25,1 +4716,超次元ゲイム ネプテューヌ GameMaker R:Evolution - 010064801a01c000,010064801a01c000,status-nothing;crash,nothing,2023-10-30 22:37:40,2 +4718,Quake II - 010048F0195E8000,010048F0195E8000,status-playable,playable,2023-08-15 3:42:14,2 +4721,Red Dead Redemption - 01007820196A6000,01007820196A6000,status-playable;amd-vendor-bug,playable,2024-09-13 13:26:13,42 +4722,Samba de Amigo : Party Central Demo - 01007EF01C0D2000,01007EF01C0D2000,,,2023-08-18 4:00:43,1 +4723,Bomb Rush Cyberfunk - 0100317014B7C000,0100317014B7C000,status-playable,playable,2023-09-28 19:51:57,3 +4724,Jack Jeanne - 010036D01937E000,010036D01937E000,,,2023-08-21 5:58:21,1 +4725,Bright Memory: Infinite Gold Edition - 01001A9018560000,01001A9018560000,,,2023-08-22 22:46:26,1 +4726,NBA 2K23 - 0100ACA017E4E800,0100ACA017E4E800,status-boots,boots,2023-10-10 23:07:14,3 +4727,Marble It Up! Ultra - 0100C18016896000,0100C18016896000,,,2023-08-30 20:14:21,2 +4728,Words of Wisdom - 0100B7F01BC9A000,0100B7F01BC9A000,,,2023-09-02 19:05:19,1 +4729,Koa and the Five Pirates of Mara - 0100C57019BA2000,0100C57019BA2000,gpu;status-ingame,ingame,2024-07-11 16:14:44,2 +4731,Little Orpheus stuck at 2 level,,,,2023-09-05 12:09:08,1 +4732,Tiny Thor - 010002401AE94000,010002401AE94000,gpu;status-ingame,ingame,2024-07-26 8:37:35,6 +4733,Radirgy Swag - 01000B900EEF4000,01000B900EEF4000,,,2023-09-06 23:00:39,1 +4735,Sea of Stars - 01008C0016544000,01008C0016544000,status-playable,playable,2024-03-15 20:27:12,9 +4736,NBA 2K24 - 010006501A8D8000,010006501A8D8000,cpu;gpu;status-boots,boots,2024-08-11 18:23:08,6 +4737,Rune Factory 3 Special - 010081C0191D8000,010081C0191D8000,status-playable,playable,2023-10-15 8:32:49,2 +4739,Baten Kaitos I & II HD Remaster (Japan) - 0100F28018CA4000,0100F28018CA4000,services;status-boots;Needs Update,boots,2023-10-24 23:11:54,7 +4740,F-ZERO 99 - 0100CCF019C8C000,0100CCF019C8C000,,,2023-09-14 16:43:01,1 +4743,Horizon Chase 2 - 0100001019F6E000,0100001019F6E000,deadlock;slow;status-ingame;crash;UE4,ingame,2024-08-19 4:24:06,11 +4744,Mortal Kombat 1 - 01006560184E6000,01006560184E6000,gpu;status-ingame,ingame,2024-09-04 15:45:47,18 +4745,Baten Kaitos I & II HD Remaster (Europe/USA) - 0100C07018CA6000,0100C07018CA6000,services;status-boots;Needs Update,boots,2023-10-01 0:44:32,9 +4746,Legend of Mana 01003570130E2000,01003570130E2000,,,2023-09-17 4:07:26,1 +4747,TUNIC 0100DA801624E000,0100DA801624E000,,,2023-09-17 4:28:22,1 +4748,SUPER BOMBERMAN R 2 - 0100B87017D94000,0100B87017D94000,deadlock;status-boots,boots,2023-09-29 13:19:51,2 +4749,Fae Farm - 010073F0189B6000 ,010073F0189B6000,status-playable,playable,2024-08-25 15:12:12,3 +4750,demon skin - 01006fe0146ec000,01006fe0146ec000,,,2023-09-18 8:36:18,1 +4751,Fatal Frame: Mask of the Lunar Eclipse - 0100DAE019110000,0100DAE019110000,status-playable;Incomplete,playable,2024-04-11 6:01:30,3 +4752,Winter Games 2023 - 0100A4A015FF0000,0100A4A015FF0000,deadlock;status-menus,menus,2023-11-07 20:47:36,2 +4753,EA Sports FC 24 - 0100BDB01A0E6000,0100BDB01A0E6000,status-boots,boots,2023-10-04 18:32:59,20 +4755,Cassette Beasts - 010066F01A0E0000,010066F01A0E0000,status-playable,playable,2024-07-22 20:38:43,8 +4756,COCOON - 01002E700C366000,01002E700C366000,gpu;status-ingame,ingame,2024-03-06 11:33:08,11 +4758,Detective Pikachu Returns - 010007500F27C000,010007500F27C000,status-playable,playable,2023-10-07 10:24:59,2 +4761,DeepOne - 0100961011BE6000,0100961011BE6000,services-horizon;status-nothing;Needs Update,nothing,2024-01-18 15:01:05,6 +4763,Sonic Superstars,,,,2023-10-13 18:33:19,1 +4765,Disco Elysium - 01006C5015E84000,01006C5015E84000,Incomplete,,2023-10-14 13:53:12,3 +4773,Sonic Superstars - 01008F701C074000,01008F701C074000,gpu;status-ingame;nvdec,ingame,2023-10-28 17:48:07,16 +4774,Sonic Superstars Digital Art Book with Mini Digital Soundtrack - 010088801C150000,010088801C150000,status-playable,playable,2024-08-20 13:26:56,2 +4776,Super Mario Bros. Wonder - 010015100B514000,010015100B514000,status-playable;amd-vendor-bug,playable,2024-09-06 13:21:21,36 +4781,Game Incompatibility - Super Marios Bros Wonder,,,,2023-10-21 19:09:02,2 +4786,Project Blue - 0100FCD0193A0000,0100FCD0193A0000,,,2023-10-24 15:55:09,2 +4787,Rear Sekai [ リアセカイ ] - 0100C3B01A5DD002,0100C3B01A5DD002,,,2023-10-24 1:55:18,1 +4788,Dementium: The Ward (Dementium Remastered) - 010038B01D2CA000,010038B01D2CA000,status-boots;crash,boots,2024-09-02 8:28:14,8 +4789,A Tiny Sticker Tale - 0100f6001b738000,0100f6001b738000,,,2023-10-26 23:15:46,1 +4790,Clive 'n' Wrench - 0100C6C010AE4000,0100C6C010AE4000,,,2023-10-28 14:56:46,1 +4793,STAR OCEAN The Second Story R - 010065301A2E0000,010065301A2E0000,status-ingame;crash,ingame,2024-06-01 2:39:59,13 +4794,Song of Nunu: A League of Legends Story - 01004F401BEBE000,01004F401BEBE000,status-ingame,ingame,2024-07-12 18:53:44,5 +4795,MythForce,,,,2023-11-03 12:58:52,1 +4797,Here Comes Niko! - 01001600121D4000,01001600121D4000,,,2023-11-04 22:26:44,1 +4798,Warioware: Move IT! - 010045B018EC2000,010045B018EC2000,status-playable,playable,2023-11-14 0:23:51,2 +4799,Game of Life [ 人生ゲーム for Nintendo Switch ] - 0100FF1017F76000,0100FF1017F76000,,,2023-11-07 19:59:08,3 +4800,Osyaberi! Horijyo! Gekihori - 01005D6013A54000,01005D6013A54000,,,2023-11-07 1:46:43,1 +4801,Fashion Dreamer - 0100E99019B3A000,0100E99019B3A000,status-playable,playable,2023-11-12 6:42:52,2 +4802,THE 密室逃脱 ~牵动命运的三十五道谜团~ (ESCAPE TRICK: 35 Fateful Enigmas) - 010087F005DFE000,010087F005DFE000,,,2023-11-08 2:20:17,1 +4804,Hentai Party - 010071D01CF34000,010071D01CF34000,,,2023-11-11 23:22:36,1 +4809,Hogwarts Legacy 0100F7E00C70E000,0100F7E00C70E000,,,2024-09-03 19:53:58,24 +4811,Super Mario RPG - 0100BC0018138000,0100BC0018138000,gpu;audio;status-ingame;nvdec,ingame,2024-06-19 17:43:42,39 +4812,Venatrix - 010063601B386000,010063601B386000,,,2023-11-18 6:55:12,1 +4813,Dreamwork's All-Star Kart Racing - 010037401A374000,010037401A374000,Incomplete,,2024-02-27 8:58:57,2 +4817,Watermelon Game [ スイカゲーム ] - 0100800015926000,0100800015926000,,,2023-11-27 2:49:45,1 +4818,屁屁侦探 噗噗 未来的名侦探登场! (Oshiri Tantei Mirai no Meitantei Tojo!) - 0100FDE017E56000,0100FDE017E56000,,,2023-12-01 11:15:46,3 +4820,Batman: Arkham Knight - 0100ACD0163D0000,0100ACD0163D0000,gpu;status-ingame;mac-bug,ingame,2024-06-25 20:24:42,2 +4821,DRAGON QUEST MONSTERS: The Dark Prince - 0100A77018EA0000,0100A77018EA0000,status-playable,playable,2023-12-29 16:10:05,2 +4823,ftpd classic - 0000000000000000,0000000000000000,homebrew,,2023-12-03 23:42:19,1 +4824,ftpd pro - 0000000000000000,0000000000000000,homebrew,,2023-12-03 23:47:46,1 +4826,Batman: Arkham City - 01003f00163ce000,01003f00163ce000,status-playable,playable,2024-09-11 0:30:19,5 +4827,DoDonPachi DAI-OU-JOU Re:incarnation (怒首領蜂大往生 臨廻転生) - 0100526017B00000,0100526017B00000,,,2023-12-08 15:16:22,1 +4830,Squid Commando - 0100044018E82000,0100044018E82000,,,2023-12-08 17:17:27,1 +4834,御伽活劇 豆狸のバケル ~オラクル祭太郎の祭難!!~ (Otogi Katsugeki Mameda no Bakeru Oracle Saitarou no Sainan!!) - 0100BF401AF9C000,0100BF401AF9C000,slow;status-playable,playable,2023-12-31 14:37:17,2 +4835,Another Code: Recollection DEMO - 01003E301A4D6000,01003E301A4D6000,,,2023-12-15 6:48:09,1 +4836,Hentai Golf - 01009D801D6E4000,01009D801D6E4000,,,2023-12-17 3:39:06,1 +4837,Alien Hominid HD - 010056B019874000,010056B019874000,,,2023-12-17 13:10:46,1 +4838,Piyokoro - 010098801D706000,010098801D706000,,,2023-12-18 2:17:53,1 +4839,Uzzuzuu My Pet - Golf Dash - 010015B01CAF0000,010015B01CAF0000,,,2023-12-18 2:17:57,1 +4842,Alien Hominid Invasion - 0100A3E00CDD4000,0100A3E00CDD4000,Incomplete,,2024-07-17 1:56:28,3 +4846,void* tRrLM2(); //Void Terrarium 2 (USA/EU) - 0100B510183BC000,0100B510183BC000,,,2023-12-21 11:08:18,1 +4847,Metal Gear Solid Master Collection Vol. 1: Metal Gear Solid 3 - 010047F01AA10000,010047F01AA10000,services-horizon;status-menus,menus,2024-07-24 6:34:06,4 +4848,Party Friends - 0100C0A01D478000,0100C0A01D478000,,,2023-12-23 2:43:33,1 +4849,Yohane the Parhelion Numazu in the Mirage Demo - 0100D7201DAAE000,0100D7201DAAE000,,,2023-12-23 2:49:28,1 +4850,SPY×FAMILY OPERATION DIARY - 010041601AB40000,010041601AB40000,,,2023-12-23 2:52:29,1 +4851,Golf Guys - 010040901CC42000,010040901CC42000,,,2023-12-28 1:20:16,1 +4852,Persona 5 Tactica - 010087701B092000,010087701B092000,status-playable,playable,2024-04-01 22:21:03,6 +4856,Batman: Arkham Asylum - 0100E870163CA000,0100E870163CA000,,,2024-01-11 23:03:37,2 +4857,Persona 5 Royal (KR/HK) - 01004B10157F2000,01004B10157F2000,Incomplete,,2024-08-17 21:42:28,8 +4859,Prince of Persia: The Lost Crown - 0100210019428000,0100210019428000,status-ingame;crash,ingame,2024-06-08 21:31:58,34 +4860,Another Code: Recollection - 0100CB9018F5A000,0100CB9018F5A000,gpu;status-ingame;crash,ingame,2024-09-06 5:58:52,7 +4861,It Takes Two - 010092A0172E4000,010092A0172E4000,,,2024-01-23 5:15:26,1 +4862,逆转裁判四五六 王泥喜精选集 (Apollo Justice: Ace Attorney Trilogy) - 010020D01B890000,010020D01B890000,status-playable,playable,2024-06-21 21:54:27,18 +4863,Hitman: Blood Money - Reprisal - 010083A018262000,010083A018262000,deadlock;status-ingame,ingame,2024-09-28 16:28:50,8 +4866,Mario vs. Donkey Kong™ Demo - 0100D9E01DBB0000,0100D9E01DBB0000,status-playable,playable,2024-02-18 10:40:06,4 +4868,LEGO The Incredibles - 0100F19006E04000,0100F19006E04000,crash,,2024-02-11 0:46:53,1 +4869,Tomb Raider I-III Remastered - 010024601BB16000,010024601BB16000,gpu;status-ingame;opengl,ingame,2024-09-27 12:32:04,27 +4870,Arzette: The Jewel of Faramore - 0100B7501C46A000,0100B7501C46A000,,,2024-02-17 17:22:34,1 +4871,Mario vs. Donkey Kong - 0100B99019412000,0100B99019412000,status-playable,playable,2024-05-04 21:22:39,9 +4872,Penny's Big Breakaway - 0100CA901AA9C000,0100CA901AA9C000,status-playable;amd-vendor-bug,playable,2024-05-27 7:58:51,12 +4873,CEIBA - 0100E8801D97E000,0100E8801D97E000,,,2024-02-25 22:33:36,4 +4874,Lil' Guardsman v1.1 - 010060B017F6E000,010060B017F6E000,,,2024-02-25 19:21:03,1 +4875,Fearmonium - 0100F5501CE12000,0100F5501CE12000,status-boots;crash,boots,2024-03-06 11:26:11,2 +4876,NeverAwake - 0100DA30189CA000,0100DA30189CA000,,,2024-02-26 2:27:39,1 +4877,Zombies Rising XXX,,,,2024-02-26 7:53:03,1 +4878,Balatro - 0100CD801CE5E000,0100CD801CE5E000,status-ingame,ingame,2024-04-21 2:01:53,8 +4879,Prison City - 0100C1801B914000,0100C1801B914000,gpu;status-ingame,ingame,2024-03-01 8:19:33,2 +4880,Yo-kai Watch Jam: Y School Heroes: Bustlin' School Life - 010051D010FC2000,010051D010FC2000,,,2024-03-03 2:57:22,1 +4884,Princess Peach: Showtime! Demo - 010024701DC2E000,010024701DC2E000,status-playable;UE4;demo,playable,2024-03-10 17:46:45,4 +4886,Unicorn Overlord - 010069401ADB8000,010069401ADB8000,status-playable,playable,2024-09-27 14:04:32,15 +4888,Dodgeball Academia - 010001F014D9A000,010001F014D9A000,,,2024-03-09 3:49:28,1 +4893,魂斗罗:加鲁加行动 (Contra: Operation Galuga) - 0100CF401A98E000,0100CF401A98E000,,,2024-03-13 1:13:42,1 +4894,STAR WARS Battlefront Classic Collection - 010040701B948000,010040701B948000,gpu;status-ingame;vulkan,ingame,2024-07-12 19:24:21,6 +4896,MLB The Show 24 - 0100E2E01C32E000,0100E2E01C32E000,services-horizon;status-nothing,nothing,2024-03-31 4:54:11,8 +4897,Orion Haste - 01009B401DD02000,01009B401DD02000,,,2024-03-16 17:22:59,1 +4901,Gylt - 0100AC601DCA8000,0100AC601DCA8000,status-ingame;crash,ingame,2024-03-18 20:16:51,5 +4903,マクロス(Macross) -Shooting Insight- - 01001C601B8D8000,01001C601B8D8000,,,2024-03-20 17:10:26,1 +4904,Geometry Survivor - 01006D401D4F4000,01006D401D4F4000,,,2024-03-20 17:35:34,1 +4905,Gley Lancer and Gynoug - Classic Shooting Pack - 010037201E3DA000,010037201E3DA000,,,2024-03-20 18:19:37,1 +4907,Princess Peach: Showtime! - 01007A3009184000,01007A3009184000,status-playable;UE4,playable,2024-09-21 13:39:45,16 +4910,Cosmic Fantasy Collection - 0100CCB01B1A0000,0100CCB01B1A0000,status-ingame,ingame,2024-05-21 17:56:37,8 +4911,Fit Boxing feat. 初音ミク - 010045D01AFC8000,010045D01AFC8000,,,2024-03-28 4:07:57,2 +4915,Sonic 2 (2013) - 0000000000000000,0000000000000000,status-ingame;crash;homebrew,ingame,2024-04-01 16:25:30,1 +4916,Sonic CD - 0000000000000000,0000000000000000,status-ingame;crash;homebrew,ingame,2024-04-01 16:25:31,1 +4917,Sonic A.I.R - 0000000000000000,0000000000000000,status-ingame;homebrew,ingame,2024-04-01 16:25:32,1 +4918,RSDKv5u - 0000000000000000,0000000000000000,status-ingame;homebrew,ingame,2024-04-01 16:25:34,1 +4919,Sonic 1 (2013) - 0000000000000000,0000000000000000,status-ingame;crash;homebrew,ingame,2024-04-06 18:31:20,2 +4920,The Dark Pictures Anthology : Man of Medan - 0100711017B30000,0100711017B30000,,,2024-04-01 16:38:04,1 +4922,SpaceCadetPinball - 0000000000000000,0000000000000000,status-ingame;homebrew,ingame,2024-04-18 19:30:04,1 +4924,Pepper Grinder - 0100B98019068000,0100B98019068000,,,2024-04-04 16:31:57,1 +4927,RetroArch - 010000000000100D,010000000000100D,,,2024-04-07 18:23:18,1 +4929,YouTube - 01003A400C3DA800,01003A400C3DA800,status-playable,playable,2024-06-08 5:24:10,2 +4930,Pawapoke R - 01000c4015030000,01000c4015030000,services-horizon;status-nothing,nothing,2024-05-14 14:28:32,3 +4933,MegaZeux - 0000000000000000,0000000000000000,,,2024-04-16 23:46:53,1 +4934,ANTONBLAST (Demo) - 0100B5F01EB24000,0100B5F01EB24000,,,2024-04-18 22:45:13,1 +4935,Europa (Demo) - 010092501EB2C000,010092501EB2C000,gpu;status-ingame;crash;UE4,ingame,2024-04-23 10:47:12,2 +4936,BioShock 1 & 2 Remastered [0100AD10102B2000 - 01002620102C6800] v1.0.2,0100AD10102B2000,,,2024-04-19 19:08:30,2 +4939,Turrican Anthology Vol. 2 - 010061D0130CA000 - game freezes at the beginning,010061D0130CA000,Incomplete,,2024-04-25 17:57:06,5 +4945,Nickelodeon All-Star Brawl 2 - 010010701AFB2000,010010701AFB2000,status-playable,playable,2024-06-03 14:15:01,3 +4946,Bloo Kid - 0100C6A01AD56000,0100C6A01AD56000,status-playable,playable,2024-05-01 17:18:04,3 +4947,Tales of Kenzera: ZAU - 01005C7015D30000,01005C7015D30000,,,2024-04-30 10:11:26,1 +4952,Demon Slayer – Kimetsu no Yaiba – Sweep the Board! - 0100A7101B806000,0100A7101B806000,,,2024-05-02 10:19:47,1 +4953,Endless Ocean Luminous - 010067B017588000,010067B017588000,services-horizon;status-ingame;crash,ingame,2024-05-30 2:05:57,6 +4954,Moto GP 24 - 010040401D564000,010040401D564000,gpu;status-ingame,ingame,2024-05-10 23:41:00,2 +4956,The game of life 2 - 0100B620139D8000,0100B620139D8000,,,2024-05-03 12:08:33,1 +4958,ANIMAL WELL - 010020D01AD24000,010020D01AD24000,status-playable,playable,2024-05-22 18:01:49,13 +4959,Super Mario World - 0000000000000000,0000000000000000,status-boots;homebrew,boots,2024-06-13 1:40:31,2 +4960,1000xRESIST - 0100B02019866000,0100B02019866000,,,2024-05-11 17:18:57,1 +4961,Dave The Diver - 010097F018538000,010097F018538000,Incomplete,,2024-09-03 21:38:55,2 +4963,Zombiewood,,Incomplete,,2024-05-15 11:37:19,2 +4965,Pawapoke Dash - 010066A015F94000,010066A015F94000,,,2024-05-16 8:45:51,1 +4967,Biomutant - 01004BA017CD6000,01004BA017CD6000,status-ingame;crash,ingame,2024-05-16 15:46:36,2 +4968,Vampire Survivors - 010089A0197E4000,010089A0197E4000,status-ingame,ingame,2024-06-17 9:57:38,2 +4969,Koumajou Remilia II Stranger’s Requiem,,Incomplete,,2024-05-22 20:59:04,3 +4972,Paper Mario: The Thousand-Year Door - 0100ECD018EBE000,0100ECD018EBE000,gpu;status-ingame;intel-vendor-bug,ingame,2024-08-06 1:02:25,79 +4973,Stories From Sol: The Gun-dog Demo - 010092A01EC94000,010092A01EC94000,,,2024-05-22 19:55:35,1 +4977,Earth Defense Force: World Brothers 2 - 010083a01d456000,010083a01d456000,,,2024-06-01 18:34:34,1 +4985,锈色湖畔:内在昔日(Rusty Lake: The Past Within) - 01007010157EC000,01007010157EC000,,,2024-06-10 13:47:40,1 +4988,Garden Life A Cozy Simulator - 0100E3801ACC0000,0100E3801ACC0000,,,2024-06-12 0:12:01,1 +4991,Shin Megami Tensei V: Vengeance - 010069C01AB82000,010069C01AB82000,gpu;status-ingame;vulkan-backend-bug,ingame,2024-07-14 11:28:24,17 +4992,Valiant Hearts - The great war - 01006C70146A2000,01006C70146A2000,,,2024-06-18 21:31:15,1 +4994,Monster Hunter Stories - 010069301B1D4000,010069301B1D4000,Incomplete,,2024-09-11 7:58:24,5 +4995,Rocket Knight Adventures: Re-Sparked,,,,2024-06-20 20:13:10,3 +4996,Metal Slug Attack Reloaded,,,,2024-06-20 19:55:22,3 +4997,#BLUD - 010060201E0A4000,010060201E0A4000,,,2024-06-23 13:57:22,1 +4998,NARUTO X BARUTO Ultimate Ninja STORM CONNECTIONS - 0100D2D0190A4000,0100D2D0190A4000,services-horizon;status-nothing,nothing,2024-07-25 5:16:48,3 +4999,Bang-On Balls: Chronicles - 010081E01A45C000,010081E01A45C000,Incomplete,,2024-08-01 16:40:12,2 +5000,Downward: Enhanced Edition 0100C5501BF24000,0100C5501BF24000,,,2024-06-26 0:22:34,1 +5001,DNF Duel: Who's Next - 0100380017D3E000,0100380017D3E000,Incomplete,,2024-07-23 2:25:50,2 +5002,Borderlands 3 - 01009970122E4000,01009970122E4000,gpu;status-ingame,ingame,2024-07-15 4:38:14,7 +5003,Luigi's Mansion 2 HD - 010048701995E000,010048701995E000,status-ingame;ldn-broken;amd-vendor-bug,ingame,2024-09-05 23:47:27,8 +5004,Super Monkey Ball Banana Rumble - 010031F019294000,010031F019294000,status-playable,playable,2024-06-28 10:39:18,2 +5005,City of Beats 0100E94016B9E000,0100E94016B9E000,,,2024-07-01 7:02:20,1 +5008,Maquette 0100861018480000,0100861018480000,,,2024-07-04 5:20:21,1 +5009,Monomals - 01003030161DC000,01003030161DC000,gpu;status-ingame,ingame,2024-08-06 22:02:51,3 +5014,Ace Combat 7 - Skies Unknown Deluxe Edition - 010039301B7E0000,010039301B7E0000,gpu;status-ingame;UE4,ingame,2024-09-27 14:31:43,10 +5015,Teenage Mutant Ninja Turtles: Splintered Fate - 01005CF01E784000,01005CF01E784000,status-playable,playable,2024-08-03 13:50:42,6 +5016,Powerful Pro Baseball 2024-2025 - 0100D1C01C194000,0100D1C01C194000,gpu;status-ingame,ingame,2024-08-25 6:40:48,11 +5021,World of Goo 2 - 010061F01DB7C800,010061F01DB7C800,status-boots,boots,2024-08-08 22:52:49,6 +5025,Tomba! Special Edition - 0100D7F01E49C000,0100D7F01E49C000,services-horizon;status-nothing,nothing,2024-09-15 21:59:54,2 +5026,Machi Koro With Everyone-0100C32018824000,0100C32018824000,,,2024-08-07 19:19:30,1 +5027,STAR WARS: Bounty Hunter - 0100d7a01b7a2000,0100d7a01b7a2000,,,2024-08-08 11:12:56,1 +5028,Outer Wilds - 01003DC0144B6000,01003DC0144B6000,,,2024-08-08 17:36:16,1 +5029,Grounded 01006F301AE9C000,01006F301AE9C000,,,2024-08-09 16:35:52,1 +5030,DOOM + DOOM II - 01008CB01E52E000,01008CB01E52E000,status-playable;opengl;ldn-untested;LAN,playable,2024-09-12 7:06:01,2 +5032,Fishing Paradiso - 0100890016A74000,0100890016A74000,,,2024-08-11 21:39:54,2 +5035,Revue Starlight El Dorado - 010099c01d642000,010099c01d642000,,,2024-09-02 18:58:18,2 +5040,PowerWash Simulator - 0100926016012000,0100926016012000,,,2024-08-22 0:47:34,1 +5041,Thank Goodness You’re Here! - 010053101ACB8000,010053101ACB8000,,,2024-09-25 16:15:40,2 +5042,Freedom Planet 2 V1.2.3r (01009A301B68000),,,,2024-08-23 18:16:54,1 +5043,Ace Attorney Investigations Collection DEMO - 010033401E68E000,010033401E68E000,status-playable,playable,2024-09-07 6:16:42,2 +5047,Castlevania Dominus Collection - 0100FA501AF90000,0100FA501AF90000,,,2024-09-19 1:39:04,8 +5055,Chants of Sennaar - 0100543019CB0000,0100543019CB0000,,,2024-09-19 16:30:27,2 +5056,Taisho x Alice ALL IN ONE - 大正×対称アリス ALL IN ONE - 010096000ca38000,010096000ca38000,,,2024-09-11 21:20:04,2 +5057,NBA 2K25 - 0100DFF01ED44000,0100DFF01ED44000,,,2024-09-10 17:34:54,1 +5059,逆转检察官1&2 御剑精选集 (Ace Attorney Investigations Collection) - 010005501E68C000,010005501E68C000,status-playable,playable,2024-09-19 16:38:05,4 +5062,Fabledom,,,,2024-09-28 12:12:55,2 +5064,BZZZT - 010091201A3F2000,010091201A3F2000,,,2024-09-22 21:29:58,1 +5065,EA SPORTS FC 25 - 010054E01D878000,010054E01D878000,status-ingame;crash,ingame,2024-09-25 21:07:50,13 +5067,Selfloss - 010036C01E244000,010036C01E244000,,,2024-09-23 23:12:13,1 +5068,Disney Epic Mickey: Rebrushed - 0100DA201EBF8000,0100DA201EBF8000,status-ingame;crash,ingame,2024-09-26 22:11:51,4 +5069,The Plucky Squire - 01006BD018B54000,01006BD018B54000,status-ingame;crash,ingame,2024-09-27 22:32:33,4 +5070,The Legend of Zelda Echoes of Wisdom - 01008CF01BAAC000,01008CF01BAAC000,status-playable;nvdec;ASTC,playable,2024-10-01 14:11:01,34 +5071,Bakeru ,,,,2024-09-25 18:05:22,1 +5072,トラブル・マギア ~訳アリ少女は未来を勝ち取るために異国の魔法学校へ留学します~(Trouble Magia ~Wakeari Shoujo wa Mirai o Kachitoru Tame ni Ikoku no Mahou Gakkou e Ryuugaku Shimasu~) - 01000BB01CB8A000,01000BB01CB8A000,status-nothing,nothing,2024-09-28 7:03:14,3 +5073,I am an Airtraffic Controller AIRPORT HERO HANEDA ALLSTARS - 01002EE01BAE0000,01002EE01BAE0000,,,2024-09-27 2:04:17,1 +5074,燃えよ! 乙女道士 ~華遊恋語~ (Moeyo! Otome Doushi Kayu Koigatari) - 01001BA01EBFC000,01001BA01EBFC000,services-horizon;status-nothing,nothing,2024-09-28 12:22:55,5 +5075,I am an Air Traffic Controller AIRPORT HERO HANEDA - 0100BE700EDA4000,0100BE700EDA4000,,,2024-09-27 23:52:19,1 +5077,Angel at Dusk Demo - 0100D96020ADC000,0100D96020ADC000,,,2024-09-29 17:21:13,1 +5078,Monster Jam™ Showdown - 0100CE101B698000,0100CE101B698000,,,2024-09-30 4:03:13,1 +5079,Legend of Heroes: Trails Through Daybreak - 010040C01D248000,010040C01D248000,,,2024-10-01 7:36:25,1 \ No newline at end of file diff --git a/src/Ryujinx/Ryujinx.csproj b/src/Ryujinx/Ryujinx.csproj index 7a49a5a94..0cad28957 100644 --- a/src/Ryujinx/Ryujinx.csproj +++ b/src/Ryujinx/Ryujinx.csproj @@ -145,6 +145,9 @@ Assets\ShortcutFiles\shortcut-template.plist + + Assets\RyujinxGameCompatibility.csv + diff --git a/src/Ryujinx/UI/Helpers/MiniCommand.cs b/src/Ryujinx/UI/Helpers/MiniCommand.cs index 7e1bb9a68..9782aa69d 100644 --- a/src/Ryujinx/UI/Helpers/MiniCommand.cs +++ b/src/Ryujinx/UI/Helpers/MiniCommand.cs @@ -63,6 +63,7 @@ namespace Ryujinx.Ava.UI.Helpers public static MiniCommand Create(Action callback) => new MiniCommand(_ => callback()); public static MiniCommand Create(Action callback) => new MiniCommand(callback); public static MiniCommand CreateFromTask(Func callback) => new MiniCommand(_ => callback()); + public static MiniCommand CreateFromTask(Func callback) => new MiniCommand(callback); public abstract bool CanExecute(object parameter); public abstract void Execute(object parameter); diff --git a/src/Ryujinx/UI/Views/Main/MainMenuBarView.axaml.cs b/src/Ryujinx/UI/Views/Main/MainMenuBarView.axaml.cs index c50b073dd..0885349f8 100644 --- a/src/Ryujinx/UI/Views/Main/MainMenuBarView.axaml.cs +++ b/src/Ryujinx/UI/Views/Main/MainMenuBarView.axaml.cs @@ -66,7 +66,7 @@ namespace Ryujinx.Ava.UI.Views.Main WindowSize2160PMenuItem.Command = new RelayCommand(ChangeWindowSize); } - private CheckBox[] GenerateToggleFileTypeItems() => + private IEnumerable GenerateToggleFileTypeItems() => Enum.GetValues() .Select(it => (FileName: Enum.GetName(it)!, FileType: it)) .Select(it => @@ -76,15 +76,13 @@ namespace Ryujinx.Ava.UI.Views.Main IsChecked = it.FileType.GetConfigValue(ConfigurationState.Instance.UI.ShownFileTypes), Command = MiniCommand.Create(() => Window.ToggleFileType(it.FileName)) } - ).ToArray(); + ); - private static MenuItem[] GenerateLanguageMenuItems() + private static IEnumerable GenerateLanguageMenuItems() { - List menuItems = new(); + const string LocalePath = "Ryujinx/Assets/locales.json"; - string localePath = "Ryujinx/Assets/locales.json"; - - string languageJson = EmbeddedResources.ReadAllText(localePath); + string languageJson = EmbeddedResources.ReadAllText(LocalePath); LocalesJson locales = JsonHelper.Deserialize(languageJson, LocalesJsonContext.Default.LocalesJson); @@ -99,7 +97,10 @@ namespace Ryujinx.Ava.UI.Views.Main } else { - languageName = locales.Locales[index].Translations[language] == "" ? language : locales.Locales[index].Translations[language]; + string tr = locales.Locales[index].Translations[language]; + languageName = string.IsNullOrEmpty(tr) + ? language + : tr; } MenuItem menuItem = new() @@ -111,10 +112,8 @@ namespace Ryujinx.Ava.UI.Views.Main Command = MiniCommand.Create(() => MainWindowViewModel.ChangeLanguage(language)) }; - menuItems.Add(menuItem); + yield return menuItem; } - - return menuItems.ToArray(); } protected override void OnAttachedToVisualTree(VisualTreeAttachmentEventArgs e) diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityHelper.cs b/src/Ryujinx/Utilities/Compat/CompatibilityHelper.cs deleted file mode 100644 index 6fee23883..000000000 --- a/src/Ryujinx/Utilities/Compat/CompatibilityHelper.cs +++ /dev/null @@ -1,32 +0,0 @@ -using Gommon; -using nietras.SeparatedValues; -using Ryujinx.Common.Configuration; -using System.Net.Http; -using System.Threading.Tasks; - -namespace Ryujinx.Ava.Utilities.Compat -{ - public static class CompatibilityHelper - { - private static readonly string _downloadUrl = - "https://gist.githubusercontent.com/ezhevita/b41ed3bf64d0cc01269cab036e884f3d/raw/002b1a1c1a5f7a83276625e8c479c987a5f5b722/Ryujinx%2520Games%2520List%2520Compatibility.csv"; - - private static readonly FilePath _compatCsvPath = new FilePath(AppDataManager.BaseDirPath) / "system" / "compatibility.csv"; - - public static async Task DownloadAsync() - { - if (_compatCsvPath.ExistsAsFile) - return Sep.Reader().FromFile(_compatCsvPath.Path); - - using var httpClient = new HttpClient(); - var compatCsv = await httpClient.GetStringAsync(_downloadUrl); - _compatCsvPath.WriteAllText(compatCsv); - return Sep.Reader().FromText(compatCsv); - } - - public static async Task InitAsync() - { - CompatibilityCsv.Shared = new CompatibilityCsv(await DownloadAsync()); - } - } -} diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs b/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs index f78eb2098..b475bae36 100644 --- a/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs +++ b/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs @@ -1,6 +1,9 @@ using Avalonia.Controls; using Avalonia.Styling; +using nietras.SeparatedValues; using Ryujinx.Ava.UI.Helpers; +using System.IO; +using System.Reflection; using System.Threading.Tasks; namespace Ryujinx.Ava.Utilities.Compat @@ -9,8 +12,15 @@ namespace Ryujinx.Ava.Utilities.Compat { public static async Task Show() { - await CompatibilityHelper.InitAsync(); + if (CompatibilityCsv.Shared is null) + { + await using Stream csvStream = Assembly.GetExecutingAssembly() + .GetManifestResourceStream("RyujinxGameCompatibilityList")!; + csvStream.Position = 0; + CompatibilityCsv.Shared = new CompatibilityCsv(Sep.Reader().From(csvStream)); + } + CompatibilityContentDialog contentDialog = new() { Content = new CompatibilityList { DataContext = new CompatibilityViewModel(RyujinxApp.MainWindow.ViewModel.ApplicationLibrary) } From f4272b05fadde70091d9f2d458ab8b406c3f66ab Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Tue, 7 Jan 2025 03:53:10 -0600 Subject: [PATCH 24/69] UI: Compat list disclaimer --- src/Ryujinx/Assets/locales.json | 25 +++++++++++++++++ .../Utilities/Compat/CompatibilityList.axaml | 27 ++++++++++++++++--- 2 files changed, 49 insertions(+), 3 deletions(-) diff --git a/src/Ryujinx/Assets/locales.json b/src/Ryujinx/Assets/locales.json index e7a55bf9d..0951ad632 100644 --- a/src/Ryujinx/Assets/locales.json +++ b/src/Ryujinx/Assets/locales.json @@ -22597,6 +22597,31 @@ "zh_TW": "" } }, + { + "ID": "CompatibilityListWarning", + "Translations": { + "ar_SA": "", + "de_DE": "", + "el_GR": "", + "en_US": "This compatibility list might contain out of date entries.\nDo not be opposed to testing games in the \"Ingame\" status.", + "es_ES": "", + "fr_FR": "", + "he_IL": "", + "it_IT": "", + "ja_JP": "", + "ko_KR": "", + "no_NO": "", + "pl_PL": "", + "pt_BR": "", + "ru_RU": "", + "sv_SE": "", + "th_TH": "", + "tr_TR": "", + "uk_UA": "", + "zh_CN": "", + "zh_TW": "" + } + }, { "ID": "CompatibilityListSearchBoxWatermark", "Translations": { diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml b/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml index 7d5b4f20f..a1b167df8 100644 --- a/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml +++ b/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml @@ -4,6 +4,7 @@ xmlns:local="using:Ryujinx.Ava.Utilities.Compat" xmlns:helpers="using:Ryujinx.Ava.UI.Helpers" xmlns:ext="using:Ryujinx.Ava.Common.Markup" + xmlns:ui="using:FluentAvalonia.UI.Controls" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450" x:Class="Ryujinx.Ava.Utilities.Compat.CompatibilityList" @@ -11,13 +12,33 @@ - - + + + + + + + - + From 8a29428de25bb2c605ecfa57cf37f8110958d59f Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Tue, 7 Jan 2025 03:57:13 -0600 Subject: [PATCH 25/69] docs: compat: update hogwarts legacy compat --- docs/compatibility.csv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/compatibility.csv b/docs/compatibility.csv index 3fa58aa80..fa52e3b02 100644 --- a/docs/compatibility.csv +++ b/docs/compatibility.csv @@ -4150,7 +4150,7 @@ issue_number,issue_title,extracted_game_id,issue_labels,extracted_status,last_ev 4801,Fashion Dreamer - 0100E99019B3A000,0100E99019B3A000,status-playable,playable,2023-11-12 6:42:52,2 4802,THE 密室逃脱 ~牵动命运的三十五道谜团~ (ESCAPE TRICK: 35 Fateful Enigmas) - 010087F005DFE000,010087F005DFE000,,,2023-11-08 2:20:17,1 4804,Hentai Party - 010071D01CF34000,010071D01CF34000,,,2023-11-11 23:22:36,1 -4809,Hogwarts Legacy 0100F7E00C70E000,0100F7E00C70E000,,,2024-09-03 19:53:58,24 +4809,Hogwarts Legacy 0100F7E00C70E000,0100F7E00C70E000,status-ingame;slow,ingame,2024-09-03 19:53:58,24 4811,Super Mario RPG - 0100BC0018138000,0100BC0018138000,gpu;audio;status-ingame;nvdec,ingame,2024-06-19 17:43:42,39 4812,Venatrix - 010063601B386000,010063601B386000,,,2023-11-18 6:55:12,1 4813,Dreamwork's All-Star Kart Racing - 010037401A374000,010037401A374000,Incomplete,,2024-02-27 8:58:57,2 @@ -4300,4 +4300,4 @@ issue_number,issue_title,extracted_game_id,issue_labels,extracted_status,last_ev 5075,I am an Air Traffic Controller AIRPORT HERO HANEDA - 0100BE700EDA4000,0100BE700EDA4000,,,2024-09-27 23:52:19,1 5077,Angel at Dusk Demo - 0100D96020ADC000,0100D96020ADC000,,,2024-09-29 17:21:13,1 5078,Monster Jam™ Showdown - 0100CE101B698000,0100CE101B698000,,,2024-09-30 4:03:13,1 -5079,Legend of Heroes: Trails Through Daybreak - 010040C01D248000,010040C01D248000,,,2024-10-01 7:36:25,1 \ No newline at end of file +5079,Legend of Heroes: Trails Through Daybreak - 010040C01D248000,010040C01D248000,,,2024-10-01 7:36:25,1 From 574aa9ff9cd4fd816762ea6950fd86b17ca0bd64 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Tue, 7 Jan 2025 04:21:08 -0600 Subject: [PATCH 26/69] add a couple missing title IDs --- docs/compatibility.csv | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/compatibility.csv b/docs/compatibility.csv index fa52e3b02..1b4f1a3ce 100644 --- a/docs/compatibility.csv +++ b/docs/compatibility.csv @@ -28,9 +28,9 @@ issue_number,issue_title,extracted_game_id,issue_labels,extracted_status,last_ev 70,PriPara: All Idol Perfect Stage - 010007F00879E000,010007F00879E000,status-playable,playable,2022-11-22 16:35:52,4 71,Shantae and the Pirate's Curse - 0100EFD00A4FA000,0100EFD00A4FA000,status-playable,playable,2024-04-29 17:21:57,11 72,DARK SOULS™: REMASTERED - 01004AB00A260000,01004AB00A260000,gpu;status-ingame;nvdec;online-broken,ingame,2024-04-09 19:47:58,15 -73,The Liar Princess and the Blind Prince,,audio;slow;status-playable,playable,2020-06-08 21:23:28,3 +73,The Liar Princess and the Blind Prince - 010064B00B95C000,010064B00B95C000,audio;slow;status-playable,playable,2020-06-08 21:23:28,3 74,Dead Cells - 0100646009FBE000,0100646009FBE000,status-playable,playable,2021-09-22 22:18:49,7 -75,Sonic Mania,,status-playable,playable,2020-06-08 17:30:57,6 +75,Sonic Mania - 01009AA000FAA000,01009AA000FAA000,status-playable,playable,2020-06-08 17:30:57,6 76,The Mahjong,,Needs Update;crash;services;status-nothing,nothing,2021-04-01 22:06:22,6 77,Angels of Death - 0100AE000AEBC000,0100AE000AEBC000,nvdec;status-playable,playable,2021-02-22 14:17:15,7 78,Penny-Punching Princess - 0100C510049E0000,0100C510049E0000,status-playable,playable,2022-08-09 13:37:05,6 @@ -4286,14 +4286,14 @@ issue_number,issue_title,extracted_game_id,issue_labels,extracted_status,last_ev 5056,Taisho x Alice ALL IN ONE - 大正×対称アリス ALL IN ONE - 010096000ca38000,010096000ca38000,,,2024-09-11 21:20:04,2 5057,NBA 2K25 - 0100DFF01ED44000,0100DFF01ED44000,,,2024-09-10 17:34:54,1 5059,逆转检察官1&2 御剑精选集 (Ace Attorney Investigations Collection) - 010005501E68C000,010005501E68C000,status-playable,playable,2024-09-19 16:38:05,4 -5062,Fabledom,,,,2024-09-28 12:12:55,2 +5062,Fabledom - 0100B6001E6D6000,0100B6001E6D6000,,,2024-09-28 12:12:55,2 5064,BZZZT - 010091201A3F2000,010091201A3F2000,,,2024-09-22 21:29:58,1 5065,EA SPORTS FC 25 - 010054E01D878000,010054E01D878000,status-ingame;crash,ingame,2024-09-25 21:07:50,13 5067,Selfloss - 010036C01E244000,010036C01E244000,,,2024-09-23 23:12:13,1 5068,Disney Epic Mickey: Rebrushed - 0100DA201EBF8000,0100DA201EBF8000,status-ingame;crash,ingame,2024-09-26 22:11:51,4 5069,The Plucky Squire - 01006BD018B54000,01006BD018B54000,status-ingame;crash,ingame,2024-09-27 22:32:33,4 -5070,The Legend of Zelda Echoes of Wisdom - 01008CF01BAAC000,01008CF01BAAC000,status-playable;nvdec;ASTC,playable,2024-10-01 14:11:01,34 -5071,Bakeru ,,,,2024-09-25 18:05:22,1 +5070,The Legend of Zelda Echoes of Wisdom - 01008CF01BAAC000,01008CF01BAAC000,status-playable;nvdec;ASTC;intel-vendor-bug,playable,2024-10-01 14:11:01,34 +5071,Bakeru - 01007CD01FAE0000,01007CD01FAE0000,,,2024-09-25 18:05:22,1 5072,トラブル・マギア ~訳アリ少女は未来を勝ち取るために異国の魔法学校へ留学します~(Trouble Magia ~Wakeari Shoujo wa Mirai o Kachitoru Tame ni Ikoku no Mahou Gakkou e Ryuugaku Shimasu~) - 01000BB01CB8A000,01000BB01CB8A000,status-nothing,nothing,2024-09-28 7:03:14,3 5073,I am an Airtraffic Controller AIRPORT HERO HANEDA ALLSTARS - 01002EE01BAE0000,01002EE01BAE0000,,,2024-09-27 2:04:17,1 5074,燃えよ! 乙女道士 ~華遊恋語~ (Moeyo! Otome Doushi Kayu Koigatari) - 01001BA01EBFC000,01001BA01EBFC000,services-horizon;status-nothing,nothing,2024-09-28 12:22:55,5 From ed5832ca732dd4c885c49706355705893913f0b9 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Tue, 7 Jan 2025 04:21:33 -0600 Subject: [PATCH 27/69] docs: compat: Add new releases to the end of the file --- docs/compatibility.csv | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/compatibility.csv b/docs/compatibility.csv index 1b4f1a3ce..8e7da4f4f 100644 --- a/docs/compatibility.csv +++ b/docs/compatibility.csv @@ -4301,3 +4301,7 @@ issue_number,issue_title,extracted_game_id,issue_labels,extracted_status,last_ev 5077,Angel at Dusk Demo - 0100D96020ADC000,0100D96020ADC000,,,2024-09-29 17:21:13,1 5078,Monster Jam™ Showdown - 0100CE101B698000,0100CE101B698000,,,2024-09-30 4:03:13,1 5079,Legend of Heroes: Trails Through Daybreak - 010040C01D248000,010040C01D248000,,,2024-10-01 7:36:25,1 +100001,Mario & Luigi: Brothership - 01006D0017F7A000,01006D0017F7A000,status-ingame;crash;slow;UE4;mac-bug,ingame,2024-01-07 4:00:00,1 +100002,Stray - 010075101EF84000,010075101EF84000,status-ingame;crash,ingame,2024-01-07 4:03:00,1 +100003,Dragon Quest III HD-2D Remake - 01003E601E324000,01003E601E324000,status-ingame;vulkan-backend-bug;UE4;audout;mac-bug;ingame,2024-01-07 4:10:27,1 +100004,SONIC X SHADOW GENERATIONS - 01005EA01C0fC000,01005EA01C0fC000,status-ingame;crash;2024-01-07 4:20:45,1 From a82569d6155d0c51865e4c07ae6f958fa1344fab Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Tue, 7 Jan 2025 04:28:10 -0600 Subject: [PATCH 28/69] docs: compat: LEGO Horizon Adventures --- docs/compatibility.csv | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/compatibility.csv b/docs/compatibility.csv index 8e7da4f4f..c8de6d04e 100644 --- a/docs/compatibility.csv +++ b/docs/compatibility.csv @@ -4244,7 +4244,7 @@ issue_number,issue_title,extracted_game_id,issue_labels,extracted_status,last_ev 4967,Biomutant - 01004BA017CD6000,01004BA017CD6000,status-ingame;crash,ingame,2024-05-16 15:46:36,2 4968,Vampire Survivors - 010089A0197E4000,010089A0197E4000,status-ingame,ingame,2024-06-17 9:57:38,2 4969,Koumajou Remilia II Stranger’s Requiem,,Incomplete,,2024-05-22 20:59:04,3 -4972,Paper Mario: The Thousand-Year Door - 0100ECD018EBE000,0100ECD018EBE000,gpu;status-ingame;intel-vendor-bug,ingame,2024-08-06 1:02:25,79 +4972,Paper Mario: The Thousand-Year Door - 0100ECD018EBE000,0100ECD018EBE000,gpu;status-ingame;intel-vendor-bug;slow,ingame,2025-01-07 4:27:35,80 4973,Stories From Sol: The Gun-dog Demo - 010092A01EC94000,010092A01EC94000,,,2024-05-22 19:55:35,1 4977,Earth Defense Force: World Brothers 2 - 010083a01d456000,010083a01d456000,,,2024-06-01 18:34:34,1 4985,锈色湖畔:内在昔日(Rusty Lake: The Past Within) - 01007010157EC000,01007010157EC000,,,2024-06-10 13:47:40,1 @@ -4301,7 +4301,8 @@ issue_number,issue_title,extracted_game_id,issue_labels,extracted_status,last_ev 5077,Angel at Dusk Demo - 0100D96020ADC000,0100D96020ADC000,,,2024-09-29 17:21:13,1 5078,Monster Jam™ Showdown - 0100CE101B698000,0100CE101B698000,,,2024-09-30 4:03:13,1 5079,Legend of Heroes: Trails Through Daybreak - 010040C01D248000,010040C01D248000,,,2024-10-01 7:36:25,1 -100001,Mario & Luigi: Brothership - 01006D0017F7A000,01006D0017F7A000,status-ingame;crash;slow;UE4;mac-bug,ingame,2024-01-07 4:00:00,1 -100002,Stray - 010075101EF84000,010075101EF84000,status-ingame;crash,ingame,2024-01-07 4:03:00,1 -100003,Dragon Quest III HD-2D Remake - 01003E601E324000,01003E601E324000,status-ingame;vulkan-backend-bug;UE4;audout;mac-bug;ingame,2024-01-07 4:10:27,1 -100004,SONIC X SHADOW GENERATIONS - 01005EA01C0fC000,01005EA01C0fC000,status-ingame;crash;2024-01-07 4:20:45,1 +100001,Mario & Luigi: Brothership - 01006D0017F7A000,01006D0017F7A000,status-ingame;crash;slow;UE4;mac-bug,ingame,2025-01-07 4:00:00,1 +100002,Stray - 010075101EF84000,010075101EF84000,status-ingame;crash,ingame,2025-01-07 4:03:00,1 +100003,Dragon Quest III HD-2D Remake - 01003E601E324000,01003E601E324000,status-ingame;vulkan-backend-bug;UE4;audout;mac-bug;ingame,2025-01-07 4:10:27,1 +100004,SONIC X SHADOW GENERATIONS - 01005EA01C0fC000,01005EA01C0fC000,status-ingame;crash;2025-01-07 4:20:45,1 +100005,LEGO Horizon Adventures - 010073C01AF34000,010073C01AF34000,status-ingame;vulkan-backend-bug;opengl-backend-bug;UE4;2025-01-07 4:24:56,1 From 5efa7d5dfae57c6ee9cb3b31e25efd03e3c69601 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Tue, 7 Jan 2025 04:37:36 -0600 Subject: [PATCH 29/69] UI: compat: remove custom ContentDialog derived type --- docs/compatibility.csv | 6 +++--- src/Ryujinx/Assets/Styles/Styles.xaml | 2 +- src/Ryujinx/Ryujinx.csproj | 6 ------ .../Compat/CompatibilityContentDialog.axaml | 20 ------------------- .../CompatibilityContentDialog.axaml.cs | 13 ------------ .../Compat/CompatibilityList.axaml.cs | 14 ++++++++++--- 6 files changed, 15 insertions(+), 46 deletions(-) delete mode 100644 src/Ryujinx/Utilities/Compat/CompatibilityContentDialog.axaml delete mode 100644 src/Ryujinx/Utilities/Compat/CompatibilityContentDialog.axaml.cs diff --git a/docs/compatibility.csv b/docs/compatibility.csv index c8de6d04e..59d647994 100644 --- a/docs/compatibility.csv +++ b/docs/compatibility.csv @@ -4303,6 +4303,6 @@ issue_number,issue_title,extracted_game_id,issue_labels,extracted_status,last_ev 5079,Legend of Heroes: Trails Through Daybreak - 010040C01D248000,010040C01D248000,,,2024-10-01 7:36:25,1 100001,Mario & Luigi: Brothership - 01006D0017F7A000,01006D0017F7A000,status-ingame;crash;slow;UE4;mac-bug,ingame,2025-01-07 4:00:00,1 100002,Stray - 010075101EF84000,010075101EF84000,status-ingame;crash,ingame,2025-01-07 4:03:00,1 -100003,Dragon Quest III HD-2D Remake - 01003E601E324000,01003E601E324000,status-ingame;vulkan-backend-bug;UE4;audout;mac-bug;ingame,2025-01-07 4:10:27,1 -100004,SONIC X SHADOW GENERATIONS - 01005EA01C0fC000,01005EA01C0fC000,status-ingame;crash;2025-01-07 4:20:45,1 -100005,LEGO Horizon Adventures - 010073C01AF34000,010073C01AF34000,status-ingame;vulkan-backend-bug;opengl-backend-bug;UE4;2025-01-07 4:24:56,1 +100003,Dragon Quest III HD-2D Remake - 01003E601E324000,01003E601E324000,status-ingame;vulkan-backend-bug;UE4;audout;mac-bug,ingame,2025-01-07 4:10:27,1 +100004,SONIC X SHADOW GENERATIONS - 01005EA01C0fC000,01005EA01C0fC000,status-ingame;crash,ingame,2025-01-07 4:20:45,1 +100005,LEGO Horizon Adventures - 010073C01AF34000,010073C01AF34000,status-ingame;vulkan-backend-bug;opengl-backend-bug;UE4,ingame,2025-01-07 4:24:56,1 diff --git a/src/Ryujinx/Assets/Styles/Styles.xaml b/src/Ryujinx/Assets/Styles/Styles.xaml index 878b5e7f1..3d0c91840 100644 --- a/src/Ryujinx/Assets/Styles/Styles.xaml +++ b/src/Ryujinx/Assets/Styles/Styles.xaml @@ -402,7 +402,7 @@ 13 26 28 - 700 + 900 756 diff --git a/src/Ryujinx/Ryujinx.csproj b/src/Ryujinx/Ryujinx.csproj index 0cad28957..ab9a3696d 100644 --- a/src/Ryujinx/Ryujinx.csproj +++ b/src/Ryujinx/Ryujinx.csproj @@ -171,12 +171,6 @@ - - - CompatibilityContentDialog.axaml - Code - - diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityContentDialog.axaml b/src/Ryujinx/Utilities/Compat/CompatibilityContentDialog.axaml deleted file mode 100644 index fbceefc33..000000000 --- a/src/Ryujinx/Utilities/Compat/CompatibilityContentDialog.axaml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - 900 - - - diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityContentDialog.axaml.cs b/src/Ryujinx/Utilities/Compat/CompatibilityContentDialog.axaml.cs deleted file mode 100644 index 513600bc0..000000000 --- a/src/Ryujinx/Utilities/Compat/CompatibilityContentDialog.axaml.cs +++ /dev/null @@ -1,13 +0,0 @@ -using FluentAvalonia.UI.Controls; -using System; - -namespace Ryujinx.Ava.Utilities.Compat -{ - public partial class CompatibilityContentDialog : ContentDialog - { - protected override Type StyleKeyOverride => typeof(ContentDialog); - - public CompatibilityContentDialog() => InitializeComponent(); - } -} - diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs b/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs index b475bae36..80f124121 100644 --- a/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs +++ b/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs @@ -1,6 +1,8 @@ using Avalonia.Controls; using Avalonia.Styling; +using FluentAvalonia.UI.Controls; using nietras.SeparatedValues; +using Ryujinx.Ava.Common.Locale; using Ryujinx.Ava.UI.Helpers; using System.IO; using System.Reflection; @@ -19,11 +21,17 @@ namespace Ryujinx.Ava.Utilities.Compat csvStream.Position = 0; CompatibilityCsv.Shared = new CompatibilityCsv(Sep.Reader().From(csvStream)); - } + } - CompatibilityContentDialog contentDialog = new() + ContentDialog contentDialog = new() { - Content = new CompatibilityList { DataContext = new CompatibilityViewModel(RyujinxApp.MainWindow.ViewModel.ApplicationLibrary) } + PrimaryButtonText = string.Empty, + SecondaryButtonText = string.Empty, + CloseButtonText = LocaleManager.Instance[LocaleKeys.SettingsButtonClose], + Content = new CompatibilityList + { + DataContext = new CompatibilityViewModel(RyujinxApp.MainWindow.ViewModel.ApplicationLibrary) + } }; Style closeButton = new(x => x.Name("CloseButton")); From ef9c1416eccc1e6901749b6242370504e766795e Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Tue, 7 Jan 2025 04:49:20 -0600 Subject: [PATCH 30/69] UI: compat: Only use monospaced font for title ID --- docs/compatibility.csv | 2 +- src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs | 3 ++- src/Ryujinx/Utilities/Compat/CompatibilityList.axaml | 5 +---- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/docs/compatibility.csv b/docs/compatibility.csv index 59d647994..1f5cfc218 100644 --- a/docs/compatibility.csv +++ b/docs/compatibility.csv @@ -4304,5 +4304,5 @@ issue_number,issue_title,extracted_game_id,issue_labels,extracted_status,last_ev 100001,Mario & Luigi: Brothership - 01006D0017F7A000,01006D0017F7A000,status-ingame;crash;slow;UE4;mac-bug,ingame,2025-01-07 4:00:00,1 100002,Stray - 010075101EF84000,010075101EF84000,status-ingame;crash,ingame,2025-01-07 4:03:00,1 100003,Dragon Quest III HD-2D Remake - 01003E601E324000,01003E601E324000,status-ingame;vulkan-backend-bug;UE4;audout;mac-bug,ingame,2025-01-07 4:10:27,1 -100004,SONIC X SHADOW GENERATIONS - 01005EA01C0fC000,01005EA01C0fC000,status-ingame;crash,ingame,2025-01-07 4:20:45,1 +100004,SONIC X SHADOW GENERATIONS - 01005EA01C0FC000,01005EA01C0FC000,status-ingame;crash,ingame,2025-01-07 4:20:45,1 100005,LEGO Horizon Adventures - 010073C01AF34000,010073C01AF34000,status-ingame;vulkan-backend-bug;opengl-backend-bug;UE4,ingame,2025-01-07 4:24:56,1 diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs b/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs index a3f9fc62d..d6390cc7d 100644 --- a/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs +++ b/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs @@ -72,7 +72,8 @@ namespace Ryujinx.Ava.Utilities.Compat public int EventCount { get; } public string LocalizedStatus => LocaleManager.Instance[Status!.Value]; - public string FormattedTitleId => TitleId.OrElse(new string(' ', 16)); + public string FormattedTitleId => TitleId + .OrElse(new string(' ', 16)); public string FormattedIssueLabels => IssueLabels .Where(it => !it.StartsWithIgnoreCase("status")) diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml b/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml index a1b167df8..8e14c3904 100644 --- a/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml +++ b/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml @@ -47,9 +47,8 @@ From 5a6d01db3cab24292730060e435325f7bd416c30 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Tue, 7 Jan 2025 05:50:30 -0600 Subject: [PATCH 31/69] docs: compat: trine 4 -> nothing added Soul Reaver 1 & 2 --- docs/compatibility.csv | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/compatibility.csv b/docs/compatibility.csv index 1f5cfc218..595a8015a 100644 --- a/docs/compatibility.csv +++ b/docs/compatibility.csv @@ -464,7 +464,7 @@ issue_number,issue_title,extracted_game_id,issue_labels,extracted_status,last_ev 533,Wandersong - 0100F8A00853C000,0100F8A00853C000,nvdec;status-playable,playable,2021-06-04 15:33:34,6 535,Untitled Goose Game,,status-playable,playable,2020-09-26 13:18:06,2 536,Unbox: Newbie's Adventure - 0100592005164000,0100592005164000,status-playable;UE4,playable,2022-08-29 13:12:56,4 -537,Trine 4: The Nightmare Prince - 010055E00CA68000,010055E00CA68000,gpu;status-ingame;ldn-untested,ingame,2023-10-23 2:40:46,8 +537,Trine 4: The Nightmare Prince - 010055E00CA68000,010055E00CA68000,gpu;status-nothing,nothing,2025-01-07 5:47:46,9 538,Travis Strikes Again: No More Heroes - 010011600C946000,010011600C946000,status-playable;nvdec;UE4,playable,2022-08-25 12:36:38,6 539,Bubble Bobble 4 Friends - 010010900F7B4000,010010900F7B4000,nvdec;status-playable,playable,2021-06-04 15:27:55,7 540,Bloodstained: Curse of the Moon,,status-playable,playable,2020-09-04 10:42:17,2 @@ -4306,3 +4306,4 @@ issue_number,issue_title,extracted_game_id,issue_labels,extracted_status,last_ev 100003,Dragon Quest III HD-2D Remake - 01003E601E324000,01003E601E324000,status-ingame;vulkan-backend-bug;UE4;audout;mac-bug,ingame,2025-01-07 4:10:27,1 100004,SONIC X SHADOW GENERATIONS - 01005EA01C0FC000,01005EA01C0FC000,status-ingame;crash,ingame,2025-01-07 4:20:45,1 100005,LEGO Horizon Adventures - 010073C01AF34000,010073C01AF34000,status-ingame;vulkan-backend-bug;opengl-backend-bug;UE4,ingame,2025-01-07 4:24:56,1 +100006,Legacy of Kain™ Soul Reaver 1&2 Remastered - 010079901C898000,010079901C898000,status-playable,playable,2025-01-07 5:50:01,1 From 9270b35648dcdbec75c1083767775bf847aecc68 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Tue, 7 Jan 2025 05:53:31 -0600 Subject: [PATCH 32/69] no. --- docs/compatibility.csv | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/compatibility.csv b/docs/compatibility.csv index 595a8015a..ef2d8b095 100644 --- a/docs/compatibility.csv +++ b/docs/compatibility.csv @@ -3915,7 +3915,6 @@ issue_number,issue_title,extracted_game_id,issue_labels,extracted_status,last_ev 4445,Foxy’s Coin Hunt - 0100EE401A378000,0100EE401A378000,,,2023-02-20 2:00:00,1 4446,Samurai Warrior - 0100B6501A360000,0100B6501A360000,status-playable,playable,2023-02-27 18:42:38,2 4447,NCL USA Bowl - 010004801A450000,010004801A450000,,,2023-02-20 2:00:05,1 -4448,Hentai RPG Isekai Journey - 010025A019C02000,010025A019C02000,,,2023-02-20 2:00:08,1 4449,Dadish - 0100B8B013310000,0100B8B013310000,,,2023-02-20 23:19:02,1 4450,Dadish 2 - 0100BB70140BA000,0100BB70140BA000,,,2023-02-20 23:28:43,1 4451,Dadish 3 - 01001010181AA000,01001010181AA000,,,2023-02-20 23:38:55,1 @@ -4149,7 +4148,6 @@ issue_number,issue_title,extracted_game_id,issue_labels,extracted_status,last_ev 4800,Osyaberi! Horijyo! Gekihori - 01005D6013A54000,01005D6013A54000,,,2023-11-07 1:46:43,1 4801,Fashion Dreamer - 0100E99019B3A000,0100E99019B3A000,status-playable,playable,2023-11-12 6:42:52,2 4802,THE 密室逃脱 ~牵动命运的三十五道谜团~ (ESCAPE TRICK: 35 Fateful Enigmas) - 010087F005DFE000,010087F005DFE000,,,2023-11-08 2:20:17,1 -4804,Hentai Party - 010071D01CF34000,010071D01CF34000,,,2023-11-11 23:22:36,1 4809,Hogwarts Legacy 0100F7E00C70E000,0100F7E00C70E000,status-ingame;slow,ingame,2024-09-03 19:53:58,24 4811,Super Mario RPG - 0100BC0018138000,0100BC0018138000,gpu;audio;status-ingame;nvdec,ingame,2024-06-19 17:43:42,39 4812,Venatrix - 010063601B386000,010063601B386000,,,2023-11-18 6:55:12,1 @@ -4165,7 +4163,6 @@ issue_number,issue_title,extracted_game_id,issue_labels,extracted_status,last_ev 4830,Squid Commando - 0100044018E82000,0100044018E82000,,,2023-12-08 17:17:27,1 4834,御伽活劇 豆狸のバケル ~オラクル祭太郎の祭難!!~ (Otogi Katsugeki Mameda no Bakeru Oracle Saitarou no Sainan!!) - 0100BF401AF9C000,0100BF401AF9C000,slow;status-playable,playable,2023-12-31 14:37:17,2 4835,Another Code: Recollection DEMO - 01003E301A4D6000,01003E301A4D6000,,,2023-12-15 6:48:09,1 -4836,Hentai Golf - 01009D801D6E4000,01009D801D6E4000,,,2023-12-17 3:39:06,1 4837,Alien Hominid HD - 010056B019874000,010056B019874000,,,2023-12-17 13:10:46,1 4838,Piyokoro - 010098801D706000,010098801D706000,,,2023-12-18 2:17:53,1 4839,Uzzuzuu My Pet - Golf Dash - 010015B01CAF0000,010015B01CAF0000,,,2023-12-18 2:17:57,1 From 804d9c1efeda7f350662ca6edb5a93b75727ad1b Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Tue, 7 Jan 2025 06:03:35 -0600 Subject: [PATCH 33/69] docs: compat: remove invalid dupe --- docs/compatibility.csv | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/compatibility.csv b/docs/compatibility.csv index ef2d8b095..4df07bea9 100644 --- a/docs/compatibility.csv +++ b/docs/compatibility.csv @@ -4133,7 +4133,6 @@ issue_number,issue_title,extracted_game_id,issue_labels,extracted_status,last_ev 4773,Sonic Superstars - 01008F701C074000,01008F701C074000,gpu;status-ingame;nvdec,ingame,2023-10-28 17:48:07,16 4774,Sonic Superstars Digital Art Book with Mini Digital Soundtrack - 010088801C150000,010088801C150000,status-playable,playable,2024-08-20 13:26:56,2 4776,Super Mario Bros. Wonder - 010015100B514000,010015100B514000,status-playable;amd-vendor-bug,playable,2024-09-06 13:21:21,36 -4781,Game Incompatibility - Super Marios Bros Wonder,,,,2023-10-21 19:09:02,2 4786,Project Blue - 0100FCD0193A0000,0100FCD0193A0000,,,2023-10-24 15:55:09,2 4787,Rear Sekai [ リアセカイ ] - 0100C3B01A5DD002,0100C3B01A5DD002,,,2023-10-24 1:55:18,1 4788,Dementium: The Ward (Dementium Remastered) - 010038B01D2CA000,010038B01D2CA000,status-boots;crash,boots,2024-09-02 8:28:14,8 From 672f5df0f92d892399cfce7350a0a705fee97c0c Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Tue, 7 Jan 2025 18:49:04 -0600 Subject: [PATCH 34/69] docs: compat: Remove issue_number & events_count columns That's mostly for archival purposes; we don't need it. --- docs/compatibility.csv | 8610 ++++++++--------- .../Utilities/Compat/CompatibilityCsv.cs | 29 +- 2 files changed, 4319 insertions(+), 4320 deletions(-) diff --git a/docs/compatibility.csv b/docs/compatibility.csv index 4df07bea9..66de18297 100644 --- a/docs/compatibility.csv +++ b/docs/compatibility.csv @@ -1,4305 +1,4305 @@ -issue_number,issue_title,extracted_game_id,issue_labels,extracted_status,last_event_date,events_count -42,ARMS - 01009B500007C000,01009B500007C000,status-playable;ldn-works;LAN,playable,2024-08-28 7:49:24,9 -43,Pokemon Quest - 01005D100807A000,01005D100807A000,status-playable,playable,2022-02-22 16:12:32,10 -44,Retro City Rampage DX,,status-playable,playable,2021-01-05 17:04:17,8 -45,Kirby Star Allies - 01007E3006DDA000,01007E3006DDA000,status-playable;nvdec,playable,2023-11-15 17:06:19,23 -46,Bayonetta 2 - 01007960049A0000,01007960049A0000,status-playable;nvdec;ldn-works;LAN,playable,2022-11-26 3:46:09,10 -47,Bloons TD 5 - 0100B8400A1C6000,0100B8400A1C6000,Needs Update;audio;gpu;services;status-boots,boots,2021-04-18 23:02:46,5 -48,Urban Trial Playground - 01001B10068EC000,01001B10068EC000,UE4;nvdec;online;status-playable,playable,2021-03-25 20:56:51,8 -49,Ben 10 - 01006E1004404000,01006E1004404000,nvdec;status-playable,playable,2021-02-26 14:08:35,8 -50,Lanota,,status-playable,playable,2019-09-04 1:58:14,5 -51,Portal Knights - 0100437004170000,0100437004170000,ldn-untested;online;status-playable,playable,2021-05-27 19:29:04,5 -52,Thimbleweed Park - 01009BD003B36000,01009BD003B36000,status-playable,playable,2022-08-24 11:15:31,9 -53,Pokkén Tournament DX - 0100B3F000BE2000,0100B3F000BE2000,status-playable;nvdec;ldn-works;opengl-backend-bug;LAN;amd-vendor-bug;intel-vendor-bug,playable,2024-07-18 23:11:08,24 -55,Farming Simulator Nintendo Switch Edition,,nvdec;status-playable,playable,2021-01-19 14:46:44,6 -56,Sonic Forces - 01001270012B6000,01001270012B6000,status-playable,playable,2024-07-28 13:11:21,13 -57,One Piece Pirate Warriors 3,,nvdec;status-playable,playable,2020-05-10 6:23:52,6 -58,Dragon Quest Heroes I + II (JP) - 0100CD3000BDC000,0100CD3000BDC000,nvdec;status-playable,playable,2021-04-08 14:27:16,9 -59,Dragon Quest Builders - 010008900705C000,010008900705C000,gpu;status-ingame;nvdec,ingame,2023-08-14 9:54:36,19 -60,Don't Starve - 0100751007ADA000,0100751007ADA000,status-playable;nvdec,playable,2022-02-05 20:43:34,7 -61,Bud Spencer & Terence Hill - Slaps and Beans - 01000D200AC0C000,01000D200AC0C000,status-playable,playable,2022-07-17 12:37:00,6 -62,Fantasy Hero Unsigned Legacy - 0100767008502000,0100767008502000,status-playable,playable,2022-07-26 12:28:52,8 -64,MUSNYX,,status-playable,playable,2020-05-08 14:24:43,4 -65,Mario Tennis Aces - 0100BDE00862A000,0100BDE00862A000,gpu;status-ingame;nvdec;ldn-works;LAN,ingame,2024-09-28 15:54:40,23 -66,Higurashi no Naku Koro ni Hō - 0100F6A00A684000,0100F6A00A684000,audio;status-ingame,ingame,2021-09-18 14:40:28,10 -67,Nintendo Entertainment System - Nintendo Switch Online - 0100D870045B6000,0100D870045B6000,status-playable;online,playable,2022-07-01 15:45:06,3 -68,SEGA Ages: Sonic The Hedgehog - 010051F00AC5E000,010051F00AC5E000,slow;status-playable,playable,2023-03-05 20:16:31,10 -69,10 Second Run Returns - 01004D1007926000,01004D1007926000,gpu;status-ingame,ingame,2022-07-17 13:06:18,8 -70,PriPara: All Idol Perfect Stage - 010007F00879E000,010007F00879E000,status-playable,playable,2022-11-22 16:35:52,4 -71,Shantae and the Pirate's Curse - 0100EFD00A4FA000,0100EFD00A4FA000,status-playable,playable,2024-04-29 17:21:57,11 -72,DARK SOULS™: REMASTERED - 01004AB00A260000,01004AB00A260000,gpu;status-ingame;nvdec;online-broken,ingame,2024-04-09 19:47:58,15 -73,The Liar Princess and the Blind Prince - 010064B00B95C000,010064B00B95C000,audio;slow;status-playable,playable,2020-06-08 21:23:28,3 -74,Dead Cells - 0100646009FBE000,0100646009FBE000,status-playable,playable,2021-09-22 22:18:49,7 -75,Sonic Mania - 01009AA000FAA000,01009AA000FAA000,status-playable,playable,2020-06-08 17:30:57,6 -76,The Mahjong,,Needs Update;crash;services;status-nothing,nothing,2021-04-01 22:06:22,6 -77,Angels of Death - 0100AE000AEBC000,0100AE000AEBC000,nvdec;status-playable,playable,2021-02-22 14:17:15,7 -78,Penny-Punching Princess - 0100C510049E0000,0100C510049E0000,status-playable,playable,2022-08-09 13:37:05,6 -79,Just Shapes & Beats,,ldn-untested;nvdec;status-playable,playable,2021-02-09 12:18:36,7 -80,Minecraft - Nintendo Switch Edition - 01006BD001E06000,01006BD001E06000,status-playable;ldn-broken,playable,2023-10-15 1:47:08,17 -81,FINAL FANTASY XV POCKET EDITION HD,,status-playable,playable,2021-01-05 17:52:08,5 -82,Dragon Ball Xenoverse 2 - 010078D000F88000,010078D000F88000,gpu;status-ingame;nvdec;online;ldn-untested,ingame,2022-07-24 12:31:01,12 -83,Atelier Lydie & Suelle: The Alchemists and the Mysterious Paintings - 010009900947A000,010009900947A000,nvdec;status-playable,playable,2021-06-03 18:37:01,11 -84,Nights of Azure 2: Bride of the New Moon - 0100628004BCE000,0100628004BCE000,status-menus;crash;nvdec;regression,menus,2022-11-24 16:00:39,9 -85,RXN -Raijin-,,nvdec;status-playable,playable,2021-01-10 16:05:43,6 -86,The Legend of Zelda: Breath of the Wild - 01007EF00011E000,01007EF00011E000,gpu;status-ingame;amd-vendor-bug;mac-bug,ingame,2024-09-23 19:35:46,66 -87,The Messenger,,status-playable,playable,2020-03-22 13:51:37,4 -88,Starlink: Battle for Atlas - 01002CC003FE6000,01002CC003FE6000,services-horizon;status-nothing;crash;Needs Update,nothing,2024-05-05 17:25:11,13 -89,Nintendo Labo - Toy-Con 01: Variety Kit - 0100C4B0034B2000,0100C4B0034B2000,gpu;status-ingame,ingame,2022-08-07 12:56:07,7 -90,Diablo III: Eternal Collection - 01001B300B9BE000,01001B300B9BE000,status-playable;online-broken;ldn-works,playable,2023-08-21 23:48:03,49 -91,Road Redemption - 010053000B986000,010053000B986000,status-playable;online-broken,playable,2022-08-12 11:26:20,4 -92,Brawlhalla - 0100C6800B934000,0100C6800B934000,online;opengl;status-playable,playable,2021-06-03 18:26:09,8 -93,Super Mario Odyssey - 0100000000010000,0100000000010000,status-playable;nvdec;intel-vendor-bug;mac-bug,playable,2024-08-25 1:32:34,69 -95,Sonic Mania Plus - 01009AA000FAA000,01009AA000FAA000,status-playable,playable,2022-01-16 4:09:11,6 -96,Pokken Tournament DX Demo - 010030D005AE6000,010030D005AE6000,status-playable;demo;opengl-backend-bug,playable,2022-08-10 12:03:19,4 -97,Fast RMX - 01009510001CA000,01009510001CA000,slow;status-ingame;crash;ldn-partial,ingame,2024-06-22 20:48:58,22 -98,Steins;Gate Elite,,status-playable,playable,2020-08-04 7:33:32,4 -99,Memories Off -Innocent Fille- for Dearest,,status-playable,playable,2020-08-04 7:31:22,4 -100,Enchanting Mahjong Match,,gpu;status-ingame,ingame,2020-04-17 22:01:31,3 -101,Code of Princess EX - 010034E005C9C000,010034E005C9C000,nvdec;online;status-playable,playable,2021-06-03 10:50:13,4 -102,20XX - 0100749009844000,0100749009844000,gpu;status-ingame,ingame,2023-08-14 9:41:44,11 -103,Cartoon Network Battle Crashers - 0100085003A2A000,0100085003A2A000,status-playable,playable,2022-07-21 21:55:40,7 -104,Danmaku Unlimited 3,,status-playable,playable,2020-11-15 0:48:35,8 -105,Mega Man Legacy Collection Vol.1 - 01002D4007AE0000,01002D4007AE0000,gpu;status-ingame,ingame,2021-06-03 18:17:17,8 -106,Sparkle ZERO,,gpu;slow;status-ingame,ingame,2020-03-23 18:19:18,3 -107,Sparkle 2,,status-playable,playable,2020-10-19 11:51:39,6 -108,Sparkle Unleashed - 01000DC007E90000,01000DC007E90000,status-playable,playable,2021-06-03 14:52:15,4 -109,I AM SETSUNA - 0100849000BDA000,0100849000BDA000,status-playable,playable,2021-11-28 11:06:11,11 -110,Lego City Undercover - 01003A30012C0000,01003A30012C0000,status-playable;nvdec,playable,2024-09-30 8:44:27,9 -111,Mega Man X Legacy Collection,,audio;crash;services;status-menus,menus,2020-12-04 4:30:17,6 -112,Super Bomberman R - 01007AD00013E000,01007AD00013E000,status-playable;nvdec;online-broken;ldn-works,playable,2022-08-16 19:19:14,9 -113,Mega Man 11 - 0100B0C0086B0000,0100B0C0086B0000,status-playable,playable,2021-04-26 12:07:53,6 -114,Undertale - 010080B00AD66000,010080B00AD66000,status-playable,playable,2022-08-31 17:31:46,11 -115,"Pokémon: Let's Go, Eevee! - 0100187003A36000",0100187003A36000,status-ingame;crash;nvdec;online-broken;ldn-broken,ingame,2024-06-01 15:03:04,24 -116,Poly Bridge,,services;status-playable,playable,2020-06-08 23:32:41,6 -117,BlazBlue: Cross Tag Battle,,nvdec;online;status-playable,playable,2021-01-05 20:29:37,5 -118,Capcom Beat 'Em Up Bundle,,status-playable,playable,2020-03-23 18:31:24,3 -119,Owlboy,,status-playable,playable,2020-10-19 14:24:45,5 -120,Subarashiki Kono Sekai -Final Remix-,,services;slow;status-ingame,ingame,2020-02-10 16:21:51,4 -121,Ultra Street Fighter II: The Final Challengers - 01007330027EE000,01007330027EE000,status-playable;ldn-untested,playable,2021-11-25 7:54:58,5 -122,Mighty Gunvolt Burst,,status-playable,playable,2020-10-19 16:05:49,4 -123,Super Meat Boy,,services;status-playable,playable,2020-04-02 23:10:07,5 -124,UNO - 01005AA00372A000,01005AA00372A000,status-playable;nvdec;ldn-untested,playable,2022-07-28 14:49:47,9 -125,Tales of the Tiny Planet - 0100408007078000,0100408007078000,status-playable,playable,2021-01-25 15:47:41,6 -126,Octopath Traveler,,UE4;crash;gpu;status-ingame,ingame,2020-08-31 2:34:36,9 -127,A magical high school girl - 01008DD006C52000,01008DD006C52000,status-playable,playable,2022-07-19 14:40:50,4 -128,Superbeat: Xonic EX - 0100FF60051E2000,0100FF60051E2000,status-ingame;crash;nvdec,ingame,2022-08-19 18:54:40,2 -129,DRAGON BALL FighterZ - 0100A250097F0000,0100A250097F0000,UE4;ldn-broken;nvdec;online;status-playable,playable,2021-06-11 16:19:04,12 -130,Arcade Archives VS. SUPER MARIO BROS.,,online;status-playable,playable,2021-04-08 14:48:11,8 -131,Celeste,,status-playable,playable,2020-06-17 10:14:40,2 -132,Hollow Knight - 0100633007D48000,0100633007D48000,status-playable;nvdec,playable,2023-01-16 15:44:56,4 -133,Shining Resonance Refrain - 01009A5009A9E000,01009A5009A9E000,status-playable;nvdec,playable,2022-08-12 18:03:01,7 -134,Valkyria Chronicles 4 Demo - 0100FBD00B91E000,0100FBD00B91E000,slow;status-ingame;demo,ingame,2022-08-29 20:39:07,3 -136,Super Smash Bros. Ultimate - 01006A800016E000,01006A800016E000,gpu;status-ingame;crash;nvdec;ldn-works;intel-vendor-bug,ingame,2024-09-14 23:05:21,56 -137,Cendrillon palikA - 01006B000A666000,01006B000A666000,gpu;status-ingame;nvdec,ingame,2022-07-21 22:52:24,12 -138,Atari Flashback Classics,,,,2018-12-15 6:55:27,1 -139,RPG Maker MV,,nvdec;status-playable,playable,2021-01-05 20:12:01,5 -140,SNK 40th Anniversary Collection - 01004AB00AEF8000,01004AB00AEF8000,status-playable,playable,2022-08-14 13:33:15,8 -141,Firewatch - 0100AC300919A000,0100AC300919A000,status-playable,playable,2021-06-03 10:56:38,9 -142,Taiko no Tatsujin: Drum 'n' Fun! - 01002C000B552000,01002C000B552000,status-playable;online-broken;ldn-broken,playable,2023-05-20 15:10:12,12 -143,Fairy Fencer F™: Advent Dark Force - 0100F6D00B8F2000,0100F6D00B8F2000,status-ingame;32-bit;crash;nvdec,ingame,2023-04-16 3:53:48,9 -144,Azure Striker Gunvolt: STRIKER PACK - 0100192003FA4000,0100192003FA4000,32-bit;status-playable,playable,2024-02-10 23:51:21,12 -145,LIMBO - 01009C8009026000,01009C8009026000,cpu;status-boots;32-bit,boots,2023-06-28 15:39:19,10 -147,Dragon Marked for Death: Frontline Fighters (Empress & Warrior) - 010089700150E000,010089700150E000,status-playable;ldn-untested;audout,playable,2022-03-10 6:44:34,5 -148,SENRAN KAGURA Reflexions,,status-playable,playable,2020-03-23 19:15:23,11 -149,Dies irae Amantes amentes For Nintendo Switch - 0100BB900B5B4000,0100BB900B5B4000,status-nothing;32-bit;crash,nothing,2022-02-16 7:09:05,9 -150,TETRIS 99 - 010040600C5CE000,010040600C5CE000,gpu;status-ingame;online-broken;ldn-untested,ingame,2024-05-02 16:36:41,28 -151,Yoshi's Crafted World Demo Version,,gpu;status-boots;status-ingame,boots,2020-12-16 14:57:40,3 -152,8-BIT ADVENTURE STEINS;GATE,,audio;status-ingame,ingame,2020-01-12 15:05:06,1 -153,Ao no Kanata no Four Rhythm - 0100FA100620C000,0100FA100620C000,status-playable,playable,2022-07-21 10:50:42,8 -154,DELTARUNE Chapter 1 - 010023800D64A000,010023800D64A000,status-playable,playable,2023-01-22 4:47:44,4 -155,My Girlfriend is a Mermaid!?,,nvdec;status-playable,playable,2020-05-08 13:32:55,6 -156,SEGA Mega Drive Classics,,online;status-playable,playable,2021-01-05 11:08:00,5 -157,Aragami: Shadow Edition - 010071800BA74000,010071800BA74000,nvdec;status-playable,playable,2021-02-21 20:33:23,5 -158,この世の果てで恋を唄う少女YU-NO,,audio;status-ingame,ingame,2021-01-22 7:00:16,2 -159,Xenoblade Chronicles 2 - 0100E95004038000,0100E95004038000,deadlock;status-ingame;amd-vendor-bug,ingame,2024-03-28 14:31:41,51 -160,Atelier Rorona Arland no Renkinjutsushi DX (JP) - 01002D700B906000,01002D700B906000,status-playable;nvdec,playable,2022-12-02 17:26:54,3 -161,DEAD OR ALIVE Xtreme 3 Scarlet - 01009CC00C97C000,01009CC00C97C000,status-playable,playable,2022-07-23 17:05:06,23 -162,Blaster Master Zero 2 - 01005AA00D676000,01005AA00D676000,status-playable,playable,2021-04-08 15:22:59,2 -163,Vroom in the Night Sky - 01004E90028A2000,01004E90028A2000,status-playable;Needs Update;vulkan-backend-bug,playable,2023-02-20 2:32:29,7 -164,Our World Is Ended.,,nvdec;status-playable,playable,2021-01-19 22:46:57,6 -165,Mortal Kombat 11 - 0100F2200C984000,0100F2200C984000,slow;status-ingame;nvdec;online-broken;ldn-broken,ingame,2024-06-19 2:22:17,10 -166,SEGA Ages: Virtua Racing - 010054400D2E6000,010054400D2E6000,status-playable;online-broken,playable,2023-01-29 17:08:39,6 -167,BOXBOY! + BOXGIRL!,,status-playable,playable,2020-11-08 1:11:54,6 -168,Hyrule Warriors: Definitive Edition - 0100AE00096EA000,0100AE00096EA000,services-horizon;status-ingame;nvdec,ingame,2024-06-16 10:34:05,36 -170,Cytus α - 010063100B2C2000,010063100B2C2000,nvdec;status-playable,playable,2021-02-20 13:40:46,5 -171,Resident Evil 4 - 010099A00BC1E000,010099A00BC1E000,status-playable;nvdec,playable,2022-11-16 21:16:04,12 -172,Team Sonic Racing - 010092B0091D0000,010092B0091D0000,status-playable;online-broken;ldn-works,playable,2024-02-05 15:05:27,9 -173,Pang Adventures - 010083700B730000,010083700B730000,status-playable,playable,2021-04-10 12:16:59,7 -174,Remi Lore - 010095900B436000,010095900B436000,status-playable,playable,2021-06-03 18:58:15,6 -175,SKYHILL - 0100A0A00D1AA000,0100A0A00D1AA000,status-playable,playable,2021-03-05 15:19:11,5 -176,Valkyria Chronicles 4 - 01005C600AC68000,01005C600AC68000,audout;nvdec;status-playable,playable,2021-06-03 18:12:25,6 -177,Crystal Crisis - 0100972008234000,0100972008234000,nvdec;status-playable,playable,2021-02-20 13:52:44,5 -178,Crash Team Racing Nitro-Fueled - 0100F9F00C696000,0100F9F00C696000,gpu;status-ingame;nvdec;online-broken,ingame,2023-06-25 2:40:17,19 -179,Collection of Mana,,status-playable,playable,2020-10-19 19:29:45,5 -180,Super Mario Maker 2 - 01009B90006DC000,01009B90006DC000,status-playable;online-broken;ldn-broken,playable,2024-08-25 11:05:19,22 -181,Nekopara Vol.3 - 010045000E418000,010045000E418000,status-playable,playable,2022-10-03 12:49:04,6 -182,Moero Chronicle Hyper - 0100B8500D570000,0100B8500D570000,32-bit;status-playable,playable,2022-08-11 7:21:56,12 -183,Monster Hunter XX Demo,,32-bit;cpu;status-nothing,nothing,2020-03-22 10:12:28,3 -184,Super Neptunia RPG - 01004D600AC14000,01004D600AC14000,status-playable;nvdec,playable,2022-08-17 16:38:52,8 -185,Terraria - 0100E46006708000,0100E46006708000,status-playable;online-broken,playable,2022-09-12 16:14:57,5 -186,Megaman Legacy Collection 2,,status-playable,playable,2021-01-06 8:47:59,2 -187,Blazing Chrome,,status-playable,playable,2020-11-16 4:56:54,6 -188,Dragon Quest Builders 2 - 010042000A986000,010042000A986000,status-playable,playable,2024-04-19 16:36:38,10 -189,CLANNAD - 0100A3A00CC7E000,0100A3A00CC7E000,status-playable,playable,2021-06-03 17:01:02,6 -190,Ys VIII: Lacrimosa of Dana - 01007F200B0C0000,01007F200B0C0000,status-playable;nvdec,playable,2023-08-05 9:26:41,20 -191,PC Building Simulator,,status-playable,playable,2020-06-12 0:31:58,4 -192,NO THING,,status-playable,playable,2021-01-04 19:06:01,2 -193,The Swords of Ditto,,slow;status-ingame,ingame,2020-12-06 0:13:12,2 -194,Kill la Kill - IF,,status-playable,playable,2020-06-09 14:47:08,6 -195,Spyro Reignited Trilogy,,Needs More Attention;UE4;crash;gpu;nvdec;status-menus,menus,2021-01-22 13:01:56,6 -196,FINAL FANTASY VIII REMASTERED - 01008B900DC0A000,01008B900DC0A000,status-playable;nvdec,playable,2023-02-15 10:57:48,8 -197,Super Nintendo Entertainment System - Nintendo Switch Online,,status-playable,playable,2021-01-05 0:29:48,5 -198,スーパーファミコン Nintendo Switch Online,,slow;status-ingame,ingame,2020-03-14 5:48:38,3 -199,Street Fighter 30th Anniversary Collection - 0100024008310000,0100024008310000,status-playable;online-broken;ldn-partial,playable,2022-08-20 16:50:47,7 -200,Cadence of Hyrule Crypt of the NecroDancer Featuring The Legend of Zelda - 01000B900D8B0000,01000B900D8B0000,slow;status-playable;nvdec,playable,2024-04-01 22:43:40,19 -201,Nekopara Vol.2,,status-playable,playable,2020-12-16 11:04:47,5 -202,Nekopara Vol.1 - 0100B4900AD3E000,0100B4900AD3E000,status-playable;nvdec,playable,2022-08-06 18:25:54,5 -203,Gunvolt Chronicles: Luminous Avenger iX,,status-playable,playable,2020-06-16 22:47:07,3 -204,Outlast - 01008D4007A1E000,01008D4007A1E000,status-playable;nvdec;loader-allocator;vulkan-backend-bug,playable,2024-01-27 4:44:26,7 -205,OKAMI HD - 0100276009872000,0100276009872000,status-playable;nvdec,playable,2024-04-05 6:24:58,6 -207,Luigi's Mansion 3 - 0100DCA0064A6000,0100DCA0064A6000,gpu;slow;status-ingame;Needs Update;ldn-works,ingame,2024-09-27 22:17:36,57 -208,The Legend of Zelda: Link's Awakening - 01006BB00C6F0000,01006BB00C6F0000,gpu;status-ingame;nvdec;mac-bug,ingame,2023-08-09 17:37:40,29 -209,Cat Quest,,status-playable,playable,2020-04-02 23:09:32,4 -216,Xenoblade Chronicles 2: Torna - The Golden Country - 0100C9F009F7A000,0100C9F009F7A000,slow;status-playable;nvdec,playable,2023-01-28 16:47:28,4 -217,Devil May Cry,,nvdec;status-playable,playable,2021-01-04 19:43:08,2 -218,Fire Emblem Warriors - 0100F15003E64000,0100F15003E64000,status-playable;nvdec,playable,2023-05-10 1:53:10,17 -219,Disgaea 4 Complete Plus,,gpu;slow;status-playable,playable,2020-02-18 10:54:28,2 -220,Donkey Kong Country Tropical Freeze - 0100C1F0051B6000,0100C1F0051B6000,status-playable,playable,2024-08-05 16:46:10,16 -221,Puzzle and Dragons GOLD,,slow;status-playable,playable,2020-05-13 15:09:34,2 -222,Fe,,,,2020-01-21 4:08:33,1 -223,MARIO & SONIC AT THE OLYMPIC GAMES TOKYO 2020 - 010002C00C270000,010002C00C270000,status-ingame;crash;online-broken;ldn-works,ingame,2024-08-23 16:12:55,23 -224,void* tRrLM(); //Void Terrarium - 0100FF7010E7E000,0100FF7010E7E000,gpu;status-ingame;Needs Update;regression,ingame,2023-02-10 1:13:25,8 -225,Cars 3 Driven to Win - 01008D1001512000,01008D1001512000,gpu;status-ingame,ingame,2022-07-21 21:21:05,11 -226,Yu-Gi-Oh! Legacy of the Duelist: Link Evolution! - 010022400BE5A000,010022400BE5A000,status-playable,playable,2024-09-27 21:48:43,23 -227,Baba Is You - 01002CD00A51C000,01002CD00A51C000,status-playable,playable,2022-07-17 5:36:54,8 -228,Thronebreaker: The Witcher Tales - 0100E910103B4000,0100E910103B4000,nvdec;status-playable,playable,2021-06-03 16:40:15,4 -229,Fitness Boxing,,services;status-ingame,ingame,2020-05-17 14:00:48,4 -230,Fire Emblem: Three Houses - 010055D009F78000,010055D009F78000,status-playable;online-broken,playable,2024-09-14 23:53:50,47 -231,Persona 5: Scramble,,deadlock;status-boots,boots,2020-10-04 3:22:29,7 -232,Pokémon Sword - 0100ABF008968000,0100ABF008968000,deadlock;status-ingame;crash;online-broken;ldn-works;LAN,ingame,2024-08-26 15:40:37,63 -233,Mario + Rabbids Kingdom Battle - 010067300059A000,010067300059A000,slow;status-playable;opengl-backend-bug,playable,2024-05-06 10:16:54,20 -234,Tokyo Mirage Sessions #FE Encore - 0100A9400C9C2000,0100A9400C9C2000,32-bit;status-playable;nvdec,playable,2022-07-07 9:41:07,8 -235,Disgaea 1 Complete - 01004B100AF18000,01004B100AF18000,status-playable,playable,2023-01-30 21:45:23,3 -237,初音ミク Project DIVA MEGA39's - 0100F3100DA46000,0100F3100DA46000,audio;status-playable;loader-allocator,playable,2022-07-29 11:45:52,25 -239,Minna de Wai Wai! Spelunker - 0100C3F000BD8000,0100C3F000BD8000,status-nothing;crash,nothing,2021-11-03 7:17:11,4 -242,Nickelodeon Paw Patrol: On a Roll - 0100CEC003A4A000,0100CEC003A4A000,nvdec;status-playable,playable,2021-01-28 21:14:49,5 -243,Rune Factory 4 Special - 010051D00E3A4000,010051D00E3A4000,status-ingame;32-bit;crash;nvdec,ingame,2023-05-06 8:49:17,47 -244,Mario Kart 8 Deluxe - 0100152000022000,0100152000022000,32-bit;status-playable;ldn-works;LAN;amd-vendor-bug,playable,2024-09-19 11:55:17,57 -245,Pokémon Mystery Dungeon Rescue Team DX - 01003D200BAA2000,01003D200BAA2000,status-playable;mac-bug,playable,2024-01-21 0:16:32,9 -246,YGGDRA UNION We’ll Never Fight Alone,,status-playable,playable,2020-04-03 2:20:47,4 -247,メモリーズオフ - Innocent Fille - 010065500B218000,010065500B218000,status-playable,playable,2022-12-02 17:36:48,6 -248,Bokujou Monogatari Saikai no Mineraru Taun (Story of Seasons: Friends of Mineral Town) - 01001D900D9AC000,01001D900D9AC000,slow;status-ingame;crash;Needs Update,ingame,2022-04-24 22:46:04,4 -249,Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy - Deluxe Edition - 0100CE500D226000,0100CE500D226000,status-playable;nvdec;opengl,playable,2022-09-14 15:01:57,14 -250,Animal Crossing: New Horizons - 01006F8002326000,01006F8002326000,gpu;status-ingame;crash;nvdec;online-broken;ldn-works;mac-bug,ingame,2024-09-23 13:31:49,112 -251,Crayon Shin-chan The Storm Called Flaming Kasukabe Runner!,,services;status-menus,menus,2020-03-20 14:00:57,2 -252,Super One More Jump - 0100284007D6C000,0100284007D6C000,status-playable,playable,2022-08-17 16:47:47,5 -253,Trine - 0100D9000A930000,0100D9000A930000,ldn-untested;nvdec;status-playable,playable,2021-06-03 11:28:15,3 -254,Sky Force Reloaded,,status-playable,playable,2021-01-04 20:06:57,3 -255,World of Goo - 010009E001D90000,010009E001D90000,gpu;status-boots;32-bit;crash;regression,boots,2024-04-12 5:52:14,4 -256,ZERO GUNNER 2,,status-playable,playable,2021-01-04 20:17:14,2 -257,Zaccaria Pinball - 010092400A678000,010092400A678000,status-playable;online-broken,playable,2022-09-03 15:44:28,5 -258,1917 - The Alien Invasion DX,,status-playable,playable,2021-01-08 22:11:16,4 -259,Astro Duel Deluxe - 0100F0400351C000,0100F0400351C000,32-bit;status-playable,playable,2021-06-03 11:21:48,4 -260,Another World - 01003C300AAAE000,01003C300AAAE000,slow;status-playable,playable,2022-07-21 10:42:38,4 -261,Ring Fit Adventure - 01002FF008C24000,01002FF008C24000,crash;services;status-nothing,nothing,2021-04-14 19:00:01,7 -262,Arcade Classics Anniversary Collection - 010050000D6C4000,010050000D6C4000,status-playable,playable,2021-06-03 13:55:10,3 -263,Assault Android Cactus+ - 0100DF200B24C000,0100DF200B24C000,status-playable,playable,2021-06-03 13:23:55,6 -264,American Fugitive,,nvdec;status-playable,playable,2021-01-04 20:45:11,2 -265,Nickelodeon Kart Racers,,status-playable,playable,2021-01-07 12:16:49,2 -266,Neonwall - 0100743008694000,0100743008694000,status-playable;nvdec,playable,2022-08-06 18:49:52,3 -267,Never Stop Sneakin',,,,2020-03-19 12:55:40,1 -268,Next Up Hero,,online;status-playable,playable,2021-01-04 22:39:36,2 -269,Ninja Striker,,status-playable,playable,2020-12-08 19:33:29,3 -270,Not Not a Brain Buster,,status-playable,playable,2020-05-10 2:05:26,5 -271,Oh...Sir! The Hollywood Roast,,status-ingame,ingame,2020-12-06 0:42:30,2 -272,Old School Musical,,status-playable,playable,2020-12-10 12:51:12,3 -273,Abyss,,,,2020-03-19 15:41:55,1 -274,Alteric,,status-playable,playable,2020-11-08 13:53:22,10 -277,AIRHEART - Tales of Broken Wings - 01003DD00BFEE000,01003DD00BFEE000,status-playable,playable,2021-02-26 15:20:27,4 -278,Necrosphere,,,,2020-03-19 17:25:03,1 -279,Neverout,,,,2020-03-19 17:33:39,1 -280,Old Man's Journey - 0100CE2007A86000,0100CE2007A86000,nvdec;status-playable,playable,2021-01-28 19:16:52,2 -281,Dr Kawashima's Brain Training - 0100ED000D390000,0100ED000D390000,services;status-ingame,ingame,2023-06-04 0:06:46,3 -282,Nine Parchments - 0100D03003F0E000,0100D03003F0E000,status-playable;ldn-untested,playable,2022-08-07 12:32:08,3 -283,All-Star Fruit Racing - 0100C1F00A9B8000,0100C1F00A9B8000,status-playable;nvdec;UE4,playable,2022-07-21 0:35:37,3 -284,Armello,,nvdec;status-playable,playable,2021-01-07 11:43:26,3 -285,DOOM 64,,nvdec;status-playable;vulkan,playable,2020-10-13 23:47:28,11 -286,Motto New Pazzmatsu-san Shimpin Sotsugyo Keikaku,,,,2020-03-20 14:53:55,1 -287,Refreshing Sideways Puzzle Ghost Hammer,,status-playable,playable,2020-10-18 12:08:54,4 -288,Astebreed - 010057A00C1F6000,010057A00C1F6000,status-playable,playable,2022-07-21 17:33:54,3 -289,ASCENDANCE,,status-playable,playable,2021-01-05 10:54:40,2 -290,Astral Chain - 01007300020FA000,01007300020FA000,status-playable,playable,2024-07-17 18:02:19,15 -291,Oceanhorn,,status-playable,playable,2021-01-05 13:55:22,2 -292,NORTH,,nvdec;status-playable,playable,2021-01-05 16:17:44,2 -293,No Heroes Here,,online;status-playable,playable,2020-05-10 2:41:57,4 -294,New Frontier Days -Founding Pioneers-,,status-playable,playable,2020-12-10 12:45:07,3 -295,Star Ghost,,,,2020-03-20 23:40:10,1 -296,Stern Pinball Arcade - 0100AE0006474000,0100AE0006474000,status-playable,playable,2022-08-16 14:24:41,6 -297,Nightmare Boy,,status-playable,playable,2021-01-05 15:52:29,2 -298,Pinball FX3 - 0100DB7003828000,0100DB7003828000,status-playable;online-broken,playable,2022-11-11 23:49:07,5 -299,Polygod - 010017600B180000,010017600B180000,slow;status-ingame;regression,ingame,2022-08-10 14:38:14,3 -300,Prison Architect - 010029200AB1C000,010029200AB1C000,status-playable,playable,2021-04-10 12:27:58,4 -301,Psikyo Collection Vol 1,,32-bit;status-playable,playable,2020-10-11 13:18:47,3 -302,Raging Justice - 01003D00099EC000,01003D00099EC000,status-playable,playable,2021-06-03 14:06:50,6 -303,Old School Racer 2,,status-playable,playable,2020-10-19 12:11:26,3 -304,Death Road to Canada - 0100423009358000,0100423009358000,gpu;audio;status-nothing;32-bit;crash,nothing,2023-06-28 15:39:26,8 -305,Feather - 0100E4300CB3E000,0100E4300CB3E000,status-playable,playable,2021-06-03 14:11:27,3 -306,Laser Kitty Pow Pow,,,,2020-03-21 23:44:13,1 -307,Bad Dudes,,status-playable,playable,2020-12-10 12:30:56,3 -308,Bomber Crew - 01007900080B6000,01007900080B6000,status-playable,playable,2021-06-03 14:21:28,4 -309,Death Squared,,status-playable,playable,2020-12-04 13:00:15,3 -310,PAC-MAN CHAMPIONSHIP EDITION 2 PLUS,,status-playable,playable,2021-01-19 22:06:18,5 -311,RollerCoaster Tycoon Adventures,,nvdec;status-playable,playable,2021-01-05 18:14:18,2 -312,STAY - 0100616009082000,0100616009082000,crash;services;status-boots,boots,2021-04-23 14:24:52,3 -313,STRIKERS1945 for Nintendo Switch - 0100FF5005B76000,0100FF5005B76000,32-bit;status-playable,playable,2021-06-03 19:35:04,6 -314,STRIKERS1945II for Nintendo Switch - 0100720008ED2000,0100720008ED2000,32-bit;status-playable,playable,2021-06-03 19:43:00,5 -315,BLEED,,,,2020-03-22 9:15:11,1 -316,Earthworms Demo,,status-playable,playable,2021-01-05 16:57:11,2 -317,MEMBRANE,,,,2020-03-22 10:25:32,1 -318,Mercenary Kings,,online;status-playable,playable,2020-10-16 13:05:58,3 -319,Morphite,,status-playable,playable,2021-01-05 19:40:55,2 -320,Spiral Splatter,,status-playable,playable,2020-06-04 14:03:57,3 -321,Odium to the Core,,gpu;status-ingame,ingame,2021-01-08 14:03:52,3 -322,Brawl,,nvdec;slow;status-playable,playable,2020-06-04 14:23:18,3 -323,Defunct,,status-playable,playable,2021-01-08 21:33:46,2 -324,Dracula's Legacy,,nvdec;status-playable,playable,2020-12-10 13:24:25,3 -325,Submerged - 0100EDA00D866000,0100EDA00D866000,status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-08-16 15:17:01,7 -326,Resident Evil Revelations - 0100643002136000,0100643002136000,status-playable;nvdec;ldn-untested,playable,2022-08-11 12:44:19,3 -327,"Pokémon: Let's Go, Pikachu! - 010003F003A34000",010003F003A34000,status-ingame;crash;nvdec;online-broken;ldn-broken,ingame,2024-03-15 7:55:41,23 -328,Syberia 1 & 2 - 01004BB00421E000,01004BB00421E000,status-playable,playable,2021-12-24 12:06:25,8 -329,Light Fall,,nvdec;status-playable,playable,2021-01-18 14:55:36,3 -330,PLANET ALPHA,,UE4;gpu;status-ingame,ingame,2020-12-16 14:42:20,2 -331,Game Doraemon Nobita no Shin Kyoryu - 01006BD00F8C0000,01006BD00F8C0000,gpu;status-ingame,ingame,2023-02-27 2:03:28,3 -332,Shift Happens,,status-playable,playable,2021-01-05 21:24:18,2 -333,SENRAN KAGURA Peach Ball - 0100D1800D902000,0100D1800D902000,status-playable,playable,2021-06-03 15:12:10,3 -334,Shadow Bug,,,,2020-03-23 20:26:08,1 -335,Dandy Dungeon: Legend of Brave Yamada,,status-playable,playable,2021-01-06 9:48:47,2 -336,Scribblenauts Mega Pack,,nvdec;status-playable,playable,2020-12-17 22:56:14,2 -337,Scribblenauts Showdown,,gpu;nvdec;status-ingame,ingame,2020-12-17 23:05:53,2 -338,Super Chariot - 010065F004E5E000,010065F004E5E000,status-playable,playable,2021-06-03 13:19:01,5 -339,Table Top Racing World Tour Nitro Edition,,status-playable,playable,2020-04-05 23:21:30,4 -340,The Pinball Arcade - 0100CD300880E000,0100CD300880E000,status-playable;online-broken,playable,2022-08-22 19:49:46,6 -341,The Room - 010079400BEE0000,010079400BEE0000,status-playable,playable,2021-04-14 18:57:05,4 -342,The Binding of Isaac: Afterbirth+ - 010021C000B6A000,010021C000B6A000,status-playable,playable,2021-04-26 14:11:56,6 -343,World Soccer Pinball,,status-playable,playable,2021-01-06 0:37:02,2 -344,ZOMBIE GOLD RUSH,,online;status-playable,playable,2020-09-24 12:56:08,2 -345,Wondershot - 0100F5D00C812000,0100F5D00C812000,status-playable,playable,2022-08-31 21:05:31,4 -346,Yet Another Zombie Defense HD,,status-playable,playable,2021-01-06 0:18:39,2 -347,Among the Sleep - Enhanced Edition - 010046500C8D2000,010046500C8D2000,nvdec;status-playable,playable,2021-06-03 15:06:25,4 -348,Silence - 0100F1400B0D6000,0100F1400B0D6000,nvdec;status-playable,playable,2021-06-03 14:46:17,2 -349,A Robot Named Fight,,,,2020-03-24 19:27:39,1 -350,60 Seconds! - 0100969005E98000,0100969005E98000,services;status-ingame,ingame,2021-11-30 1:04:14,3 -351,Xenon Racer - 010028600BA16000,010028600BA16000,status-playable;nvdec;UE4,playable,2022-08-31 22:05:30,5 -352,Awesome Pea,,status-playable,playable,2020-10-11 12:39:23,4 -354,Woodle Tree 2,,gpu;slow;status-ingame,ingame,2020-06-04 18:44:00,4 -355,Volgarr the Viking,,status-playable,playable,2020-12-18 15:25:50,4 -356,VVVVVV,,,,2020-03-24 21:53:29,1 -357,Vegas Party - 01009CD003A0A000,01009CD003A0A000,status-playable,playable,2021-04-14 19:21:41,5 -358,Worms W.M.D - 01001AE005166000,01001AE005166000,gpu;status-boots;crash;nvdec;ldn-untested,boots,2023-09-16 21:42:59,7 -359,Ambition of the Slimes,,,,2020-03-24 22:46:18,1 -360,WINDJAMMERS,,online;status-playable,playable,2020-10-13 11:24:25,4 -361,WarGroove - 01000F0002BB6000,01000F0002BB6000,status-playable;online-broken,playable,2022-08-31 10:30:45,4 -362,Car Mechanic Manager,,status-playable,playable,2020-07-23 18:50:17,2 -363,Cattails - 010004400B28A000,010004400B28A000,status-playable,playable,2021-06-03 14:36:57,5 -364,Chameleon Run Deluxe Edition,,,,2020-03-25 0:20:21,1 -365,ClusterPuck 99,,status-playable,playable,2021-01-06 0:28:12,2 -366,Coloring Book - 0100A7000BD28000,0100A7000BD28000,status-playable,playable,2022-07-22 11:17:05,5 -367,Crashlands - 010027100BD16000,010027100BD16000,status-playable,playable,2021-05-27 20:30:06,3 -368,Crimsonland - 01005640080B0000,01005640080B0000,status-playable,playable,2021-05-27 20:50:54,2 -369,Cubikolor,,,,2020-03-25 0:39:17,1 -370,My Friend Pedro: Blood Bullets Bananas - 010031200B94C000,010031200B94C000,nvdec;status-playable,playable,2021-05-28 11:19:17,3 -371,VA-11 HALL-A - 0100A6700D66E000,0100A6700D66E000,status-playable,playable,2021-02-26 15:05:34,6 -372,Octodad Dadliest Catch - 0100CAB006F54000,0100CAB006F54000,crash;status-boots,boots,2021-04-23 15:26:12,3 -373,Neko Navy: Daydream Edition,,,,2020-03-25 10:11:47,1 -374,Neon Chrome - 010075E0047F8000,010075E0047F8000,status-playable,playable,2022-08-06 18:38:34,4 -375,NeuroVoider,,status-playable,playable,2020-06-04 18:20:05,3 -376,Ninjin: Clash of Carrots - 010003C00B868000,010003C00B868000,status-playable;online-broken,playable,2024-07-10 5:12:26,10 -377,Nuclien,,status-playable,playable,2020-05-10 5:32:55,3 -378,Number Place 10000 - 010020500C8C8000,010020500C8C8000,gpu;status-menus,menus,2021-11-24 9:14:23,7 -379,Octocopter: Double or Squids,,status-playable,playable,2021-01-06 1:30:16,2 -380,Odallus - 010084300C816000,010084300C816000,status-playable,playable,2022-08-08 12:37:58,4 -381,One Eyed Kutkh,,,,2020-03-25 11:42:58,1 -382,One More Dungeon,,status-playable,playable,2021-01-06 9:10:58,2 -383,1-2-Switch - 01000320000CC000,01000320000CC000,services;status-playable,playable,2022-02-18 14:44:03,3 -384,ACA NEOGEO AERO FIGHTERS 2 - 0100AC40038F4000,0100AC40038F4000,online;status-playable,playable,2021-04-08 15:44:09,3 -385,Captain Toad: Treasure Tracker - 01009BF0072D4000,01009BF0072D4000,32-bit;status-playable,playable,2024-04-25 0:50:16,3 -386,Vaccine,,nvdec;status-playable,playable,2021-01-06 1:02:07,2 -387,Carnival Games - 010088C0092FE000,010088C0092FE000,status-playable;nvdec,playable,2022-07-21 21:01:22,5 -388,OLYMPIC GAMES TOKYO 2020,,ldn-untested;nvdec;online;status-playable,playable,2021-01-06 1:20:24,2 -389,Yodanji,,,,2020-03-25 16:28:53,1 -390,Axiom Verge,,status-playable,playable,2020-10-20 1:07:18,2 -391,Blaster Master Zero - 0100225000FEE000,0100225000FEE000,32-bit;status-playable,playable,2021-03-05 13:22:33,2 -392,SamuraiAces for Nintendo Switch,,32-bit;status-playable,playable,2020-11-24 20:26:55,4 -393,Rogue Aces - 0100EC7009348000,0100EC7009348000,gpu;services;status-ingame;nvdec,ingame,2021-11-30 2:18:30,7 -394,Pokémon HOME,,Needs Update;crash;services;status-menus,menus,2020-12-06 6:01:51,2 -395,Safety First!,,status-playable,playable,2021-01-06 9:05:23,2 -396,3D MiniGolf,,status-playable,playable,2021-01-06 9:22:11,2 -397,DOUBLE DRAGON4,,,,2020-03-25 23:46:46,1 -398,Don't Die Mr. Robot DX - 010007200AC0E000,010007200AC0E000,status-playable;nvdec,playable,2022-09-02 18:34:38,7 -399,DERU - The Art of Cooperation,,status-playable,playable,2021-01-07 16:59:59,4 -400,Darts Up - 0100BA500B660000,0100BA500B660000,status-playable,playable,2021-04-14 17:22:22,2 -401,Deponia - 010023600C704000,010023600C704000,nvdec;status-playable,playable,2021-01-26 17:17:19,2 -402,Devious Dungeon - 01009EA00A320000,01009EA00A320000,status-playable,playable,2021-03-04 13:03:06,2 -403,Turok - 010085500D5F6000,010085500D5F6000,gpu;status-ingame,ingame,2021-06-04 13:16:24,3 -404,Toast Time: Smash Up!,,crash;services;status-menus,menus,2020-04-03 12:26:59,3 -405,The VideoKid,,nvdec;status-playable,playable,2021-01-06 9:28:24,2 -406,Timberman VS,,,,2020-03-26 14:18:29,1 -407,Time Recoil - 0100F770045CA000,0100F770045CA000,status-playable,playable,2022-08-24 12:44:03,3 -408,Toby: The Secret Mine,,nvdec;status-playable,playable,2021-01-06 9:22:33,2 -409,Toki Tori,,,,2020-03-26 14:49:54,1 -410,Totes the Goat,,,,2020-03-26 14:55:00,1 -411,Twin Robots: Ultimate Edition - 0100047009742000,0100047009742000,status-playable;nvdec,playable,2022-08-25 14:24:03,2 -412,Ultimate Runner - 010045200A1C2000,010045200A1C2000,status-playable,playable,2022-08-29 12:52:40,3 -413,UnExplored - Unlocked Edition,,status-playable,playable,2021-01-06 10:02:16,2 -414,Unepic - 01008F80049C6000,01008F80049C6000,status-playable,playable,2024-01-15 17:03:00,6 -415,Uncanny Valley - 01002D900C5E4000,01002D900C5E4000,nvdec;status-playable,playable,2021-06-04 13:28:45,2 -416,Ultra Hyperball,,status-playable,playable,2021-01-06 10:09:55,2 -417,Timespinner - 0100DD300CF3A000,0100DD300CF3A000,gpu;status-ingame,ingame,2022-08-09 9:39:11,5 -418,Tiny Barbarian DX,,,,2020-03-26 18:46:29,1 -419,TorqueL -Physics Modified Edition-,,,,2020-03-26 18:55:23,1 -420,Unholy Heights,,,,2020-03-26 19:03:43,1 -421,Uurnog Uurnlimited,,,,2020-03-26 19:34:02,1 -422,de Blob 2,,nvdec;status-playable,playable,2021-01-06 13:00:16,2 -423,The Trail: Frontier Challenge - 0100B0E0086F6000,0100B0E0086F6000,slow;status-playable,playable,2022-08-23 15:10:51,3 -425,Toy Stunt Bike: Tiptop's Trials - 01009FF00A160000,01009FF00A160000,UE4;status-playable,playable,2021-04-10 13:56:34,3 -426,TumbleSeed,,,,2020-03-26 21:27:06,1 -427,Type:Rider,,status-playable,playable,2021-01-06 13:12:55,2 -428,Dawn of the Breakers - 0100F0B0081DA000,0100F0B0081DA000,status-menus;online-broken;vulkan-backend-bug,menus,2022-12-08 14:40:03,5 -429,Thumper - 01006F6002840000,01006F6002840000,gpu;status-ingame,ingame,2024-08-12 2:41:07,6 -430,Revenge of Justice - 010027400F708000 ,010027400F708000,status-playable;nvdec,playable,2022-11-20 15:43:23,3 -431,Dead Synchronicity: Tomorrow Comes Today,,,,2020-03-26 23:13:28,1 -435,Them Bombs,,,,2020-03-27 12:46:15,1 -436,Alwa's Awakening,,status-playable,playable,2020-10-13 11:52:01,5 -437,La Mulana 2 - 010038000F644000,010038000F644000,status-playable,playable,2022-09-03 13:45:57,7 -438,Tied Together - 0100B6D00C2DE000,0100B6D00C2DE000,nvdec;status-playable,playable,2021-04-10 14:03:46,4 -439,Magic Scroll Tactics,,,,2020-03-27 14:00:41,1 -440,SeaBed,,status-playable,playable,2020-05-17 13:25:37,4 -441,Wenjia,,status-playable,playable,2020-06-08 11:38:30,4 -442,DragonBlaze for Nintendo Switch,,32-bit;status-playable,playable,2020-10-14 11:11:28,3 -443,Debris Infinity - 010034F00BFC8000,010034F00BFC8000,nvdec;online;status-playable,playable,2021-05-28 12:14:39,4 -444,Die for Valhalla!,,status-playable,playable,2021-01-06 16:09:14,2 -445,Double Cross,,status-playable,playable,2021-01-07 15:34:22,4 -446,Deep Ones,,services;status-nothing,nothing,2020-04-03 2:54:19,3 -447,One Step to Eden,,,,2020-03-27 16:31:39,1 -448,Bravely Default II Demo - 0100B6801137E000,0100B6801137E000,gpu;status-ingame;crash;UE4;demo,ingame,2022-09-27 5:39:47,7 -449,Prison Princess - 0100F4800F872000,0100F4800F872000,status-playable,playable,2022-11-20 15:00:25,4 -450,NinNinDays - 0100746010E4C000,0100746010E4C000,status-playable,playable,2022-11-20 15:17:29,4 -451,Syrup and the Ultimate Sweet,,,,2020-03-27 21:10:42,1 -452,Touhou Gensou Mahjong,,,,2020-03-27 21:36:20,1 -453,Shikhondo Soul Eater,,,,2020-03-27 22:14:23,1 -454, de Shooting wa Machigatteiru Daroka,,,,2020-03-27 22:27:54,1 -456,MY HERO ONE'S JUSTICE,,UE4;crash;gpu;online;status-menus,menus,2020-12-10 13:11:04,7 -457,Heaven Dust,,status-playable,playable,2020-05-17 14:02:41,4 -458,Touhou Sky Arena matsuri climax,,,,2020-03-28 0:25:17,1 -459,Mercenaries Wings The False Phoenix,,crash;services;status-nothing,nothing,2020-05-08 22:42:12,4 -460,Don't Sink - 0100C4D00B608000,0100C4D00B608000,gpu;status-ingame,ingame,2021-02-26 15:41:11,4 -461,Disease -Hidden Object-,,,,2020-03-28 8:17:51,1 -462,Dexteritrip,,status-playable,playable,2021-01-06 12:51:12,2 -463,Devil Engine - 010031B00CF66000,010031B00CF66000,status-playable,playable,2021-06-04 11:54:30,5 -464,Detective Gallo - 01009C0009842000,01009C0009842000,status-playable;nvdec,playable,2022-07-24 11:51:04,2 -465,Zettai kaikyu gakuen,,gpu;nvdec;status-ingame,ingame,2020-08-25 15:15:54,2 -466,Demetrios - The BIG Cynical Adventure - 0100AB600ACB4000,0100AB600ACB4000,status-playable,playable,2021-06-04 12:01:01,3 -467,Degrees of Separation,,status-playable,playable,2021-01-10 13:40:04,6 -468,De Mambo - 01008E900471E000,01008E900471E000,status-playable,playable,2021-04-10 12:39:40,4 -469,Death Mark,,status-playable,playable,2020-12-13 10:56:25,3 -470,Deemo - 01002CC0062B8000,01002CC0062B8000,status-playable,playable,2022-07-24 11:34:33,4 -472,Disgaea 5 Complete - 01005700031AE000,01005700031AE000,nvdec;status-playable,playable,2021-03-04 15:32:54,2 -473,The World Ends With You -Final Remix- - 0100C1500B82E000,0100C1500B82E000,status-playable;ldn-untested,playable,2022-07-09 1:11:21,13 -474,Don't Knock Twice - 0100E470067A8000,0100E470067A8000,status-playable,playable,2024-05-08 22:37:58,3 -475,True Fear: Forsaken Souls - Part 1,,nvdec;status-playable,playable,2020-12-15 21:39:52,3 -476,Disco Dodgeball Remix,,online;status-playable,playable,2020-09-28 23:24:49,2 -477,Demon's Crystals - 0100A2B00BD88000,0100A2B00BD88000,status-nothing;crash;regression,nothing,2022-12-07 16:33:17,3 -478,Dimension Drive,,,,2020-03-29 10:40:38,1 -479,Tower of Babel,,status-playable,playable,2021-01-06 17:05:15,2 -480,Disc Jam - 0100510004D2C000,0100510004D2C000,UE4;ldn-untested;nvdec;online;status-playable,playable,2021-04-08 16:40:35,4 -481,DIABOLIK LOVERS CHAOS LINEAGE - 010027400BD24000,010027400BD24000,gpu;status-ingame;Needs Update,ingame,2023-06-08 2:20:44,21 -482,Detention,,,,2020-03-29 11:17:35,1 -483,Tumblestone,,status-playable,playable,2021-01-07 17:49:20,4 -484,De Blob,,nvdec;status-playable,playable,2021-01-06 17:34:46,2 -485,The Voice ,,services;status-menus,menus,2020-07-28 20:48:49,2 -486,DESTINY CONNECT,,UE4;gpu;nvdec;status-ingame,ingame,2020-12-16 12:20:36,2 -487,The Sexy Brutale,,status-playable,playable,2021-01-06 17:48:28,2 -488,Unicornicopia,,,,2020-03-29 13:01:35,1 -489,Ultra Space Battle Brawl,,,,2020-03-29 13:13:02,1 -490,Unruly Heroes,,status-playable,playable,2021-01-07 18:09:31,4 -491,UglyDolls: An Imperfect Adventure - 010079000B56C000,010079000B56C000,status-playable;nvdec;UE4,playable,2022-08-25 14:42:16,5 -492,Use Your Words - 01007C0003AEC000,01007C0003AEC000,status-menus;nvdec;online-broken,menus,2022-08-29 17:22:10,6 -493,New Super Lucky's Tale - 010017700B6C2000,010017700B6C2000,status-playable,playable,2024-03-11 14:14:10,7 -494,Yooka-Laylee and the Impossible Lair - 010022F00DA66000,010022F00DA66000,status-playable,playable,2021-03-05 17:32:21,4 -495,GRIS - 0100E1700C31C000,0100E1700C31C000,nvdec;status-playable,playable,2021-06-03 13:33:44,3 -496,Monster Boy and the Cursed Kingdom - 01006F7001D10000,01006F7001D10000,status-playable;nvdec,playable,2022-08-04 20:06:32,3 -497,Guns Gore and Cannoli 2,,online;status-playable,playable,2021-01-06 18:43:59,2 -498,Mark of the Ninja Remastered - 01009A700A538000,01009A700A538000,status-playable,playable,2022-08-04 15:48:30,4 -499,DOOM - 0100416004C00000,0100416004C00000,gpu;slow;status-ingame;nvdec;online-broken,ingame,2024-09-23 15:40:07,11 -500,TINY METAL - 010074800741A000,010074800741A000,UE4;gpu;nvdec;status-ingame,ingame,2021-03-05 17:11:57,3 -501,Shadowgate,,status-playable,playable,2021-04-24 7:32:57,2 -502,R-Type Dimensions EX,,status-playable,playable,2020-10-09 12:04:43,3 -503,Thea: The Awakening,,status-playable,playable,2021-01-18 15:08:47,3 -506,Toki,,nvdec;status-playable,playable,2021-01-06 19:59:23,2 -507,Superhot - 01001A500E8B4000,01001A500E8B4000,status-playable,playable,2021-05-05 19:51:30,2 -508,Tools Up!,,crash;status-ingame,ingame,2020-07-21 12:58:17,4 -509,The Stretchers - 0100AA400A238000,0100AA400A238000,status-playable;nvdec;UE4,playable,2022-09-16 15:40:58,7 -510,Shantae: Half-Genie Hero Ultimate Edition,,status-playable,playable,2020-06-04 20:14:20,4 -511,Monster Hunter Generation Ultimate - 0100770008DD8000,0100770008DD8000,32-bit;status-playable;online-broken;ldn-works,playable,2024-03-18 14:35:36,25 -512,ATV Drift & Tricks - 01000F600B01E000,01000F600B01E000,UE4;online;status-playable,playable,2021-04-08 17:29:17,4 -513,Metaloid: Origin,,status-playable,playable,2020-06-04 20:26:35,3 -514,The Walking Dead: The Final Season - 010060F00AA70000,010060F00AA70000,status-playable;online-broken,playable,2022-08-23 17:22:32,3 -515,Lyrica,,,,2020-03-31 10:09:40,1 -516,Beat Cop,,status-playable,playable,2021-01-06 19:26:48,2 -517,Broforce - 010060A00B53C000,010060A00B53C000,ldn-untested;online;status-playable,playable,2021-05-28 12:23:38,4 -518,Ludo Mania,,crash;services;status-nothing,nothing,2020-04-03 0:33:47,2 -519,The Way Remastered,,,,2020-03-31 10:34:26,1 -520,Little Inferno,,32-bit;gpu;nvdec;status-ingame,ingame,2020-12-17 21:43:56,3 -521,Toki Tori 2+,,,,2020-03-31 10:53:13,1 -522,Bastion - 010038600B27E000,010038600B27E000,status-playable,playable,2022-02-15 14:15:24,5 -523,Lovers in a Dangerous Spacetime,,,,2020-03-31 13:45:03,1 -524,Back in 1995,,,,2020-03-31 13:52:35,1 -525,Lost Phone Stories,,services;status-ingame,ingame,2020-04-05 23:17:33,4 -526,The Walking Dead - 010029200B6AA000,010029200B6AA000,status-playable,playable,2021-06-04 13:10:56,3 -527,Beyblade Burst Battle Zero - 010068600AD16000,010068600AD16000,services;status-menus;crash;Needs Update,menus,2022-11-20 15:48:32,8 -528,Tiny Hands Adventure - 010061A00AE64000,010061A00AE64000,status-playable,playable,2022-08-24 16:07:48,3 -529,My Time At Portia - 0100E25008E68000,0100E25008E68000,status-playable,playable,2021-05-28 12:42:55,3 -531,NBA 2K Playgrounds 2 - 01001AE00C1B2000,01001AE00C1B2000,status-playable;nvdec;online-broken;UE4;vulkan-backend-bug,playable,2022-08-06 14:40:38,5 -532,Valfaris - 010089700F30C000,010089700F30C000,status-playable,playable,2022-09-16 21:37:24,5 -533,Wandersong - 0100F8A00853C000,0100F8A00853C000,nvdec;status-playable,playable,2021-06-04 15:33:34,6 -535,Untitled Goose Game,,status-playable,playable,2020-09-26 13:18:06,2 -536,Unbox: Newbie's Adventure - 0100592005164000,0100592005164000,status-playable;UE4,playable,2022-08-29 13:12:56,4 -537,Trine 4: The Nightmare Prince - 010055E00CA68000,010055E00CA68000,gpu;status-nothing,nothing,2025-01-07 5:47:46,9 -538,Travis Strikes Again: No More Heroes - 010011600C946000,010011600C946000,status-playable;nvdec;UE4,playable,2022-08-25 12:36:38,6 -539,Bubble Bobble 4 Friends - 010010900F7B4000,010010900F7B4000,nvdec;status-playable,playable,2021-06-04 15:27:55,7 -540,Bloodstained: Curse of the Moon,,status-playable,playable,2020-09-04 10:42:17,2 -541,Unravel TWO - 0100E5D00CC0C000,0100E5D00CC0C000,status-playable;nvdec,playable,2024-05-23 15:45:05,14 -542,Blazing Beaks,,status-playable,playable,2020-06-04 20:37:06,5 -543,Moonlighter,,,,2020-04-01 12:52:32,1 -544,Rock N' Racing Grand Prix,,status-playable,playable,2021-01-06 20:23:57,2 -545,Blossom Tales - 0100C1000706C000,0100C1000706C000,status-playable,playable,2022-07-18 16:43:07,3 -546,Maria The Witch,,,,2020-04-01 13:22:05,1 -547,Runbow,,online;status-playable,playable,2021-01-08 22:47:44,5 -548,Salt And Sanctuary,,status-playable,playable,2020-10-22 11:52:19,3 -549,Bomb Chicken,,,,2020-04-01 13:52:21,1 -550,Typoman,,,,2020-04-01 14:01:55,1 -551,BOX Align,,crash;services;status-nothing,nothing,2020-04-03 17:26:56,3 -552,Bridge Constructor Portal,,,,2020-04-01 14:59:34,1 -553,METAGAL,,status-playable,playable,2020-06-05 0:05:48,3 -554,Severed,,status-playable,playable,2020-12-15 21:48:48,3 -555,Bombslinger - 010087300445A000,010087300445A000,services;status-menus,menus,2022-07-19 12:53:15,5 -556,ToeJam & Earl: Back in the Groove,,status-playable,playable,2021-01-06 22:56:58,2 -557,SHIFT QUANTUM,,UE4;crash;status-ingame,ingame,2020-11-06 21:54:08,2 -558,Mana Spark,,status-playable,playable,2020-12-10 13:41:01,3 -559,BOOST BEAST,,,,2020-04-01 22:07:28,1 -560,Bass Pro Shops: The Strike - Championship Edition - 0100E3100450E000,0100E3100450E000,gpu;status-boots;32-bit,boots,2022-12-09 15:58:16,6 -561,Semispheres,,status-playable,playable,2021-01-06 23:08:31,2 -562,Megaton Rainfall - 010005A00B312000,010005A00B312000,gpu;status-boots;opengl,boots,2022-08-04 18:29:43,5 -563,Romancing SaGa 2 - 01001F600829A000,01001F600829A000,status-playable,playable,2022-08-12 12:02:24,3 -564,Runner3,,,,2020-04-02 12:58:46,1 -565,Shakedown: Hawaii,,status-playable,playable,2021-01-07 9:44:36,2 -566,Minit,,,,2020-04-02 13:15:45,1 -567,Little Nightmares - 01002FC00412C000,01002FC00412C000,status-playable;nvdec;UE4,playable,2022-08-03 21:45:35,7 -568,Shephy,,,,2020-04-02 13:33:44,1 -569,Millie - 0100976008FBE000,0100976008FBE000,status-playable,playable,2021-01-26 20:47:19,3 -570,Bloodstained: Ritual of the Night - 010025A00DF2A000,010025A00DF2A000,status-playable;nvdec;UE4,playable,2022-07-18 14:27:35,4 -571,Shape Of The World - 0100B250009B96000,0100B250009B9600,UE4;status-playable,playable,2021-03-05 16:42:28,3 -572,Bendy and the Ink Machine - 010074500BBC4000,010074500BBC4000,status-playable,playable,2023-05-06 20:35:39,4 -573,Brothers: A Tale of Two Sons - 01000D500D08A000,01000D500D08A000,status-playable;nvdec;UE4,playable,2022-07-19 14:02:22,6 -574,Raging Loop,,,,2020-04-03 12:29:28,1 -575,A Hat In Time - 010056E00853A000,010056E00853A000,status-playable,playable,2024-06-25 19:52:44,4 -576,Cooking Mama: Cookstar - 010060700EFBA000,010060700EFBA000,status-menus;crash;loader-allocator,menus,2021-11-20 3:19:35,3 -578,Marble Power Blast - 01008E800D1FE000,01008E800D1FE000,status-playable,playable,2021-06-04 16:00:02,3 -579,NARUTO™: Ultimate Ninja® STORM - 0100715007354000,0100715007354000,status-playable;nvdec,playable,2022-08-06 14:10:31,3 -580,Oddmar,,,,2020-04-04 20:46:28,1 -581,BLEED 2,,,,2020-04-05 11:29:05,1 -582,Sea King - 0100E4A00D066000,0100E4A00D066000,UE4;nvdec;status-playable,playable,2021-06-04 15:49:22,2 -583,Sausage Sports Club,,gpu;status-ingame,ingame,2021-01-10 5:37:17,2 -584,Mini Metro,,,,2020-04-05 11:55:19,1 -585,Mega Mall Story - 0100BBC00CB9A000,0100BBC00CB9A000,slow;status-playable,playable,2022-08-04 17:10:58,3 -586,BILLIARD,,,,2020-04-05 13:41:11,1 -587,The Wardrobe,,,,2020-04-05 13:53:33,1 -588,LITTLE FRIENDS -DOGS & CATS-,,status-playable,playable,2020-11-12 12:45:51,3 -589,LOST SPHEAR,,status-playable,playable,2021-01-10 6:01:21,2 -590,Morphies Law,,UE4;crash;ldn-untested;nvdec;online;status-menus,menus,2020-11-22 17:05:29,4 -591,Mercenaries Saga Chronicles,,status-playable,playable,2021-01-10 12:48:19,2 -592,The Swindle - 010040D00B7CE000,010040D00B7CE000,status-playable;nvdec,playable,2022-08-22 20:53:52,2 -593,Monster Energy Supercross - The Official Videogame - 0100742007266000,0100742007266000,status-playable;nvdec;UE4,playable,2022-08-04 20:25:00,5 -594,Monster Energy Supercross - The Official Videogame 2 - 0100F8100B982000,0100F8100B982000,status-playable;nvdec;UE4;ldn-untested,playable,2022-08-04 21:21:24,5 -595,Lumo - 0100FF00042EE000,0100FF00042EE000,status-playable;nvdec,playable,2022-02-11 18:20:30,5 -596,Monopoly for Nintendo Switch - 01007430037F6000,01007430037F6000,status-playable;nvdec;online-broken,playable,2024-02-06 23:13:01,7 -597,Mantis Burn Racing - 0100E98002F6E000,0100E98002F6E000,status-playable;online-broken;ldn-broken,playable,2024-09-02 2:13:04,4 -598,Moorhuhn Remake,,,,2020-04-05 19:22:41,1 -599,Lovecraft's Untold Stories,,,,2020-04-05 19:31:15,1 -600,Moonfall Ultimate,,nvdec;status-playable,playable,2021-01-17 14:01:25,2 -602,Max: The Curse Of Brotherhood - 01001C9007614000,01001C9007614000,status-playable;nvdec,playable,2022-08-04 16:33:04,2 -603,Manticore - Galaxy on Fire - 0100C9A00952A000,0100C9A00952A000,status-boots;crash;nvdec,boots,2024-02-04 4:37:24,6 -604,The Shapeshifting Detective,,nvdec;status-playable,playable,2021-01-10 13:10:49,2 -605,Mom Hid My Game!,,,,2020-04-06 11:32:10,1 -606,Meow Motors,,UE4;gpu;status-ingame,ingame,2020-12-18 0:24:01,3 -607,Mahjong Solitaire Refresh - 01008C300B624000,01008C300B624000,status-boots;crash,boots,2022-12-09 12:02:55,5 -608,Lucah: Born of a Dream,,,,2020-04-06 12:11:01,1 -609,Moon Hunters,,,,2020-04-06 12:35:17,1 -610,Mad Carnage,,status-playable,playable,2021-01-10 13:00:07,2 -611,Monument Builders Rushmore,,,,2020-04-06 13:49:35,1 -612,Lost Sea,,,,2020-04-06 14:08:14,1 -613,Mahjong Deluxe 3,,,,2020-04-06 14:13:32,1 -614,MONSTER JAM CRUSH IT!™ - 010088400366E000,010088400366E000,UE4;nvdec;online;status-playable,playable,2021-04-08 19:29:27,5 -615,Midnight Deluxe,,,,2020-04-06 14:33:34,1 -616,Metropolis: Lux Obscura,,,,2020-04-06 14:47:15,1 -617,Lode Runner Legacy,,status-playable,playable,2021-01-10 14:10:28,2 -618,Masters of Anima - 0100CC7009196000,0100CC7009196000,status-playable;nvdec,playable,2022-08-04 16:00:09,4 -619,Monster Dynamite,,,,2020-04-06 17:55:14,1 -620,The Warlock of Firetop Mountain,,,,2020-04-06 21:44:13,1 -621,Mecho Tales - 0100C4F005EB4000,0100C4F005EB4000,status-playable,playable,2022-08-04 17:03:19,4 -622,Titan Quest - 0100605008268000,0100605008268000,status-playable;nvdec;online-broken,playable,2022-08-19 21:54:15,4 -623,This Is the Police - 0100066004D68000,0100066004D68000,status-playable,playable,2022-08-24 11:37:05,3 -625,Miles & Kilo,,status-playable,playable,2020-10-22 11:39:49,3 -626,This War of Mine: Complete Edition - 0100A8700BC2A000,0100A8700BC2A000,gpu;status-ingame;32-bit;nvdec,ingame,2022-08-24 12:00:44,5 -627,Transistor,,status-playable,playable,2020-10-22 11:28:02,3 -628,Momodora: Revere Under the Moonlight - 01004A400C320000,01004A400C320000,deadlock;status-nothing,nothing,2022-02-06 3:47:43,4 -629,Monster Puzzle,,status-playable,playable,2020-09-28 22:23:10,2 -630,Tiny Troopers Joint Ops XL,,,,2020-04-07 12:30:46,1 -631,This Is the Police 2 - 01004C100A04C000,01004C100A04C000,status-playable,playable,2022-08-24 11:49:17,3 -633,Trials Rising - 01003E800A102000,01003E800A102000,status-playable,playable,2024-02-11 1:36:39,11 -634,Mainlining,,status-playable,playable,2020-06-05 1:02:00,3 -635,Treadnauts,,status-playable,playable,2021-01-10 14:57:41,2 -636,Treasure Stack,,,,2020-04-07 13:27:32,1 -637,Monkey King: Master of the Clouds,,status-playable,playable,2020-09-28 22:35:48,2 -638,Trailblazers - 0100BCA00843A000,0100BCA00843A000,status-playable,playable,2021-03-02 20:40:49,2 -639,Stardew Valley - 0100E65002BB8000,0100E65002BB8000,status-playable;online-broken;ldn-untested,playable,2024-02-14 3:11:19,16 -640,TT Isle of Man,,nvdec;status-playable,playable,2020-06-22 12:25:13,3 -641,Truberbrook - 0100E6300D448000,0100E6300D448000,status-playable,playable,2021-06-04 17:08:00,3 -642,Troll and I - 0100F78002040000,0100F78002040000,gpu;nvdec;status-ingame,ingame,2021-06-04 16:58:50,3 -644,Rock 'N Racing Off Road DX,,status-playable,playable,2021-01-10 15:27:15,2 -645,Touhou Genso Wanderer RELOADED - 01004E900B082000,01004E900B082000,gpu;status-ingame;nvdec,ingame,2022-08-25 11:57:36,3 -646,Splasher,,,,2020-04-08 11:02:41,1 -647,Rogue Trooper Redux - 01001CC00416C000,01001CC00416C000,status-playable;nvdec;online-broken,playable,2022-08-12 11:53:01,4 -648,Semblance,,,,2020-04-08 11:22:11,1 -649,Saints Row: The Third - The Full Package - 0100DE600BEEE000,0100DE600BEEE000,slow;status-playable;LAN,playable,2023-08-24 2:40:58,4 -650,SEGA AGES PHANTASY STAR,,status-playable,playable,2021-01-11 12:49:48,2 -651,SEGA AGES SPACE HARRIER,,status-playable,playable,2021-01-11 12:57:40,2 -652,SEGA AGES OUTRUN,,status-playable,playable,2021-01-11 13:13:59,2 -653,Schlag den Star - 0100ACB004006000,0100ACB004006000,slow;status-playable;nvdec,playable,2022-08-12 14:28:22,4 -654,Serial Cleaner,,,,2020-04-08 15:26:22,1 -655,Rotating Brave,,,,2020-04-09 12:25:59,1 -656,SteamWorld Quest,,nvdec;status-playable,playable,2020-11-09 13:10:04,3 -657,Shaq Fu: A Legend Reborn,,,,2020-04-09 13:24:32,1 -658,Season Match Bundle - Part 1 and 2,,status-playable,playable,2021-01-11 13:28:23,2 -659,Bulb Boy,,,,2020-04-09 16:22:39,1 -660,SteamWorld Dig - 01009320084A4000,01009320084A4000,status-playable,playable,2024-08-19 12:12:23,3 -661,Shadows of Adam,,status-playable,playable,2021-01-11 13:35:58,2 -662,Battle Princess Madelyn,,status-playable,playable,2021-01-11 13:47:23,2 -663,Shiftlings - 01000750084B2000,01000750084B2000,nvdec;status-playable,playable,2021-03-04 13:49:54,2 -664,Save the Ninja Clan,,status-playable,playable,2021-01-11 13:56:37,2 -665,SteamWorld Heist: Ultimate Edition,,,,2020-04-10 11:21:15,1 -666,Battle Chef Brigade,,status-playable,playable,2021-01-11 14:16:28,2 -667,Shelter Generations - 01009EB004CB0000,01009EB004CB0000,status-playable,playable,2021-06-04 16:52:39,3 -668,Bow to Blood: Last Captain Standing,,slow;status-playable,playable,2020-10-23 10:51:21,3 -669,Samsara,,status-playable,playable,2021-01-11 15:14:12,2 -670,Touhou Kobuto V: Burst Battle,,status-playable,playable,2021-01-11 15:28:58,2 -671,Screencheat,,,,2020-04-10 13:16:02,1 -672,BlobCat - 0100F3500A20C000,0100F3500A20C000,status-playable,playable,2021-04-23 17:09:30,3 -673,SteamWorld Dig 2 - 0100CA9002322000,0100CA9002322000,status-playable,playable,2022-12-21 19:25:42,4 -674,She Remembered Caterpillars - 01004F50085F2000,01004F50085F2000,status-playable,playable,2022-08-12 17:45:14,3 -675,Broken Sword 5 - the Serpent's Curse - 01001E60085E6000,01001E60085E6000,status-playable,playable,2021-06-04 17:28:59,3 -676,Banner Saga 3,,slow;status-boots,boots,2021-01-11 16:53:57,2 -677,Stranger Things 3: The Game,,status-playable,playable,2021-01-11 17:44:09,2 -678,Blades of Time - 0100CFA00CC74000,0100CFA00CC74000,deadlock;status-boots;online,boots,2022-07-17 19:19:58,8 -679,BLAZBLUE CENTRALFICTION Special Edition,,nvdec;status-playable,playable,2020-12-15 23:50:04,3 -680,Brawlout - 010060200A4BE000,010060200A4BE000,ldn-untested;online;status-playable,playable,2021-06-04 17:35:35,4 -681,Bouncy Bob,,,,2020-04-10 16:45:27,1 -682,Broken Age - 0100EDD0068A6000,0100EDD0068A6000,status-playable,playable,2021-06-04 17:40:32,3 -683,Attack on Titan 2,,status-playable,playable,2021-01-04 11:40:01,3 -684,Battle Worlds: Kronos - 0100DEB00D5A8000,0100DEB00D5A8000,nvdec;status-playable,playable,2021-06-04 17:48:02,3 -685,BLADE ARCUS Rebellion From Shining - 0100C4400CB7C000,0100C4400CB7C000,status-playable,playable,2022-07-17 18:52:28,4 -686,Away: Journey to the Unexpected - 01002F1005F3C000,01002F1005F3C000,status-playable;nvdec;vulkan-backend-bug,playable,2022-11-06 15:31:04,5 -687,Batman: The Enemy Within,,crash;status-nothing,nothing,2020-10-16 5:49:27,2 -688,Batman - The Telltale Series,,nvdec;slow;status-playable,playable,2021-01-11 18:19:35,2 -689,Big Crown: Showdown - 010088100C35E000,010088100C35E000,status-menus;nvdec;online;ldn-untested,menus,2022-07-17 18:25:32,4 -690,Strike Suit Zero: Director's Cut - 010072500D52E000,010072500D52E000,crash;status-boots,boots,2021-04-23 17:15:14,3 -691,Black Paradox,,,,2020-04-11 12:13:22,1 -692,Spelunker Party! - 010021F004270000,010021F004270000,services;status-boots,boots,2022-08-16 11:25:49,4 -693,OK K.O.! Let's Play Heroes,,nvdec;status-playable,playable,2021-01-11 18:41:02,2 -694,Steredenn,,status-playable,playable,2021-01-13 9:19:42,2 -695,State of Mind,,UE4;crash;status-boots,boots,2020-06-22 22:17:50,2 -696,Bloody Zombies,,,,2020-04-11 18:23:57,1 -697,MudRunner - American Wilds - 01009D200952E000,01009D200952E000,gpu;status-ingame;ldn-untested;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-16 11:40:52,6 -698,Big Buck Hunter Arcade,,nvdec;status-playable,playable,2021-01-12 20:31:39,2 -699,Sparkle 2 Evo,,,,2020-04-11 18:48:19,1 -700,Brave Dungeon + Dark Witch's Story: COMBAT,,status-playable,playable,2021-01-12 21:06:34,2 -701,BAFL,,status-playable,playable,2021-01-13 8:32:51,2 -702,Steamburg,,status-playable,playable,2021-01-13 8:42:01,2 -703,Splatoon 2 - 01003BC0000A0000,01003BC0000A0000,status-playable;ldn-works;LAN,playable,2024-07-12 19:11:15,25 -704,Blade Strangers - 01005950022EC000,01005950022EC000,status-playable;nvdec,playable,2022-07-17 19:02:43,5 -705,Sports Party - 0100DE9005170000,0100DE9005170000,nvdec;status-playable,playable,2021-03-05 13:40:42,4 -706,Banner Saga,,,,2020-04-12 14:06:23,1 -707,Banner Saga 2,,crash;status-boots,boots,2021-01-13 8:56:09,2 -708,Hand of Fate 2 - 01003620068EA000,01003620068EA000,status-playable,playable,2022-08-01 15:44:16,3 -709,State of Anarchy: Master of Mayhem,,nvdec;status-playable,playable,2021-01-12 19:00:05,2 -710,Sphinx and the Cursed Mummy™ - 0100BD500BA94000,0100BD500BA94000,gpu;status-ingame;32-bit;opengl,ingame,2024-05-20 6:00:51,15 -711,Risk - 0100E8300A67A000,0100E8300A67A000,status-playable;nvdec;online-broken,playable,2022-08-01 18:53:28,5 -712,Baseball Riot - 01004860080A0000,01004860080A0000,status-playable,playable,2021-06-04 18:07:27,4 -713,Spartan - 0100E6A009A26000,0100E6A009A26000,UE4;nvdec;status-playable,playable,2021-03-05 15:53:19,3 -714,Halloween Pinball,,status-playable,playable,2021-01-12 16:00:46,2 -715,Streets of Red : Devil's Dare Deluxe,,,,2020-04-12 18:08:29,1 -716,Spider Solitaire F,,,,2020-04-12 20:26:44,1 -717,Starship Avenger Operation: Take Back Earth,,status-playable,playable,2021-01-12 15:52:55,2 -718,Battle Chasers: Nightwar,,nvdec;slow;status-playable,playable,2021-01-12 12:27:34,2 -719,Infinite Minigolf,,online;status-playable,playable,2020-09-29 12:26:25,2 -720,Blood Waves - 01007E700D17E000,01007E700D17E000,gpu;status-ingame,ingame,2022-07-18 13:04:46,4 -722,Stick It to the Man,,,,2020-04-13 12:29:25,1 -723,Bad Dream: Fever - 0100B3B00D81C000,0100B3B00D81C000,status-playable,playable,2021-06-04 18:33:12,6 -724,Spectrum - 01008B000A5AE000,01008B000A5AE000,status-playable,playable,2022-08-16 11:15:59,3 -725,Battlezone Gold Edition - 01006D800A988000,01006D800A988000,gpu;ldn-untested;online;status-boots,boots,2021-06-04 18:36:05,3 -726,Squareboy vs Bullies: Arena Edition,,,,2020-04-13 12:51:57,1 -727,Beach Buggy Racing - 010095C00406C000,010095C00406C000,online;status-playable,playable,2021-04-13 23:16:50,2 -728,Avenger Bird,,,,2020-04-13 13:01:51,1 -729,Beholder,,status-playable,playable,2020-10-16 12:48:58,3 -730,Binaries,,,,2020-04-13 13:12:42,1 -731,Space Ribbon - 010010A009830000,010010A009830000,status-playable,playable,2022-08-15 17:17:10,3 -732,BINGO for Nintendo Switch,,status-playable,playable,2020-07-23 16:17:36,2 -733,Bibi Blocksberg - Big Broom Race 3,,status-playable,playable,2021-01-11 19:07:16,2 -734,Sparkle 3: Genesis,,,,2020-04-13 14:01:48,1 -735,"Bury me, my Love",,status-playable,playable,2020-11-07 12:47:37,3 -736,Bad North - 0100E98006F22000,0100E98006F22000,status-playable,playable,2022-07-17 13:44:25,4 -737,Stikbold! A Dodgeball Adventure DELUXE,,status-playable,playable,2021-01-11 20:12:54,2 -738,BUTCHER,,status-playable,playable,2021-01-11 18:50:17,2 -739,Bird Game + - 01001B700B278000,01001B700B278000,status-playable;online,playable,2022-07-17 18:41:57,3 -740,SpiritSphere DX - 01009D60080B4000,01009D60080B4000,status-playable,playable,2021-07-03 23:37:49,3 -741,Behind The Screen,,,,2020-04-13 15:41:34,1 -742,Bibi & Tina - Adventures with Horses,,nvdec;slow;status-playable,playable,2021-01-13 8:58:09,2 -743,Space Dave,,,,2020-04-13 15:57:37,1 -744,Hellblade: Senua's Sacrifice - 010044500CF8E000,010044500CF8E000,gpu;status-ingame;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-01 19:36:50,5 -745,Happy Birthdays,,,,2020-04-13 23:34:41,1 -746,GUILTY GEAR XX ACCENT CORE PLUS R,,nvdec;status-playable,playable,2021-01-13 9:28:33,2 -747,Hob: The Definitive Edition,,status-playable,playable,2021-01-13 9:39:19,2 -748,Jurassic Pinball - 0100CE100A826000,0100CE100A826000,status-playable,playable,2021-06-04 19:02:37,3 -749,Hyper Light Drifter - Special Edition - 01003B200B372000,01003B200B372000,status-playable;vulkan-backend-bug,playable,2023-01-13 15:44:48,13 -750,GUNBIRD for Nintendo Switch - 01003C6008940000,01003C6008940000,32-bit;status-playable,playable,2021-06-04 19:16:01,4 -751,GUNBIRD2 for Nintendo Switch,,status-playable,playable,2020-10-10 14:41:16,3 -752,Hammerwatch - 01003B9007E86000,01003B9007E86000,status-playable;online-broken;ldn-broken,playable,2022-08-01 16:28:46,2 -753,Into The Breach,,,,2020-04-14 14:05:04,1 -754,Horizon Chase Turbo - 01009EA00B714000,01009EA00B714000,status-playable,playable,2021-02-19 19:40:56,4 -755,Gunlord X,,,,2020-04-14 14:30:34,1 -756,Ittle Dew 2+,,status-playable,playable,2020-11-17 11:44:32,2 -757,Hue,,,,2020-04-14 14:52:35,1 -758,Iconoclasts - 0100BC60099FE000,0100BC60099FE000,status-playable,playable,2021-08-30 21:11:04,5 -759,James Pond Operation Robocod,,status-playable,playable,2021-01-13 9:48:45,2 -760,Hello Neighbor - 0100FAA00B168000,0100FAA00B168000,status-playable;UE4,playable,2022-08-01 21:32:23,5 -761,Gunman Clive HD Collection,,status-playable,playable,2020-10-09 12:17:35,3 -762,Human Resource Machine,,32-bit;status-playable,playable,2020-12-17 21:47:09,2 -763,INSIDE - 0100D2D009028000,0100D2D009028000,status-playable,playable,2021-12-25 20:24:56,3 -765,Hello Neighbor: Hide And Seek,,UE4;gpu;slow;status-ingame,ingame,2020-10-24 10:59:57,3 -766,Has-Been Heroes,,status-playable,playable,2021-01-13 13:31:48,2 -767,GUNBARICH for Nintendo Switch,,,,2020-04-14 21:58:40,1 -768,Hell is Other Demons,,status-playable,playable,2021-01-13 13:23:02,2 -769,"I, Zombie",,status-playable,playable,2021-01-13 14:53:44,2 -770,Hello Kitty Kruisers With Sanrio Friends - 010087D0084A8000,010087D0084A8000,nvdec;status-playable,playable,2021-06-04 19:08:46,3 -771,IMPLOSION - 0100737003190000,0100737003190000,status-playable;nvdec,playable,2021-12-12 3:52:13,4 -772,Ikaruga - 01009F20086A0000,01009F20086A0000,status-playable,playable,2023-04-06 15:00:02,4 -773,Ironcast,,status-playable,playable,2021-01-13 13:54:29,2 -774,Jettomero: Hero of the Universe - 0100A5A00AF26000,0100A5A00AF26000,status-playable,playable,2022-08-02 14:46:43,2 -775,Harvest Moon: Light of Hope Special Edition,,,,2020-04-15 13:00:41,1 -776,Heroine Anthem Zero episode 1 - 01001B70080F0000,01001B70080F0000,status-playable;vulkan-backend-bug,playable,2022-08-01 22:02:36,4 -777,Hunting Simulator - 0100C460040EA000,0100C460040EA000,status-playable;UE4,playable,2022-08-02 10:54:08,5 -778,Guts and Glory,,,,2020-04-15 14:06:57,1 -779,Island Flight Simulator - 010077900440A000,010077900440A000,status-playable,playable,2021-06-04 19:42:46,2 -780,Hollow - 0100F2100061E8000,0100F2100061E800,UE4;gpu;status-ingame,ingame,2021-03-03 23:42:56,2 -781,Heroes of the Monkey Tavern,,,,2020-04-15 15:24:33,1 -783,Jotun: Valhalla Edition,,,,2020-04-15 15:46:21,1 -784,OniNaki - 0100CF4011B2A000,0100CF4011B2A000,nvdec;status-playable,playable,2021-02-27 21:52:42,1 -785,Diary of consultation with me (female doctor),,,,2020-04-15 16:13:40,1 -786,JunkPlanet,,status-playable,playable,2020-11-09 12:38:33,3 -787,Hexologic,,,,2020-04-15 16:46:07,1 -788,JYDGE - 010035A0044E8000,010035A0044E8000,status-playable,playable,2022-08-02 21:20:13,4 -789,Mushroom Quest,,status-playable,playable,2020-05-17 13:07:08,4 -790,Infernium,,UE4;regression;status-nothing,nothing,2021-01-13 16:36:07,2 -791,Star-Crossed Myth - The Department of Wishes - 01005EB00EA10000,01005EB00EA10000,gpu;status-ingame,ingame,2021-06-04 19:34:36,3 -792,Joe Dever's Lone Wolf,,,,2020-04-15 18:27:04,1 -793,Final Fantasy VII - 0100A5B00BDC6000,0100A5B00BDC6000,status-playable,playable,2022-12-09 17:03:30,5 -794,Irony Curtain: From Matryoshka with Love - 0100E5700CD56000,0100E5700CD56000,status-playable,playable,2021-06-04 20:12:37,3 -795,Guns Gore and Cannoli,,,,2020-04-16 12:37:22,1 -796,ICEY,,status-playable,playable,2021-01-14 16:16:04,3 -797,Jumping Joe & Friends,,status-playable,playable,2021-01-13 17:09:42,2 -798,Johnny Turbo's Arcade Wizard Fire - 0100D230069CC000,0100D230069CC000,status-playable,playable,2022-08-02 20:39:15,2 -799,Johnny Turbo's Arcade Two Crude Dudes - 010080D002CC6000,010080D002CC6000,status-playable,playable,2022-08-02 20:29:50,3 -800,Johnny Turbo's Arcade Sly Spy,,,,2020-04-16 13:56:32,1 -801,Johnny Turbo's Arcade Caveman Ninja,,,,2020-04-16 14:11:07,1 -802,Heroki - 010057300B0DC000,010057300B0DC000,gpu;status-ingame,ingame,2023-07-30 19:30:01,6 -803,Immortal Redneck - 0100F400435A000,,nvdec;status-playable,playable,2021-01-27 18:36:28,2 -804,Hungry Shark World,,status-playable,playable,2021-01-13 18:26:08,2 -805,Homo Machina,,,,2020-04-16 15:10:24,1 -806,InnerSpace,,,,2020-04-16 16:38:45,1 -807,INK,,,,2020-04-16 16:48:26,1 -808,Human: Fall Flat,,status-playable,playable,2021-01-13 18:36:05,2 -809,Hotel Transylvania 3: Monsters Overboard - 0100017007980000,0100017007980000,nvdec;status-playable,playable,2021-01-27 18:55:31,2 -810,It's Spring Again,,,,2020-04-16 19:08:21,1 -811,FINAL FANTASY IX - 01006F000B056000,01006F000B056000,audout;nvdec;status-playable,playable,2021-06-05 11:35:00,6 -812,Harvest Life - 0100D0500AD30000,0100D0500AD30000,status-playable,playable,2022-08-01 16:51:45,2 -813,INVERSUS Deluxe - 01001D0003B96000,01001D0003B96000,status-playable;online-broken,playable,2022-08-02 14:35:36,3 -814,HoPiKo,,status-playable,playable,2021-01-13 20:12:38,2 -815,I Hate Running Backwards,,,,2020-04-16 20:53:45,1 -816,Hexagravity - 01007AC00E012000,01007AC00E012000,status-playable,playable,2021-05-28 13:47:48,3 -817,Holy Potatoes! A Weapon Shop?!,,,,2020-04-16 22:25:50,1 -818,In Between,,,,2020-04-17 11:08:14,1 -819,Hunter's Legacy: Purrfect Edition - 010068000CAC0000,010068000CAC0000,status-playable,playable,2022-08-02 10:33:31,3 -820,Job the Leprechaun,,status-playable,playable,2020-06-05 12:10:06,3 -821,Henry the Hamster Handler,,,,2020-04-17 11:30:02,1 -822,FINAL FANTASY XII THE ZODIAC AGE - 0100EB100AB42000,0100EB100AB42000,status-playable;opengl;vulkan-backend-bug,playable,2024-08-11 7:01:54,10 -823,Hiragana Pixel Party,,status-playable,playable,2021-01-14 8:36:50,2 -824,Heart and Slash,,status-playable,playable,2021-01-13 20:56:32,2 -825,InkSplosion,,,,2020-04-17 12:11:41,1 -826,I and Me,,,,2020-04-17 12:18:43,1 -827,Earthlock - 01006E50042EA000,01006E50042EA000,status-playable,playable,2021-06-05 11:51:02,3 -828,Figment - 0100118009C68000,0100118009C68000,nvdec;status-playable,playable,2021-01-27 19:36:05,2 -829,Dusty Raging Fist,,,,2020-04-18 14:02:20,1 -830,Eternum Ex,,status-playable,playable,2021-01-13 20:28:32,2 -831,Dragon's Lair Trilogy,,nvdec;status-playable,playable,2021-01-13 22:12:07,2 -832,FIFA 18 - 0100F7B002340000,0100F7B002340000,gpu;status-ingame;online-broken;ldn-untested,ingame,2022-07-26 12:43:59,4 -833,Dream Alone - 0100AA0093DC000,,nvdec;status-playable,playable,2021-01-27 19:41:50,2 -834,Fight of Gods,,,,2020-04-18 17:22:19,1 -835,Fallout Shelter,,,,2020-04-18 19:48:28,1 -836,Drift Legends,,,,2020-04-18 20:15:36,1 -837,Feudal Alloy,,status-playable,playable,2021-01-14 8:48:14,2 -838,EVERSPACE - 0100DCF0093EC000,0100DCF0093EC000,status-playable;UE4,playable,2022-08-14 1:16:24,14 -839,Epic Loon - 0100262009626000,0100262009626000,status-playable;nvdec,playable,2022-07-25 22:06:13,3 -840,EARTH WARS - 01009B7006C88000,01009B7006C88000,status-playable,playable,2021-06-05 11:18:33,3 -841,Finding Teddy 2 : Definitive Edition - 0100FF100FB68000,0100FF100FB68000,gpu;status-ingame,ingame,2024-04-19 16:51:33,5 -842,Rocket League - 01005EE0036EC000,01005EE0036EC000,gpu;status-ingame;online-broken;ldn-untested,ingame,2024-02-08 19:51:36,5 -845,Fimbul - 0100C3A00BB76000,0100C3A00BB76000,status-playable;nvdec,playable,2022-07-26 13:31:47,2 -846,Fairune Collection - 01008A6009758000,01008A6009758000,status-playable,playable,2021-06-06 15:29:56,3 -847,Enigmatis 2: The Mists of Ravenwood - 0100C6200A0AA000,0100C6200A0AA000,crash;regression;status-boots,boots,2021-06-06 15:15:30,3 -848,Energy Balance,,,,2020-04-22 11:13:18,1 -849,DragonFangZ,,status-playable,playable,2020-09-28 21:35:18,2 -850,Dragon's Dogma: Dark Arisen - 010032C00AC58000,010032C00AC58000,status-playable,playable,2022-07-24 12:58:33,5 -851,Everything,,,,2020-04-22 11:35:04,1 -852,Dust: An Elysian Tail - 0100B6E00A420000,0100B6E00A420000,status-playable,playable,2022-07-25 15:28:12,4 -853,EXTREME POKER,,,,2020-04-22 11:54:54,1 -854,Dyna Bomb,,status-playable,playable,2020-06-07 13:26:55,3 -855,Escape Doodland,,,,2020-04-22 12:10:08,1 -856,Drone Fight - 010058C00A916000,010058C00A916000,status-playable,playable,2022-07-24 14:31:56,4 -857,Resident Evil,,,,2020-04-22 12:31:10,1 -858,Dungeon Rushers,,,,2020-04-22 12:43:24,1 -859,Embers of Mirrim,,,,2020-04-22 12:56:52,1 -860,FIFA 19 - 0100FFA0093E8000,0100FFA0093E8000,gpu;status-ingame;nvdec;online-broken;ldn-untested,ingame,2022-07-26 13:07:07,4 -861,Energy Cycle,,,,2020-04-22 13:40:48,1 -862,Dragons Dawn of New Riders,,nvdec;status-playable,playable,2021-01-27 20:05:26,2 -863,Enter the Gungeon - 01009D60076F6000,01009D60076F6000,status-playable,playable,2022-07-25 20:28:33,3 -864,Drowning - 010052000A574000,010052000A574000,status-playable,playable,2022-07-25 14:28:26,3 -865,Earth Atlantis,,,,2020-04-22 14:42:46,1 -866,Evil Defenders,,nvdec;status-playable,playable,2020-09-28 17:11:00,2 -867,Dustoff Heli Rescue 2,,,,2020-04-22 15:31:34,1 -868,Energy Cycle Edge - 0100B8700BD14000,0100B8700BD14000,services;status-ingame,ingame,2021-11-30 5:02:31,3 -869,Element - 0100A6700AF10000,0100A6700AF10000,status-playable,playable,2022-07-25 17:17:16,3 -870,Duck Game,,,,2020-04-22 17:10:36,1 -871,Fill-a-Pix: Phil's Epic Adventure,,status-playable,playable,2020-12-22 13:48:22,3 -872,Elliot Quest - 0100128003A24000,0100128003A24000,status-playable,playable,2022-07-25 17:46:14,3 -873,Drawful 2 - 0100F7800A434000,0100F7800A434000,status-ingame,ingame,2022-07-24 13:50:21,5 -874,Energy Invasion,,status-playable,playable,2021-01-14 21:32:26,2 -875,Dungeon Stars,,status-playable,playable,2021-01-18 14:28:37,2 -876,FINAL FANTASY X/X-2 HD REMASTER - 0100BC300CB48000,0100BC300CB48000,gpu;status-ingame,ingame,2022-08-16 20:29:26,8 -878,Revenant Saga,,,,2020-04-22 23:52:09,1 -880,Resident Evil 0,,,,2020-04-23 1:04:42,1 -882,Fate/EXTELLA - 010053E002EA2000,010053E002EA2000,gpu;status-ingame;nvdec;online-broken;vulkan-backend-bug;opengl-backend-bug,ingame,2023-04-24 23:37:55,7 -883,RiME,,UE4;crash;gpu;status-boots,boots,2020-07-20 15:52:38,2 -884,DYNASTY WARRIORS 8: Xtreme Legends Definitive Edition - 0100E9A00CB30000,0100E9A00CB30000,status-playable;nvdec,playable,2024-06-26 0:16:30,4 -886,Rival Megagun,,nvdec;online;status-playable,playable,2021-01-19 14:01:46,2 -887,Riddled Corpses EX - 01002C700C326000,01002C700C326000,status-playable,playable,2021-06-06 16:02:44,6 -888,Fear Effect Sedna,,nvdec;status-playable,playable,2021-01-19 13:10:33,1 -889,Redout: Lightspeed Edition,,,,2020-04-23 14:46:59,1 -890,RESIDENT EVIL REVELATIONS 2 - 010095300212A000,010095300212A000,status-playable;online-broken;ldn-untested,playable,2022-08-11 12:57:50,3 -891,Robonauts - 0100618004096000,0100618004096000,status-playable;nvdec,playable,2022-08-12 11:33:23,3 -892,Road to Ballhalla - 010002F009A7A000,010002F009A7A000,UE4;status-playable,playable,2021-06-07 2:22:36,3 -893,Fate/EXTELLA LINK - 010051400B17A000,010051400B17A000,ldn-untested;nvdec;status-playable,playable,2021-01-27 0:45:50,6 -894,Rocket Fist,,,,2020-04-23 16:56:33,1 -895,RICO - 01009D5009234000,01009D5009234000,status-playable;nvdec;online-broken,playable,2022-08-11 20:16:40,4 -896,R.B.I. Baseball 17 - 0100B5A004302000,0100B5A004302000,status-playable;online-working,playable,2022-08-11 11:55:47,2 -897,Red Faction Guerrilla Re-Mars-tered - 010075000C608000,010075000C608000,ldn-untested;nvdec;online;status-playable,playable,2021-06-07 3:02:13,3 -900,Riptide GP: Renegade - 01002A6006AA4000,01002A6006AA4000,online;status-playable,playable,2021-04-13 23:33:02,4 -901,Realpolitiks,,,,2020-04-24 12:33:00,1 -902,Fall Of Light - Darkest Edition - 01005A600BE60000,01005A600BE60000,slow;status-ingame;nvdec,ingame,2024-07-24 4:19:26,5 -903,Reverie: Sweet As Edition,,,,2020-04-24 13:24:37,1 -904,RIVE: Ultimate Edition,,status-playable,playable,2021-03-24 18:45:55,3 -905,R.B.I. Baseball 18 - 01005CC007616000,01005CC007616000,status-playable;nvdec;online-working,playable,2022-08-11 11:27:52,3 -906,Refunct,,UE4;status-playable,playable,2020-12-15 22:46:21,2 -907,Rento Fortune Monolit,,ldn-untested;online;status-playable,playable,2021-01-19 19:52:21,2 -908,Super Mario Party - 010036B0034E4000,010036B0034E4000,gpu;status-ingame;Needs Update;ldn-works,ingame,2024-06-21 5:10:16,25 -909,Farm Together,,status-playable,playable,2021-01-19 20:01:19,2 -910,Regalia: Of Men and Monarchs - Royal Edition - 0100FDF0083A6000,0100FDF0083A6000,status-playable,playable,2022-08-11 12:24:01,3 -911,Red Game Without a Great Name,,status-playable,playable,2021-01-19 21:42:35,2 -912,R.B.I. Baseball 19 - 0100FCB00BF40000,0100FCB00BF40000,status-playable;nvdec;online-working,playable,2022-08-11 11:43:52,3 -913,Eagle Island - 010037400C7DA000,010037400C7DA000,status-playable,playable,2021-04-10 13:15:42,3 -915,RIOT: Civil Unrest - 010088E00B816000,010088E00B816000,status-playable,playable,2022-08-11 20:27:56,3 -917,Revenant Dogma,,,,2020-04-25 17:51:48,1 -919,World of Final Fantasy Maxima,,status-playable,playable,2020-06-07 13:57:23,2 -920,ITTA - 010068700C70A000,010068700C70A000,status-playable,playable,2021-06-07 3:15:52,6 -921,Pirates: All Aboard!,,,,2020-04-27 12:18:29,1 -922,Wolfenstein II The New Colossus - 01009040091E0000,01009040091E0000,gpu;status-ingame,ingame,2024-04-05 5:39:46,9 -923,Onimusha: Warlords,,nvdec;status-playable,playable,2020-07-31 13:08:39,2 -924,Radiation Island - 01009E40095EE000,01009E40095EE000,status-ingame;opengl;vulkan-backend-bug,ingame,2022-08-11 10:51:04,3 -925,Pool Panic,,,,2020-04-27 13:49:19,1 -926,Quad Fighter K,,,,2020-04-27 14:00:50,1 -927,PSYVARIAR DELTA - 0100EC100A790000,0100EC100A790000,nvdec;status-playable,playable,2021-01-20 13:01:46,2 -928,Puzzle Box Maker - 0100476004A9E000,0100476004A9E000,status-playable;nvdec;online-broken,playable,2022-08-10 18:00:52,5 -929,Psikyo Collection Vol. 3 - 0100A2300DB78000,0100A2300DB78000,status-ingame,ingame,2021-06-07 2:46:23,2 -930,Pianista: The Legendary Virtuoso - 010077300A86C000,010077300A86C000,status-playable;online-broken,playable,2022-08-09 14:52:56,3 -931,Quarantine Circular - 0100F1400BA88000,0100F1400BA88000,status-playable,playable,2021-01-20 15:24:15,2 -932,Pizza Titan Ultra - 01004A900C352000,01004A900C352000,nvdec;status-playable,playable,2021-01-20 15:58:42,2 -933,Phantom Trigger - 0100C31005A50000,0100C31005A50000,status-playable,playable,2022-08-09 14:27:30,2 -934,Operación Triunfo 2017 - 0100D5400BD90000,0100D5400BD90000,services;status-ingame;nvdec,ingame,2022-08-08 15:06:42,3 -935,Rad Rodgers Radical Edition - 010000600CD54000,010000600CD54000,status-playable;nvdec;online-broken,playable,2022-08-10 19:57:23,3 -936,Ape Out - 01005B100C268000,01005B100C268000,status-playable,playable,2022-09-26 19:04:47,3 -937,Decay of Logos - 010027700FD2E000,010027700FD2E000,status-playable;nvdec,playable,2022-09-13 14:42:13,3 -938,Q.U.B.E. 2 - 010023600AA34000,010023600AA34000,UE4;status-playable,playable,2021-03-03 21:38:57,2 -939,Pikuniku,,,,2020-04-28 11:02:59,1 -940,Picross S,,,,2020-04-28 11:14:18,1 -941,PHANTOM BREAKER: BATTLE GROUNDS OVER DRIVE - 0100063005C86000,0100063005C86000,audio;status-playable;nvdec,playable,2024-02-29 14:20:35,6 -942,Pilot Sports - 01007A500B0B2000,01007A500B0B2000,status-playable,playable,2021-01-20 15:04:17,2 -943,Paper Wars,,,,2020-04-28 11:46:56,1 -944,Fushigi no Gensokyo Lotus Labyrinth,,Needs Update;audio;gpu;nvdec;status-ingame,ingame,2021-01-20 15:30:02,2 -945,OPUS: The Day We Found Earth - 010049C0075F0000,010049C0075F0000,nvdec;status-playable,playable,2021-01-21 18:29:31,2 -946,Psikyo Collection Vol.2 - 01009D400C4A8000,01009D400C4A8000,32-bit;status-playable,playable,2021-06-07 3:22:07,3 -947,PixARK,,,,2020-04-28 12:32:16,1 -948,Puyo Puyo Tetris,,,,2020-04-28 12:46:37,1 -949,Puzzle Puppers,,,,2020-04-28 12:54:05,1 -950,OVERWHELM - 01005F000CC18000,01005F000CC18000,status-playable,playable,2021-01-21 18:37:18,2 -951,Rapala Fishing: Pro Series,,nvdec;status-playable,playable,2020-12-16 13:26:53,2 -952,Power Rangers: Battle for the Grid,,status-playable,playable,2020-06-21 16:52:42,4 -953,Professional Farmer: Nintendo Switch Edition,,slow;status-playable,playable,2020-12-16 13:38:19,2 -954,Project Nimbus: Complete Edition - 0100ACE00DAB6000,0100ACE00DAB6000,status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-08-10 17:35:43,6 -955,Perfect Angle - 010089F00A3B4000,010089F00A3B4000,status-playable,playable,2021-01-21 18:48:45,2 -956,Oniken: Unstoppable Edition - 010037900C814000,010037900C814000,status-playable,playable,2022-08-08 14:52:06,3 -957,Pixeljunk Monsters 2 - 0100E4D00A690000,0100E4D00A690000,status-playable,playable,2021-06-07 3:40:01,3 -958,Pocket Rumble,,,,2020-04-28 19:13:20,1 -959,Putty Pals,,,,2020-04-28 19:35:49,1 -960,Overcooked! Special Edition - 01009B900401E000,01009B900401E000,status-playable,playable,2022-08-08 20:48:52,3 -961,Panda Hero,,,,2020-04-28 20:33:24,1 -962,Piczle Lines DX,,UE4;crash;nvdec;status-menus,menus,2020-11-16 4:21:31,9 -963,Packet Queen #,,,,2020-04-28 21:43:26,1 -964,Punch Club,,,,2020-04-28 22:28:01,1 -965,Oxenfree,,,,2020-04-28 23:56:28,1 -966,Rayman Legends: Definitive Edition - 01005FF002E2A000,01005FF002E2A000,status-playable;nvdec;ldn-works,playable,2023-05-27 18:33:07,3 -968,Poi: Explorer Edition - 010086F0064CE000,010086F0064CE000,nvdec;status-playable,playable,2021-01-21 19:32:00,2 -969,Paladins - 011123900AEE0000,011123900AEE0000,online;status-menus,menus,2021-01-21 19:21:37,2 -970,Q-YO Blaster,,gpu;status-ingame,ingame,2020-06-07 22:36:53,3 -971,Please Don't Touch Anything,,,,2020-04-29 12:15:59,1 -972,Puzzle Adventure Blockle,,,,2020-04-29 13:05:19,1 -973,Plantera - 010087000428E000,010087000428E000,status-playable,playable,2022-08-09 15:36:28,4 -974,One Strike,,,,2020-04-29 13:43:11,1 -975,Party Arcade - 01007FC00A040000,01007FC00A040000,status-playable;online-broken;UE4;ldn-untested,playable,2022-08-09 12:32:53,4 -976,PAYDAY 2 - 0100274004052000,0100274004052000,status-playable;nvdec;online-broken;ldn-untested,playable,2022-08-09 12:56:39,3 -977,Quest of Dungeons - 01001DE005012000,01001DE005012000,status-playable,playable,2021-06-07 10:29:22,3 -978,Plague Road - 0100FF8005EB2000,0100FF8005EB2000,status-playable,playable,2022-08-09 15:27:14,5 -979,Picture Painting Puzzle 1000!,,,,2020-04-29 14:58:39,1 -980,Ni No Kuni Wrath of the White Witch - 0100E5600D446000,0100E5600D446000,status-boots;32-bit;nvdec,boots,2024-07-12 4:52:59,29 -981,Overcooked! 2 - 01006FD0080B2000,01006FD0080B2000,status-playable;ldn-untested,playable,2022-08-08 16:48:10,2 -982,Qbik,,,,2020-04-29 15:50:22,1 -983,Rain World - 010047600BF72000,010047600BF72000,status-playable,playable,2023-05-10 23:34:08,4 -984,Othello,,,,2020-04-29 17:06:10,1 -985,Pankapu,,,,2020-04-29 17:24:48,1 -986,Pode - 01009440095FE000,01009440095FE000,nvdec;status-playable,playable,2021-01-25 12:58:35,2 -987,PLANET RIX-13,,,,2020-04-29 22:00:16,1 -988,Picross S2,,status-playable,playable,2020-10-15 12:01:40,2 -989,Picross S3,,status-playable,playable,2020-10-15 11:55:27,3 -990,"POISOFT'S ""Thud""",,,,2020-04-29 22:26:06,1 -991,Paranautical Activity - 010063400B2EC000,010063400B2EC000,status-playable,playable,2021-01-25 13:49:19,2 -992,oOo: Ascension - 010074000BE8E000,010074000BE8E000,status-playable,playable,2021-01-25 14:13:34,2 -993,Pic-a-Pix Pieces,,,,2020-04-30 12:07:19,1 -994,Perception,,UE4;crash;nvdec;status-menus,menus,2020-12-18 11:49:23,3 -995,Pirate Pop Plus,,,,2020-04-30 12:19:57,1 -996,Outlast 2 - 0100DE70085E8000,0100DE70085E8000,status-ingame;crash;nvdec,ingame,2022-01-22 22:28:05,8 -997,Project Highrise: Architect's Edition - 0100BBD00976C000,0100BBD00976C000,status-playable,playable,2022-08-10 17:19:12,4 -998,Perchang - 010011700D1B2000,010011700D1B2000,status-playable,playable,2021-01-25 14:19:52,2 -999,Out Of The Box - 01005A700A166000,01005A700A166000,status-playable,playable,2021-01-28 1:34:27,3 -1000,Paperbound Brawlers - 01006AD00B82C000,01006AD00B82C000,status-playable,playable,2021-01-25 14:32:15,2 -1001,Party Golf - 0100B8E00359E000,0100B8E00359E000,status-playable;nvdec,playable,2022-08-09 12:38:30,8 -1002,PAN-PAN A tiny big adventure - 0100F0D004CAE000,0100F0D004CAE000,audout;status-playable,playable,2021-01-25 14:42:00,2 -1003,OVIVO,,,,2020-04-30 15:12:05,1 -1004,Penguin Wars,,,,2020-04-30 15:28:21,1 -1005,Physical Contact: Speed - 01008110036FE000,01008110036FE000,status-playable,playable,2022-08-09 14:40:46,3 -1006,Pic-a-Pix Deluxe,,,,2020-04-30 16:00:55,1 -1007,Puyo Puyo Esports,,,,2020-04-30 16:13:17,1 -1008,Qbics Paint - 0100A8D003BAE000,0100A8D003BAE000,gpu;services;status-ingame,ingame,2021-06-07 10:54:09,3 -1009,Piczle Lines DX 500 More Puzzles!,,UE4;status-playable,playable,2020-12-15 23:42:51,3 -1010,Pato Box - 010031F006E76000,010031F006E76000,status-playable,playable,2021-01-25 15:17:52,2 -1011,Phoenix Wright: Ace Attorney Trilogy - 0100CB000A142000,0100CB000A142000,status-playable,playable,2023-09-15 22:03:12,4 -1012,Physical Contact: 2048,,slow;status-playable,playable,2021-01-25 15:18:32,2 -1013,OPUS Collection - 01004A200BE82000,01004A200BE82000,status-playable,playable,2021-01-25 15:24:04,2 -1014,Party Planet,,,,2020-04-30 18:30:59,1 -1015,Physical Contact: Picture Place,,,,2020-04-30 18:43:20,1 -1017,Tanzia - 01004DF007564000,01004DF007564000,status-playable,playable,2021-06-07 11:10:25,4 -1018,Syberia 3 - 0100CBE004E6C000,0100CBE004E6C000,nvdec;status-playable,playable,2021-01-25 16:15:12,2 -1019,SUPER DRAGON BALL HEROES WORLD MISSION - 0100E5E00C464000,0100E5E00C464000,status-playable;nvdec;online-broken,playable,2022-08-17 12:56:30,4 -1020,Tales of Vesperia: Definitive Edition - 01002C0008E52000,01002C0008E52000,status-playable,playable,2024-09-28 3:20:47,10 -1021,Surgeon Simulator CPR,,,,2020-05-01 15:11:43,1 -1022,Super Inefficient Golf - 010056800B534000,010056800B534000,status-playable;UE4,playable,2022-08-17 15:53:45,4 -1023,Super Daryl Deluxe,,,,2020-05-01 18:23:22,1 -1024,Sushi Striker: The Way of Sushido,,nvdec;status-playable,playable,2020-06-26 20:49:11,5 -1025,Super Volley Blast - 010035B00B3F0000,010035B00B3F0000,status-playable,playable,2022-08-19 18:14:40,3 -1026,Stunt Kite Party - 0100AF000B4AE000,0100AF000B4AE000,nvdec;status-playable,playable,2021-01-25 17:16:56,2 -1027,Super Putty Squad - 0100331005E8E000,0100331005E8E000,gpu;status-ingame;32-bit,ingame,2024-04-29 15:51:54,6 -1028,SWORD ART ONLINE: Hollow Realization Deluxe Edition - 01001B600D1D6000,01001B600D1D6000,status-playable;nvdec,playable,2022-08-19 19:19:15,4 -1029,SUPER ROBOT WARS T,,online;status-playable,playable,2021-03-25 11:00:40,10 -1030,Tactical Mind - 01000F20083A8000,01000F20083A8000,status-playable,playable,2021-01-25 18:05:00,2 -1031,Super Beat Sports - 0100F7000464A000,0100F7000464A000,status-playable;ldn-untested,playable,2022-08-16 16:05:50,2 -1032,Suicide Guy - 01005CD00A2A2000,01005CD00A2A2000,status-playable,playable,2021-01-26 13:13:54,2 -1033,Sundered: Eldritch Edition - 01002D3007962000,01002D3007962000,gpu;status-ingame,ingame,2021-06-07 11:46:00,3 -1034,Super Blackjack Battle II Turbo - The Card Warriors,,,,2020-05-02 9:45:57,1 -1035,Super Skelemania,,status-playable,playable,2020-06-07 22:59:50,3 -1036,Super Ping Pong Trick Shot,,,,2020-05-02 10:02:55,1 -1037,Subsurface Circular,,,,2020-05-02 10:36:40,1 -1038,Super Hero Fight Club: Reloaded,,,,2020-05-02 10:49:51,1 -1039,Superola and the lost burgers,,,,2020-05-02 10:57:54,1 -1040,Super Tennis Blast - 01000500DB50000,,status-playable,playable,2022-08-19 16:20:48,3 -1041,Swap This!,,,,2020-05-02 11:37:51,1 -1042,Super Sportmatchen - 0100A9300A4AE000,0100A9300A4AE000,status-playable,playable,2022-08-19 12:34:40,3 -1043,Super Destronaut DX,,,,2020-05-02 12:13:53,1 -1044,Summer Sports Games,,,,2020-05-02 12:45:15,1 -1045,Super Kickers League - 0100196009998000,0100196009998000,status-playable,playable,2021-01-26 13:36:48,2 -1046,Switch 'N' Shoot,,,,2020-05-03 2:02:08,1 -1047,Super Mutant Alien Assault,,status-playable,playable,2020-06-07 23:32:45,3 -1048,Tallowmere,,,,2020-05-03 2:23:10,1 -1050,Wizard of Legend - 0100522007AAA000,0100522007AAA000,status-playable,playable,2021-06-07 12:20:46,3 -1051,WARRIORS OROCHI 4 ULTIMATE - 0100E8500AD58000,0100E8500AD58000,status-playable;nvdec;online-broken,playable,2024-08-07 1:50:37,10 -1052,What Remains of Edith Finch - 010038900DFE0000,010038900DFE0000,slow;status-playable;UE4,playable,2022-08-31 19:57:59,3 -1053,Wasteland 2: Director's Cut - 010039A00BC64000,010039A00BC64000,nvdec;status-playable,playable,2021-01-27 13:34:11,2 -1054,Victor Vran Overkill Edition - 0100E81007A06000,0100E81007A06000,gpu;deadlock;status-ingame;nvdec;opengl,ingame,2022-08-30 11:46:56,6 -1055,Witch Thief - 01002FC00C6D0000,01002FC00C6D0000,status-playable,playable,2021-01-27 18:16:07,2 -1056,VSR: Void Space Racing - 0100C7C00AE6C000,0100C7C00AE6C000,status-playable,playable,2021-01-27 14:08:59,2 -1057,Warparty,,nvdec;status-playable,playable,2021-01-27 18:26:32,2 -1058,Windstorm,,UE4;gpu;nvdec;status-ingame,ingame,2020-12-22 13:17:48,4 -1059,WAKU WAKU SWEETS,,,,2020-05-03 19:46:53,1 -1060,Windstorm - Ari's Arrival - 0100D6800CEAC000,0100D6800CEAC000,UE4;status-playable,playable,2021-06-07 19:33:19,3 -1061,V-Rally 4 - 010064400B138000,010064400B138000,gpu;nvdec;status-ingame,ingame,2021-06-07 19:37:31,5 -1062,Valkyria Chronicles - 0100CAF00B744000,0100CAF00B744000,status-ingame;32-bit;crash;nvdec,ingame,2022-11-23 20:03:32,8 -1063,WILL: A Wonderful World,,,,2020-05-03 22:34:06,1 -1065,WILD GUNS Reloaded - 0100CFC00A1D8000,0100CFC00A1D8000,status-playable,playable,2021-01-28 12:29:05,2 -1066,Valthirian Arc: Hero School Story,,,,2020-05-04 12:06:06,1 -1067,War Theatre - 010084D00A134000,010084D00A134000,gpu;status-ingame,ingame,2021-06-07 19:42:45,3 -1068,"Vostok, Inc. - 01004D8007368000",01004D8007368000,status-playable,playable,2021-01-27 17:43:59,2 -1069,Way of the Passive Fist - 0100BA200C378000,0100BA200C378000,gpu;status-ingame,ingame,2021-02-26 21:07:06,4 -1070,Vesta - 010057B00712C000,010057B00712C000,status-playable;nvdec,playable,2022-08-29 21:03:39,3 -1071,West of Loathing - 010031B00A4E8000,010031B00A4E8000,status-playable,playable,2021-01-28 12:35:19,2 -1072,Vaporum - 010030F00CA1E000,010030F00CA1E000,nvdec;status-playable,playable,2021-05-28 14:25:33,3 -1073,Vandals - 01007C500D650000,01007C500D650000,status-playable,playable,2021-01-27 21:45:46,2 -1074,Active Neurons - 010039A010DA0000,010039A010DA0000,status-playable,playable,2021-01-27 21:31:21,2 -1075,Voxel Sword - 0100BFB00D1F4000,0100BFB00D1F4000,status-playable,playable,2022-08-30 14:57:27,2 -1076,Levelhead,,online;status-ingame,ingame,2020-10-18 11:44:51,9 -1077,Violett - 01005880063AA000,01005880063AA000,nvdec;status-playable,playable,2021-01-28 13:09:36,2 -1078,Wheels of Aurelia - 0100DFC00405E000,0100DFC00405E000,status-playable,playable,2021-01-27 21:59:25,2 -1079,Varion,,,,2020-05-04 15:50:27,1 -1080,Warlock's Tower,,,,2020-05-04 16:03:52,1 -1081,Vectronom,,,,2020-05-04 16:14:05,1 -1083,Yooka-Laylee - 0100F110029C8000,0100F110029C8000,status-playable,playable,2021-01-28 14:21:45,2 -1084,WWE 2K18 - 010009800203E000,010009800203E000,status-playable;nvdec,playable,2023-10-21 17:22:01,4 -1085,Wulverblade - 010033700418A000,010033700418A000,nvdec;status-playable,playable,2021-01-27 22:29:05,2 -1086,YIIK: A Postmodern RPG - 0100634008266000,0100634008266000,status-playable,playable,2021-01-28 13:38:37,2 -1087,Yesterday Origins,,,,2020-05-05 14:17:14,1 -1088,Zarvot - 0100E7900C40000,,status-playable,playable,2021-01-28 13:51:36,2 -1089,World to the West,,,,2020-05-05 14:47:07,1 -1090,Yonder: The Cloud Catcher Chronicles - 0100CC600ABB2000,0100CC600ABB2000,status-playable,playable,2021-01-28 14:06:25,2 -1092,Emma: Lost in Memories - 010017b0102a8000,010017b0102a8000,nvdec;status-playable,playable,2021-01-28 16:19:10,2 -1094,Zotrix: Solar Division - 01001EE00A6B0000,01001EE00A6B0000,status-playable,playable,2021-06-07 20:34:05,5 -1095,X-Morph: Defense,,status-playable,playable,2020-06-22 11:05:31,3 -1096,Wonder Boy: The Dragon's Trap - 0100A6300150C000,0100A6300150C000,status-playable,playable,2021-06-25 4:53:21,2 -1097,Yoku's Island Express - 010002D00632E000,010002D00632E000,status-playable;nvdec,playable,2022-09-03 13:59:02,4 -1098,Woodle Tree Adventures,,,,2020-05-06 12:48:20,1 -1099,World Neverland - 01008E9007064000,01008E9007064000,status-playable,playable,2021-01-28 17:44:23,2 -1100,Yomawari: The Long Night Collection - 010012F00B6F2000,010012F00B6F2000,status-playable,playable,2022-09-03 14:36:59,4 -1101,Xenon Valkyrie+ - 010064200C324000,010064200C324000,status-playable,playable,2021-06-07 20:25:53,2 -1102,Word Search by POWGI,,,,2020-05-06 18:16:35,1 -1103,Zombie Scrapper,,,,2020-05-06 18:27:12,1 -1104,Moving Out - 0100C4C00E73E000,0100C4C00E73E000,nvdec;status-playable,playable,2021-06-07 21:17:24,3 -1105,Wonderboy Returns Remix,,,,2020-05-06 22:21:59,1 -1106,Xenoraid - 0100928005BD2000,0100928005BD2000,status-playable,playable,2022-09-03 13:01:10,5 -1107,Zombillie,,status-playable,playable,2020-07-23 17:42:23,2 -1108,World Conqueror X,,status-playable,playable,2020-12-22 16:10:29,3 -1109,Xeodrifter - 01005B5009364000,01005B5009364000,status-playable,playable,2022-09-03 13:18:39,5 -1110,Yono and the Celestial Elephants - 0100BE50042F6000,0100BE50042F6000,status-playable,playable,2021-01-28 18:23:58,2 -1111,Moto Racer 4 - 01002ED00B01C000,01002ED00B01C000,UE4;nvdec;online;status-playable,playable,2021-04-08 19:09:11,3 -1112,NARUTO SHIPPUDEN™: Ultimate Ninja Storm 3 Full Burst - 01006BB00800A000,01006BB00800A000,status-playable;nvdec,playable,2024-06-16 14:58:05,2 -1113,NAMCO MUSEUM - 010002F001220000,010002F001220000,status-playable;ldn-untested,playable,2024-08-13 7:52:21,3 -1114,Mother Russia Bleeds,,,,2020-05-07 17:29:22,1 -1115,MotoGP 18 - 0100361007268000,0100361007268000,status-playable;nvdec;UE4;ldn-untested,playable,2022-08-05 11:41:45,3 -1116,Mushroom Wars 2,,nvdec;status-playable,playable,2020-09-28 15:26:08,2 -1117,Mugsters - 010073E008E6E000,010073E008E6E000,status-playable,playable,2021-01-28 17:57:17,2 -1118,Mulaka - 0100211005E94000,0100211005E94000,status-playable,playable,2021-01-28 18:07:20,2 -1119,Mummy Pinball - 010038B00B9AE000,010038B00B9AE000,status-playable,playable,2022-08-05 16:08:11,2 -1120,Moto Rush GT - 01003F200D0F2000,01003F200D0F2000,status-playable,playable,2022-08-05 11:23:55,2 -1121,Mutant Football League Dynasty Edition - 0100C3E00ACAA000,0100C3E00ACAA000,status-playable;online-broken,playable,2022-08-05 17:01:51,3 -1122,Mr. Shifty,,slow;status-playable,playable,2020-05-08 15:28:16,1 -1123,MXGP3 - The Official Motocross Videogame,,UE4;gpu;nvdec;status-ingame,ingame,2020-12-16 14:00:20,2 -1124,My Memory of Us - 0100E7700C284000,0100E7700C284000,status-playable,playable,2022-08-20 11:03:14,4 -1125,N++ - 01000D5005974000,01000D5005974000,status-playable,playable,2022-08-05 21:54:58,4 -1126,MUJO,,status-playable,playable,2020-05-08 16:31:04,1 -1127,MotoGP 19 - 01004B800D0E8000,01004B800D0E8000,status-playable;nvdec;online-broken;UE4,playable,2022-08-05 11:54:14,3 -1128,Muddledash,,services;status-ingame,ingame,2020-05-08 16:46:14,1 -1129,My Little Riding Champion,,slow;status-playable,playable,2020-05-08 17:00:53,1 -1130,Motorsport Manager for Nintendo Switch - 01002A900D6D6000,01002A900D6D6000,status-playable;nvdec,playable,2022-08-05 12:48:14,2 -1132,Muse Dash,,status-playable,playable,2020-06-06 14:41:29,3 -1133,NAMCO MUSEUM ARCADE PAC - 0100DAA00AEE6000,0100DAA00AEE6000,status-playable,playable,2021-06-07 21:44:50,2 -1134,MyFarm 2018,,,,2020-05-09 12:14:19,1 -1135,Mutant Mudds Collection - 01004BE004A86000,01004BE004A86000,status-playable,playable,2022-08-05 17:11:38,4 -1136,Ms. Splosion Man,,online;status-playable,playable,2020-05-09 20:45:43,1 -1137,New Super Mario Bros. U Deluxe - 0100EA80032EA000,0100EA80032EA000,32-bit;status-playable,playable,2023-10-08 2:06:37,9 -1138,Nelke & the Legendary Alchemists ~Ateliers of the New World~ - 01006ED00BC76000,01006ED00BC76000,status-playable,playable,2021-01-28 19:39:42,2 -1139,Nihilumbra,,status-playable,playable,2020-05-10 16:00:12,1 -1140,Observer - 01002A000C478000,01002A000C478000,UE4;gpu;nvdec;status-ingame,ingame,2021-03-03 20:19:45,2 -1141,NOT A HERO - 0100CB800B07E000,0100CB800B07E000,status-playable,playable,2021-01-28 19:31:24,2 -1142,Nightshade,,nvdec;status-playable,playable,2020-05-10 19:43:31,1 -1143,Night in the Woods - 0100921006A04000,0100921006A04000,status-playable,playable,2022-12-03 20:17:54,3 -1144,Nippon Marathon - 010037200C72A000,010037200C72A000,nvdec;status-playable,playable,2021-01-28 20:32:46,2 -1145,One Piece Unlimited World Red Deluxe Edition,,status-playable,playable,2020-05-10 22:26:32,1 -1146,Numbala,,status-playable,playable,2020-05-11 12:01:07,1 -1147,Night Trap - 25th Anniversary Edition - 0100D8500A692000,0100D8500A692000,status-playable;nvdec,playable,2022-08-08 13:16:14,10 -1148,Ninja Shodown,,status-playable,playable,2020-05-11 12:31:21,1 -1149,OkunoKA - 01006AB00BD82000,01006AB00BD82000,status-playable;online-broken,playable,2022-08-08 14:41:51,2 -1150,Mechstermination Force - 0100E4600D31A000,0100E4600D31A000,status-playable,playable,2024-07-04 5:39:15,2 -1151,Lines X,,status-playable,playable,2020-05-11 15:28:30,1 -1152,Katamari Damacy REROLL - 0100D7000C2C6000,0100D7000C2C6000,status-playable,playable,2022-08-02 21:35:05,3 -1153,Lifeless Planet - 01005B6008132000,01005B6008132000,status-playable,playable,2022-08-03 21:25:13,2 -1154,League of Evil - 01009C100390E000,01009C100390E000,online;status-playable,playable,2021-06-08 11:23:27,2 -1155,Life Goes On - 010006300AFFE000,010006300AFFE000,status-playable,playable,2021-01-29 19:01:20,2 -1156,Leisure Suit Larry: Wet Dreams Don't Dry - 0100A8E00CAA0000,0100A8E00CAA0000,status-playable,playable,2022-08-03 19:51:44,4 -1157,Legend of Kay Anniversary - 01002DB007A96000,01002DB007A96000,nvdec;status-playable,playable,2021-01-29 18:38:29,2 -1158,Kunio-Kun: The World Classics Collection - 010060400ADD2000,010060400ADD2000,online;status-playable,playable,2021-01-29 20:21:46,2 -1159,Letter Quest Remastered,,status-playable,playable,2020-05-11 21:30:34,1 -1160,Koi DX,,status-playable,playable,2020-05-11 21:37:51,1 -1161,Knights of Pen and Paper +1 Deluxier Edition,,status-playable,playable,2020-05-11 21:46:32,1 -1162,Late Shift - 0100055007B86000,0100055007B86000,nvdec;status-playable,playable,2021-02-01 18:43:58,2 -1163,Lethal League Blaze - 01003AB00983C000,01003AB00983C000,online;status-playable,playable,2021-01-29 20:13:31,2 -1164,Koloro - 01005D200C9AA000,01005D200C9AA000,status-playable,playable,2022-08-03 12:34:02,2 -1165,Little Dragons Cafe,,status-playable,playable,2020-05-12 0:00:52,1 -1166,Legendary Fishing - 0100A7700B46C000,0100A7700B46C000,online;status-playable,playable,2021-04-14 15:08:46,4 -1167,Knock-Knock - 010001A00A1F6000,010001A00A1F6000,nvdec;status-playable,playable,2021-02-01 20:03:19,2 -1168,KAMEN RIDER CLIMAX SCRAMBLE - 0100BDC00A664000,0100BDC00A664000,status-playable;nvdec;ldn-untested,playable,2024-07-03 8:51:11,6 -1169,Kingdom: New Lands - 0100BD9004AB6000,0100BD9004AB6000,status-playable,playable,2022-08-02 21:48:50,2 -1170,Lapis x Labyrinth - 01005E000D3D8000,01005E000D3D8000,status-playable,playable,2021-02-01 18:58:08,2 -1171,Last Day of June - 0100DA700879C000,0100DA700879C000,nvdec;status-playable,playable,2021-06-08 11:35:32,3 -1172,Levels+,,status-playable,playable,2020-05-12 13:51:39,1 -1173,Katana ZERO - 010029600D56A000,010029600D56A000,status-playable,playable,2022-08-26 8:09:09,11 -1174,Layers of Fear: Legacy,,nvdec;status-playable,playable,2021-02-15 16:30:41,2 -1175,Kotodama: The 7 Mysteries of Fujisawa - 010046600CCA4000,010046600CCA4000,audout;status-playable,playable,2021-02-01 20:28:37,2 -1176,Lichtspeer: Double Speer Edition,,status-playable,playable,2020-05-12 16:43:09,1 -1177,Koral,,UE4;crash;gpu;status-menus,menus,2020-11-16 12:41:26,3 -1178,KeroBlaster,,status-playable,playable,2020-05-12 20:42:52,1 -1179,Kentucky Robo Chicken,,status-playable,playable,2020-05-12 20:54:17,1 -1180,L.A. Noire - 0100830004FB6000,0100830004FB6000,status-playable,playable,2022-08-03 16:49:35,3 -1181,Kill The Bad Guy,,status-playable,playable,2020-05-12 22:16:10,1 -1182,Legendary Eleven - 0100A73006E74000,0100A73006E74000,status-playable,playable,2021-06-08 12:09:03,3 -1183,Kitten Squad - 01000C900A136000,01000C900A136000,status-playable;nvdec,playable,2022-08-03 12:01:59,5 -1184,Labyrinth of Refrain: Coven of Dusk - 010058500B3E0000,010058500B3E0000,status-playable,playable,2021-02-15 17:38:48,2 -1185,KAMIKO,,status-playable,playable,2020-05-13 12:48:57,1 -1186,Left-Right: The Mansion,,status-playable,playable,2020-05-13 13:02:12,1 -1187,Knight Terrors,,status-playable,playable,2020-05-13 13:09:22,1 -1188,Kingdom: Two Crowns,,status-playable,playable,2020-05-16 19:36:21,2 -1189,Kid Tripp,,crash;status-nothing,nothing,2020-10-15 7:41:23,2 -1190,King Oddball,,status-playable,playable,2020-05-13 13:47:57,1 -1191,KORG Gadget,,status-playable,playable,2020-05-13 13:57:24,1 -1192,Knights of Pen and Paper 2 Deluxiest Edition,,status-playable,playable,2020-05-13 14:07:00,1 -1193,Keep Talking and Nobody Explodes - 01008D400A584000,01008D400A584000,status-playable,playable,2021-02-15 18:05:21,2 -1194,Jet Lancer - 0100F3500C70C000,0100F3500C70C000,gpu;status-ingame,ingame,2021-02-15 18:15:47,2 -1195,Furi - 01000EC00AF98000,01000EC00AF98000,status-playable,playable,2022-07-27 12:21:20,2 -1196,Forgotton Anne - 010059E00B93C000,010059E00B93C000,nvdec;status-playable,playable,2021-02-15 18:28:07,2 -1197,GOD EATER 3 - 01001C700873E000,01001C700873E000,gpu;status-ingame;nvdec,ingame,2022-07-29 21:33:21,13 -1198,Guacamelee! Super Turbo Championship Edition,,status-playable,playable,2020-05-13 23:44:18,1 -1199,Frost - 0100B5300B49A000,0100B5300B49A000,status-playable,playable,2022-07-27 12:00:36,2 -1200,GO VACATION - 0100C1800A9B6000,0100C1800A9B6000,status-playable;nvdec;ldn-works,playable,2024-05-13 19:28:53,5 -1201,Grand Prix Story - 0100BE600D07A000,0100BE600D07A000,status-playable,playable,2022-08-01 12:42:23,2 -1202,Freedom Planet,,status-playable,playable,2020-05-14 12:23:06,1 -1203,Fossil Hunters - 0100CA500756C000,0100CA500756C000,status-playable;nvdec,playable,2022-07-27 11:37:20,2 -1204,For The King - 010069400B6BE000,010069400B6BE000,nvdec;status-playable,playable,2021-02-15 18:51:44,2 -1205,Flashback,,nvdec;status-playable,playable,2020-05-14 13:57:29,1 -1206,Golf Story,,status-playable,playable,2020-05-14 14:56:17,1 -1207,Firefighters: Airport Fire Department,,status-playable,playable,2021-02-15 19:17:00,2 -1208,Chocobo's Mystery Dungeon Every Buddy!,,slow;status-playable,playable,2020-05-26 13:53:13,2 -1209,CHOP,,,,2020-05-14 17:13:00,1 -1211,FunBox Party,,status-playable,playable,2020-05-15 12:07:02,1 -1212,Friday the 13th: Killer Puzzle - 010003F00BD48000,010003F00BD48000,status-playable,playable,2021-01-28 1:33:38,3 -1213,Johnny Turbo's Arcade Gate of Doom - 010069B002CDE000,010069B002CDE000,status-playable,playable,2022-07-29 12:17:50,3 -1214,Frederic: Resurrection of Music,,nvdec;status-playable,playable,2020-07-23 16:59:53,2 -1215,Frederic 2,,status-playable,playable,2020-07-23 16:44:37,2 -1216,Fort Boyard,,nvdec;slow;status-playable,playable,2020-05-15 13:22:53,1 -1217,Flipping Death - 01009FB002B2E000,01009FB002B2E000,status-playable,playable,2021-02-17 16:12:30,2 -1218,Flat Heroes - 0100C53004C52000,0100C53004C52000,gpu;status-ingame,ingame,2022-07-26 19:37:37,4 -1219,Flood of Light,,status-playable,playable,2020-05-15 14:15:25,1 -1220,FRAMED COLLECTION - 0100F1A00A5DC000,0100F1A00A5DC000,status-playable;nvdec,playable,2022-07-27 11:48:15,4 -1221,Guacamelee! 2,,status-playable,playable,2020-05-15 14:56:59,1 -1223,Flinthook,,online;status-playable,playable,2021-03-25 20:42:29,4 -1224,FORMA.8,,nvdec;status-playable,playable,2020-11-15 1:04:32,3 -1225,FOX n FORESTS - 01008A100A028000,01008A100A028000,status-playable,playable,2021-02-16 14:27:49,2 -1226,Gotcha Racing 2nd,,status-playable,playable,2020-07-23 17:14:04,2 -1227,Floor Kids - 0100DF9005E7A000,0100DF9005E7A000,status-playable;nvdec,playable,2024-08-18 19:38:49,4 -1228,Firefighters - The Simulation - 0100434003C58000,0100434003C58000,status-playable,playable,2021-02-19 13:32:05,2 -1229,Flip Wars - 010095A004040000,010095A004040000,services;status-ingame;ldn-untested,ingame,2022-05-02 15:39:18,4 -1230,TowerFall,,status-playable,playable,2020-05-16 18:58:07,6 -1231,Towertale,,status-playable,playable,2020-10-15 13:56:58,10 -1236,Football Manager Touch 2018 - 010097F0099B4000,010097F0099B4000,status-playable,playable,2022-07-26 20:17:56,4 -1237,Fruitfall Crush,,status-playable,playable,2020-10-20 11:33:33,2 -1238,Forest Home,,,,2020-05-17 13:33:08,1 -1239,Fly O'Clock VS,,status-playable,playable,2020-05-17 13:39:52,1 -1240,Gal Metal - 01B8000C2EA000,,status-playable,playable,2022-07-27 20:57:48,3 -1241,Gear.Club Unlimited - 010065E003FD8000,010065E003FD8000,status-playable,playable,2021-06-08 13:03:19,4 -1242,Gear.Club Unlimited 2 - 010072900AFF0000,010072900AFF0000,status-playable;nvdec;online-broken,playable,2022-07-29 12:52:16,3 -1243,GRIP - 0100459009A2A000,0100459009A2A000,status-playable;nvdec;online-broken;UE4,playable,2022-08-01 15:00:22,8 -1244,Ginger: Beyond the Crystal - 0100C50007070000,0100C50007070000,status-playable,playable,2021-02-17 16:27:00,2 -1245,Slayin 2 - 01004E900EDDA000,01004E900EDDA000,gpu;status-ingame,ingame,2024-04-19 16:15:26,5 -1246,Grim Fandango Remastered - 0100B7900B024000,0100B7900B024000,status-playable;nvdec,playable,2022-08-01 13:55:58,2 -1247,Gal*Gun 2 - 010024700901A000,010024700901A000,status-playable;nvdec;UE4,playable,2022-07-27 12:45:37,6 -1248,Golem Gates - 01003C000D84C000,01003C000D84C000,status-ingame;crash;nvdec;online-broken;UE4,ingame,2022-07-30 11:35:11,5 -1249,Full Metal Furies,,online,,2020-05-18 13:22:06,1 -1250,GIGA WRECKER Alt. - 010045F00BFC2000,010045F00BFC2000,status-playable,playable,2022-07-29 14:13:54,4 -1251,Gelly Break - 01009D000AF3A000,01009D000AF3A000,UE4;status-playable,playable,2021-03-03 16:04:02,2 -1252,The World Next Door - 0100E6200D56E000,0100E6200D56E000,status-playable,playable,2022-09-21 14:15:23,2 -1253,GREEN - 010068D00AE68000,010068D00AE68000,status-playable,playable,2022-08-01 12:54:15,2 -1254,Feathery Ears,,,,2020-05-18 14:48:31,1 -1255,Gorogoa - 0100F2A005C98000,0100F2A005C98000,status-playable,playable,2022-08-01 11:55:08,2 -1256,Girls und Panzer Dream Tank Match DX - 01006DD00CC96000,01006DD00CC96000,status-playable;ldn-untested,playable,2022-09-12 16:07:11,21 -1257,Super Crush KO,,,,2020-05-18 15:49:23,1 -1258,Gem Smashers - 01001A4008192000,01001A4008192000,nvdec;status-playable,playable,2021-06-08 13:40:51,4 -1259,Grave Danger,,status-playable,playable,2020-05-18 17:41:28,1 -1260,Fury Unleashed,,crash;services;status-ingame,ingame,2020-10-18 11:52:40,4 -1261,TaniNani - 01007DB010D2C000,01007DB010D2C000,crash;kernel;status-nothing,nothing,2021-04-08 3:06:44,4 -1262,Atelier Escha & Logy: Alchemists Of The Dusk Sky DX - 0100E5600EE8E000,0100E5600EE8E000,status-playable;nvdec,playable,2022-11-20 16:01:41,3 -1263,Battle of Elemental Burst,,,,2020-05-18 23:27:22,1 -1264,Gun Crazy,,,,2020-05-18 23:47:28,1 -1265,Ascendant Hearts,,,,2020-05-19 8:50:44,1 -1266,Infinite Beyond the Mind,,,,2020-05-19 9:17:17,1 -1268,FullBlast,,status-playable,playable,2020-05-19 10:34:13,1 -1269,The Legend of Heroes: Trails of Cold Steel III,,status-playable,playable,2020-12-16 10:59:18,4 -1270,Goosebumps: The Game,,status-playable,playable,2020-05-19 11:56:52,1 -1271,Gonner,,status-playable,playable,2020-05-19 12:05:02,1 -1272,Monster Viator,,,,2020-05-19 12:15:18,1 -1273,Umihara Kawase Fresh,,,,2020-05-19 12:29:18,1 -1274,Operencia The Stolen Sun - 01006CF00CFA4000,01006CF00CFA4000,UE4;nvdec;status-playable,playable,2021-06-08 13:51:07,2 -1275,Goetia,,status-playable,playable,2020-05-19 12:55:39,1 -1276,Grid Mania,,status-playable,playable,2020-05-19 14:11:05,1 -1277,Pantsu Hunter,,status-playable,playable,2021-02-19 15:12:27,2 -1278,GOD WARS THE COMPLETE LEGEND,,nvdec;status-playable,playable,2020-05-19 14:37:50,1 -1279,Dark Burial,,,,2020-05-19 14:38:34,1 -1280,Langrisser I and II - 0100BAB00E8C0000,0100BAB00E8C0000,status-playable,playable,2021-02-19 15:46:10,2 -1281,My Secret Pets,,,,2020-05-19 15:26:56,1 -1282,Grass Cutter,,slow;status-ingame,ingame,2020-05-19 18:27:42,1 -1283,Giana Sisters: Twisted Dreams - Owltimate Edition - 01003830092B8000,01003830092B8000,status-playable,playable,2022-07-29 14:06:12,6 -1284,FUN! FUN! Animal Park - 010002F00CC20000,010002F00CC20000,status-playable,playable,2021-04-14 17:08:52,2 -1285,Graceful Explosion Machine,,status-playable,playable,2020-05-19 20:36:55,1 -1286,Garage,,status-playable,playable,2020-05-19 20:59:53,1 -1287,Game Dev Story,,status-playable,playable,2020-05-20 0:00:38,1 -1289,Gone Home - 0100EEC00AA6E000,0100EEC00AA6E000,status-playable,playable,2022-08-01 11:14:20,2 -1290,Geki Yaba Runner Anniversary Edition - 01000F000D9F0000,01000F000D9F0000,status-playable,playable,2021-02-19 18:59:07,2 -1291,Gridd: Retroenhanced,,status-playable,playable,2020-05-20 11:32:40,1 -1292,Green Game - 0100CBB0070EE000,0100CBB0070EE000,nvdec;status-playable,playable,2021-02-19 18:51:55,2 -1293,Glaive: Brick Breaker,,status-playable,playable,2020-05-20 12:15:59,1 -1294,Furwind - 0100A6B00D4EC000,0100A6B00D4EC000,status-playable,playable,2021-02-19 19:44:08,2 -1295,Goat Simulator - 010032600C8CE000,010032600C8CE000,32-bit;status-playable,playable,2022-07-29 21:02:33,6 -1296,Gnomes Garden 2,,status-playable,playable,2021-02-19 20:08:13,2 -1297,Gensokyo Defenders - 010000300C79C000,010000300C79C000,status-playable;online-broken;UE4,playable,2022-07-29 13:48:12,4 -1298,Guess the Character,,status-playable,playable,2020-05-20 13:14:19,1 -1299,Gato Roboto - 010025500C098000,010025500C098000,status-playable,playable,2023-01-20 15:04:11,7 -1300,Gekido Kintaro's Revenge,,status-playable,playable,2020-10-27 12:44:05,3 -1301,Ghost 1.0 - 0100EEB005ACC000,0100EEB005ACC000,status-playable,playable,2021-02-19 20:48:47,2 -1302,GALAK-Z: Variant S - 0100C9800A454000,0100C9800A454000,status-boots;online-broken,boots,2022-07-29 11:59:12,2 -1303,Cuphead - 0100A5C00D162000,0100A5C00D162000,status-playable,playable,2022-02-01 22:45:55,3 -1304,Darkest Dungeon - 01008F1008DA6000,01008F1008DA6000,status-playable;nvdec,playable,2022-07-22 18:49:18,5 -1305,Cabela's: The Hunt - Championship Edition - 0100E24004510000,0100E24004510000,status-menus;32-bit,menus,2022-07-21 20:21:25,5 -1306,Darius Cozmic Collection,,status-playable,playable,2021-02-19 20:59:06,2 -1309,Ion Fury - 010041C00D086000,010041C00D086000,status-ingame;vulkan-backend-bug,ingame,2022-08-07 8:27:51,8 -1310,Void Bastards - 0100D010113A8000,0100D010113A8000,status-playable,playable,2022-10-15 0:04:19,3 -1311,Our two Bedroom Story - 010097F010FE6000,010097F010FE6000,gpu;status-ingame;nvdec,ingame,2023-10-10 17:41:20,4 -1312,Dark Witch Music Episode: Rudymical,,status-playable,playable,2020-05-22 9:44:44,1 -1313,Cave Story+,,status-playable,playable,2020-05-22 9:57:25,1 -1314,Crawl,,status-playable,playable,2020-05-22 10:16:05,1 -1315,Chasm,,status-playable,playable,2020-10-23 11:03:43,3 -1316,Princess Closet,,,,2020-05-22 10:34:06,1 -1317,Color Zen,,status-playable,playable,2020-05-22 10:56:17,1 -1318,Coffee Crisis - 0100CF800C810000,0100CF800C810000,status-playable,playable,2021-02-20 12:34:52,2 -1319,Croc's World,,status-playable,playable,2020-05-22 11:21:09,1 -1320,Chicken Rider,,status-playable,playable,2020-05-22 11:31:17,1 -1321,Caveman Warriors,,status-playable,playable,2020-05-22 11:44:20,1 -1322,Clustertruck - 010096900A4D2000,010096900A4D2000,slow;status-ingame,ingame,2021-02-19 21:07:09,2 -1323,Yumeutsutsu Re:After - 0100B56011502000,0100B56011502000,status-playable,playable,2022-11-20 16:09:06,2 -1324,Danger Mouse - 01003ED0099B0000,01003ED0099B0000,status-boots;crash;online,boots,2022-07-22 15:49:45,2 -1325,Circle of Sumo,,status-playable,playable,2020-05-22 12:45:21,1 -1326,Chicken Range - 0100F6C00A016000,0100F6C00A016000,status-playable,playable,2021-04-23 12:14:23,3 -1327,Conga Master Party!,,status-playable,playable,2020-05-22 13:22:24,1 -1328,SNK HEROINES Tag Team Frenzy - 010027F00AD6C000,010027F00AD6C000,status-playable;nvdec;online-broken;ldn-untested,playable,2022-08-14 14:19:25,5 -1329,Conduct TOGETHER! - 010043700C9B0000,010043700C9B0000,nvdec;status-playable,playable,2021-02-20 12:59:00,2 -1330,"Calculation Castle: Greco's Ghostly Challenge ""Addition""",,32-bit;status-playable,playable,2020-11-01 23:40:11,4 -1331,"Calculation Castle: Greco's Ghostly Challenge ""Subtraction""",,32-bit;status-playable,playable,2020-11-01 23:47:42,3 -1332,"Calculation Castle: Greco's Ghostly Challenge ""Multiplication""",,32-bit;status-playable,playable,2020-11-02 0:04:33,3 -1333,"Calculation Castle: Greco's Ghostly Challenge ""Division""",,32-bit;status-playable,playable,2020-11-01 23:54:55,3 -1334,Chicken Assassin: Reloaded - 0100E3C00A118000,0100E3C00A118000,status-playable,playable,2021-02-20 13:29:01,2 -1335,eSports Legend,,,,2020-05-22 18:58:46,1 -1336,Crypt of the Necrodancer - 0100CEA007D08000,0100CEA007D08000,status-playable;nvdec,playable,2022-11-01 9:52:06,2 -1337,Crash Bandicoot N. Sane Trilogy - 0100D1B006744000,0100D1B006744000,status-playable,playable,2024-02-11 11:38:14,3 -1338,Castle of Heart - 01003C100445C000,01003C100445C000,status-playable;nvdec,playable,2022-07-21 23:10:45,2 -1339,Darkwood,,status-playable,playable,2021-01-08 21:24:06,3 -1340,A Fold Apart,,,,2020-05-23 8:10:49,1 -1341,Blind Men - 010089D011310000,010089D011310000,audout;status-playable,playable,2021-02-20 14:15:38,2 -1343,Darksiders Warmastered Edition - 0100E1400BA96000,0100E1400BA96000,status-playable;nvdec,playable,2023-03-02 18:08:09,4 -1344,OBAKEIDORO!,,nvdec;online;status-playable,playable,2020-10-16 16:57:34,3 -1345,De:YABATANIEN,,,,2020-05-23 10:48:51,1 -1346,Crash Dummy,,nvdec;status-playable,playable,2020-05-23 11:12:43,1 -1347,Castlevania Anniversary Collection,,audio;status-playable,playable,2020-05-23 11:40:29,1 -1348,Flan - 010038200E088000,010038200E088000,status-ingame;crash;regression,ingame,2021-11-17 7:39:28,3 -1349,Sisters Royale: Five Sisters Under Fire,,,,2020-05-23 15:12:09,1 -1350,Game Tengoku CruisinMix Special,,,,2020-05-23 17:30:59,1 -1351,Cosmic Star Heroine - 010067C00A776000,010067C00A776000,status-playable,playable,2021-02-20 14:30:47,2 -1352,Croixleur Sigma - 01000F0007D92000,01000F0007D92000,status-playable;online,playable,2022-07-22 14:26:54,3 -1353,Cities: Skylines - Nintendo Switch Edition,,status-playable,playable,2020-12-16 10:34:57,3 -1354,Castlestorm - 010097C00AB66000,010097C00AB66000,status-playable;nvdec,playable,2022-07-21 22:49:14,5 -1355,Coffin Dodgers - 0100178009648000,0100178009648000,status-playable,playable,2021-02-20 14:57:41,2 -1356,Child of Light,,nvdec;status-playable,playable,2020-12-16 10:23:10,7 -1357,Wizards of Brandel,,status-nothing,nothing,2020-10-14 15:52:33,3 -1358,Contra Anniversary Collection - 0100DCA00DA7E000,0100DCA00DA7E000,status-playable,playable,2022-07-22 11:30:12,2 -1359,Cartoon Network Adventure Time: Pirates of the Enchiridion - 0100C4E004406000,0100C4E004406000,status-playable;nvdec,playable,2022-07-21 21:49:01,4 -1361,Claybook - 010009300AA6C000,010009300AA6C000,slow;status-playable;nvdec;online;UE4,playable,2022-07-22 11:11:34,4 -1363,Crashbots - 0100BF200CD74000,0100BF200CD74000,status-playable,playable,2022-07-22 13:50:52,2 -1364,Crossing Souls - 0100B1E00AA56000,0100B1E00AA56000,nvdec;status-playable,playable,2021-02-20 15:42:54,2 -1365,Groove Coaster: Wai Wai Party!!!! - 0100EB500D92E000,0100EB500D92E000,status-playable;nvdec;ldn-broken,playable,2021-11-06 14:54:27,5 -1367,Candle - The Power of the Flame,,nvdec;status-playable,playable,2020-05-26 12:10:20,1 -1368,Minecraft Dungeons - 01006C100EC08000,01006C100EC08000,status-playable;nvdec;online-broken;UE4,playable,2024-06-26 22:10:43,13 -1369,Constructor Plus,,status-playable,playable,2020-05-26 12:37:40,1 -1370,The Wonderful 101: Remastered - 0100B1300FF08000,0100B1300FF08000,slow;status-playable;nvdec,playable,2022-09-30 13:49:28,2 -1371,Dandara,,status-playable,playable,2020-05-26 12:42:33,1 -1372,ChromaGun,,status-playable,playable,2020-05-26 12:56:42,1 -1373,Crayola Scoot - 0100C66007E96000,0100C66007E96000,status-playable;nvdec,playable,2022-07-22 14:01:55,4 -1374,Chess Ultra - 0100A5900472E000,0100A5900472E000,status-playable;UE4,playable,2023-08-30 23:06:31,7 -1375,Clue,,crash;online;status-menus,menus,2020-11-10 9:23:48,2 -1376,ACA NEOGEO Metal Slug X,,crash;services;status-menus,menus,2020-05-26 14:07:20,1 -1377,ACA NEOGEO ZUPAPA!,,online;status-playable,playable,2021-03-25 20:07:33,3 -1378,ACA NEOGEO WORLD HEROES PERFECT,,crash;services;status-menus,menus,2020-05-26 14:14:36,1 -1379,ACA NEOGEO WAKU WAKU 7 - 0100CEF001DC0000,0100CEF001DC0000,online;status-playable,playable,2021-04-10 14:20:52,2 -1380,ACA NEOGEO THE SUPER SPY - 0100F7F00AFA2000,0100F7F00AFA2000,online;status-playable,playable,2021-04-10 14:26:33,3 -1381,ACA NEOGEO THE LAST BLADE 2 - 0100699008792000,0100699008792000,online;status-playable,playable,2021-04-10 14:31:54,3 -1382,ACA NEOGEO THE KING OF FIGHTERS '99 - 0100583001DCA000,0100583001DCA000,online;status-playable,playable,2021-04-10 14:36:56,3 -1383,ACA NEOGEO THE KING OF FIGHTERS '98,,crash;services;status-menus,menus,2020-05-26 14:54:20,1 -1384,ACA NEOGEO THE KING OF FIGHTERS '97 - 0100170008728000,0100170008728000,online;status-playable,playable,2021-04-10 14:43:27,3 -1385,ACA NEOGEO THE KING OF FIGHTERS '96 - 01006F0004FB4000,01006F0004FB4000,online;status-playable,playable,2021-04-10 14:49:10,3 -1386,ACA NEOGEO THE KING OF FIGHTERS '95 - 01009DC001DB6000,01009DC001DB6000,status-playable,playable,2021-03-29 20:27:35,5 -1387,ACA NEOGEO THE KING OF FIGHTERS '94,,crash;services;status-menus,menus,2020-05-26 15:03:44,1 -1388,ACA NEOGEO THE KING OF FIGHTERS 2003 - 0100EF100AFE6000,0100EF100AFE6000,online;status-playable,playable,2021-04-10 14:54:31,3 -1389,ACA NEOGEO THE KING OF FIGHTERS 2002 - 0100CFD00AFDE000,0100CFD00AFDE000,online;status-playable,playable,2021-04-10 15:01:55,2 -1390,ACA NEOGEO THE KING OF FIGHTERS 2001 - 010048200AFC2000,010048200AFC2000,online;status-playable,playable,2021-04-10 15:16:23,3 -1391,ACA NEOGEO THE KING OF FIGHTERS 2000 - 0100B97002B44000,0100B97002B44000,online;status-playable,playable,2021-04-10 15:24:35,3 -1392,ACA NEOGEO SUPER SIDEKICKS 3: THE NEXT GLORY - 0100A4D00A308000,0100A4D00A308000,online;status-playable,playable,2021-04-10 15:39:22,3 -1393,ACA NEOGEO SUPER SIDEKICKS 2 - 010055A00A300000,010055A00A300000,online;status-playable,playable,2021-04-10 16:05:58,3 -1394,ACA NEOGEO SPIN MASTER - 01007D1004DBA000,01007D1004DBA000,online;status-playable,playable,2021-04-10 15:50:19,3 -1395,ACA NEOGEO SHOCK TROOPERS,,crash;services;status-menus,menus,2020-05-26 15:29:34,1 -1396,ACA NEOGEO SENGOKU 3 - 01008D000877C000,01008D000877C000,online;status-playable,playable,2021-04-10 16:11:53,3 -1397,ACA NEOGEO SENGOKU 2 - 01009B300872A000,01009B300872A000,online;status-playable,playable,2021-04-10 17:36:44,2 -1398,ACA NEOGEO SAMURAI SHODOWN SPECIAL V - 010049F00AFE8000,010049F00AFE8000,online;status-playable,playable,2021-04-10 18:07:13,2 -1399,ACA NEOGEO SAMURAI SHODOWN IV - 010047F001DBC000,010047F001DBC000,online;status-playable,playable,2021-04-12 12:58:54,2 -1400,ACA NEOGEO SAMURAI SHODOWN - 01005C9002B42000,01005C9002B42000,online;status-playable,playable,2021-04-01 17:11:35,2 -1401,ACA NEOGEO REAL BOUT FATAL FURY SPECIAL - 010088500878C000,010088500878C000,online;status-playable,playable,2021-04-01 17:18:27,2 -1402,ACA NEOGEO OVER TOP - 01003A5001DBA000,01003A5001DBA000,status-playable,playable,2021-02-21 13:16:25,2 -1403,ACA NEOGEO NINJA COMMANDO - 01007E800AFB6000,01007E800AFB6000,online;status-playable,playable,2021-04-01 17:28:18,2 -1404,ACA NEOGEO NINJA COMBAT - 010052A00A306000,010052A00A306000,status-playable,playable,2021-03-29 21:17:28,5 -1405,ACA NEOGEO NEO TURF MASTERS - 01002E70032E8000,01002E70032E8000,status-playable,playable,2021-02-21 15:12:01,2 -1406,ACA NEOGEO Money Puzzle Exchanger - 010038F00AFA0000,010038F00AFA0000,online;status-playable,playable,2021-04-01 17:59:56,2 -1407,ACA NEOGEO METAL SLUG 4 - 01009CE00AFAE000,01009CE00AFAE000,online;status-playable,playable,2021-04-01 18:12:18,2 -1408,ACA NEOGEO METAL SLUG 3,,crash;services;status-menus,menus,2020-05-26 16:32:45,1 -1409,ACA NEOGEO METAL SLUG 2 - 010086300486E000,010086300486E000,online;status-playable,playable,2021-04-01 19:25:52,2 -1410,ACA NEOGEO METAL SLUG - 0100EBE002B3E000,0100EBE002B3E000,status-playable,playable,2021-02-21 13:56:48,2 -1411,ACA NEOGEO MAGICIAN LORD - 01007920038F6000,01007920038F6000,online;status-playable,playable,2021-04-01 19:33:26,2 -1412,ACA NEOGEO MAGICAL DROP II,,crash;services;status-menus,menus,2020-05-26 16:48:24,1 -1413,SNK Gals Fighters,,,,2020-05-26 16:56:16,1 -1414,ESP Ra.De. Psi - 0100F9600E746000,0100F9600E746000,audio;slow;status-ingame,ingame,2024-03-07 15:05:08,4 -1415,ACA NEOGEO LEAGUE BOWLING,,crash;services;status-menus,menus,2020-05-26 17:11:04,1 -1416,ACA NEOGEO LAST RESORT - 01000D10038E6000,01000D10038E6000,online;status-playable,playable,2021-04-01 19:51:22,2 -1417,ACA NEOGEO GHOST PILOTS - 01005D700A2F8000,01005D700A2F8000,online;status-playable,playable,2021-04-01 20:26:45,2 -1418,ACA NEOGEO GAROU: MARK OF THE WOLVES - 0100CB2001DB8000,0100CB2001DB8000,online;status-playable,playable,2021-04-01 20:31:10,2 -1419,ACA NEOGEO FOOTBALL FRENZY,,status-playable,playable,2021-03-29 20:12:12,5 -1420,ACA NEOGEO FATAL FURY - 0100EE6002B48000,0100EE6002B48000,online;status-playable,playable,2021-04-01 20:36:23,2 -1421,ACA NEOGEO CROSSED SWORDS - 0100D2400AFB0000,0100D2400AFB0000,online;status-playable,playable,2021-04-01 20:42:59,2 -1422,ACA NEOGEO BLAZING STAR,,crash;services;status-menus,menus,2020-05-26 17:29:02,1 -1423,ACA NEOGEO BASEBALL STARS PROFESSIONAL - 01003FE00A2F6000,01003FE00A2F6000,online;status-playable,playable,2021-04-01 21:23:05,2 -1424,ACA NEOGEO AGGRESSORS OF DARK KOMBAT - 0100B4800AFBA000,0100B4800AFBA000,online;status-playable,playable,2021-04-01 22:48:01,2 -1425,ACA NEOGEO AERO FIGHTERS 3 - 0100B91008780000,0100B91008780000,online;status-playable,playable,2021-04-12 13:11:17,2 -1426,ACA NEOGEO 3 COUNT BOUT - 0100FC000AFC6000,0100FC000AFC6000,online;status-playable,playable,2021-04-12 13:16:42,2 -1427,ACA NEOGEO 2020 SUPER BASEBALL - 01003C400871E000,01003C400871E000,online;status-playable,playable,2021-04-12 13:23:51,2 -1428,Arcade Archives Traverse USA - 010029D006ED8000,010029D006ED8000,online;status-playable,playable,2021-04-15 8:11:06,4 -1429,Arcade Archives TERRA CRESTA,,crash;services;status-menus,menus,2020-08-18 20:20:55,3 -1430,Arcade Archives STAR FORCE - 010069F008A38000,010069F008A38000,online;status-playable,playable,2021-04-15 8:39:09,4 -1431,Arcade Archives Sky Skipper - 010008F00B054000,010008F00B054000,online;status-playable,playable,2021-04-15 8:58:09,4 -1432,Arcade Archives RYGAR - 0100C2D00981E000,0100C2D00981E000,online;status-playable,playable,2021-04-15 8:48:30,4 -1433,Arcade Archives Renegade - 010081E001DD2000,010081E001DD2000,status-playable;online,playable,2022-07-21 11:45:40,5 -1434,Arcade Archives PUNCH-OUT!! - 01001530097F8000,01001530097F8000,online;status-playable,playable,2021-03-25 22:10:55,4 -1435,Arcade Archives OMEGA FIGHTER,,crash;services;status-menus,menus,2020-08-18 20:50:54,3 -1436,Arcade Archives Ninja-Kid,,online;status-playable,playable,2021-03-26 20:55:07,4 -1437,Arcade Archives NINJA GAIDEN - 01003EF00D3B4000,01003EF00D3B4000,audio;online;status-ingame,ingame,2021-04-12 16:27:53,4 -1438,Arcade Archives MOON PATROL - 01003000097FE000,01003000097FE000,online;status-playable,playable,2021-03-26 11:42:04,4 -1439,Arcade Archives MARIO BROS. - 0100755004608000,0100755004608000,online;status-playable,playable,2021-03-26 11:31:32,4 -1440,Arcade Archives Kid's Horehore Daisakusen - 0100E7C001DE0000,0100E7C001DE0000,online;status-playable,playable,2021-04-12 16:21:29,4 -1441,Arcade Archives Kid Niki Radical Ninja - 010010B008A36000,010010B008A36000,audio;status-ingame;online,ingame,2022-07-21 11:02:04,5 -1442,Arcade Archives Ikki - 01000DB00980A000,01000DB00980A000,online;status-playable,playable,2021-03-25 23:11:28,4 -1443,Arcade Archives HEROIC EPISODE - 01009A4008A30000,01009A4008A30000,online;status-playable,playable,2021-03-25 23:01:26,4 -1444,Arcade Archives DOUBLE DRAGON II The Revenge - 01009E3001DDE000,01009E3001DDE000,online;status-playable,playable,2021-04-12 16:05:29,4 -1445,Arcade Archives DOUBLE DRAGON - 0100F25001DD0000,0100F25001DD0000,online;status-playable,playable,2021-03-25 22:44:34,4 -1446,Arcade Archives DONKEY KONG,,Needs Update;crash;services;status-menus,menus,2021-03-24 18:18:43,4 -1447,Arcade Archives CRAZY CLIMBER - 0100BB1001DD6000,0100BB1001DD6000,online;status-playable,playable,2021-03-25 22:24:15,4 -1448,Arcade Archives City CONNECTION - 010007A00980C000,010007A00980C000,online;status-playable,playable,2021-03-25 22:16:15,4 -1449,Arcade Archives 10-Yard Fight - 0100BE80097FA000,0100BE80097FA000,online;status-playable,playable,2021-03-25 21:26:41,4 -1450,Ark: Survival Evolved - 0100D4A00B284000,0100D4A00B284000,gpu;status-ingame;nvdec;online-broken;UE4;ldn-untested,ingame,2024-04-16 0:53:56,4 -1451,Art of Balance - 01008EC006BE2000,01008EC006BE2000,gpu;status-ingame;ldn-works,ingame,2022-07-21 17:13:57,3 -1452,Aces of the Luftwaffe Squadron,,nvdec;slow;status-playable,playable,2020-05-27 12:29:42,1 -1453,Atelier Lulua ~ The Scion of Arland ~,,nvdec;status-playable,playable,2020-12-16 14:29:19,2 -1454,Apocalipsis,,deadlock;status-menus,menus,2020-05-27 12:56:37,1 -1456,Aqua Moto Racing Utopia - 0100D0D00516A000,0100D0D00516A000,status-playable,playable,2021-02-21 21:21:00,2 -1457,Arc of Alchemist - 0100C7D00E6A0000,0100C7D00E6A0000,status-playable;nvdec,playable,2022-10-07 19:15:54,3 -1458,1979 Revolution: Black Friday - 0100D1000B18C000,0100D1000B18C000,nvdec;status-playable,playable,2021-02-21 21:03:43,2 -1459,ABZU - 0100C1300BBC6000,0100C1300BBC6000,status-playable;UE4,playable,2022-07-19 15:02:52,3 -1460,Asterix & Obelix XXL 2 - 010050400BD38000,010050400BD38000,deadlock;status-ingame;nvdec,ingame,2022-07-21 17:54:14,3 -1461,Astro Bears Party,,status-playable,playable,2020-05-28 11:21:58,1 -1462,AQUA KITTY UDX - 0100AC10085CE000,0100AC10085CE000,online;status-playable,playable,2021-04-12 15:34:11,4 -1463,Assassin's Creed III Remastered - 01007F600B134000,01007F600B134000,status-boots;nvdec,boots,2024-06-25 20:12:11,4 -1464,Antiquia Lost,,status-playable,playable,2020-05-28 11:57:32,1 -1465,Animal Super Squad - 0100EFE009424000,0100EFE009424000,UE4;status-playable,playable,2021-04-23 20:50:50,4 -1466,Anima: Arcane Edition - 010033F00B3FA000,010033F00B3FA000,nvdec;status-playable,playable,2021-01-26 16:55:51,2 -1467,American Ninja Warrior: Challenge - 010089D00A3FA000,010089D00A3FA000,nvdec;status-playable,playable,2021-06-09 13:11:17,5 -1468,Air Conflicts: Pacific Carriers,,status-playable,playable,2021-01-04 10:52:50,2 -1469,Agatha Knife,,status-playable,playable,2020-05-28 12:37:58,1 -1470,ACORN Tactics - 0100DBC0081A4000,0100DBC0081A4000,status-playable,playable,2021-02-22 12:57:40,2 -1471,Anarcute - 010050900E1C6000,010050900E1C6000,status-playable,playable,2021-02-22 13:17:59,2 -1472,39 Days to Mars - 0100AF400C4CE000,0100AF400C4CE000,status-playable,playable,2021-02-21 22:12:46,2 -1473,Animal Rivals Switch - 010065B009B3A000,010065B009B3A000,status-playable,playable,2021-02-22 14:02:42,2 -1474,88 Heroes,,status-playable,playable,2020-05-28 14:13:02,1 -1475,Aegis Defenders - 01008E60065020000,01008E6006502000,status-playable,playable,2021-02-22 13:29:33,2 -1476,Jeopardy! - 01006E400AE2A000,01006E400AE2A000,audout;nvdec;online;status-playable,playable,2021-02-22 13:53:46,2 -1477,Akane - 01007F100DE52000,01007F100DE52000,status-playable;nvdec,playable,2022-07-21 0:12:18,2 -1478,Aaero - 010097A00CC0A000,010097A00CC0A000,status-playable;nvdec,playable,2022-07-19 14:49:55,4 -1479,99Vidas,,online;status-playable,playable,2020-10-29 13:00:40,3 -1480,AngerForce: Reloaded for Nintendo Switch - 010001E00A5F6000,010001E00A5F6000,status-playable,playable,2022-07-21 10:37:17,4 -1481,36 Fragments of Midnight,,status-playable,playable,2020-05-28 15:12:59,1 -1482,Akihabara - Feel the Rhythm Remixed - 010053100B0EA000,010053100B0EA000,status-playable,playable,2021-02-22 14:39:35,2 -1483,Bertram Fiddle Episode 2: A Bleaker Predicklement - 010021F00C1C0000,010021F00C1C0000,nvdec;status-playable,playable,2021-02-22 14:56:37,2 -1484,6180 the moon,,status-playable,playable,2020-05-28 15:39:24,1 -1485,Ace of Seafood - 0100FF1004D56000,0100FF1004D56000,status-playable,playable,2022-07-19 15:32:25,2 -1486,12 orbits,,status-playable,playable,2020-05-28 16:13:26,1 -1487,Access Denied - 0100A9900CB5C000,0100A9900CB5C000,status-playable,playable,2022-07-19 15:25:10,2 -1488,Air Hockey,,status-playable,playable,2020-05-28 16:44:37,1 -1489,2064: Read Only Memories,,deadlock;status-menus,menus,2020-05-28 16:53:58,1 -1490,12 is Better Than 6 - 01007F600D1B8000,01007F600D1B8000,status-playable,playable,2021-02-22 16:10:12,2 -1491,Sid Meier's Civilization VI - 010044500C182000,010044500C182000,status-playable;ldn-untested,playable,2024-04-08 16:03:40,7 -1492,Sniper Elite V2 Remastered - 0100BB000A3AA000,0100BB000A3AA000,slow;status-ingame;nvdec;online-broken;ldn-untested,ingame,2022-08-14 13:23:13,5 -1493,South Park: The Fractured But Whole - 01008F2005154000,01008F2005154000,slow;status-playable;online-broken,playable,2024-07-08 17:47:28,5 -1494,SkyScrappers,,status-playable,playable,2020-05-28 22:11:25,1 -1495,Shio - 0100C2F00A568000,0100C2F00A568000,status-playable,playable,2021-02-22 16:25:09,2 -1496,NBA 2K18 - 0100760002048000,0100760002048000,gpu;status-ingame;ldn-untested,ingame,2022-08-06 14:17:51,3 -1497,Sky Force Anniversary - 010083100B5CA000,010083100B5CA000,status-playable;online-broken,playable,2022-08-12 20:50:07,2 -1498,Slay the Spire - 010026300BA4A000,010026300BA4A000,status-playable,playable,2023-01-20 15:09:26,4 -1499,Sky Gamblers: Storm Raiders - 010093D00AC38000,010093D00AC38000,gpu;audio;status-ingame;32-bit,ingame,2022-08-12 21:13:36,8 -1500,Shovel Knight: Treasure Trove,,status-playable,playable,2021-02-14 18:24:39,4 -1501,Sine Mora EX - 01002820036A8000,01002820036A8000,gpu;status-ingame;online-broken,ingame,2022-08-12 19:36:18,7 -1502,NBA Playgrounds - 0100F5A008126000,0100F5A008126000,status-playable;nvdec;online-broken;UE4,playable,2022-08-06 16:13:44,6 -1503,Shut Eye,,status-playable,playable,2020-07-23 18:08:35,2 -1504,SINNER: Sacrifice for Redemption - 0100B16009C10000,0100B16009C10000,status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-08-12 20:37:33,5 -1505,SKYPEACE,,status-playable,playable,2020-05-29 14:14:30,1 -1506,Slain,,status-playable,playable,2020-05-29 14:26:16,1 -1507,Umihara Kawase BaZooka!,,,,2020-05-29 14:56:48,1 -1508,Sigi - A Fart for Melusina - 01007FC00B674000,01007FC00B674000,status-playable,playable,2021-02-22 16:46:58,2 -1509,Sky Ride - 0100DDB004F30000,0100DDB004F30000,status-playable,playable,2021-02-22 16:53:07,2 -1510,Soccer Slammers,,status-playable,playable,2020-05-30 7:48:14,1 -1511,Songbringer,,status-playable,playable,2020-06-22 10:42:02,3 -1512,Sky Rogue,,status-playable,playable,2020-05-30 8:26:28,1 -1513,Shovel Knight: Specter of Torment,,status-playable,playable,2020-05-30 8:34:17,1 -1514,Snow Moto Racing Freedom - 010045300516E000,010045300516E000,gpu;status-ingame;vulkan-backend-bug,ingame,2022-08-15 16:05:14,4 -1515,Snake Pass - 0100C0F0020E8000,0100C0F0020E8000,status-playable;nvdec;UE4,playable,2022-01-03 4:31:52,5 -1516,Shu,,nvdec;status-playable,playable,2020-05-30 9:08:59,1 -1517,"SOLDAM Drop, Connect, Erase",,status-playable,playable,2020-05-30 9:18:54,1 -1518,SkyTime,,slow;status-ingame,ingame,2020-05-30 9:24:51,1 -1519,NBA 2K19 - 01001FF00B544000,01001FF00B544000,crash;ldn-untested;services;status-nothing,nothing,2021-04-16 13:07:21,2 -1520,Shred!2 - Freeride MTB,,status-playable,playable,2020-05-30 14:34:09,1 -1521,Skelly Selest,,status-playable,playable,2020-05-30 15:38:18,1 -1522,Snipperclips Plus - 01008E20047DC000,01008E20047DC000,status-playable,playable,2023-02-14 20:20:13,4 -1523,SolDivide for Nintendo Switch - 0100590009C38000,0100590009C38000,32-bit;status-playable,playable,2021-06-09 14:13:03,6 -1524,Slime-san,,status-playable,playable,2020-05-30 16:15:12,1 -1525,Skies of Fury,,status-playable,playable,2020-05-30 16:40:54,1 -1526,SlabWell - 01003AD00DEAE000,01003AD00DEAE000,status-playable,playable,2021-02-22 17:02:51,2 -1527,Smoke and Sacrifice - 0100207007EB2000,0100207007EB2000,status-playable,playable,2022-08-14 12:38:27,2 -1528,Sky Gamblers - Afterburner - 010003F00CC98000,010003F00CC98000,gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-12 21:04:55,5 -1529,Slice Dice & Rice - 0100F4500AA4E000,0100F4500AA4E000,online;status-playable,playable,2021-02-22 17:44:23,2 -1530,Slayaway Camp: Butcher's Cut - 0100501006494000,0100501006494000,status-playable;opengl-backend-bug,playable,2022-08-12 23:44:05,4 -1531,Snowboarding the Next Phase - 0100BE200C34A000,0100BE200C34A000,nvdec;status-playable,playable,2021-02-23 12:56:58,2 -1532,Skylanders Imaginators,,crash;services;status-boots,boots,2020-05-30 18:49:18,1 -1533,Slime-san Superslime Edition,,status-playable,playable,2020-05-30 19:08:08,1 -1534,Skee-Ball,,status-playable,playable,2020-11-16 4:44:07,3 -1535,Marvel Ultimate Alliance 3: The Black Order - 010060700AC50000,010060700AC50000,status-playable;nvdec;ldn-untested,playable,2024-02-14 19:51:51,33 -1536,The Elder Scrolls V: Skyrim - 01000A10041EA000,01000A10041EA000,gpu;status-ingame;crash,ingame,2024-07-14 3:21:31,7 -1537,Risk of Rain,,,,2020-05-31 22:32:45,1 -1538,Risk of Rain 2 - 010076D00E4BA000,010076D00E4BA000,status-playable;online-broken,playable,2024-03-04 17:01:05,6 -1539,The Mummy Demastered - 0100496004194000,0100496004194000,status-playable,playable,2021-02-23 13:11:27,2 -1540,Teslagrad - 01005C8005F34000,01005C8005F34000,status-playable,playable,2021-02-23 14:41:02,2 -1541,Pushy and Pully in Blockland,,status-playable,playable,2020-07-04 11:44:41,3 -1542,The Raven Remastered - 010058A00BF1C000,010058A00BF1C000,status-playable;nvdec,playable,2022-08-22 20:02:47,2 -1543,Reed Remastered,,,,2020-05-31 23:15:15,1 -1544,The Infectious Madness of Doctor Dekker - 01008940086E0000,01008940086E0000,status-playable;nvdec,playable,2022-08-22 16:45:01,3 -1545,The Fall,,gpu;status-ingame,ingame,2020-05-31 23:31:16,1 -1546,The Fall Part 2: Unbound,,status-playable,playable,2021-11-06 2:18:08,2 -1547,The Red Strings Club,,status-playable,playable,2020-06-01 10:51:18,1 -1548,Omega Labyrinth Life - 01001D600E51A000,01001D600E51A000,status-playable,playable,2021-02-23 21:03:03,2 -1549,The Mystery of the Hudson Case,,status-playable,playable,2020-06-01 11:03:36,1 -1550,Tennis World Tour - 0100092006814000,0100092006814000,status-playable;online-broken,playable,2022-08-22 14:27:10,7 -1551,The Lost Child - 01008A000A404000,01008A000A404000,nvdec;status-playable,playable,2021-02-23 15:44:20,2 -1552,Little Misfortune - 0100E7000E826000,0100E7000E826000,nvdec;status-playable,playable,2021-02-23 20:39:44,2 -1553,The End is Nigh,,status-playable,playable,2020-06-01 11:26:45,1 -1554,The Caligula Effect: Overdose,,UE4;gpu;status-ingame,ingame,2021-01-04 11:07:50,2 -1555,The Flame in the Flood: Complete Edition - 0100C38004DCC000,0100C38004DCC000,gpu;status-ingame;nvdec;UE4,ingame,2022-08-22 16:23:49,4 -1556,The Journey Down: Chapter One - 010052C00B184000,010052C00B184000,nvdec;status-playable,playable,2021-02-24 13:32:41,2 -1557,The Journey Down: Chapter Two,,nvdec;status-playable,playable,2021-02-24 13:32:13,2 -1558,The Journey Down: Chapter Three - 01006BC00B188000,01006BC00B188000,nvdec;status-playable,playable,2021-02-24 13:45:27,2 -1559,The Mooseman - 010033300AC1A000,010033300AC1A000,status-playable,playable,2021-02-24 12:58:57,2 -1560,The Long Reach - 010052B003A38000,010052B003A38000,nvdec;status-playable,playable,2021-02-24 14:09:48,2 -1561,Asdivine Kamura,,,,2020-06-01 15:04:50,1 -1562,THE LAST REMNANT Remastered - 0100AC800D022000,0100AC800D022000,status-playable;nvdec;UE4,playable,2023-02-09 17:24:44,7 -1563,The Princess Guide - 0100E6A00B960000,0100E6A00B960000,status-playable,playable,2021-02-24 14:23:34,2 -1564,The LEGO NINJAGO Movie Video Game - 01007FC00206E000,01007FC00206E000,status-nothing;crash,nothing,2022-08-22 19:12:53,3 -1565,The Next Penelope - 01000CF0084BC000,01000CF0084BC000,status-playable,playable,2021-01-29 16:26:11,2 -1566,Tennis,,status-playable,playable,2020-06-01 20:50:36,1 -1567,The King's Bird - 010020500BD98000,010020500BD98000,status-playable,playable,2022-08-22 19:07:46,2 -1568,The First Tree - 010098800A1E4000,010098800A1E4000,status-playable,playable,2021-02-24 15:51:05,2 -1569,The Jackbox Party Pack - 0100AE5003EE6000,0100AE5003EE6000,status-playable;online-working,playable,2023-05-28 9:28:40,4 -1570,The Jackbox Party Pack 2 - 010015D003EE4000,010015D003EE4000,status-playable;online-working,playable,2022-08-22 18:23:40,3 -1571,The Jackbox Party Pack 3 - 0100CC80013D6000,0100CC80013D6000,slow;status-playable;online-working,playable,2022-08-22 18:41:06,2 -1572,The Jackbox Party Pack 4 - 0100E1F003EE8000,0100E1F003EE8000,status-playable;online-working,playable,2022-08-22 18:56:34,2 -1573,The LEGO Movie 2 - Videogame - 0100A4400BE74000,0100A4400BE74000,status-playable,playable,2023-03-01 11:23:37,4 -1574,The Gardens Between - 0100B13007A6A000,0100B13007A6A000,status-playable,playable,2021-01-29 16:16:53,2 -1575,The Bug Butcher,,status-playable,playable,2020-06-03 12:02:04,1 -1576,Funghi Puzzle Funghi Explosion,,status-playable,playable,2020-11-23 14:17:41,3 -1577,The Escapists: Complete Edition - 01001B700BA7C000,01001B700BA7C000,status-playable,playable,2021-02-24 17:50:31,2 -1578,The Escapists 2,,nvdec;status-playable,playable,2020-09-24 12:31:31,2 -1579,TENGAI for Nintendo Switch,,32-bit;status-playable,playable,2020-11-25 19:52:26,4 -1580,The Book of Unwritten Tales 2 - 010062500BFC0000,010062500BFC0000,status-playable,playable,2021-06-09 14:42:53,3 -1581,The Bridge,,status-playable,playable,2020-06-03 13:53:26,1 -1582,Ai: the Somnium Files - 010089B00D09C000,010089B00D09C000,status-playable;nvdec,playable,2022-09-04 14:45:06,2 -1583,The Coma: Recut,,status-playable,playable,2020-06-03 15:11:23,1 -1584,Ara Fell: Enhanced Edition,,,,2020-06-03 15:11:30,1 -1585,The Final Station - 0100CDC00789E000,0100CDC00789E000,status-playable;nvdec,playable,2022-08-22 15:54:39,2 -1586,The Count Lucanor - 01000850037C0000,01000850037C0000,status-playable;nvdec,playable,2022-08-22 15:26:37,3 -1587,Testra's Escape,,status-playable,playable,2020-06-03 18:21:14,1 -1588,The Low Road - 0100BAB00A116000,0100BAB00A116000,status-playable,playable,2021-02-26 13:23:22,2 -1589,The Adventure Pals - 01008ED0087A4000,01008ED0087A4000,status-playable,playable,2022-08-22 14:48:52,2 -1591,The Longest Five Minutes - 0100CE1004E72000,0100CE1004E72000,gpu;status-boots,boots,2023-02-19 18:33:11,7 -1592,The Inner World,,nvdec;status-playable,playable,2020-06-03 21:22:29,1 -1593,The Inner World - The Last Wind Monk,,nvdec;status-playable,playable,2020-11-16 13:09:40,3 -1594,The MISSING: J.J. Macfield and the Island of Memories - 0100F1B00B456000,0100F1B00B456000,status-playable,playable,2022-08-22 19:36:18,2 -1595,Jim Is Moving Out!,,deadlock;status-ingame,ingame,2020-06-03 22:05:19,1 -1596,The Darkside Detective,,status-playable,playable,2020-06-03 22:16:18,1 -1597,Tesla vs Lovecraft - 0100FBC007EAE000,0100FBC007EAE000,status-playable,playable,2023-11-21 6:19:36,6 -1598,The Lion's Song - 0100735004898000,0100735004898000,status-playable,playable,2021-06-09 15:07:16,3 -1599,Tennis in the Face - 01002970080AA000,01002970080AA000,status-playable,playable,2022-08-22 14:10:54,4 -1600,The Adventures of Elena Temple,,status-playable,playable,2020-06-03 23:15:35,1 -1602,The friends of Ringo Ishikawa - 010030700CBBC000,010030700CBBC000,status-playable,playable,2022-08-22 16:33:17,4 -1603,Redeemer: Enhanced Edition - 01000D100DCF8000,01000D100DCF8000,status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-09-11 10:20:24,3 -1604,Alien Escape,,status-playable,playable,2020-06-03 23:43:18,1 -1605,LEGO DC Super-Villains - 010070D009FEC000,010070D009FEC000,status-playable,playable,2021-05-27 18:10:37,3 -1606,LEGO Worlds,,crash;slow;status-ingame,ingame,2020-07-17 13:35:39,2 -1607,LEGO The Incredibles - 0100A01006E00000,0100A01006E00000,status-nothing;crash,nothing,2022-08-03 18:36:59,5 -1608,LEGO Harry Potter Collection - 010052A00B5D2000,010052A00B5D2000,status-ingame;crash,ingame,2024-01-31 10:28:07,8 -1609,Reed 2,,,,2020-06-04 16:43:29,1 -1610,The Men of Yoshiwara: Ohgiya,,,,2020-06-04 17:00:22,1 -1611,The Rainsdowne Players,,,,2020-06-04 17:16:02,1 -1612,Tonight we Riot - 0100D400100F8000,0100D400100F8000,status-playable,playable,2021-02-26 15:55:09,2 -1613,Skelattack - 01001A900F862000,01001A900F862000,status-playable,playable,2021-06-09 15:26:26,3 -1614,HyperParasite - 010061400ED90000,010061400ED90000,status-playable;nvdec;UE4,playable,2022-09-27 22:05:44,7 -1615,Climbros,,,,2020-06-04 21:02:21,1 -1616,Sweet Witches - 0100D6D00EC2C000,0100D6D00EC2C000,status-playable;nvdec,playable,2022-10-20 14:56:37,3 -1617,Whispering Willows - 010015A00AF1E000,010015A00AF1E000,status-playable;nvdec,playable,2022-09-30 22:33:05,4 -1618,The Outer Worlds - 0100626011656000,0100626011656000,gpu;status-ingame;nvdec;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-10-03 17:55:32,3 -1619,RADIO HAMMER STATION - 01008FA00ACEC000,01008FA00ACEC000,audout;status-playable,playable,2021-02-26 20:20:06,2 -1620,Light Tracer - 010087700D07C000,010087700D07C000,nvdec;status-playable,playable,2021-05-05 19:15:43,2 -1621,Uta no Prince-sama Amazing Aria & Sweet Serenade LOVE - 0100D4300EBF8000,0100D4300EBF8000,status-nothing;crash;Needs More Attention;Needs Update,nothing,2022-02-09 8:57:44,2 -1622,The Amazing Shinsengumi: Heroes in Love,,,,2020-06-06 9:27:49,1 -1623,Snow Battle Princess Sayuki,,,,2020-06-06 11:59:03,1 -1624,Good Job!,,status-playable,playable,2021-03-02 13:15:55,3 -1625,Ghost Blade HD - 010063200C588000,010063200C588000,status-playable;online-broken,playable,2022-09-13 21:51:21,5 -1626,HardCube - 01000C90117FA000,01000C90117FA000,status-playable,playable,2021-05-05 18:33:03,2 -1627,STAR OCEAN First Departure R - 0100EBF00E702000,0100EBF00E702000,nvdec;status-playable,playable,2021-07-05 19:29:16,1 -1629,Hair Mower 3D,,,,2020-06-08 2:29:17,1 -1630,Clubhouse Games: 51 Worldwide Classics - 010047700D540000,010047700D540000,status-playable;ldn-works,playable,2024-05-21 16:12:57,5 -1631,Torchlight 2,,status-playable,playable,2020-07-27 14:18:37,2 -1632,Creature in the Well,,UE4;gpu;status-ingame,ingame,2020-11-16 12:52:40,3 -1633,Panty Party,,,,2020-06-08 14:06:02,1 -1634,DEADLY PREMONITION Origins - 0100EBE00F22E000,0100EBE00F22E000,32-bit;status-playable;nvdec,playable,2024-03-25 12:47:46,8 -1635,Pillars of Eternity - 0100D6200E130000,0100D6200E130000,status-playable,playable,2021-02-27 0:24:21,2 -1636,Jump King,,status-playable,playable,2020-06-09 10:12:39,1 -1638,Bug Fables,,status-playable,playable,2020-06-09 11:27:00,1 -1639,DOOM 3 - 010029D00E740000,010029D00E740000,status-menus;crash,menus,2024-08-03 5:25:47,8 -1640,Raiden V: Director's Cut - 01002B000D97E000,01002B000D97E000,deadlock;status-boots;nvdec,boots,2024-07-12 7:31:46,6 -1641,Fantasy Strike - 0100944003820000,0100944003820000,online;status-playable,playable,2021-02-27 1:59:18,2 -1642,Hell Warders - 0100A4600E27A000,0100A4600E27A000,online;status-playable,playable,2021-02-27 2:31:03,2 -1643,THE NINJA SAVIORS Return of the Warriors - 01001FB00E386000,01001FB00E386000,online;status-playable,playable,2021-03-25 23:48:07,5 -1644,DOOM (1993) - 010018900DD00000,010018900DD00000,status-menus;nvdec;online-broken,menus,2022-09-06 13:32:19,4 -1645,DOOM 2 - 0100D4F00DD02000,0100D4F00DD02000,nvdec;online;status-playable,playable,2021-06-03 20:10:01,5 -1646,Songbird Symphony - 0100E5400BF94000,0100E5400BF94000,status-playable,playable,2021-02-27 2:44:04,2 -1647,Titans Pinball,,slow;status-playable,playable,2020-06-09 16:53:52,1 -1648,TERRORHYTHM (TRRT) - 010043700EB68000,010043700EB68000,status-playable,playable,2021-02-27 13:18:14,2 -1649,Pawarumi - 0100A56006CEE000,0100A56006CEE000,status-playable;online-broken,playable,2022-09-10 15:19:33,3 -1650,Rise: Race the Future - 01006BA00E652000,01006BA00E652000,status-playable,playable,2021-02-27 13:29:06,2 -1651,Run the Fan - 010074F00DE4A000,010074F00DE4A000,status-playable,playable,2021-02-27 13:36:28,2 -1652,Tetsumo Party,,status-playable,playable,2020-06-09 22:39:55,1 -1653,Snipperclips - 0100704000B3A000,0100704000B3A000,status-playable,playable,2022-12-05 12:44:55,2 -1654,The Tower of Beatrice - 010047300EBA6000,010047300EBA6000,status-playable,playable,2022-09-12 16:51:42,1 -1655,FIA European Truck Racing Championship - 01007510040E8000,01007510040E8000,status-playable;nvdec,playable,2022-09-06 17:51:59,5 -1656,Bear With Me - The Lost Robots - 010020700DE04000,010020700DE04000,nvdec;status-playable,playable,2021-02-27 14:20:10,1 -1658,Mutant Year Zero: Road to Eden - 0100E6B00DEA4000,0100E6B00DEA4000,status-playable;nvdec;UE4,playable,2022-09-10 13:31:10,4 -1659,Solo: Islands of the Heart - 010008600D1AC000,010008600D1AC000,gpu;status-ingame;nvdec,ingame,2022-09-11 17:54:43,3 -1660,1971 PROJECT HELIOS - 0100829010F4A000,0100829010F4A000,status-playable,playable,2021-04-14 13:50:19,1 -1661,Damsel - 0100BD2009A1C000,0100BD2009A1C000,status-playable,playable,2022-09-06 11:54:39,3 -1662,The Forbidden Arts - 01007700D4AC000,,status-playable,playable,2021-01-26 16:26:24,1 -1663,Turok 2: Seeds of Evil - 0100CDC00D8D6000,0100CDC00D8D6000,gpu;status-ingame;vulkan,ingame,2022-09-12 17:50:05,6 -1664,"Tactics V: ""Obsidian Brigade"" - 01007C7006AEE000",01007C7006AEE000,status-playable,playable,2021-02-28 15:09:42,1 -1665,SWORD ART ONLINE: FATAL BULLET COMPLETE EDITION - 01005DF00DC26000,01005DF00DC26000,UE4;gpu;online;status-ingame,ingame,2021-06-09 16:58:50,4 -1666,Subdivision Infinity DX - 010001400E474000,010001400E474000,UE4;crash;status-boots,boots,2021-03-03 14:26:46,1 -1667,#RaceDieRun,,status-playable,playable,2020-07-04 20:23:16,2 -1668,Wreckin' Ball Adventure - 0100C5D00EDB8000,0100C5D00EDB8000,status-playable;UE4,playable,2022-09-12 18:56:28,3 -1669,PictoQuest - 010043B00E1CE000,010043B00E1CE000,status-playable,playable,2021-02-27 15:03:16,1 -1670,VASARA Collection - 0100FE200AF48000,0100FE200AF48000,nvdec;status-playable,playable,2021-02-28 15:26:10,1 -1671,The Vanishing of Ethan Carter - 0100BCF00E970000,0100BCF00E970000,UE4;status-playable,playable,2021-06-09 17:14:47,2 -1672,"Enchanted in the Moonlight - Kiryu, Chikage & Yukinojo - 010068300E08E000",010068300E08E000,gpu;status-ingame;nvdec,ingame,2022-11-20 16:18:45,1 -1674,Demon's Tier+ - 0100161011458000,0100161011458000,status-playable,playable,2021-06-09 17:25:36,2 -1676,INSTANT SPORTS - 010099700D750000,010099700D750000,status-playable,playable,2022-09-09 12:59:40,2 -1677,Friday the 13th: The Game - 010092A00C4B6000,010092A00C4B6000,status-playable;nvdec;online-broken;UE4,playable,2022-09-06 17:33:27,4 -1678,Arcade Archives VS. GRADIUS - 01004EC00E634000,01004EC00E634000,online;status-playable,playable,2021-04-12 14:53:58,4 -1679,Desktop Rugby,,,,2020-06-10 23:21:11,1 -1680,Divinity Original Sin 2 - 010027400CDC6000,010027400CDC6000,services;status-menus;crash;online-broken;regression,menus,2023-08-13 17:20:03,6 -1681,Grandia HD Collection - 0100E0600BBC8000,0100E0600BBC8000,status-boots;crash,boots,2024-08-19 4:29:48,11 -1682,Bubsy: Paws on Fire! - 0100DBE00C554000,0100DBE00C554000,slow;status-ingame,ingame,2023-08-24 2:44:51,4 -1683,River City Girls,,nvdec;status-playable,playable,2020-06-10 23:44:09,1 -1684,Super Dodgeball Beats,,,,2020-06-10 23:45:22,1 -1685,RAD - 010024400C516000,010024400C516000,gpu;status-menus;crash;UE4,menus,2021-11-29 2:01:56,3 -1686,Super Jumpy Ball,,status-playable,playable,2020-07-04 18:40:36,3 -1687,Headliner: NoviNews - 0100EFE00E1DC000,0100EFE00E1DC000,online;status-playable,playable,2021-03-01 11:36:00,2 -1688,Atelier Ryza: Ever Darkness & the Secret Hideout - 0100D1900EC80000,0100D1900EC80000,status-playable,playable,2023-10-15 16:36:50,2 -1689,Ancestors Legacy - 01009EE0111CC000,01009EE0111CC000,status-playable;nvdec;UE4,playable,2022-10-01 12:25:36,5 -1690,Resolutiion - 0100E7F00FFB8000,0100E7F00FFB8000,crash;status-boots,boots,2021-04-25 21:57:56,3 -1691,Puzzle Quest: The Legend Returns,,,,2020-06-11 10:05:15,1 -1692,FAR: Lone Sails - 010022700E7D6000,010022700E7D6000,status-playable,playable,2022-09-06 16:33:05,2 -1693,Awesome Pea 2 - 0100B7D01147E000,0100B7D01147E000,status-playable,playable,2022-10-01 12:34:19,3 -1694,Arcade Archives PLUS ALPHA,,audio;status-ingame,ingame,2020-07-04 20:47:55,3 -1695,Caveblazers - 01001A100C0E8000,01001A100C0E8000,slow;status-ingame,ingame,2021-06-09 17:57:28,3 -1696,Piofiore no banshou - ricordo,,,,2020-06-11 19:14:52,1 -1697,Raining Blobs,,,,2020-06-11 19:32:04,1 -1698,Hyper Jam,,UE4;crash;status-boots,boots,2020-12-15 22:52:11,2 -1699,The Midnight Sanctuary - 0100DEC00B2BC000,0100DEC00B2BC000,status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-10-03 17:17:32,4 -1700,Indiecalypse,,nvdec;status-playable,playable,2020-06-11 20:19:09,1 -1701,Liberated - 0100C8000F146000,0100C8000F146000,gpu;status-ingame;nvdec,ingame,2024-07-04 4:58:24,5 -1702,Nelly Cootalot,,status-playable,playable,2020-06-11 20:55:42,1 -1703,Corpse Party: Blood Drive - 010016400B1FE000,010016400B1FE000,nvdec;status-playable,playable,2021-03-01 12:44:23,2 -1704,Professor Lupo and his Horrible Pets,,status-playable,playable,2020-06-12 0:08:45,1 -1705,Atelier Meruru ~ The Apprentice of Arland ~ DX,,nvdec;status-playable,playable,2020-06-12 0:50:48,1 -1706,Atelier Totori ~ The Adventurer of Arland ~ DX,,nvdec;status-playable,playable,2020-06-12 1:04:56,1 -1707,Red Wings - Aces of the Sky,,status-playable,playable,2020-06-12 1:19:53,1 -1708,L.F.O. - Lost Future Omega - ,,UE4;deadlock;status-boots,boots,2020-10-16 12:16:44,2 -1709,One Night Stand,,,,2020-06-12 16:34:34,1 -1710,They Came From the Sky,,status-playable,playable,2020-06-12 16:38:19,1 -1711,Nurse Love Addiction,,,,2020-06-12 16:48:29,1 -1712,THE TAKEOVER,,nvdec,,2020-06-12 16:52:28,1 -1713,Totally Reliable Delivery Service - 0100512010728000,0100512010728000,status-playable;online-broken,playable,2024-09-27 19:32:22,7 -1714,Nurse Love Syndrome - 010003701002C000,010003701002C000,status-playable,playable,2022-10-13 10:05:22,2 -1715,Undead and Beyond - 010076F011F54000,010076F011F54000,status-playable;nvdec,playable,2022-10-04 9:11:18,2 -1716,Borderlands: Game of the Year Edition - 010064800F66A000,010064800F66A000,slow;status-ingame;online-broken;ldn-untested,ingame,2023-07-23 21:10:36,3 -1717,TurtlePop: Journey to Freedom,,status-playable,playable,2020-06-12 17:45:39,1 -1718,DAEMON X MACHINA - 0100B6400CA56000,0100B6400CA56000,UE4;audout;ldn-untested;nvdec;status-playable,playable,2021-06-09 19:22:29,7 -1719,Blasphemous - 0100698009C6E000,0100698009C6E000,nvdec;status-playable,playable,2021-03-01 12:15:31,2 -1720,The Sinking City - 010028D00BA1A000,010028D00BA1A000,status-playable;nvdec;UE4,playable,2022-09-12 16:41:55,4 -1721,Battle Supremacy - Evolution - 010099B00E898000,010099B00E898000,gpu;status-boots;nvdec,boots,2022-02-17 9:02:50,3 -1722,STEINS;GATE: My Darling's Embrace - 0100CB400E9BC000,0100CB400E9BC000,status-playable;nvdec,playable,2022-11-20 16:48:34,3 -1723,Dragon Quest XI S: Echoes of an Elusive Age - Definitive Edition - 01006C300E9F0000,01006C300E9F0000,status-playable;UE4,playable,2021-11-27 12:27:11,8 -1724,Star Wars™ Pinball - 01006DA00DEAC000,01006DA00DEAC000,status-playable;online-broken,playable,2022-09-11 18:53:31,7 -1725,Space Cows,,UE4;crash;status-menus,menus,2020-06-15 11:33:20,1 -1726,Ritual - 0100BD300F0EC000,0100BD300F0EC000,status-playable,playable,2021-03-02 13:51:19,2 -1727,Snooker 19 - 01008DA00CBBA000,01008DA00CBBA000,status-playable;nvdec;online-broken;UE4,playable,2022-09-11 17:43:22,4 -1728,Sydney Hunter and the Curse of the Mayan,,status-playable,playable,2020-06-15 12:15:57,1 -1729,CONTRA: ROGUE CORPS,,crash;nvdec;regression;status-menus,menus,2021-01-07 13:23:35,8 -1730,Tyd wag vir Niemand - 010073A00C4B2000,010073A00C4B2000,status-playable,playable,2021-03-02 13:39:53,2 -1731,Detective Dolittle - 010030600E65A000,010030600E65A000,status-playable,playable,2021-03-02 14:03:59,2 -1733,Rebel Cops - 0100D9B00E22C000,0100D9B00E22C000,status-playable,playable,2022-09-11 10:02:53,2 -1734,Sayonara Wild Hearts - 010010A00A95E000,010010A00A95E000,status-playable,playable,2023-10-23 3:20:01,2 -1735,Neon Drive - 010032000EAC6000,010032000EAC6000,status-playable,playable,2022-09-10 13:45:48,2 -1736,GRID Autosport - 0100DC800A602000,0100DC800A602000,status-playable;nvdec;online-broken;ldn-untested,playable,2023-03-02 20:14:45,5 -1737,DISTRAINT: Deluxe Edition,,status-playable,playable,2020-06-15 23:42:24,1 -1738,Jet Kave Adventure - 0100E4900D266000,0100E4900D266000,status-playable;nvdec,playable,2022-09-09 14:50:39,2 -1739,LEGO Jurassic World - 01001C100E772000,01001C100E772000,status-playable,playable,2021-05-27 17:00:20,3 -1740,Neo Cab Demo,,crash;status-boots,boots,2020-06-16 0:14:00,1 -1741,Reel Fishing: Road Trip Adventure - 010007C00E558000,010007C00E558000,status-playable,playable,2021-03-02 16:06:43,2 -1742,Zombie Army Trilogy,,ldn-untested;online;status-playable,playable,2020-12-16 12:02:28,2 -1743,Project Warlock,,status-playable,playable,2020-06-16 10:50:41,1 -1744,Super Toy Cars 2 - 0100C6800D770000,0100C6800D770000,gpu;regression;status-ingame,ingame,2021-03-02 20:15:15,2 -1745,Call of Cthulhu - 010046000EE40000,010046000EE40000,status-playable;nvdec;UE4,playable,2022-12-18 3:08:30,5 -1746,Overpass - 01008EA00E816000,01008EA00E816000,status-playable;online-broken;UE4;ldn-untested,playable,2022-10-17 15:29:47,6 -1747,The Little Acre - 0100A5000D590000,0100A5000D590000,nvdec;status-playable,playable,2021-03-02 20:22:27,2 -1748,Lost Horizon 2,,nvdec;status-playable,playable,2020-06-16 12:02:12,1 -1749,Rogue Robots,,status-playable,playable,2020-06-16 12:16:11,1 -1750,Skelittle: A Giant Party!! - 01008E700F952000,01008E700F952000,status-playable,playable,2021-06-09 19:08:34,3 -1751,Magazine Mogul - 01004A200E722000,01004A200E722000,status-playable;loader-allocator,playable,2022-10-03 12:05:34,2 -1752,Dead by Daylight - 01004C400CF96000,01004C400CF96000,status-boots;nvdec;online-broken;UE4,boots,2022-09-13 14:32:13,4 -1753,Ori and the Blind Forest: Definitive Edition - 010061D00DB74000,010061D00DB74000,status-playable;nvdec;online-broken,playable,2022-09-14 19:58:13,4 -1754,Northgard - 0100A9E00D97A000,0100A9E00D97A000,status-menus;crash,menus,2022-02-06 2:05:35,4 -1755,Freedom Finger - 010082B00EE50000,010082B00EE50000,nvdec;status-playable,playable,2021-06-09 19:31:30,4 -1756,Atelier Shallie: Alchemists of the Dusk Sea DX,,nvdec;status-playable,playable,2020-11-25 20:54:12,2 -1757,Dragon Quest - 0100EFC00EFB2000,0100EFC00EFB2000,gpu;status-boots,boots,2021-11-09 3:31:32,6 -1758,Dragon Quest II: Luminaries of the Legendary Line - 010062200EFB4000,010062200EFB4000,status-playable,playable,2022-09-13 16:44:11,7 -1759,Atelier Ayesha: The Alchemist of Dusk DX - 0100D9D00EE8C000,0100D9D00EE8C000,status-menus;crash;nvdec;Needs Update,menus,2021-11-24 7:29:54,2 -1760,Dragon Quest III: The Seeds of Salvation - 010015600EFB6000,010015600EFB6000,gpu;status-boots,boots,2021-11-09 3:38:34,6 -1761,Habroxia,,status-playable,playable,2020-06-16 23:04:42,1 -1762,Petoons Party - 010044400EEAE000,010044400EEAE000,nvdec;status-playable,playable,2021-03-02 21:07:58,2 -1763,Fight'N Rage,,status-playable,playable,2020-06-16 23:35:19,1 -1764,Cyber Protocol,,nvdec;status-playable,playable,2020-09-28 14:47:40,2 -1765,Barry Bradford's Putt Panic Party,,nvdec;status-playable,playable,2020-06-17 1:08:34,1 -1766,Potata: Fairy Flower,,nvdec;status-playable,playable,2020-06-17 9:51:34,1 -1767,Kawaii Deathu Desu,,,,2020-06-17 9:59:15,1 -1768,The Spectrum Retreat - 010041C00A68C000,010041C00A68C000,status-playable,playable,2022-10-03 18:52:40,2 -1769,Moero Crystal H - 01004EB0119AC000,01004EB0119AC000,32-bit;status-playable;nvdec;vulkan-backend-bug,playable,2023-07-05 12:04:22,15 -1770,Modern Combat Blackout - 0100D8700B712000,0100D8700B712000,crash;status-nothing,nothing,2021-03-29 19:47:15,2 -1771,Forager - 01001D200BCC4000,01001D200BCC4000,status-menus;crash,menus,2021-11-24 7:10:17,5 -1772,Ultimate Ski Jumping 2020 - 01006B601117E000,01006B601117E000,online;status-playable,playable,2021-03-02 20:54:11,2 -1773,Strangers of the Power 3,,,,2020-06-17 14:45:52,1 -1774,Little Triangle,,status-playable,playable,2020-06-17 14:46:26,1 -1775,Nice Slice,,nvdec;status-playable,playable,2020-06-17 15:13:27,1 -1776,Project Starship,,,,2020-06-17 15:33:18,1 -1777,Puyo Puyo Champions,,online;status-playable,playable,2020-06-19 11:35:08,1 -1778,Shantae and the Seven Sirens,,nvdec;status-playable,playable,2020-06-19 12:23:40,1 -1779,SYNAPTIC DRIVE,,online;status-playable,playable,2020-09-07 13:44:05,4 -1780,XCOM 2 Collection - 0100D0B00FB74000,0100D0B00FB74000,gpu;status-ingame;crash,ingame,2022-10-04 9:38:30,14 -1781,BioShock Remastered - 0100AD10102B2000,0100AD10102B2000,services-horizon;status-boots;crash;Needs Update,boots,2024-06-06 1:08:52,6 -1782,Burnout Paradise Remastered - 0100DBF01000A000,0100DBF01000A000,nvdec;online;status-playable,playable,2021-06-13 2:54:46,4 -1783,Adam's Venture: Origins - 0100C0C0040E4000,0100C0C0040E4000,status-playable,playable,2021-03-04 18:43:57,2 -1784,"Invisible, Inc.",,crash;status-nothing,nothing,2021-01-29 16:28:13,2 -1785,Vektor Wars - 010098400E39E000,010098400E39E000,status-playable;online-broken;vulkan-backend-bug,playable,2022-10-04 9:23:46,3 -1786,Flux8,,nvdec;status-playable,playable,2020-06-19 20:55:11,1 -1787,Beyond Enemy Lines: Covert Operations - 010056500CAD8000,010056500CAD8000,status-playable;UE4,playable,2022-10-01 13:11:50,4 -1788,Genetic Disaster,,status-playable,playable,2020-06-19 21:41:12,1 -1789,Castle Pals - 0100DA2011F18000,0100DA2011F18000,status-playable,playable,2021-03-04 21:00:33,2 -1790,BioShock 2 Remastered - 01002620102C6000,01002620102C6000,services;status-nothing,nothing,2022-10-29 14:39:22,3 -1791,BioShock Infinite: The Complete Edition - 0100D560102C8000,0100D560102C8000,services-horizon;status-nothing;crash,nothing,2024-08-11 21:35:01,3 -1792,Borderlands 2: Game of the Year Edition - 010096F00FF22000,010096F00FF22000,status-playable,playable,2022-04-22 18:35:07,4 -1793,Borderlands: The Pre-Sequel Ultimate Edition - 010007400FF24000,010007400FF24000,nvdec;status-playable,playable,2021-06-09 20:17:10,3 -1794,The Coma 2: Vicious Sisters,,gpu;status-ingame,ingame,2020-06-20 12:51:51,1 -1795,Roll'd,,status-playable,playable,2020-07-04 20:24:01,3 -1796,Big Drunk Satanic Massacre - 01002FA00DE72000,01002FA00DE72000,status-playable,playable,2021-03-04 21:28:22,2 -1797,LUXAR - 0100EC2011A80000,0100EC2011A80000,status-playable,playable,2021-03-04 21:11:57,2 -1798,OneWayTicket,,UE4;status-playable,playable,2020-06-20 17:20:49,1 -1799,Radiation City - 0100DA400E07E000,0100DA400E07E000,status-ingame;crash,ingame,2022-09-30 11:15:04,2 -1800,Arcade Spirits,,status-playable,playable,2020-06-21 11:45:03,1 -1801,Bring Them Home - 01000BF00BE40000,01000BF00BE40000,UE4;status-playable,playable,2021-04-12 14:14:43,3 -1802,Fly Punch Boom!,,online;status-playable,playable,2020-06-21 12:06:11,1 -1803,Xenoblade Chronicles Definitive Edition - 0100FF500E34A000,0100FF500E34A000,status-playable;nvdec,playable,2024-05-04 20:12:41,25 -1805,A Winter's Daydream,,,,2020-06-22 14:52:38,1 -1806,DEAD OR SCHOOL - 0100A5000F7AA000,0100A5000F7AA000,status-playable;nvdec,playable,2022-09-06 12:04:09,2 -1807,Biolab Wars,,,,2020-06-22 15:50:34,1 -1808,Worldend Syndrome,,status-playable,playable,2021-01-03 14:16:32,3 -1809,The Tiny Bang Story - 01009B300D76A000,01009B300D76A000,status-playable,playable,2021-03-05 15:39:05,2 -1810,Neo Cab - 0100EBB00D2F4000,0100EBB00D2F4000,status-playable,playable,2021-04-24 0:27:58,3 -1811,Sniper Elite 3 Ultimate Edition - 010075A00BA14000,010075A00BA14000,status-playable;ldn-untested,playable,2024-04-18 7:47:49,7 -1812,Boku to Nurse no Kenshuu Nisshi - 010093700ECEC000,010093700ECEC000,status-playable,playable,2022-11-21 20:38:34,2 -1813,80 Days,,status-playable,playable,2020-06-22 21:43:01,1 -1814,Mirror,,,,2020-06-22 21:46:55,1 -1815,SELFY COLLECTION Dream Stylist,,,,2020-06-22 22:15:25,1 -1817,G-MODE Archives 4 Beach Volleyball Girl Drop,,,,2020-06-22 22:36:36,1 -1818,Star Horizon,,,,2020-06-22 23:03:45,1 -1819,To the Moon,,status-playable,playable,2021-03-20 15:33:38,4 -1820,Darksiders II Deathinitive Edition - 010071800BA98000,010071800BA98000,gpu;status-ingame;nvdec;online-broken,ingame,2024-06-26 0:37:25,6 -1821,SpongeBob SquarePants: Battle for Bikini Bottom - Rehydrated - 010062800D39C000,010062800D39C000,status-playable;online-broken;UE4;ldn-broken;vulkan-backend-bug,playable,2023-08-01 19:29:34,9 -1822,Sleep Tight - 01004AC0081DC000,01004AC0081DC000,gpu;status-ingame;UE4,ingame,2022-08-13 0:17:32,5 -1823,SUPER ROBOT WARS V,,online;status-playable,playable,2020-06-23 12:56:37,1 -1824,Ghostbusters: The Video Game Remastered - 010008A00F632000,010008A00F632000,status-playable;nvdec,playable,2021-09-17 7:26:57,3 -1825,FIFA 20 Legacy Edition - 01005DE00D05C000,01005DE00D05C000,gpu;status-ingame;nvdec;online-broken;ldn-untested,ingame,2022-09-13 17:57:20,5 -1826,VARIABLE BARRICADE NS - 010045C0109F2000,010045C0109F2000,status-playable;nvdec,playable,2022-02-26 15:50:13,2 -1827,Super Cane Magic ZERO - 0100D9B00DB5E000,0100D9B00DB5E000,status-playable,playable,2022-09-12 15:33:46,2 -1829,Whipsey and the Lost Atlas,,status-playable,playable,2020-06-23 20:24:14,1 -1830,FUZE4 - 0100EAD007E98000,0100EAD007E98000,status-playable;vulkan-backend-bug,playable,2022-09-06 19:25:01,4 -1831,Legend of the Skyfish,,status-playable,playable,2020-06-24 13:04:22,1 -1832,Grand Brix Shooter,,slow;status-playable,playable,2020-06-24 13:23:54,1 -1833,Pokémon Café Mix - 010072400E04A000,010072400E04A000,status-playable,playable,2021-08-17 20:00:04,3 -1834,BULLETSTORM: DUKE OF SWITCH EDITION - 01003DD00D658000,01003DD00D658000,status-playable;nvdec,playable,2022-03-03 8:30:24,4 -1835,Brunch Club,,status-playable,playable,2020-06-24 13:54:07,1 -1836,Invisigun Reloaded - 01005F400E644000,01005F400E644000,gpu;online;status-ingame,ingame,2021-06-10 12:13:24,5 -1837,AER - Memories of Old - 0100A0400DDE0000,0100A0400DDE0000,nvdec;status-playable,playable,2021-03-05 18:43:43,2 -1838,Farm Mystery - 01000E400ED98000,01000E400ED98000,status-playable;nvdec,playable,2022-09-06 16:46:47,5 -1839,Ninjala - 0100CCD0073EA000,0100CCD0073EA000,status-boots;online-broken;UE4,boots,2024-07-03 20:04:49,10 -1840,Shojo Jigoku no Doku musume,,,,2020-06-25 11:25:12,1 -1841,Jump Rope Challenge - 0100B9C012706000,0100B9C012706000,services;status-boots;crash;Needs Update,boots,2023-02-27 1:24:28,3 -1842,Knight Squad,,status-playable,playable,2020-08-09 16:54:51,3 -1843,WARBORN,,status-playable,playable,2020-06-25 12:36:47,1 -1844,The Bard's Tale ARPG: Remastered and Resnarkled - 0100CD500DDAE000,0100CD500DDAE000,gpu;status-ingame;nvdec;online-working,ingame,2024-07-18 12:52:01,6 -1845,NAMCOT COLLECTION,,audio;status-playable,playable,2020-06-25 13:35:22,1 -1846,Code: Realize ~Future Blessings~ - 010002400F408000,010002400F408000,status-playable;nvdec,playable,2023-03-31 16:57:47,2 -1847,Code: Realize ~Guardian of Rebirth~,,,,2020-06-25 15:09:14,1 -1848,Polandball: Can Into Space!,,status-playable,playable,2020-06-25 15:13:26,1 -1849,Ruiner - 01006EC00F2CC000,01006EC00F2CC000,status-playable;UE4,playable,2022-10-03 14:11:33,3 -1850,Summer in Mara - 0100A130109B2000,0100A130109B2000,nvdec;status-playable,playable,2021-03-06 14:10:38,2 -1851,Brigandine: The Legend of Runersia - 010011000EA7A000,010011000EA7A000,status-playable,playable,2021-06-20 6:52:25,14 -1852,Duke Nukem 3D: 20th Anniversary World Tour - 01007EF00CB88000,01007EF00CB88000,32-bit;status-playable;ldn-untested,playable,2022-08-19 22:22:40,6 -1853,Outbuddies DX - 0100B8900EFA6000,0100B8900EFA6000,gpu;status-ingame,ingame,2022-08-04 22:39:24,4 -1854,Mr. DRILLER DrillLand,,nvdec;status-playable,playable,2020-07-24 13:56:48,2 -1855,Fable of Fairy Stones - 0100E3D0103CE000,0100E3D0103CE000,status-playable,playable,2021-05-05 21:04:54,2 -1856,Destrobots - 01008BB011ED6000,01008BB011ED6000,status-playable,playable,2021-03-06 14:37:05,2 -1857,Aery - 0100875011D0C000,0100875011D0C000,status-playable,playable,2021-03-07 15:25:51,2 -1858,TETRA for Nintendo Switch,,status-playable,playable,2020-06-26 20:49:55,1 -1859,Push the Crate 2 - 0100B60010432000,0100B60010432000,UE4;gpu;nvdec;status-ingame,ingame,2021-06-10 14:20:01,3 -1860,Railway Empire - 01002EE00DC02000,01002EE00DC02000,status-playable;nvdec,playable,2022-10-03 13:53:50,3 -1861,Endless Fables: Dark Moor - 01004F3011F92000,01004F3011F92000,gpu;nvdec;status-ingame,ingame,2021-03-07 15:31:03,2 -1862,Across the Grooves,,status-playable,playable,2020-06-27 12:29:51,1 -1863,Behold the Kickmen,,status-playable,playable,2020-06-27 12:49:45,1 -1864,Blood & Guts Bundle,,status-playable,playable,2020-06-27 12:57:35,1 -1865,Seek Hearts - 010075D0101FA000,010075D0101FA000,status-playable,playable,2022-11-22 15:06:26,2 -1866,Edna & Harvey: The Breakout - Anniversary Edition - 01004F000B716000,01004F000B716000,status-ingame;crash;nvdec,ingame,2022-08-01 16:59:56,5 -1867,-KLAUS-,,nvdec;status-playable,playable,2020-06-27 13:27:30,1 -1868,Gun Gun Pixies,,,,2020-06-27 13:31:06,1 -1869,Tcheco in the Castle of Lucio,,status-playable,playable,2020-06-27 13:35:43,1 -1870,My Butler,,status-playable,playable,2020-06-27 13:46:23,1 -1871,Caladrius Blaze - 01004FD00D66A000,01004FD00D66A000,deadlock;status-nothing;nvdec,nothing,2022-12-07 16:44:37,4 -1872,Shipped,,status-playable,playable,2020-11-21 14:22:32,3 -1873,The Alliance Alive HD Remastered - 010045A00E038000,010045A00E038000,nvdec;status-playable,playable,2021-03-07 15:43:45,2 -1874,Monochrome Order,,,,2020-06-27 14:38:40,1 -1875,My Lovely Daughter - 010086B00C784000,010086B00C784000,status-playable,playable,2022-11-24 17:25:32,2 -1876,Caged Garden Cock Robin,,,,2020-06-27 16:47:22,1 -1877,A Knight's Quest - 01005EF00CFDA000,01005EF00CFDA000,status-playable;UE4,playable,2022-09-12 20:44:20,6 -1878,The Witcher 3: Wild Hunt - 01003D100E9C6000,01003D100E9C6000,status-playable;nvdec;vulkan-backend-bug;amd-vendor-bug,playable,2024-02-22 12:21:51,11 -1879,BATTLESTAR GALACTICA Deadlock,,nvdec;status-playable,playable,2020-06-27 17:35:44,1 -1880,STELLATUM - 0100BC800EDA2000,0100BC800EDA2000,gpu;status-playable,playable,2021-03-07 16:30:23,2 -1881,Reventure - 0100E2E00EA42000,0100E2E00EA42000,status-playable,playable,2022-09-15 20:07:06,2 -1882,Killer Queen Black - 0100F2900B3E2000,0100F2900B3E2000,ldn-untested;online;status-playable,playable,2021-04-08 12:46:18,3 -1883,Puchitto kurasutā,,Need-Update;crash;services;status-menus,menus,2020-07-04 16:44:28,2 -1884,Silk - 010045500DFE2000,010045500DFE2000,nvdec;status-playable,playable,2021-06-10 15:34:37,2 -1885,Aldred - Knight of Honor - 01000E000EEF8000,01000E000EEF8000,services;status-playable,playable,2021-11-30 1:49:17,2 -1886,Tamashii - 010012800EE3E000,010012800EE3E000,status-playable,playable,2021-06-10 15:26:20,2 -1887,Overlanders - 0100D7F00EC64000,0100D7F00EC64000,status-playable;nvdec;UE4,playable,2022-09-14 20:15:06,3 -1888,Romancing SaGa 3,,audio;gpu;status-ingame,ingame,2020-06-27 20:26:18,1 -1889,Hakoniwa Explorer Plus,,slow;status-ingame,ingame,2021-02-19 16:56:19,3 -1890,Fractured Minds - 01004200099F2000,01004200099F2000,status-playable,playable,2022-09-13 21:21:40,3 -1891,Strange Telephone,,,,2020-06-27 21:00:43,1 -1892,Strikey Sisters,,,,2020-06-27 22:20:14,1 -1893,IxSHE Tell - 0100DEB00F12A000,0100DEB00F12A000,status-playable;nvdec,playable,2022-12-02 18:00:42,3 -1894,Monster Farm - 0100E9900ED74000,0100E9900ED74000,32-bit;nvdec;status-playable,playable,2021-05-05 19:29:13,3 -1895,Pachi Pachi On A Roll,,,,2020-06-28 10:28:59,1 -1896,MISTOVER,,,,2020-06-28 11:23:53,1 -1897,Little Busters! Converted Edition - 0100943010310000,0100943010310000,status-playable;nvdec,playable,2022-09-29 15:34:56,3 -1898,Snack World The Dungeon Crawl Gold - 0100F2800D46E000,0100F2800D46E000,gpu;slow;status-ingame;nvdec;audout,ingame,2022-05-01 21:12:44,7 -1899,Super Kirby Clash - 01003FB00C5A8000,01003FB00C5A8000,status-playable;ldn-works,playable,2024-07-30 18:21:55,8 -1900,SEGA AGES Thunder Force IV,,,,2020-06-29 12:06:07,1 -1901,SEGA AGES Puyo Puyo - 01005F600CB0E000,01005F600CB0E000,online;status-playable,playable,2021-05-05 16:09:28,3 -1902,EAT BEAT DEADSPIKE-san - 0100A9B009678000,0100A9B009678000,audio;status-playable;Needs Update,playable,2022-12-02 19:25:29,2 -1903,AeternoBlade II - 01009D100EA28000,01009D100EA28000,status-playable;online-broken;UE4;vulkan-backend-bug,playable,2022-09-12 21:11:18,3 -1904,WRC 8 FIA World Rally Championship - 010087800DCEA000,010087800DCEA000,status-playable;nvdec,playable,2022-09-16 23:03:36,4 -1905,Yaga - 01006FB00DB02000,01006FB00DB02000,status-playable;nvdec,playable,2022-09-16 23:17:17,2 -1906,Woven - 01006F100EB16000,01006F100EB16000,nvdec;status-playable,playable,2021-06-02 13:41:08,3 -1907,Kissed by the Baddest Bidder - 0100F3A00F4CA000,0100F3A00F4CA000,gpu;status-ingame;nvdec,ingame,2022-12-04 20:57:11,3 -1910,Thief of Thieves - 0100CE700F62A000,0100CE700F62A000,status-nothing;crash;loader-allocator,nothing,2021-11-03 7:16:30,2 -1911,Squidgies Takeover,,status-playable,playable,2020-07-20 22:28:08,2 -1912,Balthazar's Dreams - 0100BC400FB64000,0100BC400FB64000,status-playable,playable,2022-09-13 0:13:22,2 -1913,ZenChess,,status-playable,playable,2020-07-01 22:28:27,1 -1914,Sparklite - 01007ED00C032000,01007ED00C032000,status-playable,playable,2022-08-06 11:35:41,4 -1915,Some Distant Memory - 01009EE00E91E000,01009EE00E91E000,status-playable,playable,2022-09-15 21:48:19,2 -1916,Skybolt Zack - 010041C01014E000,010041C01014E000,status-playable,playable,2021-04-12 18:28:00,3 -1917,Tactical Mind 2,,status-playable,playable,2020-07-01 23:11:07,1 -1918,Super Street: Racer - 0100FB400F54E000,0100FB400F54E000,status-playable;UE4,playable,2022-09-16 13:43:14,2 -1919,TOKYO DARK - REMEMBRANCE - - 01003E500F962000,01003E500F962000,nvdec;status-playable,playable,2021-06-10 20:09:49,2 -1920,Party Treats,,status-playable,playable,2020-07-02 0:05:00,1 -1921,Rocket Wars,,status-playable,playable,2020-07-24 14:27:39,2 -1922,Rawr-Off,,crash;nvdec;status-menus,menus,2020-07-02 0:14:44,1 -1923,Blair Witch - 01006CC01182C000,01006CC01182C000,status-playable;nvdec;UE4,playable,2022-10-01 14:06:16,6 -1924,Urban Trial Tricky - 0100A2500EB92000,0100A2500EB92000,status-playable;nvdec;UE4,playable,2022-12-06 13:07:56,6 -1925,Infliction - 01001CB00EFD6000,01001CB00EFD6000,status-playable;nvdec;UE4,playable,2022-10-02 13:15:55,4 -1926,Catherine Full Body for Nintendo Switch (JP) - 0100BAE0077E4000,0100BAE0077E4000,Needs Update;gpu;status-ingame,ingame,2021-02-21 18:06:11,14 -1927,Night Call - 0100F3A0095A6000,0100F3A0095A6000,status-playable;nvdec,playable,2022-10-03 12:57:00,2 -1928,Grimshade - 01001E200F2F8000,01001E200F2F8000,status-playable,playable,2022-10-02 12:44:20,2 -1930,A Summer with the Shiba Inu - 01007DD011C4A000,01007DD011C4A000,status-playable,playable,2021-06-10 20:51:16,2 -1931,Holy Potatoes! What the Hell?!,,status-playable,playable,2020-07-03 10:48:56,1 -1932,Tower of Time,,gpu;nvdec;status-ingame,ingame,2020-07-03 11:11:12,1 -1933,Iron Wings - 01005270118D6000,01005270118D6000,slow;status-ingame,ingame,2022-08-07 8:32:57,4 -1934,Death Come True - 010012B011AB2000,010012B011AB2000,nvdec;status-playable,playable,2021-06-10 22:30:49,2 -1935,CAN ANDROIDS PRAY:BLUE,,,,2020-07-05 8:14:53,1 -1936,The Almost Gone,,status-playable,playable,2020-07-05 12:33:07,1 -1937,Urban Flow,,services;status-playable,playable,2020-07-05 12:51:47,1 -1938,Digimon Story Cyber Sleuth: Complete Edition - 010014E00DB56000,010014E00DB56000,status-playable;nvdec;opengl,playable,2022-09-13 15:02:37,4 -1939,Return of the Obra Dinn - 010032E00E6E2000,010032E00E6E2000,status-playable,playable,2022-09-15 19:56:45,2 -1940,YU-NO: A GIRL WHO CHANTS LOVE AT THE BOUND OF THIS WORLD. - 010037D00DBDC000,010037D00DBDC000,nvdec;status-playable,playable,2021-01-26 17:03:52,3 -1941,Summer Sweetheart - 01004E500DB9E000,01004E500DB9E000,status-playable;nvdec,playable,2022-09-16 12:51:46,5 -1942,ZikSquare - 010086700EF16000,010086700EF16000,gpu;status-ingame,ingame,2021-11-06 2:02:48,5 -1943,Planescape: Torment and Icewind Dale: Enhanced Editions - 010030B00C316000,010030B00C316000,cpu;status-boots;32-bit;crash;Needs Update,boots,2022-09-10 3:58:26,6 -1944,Megaquarium - 010082B00E8B8000,010082B00E8B8000,status-playable,playable,2022-09-14 16:50:00,2 -1945,Ice Age Scrat's Nutty Adventure - 01004E5007E92000,01004E5007E92000,status-playable;nvdec,playable,2022-09-13 22:22:29,2 -1946,Aggelos - 010004D00A9C0000,010004D00A9C0000,gpu;status-ingame,ingame,2023-02-19 13:24:23,5 -1947,Stranded Sails: Explorers of the Cursed Islands - 010078D00E8F4000,010078D00E8F4000,slow;status-playable;nvdec;UE4,playable,2022-09-16 11:58:38,3 -1948,Sub Level Zero: Redux - 0100E6400BCE8000,0100E6400BCE8000,status-playable,playable,2022-09-16 12:30:03,2 -1949,BurgerTime Party!,,slow;status-playable,playable,2020-11-21 14:11:53,3 -1950,Another Sight,,UE4;gpu;nvdec;status-ingame,ingame,2020-12-03 16:49:59,3 -1951,Baldur's Gate and Baldur's Gate II: Enhanced Editions - 010010A00DA48000,010010A00DA48000,32-bit;status-playable,playable,2022-09-12 23:52:15,6 -1952,Kine - 010089000F0E8000,010089000F0E8000,status-playable;UE4,playable,2022-09-14 14:28:37,3 -1953,Roof Rage - 010088100DD42000,010088100DD42000,status-boots;crash;regression,boots,2023-11-12 3:47:18,5 -1954,Pig Eat Ball - 01000FD00D5CC000,01000FD00D5CC000,services;status-ingame,ingame,2021-11-30 1:57:45,2 -1956,DORAEMON STORY OF SEASONS,,nvdec;status-playable,playable,2020-07-13 20:28:11,2 -1957,Root Letter: Last Answer - 010030A00DA3A000,010030A00DA3A000,status-playable;vulkan-backend-bug,playable,2022-09-17 10:25:57,2 -1959,Cat Quest II,,status-playable,playable,2020-07-06 23:52:09,1 -1960,Streets of Rage 4,,nvdec;online;status-playable,playable,2020-07-07 21:21:22,1 -1961,Deep Space Rush,,status-playable,playable,2020-07-07 23:30:33,1 -1962,Into the Dead 2 - 01000F700DECE000,01000F700DECE000,status-playable;nvdec,playable,2022-09-14 12:36:14,3 -1963,Dark Devotion - 010083A00BF6C000,010083A00BF6C000,status-playable;nvdec,playable,2022-08-09 9:41:18,5 -1964,Anthill - 010054C00D842000,010054C00D842000,services;status-menus;nvdec,menus,2021-11-18 9:25:25,3 -1965,Skullgirls: 2nd Encore - 010046B00DE62000,010046B00DE62000,status-playable,playable,2022-09-15 21:21:25,6 -1966,Tokyo School Life - 0100E2E00CB14000,0100E2E00CB14000,status-playable,playable,2022-09-16 20:25:54,2 -1967,Pixel Gladiator,,status-playable,playable,2020-07-08 2:41:26,1 -1968,Spirit Hunter: NG,,32-bit;status-playable,playable,2020-12-17 20:38:47,3 -1969,The Fox Awaits Me,,,,2020-07-08 11:58:56,1 -1970,Shalnor Legends: Sacred Lands - 0100B4900E008000,0100B4900E008000,status-playable,playable,2021-06-11 14:57:11,2 -1971,Hero must die. again,,,,2020-07-08 12:35:49,1 -1972,AeternoBlade I,,nvdec;status-playable,playable,2020-12-14 20:06:48,2 -1973,Sephirothic Stories - 010059700D4A0000,010059700D4A0000,services;status-menus,menus,2021-11-25 8:52:17,3 -1974,Ciel Fledge: A Daughter Raising Simulator,,,,2020-07-08 14:57:17,1 -1976,Olympia Soiree - 0100F9D00C186000,0100F9D00C186000,status-playable,playable,2022-12-04 21:07:12,2 -1977,Mighty Switch Force! Collection - 010060D00AE36000,010060D00AE36000,status-playable,playable,2022-10-28 20:40:32,3 -1978,Street Outlaws: The List - 010012400D202000,010012400D202000,nvdec;status-playable,playable,2021-06-11 12:15:32,4 -1979,TroubleDays,,,,2020-07-09 8:50:12,1 -1980,Legend of the Tetrarchs,,deadlock;status-ingame,ingame,2020-07-10 7:54:03,2 -1981,Soul Searching,,status-playable,playable,2020-07-09 18:39:07,1 -1982,Dusk Diver - 010011C00E636000,010011C00E636000,status-boots;crash;UE4,boots,2021-11-06 9:01:30,2 -1984,PBA Pro Bowling - 010085700ABC8000,010085700ABC8000,status-playable;nvdec;online-broken;UE4,playable,2022-09-14 23:00:49,2 -1985,Horror Pinball Bundle - 0100E4200FA82000,0100E4200FA82000,status-menus;crash,menus,2022-09-13 22:15:34,4 -1986,Farm Expert 2019 for Nintendo Switch,,status-playable,playable,2020-07-09 21:42:57,1 -1987,Super Monkey Ball: Banana Blitz HD - 0100B2A00E1E0000,0100B2A00E1E0000,status-playable;online-broken,playable,2022-09-16 13:16:25,2 -1988,Yuri - 0100FC900963E000,0100FC900963E000,status-playable,playable,2021-06-11 13:08:50,2 -1989,Vampyr - 01000BD00CE64000,01000BD00CE64000,status-playable;nvdec;UE4,playable,2022-09-16 22:15:51,4 -1990,Spirit Roots,,nvdec;status-playable,playable,2020-07-10 13:33:32,1 -1991,Resident Evil 5 - 010018100CD46000,010018100CD46000,status-playable;nvdec,playable,2024-02-18 17:15:29,6 -1992,RESIDENT EVIL 6 - 01002A000CD48000,01002A000CD48000,status-playable;nvdec,playable,2022-09-15 14:31:47,5 -1993,The Big Journey - 010089600E66A000,010089600E66A000,status-playable,playable,2022-09-16 14:03:08,2 -1994,Sky Gamblers: Storm Raiders 2 - 010068200E96E000,010068200E96E000,gpu;status-ingame,ingame,2022-09-13 12:24:04,2 -1995,Door Kickers: Action Squad - 01005ED00CD70000,01005ED00CD70000,status-playable;online-broken;ldn-broken,playable,2022-09-13 16:28:53,2 -1996,Agony,,UE4;crash;status-boots,boots,2020-07-10 16:21:18,1 -1997,Remothered: Tormented Fathers - 01001F100E8AE000,01001F100E8AE000,status-playable;nvdec;UE4,playable,2022-10-19 23:26:50,4 -1998,Biped - 010053B0117F8000,010053B0117F8000,status-playable;nvdec,playable,2022-10-01 13:32:58,2 -1999,Clash Force - 01005ED0107F4000,01005ED0107F4000,status-playable,playable,2022-10-01 23:45:48,2 -2000,Truck & Logistics Simulator - 0100F2100AA5C000,0100F2100AA5C000,status-playable,playable,2021-06-11 13:29:08,3 -2001,Collar X Malice - 010083E00F40E000,010083E00F40E000,status-playable;nvdec,playable,2022-10-02 11:51:56,3 -2002,TORICKY-S - 01007AF011732000,01007AF011732000,deadlock;status-menus,menus,2021-11-25 8:53:36,3 -2003,The Wanderer: Frankenstein's Creature,,status-playable,playable,2020-07-11 12:49:51,1 -2004,PRINCESS MAKER -FAERY TALES COME TRUE-,,,,2020-07-11 16:09:47,1 -2005,Princess Maker Go!Go! Princess,,,,2020-07-11 16:35:31,1 -2006,Paradox Soul,,,,2020-07-11 17:20:44,1 -2007,Diabolic - 0100F73011456000,0100F73011456000,status-playable,playable,2021-06-11 14:45:08,2 -2008,UBERMOSH:BLACK,,,,2020-07-11 17:42:34,1 -2009,Journey to the Savage Planet - 01008B60117EC000,01008B60117EC000,status-playable;nvdec;UE4;ldn-untested,playable,2022-10-02 18:48:12,2 -2010,Viviette - 010037900CB1C000,010037900CB1C000,status-playable,playable,2021-06-11 15:33:40,2 -2011,the StoryTale - 0100858010DC4000,0100858010DC4000,status-playable,playable,2022-09-03 13:00:25,5 -2012,Ghost Grab 3000,,status-playable,playable,2020-07-11 18:09:52,1 -2013,SEGA AGES Shinobi,,,,2020-07-11 18:17:27,1 -2014,eCrossminton,,status-playable,playable,2020-07-11 18:24:27,1 -2015,Dangerous Relationship,,,,2020-07-11 18:39:45,1 -2016,Indie Darling Bundle Vol. 3 - 01004DE011076000,01004DE011076000,status-playable,playable,2022-10-02 13:01:57,2 -2017,Murder by Numbers,,,,2020-07-11 19:12:19,1 -2018,BUSTAFELLOWS,,nvdec;status-playable,playable,2020-10-17 20:04:41,5 -2019,Love Letter from Thief X - 0100D36011AD4000,0100D36011AD4000,gpu;status-ingame;nvdec,ingame,2023-11-14 3:55:31,7 -2020,Escape Game Fort Boyard,,status-playable,playable,2020-07-12 12:45:43,1 -2021,SEGA AGES Gain Ground - 01001E600AF08000,01001E600AF08000,online;status-playable,playable,2021-05-05 16:16:27,3 -2022,The Wardrobe: Even Better Edition - 01008B200FC6C000,01008B200FC6C000,status-playable,playable,2022-09-16 19:14:55,2 -2023,SEGA AGES Wonder Boy: Monster Land - 01001E700AC60000,01001E700AC60000,online;status-playable,playable,2021-05-05 16:28:25,3 -2024,SEGA AGES Columns II: A Voyage Through Time,,,,2020-07-12 13:38:50,1 -2025,Zenith - 0100AAC00E692000,0100AAC00E692000,status-playable,playable,2022-09-17 9:57:02,3 -2026,Jumanji,,UE4;crash;status-boots,boots,2020-07-12 13:52:25,1 -2027,SEGA AGES Ichidant-R,,,,2020-07-12 13:54:29,1 -2028,STURMWIND EX - 0100C5500E7AE000,0100C5500E7AE000,audio;32-bit;status-playable,playable,2022-09-16 12:01:39,7 -2029,SEGA AGES Alex Kidd in Miracle World - 0100A8900AF04000,0100A8900AF04000,online;status-playable,playable,2021-05-05 16:35:47,3 -2030,The Lord of the Rings: Adventure Card Game - 010085A00C5E8000,010085A00C5E8000,status-menus;online-broken,menus,2022-09-16 15:19:32,2 -2031,Breeder Homegrown: Director's Cut,,,,2020-07-12 14:54:02,1 -2032,StarCrossed,,,,2020-07-12 15:15:22,1 -2033,The Legend of Dark Witch,,status-playable,playable,2020-07-12 15:18:33,1 -2034,One-Way Ticket,,,,2020-07-12 15:36:25,1 -2035,Ships - 01000E800FCB4000,01000E800FCB4000,status-playable,playable,2021-06-11 16:14:37,2 -2036,My Bewitching Perfume,,,,2020-07-12 15:55:15,1 -2037,Black and White Bushido,,,,2020-07-12 16:12:16,1 -2038,REKT,,online;status-playable,playable,2020-09-28 12:33:56,2 -2039,Nirvana Pilot Yume - 010020901088A000,010020901088A000,status-playable,playable,2022-10-29 11:49:49,1 -2040,Detective Jinguji Saburo Prism of Eyes,,status-playable,playable,2020-10-02 21:54:41,3 -2041,Harvest Moon: Mad Dash,,,,2020-07-12 20:37:50,1 -2042,Worse Than Death - 010037500C4DE000,010037500C4DE000,status-playable,playable,2021-06-11 16:05:40,2 -2043,Bad Dream: Coma - 01000CB00D094000,01000CB00D094000,deadlock;status-boots,boots,2023-08-03 0:54:18,2 -2044,Chou no Doku Hana no Kusari: Taishou Irokoi Ibun,,gpu;nvdec;status-ingame,ingame,2020-09-28 17:58:04,3 -2045,MODEL Debut #nicola,,,,2020-07-13 11:21:44,1 -2046,Chameleon,,,,2020-07-13 12:06:20,1 -2047,Gunka o haita neko,,gpu;nvdec;status-ingame,ingame,2020-08-25 12:37:56,2 -2048,Genso maneju,,,,2020-07-13 14:14:09,1 -2049,Coffee Talk,,status-playable,playable,2020-08-10 9:48:44,2 -2050,Labyrinth of the Witch,,status-playable,playable,2020-11-01 14:42:37,2 -2051,Ritual: Crown of Horns - 010042500FABA000,010042500FABA000,status-playable,playable,2021-01-26 16:01:47,2 -2052,THE GRISAIA TRILOGY - 01003b300e4aa000,01003b300e4aa000,status-playable,playable,2021-01-31 15:53:59,2 -2053,Perseverance,,status-playable,playable,2020-07-13 18:48:27,1 -2054,SEGA AGES Fantasy Zone,,,,2020-07-13 19:33:23,1 -2056,SEGA AGES Thunder Force AC,,,,2020-07-13 19:50:34,1 -2057,SEGA AGES Puyo Puyo 2,,,,2020-07-13 20:15:04,1 -2058,GRISAIA PHANTOM TRIGGER 01&02 - 01009D7011B02000,01009D7011B02000,status-playable;nvdec,playable,2022-12-04 21:16:06,3 -2059,Paper Dolls Original,,UE4;crash;status-boots,boots,2020-07-13 20:26:21,1 -2060,"STAY COOL, KOBAYASHI-SAN! A RIVER RANSOM STORY - 0100B61009C60000",0100B61009C60000,status-playable,playable,2021-01-26 17:37:28,2 -2061, SEGA AGES G-LOC AIR BATTLE,,,,2020-07-13 20:42:40,1 -2062,Think of the Children - 0100F2300A5DA000,0100F2300A5DA000,deadlock;status-menus,menus,2021-11-23 9:04:45,2 -2063,OTOKOMIZU,,status-playable,playable,2020-07-13 21:00:44,1 -2064,Puchikon 4 Smile BASIC,,,,2020-07-13 21:18:15,1 -2065,Neverlast,,slow;status-ingame,ingame,2020-07-13 23:55:19,1 -2066,MONKEY BARRELS - 0100FBD00ED24000,0100FBD00ED24000,status-playable,playable,2022-09-14 17:28:52,2 -2067,Ghost Parade,,status-playable,playable,2020-07-14 0:43:54,1 -2068,Hopping girl KOHANE Jumping Kingdom: Princess of the Black Rabbit - 010087800EE5A000,010087800EE5A000,status-boots;crash,boots,2023-02-19 0:51:21,2 -2069,OMG Zombies! - 01006DB00D970000,01006DB00D970000,32-bit;status-playable,playable,2021-04-12 18:04:45,5 -2070,Evan's Remains,,,,2020-07-14 5:56:25,1 -2071,Working Zombies,,,,2020-07-14 6:30:55,1 -2072,Saboteur II: Avenging Angel,,Needs Update;cpu;crash;status-nothing,nothing,2021-01-26 14:47:37,2 -2073,Quell Zen - 0100492012378000,0100492012378000,gpu;status-ingame,ingame,2021-06-11 15:59:53,2 -2074,The Touryst - 0100C3300D8C4000,0100C3300D8C4000,status-ingame;crash,ingame,2023-08-22 1:32:38,9 -2075,SMASHING THE BATTLE - 01002AA00C974000,01002AA00C974000,status-playable,playable,2021-06-11 15:53:57,2 -2076,Him & Her,,,,2020-07-14 8:09:57,1 -2077,Speed Brawl,,slow;status-playable,playable,2020-09-18 22:08:16,2 -2078,River City Melee Mach!! - 0100B2100767C000,0100B2100767C000,status-playable;online-broken,playable,2022-09-20 20:51:57,2 -2079,Please The Gods,,,,2020-07-14 10:10:27,1 -2080,One Person Story,,status-playable,playable,2020-07-14 11:51:02,1 -2081,Mary Skelter 2 - 01003DE00C95E000,01003DE00C95E000,status-ingame;crash;regression,ingame,2023-09-12 7:37:28,11 -2082,NecroWorm,,,,2020-07-14 12:15:16,1 -2083,Juicy Realm - 0100C7600F654000,0100C7600F654000,status-playable,playable,2023-02-21 19:16:20,5 -2084,Grizzland,,,,2020-07-14 12:28:03,1 -2085,Garfield Kart Furious Racing - 010061E00E8BE000,010061E00E8BE000,status-playable;ldn-works;loader-allocator,playable,2022-09-13 21:40:25,3 -2086,Close to the Sun - 0100B7200DAC6000,0100B7200DAC6000,status-boots;crash;nvdec;UE4,boots,2021-11-04 9:19:41,3 -2087,Xeno Crisis,,,,2020-07-14 12:46:55,1 -2088,Boreal Blade - 01008E500AFF6000,01008E500AFF6000,gpu;ldn-untested;online;status-ingame,ingame,2021-06-11 15:37:14,2 -2089,Animus: Harbinger - 0100E5A00FD38000,0100E5A00FD38000,status-playable,playable,2022-09-13 22:09:20,2 -2090,DEADBOLT,,,,2020-07-14 13:20:01,1 -2091,Headsnatchers,,UE4;crash;status-menus,menus,2020-07-14 13:29:14,1 -2092,DOUBLE DRAGON Ⅲ: The Sacred Stones - 01001AD00E49A000,01001AD00E49A000,online;status-playable,playable,2021-06-11 15:41:44,2 -2093,911 Operator Deluxe Edition,,status-playable,playable,2020-07-14 13:57:44,1 -2094,Disney Tsum Tsum Festival,,crash;status-menus,menus,2020-07-14 14:05:28,1 -2095,JUST DANCE 2020 - 0100DDB00DB38000,0100DDB00DB38000,status-playable,playable,2022-01-24 13:31:57,6 -2096,A Street Cat's Tale,,,,2020-07-14 14:10:13,1 -2097,Real Heroes: Firefighter - 010048600CC16000,010048600CC16000,status-playable,playable,2022-09-20 18:18:44,2 -2098,The Savior's Gang - 01002BA00C7CE000,01002BA00C7CE000,gpu;status-ingame;nvdec;UE4,ingame,2022-09-21 12:37:48,4 -2099,KATANA KAMI: A Way of the Samurai Story - 0100F9800EDFA000,0100F9800EDFA000,slow;status-playable,playable,2022-04-09 10:40:16,5 -2100,Toon War - 01009EA00E2B8000,01009EA00E2B8000,status-playable,playable,2021-06-11 16:41:53,2 -2101,2048 CAT,,,,2020-07-14 14:44:29,1 -2102,Tick Tock: A Tale for Two,,status-menus,menus,2020-07-14 14:49:38,1 -2103,HexON,,,,2020-07-14 14:54:27,1 -2104,Ancient Rush 2,,UE4;crash;status-menus,menus,2020-07-14 14:58:47,1 -2105,Under Night In-Birth Exe:Late[cl-r],,,,2020-07-14 15:06:07,1 -2106,Circuits - 01008FA00D686000,01008FA00D686000,status-playable,playable,2022-09-19 11:52:50,2 -2107,Breathing Fear,,status-playable,playable,2020-07-14 15:12:29,1 -2108,KAMINAZO Memories from the future,,,,2020-07-14 15:22:45,1 -2109,Big Pharma,,status-playable,playable,2020-07-14 15:27:30,1 -2110,Amoeba Battle - Microscopic RTS Action - 010041D00DEB2000,010041D00DEB2000,status-playable,playable,2021-05-06 13:33:41,2 -2111,Assassin's Creed The Rebel Collection - 010044700DEB0000,010044700DEB0000,gpu;status-ingame,ingame,2024-05-19 7:58:56,5 -2112,Defenders of Ekron - Definitive Edition - 01008BB00F824000,01008BB00F824000,status-playable,playable,2021-06-11 16:31:03,2 -2113,Hellmut: The Badass from Hell,,,,2020-07-14 15:56:49,1 -2114,Alien: Isolation - 010075D00E8BA000,010075D00E8BA000,status-playable;nvdec;vulkan-backend-bug,playable,2022-09-17 11:48:41,4 -2115,Immortal Planet - 01007BC00E55A000,01007BC00E55A000,status-playable,playable,2022-09-20 13:40:43,3 -2116,inbento,,,,2020-07-14 16:09:57,1 -2117,Ding Dong XL,,status-playable,playable,2020-07-14 16:13:19,1 -2118,KUUKIYOMI 2: Consider It More! - New Era - 010037500F282000,010037500F282000,status-nothing;crash;Needs Update,nothing,2021-11-02 9:34:40,4 -2119, KUUKIYOMI: Consider It!,,,,2020-07-14 16:21:36,1 -2120,MADORIS R,,,,2020-07-14 16:34:22,1 -2121,Kairobotica - 0100D5F00EC52000,0100D5F00EC52000,status-playable,playable,2021-05-06 12:17:56,3 -2122,Bouncy Bob 2,,status-playable,playable,2020-07-14 16:51:53,1 -2123,Grab the Bottle,,status-playable,playable,2020-07-14 17:06:41,1 -2124,Red Bow - 0100CF600FF7A000,0100CF600FF7A000,services;status-ingame,ingame,2021-11-29 3:51:34,2 -2125,Pocket Mini Golf,,,,2020-07-14 22:13:35,1 -2126,Must Dash Amigos - 0100F6000EAA8000,0100F6000EAA8000,status-playable,playable,2022-09-20 16:45:56,2 -2127,EarthNight - 0100A2E00BB0C000,0100A2E00BB0C000,status-playable,playable,2022-09-19 21:02:20,2 -2128,Baobabs Mauseoleum Ep 1: Ovnifagos Don't Eat Flamingos,,status-playable,playable,2020-07-15 5:06:29,1 -2129,Bloo Kid 2 - 010055900FADA000,010055900FADA000,status-playable,playable,2024-05-01 17:16:57,7 -2130,Narcos: Rise of the Cartels - 010072B00BDDE000,010072B00BDDE000,UE4;crash;nvdec;status-boots,boots,2021-03-22 13:18:47,2 -2131,PUSH THE CRATE - 010016400F07E000,010016400F07E000,status-playable;nvdec;UE4,playable,2022-09-15 13:28:41,3 -2132,Bee Simulator,,UE4;crash;status-boots,boots,2020-07-15 12:13:13,1 -2133,Where the Bees Make Honey,,status-playable,playable,2020-07-15 12:40:49,1 -2134,The Eyes of Ara - 0100B5900DFB2000,0100B5900DFB2000,status-playable,playable,2022-09-16 14:44:06,2 -2135,The Unicorn Princess - 010064E00ECBC000,010064E00ECBC000,status-playable,playable,2022-09-16 16:20:56,2 -2136,Sword of the Guardian,,status-playable,playable,2020-07-16 12:24:39,1 -2137,Waifu Uncovered - 0100B130119D0000,0100B130119D0000,status-ingame;crash,ingame,2023-02-27 1:17:46,8 -2138,Paper Mario The Origami King - 0100A3900C3E2000,0100A3900C3E2000,audio;status-playable;Needs Update,playable,2024-08-09 18:27:40,31 -2139,Touhou Spell Bubble,,status-playable,playable,2020-10-18 11:43:43,4 -2140,Crysis Remastered - 0100E66010ADE000,0100E66010ADE000,status-menus;nvdec,menus,2024-08-13 5:23:24,13 -2141,Helltaker,,,,2020-07-23 21:16:43,1 -2142,Shadow Blade Reload - 0100D5500DA94000,0100D5500DA94000,nvdec;status-playable,playable,2021-06-11 18:40:43,2 -2143,The Bunker - 01001B40086E2000,01001B40086E2000,status-playable;nvdec,playable,2022-09-16 14:24:05,2 -2144,War Tech Fighters - 010049500DE56000,010049500DE56000,status-playable;nvdec,playable,2022-09-16 22:29:31,2 -2145,Real Drift Racing,,status-playable,playable,2020-07-25 14:31:31,1 -2146,Phantaruk - 0100DDD00C0EA000,0100DDD00C0EA000,status-playable,playable,2021-06-11 18:09:54,2 -2148,Omensight: Definitive Edition,,UE4;crash;nvdec;status-ingame,ingame,2020-07-26 1:45:14,1 -2149,Phantom Doctrine - 010096F00E5B0000,010096F00E5B0000,status-playable;UE4,playable,2022-09-15 10:51:50,3 -2150,Monster Bugs Eat People,,status-playable,playable,2020-07-26 2:05:34,1 -2151,Machi Knights Blood bagos - 0100F2400D434000,0100F2400D434000,status-playable;nvdec;UE4,playable,2022-09-14 15:08:04,3 -2152,Offroad Racing - 01003CD00E8BC000,01003CD00E8BC000,status-playable;online-broken;UE4,playable,2022-09-14 18:53:22,3 -2154,Puzzle Book,,status-playable,playable,2020-09-28 13:26:01,2 -2155,SUSHI REVERSI - 01005AB01119C000,01005AB01119C000,status-playable,playable,2021-06-11 19:26:58,2 -2156,Strike Force - War on Terror - 010039100DACC000,010039100DACC000,status-menus;crash;Needs Update,menus,2021-11-24 8:08:20,3 -2157,Mr Blaster - 0100D3300F110000,0100D3300F110000,status-playable,playable,2022-09-14 17:56:24,2 -2158,Lust for Darkness,,nvdec;status-playable,playable,2020-07-26 12:09:15,1 -2159,Legrand Legacy: Tale of the Fatebounds,,nvdec;status-playable,playable,2020-07-26 12:27:36,1 -2160,Hardway Party,,status-playable,playable,2020-07-26 12:35:07,1 -2161,Earthfall: Alien Horde - 0100DFC00E472000,0100DFC00E472000,status-playable;nvdec;UE4;ldn-untested,playable,2022-09-13 17:32:37,3 -2162,Collidalot - 010030800BC36000,010030800BC36000,status-playable;nvdec,playable,2022-09-13 14:09:27,4 -2163,Miniature - The Story Puzzle - 010039200EC66000,010039200EC66000,status-playable;UE4,playable,2022-09-14 17:18:50,3 -2164,MEANDERS - 0100EEF00CBC0000,0100EEF00CBC0000,UE4;gpu;status-ingame,ingame,2021-06-11 19:19:33,2 -2165,Isoland,,status-playable,playable,2020-07-26 13:48:16,1 -2166,Fishing Star World Tour - 0100DEB00ACE2000,0100DEB00ACE2000,status-playable,playable,2022-09-13 19:08:51,5 -2167,Isoland 2: Ashes of Time,,status-playable,playable,2020-07-26 14:29:05,1 -2168,Golazo - 010013800F0A4000,010013800F0A4000,status-playable,playable,2022-09-13 21:58:37,2 -2169,Castle of No Escape 2 - 0100F5500FA0E000,0100F5500FA0E000,status-playable,playable,2022-09-13 13:51:42,2 -2170,Guess The Word,,status-playable,playable,2020-07-26 21:34:25,1 -2171,Black Future '88 - 010049000B69E000,010049000B69E000,status-playable;nvdec,playable,2022-09-13 11:24:37,2 -2172,The Childs Sight - 010066800E9F8000,010066800E9F8000,status-playable,playable,2021-06-11 19:04:56,2 -2173,Asterix & Obelix XXL3: The Crystal Menhir - 010081500EA1E000,010081500EA1E000,gpu;status-ingame;nvdec;regression,ingame,2022-11-28 14:19:23,4 -2174,Go! Fish Go!,,status-playable,playable,2020-07-27 13:52:28,1 -2175,Amnesia: Collection - 01003CC00D0BE000,01003CC00D0BE000,status-playable,playable,2022-10-04 13:36:15,4 -2176,Ages of Mages: the Last Keeper - 0100E4700E040000,0100E4700E040000,status-playable;vulkan-backend-bug,playable,2022-10-04 11:44:05,3 -2177,Worlds of Magic: Planar Conquest - 010000301025A000,010000301025A000,status-playable,playable,2021-06-12 12:51:28,2 -2178,Hang the Kings,,status-playable,playable,2020-07-28 22:56:59,1 -2179,Super Dungeon Tactics - 010023100B19A000,010023100B19A000,status-playable,playable,2022-10-06 17:40:40,2 -2180,Five Nights at Freddy's: Sister Location - 01003B200E440000,01003B200E440000,status-playable,playable,2023-10-06 9:00:58,5 -2181,Ice Cream Surfer,,status-playable,playable,2020-07-29 12:04:07,1 -2182,Demon's Rise,,status-playable,playable,2020-07-29 12:26:27,1 -2183,A Ch'ti Bundle - 010096A00CC80000,010096A00CC80000,status-playable;nvdec,playable,2022-10-04 12:48:44,2 -2184,Overwatch®: Legendary Edition - 0100F8600E21E000,0100F8600E21E000,deadlock;status-boots,boots,2022-09-14 20:22:22,2 -2185,Zombieland: Double Tap - Road Trip - 01000E5800D32C000,01000E5800D32C00,status-playable,playable,2022-09-17 10:08:45,2 -2186,Children of Morta - 01002DE00C250000,01002DE00C250000,gpu;status-ingame;nvdec,ingame,2022-09-13 17:48:47,3 -2187,Story of a Gladiator,,status-playable,playable,2020-07-29 15:08:18,1 -2188,SD GUNDAM G GENERATION CROSS RAYS - 010055700CEA8000,010055700CEA8000,status-playable;nvdec,playable,2022-09-15 20:58:44,5 -2189,Neverwinter Nights: Enhanced Edition - 010013700DA4A000,010013700DA4A000,gpu;status-menus;nvdec,menus,2024-09-30 2:59:19,7 -2190,Race With Ryan,,UE4;gpu;nvdec;slow;status-ingame,ingame,2020-11-16 4:35:33,2 -2191,StrikeForce Kitty,,nvdec;status-playable,playable,2020-07-29 16:22:15,1 -2192,Later Daters,,status-playable,playable,2020-07-29 16:35:45,1 -2193,Pine,,slow;status-ingame,ingame,2020-07-29 16:57:39,1 -2194,Japanese Rail Sim: Journey to Kyoto,,nvdec;status-playable,playable,2020-07-29 17:14:21,1 -2195,FoxyLand,,status-playable,playable,2020-07-29 20:55:20,1 -2196,Five Nights at Freddy's - 0100B6200D8D2000,0100B6200D8D2000,status-playable,playable,2022-09-13 19:26:36,3 -2197,Five Nights at Freddy's 2 - 01004EB00E43A000,01004EB00E43A000,status-playable,playable,2023-02-08 15:48:24,8 -2198,Five Nights at Freddy's 3 - 010056100E43C000,010056100E43C000,status-playable,playable,2022-09-13 20:58:07,2 -2199,Five Nights at Freddy's 4 - 010083800E43E000,010083800E43E000,status-playable,playable,2023-08-19 7:28:03,4 -2200,Widget Satchel - 0100C7800CA06000,0100C7800CA06000,status-playable,playable,2022-09-16 22:41:07,3 -2201,Nyan Cat: Lost in Space - 010049F00EC30000,010049F00EC30000,online;status-playable,playable,2021-06-12 13:22:03,4 -2202,Blacksad: Under the Skin - 010032000EA2C000,010032000EA2C000,status-playable,playable,2022-09-13 11:38:04,2 -2203,Mini Trains,,status-playable,playable,2020-07-29 23:06:20,1 -2204,Call of Juarez: Gunslinger - 0100B4700BFC6000,0100B4700BFC6000,gpu;status-ingame;nvdec,ingame,2022-09-17 16:49:46,3 -2205,Locomotion,,,,2020-07-31 8:17:09,1 -2206,Headspun,,status-playable,playable,2020-07-31 19:46:47,1 -2207,Exception - 0100F2D00C7DE000,0100F2D00C7DE000,status-playable;online-broken,playable,2022-09-20 12:47:10,2 -2208,Dead End Job - 01004C500BD40000,01004C500BD40000,status-playable;nvdec,playable,2022-09-19 12:48:44,2 -2209,Event Horizon: Space Defense,,status-playable,playable,2020-07-31 20:31:24,1 -2210,SAMURAI SHODOWN,,UE4;crash;nvdec;status-menus,menus,2020-09-06 2:17:00,2 -2211,BQM BlockQuest Maker,,online;status-playable,playable,2020-07-31 20:56:50,1 -2212,Hard West - 0100ECE00D13E000,0100ECE00D13E000,status-nothing;regression,nothing,2022-02-09 7:45:56,2 -2213,Override: Mech City Brawl - Super Charged Mega Edition - 01008A700F7EE000,01008A700F7EE000,status-playable;nvdec;online-broken;UE4,playable,2022-09-20 17:33:32,2 -2214,Where Are My Friends? - 0100FDB0092B4000,0100FDB0092B4000,status-playable,playable,2022-09-21 14:39:26,2 -2215,"Final Light, The Prison",,status-playable,playable,2020-07-31 21:48:44,1 -2216,Citizens of Space - 0100E4200D84E000,0100E4200D84E000,gpu;status-boots,boots,2023-10-22 6:45:44,7 -2217,Adventures of Bertram Fiddle: Episode 1: A Dreadly Business - 01003B400A00A000,01003B400A00A000,status-playable;nvdec,playable,2022-09-17 11:07:56,4 -2218,Momonga Pinball Adventures - 01002CC00BC4C000,01002CC00BC4C000,status-playable,playable,2022-09-20 16:00:40,2 -2219,Suicide Guy: Sleepin' Deeply - 0100DE000C2E4000,0100DE000C2E4000,status-ingame;Needs More Attention,ingame,2022-09-20 23:45:25,2 -2220,"Warhammer 40,000: Mechanicus - 0100C6000EEA8000",0100C6000EEA8000,nvdec;status-playable,playable,2021-06-13 10:46:38,2 -2221,Caretaker - 0100DA70115E6000,0100DA70115E6000,status-playable,playable,2022-10-04 14:52:24,5 -2222,Once Upon A Coma,,nvdec;status-playable,playable,2020-08-01 12:09:39,1 -2223,Welcome to Hanwell,,UE4;crash;status-boots,boots,2020-08-03 11:54:57,1 -2224,Radical Rabbit Stew,,status-playable,playable,2020-08-03 12:02:56,1 -2225,We should talk.,,crash;status-nothing,nothing,2020-08-03 12:32:36,1 -2226,Get 10 Quest,,status-playable,playable,2020-08-03 12:48:39,1 -2227,Dongo Adventure - 010088B010DD2000,010088B010DD2000,status-playable,playable,2022-10-04 16:22:26,2 -2228,Singled Out,,online;status-playable,playable,2020-08-03 13:06:18,1 -2229,Never Breakup - 010039801093A000,010039801093A000,status-playable,playable,2022-10-05 16:12:12,2 -2230,Ashen - 010027B00E40E000,010027B00E40E000,status-playable;nvdec;online-broken;UE4,playable,2022-09-17 12:19:14,3 -2231,JDM Racing,,status-playable,playable,2020-08-03 17:02:37,1 -2232,Farabel,,status-playable,playable,2020-08-03 17:47:28,1 -2233,Hover - 0100F6800910A000,0100F6800910A000,status-playable;online-broken,playable,2022-09-20 12:54:46,2 -2234,DragoDino,,gpu;nvdec;status-ingame,ingame,2020-08-03 20:49:16,1 -2235,Rift Keeper - 0100AC600D898000,0100AC600D898000,status-playable,playable,2022-09-20 19:48:20,2 -2236,Melbits World - 01000FA010340000,01000FA010340000,status-menus;nvdec;online,menus,2021-11-26 13:51:22,2 -2237,60 Parsecs! - 010010100FF14000,010010100FF14000,status-playable,playable,2022-09-17 11:01:17,2 -2238,Warhammer Quest 2,,status-playable,playable,2020-08-04 15:28:03,1 -2239,Rescue Tale - 01003C400AD42000,01003C400AD42000,status-playable,playable,2022-09-20 18:40:18,2 -2240,Akuto,,status-playable,playable,2020-08-04 19:43:27,1 -2241,Demon Pit - 010084600F51C000,010084600F51C000,status-playable;nvdec,playable,2022-09-19 13:35:15,2 -2242,Regions of Ruin,,status-playable,playable,2020-08-05 11:38:58,1 -2243,Roombo: First Blood,,nvdec;status-playable,playable,2020-08-05 12:11:37,1 -2244,Mountain Rescue Simulator - 01009DB00D6E0000,01009DB00D6E0000,status-playable,playable,2022-09-20 16:36:48,2 -2245,Mad Games Tycoon - 010061E00EB1E000,010061E00EB1E000,status-playable,playable,2022-09-20 14:23:14,2 -2247,Down to Hell - 0100B6600FE06000,0100B6600FE06000,gpu;status-ingame;nvdec,ingame,2022-09-19 14:01:26,2 -2248,Funny Bunny Adventures,,status-playable,playable,2020-08-05 13:46:56,1 -2249,Crazy Zen Mini Golf,,status-playable,playable,2020-08-05 14:00:00,1 -2250,Drawngeon: Dungeons of Ink and Paper - 0100B7E0102E4000,0100B7E0102E4000,gpu;status-ingame,ingame,2022-09-19 15:41:25,4 -2251,Farming Simulator 20 - 0100EB600E914000,0100EB600E914000,nvdec;status-playable,playable,2021-06-13 10:52:44,2 -2252,DreamBall,,UE4;crash;gpu;status-ingame,ingame,2020-08-05 14:45:25,1 -2253,DEMON'S TILT - 0100BE800E6D8000,0100BE800E6D8000,status-playable,playable,2022-09-19 13:22:46,2 -2254,Heroland,,status-playable,playable,2020-08-05 15:35:39,1 -2255,Double Switch - 25th Anniversary Edition - 0100FC000EE10000,0100FC000EE10000,status-playable;nvdec,playable,2022-09-19 13:41:50,2 -2256,Ultimate Racing 2D,,status-playable,playable,2020-08-05 17:27:09,1 -2257,THOTH,,status-playable,playable,2020-08-05 18:35:28,1 -2258,SUPER ROBOT WARS X,,online;status-playable,playable,2020-08-05 19:18:51,1 -2259,Aborigenus,,status-playable,playable,2020-08-05 19:47:24,1 -2260,140,,status-playable,playable,2020-08-05 20:01:33,1 -2261,Goken,,status-playable,playable,2020-08-05 20:22:38,1 -2262,Maitetsu: Pure Station - 0100D9900F220000,0100D9900F220000,status-playable,playable,2022-09-20 15:12:49,2 -2263,Super Mega Space Blaster Special Turbo,,online;status-playable,playable,2020-08-06 12:13:25,1 -2264,Squidlit,,status-playable,playable,2020-08-06 12:38:32,1 -2265,Stories Untold - 010074400F6A8000,010074400F6A8000,status-playable;nvdec,playable,2022-12-22 1:08:46,2 -2266,Super Saurio Fly,,nvdec;status-playable,playable,2020-08-06 13:12:14,1 -2267,Hero Express,,nvdec;status-playable,playable,2020-08-06 13:23:43,1 -2268,Demolish & Build - 010099D00D1A4000,010099D00D1A4000,status-playable,playable,2021-06-13 15:27:26,2 -2269,Masquerada: Songs and Shadows - 0100113008262000,0100113008262000,status-playable,playable,2022-09-20 15:18:54,2 -2270,Dreaming Canvas - 010058B00F3C0000,010058B00F3C0000,UE4;gpu;status-ingame,ingame,2021-06-13 22:50:07,2 -2271,Time Tenshi,,,,2020-08-06 14:38:37,1 -2272,FoxyLand 2,,status-playable,playable,2020-08-06 14:41:30,1 -2273,Nicole - 0100A95012668000,0100A95012668000,status-playable;audout,playable,2022-10-05 16:41:44,3 -2274,Spiral Memoria -The Summer I Meet Myself-,,,,2020-08-06 15:19:11,1 -2275,"Warhammer 40,000: Space Wolf - 0100E5600D7B2000",0100E5600D7B2000,status-playable;online-broken,playable,2022-09-20 21:11:20,3 -2276,KukkoroDays - 010022801242C000,010022801242C000,status-menus;crash,menus,2021-11-25 8:52:56,4 -2277,Shadows 2: Perfidia,,status-playable,playable,2020-08-07 12:43:46,1 -2278,Murasame No Sword Breaker PV,,,,2020-08-07 12:54:21,1 -2279,Escape from Chernobyl - 0100FEF00F0AA000,0100FEF00F0AA000,status-boots;crash,boots,2022-09-19 21:36:58,2 -2280,198X,,status-playable,playable,2020-08-07 13:24:38,1 -2281,Orn: The Tiny Forest Sprite,,UE4;gpu;status-ingame,ingame,2020-08-07 14:25:30,1 -2282,Oddworld: Stranger's Wrath HD - 01002EA00ABBA000,01002EA00ABBA000,status-menus;crash;nvdec;loader-allocator,menus,2021-11-23 9:23:21,2 -2283,Just Glide,,status-playable,playable,2020-08-07 17:38:10,1 -2284,Ember - 010041A00FEC6000,010041A00FEC6000,status-playable;nvdec,playable,2022-09-19 21:16:11,3 -2285,Crazy Strike Bowling EX,,UE4;gpu;nvdec;status-ingame,ingame,2020-08-07 18:15:59,1 -2286,requesting accessibility in the main UI,,,,2020-08-08 0:09:05,1 -2287,Invisible Fist,,status-playable,playable,2020-08-08 13:25:52,1 -2288,Nicky: The Home Alone Golf Ball,,status-playable,playable,2020-08-08 13:45:39,1 -2289,KING OF FIGHTERS R-2,,,,2020-08-09 12:39:55,1 -2290,The Walking Dead: Season Two,,status-playable,playable,2020-08-09 12:57:06,1 -2291,"Yoru, tomosu",,,,2020-08-09 12:57:28,1 -2292,Zero Zero Zero Zero,,,,2020-08-09 13:14:58,1 -2293,Duke of Defense,,,,2020-08-09 13:34:52,1 -2294,Himno,,,,2020-08-09 13:51:57,1 -2295,The Walking Dead: A New Frontier - 010056E00B4F4000,010056E00B4F4000,status-playable,playable,2022-09-21 13:40:48,2 -2296,Cruel Bands Career,,,,2020-08-09 15:00:25,1 -2297,CARRION,,crash;status-nothing,nothing,2020-08-13 17:15:12,2 -2299,CODE SHIFTER,,status-playable,playable,2020-08-09 15:20:55,1 -2300,Ultra Hat Dimension - 01002D4012222000,01002D4012222000,services;audio;status-menus,menus,2021-11-18 9:05:20,2 -2301,Root Film,,,,2020-08-09 17:47:35,1 -2302,NAIRI: Tower of Shirin,,nvdec;status-playable,playable,2020-08-09 19:49:12,1 -2303,Panzer Paladin - 01004AE0108E0000,01004AE0108E0000,status-playable,playable,2021-05-05 18:26:00,2 -2304,Sinless,,nvdec;status-playable,playable,2020-08-09 20:18:55,1 -2305,Aviary Attorney: Definitive Edition,,status-playable,playable,2020-08-09 20:32:12,1 -2306,Lumini,,status-playable,playable,2020-08-09 20:45:09,1 -2308,Music Racer,,status-playable,playable,2020-08-10 8:51:23,1 -2309,Curious Cases,,status-playable,playable,2020-08-10 9:30:48,1 -2311,7th Sector,,nvdec;status-playable,playable,2020-08-10 14:22:14,1 -2312,Ash of Gods: Redemption,,deadlock;status-nothing,nothing,2020-08-10 18:08:32,1 -2313,The Turing Test - 0100EA100F516000,0100EA100F516000,status-playable;nvdec,playable,2022-09-21 13:24:07,2 -2314,The Town of Light - 010058000A576000,010058000A576000,gpu;status-playable,playable,2022-09-21 12:51:34,2 -2315,The Park,,UE4;crash;gpu;status-ingame,ingame,2020-12-18 12:50:07,2 -2316,Rogue Legacy,,status-playable,playable,2020-08-10 19:17:28,1 -2317,Nerved - 01008B0010160000,01008B0010160000,status-playable;UE4,playable,2022-09-20 17:14:03,3 -2318,Super Korotama - 010000D00F81A000,010000D00F81A000,status-playable,playable,2021-06-06 19:06:22,3 -2319,Mosaic,,status-playable,playable,2020-08-11 13:07:35,1 -2320,Pumped BMX Pro - 01009AE00B788000,01009AE00B788000,status-playable;nvdec;online-broken,playable,2022-09-20 17:40:50,2 -2321,The Dark Crystal,,status-playable,playable,2020-08-11 13:43:41,1 -2322,Ageless,,,,2020-08-11 13:52:24,1 -2323,EQQO - 0100E95010058000,0100E95010058000,UE4;nvdec;status-playable,playable,2021-06-13 23:10:51,3 -2324,LAST FIGHT - 01009E100BDD6000,01009E100BDD6000,status-playable,playable,2022-09-20 13:54:55,2 -2325,Neverending Nightmares - 0100F79012600000,0100F79012600000,crash;gpu;status-boots,boots,2021-04-24 1:43:35,2 -2326,Monster Jam Steel Titans - 010095C00F354000,010095C00F354000,status-menus;crash;nvdec;UE4,menus,2021-11-14 9:45:38,2 -2327,Star Story: The Horizon Escape,,status-playable,playable,2020-08-11 22:31:38,1 -2328,LOCO-SPORTS - 0100BA000FC9C000,0100BA000FC9C000,status-playable,playable,2022-09-20 14:09:30,2 -2329,Eclipse: Edge of Light,,status-playable,playable,2020-08-11 23:06:29,1 -2331,Psikyo Shooting Stars Alpha - 01007A200F2E2000,01007A200F2E2000,32-bit;status-playable,playable,2021-04-13 12:03:43,3 -2332,Monster Energy Supercross - The Official Videogame 3 - 010097800EA20000,010097800EA20000,UE4;audout;nvdec;online;status-playable,playable,2021-06-14 12:37:54,2 -2333,Musou Orochi 2 Ultimate,,crash;nvdec;status-boots,boots,2021-04-09 19:39:16,2 -2334,Alien Cruise,,status-playable,playable,2020-08-12 13:56:05,1 -2335,KUNAI - 010035A00DF62000,010035A00DF62000,status-playable;nvdec,playable,2022-09-20 13:48:34,2 -2336,Haunted Dungeons: Hyakki Castle,,status-playable,playable,2020-08-12 14:21:48,1 -2337,Tangledeep,,crash;status-boots,boots,2021-01-05 4:08:41,2 -2338,Azuran Tales: Trials,,status-playable,playable,2020-08-12 15:23:07,1 -2339,LOST ORBIT: Terminal Velocity - 010054600AC74000,010054600AC74000,status-playable,playable,2021-06-14 12:21:12,2 -2340,Monster Blast - 0100E2D0128E6000,0100E2D0128E6000,gpu;status-ingame,ingame,2023-09-02 20:02:32,3 -2341,Need a Packet?,,status-playable,playable,2020-08-12 16:09:01,1 -2342,Downwell - 010093D00C726000,010093D00C726000,status-playable,playable,2021-04-25 20:05:24,5 -2343,Dex,,nvdec;status-playable,playable,2020-08-12 16:48:12,1 -2345,Magicolors,,status-playable,playable,2020-08-12 18:39:11,1 -2346,Jisei: The First Case HD - 010038D011F08000,010038D011F08000,audio;status-playable,playable,2022-10-05 11:43:33,2 -2347,Mittelborg: City of Mages,,status-playable,playable,2020-08-12 19:58:06,1 -2348,Psikyo Shooting Stars Bravo - 0100D7400F2E4000,0100D7400F2E4000,32-bit;status-playable,playable,2021-06-14 12:09:07,4 -2349,STAB STAB STAB!,,,,2020-08-13 16:39:00,1 -2350,fault - milestone one,,nvdec;status-playable,playable,2021-03-24 10:41:49,2 -2351,Gerrrms,,status-playable,playable,2020-08-15 11:32:52,1 -2352,Aircraft Evolution - 0100E95011FDC000,0100E95011FDC000,nvdec;status-playable,playable,2021-06-14 13:30:18,2 -2353,Creaks,,status-playable,playable,2020-08-15 12:20:52,1 -2354,ARCADE FUZZ,,status-playable,playable,2020-08-15 12:37:36,1 -2355,Esports powerful pro yakyuu 2020 - 010073000FE18000,010073000FE18000,gpu;status-ingame;crash;Needs More Attention,ingame,2024-04-29 5:34:14,7 -2356,Arcade Archives ALPHA MISSION - 01005DD00BE08000,01005DD00BE08000,online;status-playable,playable,2021-04-15 9:20:43,2 -2357,Arcade Archives ALPINE SKI - 010083800DC70000,010083800DC70000,online;status-playable,playable,2021-04-15 9:28:46,2 -2358,Arcade Archives ARGUS - 010014F001DE2000,010014F001DE2000,online;status-playable,playable,2021-04-16 6:51:25,2 -2359,Arcade Archives Armed F - 010014F001DE2000,010014F001DE2000,online;status-playable,playable,2021-04-16 7:00:17,2 -2360,Arcade Archives ATHENA - 0100BEC00C7A2000,0100BEC00C7A2000,online;status-playable,playable,2021-04-16 7:10:12,2 -2361,Arcade Archives Atomic Robo-Kid - 0100426001DE4000,0100426001DE4000,online;status-playable,playable,2021-04-16 7:20:29,2 -2362,Arcade Archives BOMB JACK - 0100192009824000,0100192009824000,online;status-playable,playable,2021-04-16 9:48:26,2 -2363,Arcade Archives CLU CLU LAND - 0100EDC00E35A000,0100EDC00E35A000,online;status-playable,playable,2021-04-16 10:00:42,2 -2364,Arcade Archives EXCITEBIKE,,,,2020-08-19 12:08:03,1 -2365,Arcade Archives FRONT LINE - 0100496006EC8000,0100496006EC8000,online;status-playable,playable,2021-05-05 14:10:49,2 -2366,Arcade Archives ICE CLIMBER - 01007D200D3FC000,01007D200D3FC000,online;status-playable,playable,2021-05-05 14:18:34,2 -2367,Arcade Archives IKARI WARRIORS - 010049400C7A8000,010049400C7A8000,online;status-playable,playable,2021-05-05 14:24:46,2 -2368,Arcade Archives IMAGE FIGHT - 010008300C978000,010008300C978000,online;status-playable,playable,2021-05-05 14:31:21,2 -2369,Arcade Archives MOON CRESTA - 01000BE001DD8000,01000BE001DD8000,online;status-playable,playable,2021-05-05 14:39:29,2 -2370,Arcade Archives Ninja Spirit - 01002F300D2C6000,01002F300D2C6000,online;status-playable,playable,2021-05-05 14:45:31,2 -2371,Arcade Archives POOYAN - 0100A6E00D3F8000,0100A6E00D3F8000,online;status-playable,playable,2021-05-05 17:58:19,2 -2372,Arcade Archives PSYCHO SOLDIER - 01000D200C7A4000,01000D200C7A4000,online;status-playable,playable,2021-05-05 18:02:19,2 -2373,Arcade Archives ROAD FIGHTER - 0100FBA00E35C000,0100FBA00E35C000,online;status-playable,playable,2021-05-05 18:09:17,2 -2374,Arcade Archives ROUTE 16 - 010060000BF7C000,010060000BF7C000,online;status-playable,playable,2021-05-05 18:40:41,2 -2375,Arcade Archives Shusse Ozumo - 01007A4009834000,01007A4009834000,online;status-playable,playable,2021-05-05 17:52:25,2 -2376,Arcade Archives Solomon's Key - 01008C900982E000,01008C900982E000,online;status-playable,playable,2021-04-19 16:27:18,3 -2377,Arcade Archives TERRA FORCE - 0100348001DE6000,0100348001DE6000,online;status-playable,playable,2021-04-16 20:03:27,2 -2378,Arcade Archives THE NINJA WARRIORS - 0100DC000983A000,0100DC000983A000,online;slow;status-ingame,ingame,2021-04-16 19:54:56,2 -2379,Arcade Archives TIME PILOT - 0100AF300D2E8000,0100AF300D2E8000,online;status-playable,playable,2021-04-16 19:22:31,2 -2380,Arcade Archives URBAN CHAMPION - 010042200BE0C000,010042200BE0C000,online;status-playable,playable,2021-04-16 10:20:03,2 -2381,Arcade Archives WILD WESTERN - 01001B000D8B6000,01001B000D8B6000,online;status-playable,playable,2021-04-16 10:11:36,2 -2382,Arcade Archives GRADIUS,,,,2020-08-19 13:42:45,1 -2383,Evergate,,,,2020-08-19 22:28:07,1 -2384,Naught - 0100103011894000,0100103011894000,UE4;status-playable,playable,2021-04-26 13:31:45,2 -2385,Vitamin Connection ,,,,2020-08-19 23:18:42,1 -2386,Rock of Ages 3: Make & Break - 0100A1B00DB36000,0100A1B00DB36000,status-playable;UE4,playable,2022-10-06 12:18:29,2 -2387,Cubicity - 010040D011D04000,010040D011D04000,status-playable,playable,2021-06-14 14:19:51,1 -2389,Anima Gate of Memories: The Nameless Chronicles - 01007A400B3F8000,01007A400B3F8000,status-playable,playable,2021-06-14 14:33:06,1 -2392,Big Dipper - 0100A42011B28000,0100A42011B28000,status-playable,playable,2021-06-14 15:08:19,1 -2394,Dodo Peak - 01001770115C8000,01001770115C8000,status-playable;nvdec;UE4,playable,2022-10-04 16:13:05,1 -2395,Cube Creator X - 010001600D1E8000,010001600D1E8000,status-menus;crash,menus,2021-11-25 8:53:28,4 -2397,Raji An Ancient Epic,,UE4;gpu;nvdec;status-ingame,ingame,2020-12-16 10:05:25,1 -2402,Red Siren : Space Defense - 010045400D73E000,010045400D73E000,UE4;status-playable,playable,2021-04-25 21:21:29,2 -2403,Shanky: The Vegan's Nightmare - 01000C00CC10000,,status-playable,playable,2021-01-26 15:03:55,1 -2407,Cricket 19 - 010022D00D4F0000,010022D00D4F0000,gpu;status-ingame,ingame,2021-06-14 14:56:07,4 -2408,Florence,,status-playable,playable,2020-09-05 1:22:30,4 -2409,Banner of the Maid - 010013C010C5C000,010013C010C5C000,status-playable,playable,2021-06-14 15:23:37,1 -2416,Super Loop Drive - 01003E300FCAE000,01003E300FCAE000,status-playable;nvdec;UE4,playable,2022-09-22 10:58:05,4 -2446,Buried Stars,,status-playable,playable,2020-09-07 14:11:58,2 -2447,FINAL FANTASY CRYSTAL CHRONICLES Remastered Edition - 0100CE4010AAC000,0100CE4010AAC000,status-playable,playable,2023-04-02 23:39:12,7 -2448,Go All Out - 01000C800FADC000,01000C800FADC000,status-playable;online-broken,playable,2022-09-21 19:16:34,3 -2449,This Strange Realm of Mine,,status-playable,playable,2020-08-28 12:07:24,1 -2450,Silent World,,status-playable,playable,2020-08-28 13:45:13,1 -2451,Alder's Blood,,status-playable,playable,2020-08-28 15:15:23,1 -2452,Red Death,,status-playable,playable,2020-08-30 13:07:37,1 -2453,3000th Duel - 0100FB5010D2E000,0100FB5010D2E000,status-playable,playable,2022-09-21 17:12:08,3 -2454,Rise of Insanity,,status-playable,playable,2020-08-30 15:42:14,1 -2455,Darksiders Genesis - 0100F2300D4BA000,0100F2300D4BA000,status-playable;nvdec;online-broken;UE4;ldn-broken,playable,2022-09-21 18:06:25,3 -2456,Space Blaze,,status-playable,playable,2020-08-30 16:18:05,1 -2457,Two Point Hospital - 010031200E044000,010031200E044000,status-ingame;crash;nvdec,ingame,2022-09-22 11:22:23,5 -2459,Is It Wrong to Try to Pick Up Girls in a Dungeon? Infinite Combate,,status-playable,playable,2020-08-31 13:52:21,1 -2460,Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz,,status-playable,playable,2020-08-31 14:17:42,1 -2461,Cat Girl Without Salad: Amuse-Bouche - 010076000C86E000,010076000C86E000,status-playable,playable,2022-09-03 13:01:47,4 -2462,moon,,,,2020-08-31 15:46:23,1 -2463,Lines XL,,status-playable,playable,2020-08-31 17:48:23,1 -2464,Knightin'+,,status-playable,playable,2020-08-31 18:18:21,1 -2465,King Lucas - 0100E6B00FFBA000,0100E6B00FFBA000,status-playable,playable,2022-09-21 19:43:23,2 -2466,Skulls of the Shogun: Bone-a-fide Edition,,status-playable,playable,2020-08-31 18:58:12,1 -2467,SEGA AGES SONIC THE HEDGEHOG 2 - 01000D200C614000,01000D200C614000,status-playable,playable,2022-09-21 20:26:35,2 -2468,Devil May Cry 3 Special Edition - 01007B600D5BC000,01007B600D5BC000,status-playable;nvdec,playable,2024-07-08 12:33:23,8 -2469,Double Dragon & Kunio-Kun: Retro Brawler Bundle,,status-playable,playable,2020-09-01 12:48:46,1 -2470,Lost Horizon,,status-playable,playable,2020-09-01 13:41:22,1 -2471,Unlock the King,,status-playable,playable,2020-09-01 13:58:27,1 -2472,Vasilis,,status-playable,playable,2020-09-01 15:05:35,1 -2473,Mathland,,status-playable,playable,2020-09-01 15:40:06,1 -2474,MEGAMAN ZERO/ZX LEGACY COLLECTION - 010025C00D410000,010025C00D410000,status-playable,playable,2021-06-14 16:17:32,2 -2475,Afterparty - 0100DB100BBCE000,0100DB100BBCE000,status-playable,playable,2022-09-22 12:23:19,2 -2476,Tiny Racer - 01005D0011A40000,01005D0011A40000,status-playable,playable,2022-10-07 11:13:03,2 -2477,Skully - 0100D7B011654000,0100D7B011654000,status-playable;nvdec;UE4,playable,2022-10-06 13:52:59,3 -2478,Megadimension Neptunia VII,,32-bit;nvdec;status-playable,playable,2020-12-17 20:56:03,2 -2479,Kingdom Rush - 0100A280121F6000,0100A280121F6000,status-nothing;32-bit;crash;Needs More Attention,nothing,2022-10-05 12:34:00,5 -2480,Cubers: Arena - 010082E00F1CE000,010082E00F1CE000,status-playable;nvdec;UE4,playable,2022-10-04 16:05:40,3 -2481,Air Missions: HIND,,status-playable,playable,2020-12-13 10:16:45,2 -2482,Fairy Tail - 0100CF900FA3E000,0100CF900FA3E000,status-playable;nvdec,playable,2022-10-04 23:00:32,2 -2484,Sentinels of Freedom - 01009E500D29C000,01009E500D29C000,status-playable,playable,2021-06-14 16:42:19,2 -2485,SAMURAI SHOWDOWN NEOGEO COLLECTION - 0100F6800F48E000,0100F6800F48E000,nvdec;status-playable,playable,2021-06-14 17:12:56,3 -2486,Rugby Challenge 4 - 010009B00D33C000,010009B00D33C000,slow;status-playable;online-broken;UE4,playable,2022-10-06 12:45:53,3 -2487,Neon Abyss - 0100BAB01113A000,0100BAB01113A000,status-playable,playable,2022-10-05 15:59:44,2 -2488,Max & The Book of Chaos,,status-playable,playable,2020-09-02 12:24:43,1 -2489,Family Mysteries: Poisonous Promises - 0100034012606000,0100034012606000,audio;status-menus;crash,menus,2021-11-26 12:35:06,2 -2490,Interrogation: You will be deceived - 010041501005E000,010041501005E000,status-playable,playable,2022-10-05 11:40:10,2 -2491,Instant Sports Summer Games,,gpu;status-menus,menus,2020-09-02 13:39:28,1 -2492,AvoCuddle,,status-playable,playable,2020-09-02 14:50:13,1 -2493,Be-A Walker,,slow;status-ingame,ingame,2020-09-02 15:00:31,1 -2494,"Soccer, Tactics & Glory - 010095C00F9DE000",010095C00F9DE000,gpu;status-ingame,ingame,2022-09-26 17:15:58,3 -2495,The Great Perhaps,,status-playable,playable,2020-09-02 15:57:04,1 -2496,Volta-X - 0100A7900E79C000,0100A7900E79C000,status-playable;online-broken,playable,2022-10-07 12:20:51,1 -2497,Hero Hours Contract,,,,2020-09-03 3:13:22,1 -2498,Starlit Adventures Golden Stars,,status-playable,playable,2020-11-21 12:14:43,3 -2499,Superliminal,,status-playable,playable,2020-09-03 13:20:50,1 -2500,Robozarro,,status-playable,playable,2020-09-03 13:33:40,1 -2501,QuietMansion2,,status-playable,playable,2020-09-03 14:59:35,1 -2502,DISTRAINT 2,,status-playable,playable,2020-09-03 16:08:12,1 -2503,Bloodstained: Curse of the Moon 2,,status-playable,playable,2020-09-04 10:56:27,1 -2504,Deadly Premonition 2 - 0100BAC011928000,0100BAC011928000,status-playable,playable,2021-06-15 14:12:36,2 -2505,CrossCode - 01003D90058FC000,01003D90058FC000,status-playable,playable,2024-02-17 10:23:19,6 -2506,Metro: Last Light Redux - 0100F0400E850000,0100F0400E850000,slow;status-ingame;nvdec;vulkan-backend-bug,ingame,2023-11-01 11:53:52,6 -2507,Soul Axiom Rebooted,,nvdec;slow;status-ingame,ingame,2020-09-04 12:41:01,1 -2508,Portal Dogs,,status-playable,playable,2020-09-04 12:55:46,1 -2509,Bucket Knight,,crash;status-ingame,ingame,2020-09-04 13:11:24,1 -2510,Arcade Archives LIFE FORCE,,status-playable,playable,2020-09-04 13:26:25,1 -2511,Stela - 01002DE01043E000,01002DE01043E000,UE4;status-playable,playable,2021-06-15 13:28:34,4 -2512,7 Billion Humans,,32-bit;status-playable,playable,2020-12-17 21:04:58,4 -2513,Rack N Ruin,,status-playable,playable,2020-09-04 15:20:26,1 -2515,Piffle,,,,2020-09-06 0:07:53,1 -2516,BATTOJUTSU,,,,2020-09-06 0:07:58,1 -2517,Super Battle Cards,,,,2020-09-06 0:08:01,1 -2518,Hayfever - 0100EA900FB2C000,0100EA900FB2C000,status-playable;loader-allocator,playable,2022-09-22 17:35:41,6 -2519,Save Koch - 0100C8300FA90000,0100C8300FA90000,status-playable,playable,2022-09-26 17:06:56,2 -2520,MY HERO ONE'S JUSTICE 2,,UE4;gpu;nvdec;status-ingame,ingame,2020-12-18 14:08:47,2 -2521,Deep Diving Adventures - 010026800FA88000,010026800FA88000,status-playable,playable,2022-09-22 16:43:37,2 -2522,Trials of Mana Demo - 0100E1D00FBDE000,0100E1D00FBDE000,status-playable;nvdec;UE4;demo;vulkan-backend-bug,playable,2022-09-26 18:00:02,2 -2523,Sky Racket,,status-playable,playable,2020-09-07 12:22:24,1 -2524,LA-MULANA 1 & 2 - 0100E5D00F4AE000,0100E5D00F4AE000,status-playable,playable,2022-09-22 17:56:36,4 -2525,Exit the Gungeon - 0100DD30110CC000,0100DD30110CC000,status-playable,playable,2022-09-22 17:04:43,2 -2529,Super Mario 3D All-Stars - 010049900F546000,010049900F546000,services-horizon;slow;status-ingame;vulkan;amd-vendor-bug,ingame,2024-05-07 2:38:16,16 -2530,Cupid Parasite - 0100F7E00DFC8000,0100F7E00DFC8000,gpu;status-ingame,ingame,2023-08-21 5:52:36,3 -2531,Toraware no Paruma Deluxe Edition,,,,2020-09-20 9:34:41,1 -2533,Uta no☆Prince-sama♪ Repeat Love - 010024200E00A000,010024200E00A000,status-playable;nvdec,playable,2022-12-09 9:21:51,2 -2534,Clock Zero ~Shuuen no Ichibyou~ Devote - 01008C100C572000,01008C100C572000,status-playable;nvdec,playable,2022-12-04 22:19:14,3 -2535,Dear Magi - Mahou Shounen Gakka -,,status-playable,playable,2020-11-22 16:45:16,4 -2536,Reine des Fleurs,,cpu;crash;status-boots,boots,2020-09-27 18:50:39,2 -2537,Kaeru Batake DE Tsukamaete,,,,2020-09-20 17:06:57,1 -2538,Koi no Hanasaku Hyakkaen,,32-bit;gpu;nvdec;status-ingame,ingame,2020-10-03 14:17:10,4 -2539,Brothers Conflict: Precious Baby,,,,2020-09-20 19:13:24,1 -2540,Dairoku: Ayakashimori - 010061300DF48000,010061300DF48000,status-nothing;Needs Update;loader-allocator,nothing,2021-11-30 5:09:38,4 -2542,Yunohana Spring! - Mellow Times -,,audio;crash;status-menus,menus,2020-09-27 19:27:40,2 -2543,Nil Admirari no Tenbin: Irodori Nadeshiko,,,,2020-09-21 15:59:26,1 -2544,Shiritsu Berubara Gakuen ~Versailles no Bara Re*imagination~,,cpu;crash;status-boots,boots,2020-09-27 19:01:25,2 -2545,BEAST Darling! ~Kemomimi Danshi to Himitsu no Ryou~,,crash;status-menus,menus,2020-10-04 6:12:08,3 -2546,Kin'iro no Corda Octave,,status-playable,playable,2020-09-22 13:23:12,3 -2547,Moujuutsukai to Ouji-sama ~Flower & Snow~,,,,2020-09-22 17:22:03,1 -2548,Spooky Ghosts Dot Com - 0100C6100D75E000,0100C6100D75E000,status-playable,playable,2021-06-15 15:16:11,3 -2549,NBA 2K21 - 0100E24011D1E000,0100E24011D1E000,gpu;status-boots,boots,2022-10-05 15:31:51,2 -2550,Commander Keen in Keen Dreams - 0100C4D00D16A000,0100C4D00D16A000,gpu;status-ingame,ingame,2022-08-04 20:34:20,8 -2551,Minecraft - 0100D71004694000,0100D71004694000,status-ingame;crash;ldn-broken,ingame,2024-09-29 12:08:59,21 -2552,PGA TOUR 2K21 - 010053401147C000,010053401147C000,deadlock;status-ingame;nvdec,ingame,2022-10-05 21:53:50,4 -2553,The Executioner - 0100C2E0129A6000,0100C2E0129A6000,nvdec;status-playable,playable,2021-01-23 0:31:28,2 -2554,Tamiku - 010008A0128C4000,010008A0128C4000,gpu;status-ingame,ingame,2021-06-15 20:06:55,2 -2555,"Shinobi, Koi Utsutsu",,,,2020-09-23 11:04:27,1 -2556,Hades - 0100535012974000,0100535012974000,status-playable;vulkan,playable,2022-10-05 10:45:21,11 -2557,Wolfenstein: Youngblood - 01003BD00CAAE000,01003BD00CAAE000,status-boots;online-broken,boots,2024-07-12 23:49:20,4 -2558,Taimumari: Complete Edition - 010040A00EA26000,010040A00EA26000,status-playable,playable,2022-12-06 13:34:49,4 -2559,Sangoku Rensenki ~Otome no Heihou!~,,gpu;nvdec;status-ingame,ingame,2020-10-17 19:13:14,3 -2560,Norn9 ~Norn + Nonette~ LOFN - 01001A500AD6A000,01001A500AD6A000,status-playable;nvdec;vulkan-backend-bug,playable,2022-12-09 9:29:16,4 -2561,Disaster Report 4: Summer Memories - 010020700E2A2000,010020700E2A2000,status-playable;nvdec;UE4,playable,2022-09-27 19:41:31,5 -2562,No Straight Roads - 01009F3011004000,01009F3011004000,status-playable;nvdec,playable,2022-10-05 17:01:38,4 -2563,Gnosia - 01008EF013A7C000,01008EF013A7C000,status-playable,playable,2021-04-05 17:20:30,5 -2564,Shin Hayarigami 1 and 2 Pack,,,,2020-09-25 15:56:19,1 -2566,Gothic Murder: Adventure That Changes Destiny,,deadlock;status-ingame;crash,ingame,2022-09-30 23:16:53,2 -2567,Grand Theft Auto 3 - 05B1D2ABD3D30000,05B1D2ABD3D30000,services;status-nothing;crash;homebrew,nothing,2023-05-01 22:01:58,3 -2568,Super Mario 64 - 054507E0B7552000,054507E0B7552000,status-ingame;homebrew,ingame,2024-03-20 16:57:27,2 -2569,Satsujin Tantei Jack the Ripper - 0100A4700BC98000,0100A4700BC98000,status-playable,playable,2021-06-21 16:32:54,3 -2570,Yoshiwara Higanbana Kuon no Chigiri,,nvdec;status-playable,playable,2020-10-17 19:14:46,3 -2571,Katakoi Contrast - collection of branch - - 01007FD00DB20000,01007FD00DB20000,status-playable;nvdec,playable,2022-12-09 9:41:26,2 -2572,Tlicolity Eyes - twinkle showtime - - 010019500DB1E000,010019500DB1E000,gpu;status-boots,boots,2021-05-29 19:43:44,2 -2573,Omega Vampire,,nvdec;status-playable,playable,2020-10-17 19:15:35,3 -2574,Iris School of Wizardry - Vinculum Hearts - - 0100AD300B786000,0100AD300B786000,status-playable,playable,2022-12-05 13:11:15,2 -2575,"Meiji Katsugeki Haikara Ryuuseigumi - Seibai Shimaseu, Yonaoshi Kagyou - 0100EA100DF92000",0100EA100DF92000,32-bit;status-playable;nvdec,playable,2022-12-05 13:19:12,3 -2576,Undead Darlings ~no cure for love~,,,,2020-09-30 8:34:06,1 -2577,LEGO Marvel Super Heroes 2 - 0100D3A00409E000,0100D3A00409E000,status-nothing;crash,nothing,2023-03-02 17:12:33,5 -2578,RollerCoaster Tycoon 3: Complete Edition - 01004900113F8000,01004900113F8000,32-bit;status-playable,playable,2022-10-17 14:18:01,4 -2579,R.B.I. Baseball 20 - 010061400E7D4000,010061400E7D4000,status-playable,playable,2021-06-15 21:16:29,2 -2580,BATTLESLOTHS,,status-playable,playable,2020-10-03 8:32:22,1 -2581,Explosive Jake - 01009B7010B42000,01009B7010B42000,status-boots;crash,boots,2021-11-03 7:48:32,4 -2582,Dezatopia - 0100AFC00E06A000,0100AFC00E06A000,online;status-playable,playable,2021-06-15 21:06:11,2 -2583,Wordify,,status-playable,playable,2020-10-03 9:01:07,1 -2585,Wizards: Wand of Epicosity - 0100C7600E77E000,0100C7600E77E000,status-playable,playable,2022-10-07 12:32:06,2 -2586,Titan Glory - 0100FE801185E000,0100FE801185E000,status-boots,boots,2022-10-07 11:36:40,3 -2587,Soccer Pinball - 0100B5000E05C000,0100B5000E05C000,UE4;gpu;status-ingame,ingame,2021-06-15 20:56:51,2 -2588,Steam Tactics - 0100AE100DAFA000,0100AE100DAFA000,status-playable,playable,2022-10-06 16:53:45,2 -2589,Trover Saves the Universe,,UE4;crash;status-nothing,nothing,2020-10-03 10:25:27,1 -2590,112th Seed,,status-playable,playable,2020-10-03 10:32:38,1 -2591,Spitlings - 010042700E3FC000,010042700E3FC000,status-playable;online-broken,playable,2022-10-06 16:42:39,3 -2592,Unlock the King 2 - 0100A3E011CB0000,0100A3E011CB0000,status-playable,playable,2021-06-15 20:43:55,3 -2593,Preventive Strike - 010009300D278000,010009300D278000,status-playable;nvdec,playable,2022-10-06 10:55:51,2 -2594,Hidden - 01004E800F03C000,01004E800F03C000,slow;status-ingame,ingame,2022-10-05 10:56:53,2 -2595,Pulstario - 0100861012474000,0100861012474000,status-playable,playable,2022-10-06 11:02:01,2 -2596,Frontline Zed,,status-playable,playable,2020-10-03 12:55:59,1 -2597,bayala - the game - 0100194010422000,0100194010422000,status-playable,playable,2022-10-04 14:09:25,2 -2598,City Bus Driving Simulator - 01005E501284E000,01005E501284E000,status-playable,playable,2021-06-15 21:25:59,2 -2599,Memory Lane - 010062F011E7C000,010062F011E7C000,status-playable;UE4,playable,2022-10-05 14:31:03,3 -2600,Minefield - 0100B7500F756000,0100B7500F756000,status-playable,playable,2022-10-05 15:03:29,2 -2601,Double Kick Heroes,,gpu;status-ingame,ingame,2020-10-03 14:33:59,1 -2602,Little Shopping,,status-playable,playable,2020-10-03 16:34:35,1 -2603,Car Quest - 01007BD00AE70000,01007BD00AE70000,deadlock;status-menus,menus,2021-11-18 8:59:18,2 -2604,RogueCube - 0100C7300C0EC000,0100C7300C0EC000,status-playable,playable,2021-06-16 12:16:42,2 -2605,Timber Tennis Versus,,online;status-playable,playable,2020-10-03 17:07:15,1 -2606,Swimsanity! - 010049D00C8B0000,010049D00C8B0000,status-menus;online,menus,2021-11-26 14:27:16,2 -2607,Dininho Adventures,,status-playable,playable,2020-10-03 17:25:51,1 -2608,Rhythm of the Gods,,UE4;crash;status-nothing,nothing,2020-10-03 17:39:59,1 -2609,"Rainbows, toilets & unicorns",,nvdec;status-playable,playable,2020-10-03 18:08:18,1 -2610,Super Mario Bros. 35 - 0100277011F1A000,0100277011F1A000,status-menus;online-broken,menus,2022-08-07 16:27:25,2 -2611,Bohemian Killing - 0100AD1010CCE000,0100AD1010CCE000,status-playable;vulkan-backend-bug,playable,2022-09-26 22:41:37,2 -2612,Colorgrid,,status-playable,playable,2020-10-04 1:50:52,1 -2613,Dogurai,,status-playable,playable,2020-10-04 2:40:16,1 -2614,The Legend of Heroes: Trails of Cold Steel III Demo - 01009B101044C000,01009B101044C000,demo;nvdec;status-playable,playable,2021-04-23 1:07:32,2 -2615,Star Wars Jedi Knight: Jedi Academy - 01008CA00FAE8000,01008CA00FAE8000,gpu;status-boots,boots,2021-06-16 12:35:30,2 -2616,Panzer Dragoon: Remake,,status-playable,playable,2020-10-04 4:03:55,1 -2617,Blackmoor2 - 0100A0A00E660000,0100A0A00E660000,status-playable;online-broken,playable,2022-09-26 20:26:34,3 -2618,CHAOS CODE -NEW SIGN OF CATASTROPHE- - 01007600115CE000,01007600115CE000,status-boots;crash;nvdec,boots,2022-04-04 12:24:21,3 -2619,Saints Row IV - 01008D100D43E000,01008D100D43E000,status-playable;ldn-untested;LAN,playable,2023-12-04 18:33:37,5 -2620,Troubleshooter,,UE4;crash;status-nothing,nothing,2020-10-04 13:46:50,1 -2621,Children of Zodiarcs,,status-playable,playable,2020-10-04 14:23:33,1 -2622,VtM Coteries of New York,,status-playable,playable,2020-10-04 14:55:22,1 -2623,Grand Guilds - 010038100D436000,010038100D436000,UE4;nvdec;status-playable,playable,2021-04-26 12:49:05,2 -2624,Best Friend Forever,,,,2020-10-04 15:41:42,1 -2625,Copperbell,,status-playable,playable,2020-10-04 15:54:36,1 -2626,Deep Sky Derelicts Definitive Edition - 0100C3E00D68E000,0100C3E00D68E000,status-playable,playable,2022-09-27 11:21:08,3 -2627,Wanba Warriors,,status-playable,playable,2020-10-04 17:56:22,1 -2628,Mist Hunter - 010059200CC40000,010059200CC40000,status-playable,playable,2021-06-16 13:58:58,2 -2629,Shinsekai Into the Depths - 01004EE0104F6000,01004EE0104F6000,status-playable,playable,2022-09-28 14:07:51,2 -2630,ELEA: Paradigm Shift,,UE4;crash;status-nothing,nothing,2020-10-04 19:07:43,1 -2631,Harukanaru Toki no Naka De 7,,,,2020-10-05 10:12:41,1 -2632,Saiaku Naru Saiyaku Ningen ni Sasagu,,,,2020-10-05 10:26:45,1 -2633,planetarian HD ~the reverie of a little planet~,,status-playable,playable,2020-10-17 20:26:20,3 -2634,Hypnospace Outlaw - 0100959010466000,0100959010466000,status-ingame;nvdec,ingame,2023-08-02 22:46:49,2 -2635,Dei Gratia no Rashinban - 010071C00CBA4000,010071C00CBA4000,crash;status-nothing,nothing,2021-07-13 2:25:32,2 -2636,Rogue Company,,,,2020-10-05 17:52:10,1 -2637,MX Nitro - 0100161009E5C000,0100161009E5C000,status-playable,playable,2022-09-27 22:34:33,2 -2638,Wanderjahr TryAgainOrWalkAway,,status-playable,playable,2020-12-16 9:46:04,2 -2639,Pooplers,,status-playable,playable,2020-11-02 11:52:10,2 -2640,Beyond Enemy Lines: Essentials - 0100B8F00DACA000,0100B8F00DACA000,status-playable;nvdec;UE4,playable,2022-09-26 19:48:16,4 -2642,Lust for Darkness: Dawn Edition - 0100F0B00F68E000,0100F0B00F68E000,nvdec;status-playable,playable,2021-06-16 13:47:46,2 -2643,Nerdook Bundle Vol. 1,,gpu;slow;status-ingame,ingame,2020-10-07 14:27:10,1 -2644,Indie Puzzle Bundle Vol 1 - 0100A2101107C000,0100A2101107C000,status-playable,playable,2022-09-27 22:23:21,2 -2645,Wurroom,,status-playable,playable,2020-10-07 22:46:21,1 -2646,Valley - 0100E0E00B108000,0100E0E00B108000,status-playable;nvdec,playable,2022-09-28 19:27:58,2 -2647,FIFA 21 Legacy Edition - 01000A001171A000,01000A001171A000,gpu;status-ingame;online-broken,ingame,2023-12-11 22:10:19,7 -2648,Hotline Miami Collection - 0100D0E00E51E000,0100D0E00E51E000,status-playable;nvdec,playable,2022-09-09 16:41:19,4 -2649,QuakespasmNX,,status-nothing;crash;homebrew,nothing,2022-07-23 19:28:07,3 -2650,nxquake2,,services;status-nothing;crash;homebrew,nothing,2022-08-04 23:14:04,5 -2651,ONE PIECE: PIRATE WARRIORS 4 - 01008FE00E2F6000,01008FE00E2F6000,status-playable;online-broken;ldn-untested,playable,2022-09-27 22:55:46,2 -2652,The Complex - 01004170113D4000,01004170113D4000,status-playable;nvdec,playable,2022-09-28 14:35:41,3 -2653,Gigantosaurus The Game - 01002C400E526000,01002C400E526000,status-playable;UE4,playable,2022-09-27 21:20:00,4 -2654,TY the Tasmanian Tiger,,32-bit;crash;nvdec;status-menus,menus,2020-12-17 21:15:00,2 -2655,Speaking Simulator,,status-playable,playable,2020-10-08 13:00:39,1 -2656,Pikmin 3 Deluxe Demo - 01001CB0106F8000,01001CB0106F8000,32-bit;crash;demo;gpu;status-ingame,ingame,2021-06-16 18:38:07,2 -2657,Rascal Fight,,status-playable,playable,2020-10-08 13:23:30,1 -2658,Rain City,,status-playable,playable,2020-10-08 16:59:03,1 -2660,Fury Unleashed Demo,,status-playable,playable,2020-10-08 20:09:21,1 -2661,Bridge 3,,status-playable,playable,2020-10-08 20:47:24,1 -2662,RMX Real Motocross,,status-playable,playable,2020-10-08 21:06:15,1 -2663,Birthday of Midnight,,,,2020-10-09 9:43:24,1 -2664,WARSAW,,,,2020-10-09 10:31:40,1 -2665,Candy Raid: The Factory,,,,2020-10-09 10:43:39,1 -2666,World for Two,,,,2020-10-09 12:37:07,1 -2667,Voxel Pirates - 0100AFA011068000,0100AFA011068000,status-playable,playable,2022-09-28 22:55:02,2 -2668,Voxel Galaxy - 0100B1E0100A4000,0100B1E0100A4000,status-playable,playable,2022-09-28 22:45:02,2 -2669,Journey of the Broken Circle,,,,2020-10-09 13:24:52,1 -2670,Daggerhood,,,,2020-10-09 13:54:02,1 -2671,Flipon,,,,2020-10-09 14:23:40,1 -2672,Nevaeh - 0100C20012A54000,0100C20012A54000,gpu;nvdec;status-ingame,ingame,2021-06-16 17:29:03,2 -2673,Bookbound Brigade,,status-playable,playable,2020-10-09 14:30:29,1 -2674,Aery - Sky Castle - 010018E012914000,010018E012914000,status-playable,playable,2022-10-21 17:58:49,3 -2675,Nickelodeon Kart Racers 2 Grand Prix,,,,2020-10-09 14:54:17,1 -2676,Issho ni Asobo Koupen chan,,,,2020-10-09 14:57:27,1 -2677,Kono Subarashii Sekai ni Shukufuku o Kono Yokubo no Isho ni Choai o - 010016C011AAA000,010016C011AAA000,status-playable,playable,2023-04-26 9:51:08,4 -2678,Kono Subarashii Sekai ni Shukufuku wo! Kurenai Densetsu,,,,2020-10-09 15:06:00,1 -2679,Hide & Dance!,,,,2020-10-09 15:10:06,1 -2680,Pro Yakyuu Famista 2020,,,,2020-10-09 15:21:25,1 -2681,METAL MAX Xeno Reborn - 0100E8F00F6BE000,0100E8F00F6BE000,status-playable,playable,2022-12-05 15:33:53,2 -2682,Ikenfell - 010040900AF46000,010040900AF46000,status-playable,playable,2021-06-16 17:18:44,3 -2683,Depixtion,,status-playable,playable,2020-10-10 18:52:37,1 -2684,GREEN The Life Algorithm - 0100DFE00F002000,0100DFE00F002000,status-playable,playable,2022-09-27 21:37:13,2 -2685,Served! A gourmet race - 0100B2C00E4DA000,0100B2C00E4DA000,status-playable;nvdec,playable,2022-09-28 12:46:00,2 -2686,OTTTD,,slow;status-ingame,ingame,2020-10-10 19:31:07,1 -2687,Metamorphosis - 010055200E87E000,010055200E87E000,UE4;audout;gpu;nvdec;status-ingame,ingame,2021-06-16 16:18:11,3 -2688,Zero Strain - 01004B001058C000,01004B001058C000,services;status-menus;UE4,menus,2021-11-10 7:48:32,2 -2689,Time Carnage - 01004C500B698000,01004C500B698000,status-playable,playable,2021-06-16 17:57:28,2 -2690,Spiritfarer - 0100BD400DC52000,0100BD400DC52000,gpu;status-ingame,ingame,2022-10-06 16:31:38,2 -2691,Street Power Soccer,,UE4;crash;status-boots,boots,2020-11-21 12:28:57,2 -2692,OZMAFIA!! -vivace-,,,,2020-10-12 10:24:45,1 -2693,Road to Guangdong,,slow;status-playable,playable,2020-10-12 12:15:32,1 -2694,Prehistoric Dude,,gpu;status-ingame,ingame,2020-10-12 12:38:48,1 -2695,MIND Path to Thalamus - 0100F5700C9A8000,0100F5700C9A8000,UE4;status-playable,playable,2021-06-16 17:37:25,2 -2696,Manifold Garden,,status-playable,playable,2020-10-13 20:27:13,1 -2697,INMOST - 0100F1401161E000,0100F1401161E000,status-playable,playable,2022-10-05 11:27:40,3 -2698,G.I. Joe Operation Blackout,,UE4;crash;status-boots,boots,2020-11-21 12:37:44,2 -2699,Petal Crash,,,,2020-10-14 7:58:02,1 -2700,Helheim Hassle,,status-playable,playable,2020-10-14 11:38:36,1 -2701,FuzzBall - 010067600F1A0000,010067600F1A0000,crash;status-nothing,nothing,2021-03-29 20:13:21,2 -2702,Fight Crab - 01006980127F0000,01006980127F0000,status-playable;online-broken;ldn-untested,playable,2022-10-05 10:24:04,3 -2703,Faeria - 010069100DB08000,010069100DB08000,status-menus;nvdec;online-broken,menus,2022-10-04 16:44:41,2 -2704,Escape from Tethys,,status-playable,playable,2020-10-14 22:38:25,1 -2705,Chinese Parents - 010046F012A04000,010046F012A04000,status-playable,playable,2021-04-08 12:56:41,3 -2706,Boomerang Fu - 010081A00EE62000,010081A00EE62000,status-playable,playable,2024-07-28 1:12:41,4 -2707,Bite the Bullet,,status-playable,playable,2020-10-14 23:10:11,1 -2708,Pretty Princess Magical Coordinate,,status-playable,playable,2020-10-15 11:43:41,2 -2709,A Short Hike,,status-playable,playable,2020-10-15 0:19:58,1 -2710,HYPERCHARGE: Unboxed - 0100A8B00F0B4000,0100A8B00F0B4000,status-playable;nvdec;online-broken;UE4;ldn-untested,playable,2022-09-27 21:52:39,3 -2711,Anima: Gate of Memories - 0100706005B6A000,0100706005B6A000,nvdec;status-playable,playable,2021-06-16 18:13:18,2 -2712,Perky Little Things - 01005CD012DC0000,01005CD012DC0000,status-boots;crash;vulkan,boots,2024-08-04 7:22:46,9 -2713,Save Your Nuts - 010091000F72C000,010091000F72C000,status-playable;nvdec;online-broken;UE4,playable,2022-09-27 23:12:02,4 -2714,Unknown Fate,,slow;status-ingame,ingame,2020-10-15 12:27:42,1 -2715,Picross S4,,status-playable,playable,2020-10-15 12:33:46,1 -2716,The Station - 010007F00AF56000,010007F00AF56000,status-playable,playable,2022-09-28 18:15:27,2 -2717,Liege Dragon - 010041F0128AE000,010041F0128AE000,status-playable,playable,2022-10-12 10:27:03,2 -2718,G-MODE Archives 06 The strongest ever Julia Miyamoto,,status-playable,playable,2020-10-15 13:06:26,1 -2719,Prinny: Can I Really Be the Hero? - 01007A0011878000,01007A0011878000,32-bit;status-playable;nvdec,playable,2023-10-22 9:25:25,5 -2720,"Prinny 2: Dawn of Operation Panties, Dood! - 01008FA01187A000",01008FA01187A000,32-bit;status-playable,playable,2022-10-13 12:42:58,4 -2721,Convoy,,status-playable,playable,2020-10-15 14:43:50,1 -2722,Fight of Animals,,online;status-playable,playable,2020-10-15 15:08:28,1 -2723,Strawberry Vinegar - 0100D7E011C64000,0100D7E011C64000,status-playable;nvdec,playable,2022-12-05 16:25:40,3 -2724,Inside Grass: A little adventure,,status-playable,playable,2020-10-15 15:26:27,1 -2725,Battle Princess Madelyn Royal Edition - 0100A7500DF64000,0100A7500DF64000,status-playable,playable,2022-09-26 19:14:49,2 -2726,A HERO AND A GARDEN - 01009E1011EC4000,01009E1011EC4000,status-playable,playable,2022-12-05 16:37:47,2 -2727,Trials of Mana - 0100D7800E9E0000,0100D7800E9E0000,status-playable;UE4,playable,2022-09-30 21:50:37,3 -2728,Ultimate Fishing Simulator - 010048901295C000,010048901295C000,status-playable,playable,2021-06-16 18:38:23,2 -2729,Struggling,,status-playable,playable,2020-10-15 20:37:03,1 -2730,Samurai Jack Battle Through Time - 01006C600E46E000,01006C600E46E000,status-playable;nvdec;UE4,playable,2022-10-06 13:33:59,2 -2731,House Flipper - 0100CAE00EB02000,0100CAE00EB02000,status-playable,playable,2021-06-16 18:28:32,2 -2732,Aokana - Four Rhythms Across the Blue - 0100990011866000,0100990011866000,status-playable,playable,2022-10-04 13:50:26,2 -2733,NARUTO SHIPPUDEN: ULTIMATE NINJA STORM 4 ROAD TO BORUTO - 010084D00CF5E000,010084D00CF5E000,status-playable,playable,2024-06-29 13:04:22,10 -2734,Where Angels Cry - 010027D011C9C000,010027D011C9C000,gpu;status-ingame;nvdec,ingame,2022-09-30 22:24:47,3 -2735,The Copper Canyon Dixie Dash - 01000F20102AC000,01000F20102AC000,status-playable;UE4,playable,2022-09-29 11:42:29,3 -2736,Cloudpunk,,,,2020-10-15 23:03:55,1 -2737,MotoGP 20 - 01001FA00FBBC000,01001FA00FBBC000,status-playable;ldn-untested,playable,2022-09-29 17:58:01,3 -2738,Little Town Hero,,status-playable,playable,2020-10-15 23:28:48,1 -2739,Broken Lines,,status-playable,playable,2020-10-16 0:01:37,1 -2740,Crown Trick - 0100059012BAE000,0100059012BAE000,status-playable,playable,2021-06-16 19:36:29,2 -2741,Archaica: Path of LightInd,,crash;status-nothing,nothing,2020-10-16 13:22:26,1 -2742,Indivisible - 01001D3003FDE000,01001D3003FDE000,status-playable;nvdec,playable,2022-09-29 15:20:57,2 -2743,Thy Sword - 01000AC011588000,01000AC011588000,status-ingame;crash,ingame,2022-09-30 16:43:14,3 -2744,Spirit of the North - 01005E101122E000,01005E101122E000,status-playable;UE4,playable,2022-09-30 11:40:47,3 -2745,Megabyte Punch,,status-playable,playable,2020-10-16 14:07:18,1 -2746,Book of Demons - 01007A200F452000,01007A200F452000,status-playable,playable,2022-09-29 12:03:43,5 -2747,80's OVERDRIVE,,status-playable,playable,2020-10-16 14:33:32,1 -2748,My Universe My Baby,,,,2020-10-17 14:04:01,1 -2749,Mario Kart Live: Home Circuit - 0100ED100BA3A000,0100ED100BA3A000,services;status-nothing;crash;Needs More Attention,nothing,2022-12-07 22:36:52,2 -2750,STONE - 010070D00F640000,010070D00F640000,status-playable;UE4,playable,2022-09-30 11:53:32,2 -2751,Newt One,,status-playable,playable,2020-10-17 21:21:48,1 -2752,Zoids Wild Blast Unleashed - 010069C0123D8000,010069C0123D8000,status-playable;nvdec,playable,2022-10-15 11:26:59,2 -2753,KINGDOM HEARTS Melody of Memory DEMO,,,,2020-10-18 14:57:30,1 -2754,Escape First,,status-playable,playable,2020-10-20 22:46:53,1 -2755,If My Heart Had Wings - 01001AC00ED72000,01001AC00ED72000,status-playable,playable,2022-09-29 14:54:57,2 -2756,Felix the Reaper,,nvdec;status-playable,playable,2020-10-20 23:43:03,1 -2757,War-Torn Dreams,,crash;status-nothing,nothing,2020-10-21 11:36:16,1 -2758,TT Isle of Man 2 - 010000400F582000,010000400F582000,gpu;status-ingame;nvdec;online-broken,ingame,2022-09-30 22:13:05,3 -2759,Kholat - 0100F680116A2000,0100F680116A2000,UE4;nvdec;status-playable,playable,2021-06-17 11:52:48,2 -2760,Dungeon of the Endless - 010034300F0E2000,010034300F0E2000,nvdec;status-playable,playable,2021-05-27 19:16:26,2 -2761,Gravity Rider Zero - 01002C2011828000,01002C2011828000,gpu;status-ingame;vulkan-backend-bug,ingame,2022-09-29 13:56:13,6 -2762,Oddworld: Munch's Oddysee - 0100BB500EE3C000,0100BB500EE3C000,gpu;nvdec;status-ingame,ingame,2021-06-17 12:11:50,2 -2763,Five Nights at Freddy's: Help Wanted - 0100F7901118C000,0100F7901118C000,status-playable;UE4,playable,2022-09-29 12:40:09,4 -2764,Gates of Hell,,slow;status-playable,playable,2020-10-22 12:44:26,1 -2765,Concept Destruction - 0100971011224000,0100971011224000,status-playable,playable,2022-09-29 12:28:56,2 -2766,Zenge,,status-playable,playable,2020-10-22 13:23:57,1 -2767,Water Balloon Mania,,status-playable,playable,2020-10-23 20:20:59,1 -2768,The Persistence - 010050101127C000,010050101127C000,nvdec;status-playable,playable,2021-06-06 19:15:40,2 -2769,The House of Da Vinci 2,,status-playable,playable,2020-10-23 20:47:17,1 -2770,The Experiment: Escape Room - 01006050114D4000,01006050114D4000,gpu;status-ingame,ingame,2022-09-30 13:20:35,3 -2771,Telling Lies,,status-playable,playable,2020-10-23 21:14:51,1 -2772,She Sees Red - 01000320110C2000,01000320110C2000,status-playable;nvdec,playable,2022-09-30 11:30:15,3 -2773,Golf With Your Friends - 01006FB00EBE0000,01006FB00EBE0000,status-playable;online-broken,playable,2022-09-29 12:55:11,2 -2774,Island Saver,,nvdec;status-playable,playable,2020-10-23 22:07:02,1 -2775,Devil May Cry 2 - 01007CF00D5BA000,01007CF00D5BA000,status-playable;nvdec,playable,2023-01-24 23:03:20,3 -2776,The Otterman Empire - 0100B0101265C000,0100B0101265C000,UE4;gpu;status-ingame,ingame,2021-06-17 12:27:15,2 -2777,SaGa SCARLET GRACE: AMBITIONS - 010003A00D0B4000,010003A00D0B4000,status-playable,playable,2022-10-06 13:20:31,3 -2778,REZ PLZ,,status-playable,playable,2020-10-24 13:26:12,1 -2779,Bossgard - 010076F00EBE4000,010076F00EBE4000,status-playable;online-broken,playable,2022-10-04 14:21:13,2 -2780,1993 Shenandoah,,status-playable,playable,2020-10-24 13:55:42,1 -2781,Ori and the Will of the Wisps - 01008DD013200000,01008DD013200000,status-playable,playable,2023-03-07 0:47:13,12 -2782,WWE 2K Battlegrounds - 010081700EDF4000,010081700EDF4000,status-playable;nvdec;online-broken;UE4,playable,2022-10-07 12:44:40,5 -2783,Shaolin vs Wutang : Eastern Heroes - 01003AB01062C000,01003AB01062C000,deadlock;status-nothing,nothing,2021-03-29 20:38:54,2 -2784,Mini Motor Racing X - 01003560119A6000,01003560119A6000,status-playable,playable,2021-04-13 17:54:49,4 -2785,Secret Files 3,,nvdec;status-playable,playable,2020-10-24 15:32:39,1 -2786,Othercide - 0100E5900F49A000,0100E5900F49A000,status-playable;nvdec,playable,2022-10-05 19:04:38,2 -2787,Eiga Sumikko Gurashi Tobidasu Ehon to Himitsu no Ko Game de Asobo Ehon no Sekai,,status-playable,playable,2020-11-12 0:11:50,2 -2788,Party Hard 2 - 010022801217E000,010022801217E000,status-playable;nvdec,playable,2022-10-05 20:31:48,2 -2789,Paradise Killer - 01007FB010DC8000,01007FB010DC8000,status-playable;UE4,playable,2022-10-05 19:33:05,5 -2790,MX vs ATV All Out - 0100218011E7E000,0100218011E7E000,status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-10-25 19:51:46,3 -2791,CastleStorm 2,,UE4;crash;nvdec;status-boots,boots,2020-10-25 11:22:44,1 -2792,Hotshot Racing - 0100BDE008218000,0100BDE008218000,gpu;status-ingame;nvdec;online-broken;ldn-untested;vulkan-backend-bug,ingame,2024-02-04 21:31:17,4 -2793,Bounty Battle - 0100E1200DC1A000,0100E1200DC1A000,status-playable;nvdec,playable,2022-10-04 14:40:51,2 -2794,Avicii Invector,,status-playable,playable,2020-10-25 12:12:56,1 -2795,Ys Origin - 0100F90010882000,0100F90010882000,status-playable;nvdec,playable,2024-04-17 5:07:33,2 -2796,Kirby Fighters 2 - 0100227010460000,0100227010460000,ldn-works;online;status-playable,playable,2021-06-17 13:06:39,2 -2798,JUMP FORCE Deluxe Edition - 0100183010F12000,0100183010F12000,status-playable;nvdec;online-broken;UE4,playable,2023-10-01 15:56:05,10 -2799,The Survivalists,,status-playable,playable,2020-10-27 15:51:13,1 -2800,"Season Match Full Bundle - Parts 1, 2 and 3",,status-playable,playable,2020-10-27 16:15:22,1 -2801,Moai VI: Unexpected Guests,,slow;status-playable,playable,2020-10-27 16:40:20,1 -2802,Agatha Christie - The ABC Murders,,status-playable,playable,2020-10-27 17:08:23,1 -2803,Remothered: Broken Porcelain - 0100FBD00F5F6000,0100FBD00F5F6000,UE4;gpu;nvdec;status-ingame,ingame,2021-06-17 15:13:11,2 -2804,Need For Speed Hot Pursuit Remastered,,audio;online;slow;status-ingame,ingame,2020-10-27 17:46:58,1 -2805,WarriOrb - 010032700EAC4000,010032700EAC4000,UE4;status-playable,playable,2021-06-17 15:45:14,2 -2806,Townsmen - A Kingdom Rebuilt - 010049E00BA34000,010049E00BA34000,status-playable;nvdec,playable,2022-10-14 22:48:59,3 -2807,Oceanhorn 2 Knights of the Lost Realm - 01006CB010840000,01006CB010840000,status-playable,playable,2021-05-21 18:26:10,6 -2808,No More Heroes 2 Desperate Struggle - 010071400F204000,010071400F204000,32-bit;status-playable;nvdec,playable,2022-11-19 1:38:13,4 -2809,No More Heroes - 0100F0400F202000,0100F0400F202000,32-bit;status-playable,playable,2022-09-13 7:44:27,6 -2810,Rusty Spount Rescue Adventure,,,,2020-10-29 17:06:42,1 -2811,Pixel Puzzle Makeout League - 010000E00E612000,010000E00E612000,status-playable,playable,2022-10-13 12:34:00,3 -2812,Futari de! Nyanko Daisensou - 01003C300B274000,01003C300B274000,status-playable,playable,2024-01-05 22:26:52,2 -2814,MAD RAT DEAD,,,,2020-10-31 13:30:24,1 -2815,The Language of Love,,Needs Update;crash;status-nothing,nothing,2020-12-03 17:54:00,3 -2816,Torn Tales - Rebound Edition,,status-playable,playable,2020-11-01 14:11:59,1 -2817,Spaceland,,status-playable,playable,2020-11-01 14:31:56,1 -2818,HARDCORE MECHA,,slow;status-playable,playable,2020-11-01 15:06:33,1 -2819,Barbearian - 0100F7E01308C000,0100F7E01308C000,Needs Update;gpu;status-ingame,ingame,2021-06-28 16:27:50,2 -2821,INSTANT Chef Party,,,,2020-11-01 23:15:58,1 -2822,Pikmin 3 Deluxe - 0100F4C009322000,0100F4C009322000,gpu;status-ingame;32-bit;nvdec;Needs Update,ingame,2024-09-03 0:28:26,22 -2823,Cobra Kai The Karate Kid Saga Continues - 01005790110F0000,01005790110F0000,status-playable,playable,2021-06-17 15:59:13,2 -2824,Seven Knights -Time Wanderer- - 010018400C24E000,010018400C24E000,status-playable;vulkan-backend-bug,playable,2022-10-13 22:08:54,3 -2825,Kangokuto Mary Skelter Finale,,audio;crash;status-ingame,ingame,2021-01-09 22:39:28,2 -2826,Shadowverse Champions Battle - 01002A800C064000,01002A800C064000,status-playable,playable,2022-10-02 22:59:29,5 -2827,Bakugan Champions of Vestroia,,status-playable,playable,2020-11-06 19:07:39,2 -2828,Jurassic World Evolution Complete Edition - 010050A011344000,010050A011344000,cpu;status-menus;crash,menus,2023-08-04 18:06:54,6 -2829,KAMEN RIDER memory of heroez / Premium Sound Edition - 0100A9801180E000,0100A9801180E000,status-playable,playable,2022-12-06 3:14:26,4 -2830,Shin Megami Tensei III NOCTURNE HD REMASTER - 010045800ED1E000,010045800ED1E000,gpu;status-ingame;Needs Update,ingame,2022-11-03 19:57:01,6 -2832,FUSER - 0100E1F013674000,0100E1F013674000,status-playable;nvdec;UE4,playable,2022-10-17 20:58:32,4 -2833,Mad Father,,status-playable,playable,2020-11-12 13:22:10,1 -2834,Café Enchanté,,status-playable,playable,2020-11-13 14:54:25,1 -2835,JUST DANCE 2021,,,,2020-11-14 6:22:04,1 -2836,Medarot Classics Plus Kuwagata Ver,,status-playable,playable,2020-11-21 11:30:40,3 -2837,Medarot Classics Plus Kabuto Ver,,status-playable,playable,2020-11-21 11:31:18,3 -2838,Forest Guardian,,,,2020-11-14 17:00:13,1 -2840,Fantasy Tavern Sextet -Vol.1 New World Days- - 01000E2012F6E000,01000E2012F6E000,gpu;status-ingame;crash;Needs Update,ingame,2022-12-05 16:48:00,2 -2841,Ary and the Secret of Seasons - 0100C2500CAB6000,0100C2500CAB6000,status-playable,playable,2022-10-07 20:45:09,2 -2842,Dark Quest 2,,status-playable,playable,2020-11-16 21:34:52,1 -2843,Cooking Tycoons 2: 3 in 1 Bundle,,status-playable,playable,2020-11-16 22:19:33,1 -2844,Cooking Tycoons: 3 in 1 Bundle,,status-playable,playable,2020-11-16 22:44:26,1 -2845,Agent A: A puzzle in disguise,,status-playable,playable,2020-11-16 22:53:27,1 -2846,ROBOTICS;NOTES DaSH,,status-playable,playable,2020-11-16 23:09:54,1 -2847,Hunting Simulator 2 - 010061F010C3A000,010061F010C3A000,status-playable;UE4,playable,2022-10-10 14:25:51,3 -2848,9 Monkeys of Shaolin,,UE4;gpu;slow;status-ingame,ingame,2020-11-17 11:58:43,1 -2849,Tin & Kuna,,status-playable,playable,2020-11-17 12:16:12,1 -2850,Seers Isle,,status-playable,playable,2020-11-17 12:28:50,1 -2851,Royal Roads,,status-playable,playable,2020-11-17 12:54:38,1 -2852,Rimelands - 01006AC00EE6E000,01006AC00EE6E000,status-playable,playable,2022-10-13 13:32:56,2 -2853,Mekorama - 0100B360068B2000,0100B360068B2000,gpu;status-boots,boots,2021-06-17 16:37:21,2 -2854,Need for Speed Hot Pursuit Remastered - 010029B0118E8000,010029B0118E8000,status-playable;online-broken,playable,2024-03-20 21:58:02,14 -2855,Mech Rage,,status-playable,playable,2020-11-18 12:30:16,1 -2856,Modern Tales: Age of Invention - 010004900D772000,010004900D772000,slow;status-playable,playable,2022-10-12 11:20:19,2 -2857,Dead Z Meat - 0100A24011F52000,0100A24011F52000,UE4;services;status-ingame,ingame,2021-04-14 16:50:16,2 -2858,Along the Edge,,status-playable,playable,2020-11-18 15:00:07,1 -2859,Country Tales - 0100C1E012A42000,0100C1E012A42000,status-playable,playable,2021-06-17 16:45:39,2 -2860,Ghost Sweeper - 01004B301108C000,01004B301108C000,status-playable,playable,2022-10-10 12:45:36,3 -2862,Hyrule Warriors: Age of Calamity - 01002B00111A2000,01002B00111A2000,gpu;deadlock;slow;status-ingame;crash;nvdec;amd-vendor-bug,ingame,2024-02-28 0:47:00,39 -2864,Path of Sin: Greed - 01001E500EA16000,01001E500EA16000,status-menus;crash,menus,2021-11-24 8:00:00,3 -2865,Hoggy 2 - 0100F7300ED2C000,0100F7300ED2C000,status-playable,playable,2022-10-10 13:53:35,3 -2866,Queen's Quest 4: Sacred Truce - 0100DCF00F13A000,0100DCF00F13A000,status-playable;nvdec,playable,2022-10-13 12:59:21,3 -2867,ROBOTICS;NOTES ELITE,,status-playable,playable,2020-11-26 10:28:20,1 -2868,Taiko no Tatsujin Rhythmic Adventure Pack,,status-playable,playable,2020-12-03 7:28:26,2 -2869,Pinstripe,,status-playable,playable,2020-11-26 10:40:40,1 -2870,Torchlight III - 010075400DDB8000,010075400DDB8000,status-playable;nvdec;online-broken;UE4,playable,2022-10-14 22:20:17,2 -2871,Ben 10: Power Trip - 01009CD00E3AA000,01009CD00E3AA000,status-playable;nvdec,playable,2022-10-09 10:52:12,2 -2872,Zoids Wild Infinity Blast,,,,2020-11-26 16:15:37,1 -2873,Picross S5 - 0100AC30133EC000,0100AC30133EC000,status-playable,playable,2022-10-17 18:51:42,5 -2874,Worm Jazz - 01009CD012CC0000,01009CD012CC0000,gpu;services;status-ingame;UE4;regression,ingame,2021-11-10 10:33:04,4 -2875,TTV2,,status-playable,playable,2020-11-27 13:21:36,1 -2876,Deadly Days,,status-playable,playable,2020-11-27 13:38:55,1 -2877,Pumpkin Jack - 01006C10131F6000,01006C10131F6000,status-playable;nvdec;UE4,playable,2022-10-13 12:52:32,3 -2878,Active Neurons 2 - 01000D1011EF0000,01000D1011EF0000,status-playable,playable,2022-10-07 16:21:42,2 -2879,Niche - a genetics survival game,,nvdec;status-playable,playable,2020-11-27 14:01:11,1 -2880,Monstrum - 010039F00EF70000,010039F00EF70000,status-playable,playable,2021-01-31 11:07:26,3 -2881,TRANSFORMERS: BATTLEGROUNDS - 01005E500E528000,01005E500E528000,online;status-playable,playable,2021-06-17 18:08:19,2 -2882,UBERMOSH:SANTICIDE,,status-playable,playable,2020-11-27 15:05:01,1 -2884,SPACE ELITE FORCE,,status-playable,playable,2020-11-27 15:21:05,1 -2885,Oddworld: New 'n' Tasty - 01005E700ABB8000,01005E700ABB8000,nvdec;status-playable,playable,2021-06-17 17:51:32,2 -2886,Immortal Realms: Vampire Wars - 010079501025C000,010079501025C000,nvdec;status-playable,playable,2021-06-17 17:41:46,2 -2887,Horace - 010086D011EB8000,010086D011EB8000,status-playable,playable,2022-10-10 14:03:50,3 -2888,Maid of Sker : Upscale Resolution not working,,,,2020-11-29 15:36:42,3 -2889,Professor Rubik's Brain Fitness,,,,2020-11-30 11:22:45,1 -2890,QV ( キュビ ),,,,2020-11-30 11:22:49,1 -2892,Double Pug Switch - 0100A5D00C7C0000,0100A5D00C7C0000,status-playable;nvdec,playable,2022-10-10 10:59:35,2 -2893,Trollhunters: Defenders of Arcadia,,gpu;nvdec;status-ingame,ingame,2020-11-30 13:27:09,1 -2894,Outbreak: Epidemic - 0100C850130FE000,0100C850130FE000,status-playable,playable,2022-10-13 10:27:31,2 -2895,Blackjack Hands,,status-playable,playable,2020-11-30 14:04:51,1 -2896,Piofiore: Fated Memories,,nvdec;status-playable,playable,2020-11-30 14:27:50,1 -2897,Task Force Kampas,,status-playable,playable,2020-11-30 14:44:15,1 -2898,Nexomon: Extinction,,status-playable,playable,2020-11-30 15:02:22,1 -2899,realMyst: Masterpiece Edition,,nvdec;status-playable,playable,2020-11-30 15:25:42,1 -2900,Neighbours back From Hell - 010065F00F55A000,010065F00F55A000,status-playable;nvdec,playable,2022-10-12 15:36:48,2 -2901,Sakai and... - 01007F000EB36000,01007F000EB36000,status-playable;nvdec,playable,2022-12-15 13:53:19,18 -2902,Supraland - 0100A6E01201C000,0100A6E01201C000,status-playable;nvdec;UE4;opengl-backend-bug,playable,2022-10-14 9:49:11,2 -2903,Ministry of Broadcast - 010069200EB80000,010069200EB80000,status-playable,playable,2022-08-10 0:31:16,3 -2904,Inertial Drift - 01002BD00F626000,01002BD00F626000,status-playable;online-broken,playable,2022-10-11 12:22:19,2 -2905,SuperEpic: The Entertainment War - 0100630010252000,0100630010252000,status-playable,playable,2022-10-13 23:02:48,2 -2906,HARDCORE Maze Cube,,status-playable,playable,2020-12-04 20:01:24,1 -2907,Firework,,status-playable,playable,2020-12-04 20:20:09,1 -2908,GORSD,,status-playable,playable,2020-12-04 22:15:21,1 -2909,Georifters,,UE4;crash;nvdec;status-menus,menus,2020-12-04 22:30:50,1 -2910,Giraffe and Annika,,UE4;crash;status-ingame,ingame,2020-12-04 22:41:57,1 -2911,Doodle Derby,,status-boots,boots,2020-12-04 22:51:48,1 -2912,"Good Pizza, Great Pizza",,status-playable,playable,2020-12-04 22:59:18,1 -2913,HyperBrawl Tournament,,crash;services;status-boots,boots,2020-12-04 23:03:27,1 -2914,Dustoff Z,,status-playable,playable,2020-12-04 23:22:29,1 -2915,Embracelet,,status-playable,playable,2020-12-04 23:45:00,1 -2916,"Cook, Serve, Delicious! 3?! - 0100B82010B6C000",0100B82010B6C000,status-playable,playable,2022-10-09 12:09:34,2 -2917,CAPTAIN TSUBASA: RISE OF NEW CHAMPIONS - 0100EAE010560000,0100EAE010560000,status-playable;online-broken;vulkan-backend-bug,playable,2022-10-09 11:20:50,2 -2918,Yomi wo Saku Hana,,,,2020-12-05 7:14:40,1 -2921,Immortals Fenyx Rising - 01004A600EC0A000,01004A600EC0A000,gpu;status-menus;crash,menus,2023-02-24 16:19:55,11 -2923,Supermarket Shriek - 0100C01012654000,0100C01012654000,status-playable,playable,2022-10-13 23:19:20,2 -2924,Absolute Drift,,status-playable,playable,2020-12-10 14:02:44,1 -2925,CASE 2: Animatronics Survival - 0100C4C0132F8000,0100C4C0132F8000,status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-10-09 11:45:03,2 -2926,BIG-Bobby-Car - The Big Race,,slow;status-playable,playable,2020-12-10 14:25:06,1 -2927,Asterix & Obelix XXL: Romastered - 0100F46011B50000,0100F46011B50000,gpu;status-ingame;nvdec;opengl,ingame,2023-08-16 21:22:06,3 -2928,Chicken Police - Paint it RED!,,nvdec;status-playable,playable,2020-12-10 15:10:11,1 -2929,Descenders,,gpu;status-ingame,ingame,2020-12-10 15:22:36,1 -2930,Outbreak: The Nightmare Chronicles - 01006EE013100000,01006EE013100000,status-playable,playable,2022-10-13 10:41:57,2 -2931,#Funtime,,status-playable,playable,2020-12-10 16:54:35,1 -2932,My Little Dog Adventure,,gpu;status-ingame,ingame,2020-12-10 17:47:37,1 -2933,n Verlore Verstand,,slow;status-ingame,ingame,2020-12-10 18:00:28,1 -2934,Oneiros - 0100463013246000,0100463013246000,status-playable,playable,2022-10-13 10:17:22,2 -2935,#KillAllZombies,,slow;status-playable,playable,2020-12-16 1:50:25,7 -2936,Connection Haunted,,slow;status-playable,playable,2020-12-10 18:57:14,1 -2938,Goosebumps Dead of Night,,gpu;nvdec;status-ingame,ingame,2020-12-10 20:02:16,1 -2939,"#Halloween, Super Puzzles Dream",,nvdec;status-playable,playable,2020-12-10 20:43:58,1 -2940,The Long Return,,slow;status-playable,playable,2020-12-10 21:05:10,1 -2941,The Bluecoats: North & South,,nvdec;status-playable,playable,2020-12-10 21:22:29,1 -2942,Puyo Puyo Tetris 2 - 010038E011940000,010038E011940000,status-playable;ldn-untested,playable,2023-09-26 11:35:25,8 -2943,Yuppie Psycho: Executive Edition,,crash;status-ingame,ingame,2020-12-11 10:37:06,1 -2945,Root Double -Before Crime * After Days- Xtend Edition - 0100936011556000,0100936011556000,status-nothing;crash,nothing,2022-02-05 2:03:49,2 -2946,Hidden Folks,,,,2020-12-11 11:48:16,1 -2947,KINGDOM HEARTS Melody of Memory,,crash;nvdec;status-ingame,ingame,2021-03-03 17:34:12,2 -2948,Unhatched,,status-playable,playable,2020-12-11 12:11:09,1 -2949,Tropico 6 - 0100FBE0113CC000,0100FBE0113CC000,status-playable;nvdec;UE4,playable,2022-10-14 23:21:03,2 -2950,Star Renegades,,nvdec;status-playable,playable,2020-12-11 12:19:23,1 -2951,Alpaca Ball: Allstars,,nvdec;status-playable,playable,2020-12-11 12:26:29,1 -2952,Nordlicht,,,,2020-12-11 12:37:12,1 -2953,Sakuna: Of Rice and Ruin - 0100B1400E8FE000,0100B1400E8FE000,status-playable,playable,2023-07-24 13:47:13,2 -2954,Re:Turn - One Way Trip - 0100F03011616000,0100F03011616000,status-playable,playable,2022-08-29 22:42:53,3 -2955,L.O.L. Surprise! Remix: We Rule the World - 0100F2B0123AE000,0100F2B0123AE000,status-playable,playable,2022-10-11 22:48:03,4 -2956,They Bleed Pixels - 01001C2010D08000,01001C2010D08000,gpu;status-ingame,ingame,2024-08-09 5:52:18,3 -2957,If Found...,,status-playable,playable,2020-12-11 13:43:14,1 -2958,Gibbous - A Cthulhu Adventure - 0100D95012C0A000,0100D95012C0A000,status-playable;nvdec,playable,2022-10-10 12:57:17,2 -2959,Duck Life Adventure - 01005BC012C66000,01005BC012C66000,status-playable,playable,2022-10-10 11:27:03,2 -2960,Sniper Elite 4 - 010007B010FCC000,010007B010FCC000,gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug,ingame,2024-06-18 17:53:15,4 -2961,Serious Sam Collection - 010007D00D43A000,010007D00D43A000,status-boots;vulkan-backend-bug,boots,2022-10-13 13:53:34,3 -2962,Slide Stars - 010010D011E1C000,010010D011E1C000,status-menus;crash,menus,2021-11-25 8:53:43,3 -2963,Tank Mechanic Simulator,,status-playable,playable,2020-12-11 15:10:45,1 -2964,Five Dates,,nvdec;status-playable,playable,2020-12-11 15:17:11,1 -2965,MagiCat,,status-playable,playable,2020-12-11 15:22:07,1 -2966,Family Feud 2021 - 010060200FC44000,010060200FC44000,status-playable;online-broken,playable,2022-10-10 11:42:21,3 -2967,LUNA The Shadow Dust,,,,2020-12-11 15:26:55,1 -2968,Paw Patrol: Might Pups Save Adventure Bay! - 01001F201121E000,01001F201121E000,status-playable,playable,2022-10-13 12:17:55,2 -2969,30-in-1 Game Collection - 010056D00E234000,010056D00E234000,status-playable;online-broken,playable,2022-10-15 17:47:09,2 -2970,Truck Driver - 0100CB50107BA000,0100CB50107BA000,status-playable;online-broken,playable,2022-10-20 17:42:33,2 -2971,Bridge Constructor: The Walking Dead,,gpu;slow;status-ingame,ingame,2020-12-11 17:31:32,1 -2972,Speed 3: Grand Prix - 0100F18010BA0000,0100F18010BA0000,status-playable;UE4,playable,2022-10-20 12:32:31,2 -2973,Wonder Blade,,status-playable,playable,2020-12-11 17:55:31,1 -2974,Super Blood Hockey,,status-playable,playable,2020-12-11 20:01:41,1 -2975,Who Wants to Be a Millionaire?,,crash;status-nothing,nothing,2020-12-11 20:22:42,1 -2976,My Aunt is a Witch - 01002C6012334000,01002C6012334000,status-playable,playable,2022-10-19 9:21:17,2 -2977,Flatland: Prologue,,status-playable,playable,2020-12-11 20:41:12,1 -2978,Fantasy Friends - 010017C012726000,010017C012726000,status-playable,playable,2022-10-17 19:42:39,2 -2979,MO:Astray,,crash;status-ingame,ingame,2020-12-11 21:45:44,1 -2980,Wartile Complete Edition,,UE4;crash;gpu;status-menus,menus,2020-12-11 21:56:10,1 -2981,Super Punch Patrol - 01001F90122B2000,01001F90122B2000,status-playable,playable,2024-07-12 19:49:02,2 -2982,Chronos,,UE4;gpu;nvdec;status-ingame,ingame,2020-12-11 22:16:35,1 -2983,Going Under,,deadlock;nvdec;status-ingame,ingame,2020-12-11 22:29:46,1 -2984,Castle Crashers Remastered - 010001300D14A000,010001300D14A000,gpu;status-boots,boots,2024-08-10 9:21:20,12 -2985,Morbid: The Seven Acolytes - 010040E00F642000,010040E00F642000,status-playable,playable,2022-08-09 17:21:58,3 -2986,Elrador Creatures,,slow;status-playable,playable,2020-12-12 12:35:35,1 -2987,Sam & Max Save the World,,status-playable,playable,2020-12-12 13:11:51,1 -2988,Quiplash 2 InterLASHional - 0100AF100EE76000,0100AF100EE76000,status-playable;online-working,playable,2022-10-19 17:43:45,4 -2989,Monster Truck Championship - 0100D30010C42000,0100D30010C42000,slow;status-playable;nvdec;online-broken;UE4,playable,2022-10-18 23:16:51,2 -2990,Liberated: Enhanced Edition - 01003A90133A6000,01003A90133A6000,gpu;status-ingame;nvdec,ingame,2024-07-04 4:48:48,2 -2991,Empire of Sin,,nvdec,,2020-12-12 13:48:05,1 -2992,Girabox,,status-playable,playable,2020-12-12 13:55:05,1 -2993,Shiren the Wanderer: The Tower of Fortune and the Dice of Fate - 01007430122D0000,01007430122D0000,status-playable;nvdec,playable,2022-10-20 11:44:36,2 -2994,2048 Battles,,status-playable,playable,2020-12-12 14:21:25,1 -2995,Reaper: Tale of a Pale Swordsman,,status-playable,playable,2020-12-12 15:12:23,1 -2996,Demong Hunter,,status-playable,playable,2020-12-12 15:27:08,1 -2997,Rise and Shine,,status-playable,playable,2020-12-12 15:56:43,1 -2998,12 Labours of Hercules II: The Cretan Bull - 0100B1A010014000,0100B1A010014000,cpu;status-nothing;32-bit;crash,nothing,2022-12-07 13:43:10,3 -2999,"#womenUp, Super Puzzles Dream",,status-playable,playable,2020-12-12 16:57:25,1 -3000,"#NoLimitFantasy, Super Puzzles Dream",,nvdec;status-playable,playable,2020-12-12 17:21:32,1 -3001,2urvive - 01007550131EE000,01007550131EE000,status-playable,playable,2022-11-17 13:49:37,3 -3002,2weistein – The Curse of the Red Dragon - 0100E20012886000,0100E20012886000,status-playable;nvdec;UE4,playable,2022-11-18 14:47:07,4 -3003,64,,status-playable,playable,2020-12-12 21:31:58,1 -3004,4x4 Dirt Track,,status-playable,playable,2020-12-12 21:41:42,1 -3005,Aeolis Tournament,,online;status-playable,playable,2020-12-12 22:02:14,1 -3006,Adventures of Pip,,nvdec;status-playable,playable,2020-12-12 22:11:55,1 -3007,9th Dawn III,,status-playable,playable,2020-12-12 22:27:27,1 -3008,Ailment,,status-playable,playable,2020-12-12 22:30:41,1 -3009,Adrenaline Rush - Miami Drive,,status-playable,playable,2020-12-12 22:49:50,1 -3010,Adventures of Chris,,status-playable,playable,2020-12-12 23:00:02,1 -3011,Akuarium,,slow;status-playable,playable,2020-12-12 23:43:36,1 -3012,Alchemist's Castle,,status-playable,playable,2020-12-12 23:54:08,1 -3013,Angry Video Game Nerd I & II Deluxe,,crash;status-ingame,ingame,2020-12-12 23:59:54,1 -3015,SENTRY,,status-playable,playable,2020-12-13 12:00:24,1 -3016,Squeakers,,status-playable,playable,2020-12-13 12:13:05,1 -3017,ALPHA,,status-playable,playable,2020-12-13 12:17:45,1 -3018,Shoot 1UP DX,,status-playable,playable,2020-12-13 12:32:47,1 -3019,Animal Hunter Z,,status-playable,playable,2020-12-13 12:50:35,1 -3020,Star99 - 0100E6B0115FC000,0100E6B0115FC000,status-menus;online,menus,2021-11-26 14:18:51,2 -3021,Alwa's Legacy,,status-playable,playable,2020-12-13 13:00:57,1 -3022,TERROR SQUID - 010070C00FB56000,010070C00FB56000,status-playable;online-broken,playable,2023-10-30 22:29:29,2 -3023,Animal Fight Club,,gpu;status-ingame,ingame,2020-12-13 13:13:33,1 -3024,"Momotaro Dentetsu Showa, Heisei, Reiwa mo Teiban! - 010093100DA04000",010093100DA04000,gpu;status-ingame,ingame,2023-09-22 10:21:46,3 -3025,Dokapon UP! Dreamy Roulette,,,,2020-12-13 14:53:27,1 -3026,ANIMUS,,status-playable,playable,2020-12-13 15:11:47,1 -3027,Pretty Princess Party - 01007F00128CC000,01007F00128CC000,status-playable,playable,2022-10-19 17:23:58,2 -3028,John Wick Hex - 01007090104EC000,01007090104EC000,status-playable,playable,2022-08-07 8:29:12,3 -3029,Animal Up,,status-playable,playable,2020-12-13 15:39:02,1 -3030,Derby Stallion,,,,2020-12-13 15:47:01,1 -3031,Ankh Guardian - Treasure of the Demon's Temple,,status-playable,playable,2020-12-13 15:55:49,1 -3032,Police X Heroine Lovepatrina! Love na Rhythm de Taihoshimasu!,,,,2020-12-13 16:12:56,1 -3033,Klondike Solitaire,,status-playable,playable,2020-12-13 16:17:27,1 -3034,Apocryph,,gpu;status-ingame,ingame,2020-12-13 23:24:10,1 -3035,Apparition,,nvdec;slow;status-ingame,ingame,2020-12-13 23:57:04,1 -3036,Tiny Gladiators,,status-playable,playable,2020-12-14 0:09:43,1 -3037,Aperion Cyberstorm,,status-playable,playable,2020-12-14 0:40:16,1 -3038,Cthulhu Saves Christmas,,status-playable,playable,2020-12-14 0:58:55,1 -3039,Kagamihara/Justice - 0100D58012FC2000,0100D58012FC2000,crash;status-nothing,nothing,2021-06-21 16:41:29,3 -3040,Greedroid,,status-playable,playable,2020-12-14 11:14:32,1 -3041,Aqua Lungers,,crash;status-ingame,ingame,2020-12-14 11:25:57,1 -3042,Atomic Heist - 01005FE00EC4E000,01005FE00EC4E000,status-playable,playable,2022-10-16 21:24:32,2 -3043,Nexoria: Dungeon Rogue Heroes - 0100B69012EC6000,0100B69012EC6000,gpu;status-ingame,ingame,2021-10-04 18:41:29,2 -3044,Armed 7 DX,,status-playable,playable,2020-12-14 11:49:56,1 -3045,Ord.,,status-playable,playable,2020-12-14 11:59:06,1 -3046,Commandos 2 HD Remaster - 010065A01158E000,010065A01158E000,gpu;status-ingame;nvdec,ingame,2022-08-10 21:52:27,2 -3047,Atomicrops - 0100AD30095A4000,0100AD30095A4000,status-playable,playable,2022-08-06 10:05:07,3 -3048,Rabi-Ribi - 01005BF00E4DE000,01005BF00E4DE000,status-playable,playable,2022-08-06 17:02:44,3 -3049,Assault Chainguns KM,,crash;gpu;status-ingame,ingame,2020-12-14 12:48:34,1 -3050,Attack of the Toy Tanks,,slow;status-ingame,ingame,2020-12-14 12:59:12,1 -3051,AstroWings SpaceWar,,status-playable,playable,2020-12-14 13:10:44,1 -3052,ATOMIK RunGunJumpGun,,status-playable,playable,2020-12-14 13:19:24,1 -3053,Arrest of a stone Buddha - 0100184011B32000,0100184011B32000,status-nothing;crash,nothing,2022-12-07 16:55:00,4 -3054,Midnight Evil - 0100A1200F20C000,0100A1200F20C000,status-playable,playable,2022-10-18 22:55:19,2 -3055,Awakening of Cthulhu - 0100085012D64000,0100085012D64000,UE4;status-playable,playable,2021-04-26 13:03:07,2 -3056,Axes - 0100DA3011174000,0100DA3011174000,status-playable,playable,2021-04-08 13:01:58,3 -3057,ASSAULT GUNNERS HD Edition,,,,2020-12-14 14:47:09,1 -3058,Shady Part of Me - 0100820013612000,0100820013612000,status-playable,playable,2022-10-20 11:31:55,3 -3059,A Frog Game,,status-playable,playable,2020-12-14 16:09:53,1 -3060,A Dark Room,,gpu;status-ingame,ingame,2020-12-14 16:14:28,1 -3061,A Sound Plan,,crash;status-boots,boots,2020-12-14 16:46:21,1 -3062,Actual Sunlight,,gpu;status-ingame,ingame,2020-12-14 17:18:41,1 -3063,Acthung! Cthulhu Tactics,,status-playable,playable,2020-12-14 18:40:27,1 -3064,ATOMINE,,gpu;nvdec;slow;status-playable,playable,2020-12-14 18:56:50,1 -3065,Adventure Llama,,status-playable,playable,2020-12-14 19:32:24,1 -3066,Minoria - 0100FAE010864000,0100FAE010864000,status-playable,playable,2022-08-06 18:50:50,3 -3067,Adventure Pinball Bundle,,slow;status-playable,playable,2020-12-14 20:31:53,1 -3068,Aery - Broken Memories - 0100087012810000,0100087012810000,status-playable,playable,2022-10-04 13:11:52,2 -3069,Fobia,,status-playable,playable,2020-12-14 21:05:23,1 -3070,Alchemic Jousts - 0100F5400AB6C000,0100F5400AB6C000,gpu;status-ingame,ingame,2022-12-08 15:06:28,2 -3071,Akash Path of the Five,,gpu;nvdec;status-ingame,ingame,2020-12-14 22:33:12,1 -3072,Witcheye,,status-playable,playable,2020-12-14 22:56:08,1 -3073,Zombie Driver,,nvdec;status-playable,playable,2020-12-14 23:15:10,1 -3074,Keen: One Girl Army,,status-playable,playable,2020-12-14 23:19:52,1 -3075,AFL Evolution 2 - 01001B400D334000,01001B400D334000,slow;status-playable;online-broken;UE4,playable,2022-12-07 12:45:56,2 -3076,Elden: Path of the Forgotten,,status-playable,playable,2020-12-15 0:33:19,1 -3077,Desire remaster ver.,,crash;status-boots,boots,2021-01-17 2:34:37,4 -3078,Alluris - 0100AC501122A000,0100AC501122A000,gpu;status-ingame;UE4,ingame,2023-08-02 23:13:50,2 -3079,Almightree the Last Dreamer,,slow;status-playable,playable,2020-12-15 13:59:03,1 -3080,Windscape - 010059900BA3C000,010059900BA3C000,status-playable,playable,2022-10-21 11:49:42,2 -3082,Warp Shift,,nvdec;status-playable,playable,2020-12-15 14:48:48,1 -3083,Alphaset by POWGI,,status-playable,playable,2020-12-15 15:15:15,1 -3084,Storm Boy - 010040D00BCF4000,010040D00BCF4000,status-playable,playable,2022-10-20 14:15:06,2 -3085,Fire & Water,,status-playable,playable,2020-12-15 15:43:20,1 -3086,Animated Jigsaws Collection,,nvdec;status-playable,playable,2020-12-15 15:58:34,1 -3087,More Dark,,status-playable,playable,2020-12-15 16:01:06,1 -3088,Clea,,crash;status-ingame,ingame,2020-12-15 16:22:56,1 -3089,Animal Fun for Toddlers and Kids,,services;status-boots,boots,2020-12-15 16:45:29,1 -3090,Brick Breaker,,crash;status-ingame,ingame,2020-12-15 17:03:59,1 -3091,Anode,,status-playable,playable,2020-12-15 17:18:58,1 -3092,Animal Pairs - Matching & Concentration Game for Toddlers & Kids - 010033C0121DC000,010033C0121DC000,services;status-boots,boots,2021-11-29 23:43:14,2 -3093,Animals for Toddlers,,services;status-boots,boots,2020-12-15 17:27:27,1 -3094,Stellar Interface - 01005A700C954000,01005A700C954000,status-playable,playable,2022-10-20 13:44:33,2 -3095,Anime Studio Story,,status-playable,playable,2020-12-15 18:14:05,1 -3096,Brick Breaker,,nvdec;online;status-playable,playable,2020-12-15 18:26:23,1 -3097,Anti-Hero Bundle - 0100596011E20000,0100596011E20000,status-playable;nvdec,playable,2022-10-21 20:10:30,2 -3098,Alt-Frequencies,,status-playable,playable,2020-12-15 19:01:33,1 -3099,Tanuki Justice - 01007A601318C000,01007A601318C000,status-playable;opengl,playable,2023-02-21 18:28:10,5 -3100,Norman's Great Illusion,,status-playable,playable,2020-12-15 19:28:24,1 -3101,Welcome to Primrose Lake - 0100D7F010B94000,0100D7F010B94000,status-playable,playable,2022-10-21 11:30:57,2 -3102,Dream,,status-playable,playable,2020-12-15 19:55:07,1 -3103,Lofi Ping Pong,,crash;status-ingame,ingame,2020-12-15 20:09:22,1 -3104,Antventor,,nvdec;status-playable,playable,2020-12-15 20:09:27,1 -3105,Space Pioneer - 010047B010260000,010047B010260000,status-playable,playable,2022-10-20 12:24:37,2 -3106,Death and Taxes,,status-playable,playable,2020-12-15 20:27:49,1 -3107,Deleveled,,slow;status-playable,playable,2020-12-15 21:02:29,1 -3108,Jenny LeClue - Detectivu,,crash;status-nothing,nothing,2020-12-15 21:07:07,1 -3109,Biz Builder Delux,,slow;status-playable,playable,2020-12-15 21:36:25,1 -3110,Creepy Tale,,status-playable,playable,2020-12-15 21:58:03,1 -3111,Among Us - 0100B0C013912000,0100B0C013912000,status-menus;online;ldn-broken,menus,2021-09-22 15:20:17,12 -3112,Spinch - 010076D0122A8000,010076D0122A8000,status-playable,playable,2024-07-12 19:02:10,2 -3113,Carto - 0100810012A1A000,0100810012A1A000,status-playable,playable,2022-09-04 15:37:06,2 -3114,Laraan,,status-playable,playable,2020-12-16 12:45:48,1 -3116,Spider Solitaire,,status-playable,playable,2020-12-16 16:19:30,1 -3117,Sin Slayers - 01006FE010438000,01006FE010438000,status-playable,playable,2022-10-20 11:53:52,2 -3118,AO Tennis 2 - 010047000E9AA000,010047000E9AA000,status-playable;online-broken,playable,2022-09-17 12:05:07,2 -3119,Area 86,,status-playable,playable,2020-12-16 16:45:52,1 -3120,Art Sqool - 01006AA013086000,01006AA013086000,status-playable;nvdec,playable,2022-10-16 20:42:37,2 -3121,Utopia 9 - A Volatile Vacation,,nvdec;status-playable,playable,2020-12-16 17:06:42,1 -3122,Arrog,,status-playable,playable,2020-12-16 17:20:50,1 -3123,Warlocks 2: God Slayers,,status-playable,playable,2020-12-16 17:36:50,1 -3124,Artifact Adventure Gaiden DX,,status-playable,playable,2020-12-16 17:49:25,1 -3125,Asemblance,,UE4;gpu;status-ingame,ingame,2020-12-16 18:01:23,1 -3126,Death Tales,,status-playable,playable,2020-12-17 10:55:52,2 -3127,Asphalt 9: Legends - 01007B000C834000,01007B000C834000,services;status-menus;crash;online-broken,menus,2022-12-07 13:28:29,4 -3128,Barbarous! Tavern of Emyr - 01003350102E2000,01003350102E2000,status-playable,playable,2022-10-16 21:50:24,2 -3129,Baila Latino - 010076B011EC8000,010076B011EC8000,status-playable,playable,2021-04-14 16:40:24,2 -3130,Unit 4,,status-playable,playable,2020-12-16 18:54:13,1 -3131,Ponpu,,status-playable,playable,2020-12-16 19:09:34,1 -3132,ATOM RPG - 0100B9400FA38000,0100B9400FA38000,status-playable;nvdec,playable,2022-10-22 10:11:48,2 -3133,Automachef,,status-playable,playable,2020-12-16 19:51:25,1 -3134,Croc's World 2,,status-playable,playable,2020-12-16 20:01:40,1 -3135,Ego Protocol,,nvdec;status-playable,playable,2020-12-16 20:16:35,1 -3136,Azure Reflections - 01006FB00990E000,01006FB00990E000,nvdec;online;status-playable,playable,2021-04-08 13:18:25,3 -3137,Back to Bed,,nvdec;status-playable,playable,2020-12-16 20:52:04,1 -3138,Azurebreak Heroes,,status-playable,playable,2020-12-16 21:26:17,1 -3139,Marooners - 010044600FDF0000,010044600FDF0000,status-playable;nvdec;online-broken,playable,2022-10-18 21:35:26,2 -3140,BaconMan - 0100EAF00E32E000,0100EAF00E32E000,status-menus;crash;nvdec,menus,2021-11-20 2:36:21,2 -3141,Peaky Blinders: Mastermind - 010002100CDCC000,010002100CDCC000,status-playable,playable,2022-10-19 16:56:35,2 -3142,Crash Drive 2,,online;status-playable,playable,2020-12-17 2:45:46,1 -3143,Blood will be Spilled,,nvdec;status-playable,playable,2020-12-17 3:02:03,1 -3144,Nefarious,,status-playable,playable,2020-12-17 3:20:33,1 -3145,Blacksea Odyssey - 01006B400C178000,01006B400C178000,status-playable;nvdec,playable,2022-10-16 22:14:34,2 -3146,Baobabs Mausoleum Ep2: 1313 Barnabas Dead Ends Drive,,status-playable,playable,2020-12-17 11:22:50,1 -3147,Life of Boris: Super Slav,,status-ingame,ingame,2020-12-17 11:40:05,1 -3148,Baobabs Mausoleum Ep.3: Un Pato en Muertoburgo,,nvdec;status-playable,playable,2020-12-17 11:43:10,1 -3149,Baron: Fur Is Gonna Fly - 010039C0106C6000,010039C0106C6000,status-boots;crash,boots,2022-02-06 2:05:43,3 -3150,Deployment - 01000BF00B6BC000,01000BF00B6BC000,slow;status-playable;online-broken,playable,2022-10-17 16:23:59,2 -3151,PixelJunk Eden 2,,crash;status-ingame,ingame,2020-12-17 11:55:52,1 -3152,Batbarian: Testament of the Primordials,,status-playable,playable,2020-12-17 12:00:59,1 -3153,Abyss of The Sacrifice - 010047F012BE2000,010047F012BE2000,status-playable;nvdec,playable,2022-10-21 13:56:28,2 -3154,Nightmares from the Deep 2: The Siren's Call - 01006E700B702000,01006E700B702000,status-playable;nvdec,playable,2022-10-19 10:58:53,2 -3155,Vera Blanc: Full Moon,,audio;status-playable,playable,2020-12-17 12:09:30,1 -3156,Linelight,,status-playable,playable,2020-12-17 12:18:07,1 -3157,Battle Hunters - 0100A3B011EDE000,0100A3B011EDE000,gpu;status-ingame,ingame,2022-11-12 9:19:17,2 -3159,Day and Night,,status-playable,playable,2020-12-17 12:30:51,1 -3160,Zombie's Cool,,status-playable,playable,2020-12-17 12:41:26,1 -3161,Battle of Kings,,slow;status-playable,playable,2020-12-17 12:45:23,1 -3162,Ghostrunner,,UE4;crash;gpu;nvdec;status-ingame,ingame,2020-12-17 13:01:59,1 -3163,Battleground - 0100650010DD4000,0100650010DD4000,status-ingame;crash,ingame,2021-09-06 11:53:23,2 -3164,Little Racer - 0100E6D00E81C000,0100E6D00E81C000,status-playable,playable,2022-10-18 16:41:13,2 -3165,Battle Planet - Judgement Day,,status-playable,playable,2020-12-17 14:06:20,1 -3166,Dokuro,,nvdec;status-playable,playable,2020-12-17 14:47:09,1 -3167,Reflection of Mine,,audio;status-playable,playable,2020-12-17 15:06:37,1 -3168,Foregone,,deadlock;status-ingame,ingame,2020-12-17 15:26:53,1 -3169,Choices That Matter: And The Sun Went Out,,status-playable,playable,2020-12-17 15:44:08,1 -3170,BATTLLOON,,status-playable,playable,2020-12-17 15:48:23,1 -3171,Grim Legends: The Forsaken Bride - 010009F011F90000,010009F011F90000,status-playable;nvdec,playable,2022-10-18 13:14:06,3 -3172,Glitch's Trip,,status-playable,playable,2020-12-17 16:00:57,1 -3173,Maze,,status-playable,playable,2020-12-17 16:13:58,1 -3174,Bayonetta - 010076F0049A2000,010076F0049A2000,status-playable;audout,playable,2022-11-20 15:51:59,6 -3176,Gnome More War,,status-playable,playable,2020-12-17 16:33:07,1 -3177,Fin and the Ancient Mystery,,nvdec;status-playable,playable,2020-12-17 16:40:39,1 -3178,Nubarron: The adventure of an unlucky gnome,,status-playable,playable,2020-12-17 16:45:17,1 -3179,Survive! Mr. Cube - 010029A00AEB0000,010029A00AEB0000,status-playable,playable,2022-10-20 14:44:47,2 -3180,Saboteur SiO,,slow;status-ingame,ingame,2020-12-17 16:59:49,1 -3181,Flowlines VS,,status-playable,playable,2020-12-17 17:01:53,1 -3182,Beat Me! - 01002D20129FC000,01002D20129FC000,status-playable;online-broken,playable,2022-10-16 21:59:26,2 -3183,YesterMorrow,,crash;status-ingame,ingame,2020-12-17 17:15:25,1 -3184,Drums,,status-playable,playable,2020-12-17 17:21:51,1 -3185,Gnomes Garden: Lost King - 010036C00D0D6000,010036C00D0D6000,deadlock;status-menus,menus,2021-11-18 11:14:03,2 -3186,Edna & Harvey: Harvey's New Eyes - 0100ABE00DB4E000,0100ABE00DB4E000,nvdec;status-playable,playable,2021-01-26 14:36:08,2 -3187,Roarr! - 010068200C5BE000,010068200C5BE000,status-playable,playable,2022-10-19 23:57:45,2 -3188,PHOGS!,,online;status-playable,playable,2021-01-18 15:18:37,2 -3189,Idle Champions of the Forgotten Realms,,online;status-boots,boots,2020-12-17 18:24:57,1 -3190,Polyroll - 010074B00ED32000,010074B00ED32000,gpu;status-boots,boots,2021-07-01 16:16:50,3 -3191,Control Ultimate Edition - Cloud Version - 0100041013360000,0100041013360000,Needs Update;crash;services;status-nothing,nothing,2021-04-18 22:34:06,2 -3192,Wilmot's Warehouse - 010071F00D65A000,010071F00D65A000,audio;gpu;status-ingame,ingame,2021-06-02 17:24:32,3 -3193,Jack N' Jill DX,,,,2020-12-18 2:27:22,1 -3194,Izneo - 0100D8E00C874000,0100D8E00C874000,status-menus;online-broken,menus,2022-08-06 15:56:23,2 -3195,Dicey Dungeons - 0100BBF011394000,0100BBF011394000,gpu;audio;slow;status-ingame,ingame,2023-08-02 20:30:12,2 -3196,Rabbids Adventure Party Demo / 疯狂兔子:奇遇派对 - 试玩版,,,,2020-12-18 5:53:35,1 -3197,Venture Kid - 010095B00DBC8000,010095B00DBC8000,crash;gpu;status-ingame,ingame,2021-04-18 16:33:17,2 -3199,Death Coming - 0100F3B00CF32000,0100F3B00CF32000,status-nothing;crash,nothing,2022-02-06 7:43:03,2 -3200,OlliOlli: Switch Stance - 0100E0200B980000,0100E0200B980000,gpu;status-boots,boots,2024-04-25 8:36:37,3 -3201,Cybxus Heart - 01006B9013672000,01006B9013672000,gpu;slow;status-ingame,ingame,2022-01-15 5:00:49,2 -3202,Gensou Rougoku no Kaleidscope - 0100AC600EB4C000,0100AC600EB4C000,status-menus;crash,menus,2021-11-24 8:45:07,2 -3203,Witch Spring 3 Re:Fine -The Story of the Marionette Witch Eirudy- - 0100454012E32000,0100454012E32000,status-ingame;crash,ingame,2021-08-08 11:56:18,3 -3204,Hulu - 0100A66003384000,0100A66003384000,status-boots;online-broken,boots,2022-12-09 10:05:00,3 -3205,Strife: Veteran Edition - 0100BDE012928000,0100BDE012928000,gpu;status-ingame,ingame,2022-01-15 5:10:42,2 -3209,Peasant Knight,,status-playable,playable,2020-12-22 9:30:50,2 -3210,Double Dragon Neon - 01005B10132B2000,01005B10132B2000,gpu;audio;status-ingame;32-bit,ingame,2022-09-20 18:00:20,2 -3211,Nekopara Vol.4,,crash;status-ingame,ingame,2021-01-17 1:47:18,2 -3212,Super Meat Boy Forever - 01009C200D60E000,01009C200D60E000,gpu;status-boots,boots,2021-04-26 14:25:39,2 -3213,Gems of Magic: Lost Family,,,,2020-12-24 15:33:57,1 -3214,Wagamama High Spec,,,,2020-12-25 9:02:51,1 -3215,BIT.TRIP RUNNER - 0100E62012D3C000,0100E62012D3C000,status-playable,playable,2022-10-17 14:23:24,3 -3216,BIT.TRIP VOID - 01000AD012D3A000,01000AD012D3A000,status-playable,playable,2022-10-17 14:31:23,2 -3217,Dark Arcana: The Carnival - 01003D301357A000,01003D301357A000,gpu;slow;status-ingame,ingame,2022-02-19 8:52:28,2 -3218,Food Girls,,,,2020-12-27 14:48:48,1 -3219,Override 2 Super Mech League - 0100647012F62000,0100647012F62000,status-playable;online-broken;UE4,playable,2022-10-19 15:56:04,4 -3220,Unto The End - 0100E49013190000,0100E49013190000,gpu;status-ingame,ingame,2022-10-21 11:13:29,2 -3221,Outbreak: Lost Hope - 0100D9F013102000,0100D9F013102000,crash;status-boots,boots,2021-04-26 18:01:23,2 -3222,Croc's World 3,,status-playable,playable,2020-12-30 18:53:26,1 -3223,COLLECTION of SaGA FINAL FANTASY LEGEND,,status-playable,playable,2020-12-30 19:11:16,1 -3224,The Adventures of 00 Dilly,,status-playable,playable,2020-12-30 19:32:29,1 -3225,Funimation - 01008E10130F8000,01008E10130F8000,gpu;status-boots,boots,2021-04-08 13:08:17,3 -3227,Aleste Collection,,,,2021-01-01 11:30:59,1 -3228,Trail Boss BMX,,,,2021-01-01 16:51:27,1 -3229,DEEMO -Reborn- - 01008B10132A2000,01008B10132A2000,status-playable;nvdec;online-broken,playable,2022-10-17 15:18:11,2 -3232,Catherine Full Body - 0100BF00112C0000,0100BF00112C0000,status-playable;nvdec,playable,2023-04-02 11:00:37,14 -3233,Hell Sports,,,,2021-01-03 15:40:25,1 -3234,Traditional Tactics Ne+,,,,2021-01-03 15:40:29,1 -3235,Earth Defense Force World Brothers ( ま~るい地球が四角くなった!? デジボク地球防衛軍 ) - 0100B9E012992000,0100B9E012992000,status-playable;UE4,playable,2022-12-07 12:59:16,3 -3236,The House of Da Vinci,,status-playable,playable,2021-01-05 14:17:19,2 -3237,Monster Sanctuary,,crash;status-ingame,ingame,2021-04-04 5:06:41,2 -3239,Monster Hunter Rise Demo - 010093A01305C000,010093A01305C000,status-playable;online-broken;ldn-works;demo,playable,2022-10-18 23:04:17,15 -3244,InnerSpace,,status-playable,playable,2021-01-13 19:36:14,1 -3245,Scott Pilgrim vs The World: The Game - 0100394011C30000,0100394011C30000,services-horizon;status-nothing;crash,nothing,2024-07-12 8:13:03,11 -3246,Fantasy Tavern Sextet -Vol.2 Adventurer's Days-,,gpu;slow;status-ingame;crash,ingame,2021-11-06 2:57:29,2 -3247,Monster Hunter XX Nintendo Switch Ver ( Double Cross ) - 0100C3800049C000,0100C3800049C000,status-playable,playable,2024-07-21 14:08:09,7 -3248,Football Manager 2021 Touch - 01007CF013152000,01007CF013152000,gpu;status-ingame,ingame,2022-10-17 20:08:23,3 -3249,Eyes: The Horror Game - 0100EFE00A3C2000,0100EFE00A3C2000,status-playable,playable,2021-01-20 21:59:46,1 -3250,Evolution Board Game - 01006A800FA22000,01006A800FA22000,online;status-playable,playable,2021-01-20 22:37:56,1 -3251,PBA Pro Bowling 2021 - 0100F95013772000,0100F95013772000,status-playable;online-broken;UE4,playable,2022-10-19 16:46:40,2 -3252,Body of Evidence - 0100721013510000,0100721013510000,status-playable,playable,2021-04-25 22:22:11,2 -3253,The Hong Kong Massacre,,crash;status-ingame,ingame,2021-01-21 12:06:56,1 -3254,Arkanoid vs Space Invaders,,services;status-ingame,ingame,2021-01-21 12:50:30,1 -3256,Professor Lupo: Ocean - 0100D1F0132F6000,0100D1F0132F6000,status-playable,playable,2021-04-14 16:33:33,2 -3257,My Universe - School Teacher - 01006C301199C000,01006C301199C000,nvdec;status-playable,playable,2021-01-21 16:02:52,1 -3258,FUZE Player - 010055801134E000,010055801134E000,status-ingame;online-broken;vulkan-backend-bug,ingame,2022-10-18 12:23:53,2 -3259,Defentron - 0100CDE0136E6000,0100CDE0136E6000,status-playable,playable,2022-10-17 15:47:56,2 -3260,Thief Simulator - 0100CE400E34E000,0100CE400E34E000,status-playable,playable,2023-04-22 4:39:11,3 -3261,Stardash - 01002100137BA000,01002100137BA000,status-playable,playable,2021-01-21 16:31:19,1 -3262,The Last Dead End - 0100AAD011592000,0100AAD011592000,gpu;status-ingame;UE4,ingame,2022-10-20 16:59:44,3 -3263,Buddy Mission BOND Demo [ バディミッション BOND ],,Incomplete,,2021-01-23 18:07:40,3 -3264,Disgaea 6: Defiance of Destiny Demo [ 魔界戦記ディスガイア6 ] - 01005EE013888000,01005EE013888000,gpu;status-ingame;demo,ingame,2022-12-06 15:27:59,4 -3265,Down in Bermuda,,,,2021-01-22 15:29:19,1 -3268,Blacksmith of the Sand Kingdom - 010068E013450000,010068E013450000,status-playable,playable,2022-10-16 22:37:44,3 -3269,Tennis World Tour 2 - 0100950012F66000,0100950012F66000,status-playable;online-broken,playable,2022-10-14 10:43:16,4 -3270,Shadow Gangs - 0100BE501382A000,0100BE501382A000,cpu;gpu;status-ingame;crash;regression,ingame,2024-04-29 0:07:26,15 -3271,Red Colony - 0100351013A06000,0100351013A06000,status-playable,playable,2021-01-25 20:44:41,1 -3272,Construction Simulator 3 - Console Edition - 0100A5600FAC0000,0100A5600FAC0000,status-playable,playable,2023-02-06 9:31:23,3 -3273,Speed Truck Racing - 010061F013A0E000,010061F013A0E000,status-playable,playable,2022-10-20 12:57:04,2 -3274,Arcanoid Breakout - 0100E53013E1C000,0100E53013E1C000,status-playable,playable,2021-01-25 23:28:02,1 -3275,Life of Fly - 0100B3A0135D6000,0100B3A0135D6000,status-playable,playable,2021-01-25 23:41:07,1 -3276,Little Nightmares II DEMO - 010093A0135D6000,010093A0135D6000,status-playable;UE4;demo;vulkan-backend-bug,playable,2024-05-16 18:47:20,2 -3277,Iris Fall - 0100945012168000,0100945012168000,status-playable;nvdec,playable,2022-10-18 13:40:22,2 -3278,Dirt Trackin Sprint Cars - 01004CB01378A000,01004CB01378A000,status-playable;nvdec;online-broken,playable,2022-10-17 16:34:56,2 -3279,Gal*Gun Returns [ ぎゃる☆がん りたーんず ] - 0100047013378000,0100047013378000,status-playable;nvdec,playable,2022-10-17 23:50:46,2 -3280,Disgaea 6: Defiance of Destiny [ FG ] [ 魔界戦記ディスガイア6 ] - 0100307011D80000,0100307011D80000,status-playable,playable,2021-06-08 13:20:33,3 -3281,Buddy Mission BOND [ FG ] [ バディミッション BOND ] - 0100DB300B996000,0100DB300B996000,,,2021-01-30 4:22:26,1 -3282,CONARIUM - 010015801308E000,010015801308E000,UE4;nvdec;status-playable,playable,2021-04-26 17:57:53,3 -3284,Balan Wonderworld Demo - 0100E48013A34000,0100E48013A34000,gpu;services;status-ingame;UE4;demo,ingame,2023-02-16 20:05:07,4 -3285,War Truck Simulator - 0100B6B013B8A000,0100B6B013B8A000,status-playable,playable,2021-01-31 11:22:54,1 -3286,The Last Campfire - 0100449011506000,0100449011506000,status-playable,playable,2022-10-20 16:44:19,3 -3287,Spinny's journey - 01001E40136FE000,01001E40136FE000,status-ingame;crash,ingame,2021-11-30 3:39:44,2 -3288,Sally Face - 0100BBF0122B4000,0100BBF0122B4000,status-playable,playable,2022-06-06 18:41:24,2 -3289,Otti house keeper - 01006AF013A9E000,01006AF013A9E000,status-playable,playable,2021-01-31 12:11:24,1 -3290,Neoverse Trinity Edition - 01001A20133E000,,status-playable,playable,2022-10-19 10:28:03,3 -3291,Missile Dancer - 0100CFA0138C8000,0100CFA0138C8000,status-playable,playable,2021-01-31 12:22:03,1 -3292,Grisaia Phantom Trigger 03 - 01005250123B8000,01005250123B8000,audout;status-playable,playable,2021-01-31 12:30:47,1 -3293,GRISAIA PHANTOM TRIGGER 04 -0100D970123BA000,0100D970123BA000,audout;status-playable,playable,2021-01-31 12:40:37,1 -3294,GRISAIA PHANTOM TRIGGER 05 - 01002330123BC000,01002330123BC000,audout;nvdec;status-playable,playable,2021-01-31 12:49:59,1 -3295,GRISAIA PHANTOM TRIGGER 5.5 - 0100CAF013AE6000,0100CAF013AE6000,audout;nvdec;status-playable,playable,2021-01-31 12:59:44,1 -3296,Dreamo - 0100D24013466000,0100D24013466000,status-playable;UE4,playable,2022-10-17 18:25:28,2 -3297,Dirt Bike Insanity - 0100A8A013DA4000,0100A8A013DA4000,status-playable,playable,2021-01-31 13:27:38,1 -3298,Calico - 010013A00E750000,010013A00E750000,status-playable,playable,2022-10-17 14:44:28,2 -3299,ADVERSE - 01008C901266E000,01008C901266E000,UE4;status-playable,playable,2021-04-26 14:32:51,2 -3300,All Walls Must Fall - 0100CBD012FB6000,0100CBD012FB6000,status-playable;UE4,playable,2022-10-15 19:16:30,2 -3301,Bus Driver Simulator - 010030D012FF6000,010030D012FF6000,status-playable,playable,2022-10-17 13:55:27,2 -3302,Blade II The Return of Evil - 01009CC00E224000,01009CC00E224000,audio;status-ingame;crash;UE4,ingame,2021-11-14 2:49:59,5 -3303,Ziggy The Chaser - 0100D7B013DD0000,0100D7B013DD0000,status-playable,playable,2021-02-04 20:34:27,1 -3304,Colossus Down - 0100E2F0128B4000,0100E2F0128B4000,status-playable,playable,2021-02-04 20:49:50,1 -3305,Turrican Flashback - 01004B0130C8000,,status-playable;audout,playable,2021-08-30 10:07:56,2 -3306,Ubongo - Deluxe Edition,,status-playable,playable,2021-02-04 21:15:01,1 -3307,Märchen Forest - 0100B201D5E000,,status-playable,playable,2021-02-04 21:33:34,1 -3308,Re:ZERO -Starting Life in Another World- The Prophecy of the Throne,,gpu;status-boots;crash;nvdec;vulkan,boots,2023-03-07 21:27:24,8 -3309,Tracks - Toybox Edition - 0100192010F5A000,0100192010F5A000,UE4;crash;status-nothing,nothing,2021-02-08 15:19:18,1 -3310,TOHU - 0100B5E011920000,0100B5E011920000,slow;status-playable,playable,2021-02-08 15:40:44,1 -3311,Redout: Space Assault - 0100326010B98000,0100326010B98000,status-playable;UE4,playable,2022-10-19 23:04:35,2 -3312,Gods Will Fall - 0100CFA0111C8000,0100CFA0111C8000,status-playable,playable,2021-02-08 16:49:59,1 -3313,Cyber Shadow - 0100C1F0141AA000,0100C1F0141AA000,status-playable,playable,2022-07-17 5:37:41,4 -3314,Atelier Ryza 2: Lost Legends & the Secret Fairy - 01009A9012022000,01009A9012022000,status-playable,playable,2022-10-16 21:06:06,2 -3315,Heaven's Vault - 0100FD901000C000,0100FD901000C000,crash;status-ingame,ingame,2021-02-08 18:22:01,1 -3316,Contraptions - 01007D701298A000,01007D701298A000,status-playable,playable,2021-02-08 18:40:50,1 -3317,My Universe - Pet Clinic Cats & Dogs - 0100CD5011A02000,0100CD5011A02000,status-boots;crash;nvdec,boots,2022-02-06 2:05:53,3 -3318,Citizens Unite!: Earth x Space - 0100D9C012900000,0100D9C012900000,gpu;status-ingame,ingame,2023-10-22 6:44:19,4 -3319,Blue Fire - 010073B010F6E000,010073B010F6E000,status-playable;UE4,playable,2022-10-22 14:46:11,2 -3320,Shakes on a Plane - 01008DA012EC0000,01008DA012EC0000,status-menus;crash,menus,2021-11-25 8:52:25,3 -3321,Glyph - 0100EB501130E000,0100EB501130E000,status-playable,playable,2021-02-08 19:56:51,1 -3322,Flying Hero X - 0100419013A8A000,0100419013A8A000,status-menus;crash,menus,2021-11-17 7:46:58,2 -3323,Disjunction - 01000B70122A2000,01000B70122A2000,gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug,ingame,2024-04-28 23:55:24,8 -3324,Grey Skies: A War of the Worlds Story - 0100DA7013792000,0100DA7013792000,status-playable;UE4,playable,2022-10-24 11:13:59,2 -3325,"#womenUp, Super Puzzles Dream Demo - 0100D87012A14000",0100D87012A14000,nvdec;status-playable,playable,2021-02-09 0:03:31,1 -3326,n Verlore Verstand - Demo - 01009A500E3DA000,01009A500E3DA000,status-playable,playable,2021-02-09 0:13:32,1 -3327,10 Second Run RETURNS Demo - 0100DC000A472000,0100DC000A472000,gpu;status-ingame,ingame,2021-02-09 0:17:18,1 -3328,16-Bit Soccer Demo - 0100B94013D28000,0100B94013D28000,status-playable,playable,2021-02-09 0:23:07,1 -3329,1993 Shenandoah Demo - 0100148012550000,0100148012550000,status-playable,playable,2021-02-09 0:43:43,1 -3330,9 Monkeys of Shaolin Demo - 0100C5F012E3E000,0100C5F012E3E000,UE4;gpu;nvdec;status-ingame,ingame,2021-02-09 1:03:30,1 -3331,99Vidas Demo - 010023500C2F0000,010023500C2F0000,status-playable,playable,2021-02-09 12:51:31,1 -3332,A Duel Hand Disaster Trackher: DEMO - 0100582012B90000,0100582012B90000,crash;demo;nvdec;status-ingame,ingame,2021-03-24 18:45:27,2 -3333,Aces of the Luftwaffe Squadron Demo - 010054300D822000,010054300D822000,nvdec;status-playable,playable,2021-02-09 13:12:28,1 -3334,Active Neurons 2 Demo - 010031C0122B0000,010031C0122B0000,status-playable,playable,2021-02-09 13:40:21,1 -3335,Adventures of Chris Demo - 0100A0A0136E8000,0100A0A0136E8000,status-playable,playable,2021-02-09 13:49:21,1 -3336,Aegis Defenders Demo - 010064500AF72000,010064500AF72000,status-playable,playable,2021-02-09 14:04:17,1 -3337,Aeolis Tournament Demo - 01006710122CE000,01006710122CE000,nvdec;status-playable,playable,2021-02-09 14:22:30,1 -3338,AeternoBlade Demo Version - 0100B1C00949A000,0100B1C00949A000,nvdec;status-playable,playable,2021-02-09 14:39:26,1 -3339,AeternoBlade II Demo Version,,gpu;nvdec;status-ingame,ingame,2021-02-09 15:10:19,1 -3340,Agent A: A puzzle in disguise (Demo) - 01008E8012C02000,01008E8012C02000,status-playable,playable,2021-02-09 18:30:41,1 -3341,Airfield Mania Demo - 010010A00DB72000,010010A00DB72000,services;status-boots;demo,boots,2022-04-10 3:43:02,2 -3342,Alder's Blood Prologue - 01004510110C4000,01004510110C4000,crash;status-ingame,ingame,2021-02-09 19:03:03,1 -3343,AI: The Somnium Files Demo - 0100C1700FB34000,0100C1700FB34000,nvdec;status-playable,playable,2021-02-10 12:52:33,1 -3344,Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz Trial version - 0100A8A00D27E000,0100A8A00D27E000,status-playable,playable,2021-02-10 13:33:59,1 -3345,Animated Jigsaws: Beautiful Japanese Scenery DEMO - 0100A1900B5B8000,0100A1900B5B8000,nvdec;status-playable,playable,2021-02-10 13:49:56,1 -3346,APE OUT DEMO - 010054500E6D4000,010054500E6D4000,status-playable,playable,2021-02-10 14:33:06,1 -3347,Anime Studio Story Demo - 01002B300EB86000,01002B300EB86000,status-playable,playable,2021-02-10 14:50:39,1 -3348,Aperion Cyberstorm Demo - 01008CA00D71C000,01008CA00D71C000,status-playable,playable,2021-02-10 15:53:21,1 -3350,ARMS Demo,,status-playable,playable,2021-02-10 16:30:13,1 -3351,Art of Balance DEMO - 010062F00CAE2000,010062F00CAE2000,gpu;slow;status-ingame,ingame,2021-02-10 17:17:12,1 -3352,Assault on Metaltron Demo - 0100C5E00E540000,0100C5E00E540000,status-playable,playable,2021-02-10 19:48:06,1 -3353,Automachef Demo - 01006B700EA6A000,01006B700EA6A000,status-playable,playable,2021-02-10 20:35:37,1 -3354,AVICII Invector Demo - 0100E100128BA000,0100E100128BA000,status-playable,playable,2021-02-10 21:04:58,1 -3355,Awesome Pea (Demo) - 010023800D3F2000,010023800D3F2000,status-playable,playable,2021-02-10 21:48:21,1 -3356,Awesome Pea 2 (Demo) - 0100D2011E28000,,crash;status-nothing,nothing,2021-02-10 22:08:27,1 -3357,Ayakashi koi gikyoku Free Trial - 010075400DEC6000,010075400DEC6000,status-playable,playable,2021-02-10 22:22:11,1 -3358,Bad North Demo,,status-playable,playable,2021-02-10 22:48:38,1 -3359,Baobabs Mausoleum: DEMO - 0100D3000AEC2000,0100D3000AEC2000,status-playable,playable,2021-02-10 22:59:25,1 -3360,Battle Chef Brigade Demo - 0100DBB00CAEE000,0100DBB00CAEE000,status-playable,playable,2021-02-10 23:15:07,1 -3361,Mercenaries Blaze Dawn of the Twin Dragons - 0100a790133fc000,0100a790133fc000,,,2021-02-11 18:43:00,1 -3362,Fallen Legion Revenants Demo - 0100cac013776000,0100cac013776000,,,2021-02-11 18:43:06,1 -3363,Bear With Me - The Lost Robots Demo - 010024200E97E800,010024200E97E800,nvdec;status-playable,playable,2021-02-12 22:38:12,1 -3364,Birds and Blocks Demo - 0100B6B012FF4000,0100B6B012FF4000,services;status-boots;demo,boots,2022-04-10 4:53:03,2 -3365,Black Hole Demo - 01004BE00A682000,01004BE00A682000,status-playable,playable,2021-02-12 23:02:17,1 -3366,Blasphemous Demo - 0100302010338000,0100302010338000,status-playable,playable,2021-02-12 23:49:56,1 -3367,Blaster Master Zero DEMO - 010025B002E92000,010025B002E92000,status-playable,playable,2021-02-12 23:59:06,1 -3368,Bleep Bloop DEMO - 010091700EA2A000,010091700EA2A000,nvdec;status-playable,playable,2021-02-13 0:20:53,1 -3369,Block-a-Pix Deluxe Demo - 0100E1C00DB6C000,0100E1C00DB6C000,status-playable,playable,2021-02-13 0:37:39,1 -3370,Get Over Here - 0100B5B00E77C000,0100B5B00E77C000,status-playable,playable,2022-10-28 11:53:52,3 -3371,Unspottable - 0100B410138C0000,0100B410138C0000,status-playable,playable,2022-10-25 19:28:49,2 -3373,Blossom Tales Demo - 01000EB01023E000,01000EB01023E000,status-playable,playable,2021-02-13 14:22:53,1 -3374,Boomerang Fu Demo Version - 010069F0135C4000,010069F0135C4000,demo;status-playable,playable,2021-02-13 14:38:13,1 -3375,Bot Vice Demo - 010069B00EAC8000,010069B00EAC8000,crash;demo;status-ingame,ingame,2021-02-13 14:52:42,1 -3376,BOXBOY! + BOXGIRL! Demo - 0100B7200E02E000,0100B7200E02E000,demo;status-playable,playable,2021-02-13 14:59:08,1 -3377,Super Mario 3D World + Bowser's Fury - 010028600EBDA000,010028600EBDA000,status-playable;ldn-works,playable,2024-07-31 10:45:37,38 -3378,Brawlout Demo - 0100C1B00E1CA000,0100C1B00E1CA000,demo;status-playable,playable,2021-02-13 22:46:53,1 -3379,Brigandine: The Legend of Runersia Demo - 0100703011258000,0100703011258000,status-playable,playable,2021-02-14 14:44:10,1 -3380,Brotherhood United Demo - 0100F19011226000,0100F19011226000,demo;status-playable,playable,2021-02-14 21:10:57,1 -3381,Bucket Knight demo - 0100F1B010A90000,0100F1B010A90000,demo;status-playable,playable,2021-02-14 21:23:09,1 -3382,BurgerTime Party! Demo - 01005780106E8000,01005780106E8000,demo;status-playable,playable,2021-02-14 21:34:16,1 -3383,Cadence of Hyrule Crypt of the NecroDancer Featuring The Legend of Zelda Demo - 010065700EE0600,,demo;gpu;nvdec;status-ingame,ingame,2021-02-14 21:48:15,1 -3384,Cafeteria Nipponica Demo - 010060400D21C000,010060400D21C000,demo;status-playable,playable,2021-02-14 22:11:35,1 -3385,Cake Bash Demo - 0100699012F82000,0100699012F82000,crash;demo;status-ingame,ingame,2021-02-14 22:21:15,1 -3386,Captain Toad: Treasure Tracker Demo - 01002C400B6B6000,01002C400B6B6000,32-bit;demo;status-playable,playable,2021-02-14 22:36:09,1 -3387,CAPTAIN TSUBASA: RISE OF NEW CHAMPIONS DEMO VERSION - 01002320137CC000,01002320137CC000,slow;status-playable,playable,2021-02-14 22:45:35,1 -3388,Castle Crashers Remastered Demo - 0100F6D01060E000,0100F6D01060E000,gpu;status-boots;demo,boots,2022-04-10 10:57:10,2 -3389,Cat Quest II Demo - 0100E86010220000,0100E86010220000,demo;status-playable,playable,2021-02-15 14:11:57,1 -3390,Caveman Warriors Demo,,demo;status-playable,playable,2021-02-15 14:44:08,1 -3391,Chickens Madness DEMO - 0100CAC011C3A000,0100CAC011C3A000,UE4;demo;gpu;nvdec;status-ingame,ingame,2021-02-15 15:02:10,1 -3392,Little Nightmares II - 010097100EDD6000,010097100EDD6000,status-playable;UE4,playable,2023-02-10 18:24:44,4 -3393,Rhythm Fighter - 0100729012D18000,0100729012D18000,crash;status-nothing,nothing,2021-02-16 18:51:30,2 -3394,大図書館の羊飼い -Library Party-01006de00a686000,01006de00a686000,,,2021-02-16 7:20:19,2 -3395,Timothy and the Mysterious Forest - 0100393013A10000,0100393013A10000,gpu;slow;status-ingame,ingame,2021-06-02 0:42:11,2 -3396,Pixel Game Maker Series Werewolf Princess Kaguya - 0100859013CE6000,0100859013CE6000,crash;services;status-nothing,nothing,2021-03-26 0:23:07,2 -3397,D.C.4 ~ダ・カーポ4~-0100D8500EE14000,0100D8500EE14000,,,2021-02-17 8:46:35,1 -3398,Yo kai watch 1 for Nintendo Switch - 0100C0000CEEA000,0100C0000CEEA000,gpu;status-ingame;opengl,ingame,2024-05-28 11:11:49,21 -3399,Project TRIANGLE STRATEGY Debut Demo - 01002980140F6000,01002980140F6000,status-playable;UE4;demo,playable,2022-10-24 21:40:27,4 -3400,SNK VS. CAPCOM: THE MATCH OF THE MILLENNIUM - 010027D0137E0000,010027D0137E0000,,,2021-02-19 12:35:20,2 -3401,Super Soccer Blast - 0100D61012270000,0100D61012270000,gpu;status-ingame,ingame,2022-02-16 8:39:12,2 -3404,VOEZ (Japan Version) - 0100A7F002830000,0100A7F002830000,,,2021-02-19 15:07:49,1 -3405,Dungreed - 010045B00C496000,010045B00C496000,,,2021-02-19 16:18:07,1 -3406,Capcom Arcade Stadium - 01001E0013208000,01001E0013208000,status-playable,playable,2021-03-17 5:45:14,2 -3408,Urban Street Fighting - 010054F014016000,010054F014016000,status-playable,playable,2021-02-20 19:16:36,1 -3409,The Long Dark - 01007A700A87C000,01007A700A87C000,status-playable,playable,2021-02-21 14:19:52,1 -3410,Rebel Galaxy: Outlaw - 0100CAA01084A000,0100CAA01084A000,status-playable;nvdec,playable,2022-12-01 7:44:56,3 -3411,Persona 5: Strikers (US) - 0100801011C3E000,0100801011C3E000,status-playable;nvdec;mac-bug,playable,2023-09-26 9:36:01,16 -3412,Steven Universe Unleash the Light,,,,2021-02-25 2:33:05,1 -3413,Ghosts 'n Goblins Resurrection - 0100D6200F2BA000,0100D6200F2BA000,status-playable,playable,2023-05-09 12:40:41,5 -3414,Taxi Chaos - 0100B76011DAA000,0100B76011DAA000,slow;status-playable;online-broken;UE4,playable,2022-10-25 19:13:00,4 -3415,COTTOn Reboot! [ コットン リブート! ] - 01003DD00F94A000,01003DD00F94A000,status-playable,playable,2022-05-24 16:29:24,6 -3416,STORY OF SEASONS Pioneers of Olive [ 牧場物語 オリーブタウンと希望の大地 ] - 010017301007E000,010017301007E000,status-playable,playable,2021-03-18 11:42:19,3 -3417,Bravely Default II - 01006DC010326000,01006DC010326000,gpu;status-ingame;crash;Needs Update;UE4,ingame,2024-04-26 6:11:26,23 -3418,Forward To The Sky - 0100DBA011136000,0100DBA011136000,,,2021-02-27 12:11:42,1 -3419,Just Dance 2019,,gpu;online;status-ingame,ingame,2021-02-27 17:21:27,2 -3423,Harvest Moon One World - 010016B010FDE00,,status-playable,playable,2023-05-26 9:17:19,2 -3424,Just Dance 2017 - 0100BCE000598000,0100BCE000598000,online;status-playable,playable,2021-03-05 9:46:01,2 -3425,コープスパーティー ブラッドカバー リピーティッドフィアー (Corpse Party Blood Covered: Repeated Fear) - 0100965012E22000,0100965012E22000,,,2021-03-05 9:47:52,1 -3426,Sea of Solitude The Director's Cut - 0100AFE012BA2000,0100AFE012BA2000,gpu;status-ingame,ingame,2024-07-12 18:29:29,14 -3431,Just Dance 2018 - 0100A0500348A000,0100A0500348A000,,,2021-03-13 8:09:14,1 -3434,Crash Bandicoot 4: It's About Time - 010073401175E000,010073401175E000,status-playable;nvdec;UE4,playable,2024-03-17 7:13:45,5 -3435,Bloody Bunny : The Game - 0100E510143EC000,0100E510143EC000,status-playable;nvdec;UE4,playable,2022-10-22 13:18:55,2 -3437,Plants vs. Zombies: Battle for Neighborville Complete Edition - 0100C56010FD8000,0100C56010FD8000,gpu;audio;status-boots;crash,boots,2024-09-02 12:58:14,11 -3438,Cathedral - 0100BEB01327A000,0100BEB01327A000,,,2021-03-19 22:12:46,1 -3439,Night Vision - 0100C3801458A000,0100C3801458A000,,,2021-03-19 22:20:53,1 -3440,Stubbs the Zombie in Rebel Without a Pulse - 0100964012528000,0100964012528000,,,2021-03-19 22:56:50,1 -3443,Hitman 3 - Cloud Version - 01004990132AC000,01004990132AC000,Needs Update;crash;services;status-nothing,nothing,2021-04-18 22:35:07,2 -3444,Speed Limit - 01000540139F6000,01000540139F6000,gpu;status-ingame,ingame,2022-09-02 18:37:40,2 -3445,Dig Dog - 0100A5A00DBB0000,0100A5A00DBB0000,gpu;status-ingame,ingame,2021-06-02 17:17:51,2 -3446,Renzo Racer - 01007CC0130C6000,01007CC0130C6000,status-playable,playable,2021-03-23 22:28:05,1 -3447,Persephone,,status-playable,playable,2021-03-23 22:39:19,1 -3448,Cresteaju,,gpu;status-ingame,ingame,2021-03-24 10:46:06,1 -3449,Boom Blaster,,status-playable,playable,2021-03-24 10:55:56,1 -3450,Soccer Club Life: Playing Manager - 010017B012AFC000,010017B012AFC000,gpu;status-ingame,ingame,2022-10-25 11:59:22,2 -3451,Radio Commander - 0100BAD013B6E000,0100BAD013B6E000,nvdec;status-playable,playable,2021-03-24 11:20:46,1 -3452,Negative - 01008390136FC000,01008390136FC000,nvdec;status-playable,playable,2021-03-24 11:29:41,1 -3453,Hero-U: Rogue to Redemption - 010077D01094C000,010077D01094C000,nvdec;status-playable,playable,2021-03-24 11:40:01,1 -3454,Haven - 0100E2600DBAA000,0100E2600DBAA000,status-playable,playable,2021-03-24 11:52:41,1 -3455,Escape First 2 - 010021201296A000,010021201296A000,status-playable,playable,2021-03-24 11:59:41,1 -3456,Active Neurons 3 - 0100EE1013E12000,0100EE1013E12000,status-playable,playable,2021-03-24 12:20:20,1 -3457,Blizzard Arcade Collection - 0100743013D56000,0100743013D56000,status-playable;nvdec,playable,2022-08-03 19:37:26,2 -3458,Hellpoint - 010024600C794000,010024600C794000,status-menus,menus,2021-11-26 13:24:20,2 -3460,Death's Hangover - 0100492011A8A000,0100492011A8A000,gpu;status-boots,boots,2023-08-01 22:38:06,3 -3461,Storm in a Teacup - 0100B2300B932000,0100B2300B932000,gpu;status-ingame,ingame,2021-11-06 2:03:19,3 -3462,Charge Kid - 0100F52013A66000,0100F52013A66000,gpu;status-boots;audout,boots,2024-02-11 1:17:47,2 -3465,Monster Hunter Rise - 0100B04011742000,0100B04011742000,gpu;slow;status-ingame;crash;nvdec;online-broken;Needs Update;ldn-works,ingame,2024-08-24 11:04:59,25 -3466,Gotobun no Hanayome Natsu no Omoide mo Gotobun [ 五等分の花嫁∬ ~夏の思い出も五等分~ ] - 0100FB5013670000,0100FB5013670000,,,2021-03-27 16:51:27,1 -3469,Steam Prison - 01008010118CC000,01008010118CC000,nvdec;status-playable,playable,2021-04-01 15:34:11,1 -3470,Rogue Heroes: Ruins of Tasos - 01009FA010848000,01009FA010848000,online;status-playable,playable,2021-04-01 15:41:25,1 -3471,Fallen Legion Revenants - 0100AA801258C000,0100AA801258C000,status-menus;crash,menus,2021-11-25 8:53:20,3 -3472, R-TYPE FINAL 2 Demo - 01007B0014300000,01007B0014300000,slow;status-ingame;nvdec;UE4;demo,ingame,2022-10-24 21:57:42,3 -3473,Fire Emblem: Shadow Dragon and the Blade of Light - 0100A12011CC8000,0100A12011CC8000,status-playable,playable,2022-10-17 19:49:14,6 -3475,Dariusburst - Another Chronicle EX+ - 010015800F93C000,010015800F93C000,online;status-playable,playable,2021-04-05 14:21:43,1 -3476,Curse of the Dead Gods - 0100D4A0118EA000,0100D4A0118EA000,status-playable,playable,2022-08-30 12:25:38,4 -3477,Clocker - 0100DF9013AD4000,0100DF9013AD4000,status-playable,playable,2021-04-05 15:05:13,1 -3478,Azur Lane: Crosswave - 01006AF012FC8000,01006AF012FC8000,UE4;nvdec;status-playable,playable,2021-04-05 15:15:25,1 -3479,AnShi - 01000FD00DF78000,01000FD00DF78000,status-playable;nvdec;UE4,playable,2022-10-21 19:37:01,2 -3480,Aery - A Journey Beyond Time - 0100DF8014056000,0100DF8014056000,status-playable,playable,2021-04-05 15:52:25,1 -3481,Sir Lovelot - 0100E9201410E000,0100E9201410E000,status-playable,playable,2021-04-05 16:21:46,1 -3482,Pixel Game Maker Series Puzzle Pedestrians - 0100EA2013BCC000,0100EA2013BCC000,status-playable,playable,2022-10-24 20:15:50,3 -3483,Monster Jam Steel Titans 2 - 010051B0131F0000,010051B0131F0000,status-playable;nvdec;UE4,playable,2022-10-24 17:17:59,2 -3484,Huntdown - 0100EBA004726000,0100EBA004726000,status-playable,playable,2021-04-05 16:59:54,1 -3485,GraviFire - 010054A013E0C000,010054A013E0C000,status-playable,playable,2021-04-05 17:13:32,1 -3486,Dungeons & Bombs,,status-playable,playable,2021-04-06 12:46:22,1 -3487,Estranged: The Departure - 01004F9012FD8000,01004F9012FD8000,status-playable;nvdec;UE4,playable,2022-10-24 10:37:58,2 -3488,Demon's Rise - Lords of Chaos - 0100E29013818000,0100E29013818000,status-playable,playable,2021-04-06 16:20:06,1 -3489,Bibi & Tina at the horse farm - 010062400E69C000,010062400E69C000,status-playable,playable,2021-04-06 16:31:39,1 -3490,WRC 9 The Official Game - 01001A0011798000,01001A0011798000,gpu;slow;status-ingame;nvdec,ingame,2022-10-25 19:47:39,2 -3491,Woodsalt - 0100288012966000,0100288012966000,status-playable,playable,2021-04-06 17:01:48,1 -3492,Kingdoms of Amalur: Re-Reckoning - 0100EF50132BE000,0100EF50132BE000,status-playable,playable,2023-08-10 13:05:08,2 -3493,Jiffy - 01008330134DA000,01008330134DA000,gpu;status-ingame;opengl,ingame,2024-02-03 23:11:24,4 -3494,A-Train: All Aboard! Tourism - 0100A3E010E56000,0100A3E010E56000,nvdec;status-playable,playable,2021-04-06 17:48:19,1 -3495,Synergia - 01009E700F448000,01009E700F448000,status-playable,playable,2021-04-06 17:58:04,1 -3496,R.B.I. Baseball 21 - 0100B4A0115CA000,0100B4A0115CA000,status-playable;online-working,playable,2022-10-24 22:31:45,2 -3497,NEOGEO POCKET COLOR SELECTION Vol.1 - 010006D0128B4000,010006D0128B4000,status-playable,playable,2023-07-08 20:55:36,2 -3498,Mighty Fight Federation - 0100C1E0135E0000,0100C1E0135E0000,online;status-playable,playable,2021-04-06 18:39:56,1 -3499,Lost Lands: The Four Horsemen - 0100133014510000,0100133014510000,status-playable;nvdec,playable,2022-10-24 16:41:00,2 -3500,In rays of the Light - 0100A760129A0000,0100A760129A0000,status-playable,playable,2021-04-07 15:18:07,1 -3501,DARQ Complete Edition - 0100440012FFA000,0100440012FFA000,audout;status-playable,playable,2021-04-07 15:26:21,1 -3502,Can't Drive This - 0100593008BDC000,0100593008BDC000,status-playable,playable,2022-10-22 14:55:17,1 -3503,Wanderlust Travel Stories - 0100B27010436000,0100B27010436000,status-playable,playable,2021-04-07 16:09:12,1 -3504,Tales from the Borderlands - 0100F0C011A68000,0100F0C011A68000,status-playable;nvdec,playable,2022-10-25 18:44:14,4 -3506,Star Wars: Republic Commando - 0100FA10115F8000,0100FA10115F8000,gpu;status-ingame;32-bit,ingame,2023-10-31 15:57:17,9 -3507,Barrage Fantasia - 0100F2A013752000,0100F2A013752000,,,2021-04-08 1:02:06,1 -3509,Atelier Rorona - The Alchemist of Arland - DX - 010088600C66E000,010088600C66E000,nvdec;status-playable,playable,2021-04-08 15:33:15,1 -3510,PAC-MAN 99 - 0100AD9012510000,0100AD9012510000,gpu;status-ingame;online-broken,ingame,2024-04-23 0:48:25,5 -3511,MAGLAM LORD - 0100C2C0125FC000,0100C2C0125FC000,,,2021-04-09 9:10:45,2 -3513,Part Time UFO - 01006B5012B32000 ,01006B5012B32000,status-ingame;crash,ingame,2023-03-03 3:13:05,2 -3515,Fitness Boxing - 0100E7300AAD4000,0100E7300AAD4000,status-playable,playable,2021-04-14 20:33:33,1 -3516,Fitness Boxing 2: Rhythm & Exercise - 0100073011382000,0100073011382000,crash;status-ingame,ingame,2021-04-14 20:40:48,1 -3517,Overcooked! All You Can Eat - 0100F28011892000,0100F28011892000,ldn-untested;online;status-playable,playable,2021-04-15 10:33:52,1 -3518,SpyHack - 01005D701264A000,01005D701264A000,status-playable,playable,2021-04-15 10:53:51,1 -3519,Oh My Godheads: Party Edition - 01003B900AE12000,01003B900AE12000,status-playable,playable,2021-04-15 11:04:11,1 -3520,My Hidden Things - 0100E4701373E000,0100E4701373E000,status-playable,playable,2021-04-15 11:26:06,1 -3521,Merchants of Kaidan - 0100E5000D3CA000,0100E5000D3CA000,status-playable,playable,2021-04-15 11:44:28,1 -3522,Mahluk dark demon - 010099A0145E8000,010099A0145E8000,status-playable,playable,2021-04-15 13:14:24,1 -3523,Fred3ric - 0100AC40108D8000,0100AC40108D8000,status-playable,playable,2021-04-15 13:30:31,1 -3524,Fishing Universe Simulator - 010069800D292000,010069800D292000,status-playable,playable,2021-04-15 14:00:43,1 -3525,Exorder - 0100FA800A1F4000,0100FA800A1F4000,nvdec;status-playable,playable,2021-04-15 14:17:20,1 -3526,FEZ - 01008D900B984000,01008D900B984000,gpu;status-ingame,ingame,2021-04-18 17:10:16,6 -3527,Danger Scavenger - ,,nvdec;status-playable,playable,2021-04-17 15:53:04,1 -3528,Hellbreachers - 01002BF013F0C000,01002BF013F0C000,,,2021-04-17 17:19:20,1 -3531,Cooking Simulator - 01001E400FD58000,01001E400FD58000,status-playable,playable,2021-04-18 13:25:23,1 -3532,Digerati Presents: The Dungeon Crawl Vol. 1 - 010035D0121EC000,010035D0121EC000,slow;status-ingame,ingame,2021-04-18 14:04:55,1 -3533,Clea 2 - 010045E0142A4000,010045E0142A4000,status-playable,playable,2021-04-18 14:25:18,1 -3534,Livestream Escape from Hotel Izanami - 0100E45014338000,0100E45014338000,,,2021-04-19 2:20:34,1 -3535,Ai Kiss 2 [ アイキス2 ] - 01000E9013CD4000,01000E9013CD4000,,,2021-04-19 2:49:12,1 -3536,Pikachin-Kit – Game de Pirameki Daisakusen [ ピカちんキット ゲームでピラメキ大作戦!] - 01009C100A8AA000,01009C100A8AA000,,,2021-04-19 3:11:07,1 -3537,Ougon musou kyoku CROSS [ 黄金夢想曲†CROSS] - 010011900E720000,010011900E720000,,,2021-04-19 3:22:41,1 -3538,Cargo Crew Driver - 0100DD6014870000,0100DD6014870000,status-playable,playable,2021-04-19 12:54:22,1 -3539,Black Legend - 0100C3200E7E6000,0100C3200E7E6000,gpu;status-ingame;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-10-22 12:54:48,2 -3540,Balan Wonderworld - 0100438012EC8000,0100438012EC8000,status-playable;nvdec;UE4,playable,2022-10-22 13:08:43,2 -3541,Arkham Horror: Mother's Embrace - 010069A010606000,010069A010606000,nvdec;status-playable,playable,2021-04-19 15:40:55,1 -3542,S.N.I.P.E.R. Hunter Scope - 0100B8B012ECA000,0100B8B012ECA000,status-playable,playable,2021-04-19 15:58:09,1 -3543,Ploid Saga - 0100E5B011F48000 ,0100E5B011F48000,status-playable,playable,2021-04-19 16:58:45,1 -3544,Kaze and the Wild Masks - 010038B00F142000,010038B00F142000,status-playable,playable,2021-04-19 17:11:03,1 -3545,I Saw Black Clouds - 01001860140B0000,01001860140B0000,nvdec;status-playable,playable,2021-04-19 17:22:16,1 -3546,Escape from Life Inc - 010023E013244000,010023E013244000,status-playable,playable,2021-04-19 17:34:09,1 -3547,El Hijo - A Wild West Tale - 010020A01209C000,010020A01209C000,nvdec;status-playable,playable,2021-04-19 17:44:08,1 -3548,Bomber Fox - 0100A1F012948000,0100A1F012948000,nvdec;status-playable,playable,2021-04-19 17:58:13,1 -3549,Stitchy in Tooki Trouble - 010077B014518000,010077B014518000,status-playable,playable,2021-05-06 16:25:53,2 -3550,SaGa Frontier Remastered - 0100A51013530000,0100A51013530000,status-playable;nvdec,playable,2022-11-03 13:54:56,2 -3552,Wonder Boy Asha in Monster World [ ワンダーボーイ アーシャ・イン・モンスターワールド ] - 0100EB2012E36000,0100EB2012E36000,status-nothing;crash,nothing,2021-11-03 8:45:06,2 -3553,Raiden IV x Mikado Remix [ 雷電Ⅳ×MIKADO remix ] - 01005CD013116000,01005CD013116000,status-playable,playable,2022-07-29 15:50:13,3 -3554,Uno no Tatsujin Machigai Sagashi Museum for Nintendo Switch [ -右脳の達人- まちがいさがしミュージアム for Nintendo Switch ] - 01001030136C6000,01001030136C6000,,,2021-04-22 21:59:27,1 -3555,Shantae - 0100430013120000,0100430013120000,status-playable,playable,2021-05-21 4:53:26,8 -3556,The Legend of Heroes: Trails of Cold Steel IV - 0100D3C010DE8000,0100D3C010DE8000,nvdec;status-playable,playable,2021-04-23 14:01:05,1 -3558,Effie - 01002550129F0000,01002550129F0000,status-playable,playable,2022-10-27 14:36:39,4 -3559,Death end re;Quest - 0100AEC013DDA000,0100AEC013DDA000,status-playable,playable,2023-07-09 12:19:54,2 -3560,THE LEGEND OF HEROES: ZERO NO KISEKI KAI [英雄傳說 零之軌跡:改] - 01005E5013862000,01005E5013862000,status-nothing;crash,nothing,2021-09-30 14:41:07,2 -3561,Yoshi's Crafted World - 01006000040C2000,01006000040C2000,gpu;status-ingame;audout,ingame,2021-08-30 13:25:51,5 -3563,TY the Tasmanian Tiger 2: Bush Rescue HD - 0100BC701417A000,0100BC701417A000,,,2021-05-04 23:11:57,1 -3564,Nintendo Labo Toy-Con 03: Vehicle Kit - 01001E9003502000,01001E9003502000,services;status-menus;crash,menus,2022-08-03 17:20:11,3 -3566,Say No! More - 01001C3012912000,01001C3012912000,status-playable,playable,2021-05-06 13:43:34,1 -3567,Potion Party - 01000A4014596000,01000A4014596000,status-playable,playable,2021-05-06 14:26:54,1 -3568,Saviors of Sapphire Wings & Stranger of Sword City Revisited - 0100AA00128BA000,0100AA00128BA000,status-menus;crash,menus,2022-10-24 23:00:46,4 -3569,Lost Words: Beyond the Page - 0100018013124000,0100018013124000,status-playable,playable,2022-10-24 17:03:21,2 -3570,Lost Lands 3: The Golden Curse - 0100156014C6A000,0100156014C6A000,status-playable;nvdec,playable,2022-10-24 16:30:00,2 -3571,ISLAND - 0100F06013710000,0100F06013710000,status-playable,playable,2021-05-06 15:11:47,1 -3572,SilverStarChess - 010016D00A964000,010016D00A964000,status-playable,playable,2021-05-06 15:25:57,1 -3573,Breathedge - 01000AA013A5E000,01000AA013A5E000,UE4;nvdec;status-playable,playable,2021-05-06 15:44:28,1 -3574,Isolomus - 010001F0145A8000,010001F0145A8000,services;status-boots,boots,2021-11-03 7:48:21,2 -3575,Relicta - 01002AD013C52000,01002AD013C52000,status-playable;nvdec;UE4,playable,2022-10-31 12:48:33,2 -3576,Rain on Your Parade - 0100BDD014232000,0100BDD014232000,status-playable,playable,2021-05-06 19:32:04,1 -3579,World's End Club Demo - 0100BE101453E000,0100BE101453E000,,,2021-05-08 16:22:55,1 -3580,Very Very Valet Demo - 01006C8014DDA000,01006C8014DDA000,status-boots;crash;Needs Update;demo,boots,2022-11-12 15:26:13,2 -3581,Miitopia Demo - 01007DA0140E8000,01007DA0140E8000,services;status-menus;crash;demo,menus,2023-02-24 11:50:58,3 -3582,Knight Squad 2 - 010024B00E1D6000,010024B00E1D6000,status-playable;nvdec;online-broken,playable,2022-10-28 18:38:09,1 -3584,Tonarini kanojo noiru shiawase ~ Curious Queen ~ [ となりに彼女のいる幸せ~Curious Queen~] - 0100A18011BE4000,0100A18011BE4000,,,2021-05-11 13:40:34,1 -3585,Mainichi mamoru miya sanchino kyou nogohan [ 毎日♪ 衛宮さんちの今日のごはん ] - 01005E6010114000,01005E6010114000,,,2021-05-11 13:45:30,1 -3588,Commander Keen in Keen Dreams: Definitive Edition - 0100E400129EC000,0100E400129EC000,status-playable,playable,2021-05-11 19:33:54,1 -3589,SD Gundam G Generation Genesis (0100CEE0140CE000),0100CEE0140CE000,,,2021-05-13 12:29:50,1 -3590,Poison Control - 0100EB6012FD2000,0100EB6012FD2000,status-playable,playable,2021-05-16 14:01:54,1 -3591,My Riding Stables 2: A New Adventure - 010042A00FBF0000,010042A00FBF0000,status-playable,playable,2021-05-16 14:14:59,1 -3592,Dragon Audit - 0100DBC00BD5A000,0100DBC00BD5A000,crash;status-ingame,ingame,2021-05-16 14:24:46,1 -3595,Arcaea - 0100E680149DC000,0100E680149DC000,status-playable,playable,2023-03-16 19:31:21,11 -3596,Calculator - 010004701504A000,010004701504A000,status-playable,playable,2021-06-11 13:27:20,2 -3597,Rune Factory 5 (JP) - 010014D01216E000,010014D01216E000,gpu;status-ingame,ingame,2021-06-01 12:00:36,5 -3599,SD GUNDAM G GENERATION CROSS RAYS PREMIUM G SOUND EDITION - 010022900D3EC00,,status-playable;nvdec,playable,2022-09-15 20:45:57,3 -3601,War Of Stealth - assassin - 01004FA01391A000,01004FA01391A000,status-playable,playable,2021-05-22 17:34:38,1 -3602,Under Leaves - 01008F3013E4E000,01008F3013E4E000,status-playable,playable,2021-05-22 18:13:58,1 -3603,Travel Mosaics 7: Fantastic Berlin - ,,status-playable,playable,2021-05-22 18:37:34,1 -3604,Travel Mosaics 6: Christmas Around the World - 0100D520119D6000,0100D520119D6000,status-playable,playable,2021-05-26 0:52:47,1 -3605,Travel Mosaics 5: Waltzing Vienna - 01004C4010C00000,01004C4010C00000,status-playable,playable,2021-05-26 11:49:35,1 -3606,Travel Mosaics 4: Adventures in Rio - 010096D010BFE000,010096D010BFE000,status-playable,playable,2021-05-26 11:54:58,1 -3607,Travel Mosaics 3: Tokyo Animated - 0100102010BFC000,0100102010BFC000,status-playable,playable,2021-05-26 12:06:27,1 -3608,Travel Mosaics 2: Roman Holiday - 0100A8D010BFA000,0100A8D010BFA000,status-playable,playable,2021-05-26 12:33:16,1 -3609,Travel Mosaics: A Paris Tour - 01007DB00A226000,01007DB00A226000,status-playable,playable,2021-05-26 12:42:26,1 -3610,Rolling Gunner - 010076200CA16000,010076200CA16000,status-playable,playable,2021-05-26 12:54:18,1 -3611,MotoGP 21 - 01000F5013820000,01000F5013820000,gpu;status-ingame;nvdec;online-broken;UE4;ldn-untested,ingame,2022-10-28 21:35:08,2 -3612,Little Mouse's Encyclopedia - 0100FE0014200000,0100FE0014200000,status-playable,playable,2022-10-28 19:38:58,2 -3615,Himehibi 1 gakki - Princess Days - 0100F8D0129F4000,0100F8D0129F4000,status-nothing;crash,nothing,2021-11-03 8:34:19,6 -3616,Dokapon Up! Mugen no Roulette - 010048100D51A000,010048100D51A000,gpu;status-menus;Needs Update,menus,2022-12-08 19:39:10,6 -3617,Umineko no Naku Koro ni Saku - うみねこのなく頃に咲 ~猫箱と夢想の交響曲~ - 01006A300BA2C000,01006A300BA2C000,status-playable;audout,playable,2023-05-04 17:25:23,4 -3618,Paint (0100946012446000),0100946012446000,,,2021-05-31 12:57:19,1 -3622,Knockout City - 01009EF00DDB4000,01009EF00DDB4000,services;status-boots;online-broken,boots,2022-12-09 9:48:58,4 -3623,Trine 2 - 010064E00A932000,010064E00A932000,nvdec;status-playable,playable,2021-06-03 11:45:20,1 -3624,Trine 3: The Artifacts of Power - 0100DEC00A934000,0100DEC00A934000,ldn-untested;online;status-playable,playable,2021-06-03 12:01:24,1 -3625,Jamestown+ - 010000100C4B8000,010000100C4B8000,,,2021-06-05 9:09:39,1 -3626,Lonely Mountains Downhill - 0100A0C00E0DE000,0100A0C00E0DE000,status-playable;online-broken,playable,2024-07-04 5:08:11,4 -3627,Densha de go!! Hashirou Yamanote Sen - 0100BC501355A000,0100BC501355A000,status-playable;nvdec;UE4,playable,2023-11-09 7:47:58,14 -3631,Warui Ohsama to Rippana Yuusha - 0100556011C10000,0100556011C10000,,,2021-06-24 14:22:15,1 -3632,TONY HAWK'S™ PRO SKATER™ 1 + 2 - 0100CC00102B4000,0100CC00102B4000,gpu;status-ingame;Needs Update,ingame,2024-09-24 8:18:14,11 -3633,Mario Golf: Super Rush - 0100C9C00E25C000,0100C9C00E25C000,gpu;status-ingame,ingame,2024-08-18 21:31:48,17 -3634,Neo : The World Ends with You (DEMO)- 新すばらしきこのせかい (体験版) - 01001AB0141A8000,01001AB0141A8000,crash;status-ingame,ingame,2021-07-18 7:29:18,7 -3635,LEGO Builder’s Journey - 01005EE0140AE000 ,01005EE0140AE000,,,2021-06-26 21:31:59,1 -3638,Disgaea 6: Defiance of Destiny - 0100ABC013136000,0100ABC013136000,deadlock;status-ingame,ingame,2023-04-15 0:50:32,9 -3641,Game Builder Garage - 0100FA5010788000,0100FA5010788000,status-ingame,ingame,2024-04-20 21:46:22,4 -3644,Miitopia - 01003DA010E8A000,01003DA010E8A000,gpu;services-horizon;status-ingame,ingame,2024-09-06 10:39:13,26 -3645,DOOM Eternal - 0100B1A00D8CE000,0100B1A00D8CE000,gpu;slow;status-ingame;nvdec;online-broken,ingame,2024-08-28 15:57:17,7 -3646,Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy DX+ - 0100FDB00AA800000,0100FDB00AA80000,gpu;status-ingame;nvdec;opengl,ingame,2022-09-14 15:15:55,3 -3647,Sky: Children of the Light - 0100C52011460000,0100C52011460000,cpu;status-nothing;online-broken,nothing,2023-02-23 10:57:10,7 -3649,Tantei bokumetsu 探偵撲滅 - 0100CBA014014000,0100CBA014014000,,,2021-07-11 15:58:42,1 -3650,"The Legend of Heroes: Sen no Kiseki I - 0100AD0014AB4000 (Japan, Asia)",0100AD0014AB4000,,,2021-07-12 11:15:02,1 -3651,SmileBASIC 4 - 0100C9100B06A000,0100C9100B06A000,gpu;status-menus,menus,2021-07-29 17:35:59,2 -3652,The Legend of Zelda: Breath of the Wild Demo - 0100509005AF2000,0100509005AF2000,status-ingame;demo,ingame,2022-12-24 5:02:58,4 -3653,Kanda Alice mo Suiri Suru 神田アリス も 推理スル - 01003BD013E30000,01003BD013E30000,,,2021-07-15 0:30:16,1 -3655,Crayon Shin-chan Ora to Hakase no Natsuyasumi Owaranai Nanokakan no Tabi - 01005BA00F486000,01005BA00F486000,status-playable,playable,2021-07-21 10:41:33,2 -3657,The Legend of Zelda: Skyward Sword HD - 01002DA013484000,01002DA013484000,gpu;status-ingame,ingame,2024-06-14 16:48:29,29 -3659,Monster wo taoshite tsuyoi ken ya yoroi wo te ni shinasai. Shinde mo akiramezu ni tsuyoku nari nasai. Yuushatai ga maoh wo taosu sono hi wo shinzite imasu. - モンスターを倒して強い剣や鎧を手にしなさい。死んでも諦めずに強くなりなさい。勇者隊が魔王を倒すその日を信じています。 - 01004E10142FE000,01004E10142FE000,crash;status-ingame,ingame,2021-07-23 10:56:44,3 -3660,Suguru Nature - 0100BF9012AC6000,0100BF9012AC6000,crash;status-ingame,ingame,2021-07-29 11:36:27,3 -3662,Cris Tales - 0100B0400EBC4000,0100B0400EBC4000,crash;status-ingame,ingame,2021-07-29 15:10:53,3 -3666,"Ren'ai, Karichaimashita 恋愛、借りちゃいました - 0100142013cea000",0100142013cea000,,,2021-07-28 0:37:48,1 -3668,Dai Gyakuten Saiban 1 & 2 -Naruhodou Ryuunosuke no Bouken to Kakugo- - 大逆転裁判1&2 -成歩堂龍ノ介の冒險と覺悟- - 0100D7F00FB1A000,0100D7F00FB1A000,,,2021-07-29 6:38:53,1 -3669,New Pokémon Snap - 0100F4300BF2C000,0100F4300BF2C000,status-playable,playable,2023-01-15 23:26:57,4 -3671,Astro Port Shmup Collection - 01000A601139E000,01000A601139E000,,,2021-08-03 13:14:37,1 -3672,Monster Hunter Stories 2: Wings of Ruin ID 0100E2101144600,,services;status-ingame,ingame,2022-07-10 19:27:30,5 -3674,Picross S GENESIS and Master System edition - ピクロスS MEGA DRIVE & MARKⅢ edition - 010089701567A000,010089701567A000,,,2021-08-10 4:18:06,2 -3676,ooKing simulator pizza -010033c014666000,010033c014666000,,,2021-08-15 20:49:24,2 -3677,Everyday♪ Today's MENU for EMIYA Family - 010031B012254000,010031B012254000,,,2021-08-15 19:27:36,1 -3679,Hatsune Miku Logic Paint S - 0100B4101459A000,0100B4101459A000,,,2021-08-19 0:23:50,2 -3680,シークレットゲーム KILLER QUEEN for Nintendo Switch,,,,2021-08-21 8:12:41,1 -3681,リベリオンズ: Secret Game 2nd Stage for Nintendo Switch - 010096000B658000,010096000B658000,,,2021-08-21 8:28:40,1 -3682,Susanoh -Nihon Shinwa RPG- - スサノオ ~日本神話RPG~ - 0100F3001472A000,0100F3001472A000,,,2021-08-22 4:20:18,1 -3683,Genkai Tokki Moero Crystal H- 極限凸起 萌情水晶 H - 한계돌파 모에로크리스탈 H - 0100D7E0110B2000,0100D7E0110B2000,32-bit;status-playable,playable,2022-06-06 0:42:09,8 -3688,World's End Club - 01005A2014362000,01005A2014362000,,,2021-08-28 13:20:14,1 -3689,Axiom Verge 2,,,,2021-09-02 8:01:30,1 -3690,Slot - 01007DD011608000,01007DD011608000,,,2021-09-04 1:40:29,1 -3691,Golf - 01007D8010018000,01007D8010018000,,,2021-09-04 1:55:37,1 -3692,World Soccer - 010083B00B97A000,010083B00B97A000,,,2021-09-04 2:07:29,1 -3693,DogFight - 0100E80013BB0000,0100E80013BB0000,,,2021-09-04 14:12:30,1 -3694,Demon Gaze Extra - デモンゲイズ エクストラ - 01005110142A8000,01005110142A8000,,,2021-09-04 15:06:19,1 -3695,Spy Alarm - 01000E6015350000,01000E6015350000,services;status-ingame,ingame,2022-12-09 10:12:51,2 -3696,Rainbocorns - 01005EE0142F6000,01005EE0142F6000,,,2021-09-04 15:53:49,1 -3697,ZOMB - 0100E2B00E064000,0100E2B00E064000,,,2021-09-04 16:07:19,1 -3698,Bubble - 01004A4011CB4000,01004A4011CB4000,,,2021-09-04 16:16:24,1 -3699,Guitar - 0100A2D00EFBE000,0100A2D00EFBE000,,,2021-09-04 18:54:14,1 -3700,Hunt - 01000DE0125B8000,01000DE0125B8000,,,2021-09-06 11:29:19,1 -3701,Fight - 0100995013404000,0100995013404000,,,2021-09-06 11:31:42,1 -3702,Table Tennis - 0100CB00125B6000,0100CB00125B6000,,,2021-09-06 11:55:38,1 -3703,No More Heroes 3 - 01007C600EB42000,01007C600EB42000,gpu;status-ingame;UE4,ingame,2024-03-11 17:06:19,4 -3704,Idol Days - 愛怒流でいす - 01002EC014BCA000,01002EC014BCA000,gpu;status-ingame;crash,ingame,2021-12-19 15:31:28,3 -3705,Checkers - 01001B80124E4000,01001B80124E4000,,,2021-09-06 16:07:24,1 -3707,King's Bounty II,,,,2021-09-07 21:12:57,1 -3708,KeyWe - 0100E2B012056000,0100E2B012056000,,,2021-09-07 22:30:10,1 -3712,Sonic Colors Ultimate [010040E0116B8000],010040E0116B8000,status-playable,playable,2022-11-12 21:24:26,4 -3713,SpongeBob: Krusty Cook-Off - 01000D3013E8C000,01000D3013E8C000,,,2021-09-08 13:26:06,1 -3714,Snakes & Ladders - 010052C00ABFA000,010052C00ABFA000,,,2021-09-08 13:45:26,1 -3715,Darts - 01005A6010A04000,01005A6010A04000,,,2021-09-08 14:18:00,1 -3716,Luna's Fishing Garden - 0100374015A2C000,0100374015A2C000,,,2021-09-11 11:38:34,1 -3718,WarioWare: Get It Together! - 0100563010E0C000,0100563010E0C000,gpu;status-ingame;opengl-backend-bug,ingame,2024-04-23 1:04:56,5 -3719,SINce Memories Off the starry sky - 0100E94014792000,0100E94014792000,,,2021-09-17 2:03:06,1 -3720,Bang Dream Girls Band Party for Nintendo Switch,,status-playable,playable,2021-09-19 3:06:58,6 -3721,ENDER LILIES: Quietus of the Knights - 0100CCF012E9A000,0100CCF012E9A000,,,2021-09-19 1:10:44,1 -3724,Lost in Random - 01005FE01291A000,01005FE01291A000,gpu;status-ingame,ingame,2022-12-18 7:09:28,9 -3725,Miyamoto Sansuu Kyoushitsu Kashikoku Naru Puzzle Daizen - 宮本算数教室 賢くなるパズル 大全 - 01004ED014160000,01004ED014160000,,,2021-09-30 12:09:06,1 -3726,Hot Wheels Unleashed,,,,2021-10-01 1:14:17,1 -3727,Memories Off - 0100978013276000,0100978013276000,,,2021-10-05 18:50:06,1 -3729,Blue Reflections Second Light [Demo] [JP] - 01002FA01610A000,01002FA01610A000,,,2021-10-08 9:19:34,1 -3730,Metroid Dread - 010093801237C000,010093801237C000,status-playable,playable,2023-11-13 4:02:36,25 -3731,Kentucky Route Zero [0100327005C94000],0100327005C94000,status-playable,playable,2024-04-09 23:22:46,2 -3732,Cotton/Guardian Saturn Tribute Games,,gpu;status-boots,boots,2022-11-27 21:00:51,2 -3733,The Great Ace Attorney Chronicles - 010036E00FB20000,010036E00FB20000,status-playable,playable,2023-06-22 21:26:29,3 -3736,第六妖守-Dairoku-Di Liu Yao Shou -Dairoku -0100ad80135f4000,0100ad80135f4000,,,2021-10-17 4:42:47,1 -3737,Touhou Genso Wanderer -Lotus Labyrinth R- - 0100a7a015e4c000,0100a7a015e4c000,,,2021-10-17 20:10:40,1 -3740,Crysis 2 Remastered - 0100582010AE0000,0100582010AE0000,deadlock;status-menus,menus,2023-09-21 10:46:17,4 -3741,Crysis 3 Remastered - 0100CD3010AE2000 ,0100CD3010AE2000,deadlock;status-menus,menus,2023-09-10 16:03:50,3 -3743,Dying Light: Platinum Edition - 01008c8012920000,01008c8012920000,services-horizon;status-boots,boots,2024-03-11 10:43:32,3 -3745,Steel Assault - 01001C6014772000,01001C6014772000,status-playable,playable,2022-12-06 14:48:30,4 -3746,Foreclosed - 0100AE001256E000,0100AE001256E000,status-ingame;crash;Needs More Attention;nvdec,ingame,2022-12-06 14:41:12,1 -3751,Nintendo 64 - Nintendo Switch Online - 0100C9A00ECE6000,0100C9A00ECE6000,gpu;status-ingame;vulkan,ingame,2024-04-23 20:21:07,15 -3752,Mario Party Superstars - 01006FE013472000,01006FE013472000,gpu;status-ingame;ldn-works;mac-bug,ingame,2024-05-16 11:23:34,23 -3756,Wheel of Fortune [010033600ADE6000],010033600ADE6000,status-boots;crash;Needs More Attention;nvdec,boots,2023-11-12 20:29:24,6 -3757,Abarenbo Tengu & Zombie Nation - 010040E012A5A000,010040E012A5A000,,,2021-10-31 18:24:00,1 -3758,Eight Dragons - 01003AD013BD2000,01003AD013BD2000,status-playable;nvdec,playable,2022-10-27 14:47:28,2 -3760,Restless Night [0100FF201568E000],0100FF201568E000,status-nothing;crash,nothing,2022-02-09 10:54:49,2 -3762,rRootage Reloaded [01005CD015986000],01005CD015986000,status-playable,playable,2022-08-05 23:20:18,10 -3763,Just Dance 2022 - 0100EA6014BB8000,0100EA6014BB8000,gpu;services;status-ingame;crash;Needs Update,ingame,2022-10-28 11:01:53,5 -3764,LEGO Marvel Super Heroes - 01006F600FFC8000,01006F600FFC8000,status-playable,playable,2024-09-10 19:02:19,7 -3765,Destructivator SE [0100D74012E0A000],0100D74012E0A000,,,2021-11-06 14:12:07,1 -3766,Diablo 2 Resurrected - 0100726014352000,0100726014352000,gpu;status-ingame;nvdec,ingame,2023-08-18 18:42:47,16 -3767,World War Z [010099F013898000],010099F013898000,,,2021-11-09 12:00:01,1 -3768,STAR WARS Jedi Knight II Jedi Outcast - 0100BB500EACA000,0100BB500EACA000,gpu;status-ingame,ingame,2022-09-15 22:51:00,3 -3770,Shin Megami Tensei V - 010063B012DC6000,010063B012DC6000,status-playable;UE4,playable,2024-02-21 6:30:07,38 -3771,Mercenaries Rebirth Call of the Wild Lynx - [010031e01627e000],010031e01627e000,,,2021-11-13 17:14:02,1 -3772,Summer Pockets REFLECTION BLUE - 0100273013ECA000,0100273013ECA000,,,2021-11-15 14:25:26,1 -3773,Spelunky - 0100710013ABA000,0100710013ABA000,status-playable,playable,2021-11-20 17:45:03,2 -3774,Spelunky 2 - 01007EC013ABC000,01007EC013ABC000,,,2021-11-17 19:31:16,1 -3775,MARSUPILAMI-HOOBADVENTURE - 010074F014628000,010074F014628000,,,2021-11-19 7:43:14,1 -3776,Pokémon Brilliant Diamond - 0100000011D90000,0100000011D90000,gpu;status-ingame;ldn-works,ingame,2024-08-28 13:26:35,54 -3778,Ice Station Z - 0100954014718000,0100954014718000,status-menus;crash,menus,2021-11-21 20:02:15,4 -3784,Shiro - 01000244016BAE000,01000244016BAE00,gpu;status-ingame,ingame,2024-01-13 8:54:39,2 -3785,Yuru Camp △ Have a nice day! - 0100D12014FC2000,0100D12014FC2000,,,2021-11-29 10:46:03,1 -3786,Iridium - 010095C016C14000,010095C016C14000,status-playable,playable,2022-08-05 23:19:53,7 -3787,Black The Fall - 0100502007f54000,0100502007f54000,,,2021-12-05 3:08:22,1 -3788,Loop Hero - 010004E01523C000,010004E01523C000,,,2021-12-12 18:11:42,2 -3790,The Battle Cats Unite! - 01001E50141BC000,01001E50141BC000,deadlock;status-ingame,ingame,2021-12-14 21:38:34,2 -3792,Life is Strange: True Colors [0100500012AB4000],0100500012AB4000,gpu;status-ingame;UE4,ingame,2024-04-08 16:11:52,8 -3796,Deathsmiles I・II - 01009120119B4000,01009120119B4000,status-playable,playable,2024-04-08 19:29:00,7 -3797,Deedlit in Wonder Labyrinth - 0100EF0015A9A000,0100EF0015A9A000,deadlock;status-ingame;Needs Update;Incomplete,ingame,2022-01-19 10:00:59,3 -3798,Hamidashi Creative - 01006FF014152000,01006FF014152000,gpu;status-ingame,ingame,2021-12-19 15:30:51,2 -3799,Ys IX: Monstrum Nox - 0100E390124D8000,0100E390124D8000,status-playable,playable,2022-06-12 4:14:42,11 -3801,Animal Crossing New Horizons Island Transfer Tool - 0100F38011CFE000,0100F38011CFE000,services;status-ingame;Needs Update;Incomplete,ingame,2022-12-07 13:51:19,2 -3802,Pokémon Mystery Dungeon Rescue Team DX (DEMO) - 010040800FB54000,010040800FB54000,,,2022-01-09 2:15:04,1 -3804,Monopoly Madness - 01005FF013DC2000,01005FF013DC2000,status-playable,playable,2022-01-29 21:13:52,2 -3805,DoDonPachi Resurrection - 怒首領蜂大復活 - 01005A001489A000,01005A001489A000,status-ingame;32-bit;crash,ingame,2024-01-25 14:37:32,5 -3808,Shadow Man Remastered - 0100C3A013840000,0100C3A013840000,gpu;status-ingame,ingame,2024-05-20 6:01:39,5 -3814,Star Wars - Knights Of The Old Republic - 0100854015868000,0100854015868000,gpu;deadlock;status-boots,boots,2024-02-12 10:13:51,4 -3815,Gunvolt Chronicles: Luminous Avenger iX 2 - 0100763015C2E000,0100763015C2E000,status-nothing;crash;Needs Update,nothing,2022-04-29 15:34:34,4 -3816,Furaiki 4 - 風雨来記4 - 010046601125A000,010046601125A000,,,2022-01-27 17:37:47,1 -3817,Pokémon Legends: Arceus - 01001F5010DFA000,01001F5010DFA000,gpu;status-ingame;Needs Update;ldn-works,ingame,2024-09-19 10:02:02,83 -3826,Demon Gaze EXTRA - 0100FCC0168FC000,0100FCC0168FC000,,,2022-02-05 16:25:26,1 -3828,Fatal Frame: Maiden of Black Water - 0100BEB015604000,0100BEB015604000,status-playable,playable,2023-07-05 16:01:40,5 -3830,OlliOlli World - 0100C5D01128E000,0100C5D01128E000,,,2022-02-08 13:01:22,1 -3831,Horse Club Adventures - 0100A6B012932000,0100A6B012932000,,,2022-02-10 1:59:25,4 -3832,Toree 3D (0100E9701479E000),0100E9701479E000,,,2022-02-15 18:41:33,1 -3833,Picross S7,,status-playable,playable,2022-02-16 12:51:25,2 -3834,Nintendo Switch Sports Online Play Test - 01000EE017182000,01000EE017182000,gpu;status-ingame,ingame,2022-03-16 7:44:12,3 -3836,MLB The Show 22 Tech Test - 0100A9F01776A000,0100A9F01776A000,services;status-nothing;crash;Needs Update;demo,nothing,2022-12-09 10:28:34,2 -3837,Cruis'n Blast - 0100B41013C82000,0100B41013C82000,gpu;status-ingame,ingame,2023-07-30 10:33:47,10 -3839,Crunchyroll - 0100C090153B4000,0100C090153B4000,,,2022-02-20 13:56:29,2 -3840,PUZZLE & DRAGONS Nintendo Switch Edition - 01001D701375A000,01001D701375A000,,,2022-02-20 11:01:34,1 -3842,Hatsune Miku Connecting Puzzle TAMAGOTORI - 0100118016036000,0100118016036000,,,2022-02-23 2:07:05,1 -3844,Mononoke Slashdown - 0100F3A00FB78000,0100F3A00FB78000,status-menus;crash,menus,2022-05-04 20:55:47,4 -3846,Tsukihime - A piece of blue glass moon- - 01001DC01486A800,01001DC01486A800,,,2022-02-28 14:35:38,1 -3849,Kirby and the Forgotten Land (Demo version) - 010091201605A000,010091201605A000,status-playable;demo,playable,2022-08-21 21:03:01,3 -3850,Super Zangyura - 01001DA016942000,01001DA016942000,,,2022-03-05 4:54:47,1 -3851,Atelier Sophie 2: The Alchemist of the Mysterious Dream - 010082A01538E000,010082A01538E000,status-ingame;crash,ingame,2022-12-01 4:34:03,10 -3852,SEGA Genesis - Nintendo Switch Online - 0100B3C014BDA000,0100B3C014BDA000,status-nothing;crash;regression,nothing,2022-04-11 7:27:21,3 -3853,TRIANGLE STRATEGY - 0100CC80140F8000,0100CC80140F8000,gpu;status-ingame;Needs Update;UE4;vulkan-backend-bug,ingame,2024-09-25 20:48:37,23 -3854,Pretty Girls Breakers! - 0100DD2017994000,0100DD2017994000,,,2022-03-10 3:43:51,1 -3855,Chocobo GP - 01006A30124CA000,01006A30124CA000,gpu;status-ingame;crash,ingame,2022-06-04 14:52:18,11 -3856,.hack//G.U. Last Recode - 0100BA9014A02000,0100BA9014A02000,deadlock;status-boots,boots,2022-03-12 19:15:47,6 -3857,Monster World IV - 01008CF014560000,01008CF014560000,,,2022-03-12 4:25:01,1 -3858,Cosmos Bit - 01004810171EA000,01004810171EA000,,,2022-03-12 4:25:58,1 -3859,The Cruel King and the Great Hero - 0100EBA01548E000,0100EBA01548E000,gpu;services;status-ingame,ingame,2022-12-02 7:02:08,2 -3860,Lateral Freeze ,,,,2022-03-15 16:00:18,1 -3862,Miss Kobayashi's Dragonmaid Burst Forth!! Choro-gon☆Breath Demo - 0100FA7017CA6000,0100FA7017CA6000,,,2022-03-19 7:26:02,1 -3863,Neptunia X SENRAN KAGURA Ninja Wars - 01006D90165A2000,01006D90165A2000,,,2022-03-21 6:58:28,1 -3864,13 Sentinels Aegis Rim Demo - 0100C54015002000,0100C54015002000,status-playable;demo,playable,2022-04-13 14:15:48,2 -3866,Kirby and the Forgotten Land - 01004D300C5AE000,01004D300C5AE000,gpu;status-ingame,ingame,2024-03-11 17:11:21,35 -3867,Love of Love Emperor of LOVE! - 010015C017776000,010015C017776000,,,2022-03-25 8:46:23,1 -3868,Hatsune Miku JIGSAW PUZZLE - 010092E016B26000,010092E016B26000,,,2022-03-25 8:49:39,1 -3870,The Ryuo's Work is Never Done! - 010033100EE12000,010033100EE12000,status-playable,playable,2022-03-29 0:35:37,1 -3871,Miss Kobayashi's Dragonmaid Burst Forth!! Choro-gon☆Breath - 01005AB015994000,01005AB015994000,gpu;status-playable,playable,2022-03-28 2:22:24,1 -3875,MLB® The Show™ 22 - 0100876015D74000,0100876015D74000,gpu;slow;status-ingame,ingame,2023-04-25 6:28:43,8 -3878,13 Sentinels Aegis Rim - 01003FC01670C000,01003FC01670C000,slow;status-ingame,ingame,2024-06-10 20:33:38,9 -3879,Metal Dogs ,,,,2022-04-15 14:32:19,1 -3881,STAR WARS: The Force Unleashed - 0100153014544000,0100153014544000,status-playable,playable,2024-05-01 17:41:28,3 -3882,JKSV - 00000000000000000,0000000000000000,,,2022-04-21 23:34:59,1 -3886,Jigsaw Masterpieces - 0100BB800E0D2000,0100BB800E0D2000,,,2022-05-04 21:14:45,1 -3887,QuickSpot - 0100E4501677E000,0100E4501677E000,,,2022-05-04 21:14:48,1 -3888,Yomawari 3 - 0100F47016F26000,0100F47016F26000,status-playable,playable,2022-05-10 8:26:51,6 -3889,Marco & The Galaxy Dragon Demo - 0100DA7017C9E000,0100DA7017C9E000,gpu;status-ingame;demo,ingame,2023-06-03 13:05:33,2 -3890,Demon Turf: Neon Splash - 010010C017B28000,010010C017B28000,,,2022-05-04 21:35:59,1 -3896,Taiko Risshiden V DX - 0100346017304000,0100346017304000,status-nothing;crash,nothing,2022-06-06 16:25:31,3 -3901,The Stanley Parable: Ultra Deluxe - 010029300E5C4000,010029300E5C4000,gpu;status-ingame,ingame,2024-07-12 23:18:26,6 -3902,CHAOS;HEAD NOAH - 0100957016B90000,0100957016B90000,status-playable,playable,2022-06-02 22:57:19,1 -3904,LOOPERS - 010062A0178A8000,010062A0178A8000,gpu;slow;status-ingame;crash,ingame,2022-06-17 19:21:45,3 -3905,二ノ国 白き聖灰の女王 - 010032400E700000,010032400E700000,services;status-menus;32-bit,menus,2023-04-16 17:11:06,8 -3907,even if TEMPEST - 010095E01581C000,010095E01581C000,gpu;status-ingame,ingame,2023-06-22 23:50:25,8 -3908,Mario Strikers Battle League Football First Kick [01008A30182F2000],01008A30182F2000,,,2022-06-09 20:58:06,2 -3910,Mario Strikers: Battle League Football - 010019401051C000,010019401051C000,status-boots;crash;nvdec,boots,2024-05-07 6:23:56,13 -3911,鬼滅之刃:火之神血風譚 / Demon Slayer -Kimetsu no Yaiba- The Hinokami Chronicles - 0100309016E7A000,0100309016E7A000,status-playable;UE4,playable,2024-08-08 4:51:49,12 -3912,Teenage Mutant Ninja Turtles: Shredder's Revenge - 0100FE701475A000,0100FE701475A000,deadlock;status-boots;crash,boots,2024-09-28 9:31:39,14 -3913,MOFUMOFU Sensen - 0100B46017500000,0100B46017500000,gpu;status-menus,menus,2024-09-21 21:51:08,2 -3914,OMORI - 010014E017B14000,010014E017B14000,status-playable,playable,2023-01-07 20:21:02,2 -3916,30 in 1 game collection vol. 2 - 0100DAC013D0A000,0100DAC013D0A000,status-playable;online-broken,playable,2022-10-15 17:22:27,6 -3917,索尼克:起源 / Sonic Origins - 01009FB016286000,01009FB016286000,status-ingame;crash,ingame,2024-06-02 7:20:15,10 -3919,Fire Emblem Warriors: Three Hopes - 010071F0143EA000,010071F0143EA000,gpu;status-ingame;nvdec,ingame,2024-05-01 7:07:42,6 -3920,LEGO Star Wars: The Skywalker Saga - 010042D00D900000,010042D00D900000,gpu;slow;status-ingame,ingame,2024-04-13 20:08:46,4 -3922,Pocky & Rocky Reshrined - 01000AF015596000,01000AF015596000,,,2022-06-26 21:34:16,1 -3923,Horgihugh And Friends - 010085301797E000,010085301797E000,,,2022-06-26 21:34:22,1 -3924,The movie The Quintessential Bride -Five Memories Spent with You- - 01005E9016BDE000,01005E9016BDE000,status-playable,playable,2023-12-14 14:43:43,2 -3925,nx-hbmenu - 0000000000000000,0000000000000000,status-boots;Needs Update;homebrew,boots,2024-04-06 22:05:32,12 -3926,Portal 2 - 0100ABD01785C000,0100ABD01785C000,gpu;status-ingame,ingame,2023-02-20 22:44:15,3 -3927,Portal - 01007BB017812000,01007BB017812000,status-playable,playable,2024-06-12 3:48:29,5 -3928,EVE ghost enemies - 01007BE0160D6000,01007BE0160D6000,gpu;status-ingame,ingame,2023-01-14 3:13:30,4 -3929,PowerSlave Exhumed - 01008E100E416000,01008E100E416000,gpu;status-ingame,ingame,2023-07-31 23:19:10,2 -3930,Quake - 0100BA5012E54000,0100BA5012E54000,gpu;status-menus;crash,menus,2022-08-08 12:40:34,3 -3932,Rustler - 010071E0145F8000,010071E0145F8000,,,2022-07-06 2:09:18,1 -3933,Colors Live - 010020500BD86000,010020500BD86000,gpu;services;status-boots;crash,boots,2023-02-26 2:51:07,3 -3934,WAIFU IMPACT - 0100393016D7E000,0100393016D7E000,,,2022-07-08 22:16:51,1 -3935,Sherlock Holmes: The Devil's Daughter - 010020F014DBE000,010020F014DBE000,gpu;status-ingame,ingame,2022-07-11 0:07:26,3 -3936,0100EE40143B6000 - Fire Emblem Warriors: Three Hopes (Japan) ,0100EE40143B6000,,,2022-07-11 18:41:30,4 -3938,Wunderling - 01001C400482C000,01001C400482C000,audio;status-ingame;crash,ingame,2022-09-10 13:20:12,2 -3939,SYNTHETIK: Ultimate - 01009BF00E7D2000,01009BF00E7D2000,gpu;status-ingame;crash,ingame,2022-08-30 3:19:25,2 -3940,Breakout: Recharged - 010022C016DC8000,010022C016DC8000,slow;status-ingame,ingame,2022-11-06 15:32:57,3 -3942,Banner Saga Trilogy - 0100CE800B94A000,0100CE800B94A000,slow;status-playable,playable,2024-03-06 11:25:20,2 -3943,CAPCOM BELT ACTION COLLECTION - 0100F6400A77E000,0100F6400A77E000,status-playable;online;ldn-untested,playable,2022-07-21 20:51:23,1 -3944,死神と少女/Shinigami to Shoujo - 0100AFA01750C000,0100AFA01750C000,gpu;status-ingame;Incomplete,ingame,2024-03-22 1:06:45,8 -3946,Darius Cozmic Collection Special Edition - 010059C00BED4000,010059C00BED4000,status-playable,playable,2022-07-22 16:26:50,1 -3950,Earthworms - 0100DCE00B756000,0100DCE00B756000,status-playable,playable,2022-07-25 16:28:55,1 -3951,LIVE A LIVE - 0100CF801776C000,0100CF801776C000,status-playable;UE4;amd-vendor-bug,playable,2023-02-05 15:12:07,15 -3952,Fit Boxing - 0100807008868000 ,0100807008868000,status-playable,playable,2022-07-26 19:24:55,1 -3953,Gurimugurimoa OnceMore Demo - 01002C8018554000,01002C8018554000,status-playable,playable,2022-07-29 22:07:31,2 -3954,Trinity Trigger Demo - 010048201891A000,010048201891A000,,,2022-07-26 23:32:10,1 -3955,SD GUNDAM BATTLE ALLIANCE Demo - 0100829018568000,0100829018568000,audio;status-ingame;crash;demo,ingame,2022-08-01 23:01:20,4 -3956,Fortnite - 010025400AECE000,010025400AECE000,services-horizon;status-nothing,nothing,2024-04-06 18:23:25,5 -3957,Furi Definitive Edition - 01000EC00AF98000,01000EC00AF98000,status-playable,playable,2022-07-27 12:35:08,1 -3958,Jackbox Party Starter - 0100814017CB6000,0100814017CB6000,Incomplete,,2022-07-29 22:18:07,3 -3959,Digimon Survive - 010047500B7B2000,010047500B7B2000,,,2022-07-29 12:33:28,1 -3960,Xenoblade Chronicles 3 - 010074F013262000,010074F013262000,gpu;status-ingame;crash;nvdec;vulkan-backend-bug;amd-vendor-bug,ingame,2024-08-06 19:56:44,73 -3961,Slime Rancher: Plortable Edition - 0100B9C0148D0000,0100B9C0148D0000,,,2022-07-30 6:02:55,1 -3962,Lost Ruins - 01008AD013A86800,01008AD013A86800,gpu;status-ingame,ingame,2023-02-19 14:09:00,3 -3963,Heroes of Hammerwatch - 0100D2B00BC54000,0100D2B00BC54000,status-playable,playable,2022-08-01 18:30:21,1 -3965,Zombie Army 4: Dead War - ,,,,2022-08-01 20:03:53,1 -3966,Plague Inc: Evolved - 01000CE00CBB8000,01000CE00CBB8000,,,2022-08-02 2:32:33,1 -3968,Kona - 0100464009294000,0100464009294000,status-playable,playable,2022-08-03 12:48:19,1 -3969,Minecraft: Story Mode - The Complete Adventure - 010059C002AC2000,010059C002AC2000,status-boots;crash;online-broken,boots,2022-08-04 18:56:58,1 -3970,LA-MULANA - 010026000F662800,010026000F662800,gpu;status-ingame,ingame,2022-08-12 1:06:21,3 -3971,Minecraft: Story Mode - Season Two - 01003EF007ABA000,01003EF007ABA000,status-playable;online-broken,playable,2023-03-04 0:30:50,3 -3972,My Riding Stables - Life with Horses - 010028F00ABAE000,010028F00ABAE000,status-playable,playable,2022-08-05 21:39:07,1 -3973,NBA Playgrounds - 010002900294A000,010002900294A000,status-playable;nvdec;online-broken;UE4,playable,2022-08-06 17:06:59,1 -3975,Nintendo Labo Toy-Con 02: Robot Kit - 01009AB0034E0000,01009AB0034E0000,gpu;status-ingame,ingame,2022-08-07 13:03:19,1 -3976,Nintendo Labo Toy-Con 04: VR Kit - 0100165003504000,0100165003504000,services;status-boots;crash,boots,2023-01-17 22:30:24,4 -3977,Azure Striker GUNVOLT 3 - 01004E90149AA000,01004E90149AA000,status-playable,playable,2022-08-10 13:46:49,2 -3978,Clumsy Rush Ultimate Guys - 0100A8A0174A4000,0100A8A0174A4000,,,2022-08-10 2:12:29,1 -3979,The DioField Chronicle Demo - 01009D901624A000,01009D901624A000,,,2022-08-10 2:18:16,1 -3980,Professional Construction - The Simulation - 0100A9800A1B6000,0100A9800A1B6000,slow;status-playable,playable,2022-08-10 15:15:45,1 -3981,"Pokémon: Let's Go, Pikachu! demo - 01009AD008C4C000",01009AD008C4C000,slow;status-playable;demo,playable,2023-11-26 11:23:20,3 -3984,Retail Interactive Display Menu (DevQuestMenu)- 0100069000078000,0100069000078000,services;status-nothing;crash,nothing,2022-08-11 13:19:41,1 -3985,Retimed - 010086E00BCB2000,010086E00BCB2000,status-playable,playable,2022-08-11 13:32:39,1 -3986,DRAGON BALL Z: KAKAROT + A NEW POWER AWAKENS SET - 010051C0134F8000,010051C0134F8000,status-playable;vulkan-backend-bug,playable,2024-08-28 0:03:50,5 -3987,Runbow Deluxe Edition - 0100D37009B8A000,0100D37009B8A000,status-playable;online-broken,playable,2022-08-12 12:20:25,1 -3988,Saturday Morning RPG - 0100F0000869C000,0100F0000869C000,status-playable;nvdec,playable,2022-08-12 12:41:50,1 -3989,Slain Back from Hell - 0100BB100AF4C000,0100BB100AF4C000,status-playable,playable,2022-08-12 23:36:19,1 -3990,Spidersaurs - 010040B017830000,010040B017830000,,,2022-08-14 3:12:30,1 -3993,月姫 -A piece of blue glass moon- - 01001DC01486A000,01001DC01486A000,,,2022-08-15 15:41:29,1 -3994,Spacecats with Lasers - 0100D9B0041CE000,0100D9B0041CE000,status-playable,playable,2022-08-15 17:22:44,1 -3995,Spellspire - 0100E74007EAC000,0100E74007EAC000,status-playable,playable,2022-08-16 11:21:21,1 -3996,Spot The Difference - 0100E04009BD4000,0100E04009BD4000,status-playable,playable,2022-08-16 11:49:52,1 -3997,Spot the Differences: Party! - 010052100D1B4000,010052100D1B4000,status-playable,playable,2022-08-16 11:55:26,1 -3998,Demon Throttle - 01001DA015650000,01001DA015650000,,,2022-08-17 0:54:49,1 -3999,Kirby’s Dream Buffet - 0100A8E016236000,0100A8E016236000,status-ingame;crash;online-broken;Needs Update;ldn-works,ingame,2024-03-03 17:04:44,5 -4000,DOTORI - 0100DBD013C92000,0100DBD013C92000,,,2022-08-17 15:10:52,1 -4002,Syberia 2 - 010028C003FD6000,010028C003FD6000,gpu;status-ingame,ingame,2022-08-24 12:43:03,2 -4003,Drive Buy - 010093A0108DC000,010093A0108DC000,,,2022-08-21 3:30:18,1 -4004,Taiko no Tatsujin Rhythm Festival Demo - 0100AA2018846000,0100AA2018846000,,,2022-08-22 23:31:57,1 -4005,Splatoon 3: Splatfest World Premiere - 0100BA0018500000,0100BA0018500000,gpu;status-ingame;online-broken;demo,ingame,2022-09-19 3:17:12,5 -4006,Transcripted - 010009F004E66000,010009F004E66000,status-playable,playable,2022-08-25 12:13:11,1 -4010,eBaseball Powerful Pro Yakyuu 2022 - 0100BCA016636000,0100BCA016636000,gpu;services-horizon;status-nothing;crash,nothing,2024-05-26 23:07:19,32 -4011,Firegirl: Hack 'n Splash Rescue DX - 0100DAF016D48000,0100DAF016D48000,,,2022-08-30 15:32:22,1 -4012,Little Noah: Scion of Paradise - 0100535014D76000,0100535014D76000,status-playable;opengl-backend-bug,playable,2022-09-14 4:17:13,2 -4013,Tinykin - 0100A73016576000,0100A73016576000,gpu;status-ingame,ingame,2023-06-18 12:12:24,3 -4014,Youtubers Life - 00100A7700CCAA4000,00100A7700CCAA40,status-playable;nvdec,playable,2022-09-03 14:56:19,1 -4015,Cozy Grove - 01003370136EA000,01003370136EA000,gpu;status-ingame,ingame,2023-07-30 22:22:19,2 -4016,A Duel Hand Disaster: Trackher - 010026B006802000,010026B006802000,status-playable;nvdec;online-working,playable,2022-09-04 14:24:55,1 -4017,Angry Bunnies: Colossal Carrot Crusade - 0100F3500D05E000,0100F3500D05E000,status-playable;online-broken,playable,2022-09-04 14:53:26,1 -4018,CONTRA: ROGUE CORPS Demo - 0100B8200ECA6000,0100B8200ECA6000,gpu;status-ingame,ingame,2022-09-04 16:46:52,1 -4021,The Gardener and the Wild Vines - 01006350148DA000,01006350148DA000,gpu;status-ingame,ingame,2024-04-29 16:32:10,2 -4025,HAAK - 0100822012D76000,0100822012D76000,gpu;status-ingame,ingame,2023-02-19 14:31:05,2 -4026,Temtem - 0100C8B012DEA000,0100C8B012DEA000,status-menus;online-broken,menus,2022-12-17 17:36:11,4 -4027,Oniken - 010057C00D374000,010057C00D374000,status-playable,playable,2022-09-10 14:22:38,1 -4028,Ori and the Blind Forest: Definitive Edition Demo - 010005800F46E000,010005800F46E000,status-playable,playable,2022-09-10 14:40:12,1 -4029,Spyro Reignited Trilogy - 010077B00E046000,010077B00E046000,status-playable;nvdec;UE4,playable,2022-09-11 18:38:33,1 -4031,Disgaea 4 Complete+ Demo - 010068C00F324000,010068C00F324000,status-playable;nvdec,playable,2022-09-13 15:21:59,1 -4032,Disney Classic Games: Aladdin and The Lion King - 0100A2F00EEFC000 ,0100A2F00EEFC000,status-playable;online-broken,playable,2022-09-13 15:44:17,1 -4035,Pokémon Shield - 01008DB008C2C000,01008DB008C2C000,deadlock;status-ingame;crash;online-broken;ldn-works;LAN,ingame,2024-08-12 7:20:22,7 -4036,Shadowrun Returns - 0100371013B3E000,0100371013B3E000,gpu;status-ingame;Needs Update,ingame,2022-10-04 21:32:31,4 -4037,Shadowrun: Dragonfall - Director's Cut - 01008310154C4000,01008310154C4000,gpu;status-ingame;Needs Update,ingame,2022-10-04 20:52:18,3 -4038,Shadowrun: Hong Kong - Extended Edition - 0100C610154CA000,0100C610154CA000,gpu;status-ingame;Needs Update,ingame,2022-10-04 20:53:09,3 -4039,Animal Drifters - 010057F0195DE000,010057F0195DE000,,,2022-09-20 21:43:54,1 -4040,Paddles - 0100F5E019300000,0100F5E019300000,,,2022-09-20 21:46:00,1 -4041,River City Girls Zero - 0100E2D015DEA000,0100E2D015DEA000,,,2022-09-20 22:18:30,1 -4042,JoJos Bizarre Adventure All-Star Battle R - 01008120128C2000,01008120128C2000,status-playable,playable,2022-12-03 10:45:10,2 -4044,OneShot: World Machine EE,,,,2022-09-22 8:11:47,1 -4045,Taiko no Tatsujin: Rhythm Festival - 0100BCA0135A0000,0100BCA0135A0000,status-playable,playable,2023-11-13 13:16:34,17 -4046,Trinity Trigger - 01002D7010A54000,01002D7010A54000,status-ingame;crash,ingame,2023-03-03 3:09:09,4 -4048,太鼓之達人 咚咚雷音祭 - 01002460135a4000,01002460135a4000,,,2022-09-27 7:17:54,1 -4049,Life is Strange Remastered - 0100DC301186A000,0100DC301186A000,status-playable;UE4,playable,2022-10-03 16:54:44,12 -4050,Life is Strange: Before the Storm Remastered - 010008501186E000,010008501186E000,status-playable,playable,2023-09-28 17:15:44,4 -4051,Hatsune Miku: Project DIVA Mega Mix - 01001CC00FA1A000,01001CC00FA1A000,audio;status-playable;online-broken,playable,2024-01-07 23:12:57,10 -4053,Shovel Knight Dig - 0100B62017E68000,0100B62017E68000,,,2022-09-30 20:51:35,1 -4054,Couch Co-Op Bundle Vol. 2 - 01000E301107A000,01000E301107A000,status-playable;nvdec,playable,2022-10-02 12:04:21,1 -4056,Shadowverse: Champion’s Battle - 01003B90136DA000,01003B90136DA000,status-nothing;crash,nothing,2023-03-06 0:31:50,7 -4057,Jinrui no Ninasama he - 0100F4D00D8BE000,0100F4D00D8BE000,status-ingame;crash,ingame,2023-03-07 2:04:17,1 -4058,XEL - 0100CC9015360000,0100CC9015360000,gpu;status-ingame,ingame,2022-10-03 10:19:39,2 -4059,Catmaze - 01000A1018DF4000,01000A1018DF4000,,,2022-10-03 11:10:48,1 -4060,Lost Lands: Dark Overlord - 0100BDD010AC8000 ,0100BDD010AC8000,status-playable,playable,2022-10-03 11:52:58,1 -4061,STAR WARS Episode I: Racer - 0100BD100FFBE000 ,0100BD100FFBE000,slow;status-playable;nvdec,playable,2022-10-03 16:08:36,1 -4062,Story of Seasons: Friends of Mineral Town - 0100ED400EEC2000,0100ED400EEC2000,status-playable,playable,2022-10-03 16:40:31,1 -4063,Collar X Malice -Unlimited- - 0100E3B00F412000 ,0100E3B00F412000,status-playable;nvdec,playable,2022-10-04 15:30:40,1 -4064,Bullet Soul - 0100DA4017FC2000,0100DA4017FC2000,,,2022-10-05 9:41:49,1 -4065,Kwaidan ~Azuma manor story~ - 0100894011F62000 ,0100894011F62000,status-playable,playable,2022-10-05 12:50:44,1 -4066,Shantae: Risky's Revenge - Director's Cut - 0100ADA012370000,0100ADA012370000,status-playable,playable,2022-10-06 20:47:39,2 -4067,NieR:Automata The End of YoRHa Edition - 0100B8E016F76000,0100B8E016F76000,slow;status-ingame;crash,ingame,2024-05-17 1:06:34,23 -4069,Star Seeker: The secret of the sourcerous Standoff - 0100DFC018D86000,0100DFC018D86000,,,2022-10-09 15:46:05,1 -4072,Hyrule Warriors: Age of Calamity - Demo Version - 0100A2C01320E000,0100A2C01320E000,slow;status-playable,playable,2022-10-10 17:37:41,1 -4073,My Universe - Fashion Boutique - 0100F71011A0A000,0100F71011A0A000,status-playable;nvdec,playable,2022-10-12 14:54:19,1 -4075,Star Trek Prodigy: Supernova - 01009DF015776000,01009DF015776000,status-playable;nvdec;UE4;opengl-backend-bug,playable,2022-10-14 10:18:50,2 -4076,Dungeon Nightmares 1 + 2 Collection - 0100926013600000,0100926013600000,status-playable,playable,2022-10-17 18:54:22,1 -4077,Food Truck Tycoon - 0100F3900D0F0000 ,0100F3900D0F0000,status-playable,playable,2022-10-17 20:15:55,1 -4078,Persona 5 Royal - 01005CA01580EOO,,,,2022-10-17 21:00:21,1 -4079,Nintendo Switch Sports - 0100D2F00D5C0000,0100D2F00D5C0000,deadlock;status-boots,boots,2024-09-10 14:20:24,24 -4080,Grim Legends 2: Song Of The Dark Swan - 010078E012D80000,010078E012D80000,status-playable;nvdec,playable,2022-10-18 12:58:45,1 -4082,My Universe - Cooking Star Restaurant - 0100CD5011A02000,0100CD5011A02000,status-playable,playable,2022-10-19 10:00:44,1 -4083,Not Tonight - 0100DAF00D0E2000 ,0100DAF00D0E2000,status-playable;nvdec,playable,2022-10-19 11:48:47,1 -4084,Outbreak: The New Nightmare - 0100B450130FC000,0100B450130FC000,status-playable,playable,2022-10-19 15:42:07,1 -4085,Alan Wake Remaster - 01000623017A58000,01000623017A5800,,,2022-10-21 6:13:39,2 -4086,Persona 5 Royal - 01005CA01580E000,01005CA01580E000,gpu;status-ingame,ingame,2024-08-17 21:45:15,15 -4087,Shing! (サムライフォース:斬!) - 01009050133B4000,01009050133B4000,status-playable;nvdec,playable,2022-10-22 0:48:54,2 -4089,Mario + Rabbids® Sparks of Hope - 0100317013770000,0100317013770000,gpu;status-ingame;Needs Update,ingame,2024-06-20 19:56:19,35 -4090,3D Arcade Fishing - 010010C013F2A000,010010C013F2A000,status-playable,playable,2022-10-25 21:50:51,1 -4091,Aerial Knight's Never Yield - 0100E9B013D4A000,0100E9B013D4A000,status-playable,playable,2022-10-25 22:05:00,1 -4092,Aluna: Sentinel of the Shards - 010045201487C000,010045201487C000,status-playable;nvdec,playable,2022-10-25 22:17:03,1 -4093,Atelier Firis: The Alchemist and the Mysterious Journey DX - 010023201421E000,010023201421E000,gpu;status-ingame;nvdec,ingame,2022-10-25 22:46:19,1 -4094,Atelier Sophie: The Alchemist of the Mysterious Book DX - 01001A5014220000,01001A5014220000,status-playable,playable,2022-10-25 23:06:20,1 -4095,Backworlds - 0100FEA014316000,0100FEA014316000,status-playable,playable,2022-10-25 23:20:34,1 -4097,Bakumatsu Renka SHINSENGUMI - 01008260138C4000,01008260138C4000,status-playable,playable,2022-10-25 23:37:31,1 -4098,Bamerang - 01008D30128E0000,01008D30128E0000,status-playable,playable,2022-10-26 0:29:39,1 -4099,Battle Axe - 0100747011890000,0100747011890000,status-playable,playable,2022-10-26 0:38:01,1 -4100,Beautiful Desolation - 01006B0014590000,01006B0014590000,gpu;status-ingame;nvdec,ingame,2022-10-26 10:34:38,1 -4101,Bladed Fury - 0100DF0011A6A000,0100DF0011A6A000,status-playable,playable,2022-10-26 11:36:26,1 -4102,Boris The Rocket - 010092C013FB8000,010092C013FB8000,status-playable,playable,2022-10-26 13:23:09,1 -4103,BraveMatch - 010081501371E000,010081501371E000,status-playable;UE4,playable,2022-10-26 13:32:15,1 -4104,Brawl Chess - 010068F00F444000,010068F00F444000,status-playable;nvdec,playable,2022-10-26 13:59:17,1 -4108,CLANNAD Side Stories - 01007B01372C000,,status-playable,playable,2022-10-26 15:03:04,1 -4109,DC Super Hero Girls™: Teen Power - 0100F8F00C4F2000,0100F8F00C4F2000,nvdec,,2022-10-26 15:16:47,1 -4110,Devil Slayer - Raksasi - 01003C900EFF6000,01003C900EFF6000,status-playable,playable,2022-10-26 19:42:32,1 -4111,Disagaea 6: Defiance of Destiny Demo - 0100918014B02000,0100918014B02000,status-playable;demo,playable,2022-10-26 20:02:04,1 -4113,DreamWorks Spirit Lucky's Big Adventure - 0100236011B4C000,0100236011B4C000,status-playable,playable,2022-10-27 13:30:52,1 -4114,Dull Grey - 010068D0141F2000,010068D0141F2000,status-playable,playable,2022-10-27 13:40:38,1 -4115,Dunk Lords - 0100EC30140B6000,0100EC30140B6000,status-playable,playable,2024-06-26 0:07:26,3 -4116,Earth Defense Force: World Brothers - 0100298014030000,0100298014030000,status-playable;UE4,playable,2022-10-27 14:13:31,1 -4117,EQI - 01000FA0149B6000,01000FA0149B6000,status-playable;nvdec;UE4,playable,2022-10-27 16:42:32,1 -4118,Exodemon - 0100A82013976000,0100A82013976000,status-playable,playable,2022-10-27 20:17:52,1 -4119,Famicom Detective Club: The Girl Who Stands Behind - 0100D670126F6000,0100D670126F6000,status-playable;nvdec,playable,2022-10-27 20:41:40,1 -4120,Famicom Detective Club: The Missing Heir - 010033F0126F4000,010033F0126F4000,status-playable;nvdec,playable,2022-10-27 20:56:23,1 -4121,Fighting EX Layer Another Dash - 0100D02014048000,0100D02014048000,status-playable;online-broken;UE4,playable,2024-04-07 10:22:33,2 -4122,Fire: Ungh's Quest - 010025C014798000,010025C014798000,status-playable;nvdec,playable,2022-10-27 21:41:26,1 -4125,Haunted Dawn: The Zombie Apocalypse - 01009E6014F18000,01009E6014F18000,status-playable,playable,2022-10-28 12:31:51,1 -4126,Yomawari: The Long Night Collection - 010043D00BA3200,,Incomplete,,2022-10-29 10:23:17,6 -4128,Splatoon 3 - 0100C2500FC20000,0100C2500FC20000,status-playable;ldn-works;opengl-backend-bug;LAN;amd-vendor-bug,playable,2024-08-04 23:49:11,38 -4129,Bayonetta 3 - 01004A4010FEA000,01004A4010FEA000,gpu;status-ingame;crash;nvdec;vulkan-backend-bug;opengl-backend-bug;amd-vendor-bug;ASTC,ingame,2024-09-28 14:34:33,45 -4130,Instant Sports Tennis - 010031B0145B8000,010031B0145B8000,status-playable,playable,2022-10-28 16:42:17,1 -4131,Just Die Already - 0100AC600CF0A000,0100AC600CF0A000,status-playable;UE4,playable,2022-12-13 13:37:50,2 -4132,King of Seas Demo - 0100515014A94000,0100515014A94000,status-playable;nvdec;UE4,playable,2022-10-28 18:09:31,1 -4133,King of Seas - 01008D80148C8000,01008D80148C8000,status-playable;nvdec;UE4,playable,2022-10-28 18:29:41,1 -4134,Layers of Fear 2 - 01001730144DA000,01001730144DA000,status-playable;nvdec;UE4,playable,2022-10-28 18:49:52,1 -4135,Leisure Suit Larry - Wet Dreams Dry Twice - 010031A0135CA000,010031A0135CA000,status-playable,playable,2022-10-28 19:00:57,1 -4136,Life of Fly 2 - 010069A01506E000,010069A01506E000,slow;status-playable,playable,2022-10-28 19:26:52,1 -4137,Maneater - 010093D00CB22000,010093D00CB22000,status-playable;nvdec;UE4,playable,2024-05-21 16:11:57,3 -4138,Mighty Goose - 0100AD701344C000,0100AD701344C000,status-playable;nvdec,playable,2022-10-28 20:25:38,1 -4139,Missing Features 2D - 0100E3601495C000,0100E3601495C000,status-playable,playable,2022-10-28 20:52:54,1 -4140,Moorkuhn Kart 2 - 010045C00F274000,010045C00F274000,status-playable;online-broken,playable,2022-10-28 21:10:35,1 -4141,NINJA GAIDEN 3: Razor's Edge - 01002AF014F4C000,01002AF014F4C000,status-playable;nvdec,playable,2023-08-11 8:25:31,3 -4142,Nongunz: Doppelganger Edition - 0100542012884000,0100542012884000,status-playable,playable,2022-10-29 12:00:39,1 -4143,O---O - 01002E6014FC4000,01002E6014FC4000,status-playable,playable,2022-10-29 12:12:14,1 -4144,Off And On Again - 01006F5013202000,01006F5013202000,status-playable,playable,2022-10-29 19:46:26,3 -4145,Outbreak: Endless Nightmares - 0100A0D013464000,0100A0D013464000,status-playable,playable,2022-10-29 12:35:49,1 -4146,Picross S6 - 010025901432A000,010025901432A000,status-playable,playable,2022-10-29 17:52:19,1 -4147,Alfred Hitchcock - Vertigo - 0100DC7013F14000,0100DC7013F14000,,,2022-10-30 7:55:43,1 -4148,Port Royale 4 - 01007EF013CA0000,01007EF013CA0000,status-menus;crash;nvdec,menus,2022-10-30 14:34:06,1 -4149,Quantum Replica - 010045101288A000,010045101288A000,status-playable;nvdec;UE4,playable,2022-10-30 21:17:22,1 -4150,R-TYPE FINAL 2 - 0100F930136B6000,0100F930136B6000,slow;status-ingame;nvdec;UE4,ingame,2022-10-30 21:46:29,1 -4152,Retrograde Arena - 01000ED014A2C000,01000ED014A2C000,status-playable;online-broken,playable,2022-10-31 13:38:58,1 -4153,Rising Hell - 010020C012F48000,010020C012F48000,status-playable,playable,2022-10-31 13:54:02,1 -4154,Grand Theft Auto III - The Definitive Edition [0100C3C012718000],0100C3C012718000,,,2022-10-31 20:13:51,1 -4156,Grand Theft Auto: San Andreas - The Definitive Edition [010065A014024000],010065A014024000,,,2022-10-31 20:13:56,1 -4157,Hell Pie - 01000938017E5C000,01000938017E5C00,status-playable;nvdec;UE4,playable,2022-11-03 16:48:46,5 -4158,Zengeon - 0100057011E50000,0100057011E50000,services-horizon;status-boots;crash,boots,2024-04-29 15:43:07,2 -4159,Teenage Mutant Ninja Turtles: The Cowabunga Collection - 0100FDB0154E4000,0100FDB0154E4000,status-playable,playable,2024-01-22 19:39:04,2 -4160,Rolling Sky 2 - 0100579011B40000 ,0100579011B40000,status-playable,playable,2022-11-03 10:21:12,1 -4161,RWBY: Grimm Eclipse - 0100E21013908000,0100E21013908000,status-playable;online-broken,playable,2022-11-03 10:44:01,1 -4164,Shin Megami Tensei III Nocturne HD Remaster - 01003B0012DC2000,01003B0012DC2000,status-playable,playable,2022-11-03 22:53:27,1 -4165,BALDO THE GUARDIAN OWLS - 0100a75005e92000,0100a75005e92000,,,2022-11-04 6:36:18,1 -4166,Skate City - 0100134011E32000,0100134011E32000,status-playable,playable,2022-11-04 11:37:39,1 -4167,SnowRunner - 0100FBD13AB6000,,services;status-boots;crash,boots,2023-10-07 0:01:16,5 -4168,Spooky Chase - 010097C01336A000,010097C01336A000,status-playable,playable,2022-11-04 12:17:44,1 -4169,Strange Field Football - 01000A6013F86000,01000A6013F86000,status-playable,playable,2022-11-04 12:25:57,1 -4170,Subnautica Below Zero - 010014C011146000,010014C011146000,status-playable,playable,2022-12-23 14:15:13,1 -4171,Subnautica - 0100429011144000,0100429011144000,status-playable;vulkan-backend-bug,playable,2022-11-04 13:07:29,1 -4173,Pyramid Quest - 0100A4E017372000,0100A4E017372000,gpu;status-ingame,ingame,2023-08-16 21:14:52,3 -4174,Sonic Frontiers - 01004AD014BF0000,01004AD014BF0000,gpu;deadlock;status-ingame;amd-vendor-bug;intel-vendor-bug,ingame,2024-09-05 9:18:53,52 -4177,Metro 2033 Redux - 0100D4900E82C000,0100D4900E82C000,gpu;status-ingame,ingame,2022-11-09 10:53:13,3 -4180,Tactics Ogre Reborn - 0100E12013C1A000,0100E12013C1A000,status-playable;vulkan-backend-bug,playable,2024-04-09 6:21:35,3 -4182,"Good Night, Knight - 01003AD0123A2000",01003AD0123A2000,status-nothing;crash,nothing,2023-07-30 23:38:13,2 -4183,Sumire - 01003D50126A4000,01003D50126A4000,status-playable,playable,2022-11-12 13:40:43,1 -4184,Sunblaze - 0100BFE014476000,0100BFE014476000,status-playable,playable,2022-11-12 13:59:23,1 -4185,Taiwan Monster Fruit : Prologue - 010028E013E0A000,010028E013E0A000,Incomplete,,2022-11-12 14:10:20,1 -4187,Tested on Humans: Escape Room - 01006F701507A000,01006F701507A000,status-playable,playable,2022-11-12 14:42:52,1 -4188,The Longing - 0100F3D0122C2000,0100F3D0122C2000,gpu;status-ingame,ingame,2022-11-12 15:00:58,1 -4189,Total Arcade Racing - 0100A64010D48000,0100A64010D48000,status-playable,playable,2022-11-12 15:12:48,1 -4190,Very Very Valet - 0100379013A62000,0100379013A62000,status-playable;nvdec,playable,2022-11-12 15:25:51,1 -4191,Persona 4 Arena ULTIMAX [010075A016A3A000),010075A016A3A000,,,2022-11-12 17:27:51,1 -4192,Piofiore: Episodio 1926 - 01002B20174EE000,01002B20174EE000,status-playable,playable,2022-11-23 18:36:05,2 -4193,Seven Pirates H - 0100D6F016676000,0100D6F016676000,status-playable,playable,2024-06-03 14:54:12,3 -4194,Paradigm Paradox - 0100DC70174E0000,0100DC70174E0000,status-playable;vulkan-backend-bug,playable,2022-12-03 22:28:13,3 -4195,Wanna Survive - 0100D67013910000,0100D67013910000,status-playable,playable,2022-11-12 21:15:43,1 -4196,Wardogs: Red's Return - 010056901285A000,010056901285A000,status-playable,playable,2022-11-13 15:29:01,1 -4197,Warhammer Age of Sigmar: Storm Ground - 010031201307A000,010031201307A000,status-playable;nvdec;online-broken;UE4,playable,2022-11-13 15:46:14,1 -4198,Wing of Darkness - 010035B012F2000,,status-playable;UE4,playable,2022-11-13 16:03:51,1 -4199,Ninja Gaiden Sigma - 0100E2F014F46000,0100E2F014F46000,status-playable;nvdec,playable,2022-11-13 16:27:02,1 -4200,Ninja Gaiden Sigma 2 - 0100696014FA000,,status-playable;nvdec,playable,2024-07-31 21:53:48,12 -4201,MONSTER HUNTER STORIES 2: WINGS OF RUIN Trial Version - 010042501329E000,010042501329E000,status-playable;demo,playable,2022-11-13 22:20:26,1 -4202,112 Operator - 0100D82015774000,0100D82015774000,status-playable;nvdec,playable,2022-11-13 22:42:50,1 -4204,Aery - Calm Mind - 0100A801539000,,status-playable,playable,2022-11-14 14:26:58,1 -4205,Alex Kidd in Miracle World DX - 010025D01221A000,010025D01221A000,status-playable,playable,2022-11-14 15:01:34,1 -4209,Atari 50 The Anniversary Celebration - 010099801870E000,010099801870E000,slow;status-playable,playable,2022-11-14 19:42:10,4 -4210,FOOTBALL MANAGER 2023 TOUCH - 0100EDC01990E000,0100EDC01990E000,gpu;status-ingame,ingame,2023-08-01 3:40:53,15 -4212,ARIA CHRONICLE - 0100691013C46000,0100691013C46000,status-playable,playable,2022-11-16 13:50:55,1 -4216,B.ARK - 01009B901145C000,01009B901145C000,status-playable;nvdec,playable,2022-11-17 13:35:02,1 -4217,Pokémon Violet - 01008F6008C5E000,01008F6008C5E000,gpu;status-ingame;nvdec;ldn-works;amd-vendor-bug;mac-bug,ingame,2024-07-30 2:51:48,39 -4218,Pokémon Scarlet - 0100A3D008C5C000,0100A3D008C5C000,gpu;status-ingame;nvdec;ldn-works;amd-vendor-bug,ingame,2023-12-14 13:18:29,36 -4219,Bear's Restaurant - 0100CE014A4E000,,status-playable,playable,2024-08-11 21:26:59,2 -4220,BeeFense BeeMastered - 010018F007786000,010018F007786000,status-playable,playable,2022-11-17 15:38:12,1 -4222,Oddworld: Soulstorm - 0100D210177C6000,0100D210177C6000,services-horizon;status-boots;crash,boots,2024-08-18 13:13:26,6 -4224,Aquarium Hololive All CG,,,,2022-11-19 5:12:23,1 -4225,Billion Road - 010057700FF7C000,010057700FF7C000,status-playable,playable,2022-11-19 15:57:43,1 -4226,No Man’s Sky - 0100853015E86000,0100853015E86000,gpu;status-ingame,ingame,2024-07-25 5:18:17,13 -4228,Lunistice - 0100C2E01254C000,0100C2E01254C000,,,2022-11-23 18:44:18,1 -4229,The Oregon Trail - 0100B080184BC000,0100B080184BC000,gpu;status-ingame,ingame,2022-11-25 16:11:49,12 -4232,Smurfs Kart - 01009790186FE000,01009790186FE000,status-playable,playable,2023-10-18 0:55:00,6 -4233,DYSMANTLE - 010008900BC5A000,010008900BC5A000,gpu;status-ingame,ingame,2024-07-15 16:24:12,2 -4234,Happy Animals Mini Golf - 010066C018E50000,010066C018E50000,gpu;status-ingame,ingame,2022-12-04 19:24:28,2 -4237,Pocket Pool - 010019F019168000,010019F019168000,,,2022-11-27 3:36:39,1 -4238,7 Days of Rose - 01002D3019654000,01002D3019654000,,,2022-11-27 20:46:16,1 -4239,Garfield Lasagna Party - 01003C401895E000,01003C401895E000,,,2022-11-27 21:21:09,1 -4240,Paper Bad - 01002A0019914000,01002A0019914000,,,2022-11-27 22:01:45,1 -4242,Ultra Kaiju Monster Rancher - 01008E0019388000,01008E0019388000,,,2022-11-28 2:37:06,1 -4244,The Legend of Heroes: Trails from Zero - 01001920156C2000,01001920156C2000,gpu;status-ingame;mac-bug,ingame,2024-09-14 21:41:41,5 -4249,Harvestella - 0100A280187BC000,0100A280187BC000,status-playable;UE4;vulkan-backend-bug;mac-bug,playable,2024-02-13 7:04:11,4 -4251,Ace Angler: Fishing Spirits - 01007C50132C8000,01007C50132C8000,status-menus;crash,menus,2023-03-03 3:21:39,2 -4255,WHITE DAY : A labyrinth named school - 010076601839C000,010076601839C000,,,2022-12-03 7:17:03,1 -4257,Bravery and Greed - 0100F60017D4E000,0100F60017D4E000,gpu;deadlock;status-boots,boots,2022-12-04 2:23:47,2 -4260,River City Girls 2 - 01002E80168F4000,01002E80168F4000,status-playable,playable,2022-12-07 0:46:27,1 -4262,SAMURAI MAIDEN - 01003CE018AF6000,01003CE018AF6000,,,2022-12-05 2:56:48,1 -4263,Front Mission 1st Remake - 0100F200178F4000,0100F200178F4000,status-playable,playable,2023-06-09 7:44:24,9 -4267,Cardfight!! Vanguard Dear Days - 0100097016B04000,0100097016B04000,,,2022-12-06 0:37:12,1 -4268,MOL SOCCER ONLINE Lite - 010034501756C000,010034501756C000,,,2022-12-06 0:41:58,1 -4269,Goonya Monster - 010026301785A000,010026301785A000,,,2022-12-06 0:46:24,1 -4273,Battle Spirits Connected Battlers - 01009120155CC000,01009120155CC000,,,2022-12-07 0:21:33,1 -4274,TABE-O-JA - 0100E330127FC000,0100E330127FC000,,,2022-12-07 0:26:47,1 -4276,Solomon Program - 01008A801370C000,01008A801370C000,,,2022-12-07 0:33:02,1 -4278,Dragon Quest Treasures - 0100217014266000,0100217014266000,gpu;status-ingame;UE4,ingame,2023-05-09 11:16:52,11 -4279,Sword of the Necromancer - 0100E4701355C000,0100E4701355C000,status-ingame;crash,ingame,2022-12-10 1:28:39,2 -4280,Dragon Prana - 01001C5019074000,01001C5019074000,,,2022-12-10 2:10:53,1 -4281,Burger Patrol - 010013D018E8A000,010013D018E8A000,,,2022-12-10 2:12:02,1 -4284,Witch On The Holy Night - 010012A017F18800,010012A017F18800,status-playable,playable,2023-03-06 23:28:11,3 -4285,Hakoniwa Ranch Sheep Village - 010059C017346000 ,010059C017346000,,,2022-12-13 3:04:03,1 -4286,KASIORI - 0100E75014D7A000,0100E75014D7A000,,,2022-12-13 3:05:00,1 -4287,CRISIS CORE –FINAL FANTASY VII– REUNION - 01004BC0166CC000,01004BC0166CC000,status-playable,playable,2022-12-19 15:53:59,3 -4288,Bitmaster - 010026E0141C8000,010026E0141C8000,status-playable,playable,2022-12-13 14:05:51,1 -4289,Black Book - 0100DD1014AB8000,0100DD1014AB8000,status-playable;nvdec,playable,2022-12-13 16:38:53,1 -4290,Carnivores: Dinosaur Hunt,,status-playable,playable,2022-12-14 18:46:06,1 -4297,Trivial Pursuit Live! 2 - 0100868013FFC000,0100868013FFC000,status-boots,boots,2022-12-19 0:04:33,6 -4300,Astrologaster - 0100B80010C48000,0100B80010C48000,cpu;status-nothing;32-bit;crash,nothing,2023-06-28 15:39:31,3 -4303,Factorio - 01004200189F4000,01004200189F4000,deadlock;status-boots,boots,2024-06-11 19:26:16,8 -4305,The Punchuin - 01004F501962C000,01004F501962C000,,,2022-12-28 0:51:46,2 -4306,Adventure Academia The Fractured Continent - 01006E6018570000,01006E6018570000,,,2022-12-29 3:35:04,1 -4307,Illusion Garden Story ~Daiichi Sangyo Yuukarin~ - 01003FE0168EA000,01003FE0168EA000,,,2022-12-29 3:39:06,1 -4308,Popplings - 010063D019A70000,010063D019A70000,,,2022-12-29 3:42:21,1 -4309,Sports Story - 010025B0100D0000,010025B0100D0000,,,2022-12-29 3:45:54,1 -4310,Death Bite Shibito Magire - 01002EB01802A000,01002EB01802A000,,,2022-12-29 3:51:54,1 -4311,Yu-Gi-Oh! Rush Duel: Dawn of the Battle Royale!! Let's Go! Go Rush!! - 01002D60188DE000,01002D60188DE000,status-ingame;crash,ingame,2023-03-17 1:54:01,2 -4312,Asphalt 9 Legends - 01007B000C834800,01007B000C834800,,,2022-12-30 5:19:35,1 -4313,Arcade Archives TETRIS THE GRAND MASTER - 0100DFD016B7A000,0100DFD016B7A000,status-playable,playable,2024-06-23 1:50:29,3 -4314,Funny action Great adventure for good adults - 0100BB1018082000,0100BB1018082000,,,2023-01-01 3:13:21,1 -4315,Fairy Fencer F Refrain Chord - 010048C01774E000,010048C01774E000,,,2023-01-01 3:15:45,1 -4320,Needy Streamer Overload,,,,2023-01-01 23:24:14,1 -4321,Absolute Hero Remodeling Plan - 0100D7D015CC2000,0100D7D015CC2000,,,2023-01-02 3:42:59,1 -4322,Fourth God -Reunion- - 0100BF50131E6000,0100BF50131E6000,,,2023-01-02 3:45:28,1 -4323,Doll Princess of Marl Kingdom - 010078E0181D0000,010078E0181D0000,,,2023-01-02 3:49:45,1 -4324,Oshiritantei Pupupu Mirai no Meitantei Tojo! - 01000F7014504000,01000F7014504000,,,2023-01-02 3:51:59,1 -4325,Moshikashite Obake no Shatekiya for Nintendo Switch - 0100B580144F6000,0100B580144F6000,,,2023-01-02 3:55:10,1 -4326,Platinum Train-A trip through Japan - 0100B9400654E000,0100B9400654E000,,,2023-01-02 3:58:00,1 -4327,Deadly Eating Adventure Meshi - 01007B70146F6000,01007B70146F6000,,,2023-01-02 4:00:31,1 -4328,Gurimugurimoa OnceMore - 01003F5017760000,01003F5017760000,,,2023-01-02 4:03:49,1 -4329,Neko-Tomo - 0100FA00082BE000,0100FA00082BE000,,,2023-01-03 4:43:05,1 -4330,Wreckfest - 0100DC0012E48000,0100DC0012E48000,status-playable,playable,2023-02-12 16:13:00,2 -4331,VARIOUS DAYLIFE - 0100538017BAC000,0100538017BAC000,,,2023-01-03 13:41:46,1 -4332,WORTH LIFE - 0100D46014648000,0100D46014648000,,,2023-01-04 2:58:27,1 -4333,void* tRrLM2(); //Void Terrarium 2 - 010078D0175EE000,010078D0175EE000,status-playable,playable,2023-12-21 11:00:41,3 -4334,Witch's Garden - 010061501904E000,010061501904E000,gpu;status-ingame;crash;vulkan-backend-bug;opengl-backend-bug,ingame,2023-01-11 2:11:24,1 -4337,PUI PUI MOLCAR Let’s! MOLCAR PARTY! - 01004F6015612000,01004F6015612000,,,2023-01-05 23:05:00,1 -4339,Galleria Underground Labyrinth and the Witch’s Brigade - 01007010157B4000,01007010157B4000,,,2023-01-07 1:05:40,1 -4340,Simona's Requiem - 0100E8C019B36000,0100E8C019B36000,gpu;status-ingame,ingame,2023-02-21 18:29:19,2 -4342,Sonic Frontiers: Demo - 0100D0201A062000,0100D0201A062000,,,2023-01-07 14:50:19,1 -4345,Alphadia Neo - 010043101944A000,010043101944A000,,,2023-01-09 1:47:53,1 -4346,It’s Kunio-kun’s Three Kingdoms! - 0100056014DE0000,0100056014DE0000,,,2023-01-09 1:50:08,1 -4347,Neon White - 0100B9201406A000,0100B9201406A000,status-ingame;crash,ingame,2023-02-02 22:25:06,9 -4349,Typing Quest - 0100B7101475E000,0100B7101475E000,,,2023-01-10 3:23:00,1 -4350,Moorhuhn Jump and Run Traps and Treasures - 0100E3D014ABC000,0100E3D014ABC000,status-playable,playable,2024-03-08 15:10:02,2 -4351,Bandit Detective Buzzard - 01005DB0180B4000,01005DB0180B4000,,,2023-01-10 3:27:34,1 -4355,Curved Space - 0100CE5014026000,0100CE5014026000,status-playable,playable,2023-01-14 22:03:50,1 -4356,Destroy All Humans! - 01009E701356A000,01009E701356A000,gpu;status-ingame;nvdec;UE4,ingame,2023-01-14 22:23:53,1 -4357,Dininho Space Adventure - 010027E0158A6000,010027E0158A6000,status-playable,playable,2023-01-14 22:43:04,1 -4358,Vengeful Guardian: Moonrider - 01003A8018E60000,01003A8018E60000,deadlock;status-boots,boots,2024-03-17 23:35:37,11 -4359,Sumikko Gurashi Atsumare! Sumikko Town - 0100508013B26000,0100508013B26000,,,2023-01-16 4:42:55,1 -4360,Lone Ruin - 0100B6D016EE6000,0100B6D016EE6000,status-ingame;crash;nvdec,ingame,2023-01-17 6:41:19,3 -4363,Falcon Age - 0100C3F011B58000,0100C3F011B58000,,,2023-01-17 2:43:00,1 -4367,Persona 4 Golden - 010062B01525C000,010062B01525C000,status-playable,playable,2024-08-07 17:48:07,15 -4369,Persona 3 Portable - 0100DCD01525A000,0100DCD01525A000,,,2023-01-19 20:20:27,1 -4370,Fire Emblem: Engage - 0100A6301214E000,0100A6301214E000,status-playable;amd-vendor-bug;mac-bug,playable,2024-09-01 23:37:26,49 -4373,Sifu - 01007B5017A12000,01007B5017A12000,,,2023-01-20 19:58:54,5 -4374,Silver Nornir - 0100D1E018F26000,0100D1E018F26000,,,2023-01-21 4:25:06,1 -4375,Together - 010041C013C94000,010041C013C94000,,,2023-01-21 4:26:20,1 -4376,Party Party Time - 0100C6A019C84000,0100C6A019C84000,,,2023-01-21 4:27:40,1 -4379,Sumikko Gurashi Gakkou Seikatsu Hajimerun desu - 010070800D3E2000,010070800D3E2000,,,2023-01-22 2:47:34,1 -4380,Sumikko Gurashi Sugoroku every time in the corner - 0100713012BEC000,0100713012BEC000,,,2023-01-22 2:49:00,1 -4381,EA SPORTS FIFA 23 Nintendo Switch™ Legacy Edition - 01001C8016B4E000,01001C8016B4E000,gpu;status-ingame;crash,ingame,2024-06-10 23:33:05,26 -4382,Gesshizu Mori no Chiisana Nakama-tachi - 0100A0D011014000,0100A0D011014000,,,2023-01-23 3:56:43,1 -4383,Chickip Dancers Norinori Dance de Kokoro mo Odoru - 0100D85017B26000,0100D85017B26000,,,2023-01-23 3:56:47,1 -4384,Go Rally - 010055A0161F4000,010055A0161F4000,gpu;status-ingame,ingame,2023-08-16 21:18:23,5 -4385,Devil Kingdom - 01002F000E8F2000,01002F000E8F2000,status-playable,playable,2023-01-31 8:58:44,2 -4388,Cricket 22 - 0100387017100000,0100387017100000,status-boots;crash,boots,2023-10-18 8:01:57,2 -4389,サマータイムレンダ Another Horizon - 01005940182ec000,01005940182ec000,,,2023-01-28 2:15:25,1 -4390,Letters - a written adventure - 0100CE301678E800,0100CE301678E800,gpu;status-ingame,ingame,2023-02-21 20:12:38,2 -4391,Prinny Presents NIS Classics Volume 1 - 0100A6E01681C000,0100A6E01681C000,status-boots;crash;Needs Update,boots,2023-02-02 7:23:09,5 -4392,SpongeBob SquarePants The Cosmic Shake - 01009FB0172F4000,01009FB0172F4000,gpu;status-ingame;UE4,ingame,2023-08-01 19:29:53,3 -4393,THEATRHYTHM FINAL BAR LINE DEMO Version - 01004C5018BC4000,01004C5018BC4000,,,2023-02-01 16:59:55,1 -4395,"Blue Reflection: Second Light [USA, Europe] - 010071C013390000",010071C013390000,,,2023-02-02 2:44:04,1 -4396,牧場物語 Welcome!ワンダフルライフ - 0100936018EB4000,0100936018EB4000,status-ingame;crash,ingame,2023-04-25 19:43:52,6 -4397,Coromon - 010048D014322000,010048D014322000,,,2023-02-03 0:47:51,1 -4399,Exitman Deluxe - 0100648016520000,0100648016520000,,,2023-02-04 2:02:03,1 -4400,Life is Strange 2 - 0100FD101186C000,0100FD101186C000,status-playable;UE4,playable,2024-07-04 5:05:58,5 -4401,Fashion Police Squad,,Incomplete,,2023-02-05 12:36:50,2 -4402,Grindstone - 0100538012496000,0100538012496000,status-playable,playable,2023-02-08 15:54:06,2 -4403,Kemono Friends Picross - 01004B100BDA2000,01004B100BDA2000,status-playable,playable,2023-02-08 15:54:34,2 -4404,Picross Lord Of The Nazarick - 010012100E8DC000,010012100E8DC000,status-playable,playable,2023-02-08 15:54:56,2 -4406,Shovel Knight Pocket Dungeon - 01006B00126EC000,01006B00126EC000,,,2023-02-08 20:12:10,1 -4407,Game Boy - Nintendo Switch Online - 0100C62011050000,0100C62011050000,status-playable,playable,2023-03-21 12:43:48,2 -4408,ゲームボーイ Nintendo Switch Online - 0100395011044000,0100395011044000,,,2023-02-08 23:53:21,1 -4409,Game Boy Advance - Nintendo Switch Online - 010012F017576000,010012F017576000,status-playable,playable,2023-02-16 20:38:15,4 -4410,Kirby’s Return to Dream Land Deluxe - Demo - 010091D01A57E000,010091D01A57E000,status-playable;demo,playable,2023-02-18 17:21:55,3 -4411,Metroid Prime Remastered - 010012101468C000,010012101468C000,gpu;status-ingame;Needs Update;vulkan-backend-bug;opengl-backend-bug,ingame,2024-05-07 22:48:15,53 -4413,WBSC eBASEBALL: POWER PROS - 01007D9019626000,01007D9019626000,,,2023-02-09 2:56:56,1 -4414,Tricky Towers - 010015F005C8E000,010015F005C8E000,,,2023-02-09 14:58:15,1 -4415,Clunky Hero - [0100879019212000],0100879019212000,,,2023-02-10 7:41:34,1 -4416,Mercenaries Lament Requiem of the Silver Wolf - 0100E44019E4C000,0100E44019E4C000,,,2023-02-11 4:36:39,1 -4417,Pixel Cup Soccer Ultimate Edition - 0100E17019782000,0100E17019782000,,,2023-02-11 14:28:11,1 -4418,Sea of Stars Demo - 010036F0182C4000,010036F0182C4000,status-playable;demo,playable,2023-02-12 15:33:56,2 -4419,MistWorld the after - 010003801579A000,010003801579A000,,,2023-02-13 3:40:17,1 -4420,MistWorld the after 2 - 0100C50016CD6000,0100C50016CD6000,,,2023-02-13 3:40:23,1 -4421,Wonder Boy Anniversary Collection - 0100B49016FF0000,0100B49016FF0000,deadlock;status-nothing,nothing,2023-04-20 16:01:48,2 -4422,OddBallers - 010079A015976000,010079A015976000,,,2023-02-13 3:40:35,1 -4423,Game Doraemon Nobita’s Space War 2021 - 01000200128A4000,01000200128A4000,,,2023-02-14 2:52:57,1 -4424,Doraemon Nobita’s Brain Exercise Adventure - 0100E6F018D10000,0100E6F018D10000,,,2023-02-14 2:54:51,1 -4425,Makai Senki Disgaea 7 - 0100A78017BD6000,0100A78017BD6000,status-playable,playable,2023-10-05 0:22:18,3 -4427,Blanc - 010039501405E000,010039501405E000,gpu;slow;status-ingame,ingame,2023-02-22 14:00:13,3 -4428,Arcade Machine Gopher’s Revenge - 0100DCB019CAE000,0100DCB019CAE000,,,2023-02-15 21:48:46,1 -4429,Santa Claus Goblins Attack - 0100A0901A3E4000,0100A0901A3E4000,,,2023-02-15 21:48:50,1 -4430,Garden of Pets - 010075A01A312000,010075A01A312000,,,2023-02-15 21:48:52,1 -4431,THEATRHYTHM FINAL BAR LINE - 010024201834A000,010024201834A000,status-playable,playable,2023-02-19 19:58:57,5 -4432,Rob Riches - 010061501A2B6000,010061501A2B6000,,,2023-02-16 4:44:01,1 -4433,Cuddly Forest Friends - 01005980198D4000,01005980198D4000,,,2023-02-16 4:44:04,1 -4434,Dragon Quest X Awakening Five Races Offline - 0100E2E0152E4000,0100E2E0152E4000,status-playable;nvdec;UE4,playable,2024-08-20 10:04:24,4 -4435,Persona 5 Strikers Bonus Content - (01002F101340C000),01002F101340C000,,,2023-02-16 20:29:01,1 -4436,Let’s play duema! - 0100EFC0152E0000,0100EFC0152E0000,,,2023-02-18 3:09:55,1 -4437,Let’s play duema Duel Masters! 2022 - 010006C017354000,010006C017354000,,,2023-02-18 3:09:58,1 -4438,Heterogeneous Strongest King Encyclopedia Battle Coliseum - 0100BD00198AA000,0100BD00198AA000,,,2023-02-18 3:10:01,1 -4439,Hopping Girl Kohane EX - 0100D2B018F5C000,0100D2B018F5C000,,,2023-02-19 0:57:25,1 -4440,Earth Defense Force 2 for Nintendo Switch - 010082B013C8C000,010082B013C8C000,,,2023-02-19 1:13:14,1 -4441,Earth Defense Force 3 for Nintendo Switch - 0100E87013C98000,0100E87013C98000,,,2023-02-19 1:13:21,1 -4442,PAC-MAN WORLD Re-PAC - 0100D4401565E000,0100D4401565E000,,,2023-02-19 18:49:11,1 -4443,Eastward - 010071B00F63A000,010071B00F63A000,,,2023-02-19 19:50:36,1 -4444,Arcade Archives THE NEWZEALAND STORY - 010045D019FF0000,010045D019FF0000,,,2023-02-20 1:59:58,1 -4445,Foxy’s Coin Hunt - 0100EE401A378000,0100EE401A378000,,,2023-02-20 2:00:00,1 -4446,Samurai Warrior - 0100B6501A360000,0100B6501A360000,status-playable,playable,2023-02-27 18:42:38,2 -4447,NCL USA Bowl - 010004801A450000,010004801A450000,,,2023-02-20 2:00:05,1 -4449,Dadish - 0100B8B013310000,0100B8B013310000,,,2023-02-20 23:19:02,1 -4450,Dadish 2 - 0100BB70140BA000,0100BB70140BA000,,,2023-02-20 23:28:43,1 -4451,Dadish 3 - 01001010181AA000,01001010181AA000,,,2023-02-20 23:38:55,1 -4453,Digimon World: Next Order - 0100F00014254000,0100F00014254000,status-playable,playable,2023-05-09 20:41:06,9 -4454,PAW Patrol The Movie: Adventure City Calls - 0100FFE013628000,0100FFE013628000,,,2023-02-22 14:09:11,1 -4455,PAW Patrol: Grand Prix - 0100360016800000,0100360016800000,gpu;status-ingame,ingame,2024-05-03 16:16:11,2 -4456,Gigantosaurus Dino Kart - 01001890167FE000,01001890167FE000,,,2023-02-23 3:15:01,1 -4457,Rise Of Fox Hero - 0100A27018ED0000,0100A27018ED0000,,,2023-02-23 3:15:04,1 -4458,MEGALAN 11 - 0100C7501360C000,0100C7501360C000,,,2023-02-23 3:15:06,1 -4459,Rooftop Renegade - 0100644012F0C000,0100644012F0C000,,,2023-02-23 3:15:10,1 -4460,Kirby’s Return to Dream Land Deluxe - 01006B601380E000,01006B601380E000,status-playable,playable,2024-05-16 19:58:04,14 -4461,Snow Bros. Special - 0100bfa01787c000,0100bfa01787c000,,,2023-02-24 2:25:54,1 -4462,Toree 2 - 0100C7301658C000,0100C7301658C000,,,2023-02-24 3:15:04,1 -4463,Red Hands - 2 Player Games - 01003B2019424000,01003B2019424000,,,2023-02-24 3:53:12,1 -4464,nPaint - 0100917019FD6000,0100917019FD6000,,,2023-02-24 3:53:18,1 -4465,Octopath Traveler II - 0100A3501946E000,0100A3501946E000,gpu;status-ingame;amd-vendor-bug,ingame,2024-09-22 11:39:20,29 -4466,Planet Cube Edge - 01007EA019CFC000,01007EA019CFC000,status-playable,playable,2023-03-22 17:10:12,2 -4467,Rumble Sus - 0100CE201946A000,0100CE201946A000,,,2023-02-25 2:19:01,1 -4468,Easy Come Easy Golf - 0100ECF01800C000,0100ECF01800C000,status-playable;online-broken;regression,playable,2024-04-04 16:15:00,5 -4470,Piano Learn and Play - 010038501A6B8000,010038501A6B8000,,,2023-02-26 2:57:12,1 -4471,nOS new Operating System - 01008AE019614000,01008AE019614000,status-playable,playable,2023-03-22 16:49:08,2 -4472,XanChuchamel - 0100D970191B8000,0100D970191B8000,,,2023-02-26 2:57:19,1 -4477,Rune Factory 3 Special - 01001EF017BE6000,01001EF017BE6000,,,2023-03-02 5:34:40,1 -4478,Light Fingers - 0100A0E005E42000,0100A0E005E42000,,,2023-03-03 3:04:09,1 -4479,Disaster Detective Saiga An Indescribable Mystery - 01005BF01A3EC000,01005BF01A3EC000,,,2023-03-04 0:34:26,1 -4480,Touhou Gouyoku Ibun ~ Sunken Fossil World. - 0100031018CFE000,0100031018CFE000,,,2023-03-04 0:34:29,1 -4485,Ninja Box - 0100272009E32000,0100272009E32000,,,2023-03-06 0:31:44,1 -4487,Rubber Bandits - 010060801843A000,010060801843A000,,,2023-03-07 22:26:57,1 -4489,Arcade Archives DON DOKO DON - 0100B6201A2AA000,0100B6201A2AA000,,,2023-03-14 0:13:52,1 -4490,Knights and Guns - 010060A011ECC000,010060A011ECC000,,,2023-03-14 0:13:54,1 -4491,Process of Elimination Demo - 01007F6019E2A000,01007F6019E2A000,,,2023-03-14 0:13:57,1 -4492,DREDGE [ CHAPTER ONE ] - 01000AB0191DA000,01000AB0191DA000,,,2023-03-14 1:49:12,1 -4493,Bayonetta Origins Cereza and the Lost Demon Demo - 010002801A3FA000,010002801A3FA000,gpu;status-ingame;demo,ingame,2024-02-17 6:06:28,4 -4494,Yo-Kai Watch 4++ - 010086C00AF7C000,010086C00AF7C000,status-playable,playable,2024-06-18 20:21:44,13 -4495,Tama Cannon - 0100D8601A848000,0100D8601A848000,,,2023-03-15 1:08:05,1 -4496,The Smile Alchemist - 0100D1C01944E000,0100D1C01944E000,,,2023-03-15 1:08:08,1 -4497,Caverns of Mars Recharged - 01009B201A10E000,01009B201A10E000,,,2023-03-15 1:08:12,1 -4498,Roniu's Tale - 010007E0193A2000,010007E0193A2000,,,2023-03-15 1:08:18,1 -4499,Mythology Waifus Mahjong - 0100C7101A5BE000,0100C7101A5BE000,,,2023-03-15 1:08:23,1 -4500,emoji Kart Racer - 0100AC601A26A000,0100AC601A26A000,,,2023-03-17 1:53:50,1 -4501,Self gunsbase - 01006BB015486000,01006BB015486000,,,2023-03-17 1:53:53,1 -4502,Melon Journey - 0100F68019636000,0100F68019636000,status-playable,playable,2023-04-23 21:20:01,3 -4503,Bayonetta Origins: Cereza and the Lost Demon - 0100CF5010FEC000,0100CF5010FEC000,gpu;status-ingame,ingame,2024-02-27 1:39:49,20 -4504,Uta no prince-sama All star After Secret - 01008030149FE000,01008030149FE000,,,2023-03-18 16:08:20,1 -4505,Hampuzz - 0100D85016326000,0100D85016326000,,,2023-03-19 0:39:40,1 -4506,Gotta Protectors Cart of Darkness - 01007570160E2000,01007570160E2000,,,2023-03-19 0:39:43,1 -4507,Game Type DX - 0100433017DAC000,0100433017DAC000,,,2023-03-20 0:29:23,1 -4508,Ray'z Arcade Chronology - 010088D018302000,010088D018302000,,,2023-03-20 0:29:26,1 -4509,Ruku's HeartBalloon - 01004570192D8000,01004570192D8000,,,2023-03-20 0:29:30,1 -4510,Megaton Musashi - 01001AD00E41E000,01001AD00E41E000,,,2023-03-21 1:11:33,1 -4511,Megaton Musashi X - 0100571018A70000,0100571018A70000,,,2023-03-21 1:11:39,1 -4513,In the Mood - 0100281017990000,0100281017990000,,,2023-03-22 0:53:54,1 -4514,Sixtar Gate STARTRAIL - 0100D29019BE4000,0100D29019BE4000,,,2023-03-22 0:53:57,1 -4515,Spelunker HD Deluxe - 010095701381A000,010095701381A000,,,2023-03-22 0:54:02,1 -4518,Pizza Tycoon - 0100A6301788E000,0100A6301788E000,,,2023-03-23 2:00:04,1 -4520,Cubic - 010081F00EAB8000,010081F00EAB8000,,,2023-03-23 2:00:12,1 -4523,Sherlock Purr - 010019F01AD78000,010019F01AD78000,,,2023-03-24 2:21:34,1 -4524,Blocky Farm - 0100E21016A68000,0100E21016A68000,,,2023-03-24 2:21:40,1 -4525,SD Shin Kamen Rider Ranbu [ SD シン・仮面ライダー 乱舞 ] - 0100CD40192AC000,0100CD40192AC000,,,2023-03-24 23:07:40,3 -4526,Peppa Pig: World Adventures - 0100FF1018E00000,0100FF1018E00000,Incomplete,,2023-03-25 7:46:56,3 -4528,Remnant: From the Ashes - 010010F01418E000,010010F01418E000,,,2023-03-26 20:30:16,2 -4529,Titanium Hound - 010010B0195EE000,010010B0195EE000,,,2023-03-26 19:06:35,1 -4530,MLB® The Show™ 23 - 0100913019170000,0100913019170000,gpu;status-ingame,ingame,2024-07-26 0:56:50,9 -4531,Grim Guardians Demon Purge - 0100B5301A180000,0100B5301A180000,,,2023-03-29 2:03:41,1 -4535,Blade Assault - 0100EA1018A2E000,0100EA1018A2E000,audio;status-nothing,nothing,2024-04-29 14:32:50,2 -4537,Bubble Puzzler - 0100FB201A21E000,0100FB201A21E000,,,2023-04-03 1:55:12,1 -4538,Tricky Thief - 0100F490198B8000,0100F490198B8000,,,2023-04-03 1:56:44,1 -4539,Scramballed - 0100106016602000,0100106016602000,,,2023-04-03 1:58:08,1 -4540,SWORD ART ONLINE Alicization Lycoris - 0100C6C01225A000,0100C6C01225A000,,,2023-04-03 2:03:00,1 -4542,Alice Gear Aegis CS Concerto of Simulatrix - 0100EEA0184C6000,0100EEA0184C6000,,,2023-04-05 1:40:02,1 -4543,Curse of the Sea Rats - 0100B970138FA000,0100B970138FA000,,,2023-04-08 15:56:01,1 -4544,THEATRHYTHM FINAL BAR LINE - 010081B01777C000,010081B01777C000,status-ingame;Incomplete,ingame,2024-08-05 14:24:55,6 -4545,Assault Suits Valken DECLASSIFIED - 0100FBC019042000,0100FBC019042000,,,2023-04-11 1:05:19,1 -4546,Xiaomei and the Flame Dragons Fist - 010072601922C000,010072601922C000,,,2023-04-11 1:06:46,1 -4547,Loop - 0100C88019092000,0100C88019092000,,,2023-04-11 1:08:03,1 -4548,Volley Pals - 01003A301A29E000,01003A301A29E000,,,2023-04-12 1:37:14,1 -4549,Catgotchi Virtual Pet - 0100CCF01A884000,0100CCF01A884000,,,2023-04-12 1:37:24,1 -4551,Pizza Tower - 05000FD261232000,05000FD261232000,status-ingame;crash,ingame,2024-09-16 0:21:56,6 -4552,Megaman Battle Network Legacy Collection Vol 1 - 010038E016264000,010038E016264000,status-playable,playable,2023-04-25 3:55:57,2 -4554,Process of Elimination - 01005CC018A32000,01005CC018A32000,,,2023-04-17 0:46:22,1 -4555,Detective Boys and the Strange Karakuri Mansion on the Hill [ 少年探偵団と丘の上の奇妙なカラクリ屋敷 ] - 0100F0801A5E8000,0100F0801A5E8000,,,2023-04-17 0:49:26,1 -4556,Dokapon Kingdom Connect [ ドカポンキングダムコネクト ] - 0100AC4018552000,0100AC4018552000,,,2023-04-17 0:53:37,1 -4557,Pixel Game Maker Series Tentacled Terrors Tyrannize Terra - 010040A01AABE000,010040A01AABE000,,,2023-04-18 2:29:14,1 -4558,Ultra Pixel Survive - 0100472019812000,0100472019812000,,,2023-04-18 2:29:20,1 -4559,PIANOFORTE - 0100D6D016F06000,0100D6D016F06000,,,2023-04-18 2:29:25,1 -4560,NASCAR Rivals - 0100545016D5E000,0100545016D5E000,status-ingame;crash;Incomplete,ingame,2023-04-21 1:17:47,4 -4561,Minecraft Legends - 01007C6012CC8000,01007C6012CC8000,gpu;status-ingame;crash,ingame,2024-03-04 0:32:24,9 -4564,Touhou Fan-made Virtual Autography - 0100196016944000,0100196016944000,,,2023-04-21 3:59:47,1 -4565,FINAL FANTASY I - 01000EA014150000,01000EA014150000,status-nothing;crash,nothing,2024-09-05 20:55:30,23 -4566,FINAL FANTASY II - 01006B7014156000,01006B7014156000,status-nothing;crash,nothing,2024-04-13 19:18:04,9 -4567,FINAL FANTASY III - 01002E2014158000,01002E2014158000,,,2023-04-21 11:50:01,1 -4569,FINAL FANTASY V - 0100AA201415C000,0100AA201415C000,status-playable,playable,2023-04-26 1:11:55,2 -4570,FINAL FANTASY VI - 0100AA001415E000,0100AA001415E000,,,2023-04-21 13:08:30,1 -4571,Advance Wars 1+2: Re-Boot Camp - 0100300012F2A000,0100300012F2A000,status-playable,playable,2024-01-30 18:19:44,4 -4572,Five Nights At Freddy’s Security Breach - 01009060193C4000,01009060193C4000,gpu;status-ingame;crash;mac-bug,ingame,2023-04-23 22:33:28,3 -4573,BUCCANYAR - 0100942019418000,0100942019418000,,,2023-04-23 0:59:51,1 -4574,BraveDungeon - The Meaning of Justice - 010068A00DAFC000,010068A00DAFC000,,,2023-04-23 13:34:05,2 -4575,Gemini - 010045300BE9A000,010045300BE9A000,,,2023-04-24 1:31:41,1 -4576,LOST EPIC - 010098F019A64000,010098F019A64000,,,2023-04-24 1:31:46,1 -4577,AKIBA'S TRIP2 Director's Cut - 0100FBD01884C000,0100FBD01884C000,,,2023-04-24 1:31:48,1 -4579,Afterimage - 010095E01A12A000,010095E01A12A000,,,2023-04-27 21:39:08,1 -4580,Fortress S - 010053C017D40000,010053C017D40000,,,2023-04-28 1:57:34,1 -4581,The Mageseeker: A League of Legends Story™ 0100375019B2E000,0100375019B2E000,,,2023-04-29 14:01:15,2 -4582,Cult of the Lamb - 01002E7016C46000,01002E7016C46000,,,2023-04-29 6:22:56,1 -4583,Disney SpeedStorm - 0100F0401435E000,0100F0401435E000,services;status-boots,boots,2023-11-27 2:15:32,4 -4584,The Outbound Ghost - 01000BC01801A000,01000BC01801A000,status-nothing,nothing,2024-03-02 17:10:58,2 -4586,Blaze Union Story to Reach the Future Remaster [ ブレイズ・ユニオン ] - 01003B001A81E000,01003B001A81E000,,,2023-05-02 2:03:16,1 -4587,Sakura Neko Calculator - 010029701AAD2000,010029701AAD2000,,,2023-05-02 6:16:04,1 -4593,Bramble The Mountain King - 0100E87017D0E000,0100E87017D0E000,services-horizon;status-playable,playable,2024-03-06 9:32:17,4 -4598,The Legend of Zelda: Tears of the Kingdom - 0100F2C0115B6000,0100F2C0115B6000,gpu;status-ingame;amd-vendor-bug;intel-vendor-bug;mac-bug,ingame,2024-08-24 12:38:30,155 -4603,Magical Drop VI - 0100B4D01A3A4000,0100B4D01A3A4000,,,2023-05-13 2:27:38,1 -4604,Yahari ge-mu demo ore no seishun rabukome hamachigatteiru. kan [ やはりゲームでも俺の青春ラブコメはまちがっている。完 ] - 010066801A138000,010066801A138000,,,2023-05-13 2:27:49,1 -4608,Mega Man Battle Network Legacy Collection Vol. 2 - 0100734016266000,0100734016266000,status-playable,playable,2023-08-03 18:04:32,4 -4615,Numolition - 010043C019088000,010043C019088000,,,2023-05-17 2:29:23,1 -4616,Vibitter for Nintendo Switch [ ビビッター ] - 0100D2A01855C000,0100D2A01855C000,,,2023-05-17 2:29:31,1 -4620,LEGO 2K Drive - 0100739018020000,0100739018020000,gpu;status-ingame;ldn-works,ingame,2024-04-09 2:05:12,15 -4622,Ys Memoire : The Oath in Felghana [ イース・メモワール -フェルガナの誓い- ] - 010070D01A192000,010070D01A192000,,,2023-05-22 1:12:30,1 -4623,Love on Leave - 0100E3701A870000,0100E3701A870000,,,2023-05-22 1:37:22,1 -4625,Puzzle Bobble Everybubble! - 010079E01A1E0000,010079E01A1E0000,audio;status-playable;ldn-works,playable,2023-06-10 3:53:40,4 -4627,Chasm: The Rift - 010034301A556000,010034301A556000,gpu;status-ingame,ingame,2024-04-29 19:02:48,2 -4631,Speed Crew Demo - 01005C001B696000,01005C001B696000,,,2023-06-04 0:18:22,1 -4632,Dr Fetus Mean Meat Machine Demo - 01001DA01B7C4000,01001DA01B7C4000,,,2023-06-04 0:18:30,1 -4634,Bubble Monsters - 0100FF801B87C000,0100FF801B87C000,,,2023-06-05 2:15:43,1 -4635,Puzzle Bobble / Bust-a-Move ( 16-Bit Console Version ) - 0100AFF019F3C000,0100AFF019F3C000,,,2023-06-05 2:15:53,1 -4636,Just Dance 2023 - 0100BEE017FC0000,0100BEE017FC0000,status-nothing,nothing,2023-06-05 16:44:54,1 -4638,We Love Katamari REROLL+ Royal Reverie - 010089D018D18000,010089D018D18000,,,2023-06-07 7:33:49,1 -4640,Loop8: Summer of Gods - 0100051018E4C000,0100051018E4C000,,,2023-06-10 17:09:56,1 -4641,Hatsune Miku - The Planet Of Wonder And Fragments Of Wishes - 010030301ABC2000,010030301ABC2000,,,2023-06-12 2:15:31,1 -4642,Speed Crew - 0100C1201A558000,0100C1201A558000,,,2023-06-12 2:15:35,1 -4644,Nocturnal - 01009C2019510000,01009C2019510000,,,2023-06-12 16:24:50,2 -4645,Harmony: The Fall of Reverie - 0100A65017D68000,0100A65017D68000,,,2023-06-13 22:37:51,1 -4647,Cave of Past Sorrows - 0100336019D36000,0100336019D36000,,,2023-06-18 1:42:19,1 -4648,BIRDIE WING -Golf Girls Story- - 01005B2017D92000,01005B2017D92000,,,2023-06-18 1:42:25,1 -4649,Dogotchi Virtual Pet - 0100BBD01A886000,0100BBD01A886000,,,2023-06-18 1:42:31,1 -4650,010036F018AC8000,010036F018AC8000,,,2023-06-18 13:11:56,1 -4653,Pikmin 1 - 0100AA80194B0000,0100AA80194B0000,audio;status-ingame,ingame,2024-05-28 18:56:11,17 -4654,Pikmin 2 - 0100D680194B2000,0100D680194B2000,gpu;status-ingame,ingame,2023-07-31 8:53:41,3 -4655,Ghost Trick Phantom Detective Demo - 010026C0184D4000,010026C0184D4000,,,2023-06-23 1:29:44,1 -4656,Dr Fetus' Mean Meat Machine - 01006C301B7C2000,01006C301B7C2000,,,2023-06-23 1:29:52,1 -4657,FIFA 22 Legacy Edition - 0100216014472000,0100216014472000,gpu;status-ingame,ingame,2024-03-02 14:13:48,2 -4658,Pretty Princess Magical Garden Island - 01001CA019DA2000,01001CA019DA2000,,,2023-06-26 2:43:04,1 -4659,Pool Together - 01009DB01BA16000,01009DB01BA16000,,,2023-06-26 2:43:13,1 -4660,Kizuna AI - Touch the Beat! - 0100BF2019B98000,0100BF2019B98000,,,2023-06-26 2:43:18,1 -4661,Convenience Stories - 0100DF801A092000,0100DF801A092000,,,2023-06-26 10:58:37,1 -4662,Pikmin 4 Demo - 0100E0B019974000,0100E0B019974000,gpu;status-ingame;nvdec;UE4;demo;amd-vendor-bug,ingame,2023-09-22 21:41:08,10 -4663,超探偵事件簿 レインコード (Master Detective Archives: Rain Code) - 0100F4401940A000,0100F4401940A000,status-ingame;crash,ingame,2024-02-12 20:58:31,9 -4665,Everybody 1-2-Switch! - 01006F900BF8E000,01006F900BF8E000,services;deadlock;status-nothing,nothing,2023-07-01 5:52:55,2 -4666,AEW Fight Forever - 0100BD10190C0000,0100BD10190C0000,,,2023-06-30 22:09:10,1 -4668,Master Detective Archives: Rain Code - 01004800197F0000,01004800197F0000,gpu;status-ingame,ingame,2024-04-19 20:11:09,22 -4673,The Lara Croft Collection - 010079C017F5E000,010079C017F5E000,services-horizon;deadlock;status-nothing,nothing,2024-07-12 22:45:51,12 -4675,Ghost Trick Phantom Detective - 010029B018432000,010029B018432000,status-playable,playable,2023-08-23 14:50:12,4 -4680,Sentimental Death Loop - 0100FFA01ACA8000,0100FFA01ACA8000,,,2023-07-10 3:23:08,1 -4681,The Settlers: New Allies - 0100F3200E7CA000,0100F3200E7CA000,deadlock;status-nothing,nothing,2023-10-25 0:18:05,4 -4683,Manic Mechanics - 010095A01550E000,010095A01550E000,,,2023-07-17 2:07:32,1 -4684,Crymachina Trial Edition ( Demo ) [ クライマキナ ] - 01000CC01C108000,01000CC01C108000,status-playable;demo,playable,2023-08-06 5:33:21,2 -4686,Xicatrice [ シカトリス ] - 0100EB601A932000,0100EB601A932000,,,2023-07-18 2:18:35,1 -4687,Trouble Witches Final! Episode 01: Daughters of Amalgam - 0100D06018DCA000,0100D06018DCA000,status-playable,playable,2024-04-08 15:08:11,2 -4688,The Quintessential Quintuplets: Gotopazu Story [ 五等分の花嫁 ごとぱずストーリー ] - 0100137019E9C000,0100137019E9C000,,,2023-07-18 2:18:50,1 -4689,Pinball FX - 0100DA70186D4000,0100DA70186D4000,status-playable,playable,2024-05-03 17:09:11,1 -4690,Moving Out 2 Training Day ( Demo ) - 010049E01B034000,010049E01B034000,,,2023-07-19 0:37:57,1 -4691,Cold Silence - 010035B01706E000,010035B01706E000,cpu;status-nothing;crash,nothing,2024-07-11 17:06:14,2 -4692,Demons of Asteborg - 0100B92015538000,0100B92015538000,,,2023-07-20 17:03:06,1 -4693,Pikmin 4 - 0100B7C00933A000,0100B7C00933A000,gpu;status-ingame;crash;UE4,ingame,2024-08-26 3:39:08,18 -4694,Grizzland - 010091300FFA0000,010091300FFA0000,gpu;status-ingame,ingame,2024-07-11 16:28:34,2 -4698,Disney Illusion Island,,,,2023-07-29 9:20:56,2 -4700,Double Dragon Gaiden: Rise of The Dragons - 010010401BC1A000,010010401BC1A000,,,2023-08-01 5:17:28,1 -4701,CRYSTAR -クライスタ- 0100E7B016778800,0100E7B016778800,,,2023-08-02 11:54:22,1 -4702,Orebody: Binders Tale - 010055A0189B8000,010055A0189B8000,,,2023-08-03 18:50:10,1 -4703,Ginnung - 01004B1019C7E000,01004B1019C7E000,,,2023-08-03 19:19:00,1 -4704,Legends of Amberland: The Forgotten Crown - 01007170100AA000,01007170100AA000,,,2023-08-03 22:18:17,1 -4705,Egglien - 0100E29019F56000,0100E29019F56000,,,2023-08-03 22:48:04,1 -4707,Dolmenjord - Viking Islands - 010012201B998000,010012201B998000,,,2023-08-05 20:55:28,1 -4708,The Knight & the Dragon - 010031B00DB34000,010031B00DB34000,gpu;status-ingame,ingame,2023-08-14 10:31:43,3 -4709,Cookies! Theory of Super Evolution - ,,,,2023-08-06 0:21:28,1 -4711,Jetboy - 010039C018168000,010039C018168000,,,2023-08-07 17:25:10,1 -4712,Townscaper - 01001260143FC000,01001260143FC000,,,2023-08-07 18:24:29,1 -4713,The Deer God - 01000B6007A3C000,01000B6007A3C000,,,2023-08-07 19:48:55,1 -4714,6 Souls - 0100421016BF2000,0100421016BF2000,,,2023-08-07 21:17:43,1 -4715,Brotato - 01002EF01A316000,01002EF01A316000,,,2023-08-10 14:57:25,1 -4716,超次元ゲイム ネプテューヌ GameMaker R:Evolution - 010064801a01c000,010064801a01c000,status-nothing;crash,nothing,2023-10-30 22:37:40,2 -4718,Quake II - 010048F0195E8000,010048F0195E8000,status-playable,playable,2023-08-15 3:42:14,2 -4721,Red Dead Redemption - 01007820196A6000,01007820196A6000,status-playable;amd-vendor-bug,playable,2024-09-13 13:26:13,42 -4722,Samba de Amigo : Party Central Demo - 01007EF01C0D2000,01007EF01C0D2000,,,2023-08-18 4:00:43,1 -4723,Bomb Rush Cyberfunk - 0100317014B7C000,0100317014B7C000,status-playable,playable,2023-09-28 19:51:57,3 -4724,Jack Jeanne - 010036D01937E000,010036D01937E000,,,2023-08-21 5:58:21,1 -4725,Bright Memory: Infinite Gold Edition - 01001A9018560000,01001A9018560000,,,2023-08-22 22:46:26,1 -4726,NBA 2K23 - 0100ACA017E4E800,0100ACA017E4E800,status-boots,boots,2023-10-10 23:07:14,3 -4727,Marble It Up! Ultra - 0100C18016896000,0100C18016896000,,,2023-08-30 20:14:21,2 -4728,Words of Wisdom - 0100B7F01BC9A000,0100B7F01BC9A000,,,2023-09-02 19:05:19,1 -4729,Koa and the Five Pirates of Mara - 0100C57019BA2000,0100C57019BA2000,gpu;status-ingame,ingame,2024-07-11 16:14:44,2 -4731,Little Orpheus stuck at 2 level,,,,2023-09-05 12:09:08,1 -4732,Tiny Thor - 010002401AE94000,010002401AE94000,gpu;status-ingame,ingame,2024-07-26 8:37:35,6 -4733,Radirgy Swag - 01000B900EEF4000,01000B900EEF4000,,,2023-09-06 23:00:39,1 -4735,Sea of Stars - 01008C0016544000,01008C0016544000,status-playable,playable,2024-03-15 20:27:12,9 -4736,NBA 2K24 - 010006501A8D8000,010006501A8D8000,cpu;gpu;status-boots,boots,2024-08-11 18:23:08,6 -4737,Rune Factory 3 Special - 010081C0191D8000,010081C0191D8000,status-playable,playable,2023-10-15 8:32:49,2 -4739,Baten Kaitos I & II HD Remaster (Japan) - 0100F28018CA4000,0100F28018CA4000,services;status-boots;Needs Update,boots,2023-10-24 23:11:54,7 -4740,F-ZERO 99 - 0100CCF019C8C000,0100CCF019C8C000,,,2023-09-14 16:43:01,1 -4743,Horizon Chase 2 - 0100001019F6E000,0100001019F6E000,deadlock;slow;status-ingame;crash;UE4,ingame,2024-08-19 4:24:06,11 -4744,Mortal Kombat 1 - 01006560184E6000,01006560184E6000,gpu;status-ingame,ingame,2024-09-04 15:45:47,18 -4745,Baten Kaitos I & II HD Remaster (Europe/USA) - 0100C07018CA6000,0100C07018CA6000,services;status-boots;Needs Update,boots,2023-10-01 0:44:32,9 -4746,Legend of Mana 01003570130E2000,01003570130E2000,,,2023-09-17 4:07:26,1 -4747,TUNIC 0100DA801624E000,0100DA801624E000,,,2023-09-17 4:28:22,1 -4748,SUPER BOMBERMAN R 2 - 0100B87017D94000,0100B87017D94000,deadlock;status-boots,boots,2023-09-29 13:19:51,2 -4749,Fae Farm - 010073F0189B6000 ,010073F0189B6000,status-playable,playable,2024-08-25 15:12:12,3 -4750,demon skin - 01006fe0146ec000,01006fe0146ec000,,,2023-09-18 8:36:18,1 -4751,Fatal Frame: Mask of the Lunar Eclipse - 0100DAE019110000,0100DAE019110000,status-playable;Incomplete,playable,2024-04-11 6:01:30,3 -4752,Winter Games 2023 - 0100A4A015FF0000,0100A4A015FF0000,deadlock;status-menus,menus,2023-11-07 20:47:36,2 -4753,EA Sports FC 24 - 0100BDB01A0E6000,0100BDB01A0E6000,status-boots,boots,2023-10-04 18:32:59,20 -4755,Cassette Beasts - 010066F01A0E0000,010066F01A0E0000,status-playable,playable,2024-07-22 20:38:43,8 -4756,COCOON - 01002E700C366000,01002E700C366000,gpu;status-ingame,ingame,2024-03-06 11:33:08,11 -4758,Detective Pikachu Returns - 010007500F27C000,010007500F27C000,status-playable,playable,2023-10-07 10:24:59,2 -4761,DeepOne - 0100961011BE6000,0100961011BE6000,services-horizon;status-nothing;Needs Update,nothing,2024-01-18 15:01:05,6 -4763,Sonic Superstars,,,,2023-10-13 18:33:19,1 -4765,Disco Elysium - 01006C5015E84000,01006C5015E84000,Incomplete,,2023-10-14 13:53:12,3 -4773,Sonic Superstars - 01008F701C074000,01008F701C074000,gpu;status-ingame;nvdec,ingame,2023-10-28 17:48:07,16 -4774,Sonic Superstars Digital Art Book with Mini Digital Soundtrack - 010088801C150000,010088801C150000,status-playable,playable,2024-08-20 13:26:56,2 -4776,Super Mario Bros. Wonder - 010015100B514000,010015100B514000,status-playable;amd-vendor-bug,playable,2024-09-06 13:21:21,36 -4786,Project Blue - 0100FCD0193A0000,0100FCD0193A0000,,,2023-10-24 15:55:09,2 -4787,Rear Sekai [ リアセカイ ] - 0100C3B01A5DD002,0100C3B01A5DD002,,,2023-10-24 1:55:18,1 -4788,Dementium: The Ward (Dementium Remastered) - 010038B01D2CA000,010038B01D2CA000,status-boots;crash,boots,2024-09-02 8:28:14,8 -4789,A Tiny Sticker Tale - 0100f6001b738000,0100f6001b738000,,,2023-10-26 23:15:46,1 -4790,Clive 'n' Wrench - 0100C6C010AE4000,0100C6C010AE4000,,,2023-10-28 14:56:46,1 -4793,STAR OCEAN The Second Story R - 010065301A2E0000,010065301A2E0000,status-ingame;crash,ingame,2024-06-01 2:39:59,13 -4794,Song of Nunu: A League of Legends Story - 01004F401BEBE000,01004F401BEBE000,status-ingame,ingame,2024-07-12 18:53:44,5 -4795,MythForce,,,,2023-11-03 12:58:52,1 -4797,Here Comes Niko! - 01001600121D4000,01001600121D4000,,,2023-11-04 22:26:44,1 -4798,Warioware: Move IT! - 010045B018EC2000,010045B018EC2000,status-playable,playable,2023-11-14 0:23:51,2 -4799,Game of Life [ 人生ゲーム for Nintendo Switch ] - 0100FF1017F76000,0100FF1017F76000,,,2023-11-07 19:59:08,3 -4800,Osyaberi! Horijyo! Gekihori - 01005D6013A54000,01005D6013A54000,,,2023-11-07 1:46:43,1 -4801,Fashion Dreamer - 0100E99019B3A000,0100E99019B3A000,status-playable,playable,2023-11-12 6:42:52,2 -4802,THE 密室逃脱 ~牵动命运的三十五道谜团~ (ESCAPE TRICK: 35 Fateful Enigmas) - 010087F005DFE000,010087F005DFE000,,,2023-11-08 2:20:17,1 -4809,Hogwarts Legacy 0100F7E00C70E000,0100F7E00C70E000,status-ingame;slow,ingame,2024-09-03 19:53:58,24 -4811,Super Mario RPG - 0100BC0018138000,0100BC0018138000,gpu;audio;status-ingame;nvdec,ingame,2024-06-19 17:43:42,39 -4812,Venatrix - 010063601B386000,010063601B386000,,,2023-11-18 6:55:12,1 -4813,Dreamwork's All-Star Kart Racing - 010037401A374000,010037401A374000,Incomplete,,2024-02-27 8:58:57,2 -4817,Watermelon Game [ スイカゲーム ] - 0100800015926000,0100800015926000,,,2023-11-27 2:49:45,1 -4818,屁屁侦探 噗噗 未来的名侦探登场! (Oshiri Tantei Mirai no Meitantei Tojo!) - 0100FDE017E56000,0100FDE017E56000,,,2023-12-01 11:15:46,3 -4820,Batman: Arkham Knight - 0100ACD0163D0000,0100ACD0163D0000,gpu;status-ingame;mac-bug,ingame,2024-06-25 20:24:42,2 -4821,DRAGON QUEST MONSTERS: The Dark Prince - 0100A77018EA0000,0100A77018EA0000,status-playable,playable,2023-12-29 16:10:05,2 -4823,ftpd classic - 0000000000000000,0000000000000000,homebrew,,2023-12-03 23:42:19,1 -4824,ftpd pro - 0000000000000000,0000000000000000,homebrew,,2023-12-03 23:47:46,1 -4826,Batman: Arkham City - 01003f00163ce000,01003f00163ce000,status-playable,playable,2024-09-11 0:30:19,5 -4827,DoDonPachi DAI-OU-JOU Re:incarnation (怒首領蜂大往生 臨廻転生) - 0100526017B00000,0100526017B00000,,,2023-12-08 15:16:22,1 -4830,Squid Commando - 0100044018E82000,0100044018E82000,,,2023-12-08 17:17:27,1 -4834,御伽活劇 豆狸のバケル ~オラクル祭太郎の祭難!!~ (Otogi Katsugeki Mameda no Bakeru Oracle Saitarou no Sainan!!) - 0100BF401AF9C000,0100BF401AF9C000,slow;status-playable,playable,2023-12-31 14:37:17,2 -4835,Another Code: Recollection DEMO - 01003E301A4D6000,01003E301A4D6000,,,2023-12-15 6:48:09,1 -4837,Alien Hominid HD - 010056B019874000,010056B019874000,,,2023-12-17 13:10:46,1 -4838,Piyokoro - 010098801D706000,010098801D706000,,,2023-12-18 2:17:53,1 -4839,Uzzuzuu My Pet - Golf Dash - 010015B01CAF0000,010015B01CAF0000,,,2023-12-18 2:17:57,1 -4842,Alien Hominid Invasion - 0100A3E00CDD4000,0100A3E00CDD4000,Incomplete,,2024-07-17 1:56:28,3 -4846,void* tRrLM2(); //Void Terrarium 2 (USA/EU) - 0100B510183BC000,0100B510183BC000,,,2023-12-21 11:08:18,1 -4847,Metal Gear Solid Master Collection Vol. 1: Metal Gear Solid 3 - 010047F01AA10000,010047F01AA10000,services-horizon;status-menus,menus,2024-07-24 6:34:06,4 -4848,Party Friends - 0100C0A01D478000,0100C0A01D478000,,,2023-12-23 2:43:33,1 -4849,Yohane the Parhelion Numazu in the Mirage Demo - 0100D7201DAAE000,0100D7201DAAE000,,,2023-12-23 2:49:28,1 -4850,SPY×FAMILY OPERATION DIARY - 010041601AB40000,010041601AB40000,,,2023-12-23 2:52:29,1 -4851,Golf Guys - 010040901CC42000,010040901CC42000,,,2023-12-28 1:20:16,1 -4852,Persona 5 Tactica - 010087701B092000,010087701B092000,status-playable,playable,2024-04-01 22:21:03,6 -4856,Batman: Arkham Asylum - 0100E870163CA000,0100E870163CA000,,,2024-01-11 23:03:37,2 -4857,Persona 5 Royal (KR/HK) - 01004B10157F2000,01004B10157F2000,Incomplete,,2024-08-17 21:42:28,8 -4859,Prince of Persia: The Lost Crown - 0100210019428000,0100210019428000,status-ingame;crash,ingame,2024-06-08 21:31:58,34 -4860,Another Code: Recollection - 0100CB9018F5A000,0100CB9018F5A000,gpu;status-ingame;crash,ingame,2024-09-06 5:58:52,7 -4861,It Takes Two - 010092A0172E4000,010092A0172E4000,,,2024-01-23 5:15:26,1 -4862,逆转裁判四五六 王泥喜精选集 (Apollo Justice: Ace Attorney Trilogy) - 010020D01B890000,010020D01B890000,status-playable,playable,2024-06-21 21:54:27,18 -4863,Hitman: Blood Money - Reprisal - 010083A018262000,010083A018262000,deadlock;status-ingame,ingame,2024-09-28 16:28:50,8 -4866,Mario vs. Donkey Kong™ Demo - 0100D9E01DBB0000,0100D9E01DBB0000,status-playable,playable,2024-02-18 10:40:06,4 -4868,LEGO The Incredibles - 0100F19006E04000,0100F19006E04000,crash,,2024-02-11 0:46:53,1 -4869,Tomb Raider I-III Remastered - 010024601BB16000,010024601BB16000,gpu;status-ingame;opengl,ingame,2024-09-27 12:32:04,27 -4870,Arzette: The Jewel of Faramore - 0100B7501C46A000,0100B7501C46A000,,,2024-02-17 17:22:34,1 -4871,Mario vs. Donkey Kong - 0100B99019412000,0100B99019412000,status-playable,playable,2024-05-04 21:22:39,9 -4872,Penny's Big Breakaway - 0100CA901AA9C000,0100CA901AA9C000,status-playable;amd-vendor-bug,playable,2024-05-27 7:58:51,12 -4873,CEIBA - 0100E8801D97E000,0100E8801D97E000,,,2024-02-25 22:33:36,4 -4874,Lil' Guardsman v1.1 - 010060B017F6E000,010060B017F6E000,,,2024-02-25 19:21:03,1 -4875,Fearmonium - 0100F5501CE12000,0100F5501CE12000,status-boots;crash,boots,2024-03-06 11:26:11,2 -4876,NeverAwake - 0100DA30189CA000,0100DA30189CA000,,,2024-02-26 2:27:39,1 -4877,Zombies Rising XXX,,,,2024-02-26 7:53:03,1 -4878,Balatro - 0100CD801CE5E000,0100CD801CE5E000,status-ingame,ingame,2024-04-21 2:01:53,8 -4879,Prison City - 0100C1801B914000,0100C1801B914000,gpu;status-ingame,ingame,2024-03-01 8:19:33,2 -4880,Yo-kai Watch Jam: Y School Heroes: Bustlin' School Life - 010051D010FC2000,010051D010FC2000,,,2024-03-03 2:57:22,1 -4884,Princess Peach: Showtime! Demo - 010024701DC2E000,010024701DC2E000,status-playable;UE4;demo,playable,2024-03-10 17:46:45,4 -4886,Unicorn Overlord - 010069401ADB8000,010069401ADB8000,status-playable,playable,2024-09-27 14:04:32,15 -4888,Dodgeball Academia - 010001F014D9A000,010001F014D9A000,,,2024-03-09 3:49:28,1 -4893,魂斗罗:加鲁加行动 (Contra: Operation Galuga) - 0100CF401A98E000,0100CF401A98E000,,,2024-03-13 1:13:42,1 -4894,STAR WARS Battlefront Classic Collection - 010040701B948000,010040701B948000,gpu;status-ingame;vulkan,ingame,2024-07-12 19:24:21,6 -4896,MLB The Show 24 - 0100E2E01C32E000,0100E2E01C32E000,services-horizon;status-nothing,nothing,2024-03-31 4:54:11,8 -4897,Orion Haste - 01009B401DD02000,01009B401DD02000,,,2024-03-16 17:22:59,1 -4901,Gylt - 0100AC601DCA8000,0100AC601DCA8000,status-ingame;crash,ingame,2024-03-18 20:16:51,5 -4903,マクロス(Macross) -Shooting Insight- - 01001C601B8D8000,01001C601B8D8000,,,2024-03-20 17:10:26,1 -4904,Geometry Survivor - 01006D401D4F4000,01006D401D4F4000,,,2024-03-20 17:35:34,1 -4905,Gley Lancer and Gynoug - Classic Shooting Pack - 010037201E3DA000,010037201E3DA000,,,2024-03-20 18:19:37,1 -4907,Princess Peach: Showtime! - 01007A3009184000,01007A3009184000,status-playable;UE4,playable,2024-09-21 13:39:45,16 -4910,Cosmic Fantasy Collection - 0100CCB01B1A0000,0100CCB01B1A0000,status-ingame,ingame,2024-05-21 17:56:37,8 -4911,Fit Boxing feat. 初音ミク - 010045D01AFC8000,010045D01AFC8000,,,2024-03-28 4:07:57,2 -4915,Sonic 2 (2013) - 0000000000000000,0000000000000000,status-ingame;crash;homebrew,ingame,2024-04-01 16:25:30,1 -4916,Sonic CD - 0000000000000000,0000000000000000,status-ingame;crash;homebrew,ingame,2024-04-01 16:25:31,1 -4917,Sonic A.I.R - 0000000000000000,0000000000000000,status-ingame;homebrew,ingame,2024-04-01 16:25:32,1 -4918,RSDKv5u - 0000000000000000,0000000000000000,status-ingame;homebrew,ingame,2024-04-01 16:25:34,1 -4919,Sonic 1 (2013) - 0000000000000000,0000000000000000,status-ingame;crash;homebrew,ingame,2024-04-06 18:31:20,2 -4920,The Dark Pictures Anthology : Man of Medan - 0100711017B30000,0100711017B30000,,,2024-04-01 16:38:04,1 -4922,SpaceCadetPinball - 0000000000000000,0000000000000000,status-ingame;homebrew,ingame,2024-04-18 19:30:04,1 -4924,Pepper Grinder - 0100B98019068000,0100B98019068000,,,2024-04-04 16:31:57,1 -4927,RetroArch - 010000000000100D,010000000000100D,,,2024-04-07 18:23:18,1 -4929,YouTube - 01003A400C3DA800,01003A400C3DA800,status-playable,playable,2024-06-08 5:24:10,2 -4930,Pawapoke R - 01000c4015030000,01000c4015030000,services-horizon;status-nothing,nothing,2024-05-14 14:28:32,3 -4933,MegaZeux - 0000000000000000,0000000000000000,,,2024-04-16 23:46:53,1 -4934,ANTONBLAST (Demo) - 0100B5F01EB24000,0100B5F01EB24000,,,2024-04-18 22:45:13,1 -4935,Europa (Demo) - 010092501EB2C000,010092501EB2C000,gpu;status-ingame;crash;UE4,ingame,2024-04-23 10:47:12,2 -4936,BioShock 1 & 2 Remastered [0100AD10102B2000 - 01002620102C6800] v1.0.2,0100AD10102B2000,,,2024-04-19 19:08:30,2 -4939,Turrican Anthology Vol. 2 - 010061D0130CA000 - game freezes at the beginning,010061D0130CA000,Incomplete,,2024-04-25 17:57:06,5 -4945,Nickelodeon All-Star Brawl 2 - 010010701AFB2000,010010701AFB2000,status-playable,playable,2024-06-03 14:15:01,3 -4946,Bloo Kid - 0100C6A01AD56000,0100C6A01AD56000,status-playable,playable,2024-05-01 17:18:04,3 -4947,Tales of Kenzera: ZAU - 01005C7015D30000,01005C7015D30000,,,2024-04-30 10:11:26,1 -4952,Demon Slayer – Kimetsu no Yaiba – Sweep the Board! - 0100A7101B806000,0100A7101B806000,,,2024-05-02 10:19:47,1 -4953,Endless Ocean Luminous - 010067B017588000,010067B017588000,services-horizon;status-ingame;crash,ingame,2024-05-30 2:05:57,6 -4954,Moto GP 24 - 010040401D564000,010040401D564000,gpu;status-ingame,ingame,2024-05-10 23:41:00,2 -4956,The game of life 2 - 0100B620139D8000,0100B620139D8000,,,2024-05-03 12:08:33,1 -4958,ANIMAL WELL - 010020D01AD24000,010020D01AD24000,status-playable,playable,2024-05-22 18:01:49,13 -4959,Super Mario World - 0000000000000000,0000000000000000,status-boots;homebrew,boots,2024-06-13 1:40:31,2 -4960,1000xRESIST - 0100B02019866000,0100B02019866000,,,2024-05-11 17:18:57,1 -4961,Dave The Diver - 010097F018538000,010097F018538000,Incomplete,,2024-09-03 21:38:55,2 -4963,Zombiewood,,Incomplete,,2024-05-15 11:37:19,2 -4965,Pawapoke Dash - 010066A015F94000,010066A015F94000,,,2024-05-16 8:45:51,1 -4967,Biomutant - 01004BA017CD6000,01004BA017CD6000,status-ingame;crash,ingame,2024-05-16 15:46:36,2 -4968,Vampire Survivors - 010089A0197E4000,010089A0197E4000,status-ingame,ingame,2024-06-17 9:57:38,2 -4969,Koumajou Remilia II Stranger’s Requiem,,Incomplete,,2024-05-22 20:59:04,3 -4972,Paper Mario: The Thousand-Year Door - 0100ECD018EBE000,0100ECD018EBE000,gpu;status-ingame;intel-vendor-bug;slow,ingame,2025-01-07 4:27:35,80 -4973,Stories From Sol: The Gun-dog Demo - 010092A01EC94000,010092A01EC94000,,,2024-05-22 19:55:35,1 -4977,Earth Defense Force: World Brothers 2 - 010083a01d456000,010083a01d456000,,,2024-06-01 18:34:34,1 -4985,锈色湖畔:内在昔日(Rusty Lake: The Past Within) - 01007010157EC000,01007010157EC000,,,2024-06-10 13:47:40,1 -4988,Garden Life A Cozy Simulator - 0100E3801ACC0000,0100E3801ACC0000,,,2024-06-12 0:12:01,1 -4991,Shin Megami Tensei V: Vengeance - 010069C01AB82000,010069C01AB82000,gpu;status-ingame;vulkan-backend-bug,ingame,2024-07-14 11:28:24,17 -4992,Valiant Hearts - The great war - 01006C70146A2000,01006C70146A2000,,,2024-06-18 21:31:15,1 -4994,Monster Hunter Stories - 010069301B1D4000,010069301B1D4000,Incomplete,,2024-09-11 7:58:24,5 -4995,Rocket Knight Adventures: Re-Sparked,,,,2024-06-20 20:13:10,3 -4996,Metal Slug Attack Reloaded,,,,2024-06-20 19:55:22,3 -4997,#BLUD - 010060201E0A4000,010060201E0A4000,,,2024-06-23 13:57:22,1 -4998,NARUTO X BARUTO Ultimate Ninja STORM CONNECTIONS - 0100D2D0190A4000,0100D2D0190A4000,services-horizon;status-nothing,nothing,2024-07-25 5:16:48,3 -4999,Bang-On Balls: Chronicles - 010081E01A45C000,010081E01A45C000,Incomplete,,2024-08-01 16:40:12,2 -5000,Downward: Enhanced Edition 0100C5501BF24000,0100C5501BF24000,,,2024-06-26 0:22:34,1 -5001,DNF Duel: Who's Next - 0100380017D3E000,0100380017D3E000,Incomplete,,2024-07-23 2:25:50,2 -5002,Borderlands 3 - 01009970122E4000,01009970122E4000,gpu;status-ingame,ingame,2024-07-15 4:38:14,7 -5003,Luigi's Mansion 2 HD - 010048701995E000,010048701995E000,status-ingame;ldn-broken;amd-vendor-bug,ingame,2024-09-05 23:47:27,8 -5004,Super Monkey Ball Banana Rumble - 010031F019294000,010031F019294000,status-playable,playable,2024-06-28 10:39:18,2 -5005,City of Beats 0100E94016B9E000,0100E94016B9E000,,,2024-07-01 7:02:20,1 -5008,Maquette 0100861018480000,0100861018480000,,,2024-07-04 5:20:21,1 -5009,Monomals - 01003030161DC000,01003030161DC000,gpu;status-ingame,ingame,2024-08-06 22:02:51,3 -5014,Ace Combat 7 - Skies Unknown Deluxe Edition - 010039301B7E0000,010039301B7E0000,gpu;status-ingame;UE4,ingame,2024-09-27 14:31:43,10 -5015,Teenage Mutant Ninja Turtles: Splintered Fate - 01005CF01E784000,01005CF01E784000,status-playable,playable,2024-08-03 13:50:42,6 -5016,Powerful Pro Baseball 2024-2025 - 0100D1C01C194000,0100D1C01C194000,gpu;status-ingame,ingame,2024-08-25 6:40:48,11 -5021,World of Goo 2 - 010061F01DB7C800,010061F01DB7C800,status-boots,boots,2024-08-08 22:52:49,6 -5025,Tomba! Special Edition - 0100D7F01E49C000,0100D7F01E49C000,services-horizon;status-nothing,nothing,2024-09-15 21:59:54,2 -5026,Machi Koro With Everyone-0100C32018824000,0100C32018824000,,,2024-08-07 19:19:30,1 -5027,STAR WARS: Bounty Hunter - 0100d7a01b7a2000,0100d7a01b7a2000,,,2024-08-08 11:12:56,1 -5028,Outer Wilds - 01003DC0144B6000,01003DC0144B6000,,,2024-08-08 17:36:16,1 -5029,Grounded 01006F301AE9C000,01006F301AE9C000,,,2024-08-09 16:35:52,1 -5030,DOOM + DOOM II - 01008CB01E52E000,01008CB01E52E000,status-playable;opengl;ldn-untested;LAN,playable,2024-09-12 7:06:01,2 -5032,Fishing Paradiso - 0100890016A74000,0100890016A74000,,,2024-08-11 21:39:54,2 -5035,Revue Starlight El Dorado - 010099c01d642000,010099c01d642000,,,2024-09-02 18:58:18,2 -5040,PowerWash Simulator - 0100926016012000,0100926016012000,,,2024-08-22 0:47:34,1 -5041,Thank Goodness You’re Here! - 010053101ACB8000,010053101ACB8000,,,2024-09-25 16:15:40,2 -5042,Freedom Planet 2 V1.2.3r (01009A301B68000),,,,2024-08-23 18:16:54,1 -5043,Ace Attorney Investigations Collection DEMO - 010033401E68E000,010033401E68E000,status-playable,playable,2024-09-07 6:16:42,2 -5047,Castlevania Dominus Collection - 0100FA501AF90000,0100FA501AF90000,,,2024-09-19 1:39:04,8 -5055,Chants of Sennaar - 0100543019CB0000,0100543019CB0000,,,2024-09-19 16:30:27,2 -5056,Taisho x Alice ALL IN ONE - 大正×対称アリス ALL IN ONE - 010096000ca38000,010096000ca38000,,,2024-09-11 21:20:04,2 -5057,NBA 2K25 - 0100DFF01ED44000,0100DFF01ED44000,,,2024-09-10 17:34:54,1 -5059,逆转检察官1&2 御剑精选集 (Ace Attorney Investigations Collection) - 010005501E68C000,010005501E68C000,status-playable,playable,2024-09-19 16:38:05,4 -5062,Fabledom - 0100B6001E6D6000,0100B6001E6D6000,,,2024-09-28 12:12:55,2 -5064,BZZZT - 010091201A3F2000,010091201A3F2000,,,2024-09-22 21:29:58,1 -5065,EA SPORTS FC 25 - 010054E01D878000,010054E01D878000,status-ingame;crash,ingame,2024-09-25 21:07:50,13 -5067,Selfloss - 010036C01E244000,010036C01E244000,,,2024-09-23 23:12:13,1 -5068,Disney Epic Mickey: Rebrushed - 0100DA201EBF8000,0100DA201EBF8000,status-ingame;crash,ingame,2024-09-26 22:11:51,4 -5069,The Plucky Squire - 01006BD018B54000,01006BD018B54000,status-ingame;crash,ingame,2024-09-27 22:32:33,4 -5070,The Legend of Zelda Echoes of Wisdom - 01008CF01BAAC000,01008CF01BAAC000,status-playable;nvdec;ASTC;intel-vendor-bug,playable,2024-10-01 14:11:01,34 -5071,Bakeru - 01007CD01FAE0000,01007CD01FAE0000,,,2024-09-25 18:05:22,1 -5072,トラブル・マギア ~訳アリ少女は未来を勝ち取るために異国の魔法学校へ留学します~(Trouble Magia ~Wakeari Shoujo wa Mirai o Kachitoru Tame ni Ikoku no Mahou Gakkou e Ryuugaku Shimasu~) - 01000BB01CB8A000,01000BB01CB8A000,status-nothing,nothing,2024-09-28 7:03:14,3 -5073,I am an Airtraffic Controller AIRPORT HERO HANEDA ALLSTARS - 01002EE01BAE0000,01002EE01BAE0000,,,2024-09-27 2:04:17,1 -5074,燃えよ! 乙女道士 ~華遊恋語~ (Moeyo! Otome Doushi Kayu Koigatari) - 01001BA01EBFC000,01001BA01EBFC000,services-horizon;status-nothing,nothing,2024-09-28 12:22:55,5 -5075,I am an Air Traffic Controller AIRPORT HERO HANEDA - 0100BE700EDA4000,0100BE700EDA4000,,,2024-09-27 23:52:19,1 -5077,Angel at Dusk Demo - 0100D96020ADC000,0100D96020ADC000,,,2024-09-29 17:21:13,1 -5078,Monster Jam™ Showdown - 0100CE101B698000,0100CE101B698000,,,2024-09-30 4:03:13,1 -5079,Legend of Heroes: Trails Through Daybreak - 010040C01D248000,010040C01D248000,,,2024-10-01 7:36:25,1 -100001,Mario & Luigi: Brothership - 01006D0017F7A000,01006D0017F7A000,status-ingame;crash;slow;UE4;mac-bug,ingame,2025-01-07 4:00:00,1 -100002,Stray - 010075101EF84000,010075101EF84000,status-ingame;crash,ingame,2025-01-07 4:03:00,1 -100003,Dragon Quest III HD-2D Remake - 01003E601E324000,01003E601E324000,status-ingame;vulkan-backend-bug;UE4;audout;mac-bug,ingame,2025-01-07 4:10:27,1 -100004,SONIC X SHADOW GENERATIONS - 01005EA01C0FC000,01005EA01C0FC000,status-ingame;crash,ingame,2025-01-07 4:20:45,1 -100005,LEGO Horizon Adventures - 010073C01AF34000,010073C01AF34000,status-ingame;vulkan-backend-bug;opengl-backend-bug;UE4,ingame,2025-01-07 4:24:56,1 -100006,Legacy of Kain™ Soul Reaver 1&2 Remastered - 010079901C898000,010079901C898000,status-playable,playable,2025-01-07 5:50:01,1 +"issue_title","extracted_game_id","issue_labels","extracted_status","last_event_date" +"ARMS - 01009B500007C000","01009B500007C000","status-playable;ldn-works;LAN","playable","2024-08-28 07:49:24.000" +"Pokemon Quest - 01005D100807A000","01005D100807A000","status-playable","playable","2022-02-22 16:12:32.000" +"Retro City Rampage DX","","status-playable","playable","2021-01-05 17:04:17.000" +"Kirby Star Allies - 01007E3006DDA000","01007E3006DDA000","status-playable;nvdec","playable","2023-11-15 17:06:19.000" +"Bayonetta 2 - 01007960049A0000","01007960049A0000","status-playable;nvdec;ldn-works;LAN","playable","2022-11-26 03:46:09.000" +"Bloons TD 5 - 0100B8400A1C6000","0100B8400A1C6000","Needs Update;audio;gpu;services;status-boots","boots","2021-04-18 23:02:46.000" +"Urban Trial Playground - 01001B10068EC000","01001B10068EC000","UE4;nvdec;online;status-playable","playable","2021-03-25 20:56:51.000" +"Ben 10 - 01006E1004404000","01006E1004404000","nvdec;status-playable","playable","2021-02-26 14:08:35.000" +"Lanota","","status-playable","playable","2019-09-04 01:58:14.000" +"Portal Knights - 0100437004170000","0100437004170000","ldn-untested;online;status-playable","playable","2021-05-27 19:29:04.000" +"Thimbleweed Park - 01009BD003B36000","01009BD003B36000","status-playable","playable","2022-08-24 11:15:31.000" +"Pokkén Tournament DX - 0100B3F000BE2000","0100B3F000BE2000","status-playable;nvdec;ldn-works;opengl-backend-bug;LAN;amd-vendor-bug;intel-vendor-bug","playable","2024-07-18 23:11:08.000" +"Farming Simulator Nintendo Switch Edition","","nvdec;status-playable","playable","2021-01-19 14:46:44.000" +"Sonic Forces - 01001270012B6000","01001270012B6000","status-playable","playable","2024-07-28 13:11:21.000" +"One Piece Pirate Warriors 3","","nvdec;status-playable","playable","2020-05-10 06:23:52.000" +"Dragon Quest Heroes I + II (JP) - 0100CD3000BDC000","0100CD3000BDC000","nvdec;status-playable","playable","2021-04-08 14:27:16.000" +"Dragon Quest Builders - 010008900705C000","010008900705C000","gpu;status-ingame;nvdec","ingame","2023-08-14 09:54:36.000" +"Don't Starve - 0100751007ADA000","0100751007ADA000","status-playable;nvdec","playable","2022-02-05 20:43:34.000" +"Bud Spencer & Terence Hill - Slaps and Beans - 01000D200AC0C000","01000D200AC0C000","status-playable","playable","2022-07-17 12:37:00.000" +"Fantasy Hero Unsigned Legacy - 0100767008502000","0100767008502000","status-playable","playable","2022-07-26 12:28:52.000" +"MUSNYX","","status-playable","playable","2020-05-08 14:24:43.000" +"Mario Tennis Aces - 0100BDE00862A000","0100BDE00862A000","gpu;status-ingame;nvdec;ldn-works;LAN","ingame","2024-09-28 15:54:40.000" +"Higurashi no Naku Koro ni Hō - 0100F6A00A684000","0100F6A00A684000","audio;status-ingame","ingame","2021-09-18 14:40:28.000" +"Nintendo Entertainment System - Nintendo Switch Online - 0100D870045B6000","0100D870045B6000","status-playable;online","playable","2022-07-01 15:45:06.000" +"SEGA Ages: Sonic The Hedgehog - 010051F00AC5E000","010051F00AC5E000","slow;status-playable","playable","2023-03-05 20:16:31.000" +"10 Second Run Returns - 01004D1007926000","01004D1007926000","gpu;status-ingame","ingame","2022-07-17 13:06:18.000" +"PriPara: All Idol Perfect Stage - 010007F00879E000","010007F00879E000","status-playable","playable","2022-11-22 16:35:52.000" +"Shantae and the Pirate's Curse - 0100EFD00A4FA000","0100EFD00A4FA000","status-playable","playable","2024-04-29 17:21:57.000" +"DARK SOULS™: REMASTERED - 01004AB00A260000","01004AB00A260000","gpu;status-ingame;nvdec;online-broken","ingame","2024-04-09 19:47:58.000" +"The Liar Princess and the Blind Prince - 010064B00B95C000","010064B00B95C000","audio;slow;status-playable","playable","2020-06-08 21:23:28.000" +"Dead Cells - 0100646009FBE000","0100646009FBE000","status-playable","playable","2021-09-22 22:18:49.000" +"Sonic Mania - 01009AA000FAA000","01009AA000FAA000","status-playable","playable","2020-06-08 17:30:57.000" +"The Mahjong","","Needs Update;crash;services;status-nothing","nothing","2021-04-01 22:06:22.000" +"Angels of Death - 0100AE000AEBC000","0100AE000AEBC000","nvdec;status-playable","playable","2021-02-22 14:17:15.000" +"Penny-Punching Princess - 0100C510049E0000","0100C510049E0000","status-playable","playable","2022-08-09 13:37:05.000" +"Just Shapes & Beats","","ldn-untested;nvdec;status-playable","playable","2021-02-09 12:18:36.000" +"Minecraft - Nintendo Switch Edition - 01006BD001E06000","01006BD001E06000","status-playable;ldn-broken","playable","2023-10-15 01:47:08.000" +"FINAL FANTASY XV POCKET EDITION HD","","status-playable","playable","2021-01-05 17:52:08.000" +"Dragon Ball Xenoverse 2 - 010078D000F88000","010078D000F88000","gpu;status-ingame;nvdec;online;ldn-untested","ingame","2022-07-24 12:31:01.000" +"Atelier Lydie & Suelle: The Alchemists and the Mysterious Paintings - 010009900947A000","010009900947A000","nvdec;status-playable","playable","2021-06-03 18:37:01.000" +"Nights of Azure 2: Bride of the New Moon - 0100628004BCE000","0100628004BCE000","status-menus;crash;nvdec;regression","menus","2022-11-24 16:00:39.000" +"RXN -Raijin-","","nvdec;status-playable","playable","2021-01-10 16:05:43.000" +"The Legend of Zelda: Breath of the Wild - 01007EF00011E000","01007EF00011E000","gpu;status-ingame;amd-vendor-bug;mac-bug","ingame","2024-09-23 19:35:46.000" +"The Messenger","","status-playable","playable","2020-03-22 13:51:37.000" +"Starlink: Battle for Atlas - 01002CC003FE6000","01002CC003FE6000","services-horizon;status-nothing;crash;Needs Update","nothing","2024-05-05 17:25:11.000" +"Nintendo Labo - Toy-Con 01: Variety Kit - 0100C4B0034B2000","0100C4B0034B2000","gpu;status-ingame","ingame","2022-08-07 12:56:07.000" +"Diablo III: Eternal Collection - 01001B300B9BE000","01001B300B9BE000","status-playable;online-broken;ldn-works","playable","2023-08-21 23:48:03.000" +"Road Redemption - 010053000B986000","010053000B986000","status-playable;online-broken","playable","2022-08-12 11:26:20.000" +"Brawlhalla - 0100C6800B934000","0100C6800B934000","online;opengl;status-playable","playable","2021-06-03 18:26:09.000" +"Super Mario Odyssey - 0100000000010000","0100000000010000","status-playable;nvdec;intel-vendor-bug;mac-bug","playable","2024-08-25 01:32:34.000" +"Sonic Mania Plus - 01009AA000FAA000","01009AA000FAA000","status-playable","playable","2022-01-16 04:09:11.000" +"Pokken Tournament DX Demo - 010030D005AE6000","010030D005AE6000","status-playable;demo;opengl-backend-bug","playable","2022-08-10 12:03:19.000" +"Fast RMX - 01009510001CA000","01009510001CA000","slow;status-ingame;crash;ldn-partial","ingame","2024-06-22 20:48:58.000" +"Steins;Gate Elite","","status-playable","playable","2020-08-04 07:33:32.000" +"Memories Off -Innocent Fille- for Dearest","","status-playable","playable","2020-08-04 07:31:22.000" +"Enchanting Mahjong Match","","gpu;status-ingame","ingame","2020-04-17 22:01:31.000" +"Code of Princess EX - 010034E005C9C000","010034E005C9C000","nvdec;online;status-playable","playable","2021-06-03 10:50:13.000" +"20XX - 0100749009844000","0100749009844000","gpu;status-ingame","ingame","2023-08-14 09:41:44.000" +"Cartoon Network Battle Crashers - 0100085003A2A000","0100085003A2A000","status-playable","playable","2022-07-21 21:55:40.000" +"Danmaku Unlimited 3","","status-playable","playable","2020-11-15 00:48:35.000" +"Mega Man Legacy Collection Vol.1 - 01002D4007AE0000","01002D4007AE0000","gpu;status-ingame","ingame","2021-06-03 18:17:17.000" +"Sparkle ZERO","","gpu;slow;status-ingame","ingame","2020-03-23 18:19:18.000" +"Sparkle 2","","status-playable","playable","2020-10-19 11:51:39.000" +"Sparkle Unleashed - 01000DC007E90000","01000DC007E90000","status-playable","playable","2021-06-03 14:52:15.000" +"I AM SETSUNA - 0100849000BDA000","0100849000BDA000","status-playable","playable","2021-11-28 11:06:11.000" +"Lego City Undercover - 01003A30012C0000","01003A30012C0000","status-playable;nvdec","playable","2024-09-30 08:44:27.000" +"Mega Man X Legacy Collection","","audio;crash;services;status-menus","menus","2020-12-04 04:30:17.000" +"Super Bomberman R - 01007AD00013E000","01007AD00013E000","status-playable;nvdec;online-broken;ldn-works","playable","2022-08-16 19:19:14.000" +"Mega Man 11 - 0100B0C0086B0000","0100B0C0086B0000","status-playable","playable","2021-04-26 12:07:53.000" +"Undertale - 010080B00AD66000","010080B00AD66000","status-playable","playable","2022-08-31 17:31:46.000" +"Pokémon: Let's Go, Eevee! - 0100187003A36000","0100187003A36000","status-ingame;crash;nvdec;online-broken;ldn-broken","ingame","2024-06-01 15:03:04.000" +"Poly Bridge","","services;status-playable","playable","2020-06-08 23:32:41.000" +"BlazBlue: Cross Tag Battle","","nvdec;online;status-playable","playable","2021-01-05 20:29:37.000" +"Capcom Beat 'Em Up Bundle","","status-playable","playable","2020-03-23 18:31:24.000" +"Owlboy","","status-playable","playable","2020-10-19 14:24:45.000" +"Subarashiki Kono Sekai -Final Remix-","","services;slow;status-ingame","ingame","2020-02-10 16:21:51.000" +"Ultra Street Fighter II: The Final Challengers - 01007330027EE000","01007330027EE000","status-playable;ldn-untested","playable","2021-11-25 07:54:58.000" +"Mighty Gunvolt Burst","","status-playable","playable","2020-10-19 16:05:49.000" +"Super Meat Boy","","services;status-playable","playable","2020-04-02 23:10:07.000" +"UNO - 01005AA00372A000","01005AA00372A000","status-playable;nvdec;ldn-untested","playable","2022-07-28 14:49:47.000" +"Tales of the Tiny Planet - 0100408007078000","0100408007078000","status-playable","playable","2021-01-25 15:47:41.000" +"Octopath Traveler","","UE4;crash;gpu;status-ingame","ingame","2020-08-31 02:34:36.000" +"A magical high school girl - 01008DD006C52000","01008DD006C52000","status-playable","playable","2022-07-19 14:40:50.000" +"Superbeat: Xonic EX - 0100FF60051E2000","0100FF60051E2000","status-ingame;crash;nvdec","ingame","2022-08-19 18:54:40.000" +"DRAGON BALL FighterZ - 0100A250097F0000","0100A250097F0000","UE4;ldn-broken;nvdec;online;status-playable","playable","2021-06-11 16:19:04.000" +"Arcade Archives VS. SUPER MARIO BROS.","","online;status-playable","playable","2021-04-08 14:48:11.000" +"Celeste","","status-playable","playable","2020-06-17 10:14:40.000" +"Hollow Knight - 0100633007D48000","0100633007D48000","status-playable;nvdec","playable","2023-01-16 15:44:56.000" +"Shining Resonance Refrain - 01009A5009A9E000","01009A5009A9E000","status-playable;nvdec","playable","2022-08-12 18:03:01.000" +"Valkyria Chronicles 4 Demo - 0100FBD00B91E000","0100FBD00B91E000","slow;status-ingame;demo","ingame","2022-08-29 20:39:07.000" +"Super Smash Bros. Ultimate - 01006A800016E000","01006A800016E000","gpu;status-ingame;crash;nvdec;ldn-works;intel-vendor-bug","ingame","2024-09-14 23:05:21.000" +"Cendrillon palikA - 01006B000A666000","01006B000A666000","gpu;status-ingame;nvdec","ingame","2022-07-21 22:52:24.000" +"Atari Flashback Classics","","","","2018-12-15 06:55:27.000" +"RPG Maker MV","","nvdec;status-playable","playable","2021-01-05 20:12:01.000" +"SNK 40th Anniversary Collection - 01004AB00AEF8000","01004AB00AEF8000","status-playable","playable","2022-08-14 13:33:15.000" +"Firewatch - 0100AC300919A000","0100AC300919A000","status-playable","playable","2021-06-03 10:56:38.000" +"Taiko no Tatsujin: Drum 'n' Fun! - 01002C000B552000","01002C000B552000","status-playable;online-broken;ldn-broken","playable","2023-05-20 15:10:12.000" +"Fairy Fencer F™: Advent Dark Force - 0100F6D00B8F2000","0100F6D00B8F2000","status-ingame;32-bit;crash;nvdec","ingame","2023-04-16 03:53:48.000" +"Azure Striker Gunvolt: STRIKER PACK - 0100192003FA4000","0100192003FA4000","32-bit;status-playable","playable","2024-02-10 23:51:21.000" +"LIMBO - 01009C8009026000","01009C8009026000","cpu;status-boots;32-bit","boots","2023-06-28 15:39:19.000" +"Dragon Marked for Death: Frontline Fighters (Empress & Warrior) - 010089700150E000","010089700150E000","status-playable;ldn-untested;audout","playable","2022-03-10 06:44:34.000" +"SENRAN KAGURA Reflexions","","status-playable","playable","2020-03-23 19:15:23.000" +"Dies irae Amantes amentes For Nintendo Switch - 0100BB900B5B4000","0100BB900B5B4000","status-nothing;32-bit;crash","nothing","2022-02-16 07:09:05.000" +"TETRIS 99 - 010040600C5CE000","010040600C5CE000","gpu;status-ingame;online-broken;ldn-untested","ingame","2024-05-02 16:36:41.000" +"Yoshi's Crafted World Demo Version","","gpu;status-boots;status-ingame","boots","2020-12-16 14:57:40.000" +"8-BIT ADVENTURE STEINS;GATE","","audio;status-ingame","ingame","2020-01-12 15:05:06.000" +"Ao no Kanata no Four Rhythm - 0100FA100620C000","0100FA100620C000","status-playable","playable","2022-07-21 10:50:42.000" +"DELTARUNE Chapter 1 - 010023800D64A000","010023800D64A000","status-playable","playable","2023-01-22 04:47:44.000" +"My Girlfriend is a Mermaid!?","","nvdec;status-playable","playable","2020-05-08 13:32:55.000" +"SEGA Mega Drive Classics","","online;status-playable","playable","2021-01-05 11:08:00.000" +"Aragami: Shadow Edition - 010071800BA74000","010071800BA74000","nvdec;status-playable","playable","2021-02-21 20:33:23.000" +"この世の果てで恋を唄う少女YU-NO","","audio;status-ingame","ingame","2021-01-22 07:00:16.000" +"Xenoblade Chronicles 2 - 0100E95004038000","0100E95004038000","deadlock;status-ingame;amd-vendor-bug","ingame","2024-03-28 14:31:41.000" +"Atelier Rorona Arland no Renkinjutsushi DX (JP) - 01002D700B906000","01002D700B906000","status-playable;nvdec","playable","2022-12-02 17:26:54.000" +"DEAD OR ALIVE Xtreme 3 Scarlet - 01009CC00C97C000","01009CC00C97C000","status-playable","playable","2022-07-23 17:05:06.000" +"Blaster Master Zero 2 - 01005AA00D676000","01005AA00D676000","status-playable","playable","2021-04-08 15:22:59.000" +"Vroom in the Night Sky - 01004E90028A2000","01004E90028A2000","status-playable;Needs Update;vulkan-backend-bug","playable","2023-02-20 02:32:29.000" +"Our World Is Ended.","","nvdec;status-playable","playable","2021-01-19 22:46:57.000" +"Mortal Kombat 11 - 0100F2200C984000","0100F2200C984000","slow;status-ingame;nvdec;online-broken;ldn-broken","ingame","2024-06-19 02:22:17.000" +"SEGA Ages: Virtua Racing - 010054400D2E6000","010054400D2E6000","status-playable;online-broken","playable","2023-01-29 17:08:39.000" +"BOXBOY! + BOXGIRL!","","status-playable","playable","2020-11-08 01:11:54.000" +"Hyrule Warriors: Definitive Edition - 0100AE00096EA000","0100AE00096EA000","services-horizon;status-ingame;nvdec","ingame","2024-06-16 10:34:05.000" +"Cytus α - 010063100B2C2000","010063100B2C2000","nvdec;status-playable","playable","2021-02-20 13:40:46.000" +"Resident Evil 4 - 010099A00BC1E000","010099A00BC1E000","status-playable;nvdec","playable","2022-11-16 21:16:04.000" +"Team Sonic Racing - 010092B0091D0000","010092B0091D0000","status-playable;online-broken;ldn-works","playable","2024-02-05 15:05:27.000" +"Pang Adventures - 010083700B730000","010083700B730000","status-playable","playable","2021-04-10 12:16:59.000" +"Remi Lore - 010095900B436000","010095900B436000","status-playable","playable","2021-06-03 18:58:15.000" +"SKYHILL - 0100A0A00D1AA000","0100A0A00D1AA000","status-playable","playable","2021-03-05 15:19:11.000" +"Valkyria Chronicles 4 - 01005C600AC68000","01005C600AC68000","audout;nvdec;status-playable","playable","2021-06-03 18:12:25.000" +"Crystal Crisis - 0100972008234000","0100972008234000","nvdec;status-playable","playable","2021-02-20 13:52:44.000" +"Crash Team Racing Nitro-Fueled - 0100F9F00C696000","0100F9F00C696000","gpu;status-ingame;nvdec;online-broken","ingame","2023-06-25 02:40:17.000" +"Collection of Mana","","status-playable","playable","2020-10-19 19:29:45.000" +"Super Mario Maker 2 - 01009B90006DC000","01009B90006DC000","status-playable;online-broken;ldn-broken","playable","2024-08-25 11:05:19.000" +"Nekopara Vol.3 - 010045000E418000","010045000E418000","status-playable","playable","2022-10-03 12:49:04.000" +"Moero Chronicle Hyper - 0100B8500D570000","0100B8500D570000","32-bit;status-playable","playable","2022-08-11 07:21:56.000" +"Monster Hunter XX Demo","","32-bit;cpu;status-nothing","nothing","2020-03-22 10:12:28.000" +"Super Neptunia RPG - 01004D600AC14000","01004D600AC14000","status-playable;nvdec","playable","2022-08-17 16:38:52.000" +"Terraria - 0100E46006708000","0100E46006708000","status-playable;online-broken","playable","2022-09-12 16:14:57.000" +"Megaman Legacy Collection 2","","status-playable","playable","2021-01-06 08:47:59.000" +"Blazing Chrome","","status-playable","playable","2020-11-16 04:56:54.000" +"Dragon Quest Builders 2 - 010042000A986000","010042000A986000","status-playable","playable","2024-04-19 16:36:38.000" +"CLANNAD - 0100A3A00CC7E000","0100A3A00CC7E000","status-playable","playable","2021-06-03 17:01:02.000" +"Ys VIII: Lacrimosa of Dana - 01007F200B0C0000","01007F200B0C0000","status-playable;nvdec","playable","2023-08-05 09:26:41.000" +"PC Building Simulator","","status-playable","playable","2020-06-12 00:31:58.000" +"NO THING","","status-playable","playable","2021-01-04 19:06:01.000" +"The Swords of Ditto","","slow;status-ingame","ingame","2020-12-06 00:13:12.000" +"Kill la Kill - IF","","status-playable","playable","2020-06-09 14:47:08.000" +"Spyro Reignited Trilogy","","Needs More Attention;UE4;crash;gpu;nvdec;status-menus","menus","2021-01-22 13:01:56.000" +"FINAL FANTASY VIII REMASTERED - 01008B900DC0A000","01008B900DC0A000","status-playable;nvdec","playable","2023-02-15 10:57:48.000" +"Super Nintendo Entertainment System - Nintendo Switch Online","","status-playable","playable","2021-01-05 00:29:48.000" +"スーパーファミコン Nintendo Switch Online","","slow;status-ingame","ingame","2020-03-14 05:48:38.000" +"Street Fighter 30th Anniversary Collection - 0100024008310000","0100024008310000","status-playable;online-broken;ldn-partial","playable","2022-08-20 16:50:47.000" +"Cadence of Hyrule Crypt of the NecroDancer Featuring The Legend of Zelda - 01000B900D8B0000","01000B900D8B0000","slow;status-playable;nvdec","playable","2024-04-01 22:43:40.000" +"Nekopara Vol.2","","status-playable","playable","2020-12-16 11:04:47.000" +"Nekopara Vol.1 - 0100B4900AD3E000","0100B4900AD3E000","status-playable;nvdec","playable","2022-08-06 18:25:54.000" +"Gunvolt Chronicles: Luminous Avenger iX","","status-playable","playable","2020-06-16 22:47:07.000" +"Outlast - 01008D4007A1E000","01008D4007A1E000","status-playable;nvdec;loader-allocator;vulkan-backend-bug","playable","2024-01-27 04:44:26.000" +"OKAMI HD - 0100276009872000","0100276009872000","status-playable;nvdec","playable","2024-04-05 06:24:58.000" +"Luigi's Mansion 3 - 0100DCA0064A6000","0100DCA0064A6000","gpu;slow;status-ingame;Needs Update;ldn-works","ingame","2024-09-27 22:17:36.000" +"The Legend of Zelda: Link's Awakening - 01006BB00C6F0000","01006BB00C6F0000","gpu;status-ingame;nvdec;mac-bug","ingame","2023-08-09 17:37:40.000" +"Cat Quest","","status-playable","playable","2020-04-02 23:09:32.000" +"Xenoblade Chronicles 2: Torna - The Golden Country - 0100C9F009F7A000","0100C9F009F7A000","slow;status-playable;nvdec","playable","2023-01-28 16:47:28.000" +"Devil May Cry","","nvdec;status-playable","playable","2021-01-04 19:43:08.000" +"Fire Emblem Warriors - 0100F15003E64000","0100F15003E64000","status-playable;nvdec","playable","2023-05-10 01:53:10.000" +"Disgaea 4 Complete Plus","","gpu;slow;status-playable","playable","2020-02-18 10:54:28.000" +"Donkey Kong Country Tropical Freeze - 0100C1F0051B6000","0100C1F0051B6000","status-playable","playable","2024-08-05 16:46:10.000" +"Puzzle and Dragons GOLD","","slow;status-playable","playable","2020-05-13 15:09:34.000" +"Fe","","","","2020-01-21 04:08:33.000" +"MARIO & SONIC AT THE OLYMPIC GAMES TOKYO 2020 - 010002C00C270000","010002C00C270000","status-ingame;crash;online-broken;ldn-works","ingame","2024-08-23 16:12:55.000" +"void* tRrLM(); //Void Terrarium - 0100FF7010E7E000","0100FF7010E7E000","gpu;status-ingame;Needs Update;regression","ingame","2023-02-10 01:13:25.000" +"Cars 3 Driven to Win - 01008D1001512000","01008D1001512000","gpu;status-ingame","ingame","2022-07-21 21:21:05.000" +"Yu-Gi-Oh! Legacy of the Duelist: Link Evolution! - 010022400BE5A000","010022400BE5A000","status-playable","playable","2024-09-27 21:48:43.000" +"Baba Is You - 01002CD00A51C000","01002CD00A51C000","status-playable","playable","2022-07-17 05:36:54.000" +"Thronebreaker: The Witcher Tales - 0100E910103B4000","0100E910103B4000","nvdec;status-playable","playable","2021-06-03 16:40:15.000" +"Fitness Boxing","","services;status-ingame","ingame","2020-05-17 14:00:48.000" +"Fire Emblem: Three Houses - 010055D009F78000","010055D009F78000","status-playable;online-broken","playable","2024-09-14 23:53:50.000" +"Persona 5: Scramble","","deadlock;status-boots","boots","2020-10-04 03:22:29.000" +"Pokémon Sword - 0100ABF008968000","0100ABF008968000","deadlock;status-ingame;crash;online-broken;ldn-works;LAN","ingame","2024-08-26 15:40:37.000" +"Mario + Rabbids Kingdom Battle - 010067300059A000","010067300059A000","slow;status-playable;opengl-backend-bug","playable","2024-05-06 10:16:54.000" +"Tokyo Mirage Sessions #FE Encore - 0100A9400C9C2000","0100A9400C9C2000","32-bit;status-playable;nvdec","playable","2022-07-07 09:41:07.000" +"Disgaea 1 Complete - 01004B100AF18000","01004B100AF18000","status-playable","playable","2023-01-30 21:45:23.000" +"初音ミク Project DIVA MEGA39's - 0100F3100DA46000","0100F3100DA46000","audio;status-playable;loader-allocator","playable","2022-07-29 11:45:52.000" +"Minna de Wai Wai! Spelunker - 0100C3F000BD8000","0100C3F000BD8000","status-nothing;crash","nothing","2021-11-03 07:17:11.000" +"Nickelodeon Paw Patrol: On a Roll - 0100CEC003A4A000","0100CEC003A4A000","nvdec;status-playable","playable","2021-01-28 21:14:49.000" +"Rune Factory 4 Special - 010051D00E3A4000","010051D00E3A4000","status-ingame;32-bit;crash;nvdec","ingame","2023-05-06 08:49:17.000" +"Mario Kart 8 Deluxe - 0100152000022000","0100152000022000","32-bit;status-playable;ldn-works;LAN;amd-vendor-bug","playable","2024-09-19 11:55:17.000" +"Pokémon Mystery Dungeon Rescue Team DX - 01003D200BAA2000","01003D200BAA2000","status-playable;mac-bug","playable","2024-01-21 00:16:32.000" +"YGGDRA UNION We’ll Never Fight Alone","","status-playable","playable","2020-04-03 02:20:47.000" +"メモリーズオフ - Innocent Fille - 010065500B218000","010065500B218000","status-playable","playable","2022-12-02 17:36:48.000" +"Bokujou Monogatari Saikai no Mineraru Taun (Story of Seasons: Friends of Mineral Town) - 01001D900D9AC000","01001D900D9AC000","slow;status-ingame;crash;Needs Update","ingame","2022-04-24 22:46:04.000" +"Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy - Deluxe Edition - 0100CE500D226000","0100CE500D226000","status-playable;nvdec;opengl","playable","2022-09-14 15:01:57.000" +"Animal Crossing: New Horizons - 01006F8002326000","01006F8002326000","gpu;status-ingame;crash;nvdec;online-broken;ldn-works;mac-bug","ingame","2024-09-23 13:31:49.000" +"Crayon Shin-chan The Storm Called Flaming Kasukabe Runner!","","services;status-menus","menus","2020-03-20 14:00:57.000" +"Super One More Jump - 0100284007D6C000","0100284007D6C000","status-playable","playable","2022-08-17 16:47:47.000" +"Trine - 0100D9000A930000","0100D9000A930000","ldn-untested;nvdec;status-playable","playable","2021-06-03 11:28:15.000" +"Sky Force Reloaded","","status-playable","playable","2021-01-04 20:06:57.000" +"World of Goo - 010009E001D90000","010009E001D90000","gpu;status-boots;32-bit;crash;regression","boots","2024-04-12 05:52:14.000" +"ZERO GUNNER 2","","status-playable","playable","2021-01-04 20:17:14.000" +"Zaccaria Pinball - 010092400A678000","010092400A678000","status-playable;online-broken","playable","2022-09-03 15:44:28.000" +"1917 - The Alien Invasion DX","","status-playable","playable","2021-01-08 22:11:16.000" +"Astro Duel Deluxe - 0100F0400351C000","0100F0400351C000","32-bit;status-playable","playable","2021-06-03 11:21:48.000" +"Another World - 01003C300AAAE000","01003C300AAAE000","slow;status-playable","playable","2022-07-21 10:42:38.000" +"Ring Fit Adventure - 01002FF008C24000","01002FF008C24000","crash;services;status-nothing","nothing","2021-04-14 19:00:01.000" +"Arcade Classics Anniversary Collection - 010050000D6C4000","010050000D6C4000","status-playable","playable","2021-06-03 13:55:10.000" +"Assault Android Cactus+ - 0100DF200B24C000","0100DF200B24C000","status-playable","playable","2021-06-03 13:23:55.000" +"American Fugitive","","nvdec;status-playable","playable","2021-01-04 20:45:11.000" +"Nickelodeon Kart Racers","","status-playable","playable","2021-01-07 12:16:49.000" +"Neonwall - 0100743008694000","0100743008694000","status-playable;nvdec","playable","2022-08-06 18:49:52.000" +"Never Stop Sneakin'","","","","2020-03-19 12:55:40.000" +"Next Up Hero","","online;status-playable","playable","2021-01-04 22:39:36.000" +"Ninja Striker","","status-playable","playable","2020-12-08 19:33:29.000" +"Not Not a Brain Buster","","status-playable","playable","2020-05-10 02:05:26.000" +"Oh...Sir! The Hollywood Roast","","status-ingame","ingame","2020-12-06 00:42:30.000" +"Old School Musical","","status-playable","playable","2020-12-10 12:51:12.000" +"Abyss","","","","2020-03-19 15:41:55.000" +"Alteric","","status-playable","playable","2020-11-08 13:53:22.000" +"AIRHEART - Tales of Broken Wings - 01003DD00BFEE000","01003DD00BFEE000","status-playable","playable","2021-02-26 15:20:27.000" +"Necrosphere","","","","2020-03-19 17:25:03.000" +"Neverout","","","","2020-03-19 17:33:39.000" +"Old Man's Journey - 0100CE2007A86000","0100CE2007A86000","nvdec;status-playable","playable","2021-01-28 19:16:52.000" +"Dr Kawashima's Brain Training - 0100ED000D390000","0100ED000D390000","services;status-ingame","ingame","2023-06-04 00:06:46.000" +"Nine Parchments - 0100D03003F0E000","0100D03003F0E000","status-playable;ldn-untested","playable","2022-08-07 12:32:08.000" +"All-Star Fruit Racing - 0100C1F00A9B8000","0100C1F00A9B8000","status-playable;nvdec;UE4","playable","2022-07-21 00:35:37.000" +"Armello","","nvdec;status-playable","playable","2021-01-07 11:43:26.000" +"DOOM 64","","nvdec;status-playable;vulkan","playable","2020-10-13 23:47:28.000" +"Motto New Pazzmatsu-san Shimpin Sotsugyo Keikaku","","","","2020-03-20 14:53:55.000" +"Refreshing Sideways Puzzle Ghost Hammer","","status-playable","playable","2020-10-18 12:08:54.000" +"Astebreed - 010057A00C1F6000","010057A00C1F6000","status-playable","playable","2022-07-21 17:33:54.000" +"ASCENDANCE","","status-playable","playable","2021-01-05 10:54:40.000" +"Astral Chain - 01007300020FA000","01007300020FA000","status-playable","playable","2024-07-17 18:02:19.000" +"Oceanhorn","","status-playable","playable","2021-01-05 13:55:22.000" +"NORTH","","nvdec;status-playable","playable","2021-01-05 16:17:44.000" +"No Heroes Here","","online;status-playable","playable","2020-05-10 02:41:57.000" +"New Frontier Days -Founding Pioneers-","","status-playable","playable","2020-12-10 12:45:07.000" +"Star Ghost","","","","2020-03-20 23:40:10.000" +"Stern Pinball Arcade - 0100AE0006474000","0100AE0006474000","status-playable","playable","2022-08-16 14:24:41.000" +"Nightmare Boy","","status-playable","playable","2021-01-05 15:52:29.000" +"Pinball FX3 - 0100DB7003828000","0100DB7003828000","status-playable;online-broken","playable","2022-11-11 23:49:07.000" +"Polygod - 010017600B180000","010017600B180000","slow;status-ingame;regression","ingame","2022-08-10 14:38:14.000" +"Prison Architect - 010029200AB1C000","010029200AB1C000","status-playable","playable","2021-04-10 12:27:58.000" +"Psikyo Collection Vol 1","","32-bit;status-playable","playable","2020-10-11 13:18:47.000" +"Raging Justice - 01003D00099EC000","01003D00099EC000","status-playable","playable","2021-06-03 14:06:50.000" +"Old School Racer 2","","status-playable","playable","2020-10-19 12:11:26.000" +"Death Road to Canada - 0100423009358000","0100423009358000","gpu;audio;status-nothing;32-bit;crash","nothing","2023-06-28 15:39:26.000" +"Feather - 0100E4300CB3E000","0100E4300CB3E000","status-playable","playable","2021-06-03 14:11:27.000" +"Laser Kitty Pow Pow","","","","2020-03-21 23:44:13.000" +"Bad Dudes","","status-playable","playable","2020-12-10 12:30:56.000" +"Bomber Crew - 01007900080B6000","01007900080B6000","status-playable","playable","2021-06-03 14:21:28.000" +"Death Squared","","status-playable","playable","2020-12-04 13:00:15.000" +"PAC-MAN CHAMPIONSHIP EDITION 2 PLUS","","status-playable","playable","2021-01-19 22:06:18.000" +"RollerCoaster Tycoon Adventures","","nvdec;status-playable","playable","2021-01-05 18:14:18.000" +"STAY - 0100616009082000","0100616009082000","crash;services;status-boots","boots","2021-04-23 14:24:52.000" +"STRIKERS1945 for Nintendo Switch - 0100FF5005B76000","0100FF5005B76000","32-bit;status-playable","playable","2021-06-03 19:35:04.000" +"STRIKERS1945II for Nintendo Switch - 0100720008ED2000","0100720008ED2000","32-bit;status-playable","playable","2021-06-03 19:43:00.000" +"BLEED","","","","2020-03-22 09:15:11.000" +"Earthworms Demo","","status-playable","playable","2021-01-05 16:57:11.000" +"MEMBRANE","","","","2020-03-22 10:25:32.000" +"Mercenary Kings","","online;status-playable","playable","2020-10-16 13:05:58.000" +"Morphite","","status-playable","playable","2021-01-05 19:40:55.000" +"Spiral Splatter","","status-playable","playable","2020-06-04 14:03:57.000" +"Odium to the Core","","gpu;status-ingame","ingame","2021-01-08 14:03:52.000" +"Brawl","","nvdec;slow;status-playable","playable","2020-06-04 14:23:18.000" +"Defunct","","status-playable","playable","2021-01-08 21:33:46.000" +"Dracula's Legacy","","nvdec;status-playable","playable","2020-12-10 13:24:25.000" +"Submerged - 0100EDA00D866000","0100EDA00D866000","status-playable;nvdec;UE4;vulkan-backend-bug","playable","2022-08-16 15:17:01.000" +"Resident Evil Revelations - 0100643002136000","0100643002136000","status-playable;nvdec;ldn-untested","playable","2022-08-11 12:44:19.000" +"Pokémon: Let's Go, Pikachu! - 010003F003A34000","010003F003A34000","status-ingame;crash;nvdec;online-broken;ldn-broken","ingame","2024-03-15 07:55:41.000" +"Syberia 1 & 2 - 01004BB00421E000","01004BB00421E000","status-playable","playable","2021-12-24 12:06:25.000" +"Light Fall","","nvdec;status-playable","playable","2021-01-18 14:55:36.000" +"PLANET ALPHA","","UE4;gpu;status-ingame","ingame","2020-12-16 14:42:20.000" +"Game Doraemon Nobita no Shin Kyoryu - 01006BD00F8C0000","01006BD00F8C0000","gpu;status-ingame","ingame","2023-02-27 02:03:28.000" +"Shift Happens","","status-playable","playable","2021-01-05 21:24:18.000" +"SENRAN KAGURA Peach Ball - 0100D1800D902000","0100D1800D902000","status-playable","playable","2021-06-03 15:12:10.000" +"Shadow Bug","","","","2020-03-23 20:26:08.000" +"Dandy Dungeon: Legend of Brave Yamada","","status-playable","playable","2021-01-06 09:48:47.000" +"Scribblenauts Mega Pack","","nvdec;status-playable","playable","2020-12-17 22:56:14.000" +"Scribblenauts Showdown","","gpu;nvdec;status-ingame","ingame","2020-12-17 23:05:53.000" +"Super Chariot - 010065F004E5E000","010065F004E5E000","status-playable","playable","2021-06-03 13:19:01.000" +"Table Top Racing World Tour Nitro Edition","","status-playable","playable","2020-04-05 23:21:30.000" +"The Pinball Arcade - 0100CD300880E000","0100CD300880E000","status-playable;online-broken","playable","2022-08-22 19:49:46.000" +"The Room - 010079400BEE0000","010079400BEE0000","status-playable","playable","2021-04-14 18:57:05.000" +"The Binding of Isaac: Afterbirth+ - 010021C000B6A000","010021C000B6A000","status-playable","playable","2021-04-26 14:11:56.000" +"World Soccer Pinball","","status-playable","playable","2021-01-06 00:37:02.000" +"ZOMBIE GOLD RUSH","","online;status-playable","playable","2020-09-24 12:56:08.000" +"Wondershot - 0100F5D00C812000","0100F5D00C812000","status-playable","playable","2022-08-31 21:05:31.000" +"Yet Another Zombie Defense HD","","status-playable","playable","2021-01-06 00:18:39.000" +"Among the Sleep - Enhanced Edition - 010046500C8D2000","010046500C8D2000","nvdec;status-playable","playable","2021-06-03 15:06:25.000" +"Silence - 0100F1400B0D6000","0100F1400B0D6000","nvdec;status-playable","playable","2021-06-03 14:46:17.000" +"A Robot Named Fight","","","","2020-03-24 19:27:39.000" +"60 Seconds! - 0100969005E98000","0100969005E98000","services;status-ingame","ingame","2021-11-30 01:04:14.000" +"Xenon Racer - 010028600BA16000","010028600BA16000","status-playable;nvdec;UE4","playable","2022-08-31 22:05:30.000" +"Awesome Pea","","status-playable","playable","2020-10-11 12:39:23.000" +"Woodle Tree 2","","gpu;slow;status-ingame","ingame","2020-06-04 18:44:00.000" +"Volgarr the Viking","","status-playable","playable","2020-12-18 15:25:50.000" +"VVVVVV","","","","2020-03-24 21:53:29.000" +"Vegas Party - 01009CD003A0A000","01009CD003A0A000","status-playable","playable","2021-04-14 19:21:41.000" +"Worms W.M.D - 01001AE005166000","01001AE005166000","gpu;status-boots;crash;nvdec;ldn-untested","boots","2023-09-16 21:42:59.000" +"Ambition of the Slimes","","","","2020-03-24 22:46:18.000" +"WINDJAMMERS","","online;status-playable","playable","2020-10-13 11:24:25.000" +"WarGroove - 01000F0002BB6000","01000F0002BB6000","status-playable;online-broken","playable","2022-08-31 10:30:45.000" +"Car Mechanic Manager","","status-playable","playable","2020-07-23 18:50:17.000" +"Cattails - 010004400B28A000","010004400B28A000","status-playable","playable","2021-06-03 14:36:57.000" +"Chameleon Run Deluxe Edition","","","","2020-03-25 00:20:21.000" +"ClusterPuck 99","","status-playable","playable","2021-01-06 00:28:12.000" +"Coloring Book - 0100A7000BD28000","0100A7000BD28000","status-playable","playable","2022-07-22 11:17:05.000" +"Crashlands - 010027100BD16000","010027100BD16000","status-playable","playable","2021-05-27 20:30:06.000" +"Crimsonland - 01005640080B0000","01005640080B0000","status-playable","playable","2021-05-27 20:50:54.000" +"Cubikolor","","","","2020-03-25 00:39:17.000" +"My Friend Pedro: Blood Bullets Bananas - 010031200B94C000","010031200B94C000","nvdec;status-playable","playable","2021-05-28 11:19:17.000" +"VA-11 HALL-A - 0100A6700D66E000","0100A6700D66E000","status-playable","playable","2021-02-26 15:05:34.000" +"Octodad Dadliest Catch - 0100CAB006F54000","0100CAB006F54000","crash;status-boots","boots","2021-04-23 15:26:12.000" +"Neko Navy: Daydream Edition","","","","2020-03-25 10:11:47.000" +"Neon Chrome - 010075E0047F8000","010075E0047F8000","status-playable","playable","2022-08-06 18:38:34.000" +"NeuroVoider","","status-playable","playable","2020-06-04 18:20:05.000" +"Ninjin: Clash of Carrots - 010003C00B868000","010003C00B868000","status-playable;online-broken","playable","2024-07-10 05:12:26.000" +"Nuclien","","status-playable","playable","2020-05-10 05:32:55.000" +"Number Place 10000 - 010020500C8C8000","010020500C8C8000","gpu;status-menus","menus","2021-11-24 09:14:23.000" +"Octocopter: Double or Squids","","status-playable","playable","2021-01-06 01:30:16.000" +"Odallus - 010084300C816000","010084300C816000","status-playable","playable","2022-08-08 12:37:58.000" +"One Eyed Kutkh","","","","2020-03-25 11:42:58.000" +"One More Dungeon","","status-playable","playable","2021-01-06 09:10:58.000" +"1-2-Switch - 01000320000CC000","01000320000CC000","services;status-playable","playable","2022-02-18 14:44:03.000" +"ACA NEOGEO AERO FIGHTERS 2 - 0100AC40038F4000","0100AC40038F4000","online;status-playable","playable","2021-04-08 15:44:09.000" +"Captain Toad: Treasure Tracker - 01009BF0072D4000","01009BF0072D4000","32-bit;status-playable","playable","2024-04-25 00:50:16.000" +"Vaccine","","nvdec;status-playable","playable","2021-01-06 01:02:07.000" +"Carnival Games - 010088C0092FE000","010088C0092FE000","status-playable;nvdec","playable","2022-07-21 21:01:22.000" +"OLYMPIC GAMES TOKYO 2020","","ldn-untested;nvdec;online;status-playable","playable","2021-01-06 01:20:24.000" +"Yodanji","","","","2020-03-25 16:28:53.000" +"Axiom Verge","","status-playable","playable","2020-10-20 01:07:18.000" +"Blaster Master Zero - 0100225000FEE000","0100225000FEE000","32-bit;status-playable","playable","2021-03-05 13:22:33.000" +"SamuraiAces for Nintendo Switch","","32-bit;status-playable","playable","2020-11-24 20:26:55.000" +"Rogue Aces - 0100EC7009348000","0100EC7009348000","gpu;services;status-ingame;nvdec","ingame","2021-11-30 02:18:30.000" +"Pokémon HOME","","Needs Update;crash;services;status-menus","menus","2020-12-06 06:01:51.000" +"Safety First!","","status-playable","playable","2021-01-06 09:05:23.000" +"3D MiniGolf","","status-playable","playable","2021-01-06 09:22:11.000" +"DOUBLE DRAGON4","","","","2020-03-25 23:46:46.000" +"Don't Die Mr. Robot DX - 010007200AC0E000","010007200AC0E000","status-playable;nvdec","playable","2022-09-02 18:34:38.000" +"DERU - The Art of Cooperation","","status-playable","playable","2021-01-07 16:59:59.000" +"Darts Up - 0100BA500B660000","0100BA500B660000","status-playable","playable","2021-04-14 17:22:22.000" +"Deponia - 010023600C704000","010023600C704000","nvdec;status-playable","playable","2021-01-26 17:17:19.000" +"Devious Dungeon - 01009EA00A320000","01009EA00A320000","status-playable","playable","2021-03-04 13:03:06.000" +"Turok - 010085500D5F6000","010085500D5F6000","gpu;status-ingame","ingame","2021-06-04 13:16:24.000" +"Toast Time: Smash Up!","","crash;services;status-menus","menus","2020-04-03 12:26:59.000" +"The VideoKid","","nvdec;status-playable","playable","2021-01-06 09:28:24.000" +"Timberman VS","","","","2020-03-26 14:18:29.000" +"Time Recoil - 0100F770045CA000","0100F770045CA000","status-playable","playable","2022-08-24 12:44:03.000" +"Toby: The Secret Mine","","nvdec;status-playable","playable","2021-01-06 09:22:33.000" +"Toki Tori","","","","2020-03-26 14:49:54.000" +"Totes the Goat","","","","2020-03-26 14:55:00.000" +"Twin Robots: Ultimate Edition - 0100047009742000","0100047009742000","status-playable;nvdec","playable","2022-08-25 14:24:03.000" +"Ultimate Runner - 010045200A1C2000","010045200A1C2000","status-playable","playable","2022-08-29 12:52:40.000" +"UnExplored - Unlocked Edition","","status-playable","playable","2021-01-06 10:02:16.000" +"Unepic - 01008F80049C6000","01008F80049C6000","status-playable","playable","2024-01-15 17:03:00.000" +"Uncanny Valley - 01002D900C5E4000","01002D900C5E4000","nvdec;status-playable","playable","2021-06-04 13:28:45.000" +"Ultra Hyperball","","status-playable","playable","2021-01-06 10:09:55.000" +"Timespinner - 0100DD300CF3A000","0100DD300CF3A000","gpu;status-ingame","ingame","2022-08-09 09:39:11.000" +"Tiny Barbarian DX","","","","2020-03-26 18:46:29.000" +"TorqueL -Physics Modified Edition-","","","","2020-03-26 18:55:23.000" +"Unholy Heights","","","","2020-03-26 19:03:43.000" +"Uurnog Uurnlimited","","","","2020-03-26 19:34:02.000" +"de Blob 2","","nvdec;status-playable","playable","2021-01-06 13:00:16.000" +"The Trail: Frontier Challenge - 0100B0E0086F6000","0100B0E0086F6000","slow;status-playable","playable","2022-08-23 15:10:51.000" +"Toy Stunt Bike: Tiptop's Trials - 01009FF00A160000","01009FF00A160000","UE4;status-playable","playable","2021-04-10 13:56:34.000" +"TumbleSeed","","","","2020-03-26 21:27:06.000" +"Type:Rider","","status-playable","playable","2021-01-06 13:12:55.000" +"Dawn of the Breakers - 0100F0B0081DA000","0100F0B0081DA000","status-menus;online-broken;vulkan-backend-bug","menus","2022-12-08 14:40:03.000" +"Thumper - 01006F6002840000","01006F6002840000","gpu;status-ingame","ingame","2024-08-12 02:41:07.000" +"Revenge of Justice - 010027400F708000 ","010027400F708000","status-playable;nvdec","playable","2022-11-20 15:43:23.000" +"Dead Synchronicity: Tomorrow Comes Today","","","","2020-03-26 23:13:28.000" +"Them Bombs","","","","2020-03-27 12:46:15.000" +"Alwa's Awakening","","status-playable","playable","2020-10-13 11:52:01.000" +"La Mulana 2 - 010038000F644000","010038000F644000","status-playable","playable","2022-09-03 13:45:57.000" +"Tied Together - 0100B6D00C2DE000","0100B6D00C2DE000","nvdec;status-playable","playable","2021-04-10 14:03:46.000" +"Magic Scroll Tactics","","","","2020-03-27 14:00:41.000" +"SeaBed","","status-playable","playable","2020-05-17 13:25:37.000" +"Wenjia","","status-playable","playable","2020-06-08 11:38:30.000" +"DragonBlaze for Nintendo Switch","","32-bit;status-playable","playable","2020-10-14 11:11:28.000" +"Debris Infinity - 010034F00BFC8000","010034F00BFC8000","nvdec;online;status-playable","playable","2021-05-28 12:14:39.000" +"Die for Valhalla!","","status-playable","playable","2021-01-06 16:09:14.000" +"Double Cross","","status-playable","playable","2021-01-07 15:34:22.000" +"Deep Ones","","services;status-nothing","nothing","2020-04-03 02:54:19.000" +"One Step to Eden","","","","2020-03-27 16:31:39.000" +"Bravely Default II Demo - 0100B6801137E000","0100B6801137E000","gpu;status-ingame;crash;UE4;demo","ingame","2022-09-27 05:39:47.000" +"Prison Princess - 0100F4800F872000","0100F4800F872000","status-playable","playable","2022-11-20 15:00:25.000" +"NinNinDays - 0100746010E4C000","0100746010E4C000","status-playable","playable","2022-11-20 15:17:29.000" +"Syrup and the Ultimate Sweet","","","","2020-03-27 21:10:42.000" +"Touhou Gensou Mahjong","","","","2020-03-27 21:36:20.000" +"Shikhondo Soul Eater","","","","2020-03-27 22:14:23.000" +" de Shooting wa Machigatteiru Daroka","","","","2020-03-27 22:27:54.000" +"MY HERO ONE'S JUSTICE","","UE4;crash;gpu;online;status-menus","menus","2020-12-10 13:11:04.000" +"Heaven Dust","","status-playable","playable","2020-05-17 14:02:41.000" +"Touhou Sky Arena matsuri climax","","","","2020-03-28 00:25:17.000" +"Mercenaries Wings The False Phoenix","","crash;services;status-nothing","nothing","2020-05-08 22:42:12.000" +"Don't Sink - 0100C4D00B608000","0100C4D00B608000","gpu;status-ingame","ingame","2021-02-26 15:41:11.000" +"Disease -Hidden Object-","","","","2020-03-28 08:17:51.000" +"Dexteritrip","","status-playable","playable","2021-01-06 12:51:12.000" +"Devil Engine - 010031B00CF66000","010031B00CF66000","status-playable","playable","2021-06-04 11:54:30.000" +"Detective Gallo - 01009C0009842000","01009C0009842000","status-playable;nvdec","playable","2022-07-24 11:51:04.000" +"Zettai kaikyu gakuen","","gpu;nvdec;status-ingame","ingame","2020-08-25 15:15:54.000" +"Demetrios - The BIG Cynical Adventure - 0100AB600ACB4000","0100AB600ACB4000","status-playable","playable","2021-06-04 12:01:01.000" +"Degrees of Separation","","status-playable","playable","2021-01-10 13:40:04.000" +"De Mambo - 01008E900471E000","01008E900471E000","status-playable","playable","2021-04-10 12:39:40.000" +"Death Mark","","status-playable","playable","2020-12-13 10:56:25.000" +"Deemo - 01002CC0062B8000","01002CC0062B8000","status-playable","playable","2022-07-24 11:34:33.000" +"Disgaea 5 Complete - 01005700031AE000","01005700031AE000","nvdec;status-playable","playable","2021-03-04 15:32:54.000" +"The World Ends With You -Final Remix- - 0100C1500B82E000","0100C1500B82E000","status-playable;ldn-untested","playable","2022-07-09 01:11:21.000" +"Don't Knock Twice - 0100E470067A8000","0100E470067A8000","status-playable","playable","2024-05-08 22:37:58.000" +"True Fear: Forsaken Souls - Part 1","","nvdec;status-playable","playable","2020-12-15 21:39:52.000" +"Disco Dodgeball Remix","","online;status-playable","playable","2020-09-28 23:24:49.000" +"Demon's Crystals - 0100A2B00BD88000","0100A2B00BD88000","status-nothing;crash;regression","nothing","2022-12-07 16:33:17.000" +"Dimension Drive","","","","2020-03-29 10:40:38.000" +"Tower of Babel","","status-playable","playable","2021-01-06 17:05:15.000" +"Disc Jam - 0100510004D2C000","0100510004D2C000","UE4;ldn-untested;nvdec;online;status-playable","playable","2021-04-08 16:40:35.000" +"DIABOLIK LOVERS CHAOS LINEAGE - 010027400BD24000","010027400BD24000","gpu;status-ingame;Needs Update","ingame","2023-06-08 02:20:44.000" +"Detention","","","","2020-03-29 11:17:35.000" +"Tumblestone","","status-playable","playable","2021-01-07 17:49:20.000" +"De Blob","","nvdec;status-playable","playable","2021-01-06 17:34:46.000" +"The Voice ","","services;status-menus","menus","2020-07-28 20:48:49.000" +"DESTINY CONNECT","","UE4;gpu;nvdec;status-ingame","ingame","2020-12-16 12:20:36.000" +"The Sexy Brutale","","status-playable","playable","2021-01-06 17:48:28.000" +"Unicornicopia","","","","2020-03-29 13:01:35.000" +"Ultra Space Battle Brawl","","","","2020-03-29 13:13:02.000" +"Unruly Heroes","","status-playable","playable","2021-01-07 18:09:31.000" +"UglyDolls: An Imperfect Adventure - 010079000B56C000","010079000B56C000","status-playable;nvdec;UE4","playable","2022-08-25 14:42:16.000" +"Use Your Words - 01007C0003AEC000","01007C0003AEC000","status-menus;nvdec;online-broken","menus","2022-08-29 17:22:10.000" +"New Super Lucky's Tale - 010017700B6C2000","010017700B6C2000","status-playable","playable","2024-03-11 14:14:10.000" +"Yooka-Laylee and the Impossible Lair - 010022F00DA66000","010022F00DA66000","status-playable","playable","2021-03-05 17:32:21.000" +"GRIS - 0100E1700C31C000","0100E1700C31C000","nvdec;status-playable","playable","2021-06-03 13:33:44.000" +"Monster Boy and the Cursed Kingdom - 01006F7001D10000","01006F7001D10000","status-playable;nvdec","playable","2022-08-04 20:06:32.000" +"Guns Gore and Cannoli 2","","online;status-playable","playable","2021-01-06 18:43:59.000" +"Mark of the Ninja Remastered - 01009A700A538000","01009A700A538000","status-playable","playable","2022-08-04 15:48:30.000" +"DOOM - 0100416004C00000","0100416004C00000","gpu;slow;status-ingame;nvdec;online-broken","ingame","2024-09-23 15:40:07.000" +"TINY METAL - 010074800741A000","010074800741A000","UE4;gpu;nvdec;status-ingame","ingame","2021-03-05 17:11:57.000" +"Shadowgate","","status-playable","playable","2021-04-24 07:32:57.000" +"R-Type Dimensions EX","","status-playable","playable","2020-10-09 12:04:43.000" +"Thea: The Awakening","","status-playable","playable","2021-01-18 15:08:47.000" +"Toki","","nvdec;status-playable","playable","2021-01-06 19:59:23.000" +"Superhot - 01001A500E8B4000","01001A500E8B4000","status-playable","playable","2021-05-05 19:51:30.000" +"Tools Up!","","crash;status-ingame","ingame","2020-07-21 12:58:17.000" +"The Stretchers - 0100AA400A238000","0100AA400A238000","status-playable;nvdec;UE4","playable","2022-09-16 15:40:58.000" +"Shantae: Half-Genie Hero Ultimate Edition","","status-playable","playable","2020-06-04 20:14:20.000" +"Monster Hunter Generation Ultimate - 0100770008DD8000","0100770008DD8000","32-bit;status-playable;online-broken;ldn-works","playable","2024-03-18 14:35:36.000" +"ATV Drift & Tricks - 01000F600B01E000","01000F600B01E000","UE4;online;status-playable","playable","2021-04-08 17:29:17.000" +"Metaloid: Origin","","status-playable","playable","2020-06-04 20:26:35.000" +"The Walking Dead: The Final Season - 010060F00AA70000","010060F00AA70000","status-playable;online-broken","playable","2022-08-23 17:22:32.000" +"Lyrica","","","","2020-03-31 10:09:40.000" +"Beat Cop","","status-playable","playable","2021-01-06 19:26:48.000" +"Broforce - 010060A00B53C000","010060A00B53C000","ldn-untested;online;status-playable","playable","2021-05-28 12:23:38.000" +"Ludo Mania","","crash;services;status-nothing","nothing","2020-04-03 00:33:47.000" +"The Way Remastered","","","","2020-03-31 10:34:26.000" +"Little Inferno","","32-bit;gpu;nvdec;status-ingame","ingame","2020-12-17 21:43:56.000" +"Toki Tori 2+","","","","2020-03-31 10:53:13.000" +"Bastion - 010038600B27E000","010038600B27E000","status-playable","playable","2022-02-15 14:15:24.000" +"Lovers in a Dangerous Spacetime","","","","2020-03-31 13:45:03.000" +"Back in 1995","","","","2020-03-31 13:52:35.000" +"Lost Phone Stories","","services;status-ingame","ingame","2020-04-05 23:17:33.000" +"The Walking Dead - 010029200B6AA000","010029200B6AA000","status-playable","playable","2021-06-04 13:10:56.000" +"Beyblade Burst Battle Zero - 010068600AD16000","010068600AD16000","services;status-menus;crash;Needs Update","menus","2022-11-20 15:48:32.000" +"Tiny Hands Adventure - 010061A00AE64000","010061A00AE64000","status-playable","playable","2022-08-24 16:07:48.000" +"My Time At Portia - 0100E25008E68000","0100E25008E68000","status-playable","playable","2021-05-28 12:42:55.000" +"NBA 2K Playgrounds 2 - 01001AE00C1B2000","01001AE00C1B2000","status-playable;nvdec;online-broken;UE4;vulkan-backend-bug","playable","2022-08-06 14:40:38.000" +"Valfaris - 010089700F30C000","010089700F30C000","status-playable","playable","2022-09-16 21:37:24.000" +"Wandersong - 0100F8A00853C000","0100F8A00853C000","nvdec;status-playable","playable","2021-06-04 15:33:34.000" +"Untitled Goose Game","","status-playable","playable","2020-09-26 13:18:06.000" +"Unbox: Newbie's Adventure - 0100592005164000","0100592005164000","status-playable;UE4","playable","2022-08-29 13:12:56.000" +"Trine 4: The Nightmare Prince - 010055E00CA68000","010055E00CA68000","gpu;status-nothing","nothing","2025-01-07 05:47:46.000" +"Travis Strikes Again: No More Heroes - 010011600C946000","010011600C946000","status-playable;nvdec;UE4","playable","2022-08-25 12:36:38.000" +"Bubble Bobble 4 Friends - 010010900F7B4000","010010900F7B4000","nvdec;status-playable","playable","2021-06-04 15:27:55.000" +"Bloodstained: Curse of the Moon","","status-playable","playable","2020-09-04 10:42:17.000" +"Unravel TWO - 0100E5D00CC0C000","0100E5D00CC0C000","status-playable;nvdec","playable","2024-05-23 15:45:05.000" +"Blazing Beaks","","status-playable","playable","2020-06-04 20:37:06.000" +"Moonlighter","","","","2020-04-01 12:52:32.000" +"Rock N' Racing Grand Prix","","status-playable","playable","2021-01-06 20:23:57.000" +"Blossom Tales - 0100C1000706C000","0100C1000706C000","status-playable","playable","2022-07-18 16:43:07.000" +"Maria The Witch","","","","2020-04-01 13:22:05.000" +"Runbow","","online;status-playable","playable","2021-01-08 22:47:44.000" +"Salt And Sanctuary","","status-playable","playable","2020-10-22 11:52:19.000" +"Bomb Chicken","","","","2020-04-01 13:52:21.000" +"Typoman","","","","2020-04-01 14:01:55.000" +"BOX Align","","crash;services;status-nothing","nothing","2020-04-03 17:26:56.000" +"Bridge Constructor Portal","","","","2020-04-01 14:59:34.000" +"METAGAL","","status-playable","playable","2020-06-05 00:05:48.000" +"Severed","","status-playable","playable","2020-12-15 21:48:48.000" +"Bombslinger - 010087300445A000","010087300445A000","services;status-menus","menus","2022-07-19 12:53:15.000" +"ToeJam & Earl: Back in the Groove","","status-playable","playable","2021-01-06 22:56:58.000" +"SHIFT QUANTUM","","UE4;crash;status-ingame","ingame","2020-11-06 21:54:08.000" +"Mana Spark","","status-playable","playable","2020-12-10 13:41:01.000" +"BOOST BEAST","","","","2020-04-01 22:07:28.000" +"Bass Pro Shops: The Strike - Championship Edition - 0100E3100450E000","0100E3100450E000","gpu;status-boots;32-bit","boots","2022-12-09 15:58:16.000" +"Semispheres","","status-playable","playable","2021-01-06 23:08:31.000" +"Megaton Rainfall - 010005A00B312000","010005A00B312000","gpu;status-boots;opengl","boots","2022-08-04 18:29:43.000" +"Romancing SaGa 2 - 01001F600829A000","01001F600829A000","status-playable","playable","2022-08-12 12:02:24.000" +"Runner3","","","","2020-04-02 12:58:46.000" +"Shakedown: Hawaii","","status-playable","playable","2021-01-07 09:44:36.000" +"Minit","","","","2020-04-02 13:15:45.000" +"Little Nightmares - 01002FC00412C000","01002FC00412C000","status-playable;nvdec;UE4","playable","2022-08-03 21:45:35.000" +"Shephy","","","","2020-04-02 13:33:44.000" +"Millie - 0100976008FBE000","0100976008FBE000","status-playable","playable","2021-01-26 20:47:19.000" +"Bloodstained: Ritual of the Night - 010025A00DF2A000","010025A00DF2A000","status-playable;nvdec;UE4","playable","2022-07-18 14:27:35.000" +"Shape Of The World - 0100B250009B96000","0100B250009B9600","UE4;status-playable","playable","2021-03-05 16:42:28.000" +"Bendy and the Ink Machine - 010074500BBC4000","010074500BBC4000","status-playable","playable","2023-05-06 20:35:39.000" +"Brothers: A Tale of Two Sons - 01000D500D08A000","01000D500D08A000","status-playable;nvdec;UE4","playable","2022-07-19 14:02:22.000" +"Raging Loop","","","","2020-04-03 12:29:28.000" +"A Hat In Time - 010056E00853A000","010056E00853A000","status-playable","playable","2024-06-25 19:52:44.000" +"Cooking Mama: Cookstar - 010060700EFBA000","010060700EFBA000","status-menus;crash;loader-allocator","menus","2021-11-20 03:19:35.000" +"Marble Power Blast - 01008E800D1FE000","01008E800D1FE000","status-playable","playable","2021-06-04 16:00:02.000" +"NARUTO™: Ultimate Ninja® STORM - 0100715007354000","0100715007354000","status-playable;nvdec","playable","2022-08-06 14:10:31.000" +"Oddmar","","","","2020-04-04 20:46:28.000" +"BLEED 2","","","","2020-04-05 11:29:05.000" +"Sea King - 0100E4A00D066000","0100E4A00D066000","UE4;nvdec;status-playable","playable","2021-06-04 15:49:22.000" +"Sausage Sports Club","","gpu;status-ingame","ingame","2021-01-10 05:37:17.000" +"Mini Metro","","","","2020-04-05 11:55:19.000" +"Mega Mall Story - 0100BBC00CB9A000","0100BBC00CB9A000","slow;status-playable","playable","2022-08-04 17:10:58.000" +"BILLIARD","","","","2020-04-05 13:41:11.000" +"The Wardrobe","","","","2020-04-05 13:53:33.000" +"LITTLE FRIENDS -DOGS & CATS-","","status-playable","playable","2020-11-12 12:45:51.000" +"LOST SPHEAR","","status-playable","playable","2021-01-10 06:01:21.000" +"Morphies Law","","UE4;crash;ldn-untested;nvdec;online;status-menus","menus","2020-11-22 17:05:29.000" +"Mercenaries Saga Chronicles","","status-playable","playable","2021-01-10 12:48:19.000" +"The Swindle - 010040D00B7CE000","010040D00B7CE000","status-playable;nvdec","playable","2022-08-22 20:53:52.000" +"Monster Energy Supercross - The Official Videogame - 0100742007266000","0100742007266000","status-playable;nvdec;UE4","playable","2022-08-04 20:25:00.000" +"Monster Energy Supercross - The Official Videogame 2 - 0100F8100B982000","0100F8100B982000","status-playable;nvdec;UE4;ldn-untested","playable","2022-08-04 21:21:24.000" +"Lumo - 0100FF00042EE000","0100FF00042EE000","status-playable;nvdec","playable","2022-02-11 18:20:30.000" +"Monopoly for Nintendo Switch - 01007430037F6000","01007430037F6000","status-playable;nvdec;online-broken","playable","2024-02-06 23:13:01.000" +"Mantis Burn Racing - 0100E98002F6E000","0100E98002F6E000","status-playable;online-broken;ldn-broken","playable","2024-09-02 02:13:04.000" +"Moorhuhn Remake","","","","2020-04-05 19:22:41.000" +"Lovecraft's Untold Stories","","","","2020-04-05 19:31:15.000" +"Moonfall Ultimate","","nvdec;status-playable","playable","2021-01-17 14:01:25.000" +"Max: The Curse Of Brotherhood - 01001C9007614000","01001C9007614000","status-playable;nvdec","playable","2022-08-04 16:33:04.000" +"Manticore - Galaxy on Fire - 0100C9A00952A000","0100C9A00952A000","status-boots;crash;nvdec","boots","2024-02-04 04:37:24.000" +"The Shapeshifting Detective","","nvdec;status-playable","playable","2021-01-10 13:10:49.000" +"Mom Hid My Game!","","","","2020-04-06 11:32:10.000" +"Meow Motors","","UE4;gpu;status-ingame","ingame","2020-12-18 00:24:01.000" +"Mahjong Solitaire Refresh - 01008C300B624000","01008C300B624000","status-boots;crash","boots","2022-12-09 12:02:55.000" +"Lucah: Born of a Dream","","","","2020-04-06 12:11:01.000" +"Moon Hunters","","","","2020-04-06 12:35:17.000" +"Mad Carnage","","status-playable","playable","2021-01-10 13:00:07.000" +"Monument Builders Rushmore","","","","2020-04-06 13:49:35.000" +"Lost Sea","","","","2020-04-06 14:08:14.000" +"Mahjong Deluxe 3","","","","2020-04-06 14:13:32.000" +"MONSTER JAM CRUSH IT!™ - 010088400366E000","010088400366E000","UE4;nvdec;online;status-playable","playable","2021-04-08 19:29:27.000" +"Midnight Deluxe","","","","2020-04-06 14:33:34.000" +"Metropolis: Lux Obscura","","","","2020-04-06 14:47:15.000" +"Lode Runner Legacy","","status-playable","playable","2021-01-10 14:10:28.000" +"Masters of Anima - 0100CC7009196000","0100CC7009196000","status-playable;nvdec","playable","2022-08-04 16:00:09.000" +"Monster Dynamite","","","","2020-04-06 17:55:14.000" +"The Warlock of Firetop Mountain","","","","2020-04-06 21:44:13.000" +"Mecho Tales - 0100C4F005EB4000","0100C4F005EB4000","status-playable","playable","2022-08-04 17:03:19.000" +"Titan Quest - 0100605008268000","0100605008268000","status-playable;nvdec;online-broken","playable","2022-08-19 21:54:15.000" +"This Is the Police - 0100066004D68000","0100066004D68000","status-playable","playable","2022-08-24 11:37:05.000" +"Miles & Kilo","","status-playable","playable","2020-10-22 11:39:49.000" +"This War of Mine: Complete Edition - 0100A8700BC2A000","0100A8700BC2A000","gpu;status-ingame;32-bit;nvdec","ingame","2022-08-24 12:00:44.000" +"Transistor","","status-playable","playable","2020-10-22 11:28:02.000" +"Momodora: Revere Under the Moonlight - 01004A400C320000","01004A400C320000","deadlock;status-nothing","nothing","2022-02-06 03:47:43.000" +"Monster Puzzle","","status-playable","playable","2020-09-28 22:23:10.000" +"Tiny Troopers Joint Ops XL","","","","2020-04-07 12:30:46.000" +"This Is the Police 2 - 01004C100A04C000","01004C100A04C000","status-playable","playable","2022-08-24 11:49:17.000" +"Trials Rising - 01003E800A102000","01003E800A102000","status-playable","playable","2024-02-11 01:36:39.000" +"Mainlining","","status-playable","playable","2020-06-05 01:02:00.000" +"Treadnauts","","status-playable","playable","2021-01-10 14:57:41.000" +"Treasure Stack","","","","2020-04-07 13:27:32.000" +"Monkey King: Master of the Clouds","","status-playable","playable","2020-09-28 22:35:48.000" +"Trailblazers - 0100BCA00843A000","0100BCA00843A000","status-playable","playable","2021-03-02 20:40:49.000" +"Stardew Valley - 0100E65002BB8000","0100E65002BB8000","status-playable;online-broken;ldn-untested","playable","2024-02-14 03:11:19.000" +"TT Isle of Man","","nvdec;status-playable","playable","2020-06-22 12:25:13.000" +"Truberbrook - 0100E6300D448000","0100E6300D448000","status-playable","playable","2021-06-04 17:08:00.000" +"Troll and I - 0100F78002040000","0100F78002040000","gpu;nvdec;status-ingame","ingame","2021-06-04 16:58:50.000" +"Rock 'N Racing Off Road DX","","status-playable","playable","2021-01-10 15:27:15.000" +"Touhou Genso Wanderer RELOADED - 01004E900B082000","01004E900B082000","gpu;status-ingame;nvdec","ingame","2022-08-25 11:57:36.000" +"Splasher","","","","2020-04-08 11:02:41.000" +"Rogue Trooper Redux - 01001CC00416C000","01001CC00416C000","status-playable;nvdec;online-broken","playable","2022-08-12 11:53:01.000" +"Semblance","","","","2020-04-08 11:22:11.000" +"Saints Row: The Third - The Full Package - 0100DE600BEEE000","0100DE600BEEE000","slow;status-playable;LAN","playable","2023-08-24 02:40:58.000" +"SEGA AGES PHANTASY STAR","","status-playable","playable","2021-01-11 12:49:48.000" +"SEGA AGES SPACE HARRIER","","status-playable","playable","2021-01-11 12:57:40.000" +"SEGA AGES OUTRUN","","status-playable","playable","2021-01-11 13:13:59.000" +"Schlag den Star - 0100ACB004006000","0100ACB004006000","slow;status-playable;nvdec","playable","2022-08-12 14:28:22.000" +"Serial Cleaner","","","","2020-04-08 15:26:22.000" +"Rotating Brave","","","","2020-04-09 12:25:59.000" +"SteamWorld Quest","","nvdec;status-playable","playable","2020-11-09 13:10:04.000" +"Shaq Fu: A Legend Reborn","","","","2020-04-09 13:24:32.000" +"Season Match Bundle - Part 1 and 2","","status-playable","playable","2021-01-11 13:28:23.000" +"Bulb Boy","","","","2020-04-09 16:22:39.000" +"SteamWorld Dig - 01009320084A4000","01009320084A4000","status-playable","playable","2024-08-19 12:12:23.000" +"Shadows of Adam","","status-playable","playable","2021-01-11 13:35:58.000" +"Battle Princess Madelyn","","status-playable","playable","2021-01-11 13:47:23.000" +"Shiftlings - 01000750084B2000","01000750084B2000","nvdec;status-playable","playable","2021-03-04 13:49:54.000" +"Save the Ninja Clan","","status-playable","playable","2021-01-11 13:56:37.000" +"SteamWorld Heist: Ultimate Edition","","","","2020-04-10 11:21:15.000" +"Battle Chef Brigade","","status-playable","playable","2021-01-11 14:16:28.000" +"Shelter Generations - 01009EB004CB0000","01009EB004CB0000","status-playable","playable","2021-06-04 16:52:39.000" +"Bow to Blood: Last Captain Standing","","slow;status-playable","playable","2020-10-23 10:51:21.000" +"Samsara","","status-playable","playable","2021-01-11 15:14:12.000" +"Touhou Kobuto V: Burst Battle","","status-playable","playable","2021-01-11 15:28:58.000" +"Screencheat","","","","2020-04-10 13:16:02.000" +"BlobCat - 0100F3500A20C000","0100F3500A20C000","status-playable","playable","2021-04-23 17:09:30.000" +"SteamWorld Dig 2 - 0100CA9002322000","0100CA9002322000","status-playable","playable","2022-12-21 19:25:42.000" +"She Remembered Caterpillars - 01004F50085F2000","01004F50085F2000","status-playable","playable","2022-08-12 17:45:14.000" +"Broken Sword 5 - the Serpent's Curse - 01001E60085E6000","01001E60085E6000","status-playable","playable","2021-06-04 17:28:59.000" +"Banner Saga 3","","slow;status-boots","boots","2021-01-11 16:53:57.000" +"Stranger Things 3: The Game","","status-playable","playable","2021-01-11 17:44:09.000" +"Blades of Time - 0100CFA00CC74000","0100CFA00CC74000","deadlock;status-boots;online","boots","2022-07-17 19:19:58.000" +"BLAZBLUE CENTRALFICTION Special Edition","","nvdec;status-playable","playable","2020-12-15 23:50:04.000" +"Brawlout - 010060200A4BE000","010060200A4BE000","ldn-untested;online;status-playable","playable","2021-06-04 17:35:35.000" +"Bouncy Bob","","","","2020-04-10 16:45:27.000" +"Broken Age - 0100EDD0068A6000","0100EDD0068A6000","status-playable","playable","2021-06-04 17:40:32.000" +"Attack on Titan 2","","status-playable","playable","2021-01-04 11:40:01.000" +"Battle Worlds: Kronos - 0100DEB00D5A8000","0100DEB00D5A8000","nvdec;status-playable","playable","2021-06-04 17:48:02.000" +"BLADE ARCUS Rebellion From Shining - 0100C4400CB7C000","0100C4400CB7C000","status-playable","playable","2022-07-17 18:52:28.000" +"Away: Journey to the Unexpected - 01002F1005F3C000","01002F1005F3C000","status-playable;nvdec;vulkan-backend-bug","playable","2022-11-06 15:31:04.000" +"Batman: The Enemy Within","","crash;status-nothing","nothing","2020-10-16 05:49:27.000" +"Batman - The Telltale Series","","nvdec;slow;status-playable","playable","2021-01-11 18:19:35.000" +"Big Crown: Showdown - 010088100C35E000","010088100C35E000","status-menus;nvdec;online;ldn-untested","menus","2022-07-17 18:25:32.000" +"Strike Suit Zero: Director's Cut - 010072500D52E000","010072500D52E000","crash;status-boots","boots","2021-04-23 17:15:14.000" +"Black Paradox","","","","2020-04-11 12:13:22.000" +"Spelunker Party! - 010021F004270000","010021F004270000","services;status-boots","boots","2022-08-16 11:25:49.000" +"OK K.O.! Let's Play Heroes","","nvdec;status-playable","playable","2021-01-11 18:41:02.000" +"Steredenn","","status-playable","playable","2021-01-13 09:19:42.000" +"State of Mind","","UE4;crash;status-boots","boots","2020-06-22 22:17:50.000" +"Bloody Zombies","","","","2020-04-11 18:23:57.000" +"MudRunner - American Wilds - 01009D200952E000","01009D200952E000","gpu;status-ingame;ldn-untested;vulkan-backend-bug;opengl-backend-bug","ingame","2022-08-16 11:40:52.000" +"Big Buck Hunter Arcade","","nvdec;status-playable","playable","2021-01-12 20:31:39.000" +"Sparkle 2 Evo","","","","2020-04-11 18:48:19.000" +"Brave Dungeon + Dark Witch's Story: COMBAT","","status-playable","playable","2021-01-12 21:06:34.000" +"BAFL","","status-playable","playable","2021-01-13 08:32:51.000" +"Steamburg","","status-playable","playable","2021-01-13 08:42:01.000" +"Splatoon 2 - 01003BC0000A0000","01003BC0000A0000","status-playable;ldn-works;LAN","playable","2024-07-12 19:11:15.000" +"Blade Strangers - 01005950022EC000","01005950022EC000","status-playable;nvdec","playable","2022-07-17 19:02:43.000" +"Sports Party - 0100DE9005170000","0100DE9005170000","nvdec;status-playable","playable","2021-03-05 13:40:42.000" +"Banner Saga","","","","2020-04-12 14:06:23.000" +"Banner Saga 2","","crash;status-boots","boots","2021-01-13 08:56:09.000" +"Hand of Fate 2 - 01003620068EA000","01003620068EA000","status-playable","playable","2022-08-01 15:44:16.000" +"State of Anarchy: Master of Mayhem","","nvdec;status-playable","playable","2021-01-12 19:00:05.000" +"Sphinx and the Cursed Mummy™ - 0100BD500BA94000","0100BD500BA94000","gpu;status-ingame;32-bit;opengl","ingame","2024-05-20 06:00:51.000" +"Risk - 0100E8300A67A000","0100E8300A67A000","status-playable;nvdec;online-broken","playable","2022-08-01 18:53:28.000" +"Baseball Riot - 01004860080A0000","01004860080A0000","status-playable","playable","2021-06-04 18:07:27.000" +"Spartan - 0100E6A009A26000","0100E6A009A26000","UE4;nvdec;status-playable","playable","2021-03-05 15:53:19.000" +"Halloween Pinball","","status-playable","playable","2021-01-12 16:00:46.000" +"Streets of Red : Devil's Dare Deluxe","","","","2020-04-12 18:08:29.000" +"Spider Solitaire F","","","","2020-04-12 20:26:44.000" +"Starship Avenger Operation: Take Back Earth","","status-playable","playable","2021-01-12 15:52:55.000" +"Battle Chasers: Nightwar","","nvdec;slow;status-playable","playable","2021-01-12 12:27:34.000" +"Infinite Minigolf","","online;status-playable","playable","2020-09-29 12:26:25.000" +"Blood Waves - 01007E700D17E000","01007E700D17E000","gpu;status-ingame","ingame","2022-07-18 13:04:46.000" +"Stick It to the Man","","","","2020-04-13 12:29:25.000" +"Bad Dream: Fever - 0100B3B00D81C000","0100B3B00D81C000","status-playable","playable","2021-06-04 18:33:12.000" +"Spectrum - 01008B000A5AE000","01008B000A5AE000","status-playable","playable","2022-08-16 11:15:59.000" +"Battlezone Gold Edition - 01006D800A988000","01006D800A988000","gpu;ldn-untested;online;status-boots","boots","2021-06-04 18:36:05.000" +"Squareboy vs Bullies: Arena Edition","","","","2020-04-13 12:51:57.000" +"Beach Buggy Racing - 010095C00406C000","010095C00406C000","online;status-playable","playable","2021-04-13 23:16:50.000" +"Avenger Bird","","","","2020-04-13 13:01:51.000" +"Beholder","","status-playable","playable","2020-10-16 12:48:58.000" +"Binaries","","","","2020-04-13 13:12:42.000" +"Space Ribbon - 010010A009830000","010010A009830000","status-playable","playable","2022-08-15 17:17:10.000" +"BINGO for Nintendo Switch","","status-playable","playable","2020-07-23 16:17:36.000" +"Bibi Blocksberg - Big Broom Race 3","","status-playable","playable","2021-01-11 19:07:16.000" +"Sparkle 3: Genesis","","","","2020-04-13 14:01:48.000" +"Bury me, my Love","","status-playable","playable","2020-11-07 12:47:37.000" +"Bad North - 0100E98006F22000","0100E98006F22000","status-playable","playable","2022-07-17 13:44:25.000" +"Stikbold! A Dodgeball Adventure DELUXE","","status-playable","playable","2021-01-11 20:12:54.000" +"BUTCHER","","status-playable","playable","2021-01-11 18:50:17.000" +"Bird Game + - 01001B700B278000","01001B700B278000","status-playable;online","playable","2022-07-17 18:41:57.000" +"SpiritSphere DX - 01009D60080B4000","01009D60080B4000","status-playable","playable","2021-07-03 23:37:49.000" +"Behind The Screen","","","","2020-04-13 15:41:34.000" +"Bibi & Tina - Adventures with Horses","","nvdec;slow;status-playable","playable","2021-01-13 08:58:09.000" +"Space Dave","","","","2020-04-13 15:57:37.000" +"Hellblade: Senua's Sacrifice - 010044500CF8E000","010044500CF8E000","gpu;status-ingame;UE4;vulkan-backend-bug;opengl-backend-bug","ingame","2022-08-01 19:36:50.000" +"Happy Birthdays","","","","2020-04-13 23:34:41.000" +"GUILTY GEAR XX ACCENT CORE PLUS R","","nvdec;status-playable","playable","2021-01-13 09:28:33.000" +"Hob: The Definitive Edition","","status-playable","playable","2021-01-13 09:39:19.000" +"Jurassic Pinball - 0100CE100A826000","0100CE100A826000","status-playable","playable","2021-06-04 19:02:37.000" +"Hyper Light Drifter - Special Edition - 01003B200B372000","01003B200B372000","status-playable;vulkan-backend-bug","playable","2023-01-13 15:44:48.000" +"GUNBIRD for Nintendo Switch - 01003C6008940000","01003C6008940000","32-bit;status-playable","playable","2021-06-04 19:16:01.000" +"GUNBIRD2 for Nintendo Switch","","status-playable","playable","2020-10-10 14:41:16.000" +"Hammerwatch - 01003B9007E86000","01003B9007E86000","status-playable;online-broken;ldn-broken","playable","2022-08-01 16:28:46.000" +"Into The Breach","","","","2020-04-14 14:05:04.000" +"Horizon Chase Turbo - 01009EA00B714000","01009EA00B714000","status-playable","playable","2021-02-19 19:40:56.000" +"Gunlord X","","","","2020-04-14 14:30:34.000" +"Ittle Dew 2+","","status-playable","playable","2020-11-17 11:44:32.000" +"Hue","","","","2020-04-14 14:52:35.000" +"Iconoclasts - 0100BC60099FE000","0100BC60099FE000","status-playable","playable","2021-08-30 21:11:04.000" +"James Pond Operation Robocod","","status-playable","playable","2021-01-13 09:48:45.000" +"Hello Neighbor - 0100FAA00B168000","0100FAA00B168000","status-playable;UE4","playable","2022-08-01 21:32:23.000" +"Gunman Clive HD Collection","","status-playable","playable","2020-10-09 12:17:35.000" +"Human Resource Machine","","32-bit;status-playable","playable","2020-12-17 21:47:09.000" +"INSIDE - 0100D2D009028000","0100D2D009028000","status-playable","playable","2021-12-25 20:24:56.000" +"Hello Neighbor: Hide And Seek","","UE4;gpu;slow;status-ingame","ingame","2020-10-24 10:59:57.000" +"Has-Been Heroes","","status-playable","playable","2021-01-13 13:31:48.000" +"GUNBARICH for Nintendo Switch","","","","2020-04-14 21:58:40.000" +"Hell is Other Demons","","status-playable","playable","2021-01-13 13:23:02.000" +"I, Zombie","","status-playable","playable","2021-01-13 14:53:44.000" +"Hello Kitty Kruisers With Sanrio Friends - 010087D0084A8000","010087D0084A8000","nvdec;status-playable","playable","2021-06-04 19:08:46.000" +"IMPLOSION - 0100737003190000","0100737003190000","status-playable;nvdec","playable","2021-12-12 03:52:13.000" +"Ikaruga - 01009F20086A0000","01009F20086A0000","status-playable","playable","2023-04-06 15:00:02.000" +"Ironcast","","status-playable","playable","2021-01-13 13:54:29.000" +"Jettomero: Hero of the Universe - 0100A5A00AF26000","0100A5A00AF26000","status-playable","playable","2022-08-02 14:46:43.000" +"Harvest Moon: Light of Hope Special Edition","","","","2020-04-15 13:00:41.000" +"Heroine Anthem Zero episode 1 - 01001B70080F0000","01001B70080F0000","status-playable;vulkan-backend-bug","playable","2022-08-01 22:02:36.000" +"Hunting Simulator - 0100C460040EA000","0100C460040EA000","status-playable;UE4","playable","2022-08-02 10:54:08.000" +"Guts and Glory","","","","2020-04-15 14:06:57.000" +"Island Flight Simulator - 010077900440A000","010077900440A000","status-playable","playable","2021-06-04 19:42:46.000" +"Hollow - 0100F2100061E8000","0100F2100061E800","UE4;gpu;status-ingame","ingame","2021-03-03 23:42:56.000" +"Heroes of the Monkey Tavern","","","","2020-04-15 15:24:33.000" +"Jotun: Valhalla Edition","","","","2020-04-15 15:46:21.000" +"OniNaki - 0100CF4011B2A000","0100CF4011B2A000","nvdec;status-playable","playable","2021-02-27 21:52:42.000" +"Diary of consultation with me (female doctor)","","","","2020-04-15 16:13:40.000" +"JunkPlanet","","status-playable","playable","2020-11-09 12:38:33.000" +"Hexologic","","","","2020-04-15 16:46:07.000" +"JYDGE - 010035A0044E8000","010035A0044E8000","status-playable","playable","2022-08-02 21:20:13.000" +"Mushroom Quest","","status-playable","playable","2020-05-17 13:07:08.000" +"Infernium","","UE4;regression;status-nothing","nothing","2021-01-13 16:36:07.000" +"Star-Crossed Myth - The Department of Wishes - 01005EB00EA10000","01005EB00EA10000","gpu;status-ingame","ingame","2021-06-04 19:34:36.000" +"Joe Dever's Lone Wolf","","","","2020-04-15 18:27:04.000" +"Final Fantasy VII - 0100A5B00BDC6000","0100A5B00BDC6000","status-playable","playable","2022-12-09 17:03:30.000" +"Irony Curtain: From Matryoshka with Love - 0100E5700CD56000","0100E5700CD56000","status-playable","playable","2021-06-04 20:12:37.000" +"Guns Gore and Cannoli","","","","2020-04-16 12:37:22.000" +"ICEY","","status-playable","playable","2021-01-14 16:16:04.000" +"Jumping Joe & Friends","","status-playable","playable","2021-01-13 17:09:42.000" +"Johnny Turbo's Arcade Wizard Fire - 0100D230069CC000","0100D230069CC000","status-playable","playable","2022-08-02 20:39:15.000" +"Johnny Turbo's Arcade Two Crude Dudes - 010080D002CC6000","010080D002CC6000","status-playable","playable","2022-08-02 20:29:50.000" +"Johnny Turbo's Arcade Sly Spy","","","","2020-04-16 13:56:32.000" +"Johnny Turbo's Arcade Caveman Ninja","","","","2020-04-16 14:11:07.000" +"Heroki - 010057300B0DC000","010057300B0DC000","gpu;status-ingame","ingame","2023-07-30 19:30:01.000" +"Immortal Redneck - 0100F400435A000","","nvdec;status-playable","playable","2021-01-27 18:36:28.000" +"Hungry Shark World","","status-playable","playable","2021-01-13 18:26:08.000" +"Homo Machina","","","","2020-04-16 15:10:24.000" +"InnerSpace","","","","2020-04-16 16:38:45.000" +"INK","","","","2020-04-16 16:48:26.000" +"Human: Fall Flat","","status-playable","playable","2021-01-13 18:36:05.000" +"Hotel Transylvania 3: Monsters Overboard - 0100017007980000","0100017007980000","nvdec;status-playable","playable","2021-01-27 18:55:31.000" +"It's Spring Again","","","","2020-04-16 19:08:21.000" +"FINAL FANTASY IX - 01006F000B056000","01006F000B056000","audout;nvdec;status-playable","playable","2021-06-05 11:35:00.000" +"Harvest Life - 0100D0500AD30000","0100D0500AD30000","status-playable","playable","2022-08-01 16:51:45.000" +"INVERSUS Deluxe - 01001D0003B96000","01001D0003B96000","status-playable;online-broken","playable","2022-08-02 14:35:36.000" +"HoPiKo","","status-playable","playable","2021-01-13 20:12:38.000" +"I Hate Running Backwards","","","","2020-04-16 20:53:45.000" +"Hexagravity - 01007AC00E012000","01007AC00E012000","status-playable","playable","2021-05-28 13:47:48.000" +"Holy Potatoes! A Weapon Shop?!","","","","2020-04-16 22:25:50.000" +"In Between","","","","2020-04-17 11:08:14.000" +"Hunter's Legacy: Purrfect Edition - 010068000CAC0000","010068000CAC0000","status-playable","playable","2022-08-02 10:33:31.000" +"Job the Leprechaun","","status-playable","playable","2020-06-05 12:10:06.000" +"Henry the Hamster Handler","","","","2020-04-17 11:30:02.000" +"FINAL FANTASY XII THE ZODIAC AGE - 0100EB100AB42000","0100EB100AB42000","status-playable;opengl;vulkan-backend-bug","playable","2024-08-11 07:01:54.000" +"Hiragana Pixel Party","","status-playable","playable","2021-01-14 08:36:50.000" +"Heart and Slash","","status-playable","playable","2021-01-13 20:56:32.000" +"InkSplosion","","","","2020-04-17 12:11:41.000" +"I and Me","","","","2020-04-17 12:18:43.000" +"Earthlock - 01006E50042EA000","01006E50042EA000","status-playable","playable","2021-06-05 11:51:02.000" +"Figment - 0100118009C68000","0100118009C68000","nvdec;status-playable","playable","2021-01-27 19:36:05.000" +"Dusty Raging Fist","","","","2020-04-18 14:02:20.000" +"Eternum Ex","","status-playable","playable","2021-01-13 20:28:32.000" +"Dragon's Lair Trilogy","","nvdec;status-playable","playable","2021-01-13 22:12:07.000" +"FIFA 18 - 0100F7B002340000","0100F7B002340000","gpu;status-ingame;online-broken;ldn-untested","ingame","2022-07-26 12:43:59.000" +"Dream Alone - 0100AA0093DC000","","nvdec;status-playable","playable","2021-01-27 19:41:50.000" +"Fight of Gods","","","","2020-04-18 17:22:19.000" +"Fallout Shelter","","","","2020-04-18 19:48:28.000" +"Drift Legends","","","","2020-04-18 20:15:36.000" +"Feudal Alloy","","status-playable","playable","2021-01-14 08:48:14.000" +"EVERSPACE - 0100DCF0093EC000","0100DCF0093EC000","status-playable;UE4","playable","2022-08-14 01:16:24.000" +"Epic Loon - 0100262009626000","0100262009626000","status-playable;nvdec","playable","2022-07-25 22:06:13.000" +"EARTH WARS - 01009B7006C88000","01009B7006C88000","status-playable","playable","2021-06-05 11:18:33.000" +"Finding Teddy 2 : Definitive Edition - 0100FF100FB68000","0100FF100FB68000","gpu;status-ingame","ingame","2024-04-19 16:51:33.000" +"Rocket League - 01005EE0036EC000","01005EE0036EC000","gpu;status-ingame;online-broken;ldn-untested","ingame","2024-02-08 19:51:36.000" +"Fimbul - 0100C3A00BB76000","0100C3A00BB76000","status-playable;nvdec","playable","2022-07-26 13:31:47.000" +"Fairune Collection - 01008A6009758000","01008A6009758000","status-playable","playable","2021-06-06 15:29:56.000" +"Enigmatis 2: The Mists of Ravenwood - 0100C6200A0AA000","0100C6200A0AA000","crash;regression;status-boots","boots","2021-06-06 15:15:30.000" +"Energy Balance","","","","2020-04-22 11:13:18.000" +"DragonFangZ","","status-playable","playable","2020-09-28 21:35:18.000" +"Dragon's Dogma: Dark Arisen - 010032C00AC58000","010032C00AC58000","status-playable","playable","2022-07-24 12:58:33.000" +"Everything","","","","2020-04-22 11:35:04.000" +"Dust: An Elysian Tail - 0100B6E00A420000","0100B6E00A420000","status-playable","playable","2022-07-25 15:28:12.000" +"EXTREME POKER","","","","2020-04-22 11:54:54.000" +"Dyna Bomb","","status-playable","playable","2020-06-07 13:26:55.000" +"Escape Doodland","","","","2020-04-22 12:10:08.000" +"Drone Fight - 010058C00A916000","010058C00A916000","status-playable","playable","2022-07-24 14:31:56.000" +"Resident Evil","","","","2020-04-22 12:31:10.000" +"Dungeon Rushers","","","","2020-04-22 12:43:24.000" +"Embers of Mirrim","","","","2020-04-22 12:56:52.000" +"FIFA 19 - 0100FFA0093E8000","0100FFA0093E8000","gpu;status-ingame;nvdec;online-broken;ldn-untested","ingame","2022-07-26 13:07:07.000" +"Energy Cycle","","","","2020-04-22 13:40:48.000" +"Dragons Dawn of New Riders","","nvdec;status-playable","playable","2021-01-27 20:05:26.000" +"Enter the Gungeon - 01009D60076F6000","01009D60076F6000","status-playable","playable","2022-07-25 20:28:33.000" +"Drowning - 010052000A574000","010052000A574000","status-playable","playable","2022-07-25 14:28:26.000" +"Earth Atlantis","","","","2020-04-22 14:42:46.000" +"Evil Defenders","","nvdec;status-playable","playable","2020-09-28 17:11:00.000" +"Dustoff Heli Rescue 2","","","","2020-04-22 15:31:34.000" +"Energy Cycle Edge - 0100B8700BD14000","0100B8700BD14000","services;status-ingame","ingame","2021-11-30 05:02:31.000" +"Element - 0100A6700AF10000","0100A6700AF10000","status-playable","playable","2022-07-25 17:17:16.000" +"Duck Game","","","","2020-04-22 17:10:36.000" +"Fill-a-Pix: Phil's Epic Adventure","","status-playable","playable","2020-12-22 13:48:22.000" +"Elliot Quest - 0100128003A24000","0100128003A24000","status-playable","playable","2022-07-25 17:46:14.000" +"Drawful 2 - 0100F7800A434000","0100F7800A434000","status-ingame","ingame","2022-07-24 13:50:21.000" +"Energy Invasion","","status-playable","playable","2021-01-14 21:32:26.000" +"Dungeon Stars","","status-playable","playable","2021-01-18 14:28:37.000" +"FINAL FANTASY X/X-2 HD REMASTER - 0100BC300CB48000","0100BC300CB48000","gpu;status-ingame","ingame","2022-08-16 20:29:26.000" +"Revenant Saga","","","","2020-04-22 23:52:09.000" +"Resident Evil 0","","","","2020-04-23 01:04:42.000" +"Fate/EXTELLA - 010053E002EA2000","010053E002EA2000","gpu;status-ingame;nvdec;online-broken;vulkan-backend-bug;opengl-backend-bug","ingame","2023-04-24 23:37:55.000" +"RiME","","UE4;crash;gpu;status-boots","boots","2020-07-20 15:52:38.000" +"DYNASTY WARRIORS 8: Xtreme Legends Definitive Edition - 0100E9A00CB30000","0100E9A00CB30000","status-playable;nvdec","playable","2024-06-26 00:16:30.000" +"Rival Megagun","","nvdec;online;status-playable","playable","2021-01-19 14:01:46.000" +"Riddled Corpses EX - 01002C700C326000","01002C700C326000","status-playable","playable","2021-06-06 16:02:44.000" +"Fear Effect Sedna","","nvdec;status-playable","playable","2021-01-19 13:10:33.000" +"Redout: Lightspeed Edition","","","","2020-04-23 14:46:59.000" +"RESIDENT EVIL REVELATIONS 2 - 010095300212A000","010095300212A000","status-playable;online-broken;ldn-untested","playable","2022-08-11 12:57:50.000" +"Robonauts - 0100618004096000","0100618004096000","status-playable;nvdec","playable","2022-08-12 11:33:23.000" +"Road to Ballhalla - 010002F009A7A000","010002F009A7A000","UE4;status-playable","playable","2021-06-07 02:22:36.000" +"Fate/EXTELLA LINK - 010051400B17A000","010051400B17A000","ldn-untested;nvdec;status-playable","playable","2021-01-27 00:45:50.000" +"Rocket Fist","","","","2020-04-23 16:56:33.000" +"RICO - 01009D5009234000","01009D5009234000","status-playable;nvdec;online-broken","playable","2022-08-11 20:16:40.000" +"R.B.I. Baseball 17 - 0100B5A004302000","0100B5A004302000","status-playable;online-working","playable","2022-08-11 11:55:47.000" +"Red Faction Guerrilla Re-Mars-tered - 010075000C608000","010075000C608000","ldn-untested;nvdec;online;status-playable","playable","2021-06-07 03:02:13.000" +"Riptide GP: Renegade - 01002A6006AA4000","01002A6006AA4000","online;status-playable","playable","2021-04-13 23:33:02.000" +"Realpolitiks","","","","2020-04-24 12:33:00.000" +"Fall Of Light - Darkest Edition - 01005A600BE60000","01005A600BE60000","slow;status-ingame;nvdec","ingame","2024-07-24 04:19:26.000" +"Reverie: Sweet As Edition","","","","2020-04-24 13:24:37.000" +"RIVE: Ultimate Edition","","status-playable","playable","2021-03-24 18:45:55.000" +"R.B.I. Baseball 18 - 01005CC007616000","01005CC007616000","status-playable;nvdec;online-working","playable","2022-08-11 11:27:52.000" +"Refunct","","UE4;status-playable","playable","2020-12-15 22:46:21.000" +"Rento Fortune Monolit","","ldn-untested;online;status-playable","playable","2021-01-19 19:52:21.000" +"Super Mario Party - 010036B0034E4000","010036B0034E4000","gpu;status-ingame;Needs Update;ldn-works","ingame","2024-06-21 05:10:16.000" +"Farm Together","","status-playable","playable","2021-01-19 20:01:19.000" +"Regalia: Of Men and Monarchs - Royal Edition - 0100FDF0083A6000","0100FDF0083A6000","status-playable","playable","2022-08-11 12:24:01.000" +"Red Game Without a Great Name","","status-playable","playable","2021-01-19 21:42:35.000" +"R.B.I. Baseball 19 - 0100FCB00BF40000","0100FCB00BF40000","status-playable;nvdec;online-working","playable","2022-08-11 11:43:52.000" +"Eagle Island - 010037400C7DA000","010037400C7DA000","status-playable","playable","2021-04-10 13:15:42.000" +"RIOT: Civil Unrest - 010088E00B816000","010088E00B816000","status-playable","playable","2022-08-11 20:27:56.000" +"Revenant Dogma","","","","2020-04-25 17:51:48.000" +"World of Final Fantasy Maxima","","status-playable","playable","2020-06-07 13:57:23.000" +"ITTA - 010068700C70A000","010068700C70A000","status-playable","playable","2021-06-07 03:15:52.000" +"Pirates: All Aboard!","","","","2020-04-27 12:18:29.000" +"Wolfenstein II The New Colossus - 01009040091E0000","01009040091E0000","gpu;status-ingame","ingame","2024-04-05 05:39:46.000" +"Onimusha: Warlords","","nvdec;status-playable","playable","2020-07-31 13:08:39.000" +"Radiation Island - 01009E40095EE000","01009E40095EE000","status-ingame;opengl;vulkan-backend-bug","ingame","2022-08-11 10:51:04.000" +"Pool Panic","","","","2020-04-27 13:49:19.000" +"Quad Fighter K","","","","2020-04-27 14:00:50.000" +"PSYVARIAR DELTA - 0100EC100A790000","0100EC100A790000","nvdec;status-playable","playable","2021-01-20 13:01:46.000" +"Puzzle Box Maker - 0100476004A9E000","0100476004A9E000","status-playable;nvdec;online-broken","playable","2022-08-10 18:00:52.000" +"Psikyo Collection Vol. 3 - 0100A2300DB78000","0100A2300DB78000","status-ingame","ingame","2021-06-07 02:46:23.000" +"Pianista: The Legendary Virtuoso - 010077300A86C000","010077300A86C000","status-playable;online-broken","playable","2022-08-09 14:52:56.000" +"Quarantine Circular - 0100F1400BA88000","0100F1400BA88000","status-playable","playable","2021-01-20 15:24:15.000" +"Pizza Titan Ultra - 01004A900C352000","01004A900C352000","nvdec;status-playable","playable","2021-01-20 15:58:42.000" +"Phantom Trigger - 0100C31005A50000","0100C31005A50000","status-playable","playable","2022-08-09 14:27:30.000" +"Operación Triunfo 2017 - 0100D5400BD90000","0100D5400BD90000","services;status-ingame;nvdec","ingame","2022-08-08 15:06:42.000" +"Rad Rodgers Radical Edition - 010000600CD54000","010000600CD54000","status-playable;nvdec;online-broken","playable","2022-08-10 19:57:23.000" +"Ape Out - 01005B100C268000","01005B100C268000","status-playable","playable","2022-09-26 19:04:47.000" +"Decay of Logos - 010027700FD2E000","010027700FD2E000","status-playable;nvdec","playable","2022-09-13 14:42:13.000" +"Q.U.B.E. 2 - 010023600AA34000","010023600AA34000","UE4;status-playable","playable","2021-03-03 21:38:57.000" +"Pikuniku","","","","2020-04-28 11:02:59.000" +"Picross S","","","","2020-04-28 11:14:18.000" +"PHANTOM BREAKER: BATTLE GROUNDS OVER DRIVE - 0100063005C86000","0100063005C86000","audio;status-playable;nvdec","playable","2024-02-29 14:20:35.000" +"Pilot Sports - 01007A500B0B2000","01007A500B0B2000","status-playable","playable","2021-01-20 15:04:17.000" +"Paper Wars","","","","2020-04-28 11:46:56.000" +"Fushigi no Gensokyo Lotus Labyrinth","","Needs Update;audio;gpu;nvdec;status-ingame","ingame","2021-01-20 15:30:02.000" +"OPUS: The Day We Found Earth - 010049C0075F0000","010049C0075F0000","nvdec;status-playable","playable","2021-01-21 18:29:31.000" +"Psikyo Collection Vol.2 - 01009D400C4A8000","01009D400C4A8000","32-bit;status-playable","playable","2021-06-07 03:22:07.000" +"PixARK","","","","2020-04-28 12:32:16.000" +"Puyo Puyo Tetris","","","","2020-04-28 12:46:37.000" +"Puzzle Puppers","","","","2020-04-28 12:54:05.000" +"OVERWHELM - 01005F000CC18000","01005F000CC18000","status-playable","playable","2021-01-21 18:37:18.000" +"Rapala Fishing: Pro Series","","nvdec;status-playable","playable","2020-12-16 13:26:53.000" +"Power Rangers: Battle for the Grid","","status-playable","playable","2020-06-21 16:52:42.000" +"Professional Farmer: Nintendo Switch Edition","","slow;status-playable","playable","2020-12-16 13:38:19.000" +"Project Nimbus: Complete Edition - 0100ACE00DAB6000","0100ACE00DAB6000","status-playable;nvdec;UE4;vulkan-backend-bug","playable","2022-08-10 17:35:43.000" +"Perfect Angle - 010089F00A3B4000","010089F00A3B4000","status-playable","playable","2021-01-21 18:48:45.000" +"Oniken: Unstoppable Edition - 010037900C814000","010037900C814000","status-playable","playable","2022-08-08 14:52:06.000" +"Pixeljunk Monsters 2 - 0100E4D00A690000","0100E4D00A690000","status-playable","playable","2021-06-07 03:40:01.000" +"Pocket Rumble","","","","2020-04-28 19:13:20.000" +"Putty Pals","","","","2020-04-28 19:35:49.000" +"Overcooked! Special Edition - 01009B900401E000","01009B900401E000","status-playable","playable","2022-08-08 20:48:52.000" +"Panda Hero","","","","2020-04-28 20:33:24.000" +"Piczle Lines DX","","UE4;crash;nvdec;status-menus","menus","2020-11-16 04:21:31.000" +"Packet Queen #","","","","2020-04-28 21:43:26.000" +"Punch Club","","","","2020-04-28 22:28:01.000" +"Oxenfree","","","","2020-04-28 23:56:28.000" +"Rayman Legends: Definitive Edition - 01005FF002E2A000","01005FF002E2A000","status-playable;nvdec;ldn-works","playable","2023-05-27 18:33:07.000" +"Poi: Explorer Edition - 010086F0064CE000","010086F0064CE000","nvdec;status-playable","playable","2021-01-21 19:32:00.000" +"Paladins - 011123900AEE0000","011123900AEE0000","online;status-menus","menus","2021-01-21 19:21:37.000" +"Q-YO Blaster","","gpu;status-ingame","ingame","2020-06-07 22:36:53.000" +"Please Don't Touch Anything","","","","2020-04-29 12:15:59.000" +"Puzzle Adventure Blockle","","","","2020-04-29 13:05:19.000" +"Plantera - 010087000428E000","010087000428E000","status-playable","playable","2022-08-09 15:36:28.000" +"One Strike","","","","2020-04-29 13:43:11.000" +"Party Arcade - 01007FC00A040000","01007FC00A040000","status-playable;online-broken;UE4;ldn-untested","playable","2022-08-09 12:32:53.000" +"PAYDAY 2 - 0100274004052000","0100274004052000","status-playable;nvdec;online-broken;ldn-untested","playable","2022-08-09 12:56:39.000" +"Quest of Dungeons - 01001DE005012000","01001DE005012000","status-playable","playable","2021-06-07 10:29:22.000" +"Plague Road - 0100FF8005EB2000","0100FF8005EB2000","status-playable","playable","2022-08-09 15:27:14.000" +"Picture Painting Puzzle 1000!","","","","2020-04-29 14:58:39.000" +"Ni No Kuni Wrath of the White Witch - 0100E5600D446000","0100E5600D446000","status-boots;32-bit;nvdec","boots","2024-07-12 04:52:59.000" +"Overcooked! 2 - 01006FD0080B2000","01006FD0080B2000","status-playable;ldn-untested","playable","2022-08-08 16:48:10.000" +"Qbik","","","","2020-04-29 15:50:22.000" +"Rain World - 010047600BF72000","010047600BF72000","status-playable","playable","2023-05-10 23:34:08.000" +"Othello","","","","2020-04-29 17:06:10.000" +"Pankapu","","","","2020-04-29 17:24:48.000" +"Pode - 01009440095FE000","01009440095FE000","nvdec;status-playable","playable","2021-01-25 12:58:35.000" +"PLANET RIX-13","","","","2020-04-29 22:00:16.000" +"Picross S2","","status-playable","playable","2020-10-15 12:01:40.000" +"Picross S3","","status-playable","playable","2020-10-15 11:55:27.000" +"POISOFT'S ""Thud""","","","","2020-04-29 22:26:06.000" +"Paranautical Activity - 010063400B2EC000","010063400B2EC000","status-playable","playable","2021-01-25 13:49:19.000" +"oOo: Ascension - 010074000BE8E000","010074000BE8E000","status-playable","playable","2021-01-25 14:13:34.000" +"Pic-a-Pix Pieces","","","","2020-04-30 12:07:19.000" +"Perception","","UE4;crash;nvdec;status-menus","menus","2020-12-18 11:49:23.000" +"Pirate Pop Plus","","","","2020-04-30 12:19:57.000" +"Outlast 2 - 0100DE70085E8000","0100DE70085E8000","status-ingame;crash;nvdec","ingame","2022-01-22 22:28:05.000" +"Project Highrise: Architect's Edition - 0100BBD00976C000","0100BBD00976C000","status-playable","playable","2022-08-10 17:19:12.000" +"Perchang - 010011700D1B2000","010011700D1B2000","status-playable","playable","2021-01-25 14:19:52.000" +"Out Of The Box - 01005A700A166000","01005A700A166000","status-playable","playable","2021-01-28 01:34:27.000" +"Paperbound Brawlers - 01006AD00B82C000","01006AD00B82C000","status-playable","playable","2021-01-25 14:32:15.000" +"Party Golf - 0100B8E00359E000","0100B8E00359E000","status-playable;nvdec","playable","2022-08-09 12:38:30.000" +"PAN-PAN A tiny big adventure - 0100F0D004CAE000","0100F0D004CAE000","audout;status-playable","playable","2021-01-25 14:42:00.000" +"OVIVO","","","","2020-04-30 15:12:05.000" +"Penguin Wars","","","","2020-04-30 15:28:21.000" +"Physical Contact: Speed - 01008110036FE000","01008110036FE000","status-playable","playable","2022-08-09 14:40:46.000" +"Pic-a-Pix Deluxe","","","","2020-04-30 16:00:55.000" +"Puyo Puyo Esports","","","","2020-04-30 16:13:17.000" +"Qbics Paint - 0100A8D003BAE000","0100A8D003BAE000","gpu;services;status-ingame","ingame","2021-06-07 10:54:09.000" +"Piczle Lines DX 500 More Puzzles!","","UE4;status-playable","playable","2020-12-15 23:42:51.000" +"Pato Box - 010031F006E76000","010031F006E76000","status-playable","playable","2021-01-25 15:17:52.000" +"Phoenix Wright: Ace Attorney Trilogy - 0100CB000A142000","0100CB000A142000","status-playable","playable","2023-09-15 22:03:12.000" +"Physical Contact: 2048","","slow;status-playable","playable","2021-01-25 15:18:32.000" +"OPUS Collection - 01004A200BE82000","01004A200BE82000","status-playable","playable","2021-01-25 15:24:04.000" +"Party Planet","","","","2020-04-30 18:30:59.000" +"Physical Contact: Picture Place","","","","2020-04-30 18:43:20.000" +"Tanzia - 01004DF007564000","01004DF007564000","status-playable","playable","2021-06-07 11:10:25.000" +"Syberia 3 - 0100CBE004E6C000","0100CBE004E6C000","nvdec;status-playable","playable","2021-01-25 16:15:12.000" +"SUPER DRAGON BALL HEROES WORLD MISSION - 0100E5E00C464000","0100E5E00C464000","status-playable;nvdec;online-broken","playable","2022-08-17 12:56:30.000" +"Tales of Vesperia: Definitive Edition - 01002C0008E52000","01002C0008E52000","status-playable","playable","2024-09-28 03:20:47.000" +"Surgeon Simulator CPR","","","","2020-05-01 15:11:43.000" +"Super Inefficient Golf - 010056800B534000","010056800B534000","status-playable;UE4","playable","2022-08-17 15:53:45.000" +"Super Daryl Deluxe","","","","2020-05-01 18:23:22.000" +"Sushi Striker: The Way of Sushido","","nvdec;status-playable","playable","2020-06-26 20:49:11.000" +"Super Volley Blast - 010035B00B3F0000","010035B00B3F0000","status-playable","playable","2022-08-19 18:14:40.000" +"Stunt Kite Party - 0100AF000B4AE000","0100AF000B4AE000","nvdec;status-playable","playable","2021-01-25 17:16:56.000" +"Super Putty Squad - 0100331005E8E000","0100331005E8E000","gpu;status-ingame;32-bit","ingame","2024-04-29 15:51:54.000" +"SWORD ART ONLINE: Hollow Realization Deluxe Edition - 01001B600D1D6000","01001B600D1D6000","status-playable;nvdec","playable","2022-08-19 19:19:15.000" +"SUPER ROBOT WARS T","","online;status-playable","playable","2021-03-25 11:00:40.000" +"Tactical Mind - 01000F20083A8000","01000F20083A8000","status-playable","playable","2021-01-25 18:05:00.000" +"Super Beat Sports - 0100F7000464A000","0100F7000464A000","status-playable;ldn-untested","playable","2022-08-16 16:05:50.000" +"Suicide Guy - 01005CD00A2A2000","01005CD00A2A2000","status-playable","playable","2021-01-26 13:13:54.000" +"Sundered: Eldritch Edition - 01002D3007962000","01002D3007962000","gpu;status-ingame","ingame","2021-06-07 11:46:00.000" +"Super Blackjack Battle II Turbo - The Card Warriors","","","","2020-05-02 09:45:57.000" +"Super Skelemania","","status-playable","playable","2020-06-07 22:59:50.000" +"Super Ping Pong Trick Shot","","","","2020-05-02 10:02:55.000" +"Subsurface Circular","","","","2020-05-02 10:36:40.000" +"Super Hero Fight Club: Reloaded","","","","2020-05-02 10:49:51.000" +"Superola and the lost burgers","","","","2020-05-02 10:57:54.000" +"Super Tennis Blast - 01000500DB50000","","status-playable","playable","2022-08-19 16:20:48.000" +"Swap This!","","","","2020-05-02 11:37:51.000" +"Super Sportmatchen - 0100A9300A4AE000","0100A9300A4AE000","status-playable","playable","2022-08-19 12:34:40.000" +"Super Destronaut DX","","","","2020-05-02 12:13:53.000" +"Summer Sports Games","","","","2020-05-02 12:45:15.000" +"Super Kickers League - 0100196009998000","0100196009998000","status-playable","playable","2021-01-26 13:36:48.000" +"Switch 'N' Shoot","","","","2020-05-03 02:02:08.000" +"Super Mutant Alien Assault","","status-playable","playable","2020-06-07 23:32:45.000" +"Tallowmere","","","","2020-05-03 02:23:10.000" +"Wizard of Legend - 0100522007AAA000","0100522007AAA000","status-playable","playable","2021-06-07 12:20:46.000" +"WARRIORS OROCHI 4 ULTIMATE - 0100E8500AD58000","0100E8500AD58000","status-playable;nvdec;online-broken","playable","2024-08-07 01:50:37.000" +"What Remains of Edith Finch - 010038900DFE0000","010038900DFE0000","slow;status-playable;UE4","playable","2022-08-31 19:57:59.000" +"Wasteland 2: Director's Cut - 010039A00BC64000","010039A00BC64000","nvdec;status-playable","playable","2021-01-27 13:34:11.000" +"Victor Vran Overkill Edition - 0100E81007A06000","0100E81007A06000","gpu;deadlock;status-ingame;nvdec;opengl","ingame","2022-08-30 11:46:56.000" +"Witch Thief - 01002FC00C6D0000","01002FC00C6D0000","status-playable","playable","2021-01-27 18:16:07.000" +"VSR: Void Space Racing - 0100C7C00AE6C000","0100C7C00AE6C000","status-playable","playable","2021-01-27 14:08:59.000" +"Warparty","","nvdec;status-playable","playable","2021-01-27 18:26:32.000" +"Windstorm","","UE4;gpu;nvdec;status-ingame","ingame","2020-12-22 13:17:48.000" +"WAKU WAKU SWEETS","","","","2020-05-03 19:46:53.000" +"Windstorm - Ari's Arrival - 0100D6800CEAC000","0100D6800CEAC000","UE4;status-playable","playable","2021-06-07 19:33:19.000" +"V-Rally 4 - 010064400B138000","010064400B138000","gpu;nvdec;status-ingame","ingame","2021-06-07 19:37:31.000" +"Valkyria Chronicles - 0100CAF00B744000","0100CAF00B744000","status-ingame;32-bit;crash;nvdec","ingame","2022-11-23 20:03:32.000" +"WILL: A Wonderful World","","","","2020-05-03 22:34:06.000" +"WILD GUNS Reloaded - 0100CFC00A1D8000","0100CFC00A1D8000","status-playable","playable","2021-01-28 12:29:05.000" +"Valthirian Arc: Hero School Story","","","","2020-05-04 12:06:06.000" +"War Theatre - 010084D00A134000","010084D00A134000","gpu;status-ingame","ingame","2021-06-07 19:42:45.000" +"Vostok, Inc. - 01004D8007368000","01004D8007368000","status-playable","playable","2021-01-27 17:43:59.000" +"Way of the Passive Fist - 0100BA200C378000","0100BA200C378000","gpu;status-ingame","ingame","2021-02-26 21:07:06.000" +"Vesta - 010057B00712C000","010057B00712C000","status-playable;nvdec","playable","2022-08-29 21:03:39.000" +"West of Loathing - 010031B00A4E8000","010031B00A4E8000","status-playable","playable","2021-01-28 12:35:19.000" +"Vaporum - 010030F00CA1E000","010030F00CA1E000","nvdec;status-playable","playable","2021-05-28 14:25:33.000" +"Vandals - 01007C500D650000","01007C500D650000","status-playable","playable","2021-01-27 21:45:46.000" +"Active Neurons - 010039A010DA0000","010039A010DA0000","status-playable","playable","2021-01-27 21:31:21.000" +"Voxel Sword - 0100BFB00D1F4000","0100BFB00D1F4000","status-playable","playable","2022-08-30 14:57:27.000" +"Levelhead","","online;status-ingame","ingame","2020-10-18 11:44:51.000" +"Violett - 01005880063AA000","01005880063AA000","nvdec;status-playable","playable","2021-01-28 13:09:36.000" +"Wheels of Aurelia - 0100DFC00405E000","0100DFC00405E000","status-playable","playable","2021-01-27 21:59:25.000" +"Varion","","","","2020-05-04 15:50:27.000" +"Warlock's Tower","","","","2020-05-04 16:03:52.000" +"Vectronom","","","","2020-05-04 16:14:05.000" +"Yooka-Laylee - 0100F110029C8000","0100F110029C8000","status-playable","playable","2021-01-28 14:21:45.000" +"WWE 2K18 - 010009800203E000","010009800203E000","status-playable;nvdec","playable","2023-10-21 17:22:01.000" +"Wulverblade - 010033700418A000","010033700418A000","nvdec;status-playable","playable","2021-01-27 22:29:05.000" +"YIIK: A Postmodern RPG - 0100634008266000","0100634008266000","status-playable","playable","2021-01-28 13:38:37.000" +"Yesterday Origins","","","","2020-05-05 14:17:14.000" +"Zarvot - 0100E7900C40000","","status-playable","playable","2021-01-28 13:51:36.000" +"World to the West","","","","2020-05-05 14:47:07.000" +"Yonder: The Cloud Catcher Chronicles - 0100CC600ABB2000","0100CC600ABB2000","status-playable","playable","2021-01-28 14:06:25.000" +"Emma: Lost in Memories - 010017b0102a8000","010017b0102a8000","nvdec;status-playable","playable","2021-01-28 16:19:10.000" +"Zotrix: Solar Division - 01001EE00A6B0000","01001EE00A6B0000","status-playable","playable","2021-06-07 20:34:05.000" +"X-Morph: Defense","","status-playable","playable","2020-06-22 11:05:31.000" +"Wonder Boy: The Dragon's Trap - 0100A6300150C000","0100A6300150C000","status-playable","playable","2021-06-25 04:53:21.000" +"Yoku's Island Express - 010002D00632E000","010002D00632E000","status-playable;nvdec","playable","2022-09-03 13:59:02.000" +"Woodle Tree Adventures","","","","2020-05-06 12:48:20.000" +"World Neverland - 01008E9007064000","01008E9007064000","status-playable","playable","2021-01-28 17:44:23.000" +"Yomawari: The Long Night Collection - 010012F00B6F2000","010012F00B6F2000","status-playable","playable","2022-09-03 14:36:59.000" +"Xenon Valkyrie+ - 010064200C324000","010064200C324000","status-playable","playable","2021-06-07 20:25:53.000" +"Word Search by POWGI","","","","2020-05-06 18:16:35.000" +"Zombie Scrapper","","","","2020-05-06 18:27:12.000" +"Moving Out - 0100C4C00E73E000","0100C4C00E73E000","nvdec;status-playable","playable","2021-06-07 21:17:24.000" +"Wonderboy Returns Remix","","","","2020-05-06 22:21:59.000" +"Xenoraid - 0100928005BD2000","0100928005BD2000","status-playable","playable","2022-09-03 13:01:10.000" +"Zombillie","","status-playable","playable","2020-07-23 17:42:23.000" +"World Conqueror X","","status-playable","playable","2020-12-22 16:10:29.000" +"Xeodrifter - 01005B5009364000","01005B5009364000","status-playable","playable","2022-09-03 13:18:39.000" +"Yono and the Celestial Elephants - 0100BE50042F6000","0100BE50042F6000","status-playable","playable","2021-01-28 18:23:58.000" +"Moto Racer 4 - 01002ED00B01C000","01002ED00B01C000","UE4;nvdec;online;status-playable","playable","2021-04-08 19:09:11.000" +"NARUTO SHIPPUDEN™: Ultimate Ninja Storm 3 Full Burst - 01006BB00800A000","01006BB00800A000","status-playable;nvdec","playable","2024-06-16 14:58:05.000" +"NAMCO MUSEUM - 010002F001220000","010002F001220000","status-playable;ldn-untested","playable","2024-08-13 07:52:21.000" +"Mother Russia Bleeds","","","","2020-05-07 17:29:22.000" +"MotoGP 18 - 0100361007268000","0100361007268000","status-playable;nvdec;UE4;ldn-untested","playable","2022-08-05 11:41:45.000" +"Mushroom Wars 2","","nvdec;status-playable","playable","2020-09-28 15:26:08.000" +"Mugsters - 010073E008E6E000","010073E008E6E000","status-playable","playable","2021-01-28 17:57:17.000" +"Mulaka - 0100211005E94000","0100211005E94000","status-playable","playable","2021-01-28 18:07:20.000" +"Mummy Pinball - 010038B00B9AE000","010038B00B9AE000","status-playable","playable","2022-08-05 16:08:11.000" +"Moto Rush GT - 01003F200D0F2000","01003F200D0F2000","status-playable","playable","2022-08-05 11:23:55.000" +"Mutant Football League Dynasty Edition - 0100C3E00ACAA000","0100C3E00ACAA000","status-playable;online-broken","playable","2022-08-05 17:01:51.000" +"Mr. Shifty","","slow;status-playable","playable","2020-05-08 15:28:16.000" +"MXGP3 - The Official Motocross Videogame","","UE4;gpu;nvdec;status-ingame","ingame","2020-12-16 14:00:20.000" +"My Memory of Us - 0100E7700C284000","0100E7700C284000","status-playable","playable","2022-08-20 11:03:14.000" +"N++ - 01000D5005974000","01000D5005974000","status-playable","playable","2022-08-05 21:54:58.000" +"MUJO","","status-playable","playable","2020-05-08 16:31:04.000" +"MotoGP 19 - 01004B800D0E8000","01004B800D0E8000","status-playable;nvdec;online-broken;UE4","playable","2022-08-05 11:54:14.000" +"Muddledash","","services;status-ingame","ingame","2020-05-08 16:46:14.000" +"My Little Riding Champion","","slow;status-playable","playable","2020-05-08 17:00:53.000" +"Motorsport Manager for Nintendo Switch - 01002A900D6D6000","01002A900D6D6000","status-playable;nvdec","playable","2022-08-05 12:48:14.000" +"Muse Dash","","status-playable","playable","2020-06-06 14:41:29.000" +"NAMCO MUSEUM ARCADE PAC - 0100DAA00AEE6000","0100DAA00AEE6000","status-playable","playable","2021-06-07 21:44:50.000" +"MyFarm 2018","","","","2020-05-09 12:14:19.000" +"Mutant Mudds Collection - 01004BE004A86000","01004BE004A86000","status-playable","playable","2022-08-05 17:11:38.000" +"Ms. Splosion Man","","online;status-playable","playable","2020-05-09 20:45:43.000" +"New Super Mario Bros. U Deluxe - 0100EA80032EA000","0100EA80032EA000","32-bit;status-playable","playable","2023-10-08 02:06:37.000" +"Nelke & the Legendary Alchemists ~Ateliers of the New World~ - 01006ED00BC76000","01006ED00BC76000","status-playable","playable","2021-01-28 19:39:42.000" +"Nihilumbra","","status-playable","playable","2020-05-10 16:00:12.000" +"Observer - 01002A000C478000","01002A000C478000","UE4;gpu;nvdec;status-ingame","ingame","2021-03-03 20:19:45.000" +"NOT A HERO - 0100CB800B07E000","0100CB800B07E000","status-playable","playable","2021-01-28 19:31:24.000" +"Nightshade","","nvdec;status-playable","playable","2020-05-10 19:43:31.000" +"Night in the Woods - 0100921006A04000","0100921006A04000","status-playable","playable","2022-12-03 20:17:54.000" +"Nippon Marathon - 010037200C72A000","010037200C72A000","nvdec;status-playable","playable","2021-01-28 20:32:46.000" +"One Piece Unlimited World Red Deluxe Edition","","status-playable","playable","2020-05-10 22:26:32.000" +"Numbala","","status-playable","playable","2020-05-11 12:01:07.000" +"Night Trap - 25th Anniversary Edition - 0100D8500A692000","0100D8500A692000","status-playable;nvdec","playable","2022-08-08 13:16:14.000" +"Ninja Shodown","","status-playable","playable","2020-05-11 12:31:21.000" +"OkunoKA - 01006AB00BD82000","01006AB00BD82000","status-playable;online-broken","playable","2022-08-08 14:41:51.000" +"Mechstermination Force - 0100E4600D31A000","0100E4600D31A000","status-playable","playable","2024-07-04 05:39:15.000" +"Lines X","","status-playable","playable","2020-05-11 15:28:30.000" +"Katamari Damacy REROLL - 0100D7000C2C6000","0100D7000C2C6000","status-playable","playable","2022-08-02 21:35:05.000" +"Lifeless Planet - 01005B6008132000","01005B6008132000","status-playable","playable","2022-08-03 21:25:13.000" +"League of Evil - 01009C100390E000","01009C100390E000","online;status-playable","playable","2021-06-08 11:23:27.000" +"Life Goes On - 010006300AFFE000","010006300AFFE000","status-playable","playable","2021-01-29 19:01:20.000" +"Leisure Suit Larry: Wet Dreams Don't Dry - 0100A8E00CAA0000","0100A8E00CAA0000","status-playable","playable","2022-08-03 19:51:44.000" +"Legend of Kay Anniversary - 01002DB007A96000","01002DB007A96000","nvdec;status-playable","playable","2021-01-29 18:38:29.000" +"Kunio-Kun: The World Classics Collection - 010060400ADD2000","010060400ADD2000","online;status-playable","playable","2021-01-29 20:21:46.000" +"Letter Quest Remastered","","status-playable","playable","2020-05-11 21:30:34.000" +"Koi DX","","status-playable","playable","2020-05-11 21:37:51.000" +"Knights of Pen and Paper +1 Deluxier Edition","","status-playable","playable","2020-05-11 21:46:32.000" +"Late Shift - 0100055007B86000","0100055007B86000","nvdec;status-playable","playable","2021-02-01 18:43:58.000" +"Lethal League Blaze - 01003AB00983C000","01003AB00983C000","online;status-playable","playable","2021-01-29 20:13:31.000" +"Koloro - 01005D200C9AA000","01005D200C9AA000","status-playable","playable","2022-08-03 12:34:02.000" +"Little Dragons Cafe","","status-playable","playable","2020-05-12 00:00:52.000" +"Legendary Fishing - 0100A7700B46C000","0100A7700B46C000","online;status-playable","playable","2021-04-14 15:08:46.000" +"Knock-Knock - 010001A00A1F6000","010001A00A1F6000","nvdec;status-playable","playable","2021-02-01 20:03:19.000" +"KAMEN RIDER CLIMAX SCRAMBLE - 0100BDC00A664000","0100BDC00A664000","status-playable;nvdec;ldn-untested","playable","2024-07-03 08:51:11.000" +"Kingdom: New Lands - 0100BD9004AB6000","0100BD9004AB6000","status-playable","playable","2022-08-02 21:48:50.000" +"Lapis x Labyrinth - 01005E000D3D8000","01005E000D3D8000","status-playable","playable","2021-02-01 18:58:08.000" +"Last Day of June - 0100DA700879C000","0100DA700879C000","nvdec;status-playable","playable","2021-06-08 11:35:32.000" +"Levels+","","status-playable","playable","2020-05-12 13:51:39.000" +"Katana ZERO - 010029600D56A000","010029600D56A000","status-playable","playable","2022-08-26 08:09:09.000" +"Layers of Fear: Legacy","","nvdec;status-playable","playable","2021-02-15 16:30:41.000" +"Kotodama: The 7 Mysteries of Fujisawa - 010046600CCA4000","010046600CCA4000","audout;status-playable","playable","2021-02-01 20:28:37.000" +"Lichtspeer: Double Speer Edition","","status-playable","playable","2020-05-12 16:43:09.000" +"Koral","","UE4;crash;gpu;status-menus","menus","2020-11-16 12:41:26.000" +"KeroBlaster","","status-playable","playable","2020-05-12 20:42:52.000" +"Kentucky Robo Chicken","","status-playable","playable","2020-05-12 20:54:17.000" +"L.A. Noire - 0100830004FB6000","0100830004FB6000","status-playable","playable","2022-08-03 16:49:35.000" +"Kill The Bad Guy","","status-playable","playable","2020-05-12 22:16:10.000" +"Legendary Eleven - 0100A73006E74000","0100A73006E74000","status-playable","playable","2021-06-08 12:09:03.000" +"Kitten Squad - 01000C900A136000","01000C900A136000","status-playable;nvdec","playable","2022-08-03 12:01:59.000" +"Labyrinth of Refrain: Coven of Dusk - 010058500B3E0000","010058500B3E0000","status-playable","playable","2021-02-15 17:38:48.000" +"KAMIKO","","status-playable","playable","2020-05-13 12:48:57.000" +"Left-Right: The Mansion","","status-playable","playable","2020-05-13 13:02:12.000" +"Knight Terrors","","status-playable","playable","2020-05-13 13:09:22.000" +"Kingdom: Two Crowns","","status-playable","playable","2020-05-16 19:36:21.000" +"Kid Tripp","","crash;status-nothing","nothing","2020-10-15 07:41:23.000" +"King Oddball","","status-playable","playable","2020-05-13 13:47:57.000" +"KORG Gadget","","status-playable","playable","2020-05-13 13:57:24.000" +"Knights of Pen and Paper 2 Deluxiest Edition","","status-playable","playable","2020-05-13 14:07:00.000" +"Keep Talking and Nobody Explodes - 01008D400A584000","01008D400A584000","status-playable","playable","2021-02-15 18:05:21.000" +"Jet Lancer - 0100F3500C70C000","0100F3500C70C000","gpu;status-ingame","ingame","2021-02-15 18:15:47.000" +"Furi - 01000EC00AF98000","01000EC00AF98000","status-playable","playable","2022-07-27 12:21:20.000" +"Forgotton Anne - 010059E00B93C000","010059E00B93C000","nvdec;status-playable","playable","2021-02-15 18:28:07.000" +"GOD EATER 3 - 01001C700873E000","01001C700873E000","gpu;status-ingame;nvdec","ingame","2022-07-29 21:33:21.000" +"Guacamelee! Super Turbo Championship Edition","","status-playable","playable","2020-05-13 23:44:18.000" +"Frost - 0100B5300B49A000","0100B5300B49A000","status-playable","playable","2022-07-27 12:00:36.000" +"GO VACATION - 0100C1800A9B6000","0100C1800A9B6000","status-playable;nvdec;ldn-works","playable","2024-05-13 19:28:53.000" +"Grand Prix Story - 0100BE600D07A000","0100BE600D07A000","status-playable","playable","2022-08-01 12:42:23.000" +"Freedom Planet","","status-playable","playable","2020-05-14 12:23:06.000" +"Fossil Hunters - 0100CA500756C000","0100CA500756C000","status-playable;nvdec","playable","2022-07-27 11:37:20.000" +"For The King - 010069400B6BE000","010069400B6BE000","nvdec;status-playable","playable","2021-02-15 18:51:44.000" +"Flashback","","nvdec;status-playable","playable","2020-05-14 13:57:29.000" +"Golf Story","","status-playable","playable","2020-05-14 14:56:17.000" +"Firefighters: Airport Fire Department","","status-playable","playable","2021-02-15 19:17:00.000" +"Chocobo's Mystery Dungeon Every Buddy!","","slow;status-playable","playable","2020-05-26 13:53:13.000" +"CHOP","","","","2020-05-14 17:13:00.000" +"FunBox Party","","status-playable","playable","2020-05-15 12:07:02.000" +"Friday the 13th: Killer Puzzle - 010003F00BD48000","010003F00BD48000","status-playable","playable","2021-01-28 01:33:38.000" +"Johnny Turbo's Arcade Gate of Doom - 010069B002CDE000","010069B002CDE000","status-playable","playable","2022-07-29 12:17:50.000" +"Frederic: Resurrection of Music","","nvdec;status-playable","playable","2020-07-23 16:59:53.000" +"Frederic 2","","status-playable","playable","2020-07-23 16:44:37.000" +"Fort Boyard","","nvdec;slow;status-playable","playable","2020-05-15 13:22:53.000" +"Flipping Death - 01009FB002B2E000","01009FB002B2E000","status-playable","playable","2021-02-17 16:12:30.000" +"Flat Heroes - 0100C53004C52000","0100C53004C52000","gpu;status-ingame","ingame","2022-07-26 19:37:37.000" +"Flood of Light","","status-playable","playable","2020-05-15 14:15:25.000" +"FRAMED COLLECTION - 0100F1A00A5DC000","0100F1A00A5DC000","status-playable;nvdec","playable","2022-07-27 11:48:15.000" +"Guacamelee! 2","","status-playable","playable","2020-05-15 14:56:59.000" +"Flinthook","","online;status-playable","playable","2021-03-25 20:42:29.000" +"FORMA.8","","nvdec;status-playable","playable","2020-11-15 01:04:32.000" +"FOX n FORESTS - 01008A100A028000","01008A100A028000","status-playable","playable","2021-02-16 14:27:49.000" +"Gotcha Racing 2nd","","status-playable","playable","2020-07-23 17:14:04.000" +"Floor Kids - 0100DF9005E7A000","0100DF9005E7A000","status-playable;nvdec","playable","2024-08-18 19:38:49.000" +"Firefighters - The Simulation - 0100434003C58000","0100434003C58000","status-playable","playable","2021-02-19 13:32:05.000" +"Flip Wars - 010095A004040000","010095A004040000","services;status-ingame;ldn-untested","ingame","2022-05-02 15:39:18.000" +"TowerFall","","status-playable","playable","2020-05-16 18:58:07.000" +"Towertale","","status-playable","playable","2020-10-15 13:56:58.000" +"Football Manager Touch 2018 - 010097F0099B4000","010097F0099B4000","status-playable","playable","2022-07-26 20:17:56.000" +"Fruitfall Crush","","status-playable","playable","2020-10-20 11:33:33.000" +"Forest Home","","","","2020-05-17 13:33:08.000" +"Fly O'Clock VS","","status-playable","playable","2020-05-17 13:39:52.000" +"Gal Metal - 01B8000C2EA000","","status-playable","playable","2022-07-27 20:57:48.000" +"Gear.Club Unlimited - 010065E003FD8000","010065E003FD8000","status-playable","playable","2021-06-08 13:03:19.000" +"Gear.Club Unlimited 2 - 010072900AFF0000","010072900AFF0000","status-playable;nvdec;online-broken","playable","2022-07-29 12:52:16.000" +"GRIP - 0100459009A2A000","0100459009A2A000","status-playable;nvdec;online-broken;UE4","playable","2022-08-01 15:00:22.000" +"Ginger: Beyond the Crystal - 0100C50007070000","0100C50007070000","status-playable","playable","2021-02-17 16:27:00.000" +"Slayin 2 - 01004E900EDDA000","01004E900EDDA000","gpu;status-ingame","ingame","2024-04-19 16:15:26.000" +"Grim Fandango Remastered - 0100B7900B024000","0100B7900B024000","status-playable;nvdec","playable","2022-08-01 13:55:58.000" +"Gal*Gun 2 - 010024700901A000","010024700901A000","status-playable;nvdec;UE4","playable","2022-07-27 12:45:37.000" +"Golem Gates - 01003C000D84C000","01003C000D84C000","status-ingame;crash;nvdec;online-broken;UE4","ingame","2022-07-30 11:35:11.000" +"Full Metal Furies","","online","","2020-05-18 13:22:06.000" +"GIGA WRECKER Alt. - 010045F00BFC2000","010045F00BFC2000","status-playable","playable","2022-07-29 14:13:54.000" +"Gelly Break - 01009D000AF3A000","01009D000AF3A000","UE4;status-playable","playable","2021-03-03 16:04:02.000" +"The World Next Door - 0100E6200D56E000","0100E6200D56E000","status-playable","playable","2022-09-21 14:15:23.000" +"GREEN - 010068D00AE68000","010068D00AE68000","status-playable","playable","2022-08-01 12:54:15.000" +"Feathery Ears","","","","2020-05-18 14:48:31.000" +"Gorogoa - 0100F2A005C98000","0100F2A005C98000","status-playable","playable","2022-08-01 11:55:08.000" +"Girls und Panzer Dream Tank Match DX - 01006DD00CC96000","01006DD00CC96000","status-playable;ldn-untested","playable","2022-09-12 16:07:11.000" +"Super Crush KO","","","","2020-05-18 15:49:23.000" +"Gem Smashers - 01001A4008192000","01001A4008192000","nvdec;status-playable","playable","2021-06-08 13:40:51.000" +"Grave Danger","","status-playable","playable","2020-05-18 17:41:28.000" +"Fury Unleashed","","crash;services;status-ingame","ingame","2020-10-18 11:52:40.000" +"TaniNani - 01007DB010D2C000","01007DB010D2C000","crash;kernel;status-nothing","nothing","2021-04-08 03:06:44.000" +"Atelier Escha & Logy: Alchemists Of The Dusk Sky DX - 0100E5600EE8E000","0100E5600EE8E000","status-playable;nvdec","playable","2022-11-20 16:01:41.000" +"Battle of Elemental Burst","","","","2020-05-18 23:27:22.000" +"Gun Crazy","","","","2020-05-18 23:47:28.000" +"Ascendant Hearts","","","","2020-05-19 08:50:44.000" +"Infinite Beyond the Mind","","","","2020-05-19 09:17:17.000" +"FullBlast","","status-playable","playable","2020-05-19 10:34:13.000" +"The Legend of Heroes: Trails of Cold Steel III","","status-playable","playable","2020-12-16 10:59:18.000" +"Goosebumps: The Game","","status-playable","playable","2020-05-19 11:56:52.000" +"Gonner","","status-playable","playable","2020-05-19 12:05:02.000" +"Monster Viator","","","","2020-05-19 12:15:18.000" +"Umihara Kawase Fresh","","","","2020-05-19 12:29:18.000" +"Operencia The Stolen Sun - 01006CF00CFA4000","01006CF00CFA4000","UE4;nvdec;status-playable","playable","2021-06-08 13:51:07.000" +"Goetia","","status-playable","playable","2020-05-19 12:55:39.000" +"Grid Mania","","status-playable","playable","2020-05-19 14:11:05.000" +"Pantsu Hunter","","status-playable","playable","2021-02-19 15:12:27.000" +"GOD WARS THE COMPLETE LEGEND","","nvdec;status-playable","playable","2020-05-19 14:37:50.000" +"Dark Burial","","","","2020-05-19 14:38:34.000" +"Langrisser I and II - 0100BAB00E8C0000","0100BAB00E8C0000","status-playable","playable","2021-02-19 15:46:10.000" +"My Secret Pets","","","","2020-05-19 15:26:56.000" +"Grass Cutter","","slow;status-ingame","ingame","2020-05-19 18:27:42.000" +"Giana Sisters: Twisted Dreams - Owltimate Edition - 01003830092B8000","01003830092B8000","status-playable","playable","2022-07-29 14:06:12.000" +"FUN! FUN! Animal Park - 010002F00CC20000","010002F00CC20000","status-playable","playable","2021-04-14 17:08:52.000" +"Graceful Explosion Machine","","status-playable","playable","2020-05-19 20:36:55.000" +"Garage","","status-playable","playable","2020-05-19 20:59:53.000" +"Game Dev Story","","status-playable","playable","2020-05-20 00:00:38.000" +"Gone Home - 0100EEC00AA6E000","0100EEC00AA6E000","status-playable","playable","2022-08-01 11:14:20.000" +"Geki Yaba Runner Anniversary Edition - 01000F000D9F0000","01000F000D9F0000","status-playable","playable","2021-02-19 18:59:07.000" +"Gridd: Retroenhanced","","status-playable","playable","2020-05-20 11:32:40.000" +"Green Game - 0100CBB0070EE000","0100CBB0070EE000","nvdec;status-playable","playable","2021-02-19 18:51:55.000" +"Glaive: Brick Breaker","","status-playable","playable","2020-05-20 12:15:59.000" +"Furwind - 0100A6B00D4EC000","0100A6B00D4EC000","status-playable","playable","2021-02-19 19:44:08.000" +"Goat Simulator - 010032600C8CE000","010032600C8CE000","32-bit;status-playable","playable","2022-07-29 21:02:33.000" +"Gnomes Garden 2","","status-playable","playable","2021-02-19 20:08:13.000" +"Gensokyo Defenders - 010000300C79C000","010000300C79C000","status-playable;online-broken;UE4","playable","2022-07-29 13:48:12.000" +"Guess the Character","","status-playable","playable","2020-05-20 13:14:19.000" +"Gato Roboto - 010025500C098000","010025500C098000","status-playable","playable","2023-01-20 15:04:11.000" +"Gekido Kintaro's Revenge","","status-playable","playable","2020-10-27 12:44:05.000" +"Ghost 1.0 - 0100EEB005ACC000","0100EEB005ACC000","status-playable","playable","2021-02-19 20:48:47.000" +"GALAK-Z: Variant S - 0100C9800A454000","0100C9800A454000","status-boots;online-broken","boots","2022-07-29 11:59:12.000" +"Cuphead - 0100A5C00D162000","0100A5C00D162000","status-playable","playable","2022-02-01 22:45:55.000" +"Darkest Dungeon - 01008F1008DA6000","01008F1008DA6000","status-playable;nvdec","playable","2022-07-22 18:49:18.000" +"Cabela's: The Hunt - Championship Edition - 0100E24004510000","0100E24004510000","status-menus;32-bit","menus","2022-07-21 20:21:25.000" +"Darius Cozmic Collection","","status-playable","playable","2021-02-19 20:59:06.000" +"Ion Fury - 010041C00D086000","010041C00D086000","status-ingame;vulkan-backend-bug","ingame","2022-08-07 08:27:51.000" +"Void Bastards - 0100D010113A8000","0100D010113A8000","status-playable","playable","2022-10-15 00:04:19.000" +"Our two Bedroom Story - 010097F010FE6000","010097F010FE6000","gpu;status-ingame;nvdec","ingame","2023-10-10 17:41:20.000" +"Dark Witch Music Episode: Rudymical","","status-playable","playable","2020-05-22 09:44:44.000" +"Cave Story+","","status-playable","playable","2020-05-22 09:57:25.000" +"Crawl","","status-playable","playable","2020-05-22 10:16:05.000" +"Chasm","","status-playable","playable","2020-10-23 11:03:43.000" +"Princess Closet","","","","2020-05-22 10:34:06.000" +"Color Zen","","status-playable","playable","2020-05-22 10:56:17.000" +"Coffee Crisis - 0100CF800C810000","0100CF800C810000","status-playable","playable","2021-02-20 12:34:52.000" +"Croc's World","","status-playable","playable","2020-05-22 11:21:09.000" +"Chicken Rider","","status-playable","playable","2020-05-22 11:31:17.000" +"Caveman Warriors","","status-playable","playable","2020-05-22 11:44:20.000" +"Clustertruck - 010096900A4D2000","010096900A4D2000","slow;status-ingame","ingame","2021-02-19 21:07:09.000" +"Yumeutsutsu Re:After - 0100B56011502000","0100B56011502000","status-playable","playable","2022-11-20 16:09:06.000" +"Danger Mouse - 01003ED0099B0000","01003ED0099B0000","status-boots;crash;online","boots","2022-07-22 15:49:45.000" +"Circle of Sumo","","status-playable","playable","2020-05-22 12:45:21.000" +"Chicken Range - 0100F6C00A016000","0100F6C00A016000","status-playable","playable","2021-04-23 12:14:23.000" +"Conga Master Party!","","status-playable","playable","2020-05-22 13:22:24.000" +"SNK HEROINES Tag Team Frenzy - 010027F00AD6C000","010027F00AD6C000","status-playable;nvdec;online-broken;ldn-untested","playable","2022-08-14 14:19:25.000" +"Conduct TOGETHER! - 010043700C9B0000","010043700C9B0000","nvdec;status-playable","playable","2021-02-20 12:59:00.000" +"Calculation Castle: Greco's Ghostly Challenge ""Addition""","","32-bit;status-playable","playable","2020-11-01 23:40:11.000" +"Calculation Castle: Greco's Ghostly Challenge ""Subtraction""","","32-bit;status-playable","playable","2020-11-01 23:47:42.000" +"Calculation Castle: Greco's Ghostly Challenge ""Multiplication""","","32-bit;status-playable","playable","2020-11-02 00:04:33.000" +"Calculation Castle: Greco's Ghostly Challenge ""Division""","","32-bit;status-playable","playable","2020-11-01 23:54:55.000" +"Chicken Assassin: Reloaded - 0100E3C00A118000","0100E3C00A118000","status-playable","playable","2021-02-20 13:29:01.000" +"eSports Legend","","","","2020-05-22 18:58:46.000" +"Crypt of the Necrodancer - 0100CEA007D08000","0100CEA007D08000","status-playable;nvdec","playable","2022-11-01 09:52:06.000" +"Crash Bandicoot N. Sane Trilogy - 0100D1B006744000","0100D1B006744000","status-playable","playable","2024-02-11 11:38:14.000" +"Castle of Heart - 01003C100445C000","01003C100445C000","status-playable;nvdec","playable","2022-07-21 23:10:45.000" +"Darkwood","","status-playable","playable","2021-01-08 21:24:06.000" +"A Fold Apart","","","","2020-05-23 08:10:49.000" +"Blind Men - 010089D011310000","010089D011310000","audout;status-playable","playable","2021-02-20 14:15:38.000" +"Darksiders Warmastered Edition - 0100E1400BA96000","0100E1400BA96000","status-playable;nvdec","playable","2023-03-02 18:08:09.000" +"OBAKEIDORO!","","nvdec;online;status-playable","playable","2020-10-16 16:57:34.000" +"De:YABATANIEN","","","","2020-05-23 10:48:51.000" +"Crash Dummy","","nvdec;status-playable","playable","2020-05-23 11:12:43.000" +"Castlevania Anniversary Collection","","audio;status-playable","playable","2020-05-23 11:40:29.000" +"Flan - 010038200E088000","010038200E088000","status-ingame;crash;regression","ingame","2021-11-17 07:39:28.000" +"Sisters Royale: Five Sisters Under Fire","","","","2020-05-23 15:12:09.000" +"Game Tengoku CruisinMix Special","","","","2020-05-23 17:30:59.000" +"Cosmic Star Heroine - 010067C00A776000","010067C00A776000","status-playable","playable","2021-02-20 14:30:47.000" +"Croixleur Sigma - 01000F0007D92000","01000F0007D92000","status-playable;online","playable","2022-07-22 14:26:54.000" +"Cities: Skylines - Nintendo Switch Edition","","status-playable","playable","2020-12-16 10:34:57.000" +"Castlestorm - 010097C00AB66000","010097C00AB66000","status-playable;nvdec","playable","2022-07-21 22:49:14.000" +"Coffin Dodgers - 0100178009648000","0100178009648000","status-playable","playable","2021-02-20 14:57:41.000" +"Child of Light","","nvdec;status-playable","playable","2020-12-16 10:23:10.000" +"Wizards of Brandel","","status-nothing","nothing","2020-10-14 15:52:33.000" +"Contra Anniversary Collection - 0100DCA00DA7E000","0100DCA00DA7E000","status-playable","playable","2022-07-22 11:30:12.000" +"Cartoon Network Adventure Time: Pirates of the Enchiridion - 0100C4E004406000","0100C4E004406000","status-playable;nvdec","playable","2022-07-21 21:49:01.000" +"Claybook - 010009300AA6C000","010009300AA6C000","slow;status-playable;nvdec;online;UE4","playable","2022-07-22 11:11:34.000" +"Crashbots - 0100BF200CD74000","0100BF200CD74000","status-playable","playable","2022-07-22 13:50:52.000" +"Crossing Souls - 0100B1E00AA56000","0100B1E00AA56000","nvdec;status-playable","playable","2021-02-20 15:42:54.000" +"Groove Coaster: Wai Wai Party!!!! - 0100EB500D92E000","0100EB500D92E000","status-playable;nvdec;ldn-broken","playable","2021-11-06 14:54:27.000" +"Candle - The Power of the Flame","","nvdec;status-playable","playable","2020-05-26 12:10:20.000" +"Minecraft Dungeons - 01006C100EC08000","01006C100EC08000","status-playable;nvdec;online-broken;UE4","playable","2024-06-26 22:10:43.000" +"Constructor Plus","","status-playable","playable","2020-05-26 12:37:40.000" +"The Wonderful 101: Remastered - 0100B1300FF08000","0100B1300FF08000","slow;status-playable;nvdec","playable","2022-09-30 13:49:28.000" +"Dandara","","status-playable","playable","2020-05-26 12:42:33.000" +"ChromaGun","","status-playable","playable","2020-05-26 12:56:42.000" +"Crayola Scoot - 0100C66007E96000","0100C66007E96000","status-playable;nvdec","playable","2022-07-22 14:01:55.000" +"Chess Ultra - 0100A5900472E000","0100A5900472E000","status-playable;UE4","playable","2023-08-30 23:06:31.000" +"Clue","","crash;online;status-menus","menus","2020-11-10 09:23:48.000" +"ACA NEOGEO Metal Slug X","","crash;services;status-menus","menus","2020-05-26 14:07:20.000" +"ACA NEOGEO ZUPAPA!","","online;status-playable","playable","2021-03-25 20:07:33.000" +"ACA NEOGEO WORLD HEROES PERFECT","","crash;services;status-menus","menus","2020-05-26 14:14:36.000" +"ACA NEOGEO WAKU WAKU 7 - 0100CEF001DC0000","0100CEF001DC0000","online;status-playable","playable","2021-04-10 14:20:52.000" +"ACA NEOGEO THE SUPER SPY - 0100F7F00AFA2000","0100F7F00AFA2000","online;status-playable","playable","2021-04-10 14:26:33.000" +"ACA NEOGEO THE LAST BLADE 2 - 0100699008792000","0100699008792000","online;status-playable","playable","2021-04-10 14:31:54.000" +"ACA NEOGEO THE KING OF FIGHTERS '99 - 0100583001DCA000","0100583001DCA000","online;status-playable","playable","2021-04-10 14:36:56.000" +"ACA NEOGEO THE KING OF FIGHTERS '98","","crash;services;status-menus","menus","2020-05-26 14:54:20.000" +"ACA NEOGEO THE KING OF FIGHTERS '97 - 0100170008728000","0100170008728000","online;status-playable","playable","2021-04-10 14:43:27.000" +"ACA NEOGEO THE KING OF FIGHTERS '96 - 01006F0004FB4000","01006F0004FB4000","online;status-playable","playable","2021-04-10 14:49:10.000" +"ACA NEOGEO THE KING OF FIGHTERS '95 - 01009DC001DB6000","01009DC001DB6000","status-playable","playable","2021-03-29 20:27:35.000" +"ACA NEOGEO THE KING OF FIGHTERS '94","","crash;services;status-menus","menus","2020-05-26 15:03:44.000" +"ACA NEOGEO THE KING OF FIGHTERS 2003 - 0100EF100AFE6000","0100EF100AFE6000","online;status-playable","playable","2021-04-10 14:54:31.000" +"ACA NEOGEO THE KING OF FIGHTERS 2002 - 0100CFD00AFDE000","0100CFD00AFDE000","online;status-playable","playable","2021-04-10 15:01:55.000" +"ACA NEOGEO THE KING OF FIGHTERS 2001 - 010048200AFC2000","010048200AFC2000","online;status-playable","playable","2021-04-10 15:16:23.000" +"ACA NEOGEO THE KING OF FIGHTERS 2000 - 0100B97002B44000","0100B97002B44000","online;status-playable","playable","2021-04-10 15:24:35.000" +"ACA NEOGEO SUPER SIDEKICKS 3: THE NEXT GLORY - 0100A4D00A308000","0100A4D00A308000","online;status-playable","playable","2021-04-10 15:39:22.000" +"ACA NEOGEO SUPER SIDEKICKS 2 - 010055A00A300000","010055A00A300000","online;status-playable","playable","2021-04-10 16:05:58.000" +"ACA NEOGEO SPIN MASTER - 01007D1004DBA000","01007D1004DBA000","online;status-playable","playable","2021-04-10 15:50:19.000" +"ACA NEOGEO SHOCK TROOPERS","","crash;services;status-menus","menus","2020-05-26 15:29:34.000" +"ACA NEOGEO SENGOKU 3 - 01008D000877C000","01008D000877C000","online;status-playable","playable","2021-04-10 16:11:53.000" +"ACA NEOGEO SENGOKU 2 - 01009B300872A000","01009B300872A000","online;status-playable","playable","2021-04-10 17:36:44.000" +"ACA NEOGEO SAMURAI SHODOWN SPECIAL V - 010049F00AFE8000","010049F00AFE8000","online;status-playable","playable","2021-04-10 18:07:13.000" +"ACA NEOGEO SAMURAI SHODOWN IV - 010047F001DBC000","010047F001DBC000","online;status-playable","playable","2021-04-12 12:58:54.000" +"ACA NEOGEO SAMURAI SHODOWN - 01005C9002B42000","01005C9002B42000","online;status-playable","playable","2021-04-01 17:11:35.000" +"ACA NEOGEO REAL BOUT FATAL FURY SPECIAL - 010088500878C000","010088500878C000","online;status-playable","playable","2021-04-01 17:18:27.000" +"ACA NEOGEO OVER TOP - 01003A5001DBA000","01003A5001DBA000","status-playable","playable","2021-02-21 13:16:25.000" +"ACA NEOGEO NINJA COMMANDO - 01007E800AFB6000","01007E800AFB6000","online;status-playable","playable","2021-04-01 17:28:18.000" +"ACA NEOGEO NINJA COMBAT - 010052A00A306000","010052A00A306000","status-playable","playable","2021-03-29 21:17:28.000" +"ACA NEOGEO NEO TURF MASTERS - 01002E70032E8000","01002E70032E8000","status-playable","playable","2021-02-21 15:12:01.000" +"ACA NEOGEO Money Puzzle Exchanger - 010038F00AFA0000","010038F00AFA0000","online;status-playable","playable","2021-04-01 17:59:56.000" +"ACA NEOGEO METAL SLUG 4 - 01009CE00AFAE000","01009CE00AFAE000","online;status-playable","playable","2021-04-01 18:12:18.000" +"ACA NEOGEO METAL SLUG 3","","crash;services;status-menus","menus","2020-05-26 16:32:45.000" +"ACA NEOGEO METAL SLUG 2 - 010086300486E000","010086300486E000","online;status-playable","playable","2021-04-01 19:25:52.000" +"ACA NEOGEO METAL SLUG - 0100EBE002B3E000","0100EBE002B3E000","status-playable","playable","2021-02-21 13:56:48.000" +"ACA NEOGEO MAGICIAN LORD - 01007920038F6000","01007920038F6000","online;status-playable","playable","2021-04-01 19:33:26.000" +"ACA NEOGEO MAGICAL DROP II","","crash;services;status-menus","menus","2020-05-26 16:48:24.000" +"SNK Gals Fighters","","","","2020-05-26 16:56:16.000" +"ESP Ra.De. Psi - 0100F9600E746000","0100F9600E746000","audio;slow;status-ingame","ingame","2024-03-07 15:05:08.000" +"ACA NEOGEO LEAGUE BOWLING","","crash;services;status-menus","menus","2020-05-26 17:11:04.000" +"ACA NEOGEO LAST RESORT - 01000D10038E6000","01000D10038E6000","online;status-playable","playable","2021-04-01 19:51:22.000" +"ACA NEOGEO GHOST PILOTS - 01005D700A2F8000","01005D700A2F8000","online;status-playable","playable","2021-04-01 20:26:45.000" +"ACA NEOGEO GAROU: MARK OF THE WOLVES - 0100CB2001DB8000","0100CB2001DB8000","online;status-playable","playable","2021-04-01 20:31:10.000" +"ACA NEOGEO FOOTBALL FRENZY","","status-playable","playable","2021-03-29 20:12:12.000" +"ACA NEOGEO FATAL FURY - 0100EE6002B48000","0100EE6002B48000","online;status-playable","playable","2021-04-01 20:36:23.000" +"ACA NEOGEO CROSSED SWORDS - 0100D2400AFB0000","0100D2400AFB0000","online;status-playable","playable","2021-04-01 20:42:59.000" +"ACA NEOGEO BLAZING STAR","","crash;services;status-menus","menus","2020-05-26 17:29:02.000" +"ACA NEOGEO BASEBALL STARS PROFESSIONAL - 01003FE00A2F6000","01003FE00A2F6000","online;status-playable","playable","2021-04-01 21:23:05.000" +"ACA NEOGEO AGGRESSORS OF DARK KOMBAT - 0100B4800AFBA000","0100B4800AFBA000","online;status-playable","playable","2021-04-01 22:48:01.000" +"ACA NEOGEO AERO FIGHTERS 3 - 0100B91008780000","0100B91008780000","online;status-playable","playable","2021-04-12 13:11:17.000" +"ACA NEOGEO 3 COUNT BOUT - 0100FC000AFC6000","0100FC000AFC6000","online;status-playable","playable","2021-04-12 13:16:42.000" +"ACA NEOGEO 2020 SUPER BASEBALL - 01003C400871E000","01003C400871E000","online;status-playable","playable","2021-04-12 13:23:51.000" +"Arcade Archives Traverse USA - 010029D006ED8000","010029D006ED8000","online;status-playable","playable","2021-04-15 08:11:06.000" +"Arcade Archives TERRA CRESTA","","crash;services;status-menus","menus","2020-08-18 20:20:55.000" +"Arcade Archives STAR FORCE - 010069F008A38000","010069F008A38000","online;status-playable","playable","2021-04-15 08:39:09.000" +"Arcade Archives Sky Skipper - 010008F00B054000","010008F00B054000","online;status-playable","playable","2021-04-15 08:58:09.000" +"Arcade Archives RYGAR - 0100C2D00981E000","0100C2D00981E000","online;status-playable","playable","2021-04-15 08:48:30.000" +"Arcade Archives Renegade - 010081E001DD2000","010081E001DD2000","status-playable;online","playable","2022-07-21 11:45:40.000" +"Arcade Archives PUNCH-OUT!! - 01001530097F8000","01001530097F8000","online;status-playable","playable","2021-03-25 22:10:55.000" +"Arcade Archives OMEGA FIGHTER","","crash;services;status-menus","menus","2020-08-18 20:50:54.000" +"Arcade Archives Ninja-Kid","","online;status-playable","playable","2021-03-26 20:55:07.000" +"Arcade Archives NINJA GAIDEN - 01003EF00D3B4000","01003EF00D3B4000","audio;online;status-ingame","ingame","2021-04-12 16:27:53.000" +"Arcade Archives MOON PATROL - 01003000097FE000","01003000097FE000","online;status-playable","playable","2021-03-26 11:42:04.000" +"Arcade Archives MARIO BROS. - 0100755004608000","0100755004608000","online;status-playable","playable","2021-03-26 11:31:32.000" +"Arcade Archives Kid's Horehore Daisakusen - 0100E7C001DE0000","0100E7C001DE0000","online;status-playable","playable","2021-04-12 16:21:29.000" +"Arcade Archives Kid Niki Radical Ninja - 010010B008A36000","010010B008A36000","audio;status-ingame;online","ingame","2022-07-21 11:02:04.000" +"Arcade Archives Ikki - 01000DB00980A000","01000DB00980A000","online;status-playable","playable","2021-03-25 23:11:28.000" +"Arcade Archives HEROIC EPISODE - 01009A4008A30000","01009A4008A30000","online;status-playable","playable","2021-03-25 23:01:26.000" +"Arcade Archives DOUBLE DRAGON II The Revenge - 01009E3001DDE000","01009E3001DDE000","online;status-playable","playable","2021-04-12 16:05:29.000" +"Arcade Archives DOUBLE DRAGON - 0100F25001DD0000","0100F25001DD0000","online;status-playable","playable","2021-03-25 22:44:34.000" +"Arcade Archives DONKEY KONG","","Needs Update;crash;services;status-menus","menus","2021-03-24 18:18:43.000" +"Arcade Archives CRAZY CLIMBER - 0100BB1001DD6000","0100BB1001DD6000","online;status-playable","playable","2021-03-25 22:24:15.000" +"Arcade Archives City CONNECTION - 010007A00980C000","010007A00980C000","online;status-playable","playable","2021-03-25 22:16:15.000" +"Arcade Archives 10-Yard Fight - 0100BE80097FA000","0100BE80097FA000","online;status-playable","playable","2021-03-25 21:26:41.000" +"Ark: Survival Evolved - 0100D4A00B284000","0100D4A00B284000","gpu;status-ingame;nvdec;online-broken;UE4;ldn-untested","ingame","2024-04-16 00:53:56.000" +"Art of Balance - 01008EC006BE2000","01008EC006BE2000","gpu;status-ingame;ldn-works","ingame","2022-07-21 17:13:57.000" +"Aces of the Luftwaffe Squadron","","nvdec;slow;status-playable","playable","2020-05-27 12:29:42.000" +"Atelier Lulua ~ The Scion of Arland ~","","nvdec;status-playable","playable","2020-12-16 14:29:19.000" +"Apocalipsis","","deadlock;status-menus","menus","2020-05-27 12:56:37.000" +"Aqua Moto Racing Utopia - 0100D0D00516A000","0100D0D00516A000","status-playable","playable","2021-02-21 21:21:00.000" +"Arc of Alchemist - 0100C7D00E6A0000","0100C7D00E6A0000","status-playable;nvdec","playable","2022-10-07 19:15:54.000" +"1979 Revolution: Black Friday - 0100D1000B18C000","0100D1000B18C000","nvdec;status-playable","playable","2021-02-21 21:03:43.000" +"ABZU - 0100C1300BBC6000","0100C1300BBC6000","status-playable;UE4","playable","2022-07-19 15:02:52.000" +"Asterix & Obelix XXL 2 - 010050400BD38000","010050400BD38000","deadlock;status-ingame;nvdec","ingame","2022-07-21 17:54:14.000" +"Astro Bears Party","","status-playable","playable","2020-05-28 11:21:58.000" +"AQUA KITTY UDX - 0100AC10085CE000","0100AC10085CE000","online;status-playable","playable","2021-04-12 15:34:11.000" +"Assassin's Creed III Remastered - 01007F600B134000","01007F600B134000","status-boots;nvdec","boots","2024-06-25 20:12:11.000" +"Antiquia Lost","","status-playable","playable","2020-05-28 11:57:32.000" +"Animal Super Squad - 0100EFE009424000","0100EFE009424000","UE4;status-playable","playable","2021-04-23 20:50:50.000" +"Anima: Arcane Edition - 010033F00B3FA000","010033F00B3FA000","nvdec;status-playable","playable","2021-01-26 16:55:51.000" +"American Ninja Warrior: Challenge - 010089D00A3FA000","010089D00A3FA000","nvdec;status-playable","playable","2021-06-09 13:11:17.000" +"Air Conflicts: Pacific Carriers","","status-playable","playable","2021-01-04 10:52:50.000" +"Agatha Knife","","status-playable","playable","2020-05-28 12:37:58.000" +"ACORN Tactics - 0100DBC0081A4000","0100DBC0081A4000","status-playable","playable","2021-02-22 12:57:40.000" +"Anarcute - 010050900E1C6000","010050900E1C6000","status-playable","playable","2021-02-22 13:17:59.000" +"39 Days to Mars - 0100AF400C4CE000","0100AF400C4CE000","status-playable","playable","2021-02-21 22:12:46.000" +"Animal Rivals Switch - 010065B009B3A000","010065B009B3A000","status-playable","playable","2021-02-22 14:02:42.000" +"88 Heroes","","status-playable","playable","2020-05-28 14:13:02.000" +"Aegis Defenders - 01008E60065020000","01008E6006502000","status-playable","playable","2021-02-22 13:29:33.000" +"Jeopardy! - 01006E400AE2A000","01006E400AE2A000","audout;nvdec;online;status-playable","playable","2021-02-22 13:53:46.000" +"Akane - 01007F100DE52000","01007F100DE52000","status-playable;nvdec","playable","2022-07-21 00:12:18.000" +"Aaero - 010097A00CC0A000","010097A00CC0A000","status-playable;nvdec","playable","2022-07-19 14:49:55.000" +"99Vidas","","online;status-playable","playable","2020-10-29 13:00:40.000" +"AngerForce: Reloaded for Nintendo Switch - 010001E00A5F6000","010001E00A5F6000","status-playable","playable","2022-07-21 10:37:17.000" +"36 Fragments of Midnight","","status-playable","playable","2020-05-28 15:12:59.000" +"Akihabara - Feel the Rhythm Remixed - 010053100B0EA000","010053100B0EA000","status-playable","playable","2021-02-22 14:39:35.000" +"Bertram Fiddle Episode 2: A Bleaker Predicklement - 010021F00C1C0000","010021F00C1C0000","nvdec;status-playable","playable","2021-02-22 14:56:37.000" +"6180 the moon","","status-playable","playable","2020-05-28 15:39:24.000" +"Ace of Seafood - 0100FF1004D56000","0100FF1004D56000","status-playable","playable","2022-07-19 15:32:25.000" +"12 orbits","","status-playable","playable","2020-05-28 16:13:26.000" +"Access Denied - 0100A9900CB5C000","0100A9900CB5C000","status-playable","playable","2022-07-19 15:25:10.000" +"Air Hockey","","status-playable","playable","2020-05-28 16:44:37.000" +"2064: Read Only Memories","","deadlock;status-menus","menus","2020-05-28 16:53:58.000" +"12 is Better Than 6 - 01007F600D1B8000","01007F600D1B8000","status-playable","playable","2021-02-22 16:10:12.000" +"Sid Meier's Civilization VI - 010044500C182000","010044500C182000","status-playable;ldn-untested","playable","2024-04-08 16:03:40.000" +"Sniper Elite V2 Remastered - 0100BB000A3AA000","0100BB000A3AA000","slow;status-ingame;nvdec;online-broken;ldn-untested","ingame","2022-08-14 13:23:13.000" +"South Park: The Fractured But Whole - 01008F2005154000","01008F2005154000","slow;status-playable;online-broken","playable","2024-07-08 17:47:28.000" +"SkyScrappers","","status-playable","playable","2020-05-28 22:11:25.000" +"Shio - 0100C2F00A568000","0100C2F00A568000","status-playable","playable","2021-02-22 16:25:09.000" +"NBA 2K18 - 0100760002048000","0100760002048000","gpu;status-ingame;ldn-untested","ingame","2022-08-06 14:17:51.000" +"Sky Force Anniversary - 010083100B5CA000","010083100B5CA000","status-playable;online-broken","playable","2022-08-12 20:50:07.000" +"Slay the Spire - 010026300BA4A000","010026300BA4A000","status-playable","playable","2023-01-20 15:09:26.000" +"Sky Gamblers: Storm Raiders - 010093D00AC38000","010093D00AC38000","gpu;audio;status-ingame;32-bit","ingame","2022-08-12 21:13:36.000" +"Shovel Knight: Treasure Trove","","status-playable","playable","2021-02-14 18:24:39.000" +"Sine Mora EX - 01002820036A8000","01002820036A8000","gpu;status-ingame;online-broken","ingame","2022-08-12 19:36:18.000" +"NBA Playgrounds - 0100F5A008126000","0100F5A008126000","status-playable;nvdec;online-broken;UE4","playable","2022-08-06 16:13:44.000" +"Shut Eye","","status-playable","playable","2020-07-23 18:08:35.000" +"SINNER: Sacrifice for Redemption - 0100B16009C10000","0100B16009C10000","status-playable;nvdec;UE4;vulkan-backend-bug","playable","2022-08-12 20:37:33.000" +"SKYPEACE","","status-playable","playable","2020-05-29 14:14:30.000" +"Slain","","status-playable","playable","2020-05-29 14:26:16.000" +"Umihara Kawase BaZooka!","","","","2020-05-29 14:56:48.000" +"Sigi - A Fart for Melusina - 01007FC00B674000","01007FC00B674000","status-playable","playable","2021-02-22 16:46:58.000" +"Sky Ride - 0100DDB004F30000","0100DDB004F30000","status-playable","playable","2021-02-22 16:53:07.000" +"Soccer Slammers","","status-playable","playable","2020-05-30 07:48:14.000" +"Songbringer","","status-playable","playable","2020-06-22 10:42:02.000" +"Sky Rogue","","status-playable","playable","2020-05-30 08:26:28.000" +"Shovel Knight: Specter of Torment","","status-playable","playable","2020-05-30 08:34:17.000" +"Snow Moto Racing Freedom - 010045300516E000","010045300516E000","gpu;status-ingame;vulkan-backend-bug","ingame","2022-08-15 16:05:14.000" +"Snake Pass - 0100C0F0020E8000","0100C0F0020E8000","status-playable;nvdec;UE4","playable","2022-01-03 04:31:52.000" +"Shu","","nvdec;status-playable","playable","2020-05-30 09:08:59.000" +"SOLDAM Drop, Connect, Erase","","status-playable","playable","2020-05-30 09:18:54.000" +"SkyTime","","slow;status-ingame","ingame","2020-05-30 09:24:51.000" +"NBA 2K19 - 01001FF00B544000","01001FF00B544000","crash;ldn-untested;services;status-nothing","nothing","2021-04-16 13:07:21.000" +"Shred!2 - Freeride MTB","","status-playable","playable","2020-05-30 14:34:09.000" +"Skelly Selest","","status-playable","playable","2020-05-30 15:38:18.000" +"Snipperclips Plus - 01008E20047DC000","01008E20047DC000","status-playable","playable","2023-02-14 20:20:13.000" +"SolDivide for Nintendo Switch - 0100590009C38000","0100590009C38000","32-bit;status-playable","playable","2021-06-09 14:13:03.000" +"Slime-san","","status-playable","playable","2020-05-30 16:15:12.000" +"Skies of Fury","","status-playable","playable","2020-05-30 16:40:54.000" +"SlabWell - 01003AD00DEAE000","01003AD00DEAE000","status-playable","playable","2021-02-22 17:02:51.000" +"Smoke and Sacrifice - 0100207007EB2000","0100207007EB2000","status-playable","playable","2022-08-14 12:38:27.000" +"Sky Gamblers - Afterburner - 010003F00CC98000","010003F00CC98000","gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug","ingame","2022-08-12 21:04:55.000" +"Slice Dice & Rice - 0100F4500AA4E000","0100F4500AA4E000","online;status-playable","playable","2021-02-22 17:44:23.000" +"Slayaway Camp: Butcher's Cut - 0100501006494000","0100501006494000","status-playable;opengl-backend-bug","playable","2022-08-12 23:44:05.000" +"Snowboarding the Next Phase - 0100BE200C34A000","0100BE200C34A000","nvdec;status-playable","playable","2021-02-23 12:56:58.000" +"Skylanders Imaginators","","crash;services;status-boots","boots","2020-05-30 18:49:18.000" +"Slime-san Superslime Edition","","status-playable","playable","2020-05-30 19:08:08.000" +"Skee-Ball","","status-playable","playable","2020-11-16 04:44:07.000" +"Marvel Ultimate Alliance 3: The Black Order - 010060700AC50000","010060700AC50000","status-playable;nvdec;ldn-untested","playable","2024-02-14 19:51:51.000" +"The Elder Scrolls V: Skyrim - 01000A10041EA000","01000A10041EA000","gpu;status-ingame;crash","ingame","2024-07-14 03:21:31.000" +"Risk of Rain","","","","2020-05-31 22:32:45.000" +"Risk of Rain 2 - 010076D00E4BA000","010076D00E4BA000","status-playable;online-broken","playable","2024-03-04 17:01:05.000" +"The Mummy Demastered - 0100496004194000","0100496004194000","status-playable","playable","2021-02-23 13:11:27.000" +"Teslagrad - 01005C8005F34000","01005C8005F34000","status-playable","playable","2021-02-23 14:41:02.000" +"Pushy and Pully in Blockland","","status-playable","playable","2020-07-04 11:44:41.000" +"The Raven Remastered - 010058A00BF1C000","010058A00BF1C000","status-playable;nvdec","playable","2022-08-22 20:02:47.000" +"Reed Remastered","","","","2020-05-31 23:15:15.000" +"The Infectious Madness of Doctor Dekker - 01008940086E0000","01008940086E0000","status-playable;nvdec","playable","2022-08-22 16:45:01.000" +"The Fall","","gpu;status-ingame","ingame","2020-05-31 23:31:16.000" +"The Fall Part 2: Unbound","","status-playable","playable","2021-11-06 02:18:08.000" +"The Red Strings Club","","status-playable","playable","2020-06-01 10:51:18.000" +"Omega Labyrinth Life - 01001D600E51A000","01001D600E51A000","status-playable","playable","2021-02-23 21:03:03.000" +"The Mystery of the Hudson Case","","status-playable","playable","2020-06-01 11:03:36.000" +"Tennis World Tour - 0100092006814000","0100092006814000","status-playable;online-broken","playable","2022-08-22 14:27:10.000" +"The Lost Child - 01008A000A404000","01008A000A404000","nvdec;status-playable","playable","2021-02-23 15:44:20.000" +"Little Misfortune - 0100E7000E826000","0100E7000E826000","nvdec;status-playable","playable","2021-02-23 20:39:44.000" +"The End is Nigh","","status-playable","playable","2020-06-01 11:26:45.000" +"The Caligula Effect: Overdose","","UE4;gpu;status-ingame","ingame","2021-01-04 11:07:50.000" +"The Flame in the Flood: Complete Edition - 0100C38004DCC000","0100C38004DCC000","gpu;status-ingame;nvdec;UE4","ingame","2022-08-22 16:23:49.000" +"The Journey Down: Chapter One - 010052C00B184000","010052C00B184000","nvdec;status-playable","playable","2021-02-24 13:32:41.000" +"The Journey Down: Chapter Two","","nvdec;status-playable","playable","2021-02-24 13:32:13.000" +"The Journey Down: Chapter Three - 01006BC00B188000","01006BC00B188000","nvdec;status-playable","playable","2021-02-24 13:45:27.000" +"The Mooseman - 010033300AC1A000","010033300AC1A000","status-playable","playable","2021-02-24 12:58:57.000" +"The Long Reach - 010052B003A38000","010052B003A38000","nvdec;status-playable","playable","2021-02-24 14:09:48.000" +"Asdivine Kamura","","","","2020-06-01 15:04:50.000" +"THE LAST REMNANT Remastered - 0100AC800D022000","0100AC800D022000","status-playable;nvdec;UE4","playable","2023-02-09 17:24:44.000" +"The Princess Guide - 0100E6A00B960000","0100E6A00B960000","status-playable","playable","2021-02-24 14:23:34.000" +"The LEGO NINJAGO Movie Video Game - 01007FC00206E000","01007FC00206E000","status-nothing;crash","nothing","2022-08-22 19:12:53.000" +"The Next Penelope - 01000CF0084BC000","01000CF0084BC000","status-playable","playable","2021-01-29 16:26:11.000" +"Tennis","","status-playable","playable","2020-06-01 20:50:36.000" +"The King's Bird - 010020500BD98000","010020500BD98000","status-playable","playable","2022-08-22 19:07:46.000" +"The First Tree - 010098800A1E4000","010098800A1E4000","status-playable","playable","2021-02-24 15:51:05.000" +"The Jackbox Party Pack - 0100AE5003EE6000","0100AE5003EE6000","status-playable;online-working","playable","2023-05-28 09:28:40.000" +"The Jackbox Party Pack 2 - 010015D003EE4000","010015D003EE4000","status-playable;online-working","playable","2022-08-22 18:23:40.000" +"The Jackbox Party Pack 3 - 0100CC80013D6000","0100CC80013D6000","slow;status-playable;online-working","playable","2022-08-22 18:41:06.000" +"The Jackbox Party Pack 4 - 0100E1F003EE8000","0100E1F003EE8000","status-playable;online-working","playable","2022-08-22 18:56:34.000" +"The LEGO Movie 2 - Videogame - 0100A4400BE74000","0100A4400BE74000","status-playable","playable","2023-03-01 11:23:37.000" +"The Gardens Between - 0100B13007A6A000","0100B13007A6A000","status-playable","playable","2021-01-29 16:16:53.000" +"The Bug Butcher","","status-playable","playable","2020-06-03 12:02:04.000" +"Funghi Puzzle Funghi Explosion","","status-playable","playable","2020-11-23 14:17:41.000" +"The Escapists: Complete Edition - 01001B700BA7C000","01001B700BA7C000","status-playable","playable","2021-02-24 17:50:31.000" +"The Escapists 2","","nvdec;status-playable","playable","2020-09-24 12:31:31.000" +"TENGAI for Nintendo Switch","","32-bit;status-playable","playable","2020-11-25 19:52:26.000" +"The Book of Unwritten Tales 2 - 010062500BFC0000","010062500BFC0000","status-playable","playable","2021-06-09 14:42:53.000" +"The Bridge","","status-playable","playable","2020-06-03 13:53:26.000" +"Ai: the Somnium Files - 010089B00D09C000","010089B00D09C000","status-playable;nvdec","playable","2022-09-04 14:45:06.000" +"The Coma: Recut","","status-playable","playable","2020-06-03 15:11:23.000" +"Ara Fell: Enhanced Edition","","","","2020-06-03 15:11:30.000" +"The Final Station - 0100CDC00789E000","0100CDC00789E000","status-playable;nvdec","playable","2022-08-22 15:54:39.000" +"The Count Lucanor - 01000850037C0000","01000850037C0000","status-playable;nvdec","playable","2022-08-22 15:26:37.000" +"Testra's Escape","","status-playable","playable","2020-06-03 18:21:14.000" +"The Low Road - 0100BAB00A116000","0100BAB00A116000","status-playable","playable","2021-02-26 13:23:22.000" +"The Adventure Pals - 01008ED0087A4000","01008ED0087A4000","status-playable","playable","2022-08-22 14:48:52.000" +"The Longest Five Minutes - 0100CE1004E72000","0100CE1004E72000","gpu;status-boots","boots","2023-02-19 18:33:11.000" +"The Inner World","","nvdec;status-playable","playable","2020-06-03 21:22:29.000" +"The Inner World - The Last Wind Monk","","nvdec;status-playable","playable","2020-11-16 13:09:40.000" +"The MISSING: J.J. Macfield and the Island of Memories - 0100F1B00B456000","0100F1B00B456000","status-playable","playable","2022-08-22 19:36:18.000" +"Jim Is Moving Out!","","deadlock;status-ingame","ingame","2020-06-03 22:05:19.000" +"The Darkside Detective","","status-playable","playable","2020-06-03 22:16:18.000" +"Tesla vs Lovecraft - 0100FBC007EAE000","0100FBC007EAE000","status-playable","playable","2023-11-21 06:19:36.000" +"The Lion's Song - 0100735004898000","0100735004898000","status-playable","playable","2021-06-09 15:07:16.000" +"Tennis in the Face - 01002970080AA000","01002970080AA000","status-playable","playable","2022-08-22 14:10:54.000" +"The Adventures of Elena Temple","","status-playable","playable","2020-06-03 23:15:35.000" +"The friends of Ringo Ishikawa - 010030700CBBC000","010030700CBBC000","status-playable","playable","2022-08-22 16:33:17.000" +"Redeemer: Enhanced Edition - 01000D100DCF8000","01000D100DCF8000","status-playable;nvdec;UE4;vulkan-backend-bug","playable","2022-09-11 10:20:24.000" +"Alien Escape","","status-playable","playable","2020-06-03 23:43:18.000" +"LEGO DC Super-Villains - 010070D009FEC000","010070D009FEC000","status-playable","playable","2021-05-27 18:10:37.000" +"LEGO Worlds","","crash;slow;status-ingame","ingame","2020-07-17 13:35:39.000" +"LEGO The Incredibles - 0100A01006E00000","0100A01006E00000","status-nothing;crash","nothing","2022-08-03 18:36:59.000" +"LEGO Harry Potter Collection - 010052A00B5D2000","010052A00B5D2000","status-ingame;crash","ingame","2024-01-31 10:28:07.000" +"Reed 2","","","","2020-06-04 16:43:29.000" +"The Men of Yoshiwara: Ohgiya","","","","2020-06-04 17:00:22.000" +"The Rainsdowne Players","","","","2020-06-04 17:16:02.000" +"Tonight we Riot - 0100D400100F8000","0100D400100F8000","status-playable","playable","2021-02-26 15:55:09.000" +"Skelattack - 01001A900F862000","01001A900F862000","status-playable","playable","2021-06-09 15:26:26.000" +"HyperParasite - 010061400ED90000","010061400ED90000","status-playable;nvdec;UE4","playable","2022-09-27 22:05:44.000" +"Climbros","","","","2020-06-04 21:02:21.000" +"Sweet Witches - 0100D6D00EC2C000","0100D6D00EC2C000","status-playable;nvdec","playable","2022-10-20 14:56:37.000" +"Whispering Willows - 010015A00AF1E000","010015A00AF1E000","status-playable;nvdec","playable","2022-09-30 22:33:05.000" +"The Outer Worlds - 0100626011656000","0100626011656000","gpu;status-ingame;nvdec;UE4;vulkan-backend-bug;opengl-backend-bug","ingame","2022-10-03 17:55:32.000" +"RADIO HAMMER STATION - 01008FA00ACEC000","01008FA00ACEC000","audout;status-playable","playable","2021-02-26 20:20:06.000" +"Light Tracer - 010087700D07C000","010087700D07C000","nvdec;status-playable","playable","2021-05-05 19:15:43.000" +"Uta no Prince-sama Amazing Aria & Sweet Serenade LOVE - 0100D4300EBF8000","0100D4300EBF8000","status-nothing;crash;Needs More Attention;Needs Update","nothing","2022-02-09 08:57:44.000" +"The Amazing Shinsengumi: Heroes in Love","","","","2020-06-06 09:27:49.000" +"Snow Battle Princess Sayuki","","","","2020-06-06 11:59:03.000" +"Good Job!","","status-playable","playable","2021-03-02 13:15:55.000" +"Ghost Blade HD - 010063200C588000","010063200C588000","status-playable;online-broken","playable","2022-09-13 21:51:21.000" +"HardCube - 01000C90117FA000","01000C90117FA000","status-playable","playable","2021-05-05 18:33:03.000" +"STAR OCEAN First Departure R - 0100EBF00E702000","0100EBF00E702000","nvdec;status-playable","playable","2021-07-05 19:29:16.000" +"Hair Mower 3D","","","","2020-06-08 02:29:17.000" +"Clubhouse Games: 51 Worldwide Classics - 010047700D540000","010047700D540000","status-playable;ldn-works","playable","2024-05-21 16:12:57.000" +"Torchlight 2","","status-playable","playable","2020-07-27 14:18:37.000" +"Creature in the Well","","UE4;gpu;status-ingame","ingame","2020-11-16 12:52:40.000" +"Panty Party","","","","2020-06-08 14:06:02.000" +"DEADLY PREMONITION Origins - 0100EBE00F22E000","0100EBE00F22E000","32-bit;status-playable;nvdec","playable","2024-03-25 12:47:46.000" +"Pillars of Eternity - 0100D6200E130000","0100D6200E130000","status-playable","playable","2021-02-27 00:24:21.000" +"Jump King","","status-playable","playable","2020-06-09 10:12:39.000" +"Bug Fables","","status-playable","playable","2020-06-09 11:27:00.000" +"DOOM 3 - 010029D00E740000","010029D00E740000","status-menus;crash","menus","2024-08-03 05:25:47.000" +"Raiden V: Director's Cut - 01002B000D97E000","01002B000D97E000","deadlock;status-boots;nvdec","boots","2024-07-12 07:31:46.000" +"Fantasy Strike - 0100944003820000","0100944003820000","online;status-playable","playable","2021-02-27 01:59:18.000" +"Hell Warders - 0100A4600E27A000","0100A4600E27A000","online;status-playable","playable","2021-02-27 02:31:03.000" +"THE NINJA SAVIORS Return of the Warriors - 01001FB00E386000","01001FB00E386000","online;status-playable","playable","2021-03-25 23:48:07.000" +"DOOM (1993) - 010018900DD00000","010018900DD00000","status-menus;nvdec;online-broken","menus","2022-09-06 13:32:19.000" +"DOOM 2 - 0100D4F00DD02000","0100D4F00DD02000","nvdec;online;status-playable","playable","2021-06-03 20:10:01.000" +"Songbird Symphony - 0100E5400BF94000","0100E5400BF94000","status-playable","playable","2021-02-27 02:44:04.000" +"Titans Pinball","","slow;status-playable","playable","2020-06-09 16:53:52.000" +"TERRORHYTHM (TRRT) - 010043700EB68000","010043700EB68000","status-playable","playable","2021-02-27 13:18:14.000" +"Pawarumi - 0100A56006CEE000","0100A56006CEE000","status-playable;online-broken","playable","2022-09-10 15:19:33.000" +"Rise: Race the Future - 01006BA00E652000","01006BA00E652000","status-playable","playable","2021-02-27 13:29:06.000" +"Run the Fan - 010074F00DE4A000","010074F00DE4A000","status-playable","playable","2021-02-27 13:36:28.000" +"Tetsumo Party","","status-playable","playable","2020-06-09 22:39:55.000" +"Snipperclips - 0100704000B3A000","0100704000B3A000","status-playable","playable","2022-12-05 12:44:55.000" +"The Tower of Beatrice - 010047300EBA6000","010047300EBA6000","status-playable","playable","2022-09-12 16:51:42.000" +"FIA European Truck Racing Championship - 01007510040E8000","01007510040E8000","status-playable;nvdec","playable","2022-09-06 17:51:59.000" +"Bear With Me - The Lost Robots - 010020700DE04000","010020700DE04000","nvdec;status-playable","playable","2021-02-27 14:20:10.000" +"Mutant Year Zero: Road to Eden - 0100E6B00DEA4000","0100E6B00DEA4000","status-playable;nvdec;UE4","playable","2022-09-10 13:31:10.000" +"Solo: Islands of the Heart - 010008600D1AC000","010008600D1AC000","gpu;status-ingame;nvdec","ingame","2022-09-11 17:54:43.000" +"1971 PROJECT HELIOS - 0100829010F4A000","0100829010F4A000","status-playable","playable","2021-04-14 13:50:19.000" +"Damsel - 0100BD2009A1C000","0100BD2009A1C000","status-playable","playable","2022-09-06 11:54:39.000" +"The Forbidden Arts - 01007700D4AC000","","status-playable","playable","2021-01-26 16:26:24.000" +"Turok 2: Seeds of Evil - 0100CDC00D8D6000","0100CDC00D8D6000","gpu;status-ingame;vulkan","ingame","2022-09-12 17:50:05.000" +"Tactics V: ""Obsidian Brigade"" - 01007C7006AEE000","01007C7006AEE000","status-playable","playable","2021-02-28 15:09:42.000" +"SWORD ART ONLINE: FATAL BULLET COMPLETE EDITION - 01005DF00DC26000","01005DF00DC26000","UE4;gpu;online;status-ingame","ingame","2021-06-09 16:58:50.000" +"Subdivision Infinity DX - 010001400E474000","010001400E474000","UE4;crash;status-boots","boots","2021-03-03 14:26:46.000" +"#RaceDieRun","","status-playable","playable","2020-07-04 20:23:16.000" +"Wreckin' Ball Adventure - 0100C5D00EDB8000","0100C5D00EDB8000","status-playable;UE4","playable","2022-09-12 18:56:28.000" +"PictoQuest - 010043B00E1CE000","010043B00E1CE000","status-playable","playable","2021-02-27 15:03:16.000" +"VASARA Collection - 0100FE200AF48000","0100FE200AF48000","nvdec;status-playable","playable","2021-02-28 15:26:10.000" +"The Vanishing of Ethan Carter - 0100BCF00E970000","0100BCF00E970000","UE4;status-playable","playable","2021-06-09 17:14:47.000" +"Enchanted in the Moonlight - Kiryu, Chikage & Yukinojo - 010068300E08E000","010068300E08E000","gpu;status-ingame;nvdec","ingame","2022-11-20 16:18:45.000" +"Demon's Tier+ - 0100161011458000","0100161011458000","status-playable","playable","2021-06-09 17:25:36.000" +"INSTANT SPORTS - 010099700D750000","010099700D750000","status-playable","playable","2022-09-09 12:59:40.000" +"Friday the 13th: The Game - 010092A00C4B6000","010092A00C4B6000","status-playable;nvdec;online-broken;UE4","playable","2022-09-06 17:33:27.000" +"Arcade Archives VS. GRADIUS - 01004EC00E634000","01004EC00E634000","online;status-playable","playable","2021-04-12 14:53:58.000" +"Desktop Rugby","","","","2020-06-10 23:21:11.000" +"Divinity Original Sin 2 - 010027400CDC6000","010027400CDC6000","services;status-menus;crash;online-broken;regression","menus","2023-08-13 17:20:03.000" +"Grandia HD Collection - 0100E0600BBC8000","0100E0600BBC8000","status-boots;crash","boots","2024-08-19 04:29:48.000" +"Bubsy: Paws on Fire! - 0100DBE00C554000","0100DBE00C554000","slow;status-ingame","ingame","2023-08-24 02:44:51.000" +"River City Girls","","nvdec;status-playable","playable","2020-06-10 23:44:09.000" +"Super Dodgeball Beats","","","","2020-06-10 23:45:22.000" +"RAD - 010024400C516000","010024400C516000","gpu;status-menus;crash;UE4","menus","2021-11-29 02:01:56.000" +"Super Jumpy Ball","","status-playable","playable","2020-07-04 18:40:36.000" +"Headliner: NoviNews - 0100EFE00E1DC000","0100EFE00E1DC000","online;status-playable","playable","2021-03-01 11:36:00.000" +"Atelier Ryza: Ever Darkness & the Secret Hideout - 0100D1900EC80000","0100D1900EC80000","status-playable","playable","2023-10-15 16:36:50.000" +"Ancestors Legacy - 01009EE0111CC000","01009EE0111CC000","status-playable;nvdec;UE4","playable","2022-10-01 12:25:36.000" +"Resolutiion - 0100E7F00FFB8000","0100E7F00FFB8000","crash;status-boots","boots","2021-04-25 21:57:56.000" +"Puzzle Quest: The Legend Returns","","","","2020-06-11 10:05:15.000" +"FAR: Lone Sails - 010022700E7D6000","010022700E7D6000","status-playable","playable","2022-09-06 16:33:05.000" +"Awesome Pea 2 - 0100B7D01147E000","0100B7D01147E000","status-playable","playable","2022-10-01 12:34:19.000" +"Arcade Archives PLUS ALPHA","","audio;status-ingame","ingame","2020-07-04 20:47:55.000" +"Caveblazers - 01001A100C0E8000","01001A100C0E8000","slow;status-ingame","ingame","2021-06-09 17:57:28.000" +"Piofiore no banshou - ricordo","","","","2020-06-11 19:14:52.000" +"Raining Blobs","","","","2020-06-11 19:32:04.000" +"Hyper Jam","","UE4;crash;status-boots","boots","2020-12-15 22:52:11.000" +"The Midnight Sanctuary - 0100DEC00B2BC000","0100DEC00B2BC000","status-playable;nvdec;UE4;vulkan-backend-bug","playable","2022-10-03 17:17:32.000" +"Indiecalypse","","nvdec;status-playable","playable","2020-06-11 20:19:09.000" +"Liberated - 0100C8000F146000","0100C8000F146000","gpu;status-ingame;nvdec","ingame","2024-07-04 04:58:24.000" +"Nelly Cootalot","","status-playable","playable","2020-06-11 20:55:42.000" +"Corpse Party: Blood Drive - 010016400B1FE000","010016400B1FE000","nvdec;status-playable","playable","2021-03-01 12:44:23.000" +"Professor Lupo and his Horrible Pets","","status-playable","playable","2020-06-12 00:08:45.000" +"Atelier Meruru ~ The Apprentice of Arland ~ DX","","nvdec;status-playable","playable","2020-06-12 00:50:48.000" +"Atelier Totori ~ The Adventurer of Arland ~ DX","","nvdec;status-playable","playable","2020-06-12 01:04:56.000" +"Red Wings - Aces of the Sky","","status-playable","playable","2020-06-12 01:19:53.000" +"L.F.O. - Lost Future Omega - ","","UE4;deadlock;status-boots","boots","2020-10-16 12:16:44.000" +"One Night Stand","","","","2020-06-12 16:34:34.000" +"They Came From the Sky","","status-playable","playable","2020-06-12 16:38:19.000" +"Nurse Love Addiction","","","","2020-06-12 16:48:29.000" +"THE TAKEOVER","","nvdec","","2020-06-12 16:52:28.000" +"Totally Reliable Delivery Service - 0100512010728000","0100512010728000","status-playable;online-broken","playable","2024-09-27 19:32:22.000" +"Nurse Love Syndrome - 010003701002C000","010003701002C000","status-playable","playable","2022-10-13 10:05:22.000" +"Undead and Beyond - 010076F011F54000","010076F011F54000","status-playable;nvdec","playable","2022-10-04 09:11:18.000" +"Borderlands: Game of the Year Edition - 010064800F66A000","010064800F66A000","slow;status-ingame;online-broken;ldn-untested","ingame","2023-07-23 21:10:36.000" +"TurtlePop: Journey to Freedom","","status-playable","playable","2020-06-12 17:45:39.000" +"DAEMON X MACHINA - 0100B6400CA56000","0100B6400CA56000","UE4;audout;ldn-untested;nvdec;status-playable","playable","2021-06-09 19:22:29.000" +"Blasphemous - 0100698009C6E000","0100698009C6E000","nvdec;status-playable","playable","2021-03-01 12:15:31.000" +"The Sinking City - 010028D00BA1A000","010028D00BA1A000","status-playable;nvdec;UE4","playable","2022-09-12 16:41:55.000" +"Battle Supremacy - Evolution - 010099B00E898000","010099B00E898000","gpu;status-boots;nvdec","boots","2022-02-17 09:02:50.000" +"STEINS;GATE: My Darling's Embrace - 0100CB400E9BC000","0100CB400E9BC000","status-playable;nvdec","playable","2022-11-20 16:48:34.000" +"Dragon Quest XI S: Echoes of an Elusive Age - Definitive Edition - 01006C300E9F0000","01006C300E9F0000","status-playable;UE4","playable","2021-11-27 12:27:11.000" +"Star Wars™ Pinball - 01006DA00DEAC000","01006DA00DEAC000","status-playable;online-broken","playable","2022-09-11 18:53:31.000" +"Space Cows","","UE4;crash;status-menus","menus","2020-06-15 11:33:20.000" +"Ritual - 0100BD300F0EC000","0100BD300F0EC000","status-playable","playable","2021-03-02 13:51:19.000" +"Snooker 19 - 01008DA00CBBA000","01008DA00CBBA000","status-playable;nvdec;online-broken;UE4","playable","2022-09-11 17:43:22.000" +"Sydney Hunter and the Curse of the Mayan","","status-playable","playable","2020-06-15 12:15:57.000" +"CONTRA: ROGUE CORPS","","crash;nvdec;regression;status-menus","menus","2021-01-07 13:23:35.000" +"Tyd wag vir Niemand - 010073A00C4B2000","010073A00C4B2000","status-playable","playable","2021-03-02 13:39:53.000" +"Detective Dolittle - 010030600E65A000","010030600E65A000","status-playable","playable","2021-03-02 14:03:59.000" +"Rebel Cops - 0100D9B00E22C000","0100D9B00E22C000","status-playable","playable","2022-09-11 10:02:53.000" +"Sayonara Wild Hearts - 010010A00A95E000","010010A00A95E000","status-playable","playable","2023-10-23 03:20:01.000" +"Neon Drive - 010032000EAC6000","010032000EAC6000","status-playable","playable","2022-09-10 13:45:48.000" +"GRID Autosport - 0100DC800A602000","0100DC800A602000","status-playable;nvdec;online-broken;ldn-untested","playable","2023-03-02 20:14:45.000" +"DISTRAINT: Deluxe Edition","","status-playable","playable","2020-06-15 23:42:24.000" +"Jet Kave Adventure - 0100E4900D266000","0100E4900D266000","status-playable;nvdec","playable","2022-09-09 14:50:39.000" +"LEGO Jurassic World - 01001C100E772000","01001C100E772000","status-playable","playable","2021-05-27 17:00:20.000" +"Neo Cab Demo","","crash;status-boots","boots","2020-06-16 00:14:00.000" +"Reel Fishing: Road Trip Adventure - 010007C00E558000","010007C00E558000","status-playable","playable","2021-03-02 16:06:43.000" +"Zombie Army Trilogy","","ldn-untested;online;status-playable","playable","2020-12-16 12:02:28.000" +"Project Warlock","","status-playable","playable","2020-06-16 10:50:41.000" +"Super Toy Cars 2 - 0100C6800D770000","0100C6800D770000","gpu;regression;status-ingame","ingame","2021-03-02 20:15:15.000" +"Call of Cthulhu - 010046000EE40000","010046000EE40000","status-playable;nvdec;UE4","playable","2022-12-18 03:08:30.000" +"Overpass - 01008EA00E816000","01008EA00E816000","status-playable;online-broken;UE4;ldn-untested","playable","2022-10-17 15:29:47.000" +"The Little Acre - 0100A5000D590000","0100A5000D590000","nvdec;status-playable","playable","2021-03-02 20:22:27.000" +"Lost Horizon 2","","nvdec;status-playable","playable","2020-06-16 12:02:12.000" +"Rogue Robots","","status-playable","playable","2020-06-16 12:16:11.000" +"Skelittle: A Giant Party!! - 01008E700F952000","01008E700F952000","status-playable","playable","2021-06-09 19:08:34.000" +"Magazine Mogul - 01004A200E722000","01004A200E722000","status-playable;loader-allocator","playable","2022-10-03 12:05:34.000" +"Dead by Daylight - 01004C400CF96000","01004C400CF96000","status-boots;nvdec;online-broken;UE4","boots","2022-09-13 14:32:13.000" +"Ori and the Blind Forest: Definitive Edition - 010061D00DB74000","010061D00DB74000","status-playable;nvdec;online-broken","playable","2022-09-14 19:58:13.000" +"Northgard - 0100A9E00D97A000","0100A9E00D97A000","status-menus;crash","menus","2022-02-06 02:05:35.000" +"Freedom Finger - 010082B00EE50000","010082B00EE50000","nvdec;status-playable","playable","2021-06-09 19:31:30.000" +"Atelier Shallie: Alchemists of the Dusk Sea DX","","nvdec;status-playable","playable","2020-11-25 20:54:12.000" +"Dragon Quest - 0100EFC00EFB2000","0100EFC00EFB2000","gpu;status-boots","boots","2021-11-09 03:31:32.000" +"Dragon Quest II: Luminaries of the Legendary Line - 010062200EFB4000","010062200EFB4000","status-playable","playable","2022-09-13 16:44:11.000" +"Atelier Ayesha: The Alchemist of Dusk DX - 0100D9D00EE8C000","0100D9D00EE8C000","status-menus;crash;nvdec;Needs Update","menus","2021-11-24 07:29:54.000" +"Dragon Quest III: The Seeds of Salvation - 010015600EFB6000","010015600EFB6000","gpu;status-boots","boots","2021-11-09 03:38:34.000" +"Habroxia","","status-playable","playable","2020-06-16 23:04:42.000" +"Petoons Party - 010044400EEAE000","010044400EEAE000","nvdec;status-playable","playable","2021-03-02 21:07:58.000" +"Fight'N Rage","","status-playable","playable","2020-06-16 23:35:19.000" +"Cyber Protocol","","nvdec;status-playable","playable","2020-09-28 14:47:40.000" +"Barry Bradford's Putt Panic Party","","nvdec;status-playable","playable","2020-06-17 01:08:34.000" +"Potata: Fairy Flower","","nvdec;status-playable","playable","2020-06-17 09:51:34.000" +"Kawaii Deathu Desu","","","","2020-06-17 09:59:15.000" +"The Spectrum Retreat - 010041C00A68C000","010041C00A68C000","status-playable","playable","2022-10-03 18:52:40.000" +"Moero Crystal H - 01004EB0119AC000","01004EB0119AC000","32-bit;status-playable;nvdec;vulkan-backend-bug","playable","2023-07-05 12:04:22.000" +"Modern Combat Blackout - 0100D8700B712000","0100D8700B712000","crash;status-nothing","nothing","2021-03-29 19:47:15.000" +"Forager - 01001D200BCC4000","01001D200BCC4000","status-menus;crash","menus","2021-11-24 07:10:17.000" +"Ultimate Ski Jumping 2020 - 01006B601117E000","01006B601117E000","online;status-playable","playable","2021-03-02 20:54:11.000" +"Strangers of the Power 3","","","","2020-06-17 14:45:52.000" +"Little Triangle","","status-playable","playable","2020-06-17 14:46:26.000" +"Nice Slice","","nvdec;status-playable","playable","2020-06-17 15:13:27.000" +"Project Starship","","","","2020-06-17 15:33:18.000" +"Puyo Puyo Champions","","online;status-playable","playable","2020-06-19 11:35:08.000" +"Shantae and the Seven Sirens","","nvdec;status-playable","playable","2020-06-19 12:23:40.000" +"SYNAPTIC DRIVE","","online;status-playable","playable","2020-09-07 13:44:05.000" +"XCOM 2 Collection - 0100D0B00FB74000","0100D0B00FB74000","gpu;status-ingame;crash","ingame","2022-10-04 09:38:30.000" +"BioShock Remastered - 0100AD10102B2000","0100AD10102B2000","services-horizon;status-boots;crash;Needs Update","boots","2024-06-06 01:08:52.000" +"Burnout Paradise Remastered - 0100DBF01000A000","0100DBF01000A000","nvdec;online;status-playable","playable","2021-06-13 02:54:46.000" +"Adam's Venture: Origins - 0100C0C0040E4000","0100C0C0040E4000","status-playable","playable","2021-03-04 18:43:57.000" +"Invisible, Inc.","","crash;status-nothing","nothing","2021-01-29 16:28:13.000" +"Vektor Wars - 010098400E39E000","010098400E39E000","status-playable;online-broken;vulkan-backend-bug","playable","2022-10-04 09:23:46.000" +"Flux8","","nvdec;status-playable","playable","2020-06-19 20:55:11.000" +"Beyond Enemy Lines: Covert Operations - 010056500CAD8000","010056500CAD8000","status-playable;UE4","playable","2022-10-01 13:11:50.000" +"Genetic Disaster","","status-playable","playable","2020-06-19 21:41:12.000" +"Castle Pals - 0100DA2011F18000","0100DA2011F18000","status-playable","playable","2021-03-04 21:00:33.000" +"BioShock 2 Remastered - 01002620102C6000","01002620102C6000","services;status-nothing","nothing","2022-10-29 14:39:22.000" +"BioShock Infinite: The Complete Edition - 0100D560102C8000","0100D560102C8000","services-horizon;status-nothing;crash","nothing","2024-08-11 21:35:01.000" +"Borderlands 2: Game of the Year Edition - 010096F00FF22000","010096F00FF22000","status-playable","playable","2022-04-22 18:35:07.000" +"Borderlands: The Pre-Sequel Ultimate Edition - 010007400FF24000","010007400FF24000","nvdec;status-playable","playable","2021-06-09 20:17:10.000" +"The Coma 2: Vicious Sisters","","gpu;status-ingame","ingame","2020-06-20 12:51:51.000" +"Roll'd","","status-playable","playable","2020-07-04 20:24:01.000" +"Big Drunk Satanic Massacre - 01002FA00DE72000","01002FA00DE72000","status-playable","playable","2021-03-04 21:28:22.000" +"LUXAR - 0100EC2011A80000","0100EC2011A80000","status-playable","playable","2021-03-04 21:11:57.000" +"OneWayTicket","","UE4;status-playable","playable","2020-06-20 17:20:49.000" +"Radiation City - 0100DA400E07E000","0100DA400E07E000","status-ingame;crash","ingame","2022-09-30 11:15:04.000" +"Arcade Spirits","","status-playable","playable","2020-06-21 11:45:03.000" +"Bring Them Home - 01000BF00BE40000","01000BF00BE40000","UE4;status-playable","playable","2021-04-12 14:14:43.000" +"Fly Punch Boom!","","online;status-playable","playable","2020-06-21 12:06:11.000" +"Xenoblade Chronicles Definitive Edition - 0100FF500E34A000","0100FF500E34A000","status-playable;nvdec","playable","2024-05-04 20:12:41.000" +"A Winter's Daydream","","","","2020-06-22 14:52:38.000" +"DEAD OR SCHOOL - 0100A5000F7AA000","0100A5000F7AA000","status-playable;nvdec","playable","2022-09-06 12:04:09.000" +"Biolab Wars","","","","2020-06-22 15:50:34.000" +"Worldend Syndrome","","status-playable","playable","2021-01-03 14:16:32.000" +"The Tiny Bang Story - 01009B300D76A000","01009B300D76A000","status-playable","playable","2021-03-05 15:39:05.000" +"Neo Cab - 0100EBB00D2F4000","0100EBB00D2F4000","status-playable","playable","2021-04-24 00:27:58.000" +"Sniper Elite 3 Ultimate Edition - 010075A00BA14000","010075A00BA14000","status-playable;ldn-untested","playable","2024-04-18 07:47:49.000" +"Boku to Nurse no Kenshuu Nisshi - 010093700ECEC000","010093700ECEC000","status-playable","playable","2022-11-21 20:38:34.000" +"80 Days","","status-playable","playable","2020-06-22 21:43:01.000" +"Mirror","","","","2020-06-22 21:46:55.000" +"SELFY COLLECTION Dream Stylist","","","","2020-06-22 22:15:25.000" +"G-MODE Archives 4 Beach Volleyball Girl Drop","","","","2020-06-22 22:36:36.000" +"Star Horizon","","","","2020-06-22 23:03:45.000" +"To the Moon","","status-playable","playable","2021-03-20 15:33:38.000" +"Darksiders II Deathinitive Edition - 010071800BA98000","010071800BA98000","gpu;status-ingame;nvdec;online-broken","ingame","2024-06-26 00:37:25.000" +"SpongeBob SquarePants: Battle for Bikini Bottom - Rehydrated - 010062800D39C000","010062800D39C000","status-playable;online-broken;UE4;ldn-broken;vulkan-backend-bug","playable","2023-08-01 19:29:34.000" +"Sleep Tight - 01004AC0081DC000","01004AC0081DC000","gpu;status-ingame;UE4","ingame","2022-08-13 00:17:32.000" +"SUPER ROBOT WARS V","","online;status-playable","playable","2020-06-23 12:56:37.000" +"Ghostbusters: The Video Game Remastered - 010008A00F632000","010008A00F632000","status-playable;nvdec","playable","2021-09-17 07:26:57.000" +"FIFA 20 Legacy Edition - 01005DE00D05C000","01005DE00D05C000","gpu;status-ingame;nvdec;online-broken;ldn-untested","ingame","2022-09-13 17:57:20.000" +"VARIABLE BARRICADE NS - 010045C0109F2000","010045C0109F2000","status-playable;nvdec","playable","2022-02-26 15:50:13.000" +"Super Cane Magic ZERO - 0100D9B00DB5E000","0100D9B00DB5E000","status-playable","playable","2022-09-12 15:33:46.000" +"Whipsey and the Lost Atlas","","status-playable","playable","2020-06-23 20:24:14.000" +"FUZE4 - 0100EAD007E98000","0100EAD007E98000","status-playable;vulkan-backend-bug","playable","2022-09-06 19:25:01.000" +"Legend of the Skyfish","","status-playable","playable","2020-06-24 13:04:22.000" +"Grand Brix Shooter","","slow;status-playable","playable","2020-06-24 13:23:54.000" +"Pokémon Café Mix - 010072400E04A000","010072400E04A000","status-playable","playable","2021-08-17 20:00:04.000" +"BULLETSTORM: DUKE OF SWITCH EDITION - 01003DD00D658000","01003DD00D658000","status-playable;nvdec","playable","2022-03-03 08:30:24.000" +"Brunch Club","","status-playable","playable","2020-06-24 13:54:07.000" +"Invisigun Reloaded - 01005F400E644000","01005F400E644000","gpu;online;status-ingame","ingame","2021-06-10 12:13:24.000" +"AER - Memories of Old - 0100A0400DDE0000","0100A0400DDE0000","nvdec;status-playable","playable","2021-03-05 18:43:43.000" +"Farm Mystery - 01000E400ED98000","01000E400ED98000","status-playable;nvdec","playable","2022-09-06 16:46:47.000" +"Ninjala - 0100CCD0073EA000","0100CCD0073EA000","status-boots;online-broken;UE4","boots","2024-07-03 20:04:49.000" +"Shojo Jigoku no Doku musume","","","","2020-06-25 11:25:12.000" +"Jump Rope Challenge - 0100B9C012706000","0100B9C012706000","services;status-boots;crash;Needs Update","boots","2023-02-27 01:24:28.000" +"Knight Squad","","status-playable","playable","2020-08-09 16:54:51.000" +"WARBORN","","status-playable","playable","2020-06-25 12:36:47.000" +"The Bard's Tale ARPG: Remastered and Resnarkled - 0100CD500DDAE000","0100CD500DDAE000","gpu;status-ingame;nvdec;online-working","ingame","2024-07-18 12:52:01.000" +"NAMCOT COLLECTION","","audio;status-playable","playable","2020-06-25 13:35:22.000" +"Code: Realize ~Future Blessings~ - 010002400F408000","010002400F408000","status-playable;nvdec","playable","2023-03-31 16:57:47.000" +"Code: Realize ~Guardian of Rebirth~","","","","2020-06-25 15:09:14.000" +"Polandball: Can Into Space!","","status-playable","playable","2020-06-25 15:13:26.000" +"Ruiner - 01006EC00F2CC000","01006EC00F2CC000","status-playable;UE4","playable","2022-10-03 14:11:33.000" +"Summer in Mara - 0100A130109B2000","0100A130109B2000","nvdec;status-playable","playable","2021-03-06 14:10:38.000" +"Brigandine: The Legend of Runersia - 010011000EA7A000","010011000EA7A000","status-playable","playable","2021-06-20 06:52:25.000" +"Duke Nukem 3D: 20th Anniversary World Tour - 01007EF00CB88000","01007EF00CB88000","32-bit;status-playable;ldn-untested","playable","2022-08-19 22:22:40.000" +"Outbuddies DX - 0100B8900EFA6000","0100B8900EFA6000","gpu;status-ingame","ingame","2022-08-04 22:39:24.000" +"Mr. DRILLER DrillLand","","nvdec;status-playable","playable","2020-07-24 13:56:48.000" +"Fable of Fairy Stones - 0100E3D0103CE000","0100E3D0103CE000","status-playable","playable","2021-05-05 21:04:54.000" +"Destrobots - 01008BB011ED6000","01008BB011ED6000","status-playable","playable","2021-03-06 14:37:05.000" +"Aery - 0100875011D0C000","0100875011D0C000","status-playable","playable","2021-03-07 15:25:51.000" +"TETRA for Nintendo Switch","","status-playable","playable","2020-06-26 20:49:55.000" +"Push the Crate 2 - 0100B60010432000","0100B60010432000","UE4;gpu;nvdec;status-ingame","ingame","2021-06-10 14:20:01.000" +"Railway Empire - 01002EE00DC02000","01002EE00DC02000","status-playable;nvdec","playable","2022-10-03 13:53:50.000" +"Endless Fables: Dark Moor - 01004F3011F92000","01004F3011F92000","gpu;nvdec;status-ingame","ingame","2021-03-07 15:31:03.000" +"Across the Grooves","","status-playable","playable","2020-06-27 12:29:51.000" +"Behold the Kickmen","","status-playable","playable","2020-06-27 12:49:45.000" +"Blood & Guts Bundle","","status-playable","playable","2020-06-27 12:57:35.000" +"Seek Hearts - 010075D0101FA000","010075D0101FA000","status-playable","playable","2022-11-22 15:06:26.000" +"Edna & Harvey: The Breakout - Anniversary Edition - 01004F000B716000","01004F000B716000","status-ingame;crash;nvdec","ingame","2022-08-01 16:59:56.000" +"-KLAUS-","","nvdec;status-playable","playable","2020-06-27 13:27:30.000" +"Gun Gun Pixies","","","","2020-06-27 13:31:06.000" +"Tcheco in the Castle of Lucio","","status-playable","playable","2020-06-27 13:35:43.000" +"My Butler","","status-playable","playable","2020-06-27 13:46:23.000" +"Caladrius Blaze - 01004FD00D66A000","01004FD00D66A000","deadlock;status-nothing;nvdec","nothing","2022-12-07 16:44:37.000" +"Shipped","","status-playable","playable","2020-11-21 14:22:32.000" +"The Alliance Alive HD Remastered - 010045A00E038000","010045A00E038000","nvdec;status-playable","playable","2021-03-07 15:43:45.000" +"Monochrome Order","","","","2020-06-27 14:38:40.000" +"My Lovely Daughter - 010086B00C784000","010086B00C784000","status-playable","playable","2022-11-24 17:25:32.000" +"Caged Garden Cock Robin","","","","2020-06-27 16:47:22.000" +"A Knight's Quest - 01005EF00CFDA000","01005EF00CFDA000","status-playable;UE4","playable","2022-09-12 20:44:20.000" +"The Witcher 3: Wild Hunt - 01003D100E9C6000","01003D100E9C6000","status-playable;nvdec;vulkan-backend-bug;amd-vendor-bug","playable","2024-02-22 12:21:51.000" +"BATTLESTAR GALACTICA Deadlock","","nvdec;status-playable","playable","2020-06-27 17:35:44.000" +"STELLATUM - 0100BC800EDA2000","0100BC800EDA2000","gpu;status-playable","playable","2021-03-07 16:30:23.000" +"Reventure - 0100E2E00EA42000","0100E2E00EA42000","status-playable","playable","2022-09-15 20:07:06.000" +"Killer Queen Black - 0100F2900B3E2000","0100F2900B3E2000","ldn-untested;online;status-playable","playable","2021-04-08 12:46:18.000" +"Puchitto kurasutā","","Need-Update;crash;services;status-menus","menus","2020-07-04 16:44:28.000" +"Silk - 010045500DFE2000","010045500DFE2000","nvdec;status-playable","playable","2021-06-10 15:34:37.000" +"Aldred - Knight of Honor - 01000E000EEF8000","01000E000EEF8000","services;status-playable","playable","2021-11-30 01:49:17.000" +"Tamashii - 010012800EE3E000","010012800EE3E000","status-playable","playable","2021-06-10 15:26:20.000" +"Overlanders - 0100D7F00EC64000","0100D7F00EC64000","status-playable;nvdec;UE4","playable","2022-09-14 20:15:06.000" +"Romancing SaGa 3","","audio;gpu;status-ingame","ingame","2020-06-27 20:26:18.000" +"Hakoniwa Explorer Plus","","slow;status-ingame","ingame","2021-02-19 16:56:19.000" +"Fractured Minds - 01004200099F2000","01004200099F2000","status-playable","playable","2022-09-13 21:21:40.000" +"Strange Telephone","","","","2020-06-27 21:00:43.000" +"Strikey Sisters","","","","2020-06-27 22:20:14.000" +"IxSHE Tell - 0100DEB00F12A000","0100DEB00F12A000","status-playable;nvdec","playable","2022-12-02 18:00:42.000" +"Monster Farm - 0100E9900ED74000","0100E9900ED74000","32-bit;nvdec;status-playable","playable","2021-05-05 19:29:13.000" +"Pachi Pachi On A Roll","","","","2020-06-28 10:28:59.000" +"MISTOVER","","","","2020-06-28 11:23:53.000" +"Little Busters! Converted Edition - 0100943010310000","0100943010310000","status-playable;nvdec","playable","2022-09-29 15:34:56.000" +"Snack World The Dungeon Crawl Gold - 0100F2800D46E000","0100F2800D46E000","gpu;slow;status-ingame;nvdec;audout","ingame","2022-05-01 21:12:44.000" +"Super Kirby Clash - 01003FB00C5A8000","01003FB00C5A8000","status-playable;ldn-works","playable","2024-07-30 18:21:55.000" +"SEGA AGES Thunder Force IV","","","","2020-06-29 12:06:07.000" +"SEGA AGES Puyo Puyo - 01005F600CB0E000","01005F600CB0E000","online;status-playable","playable","2021-05-05 16:09:28.000" +"EAT BEAT DEADSPIKE-san - 0100A9B009678000","0100A9B009678000","audio;status-playable;Needs Update","playable","2022-12-02 19:25:29.000" +"AeternoBlade II - 01009D100EA28000","01009D100EA28000","status-playable;online-broken;UE4;vulkan-backend-bug","playable","2022-09-12 21:11:18.000" +"WRC 8 FIA World Rally Championship - 010087800DCEA000","010087800DCEA000","status-playable;nvdec","playable","2022-09-16 23:03:36.000" +"Yaga - 01006FB00DB02000","01006FB00DB02000","status-playable;nvdec","playable","2022-09-16 23:17:17.000" +"Woven - 01006F100EB16000","01006F100EB16000","nvdec;status-playable","playable","2021-06-02 13:41:08.000" +"Kissed by the Baddest Bidder - 0100F3A00F4CA000","0100F3A00F4CA000","gpu;status-ingame;nvdec","ingame","2022-12-04 20:57:11.000" +"Thief of Thieves - 0100CE700F62A000","0100CE700F62A000","status-nothing;crash;loader-allocator","nothing","2021-11-03 07:16:30.000" +"Squidgies Takeover","","status-playable","playable","2020-07-20 22:28:08.000" +"Balthazar's Dreams - 0100BC400FB64000","0100BC400FB64000","status-playable","playable","2022-09-13 00:13:22.000" +"ZenChess","","status-playable","playable","2020-07-01 22:28:27.000" +"Sparklite - 01007ED00C032000","01007ED00C032000","status-playable","playable","2022-08-06 11:35:41.000" +"Some Distant Memory - 01009EE00E91E000","01009EE00E91E000","status-playable","playable","2022-09-15 21:48:19.000" +"Skybolt Zack - 010041C01014E000","010041C01014E000","status-playable","playable","2021-04-12 18:28:00.000" +"Tactical Mind 2","","status-playable","playable","2020-07-01 23:11:07.000" +"Super Street: Racer - 0100FB400F54E000","0100FB400F54E000","status-playable;UE4","playable","2022-09-16 13:43:14.000" +"TOKYO DARK - REMEMBRANCE - - 01003E500F962000","01003E500F962000","nvdec;status-playable","playable","2021-06-10 20:09:49.000" +"Party Treats","","status-playable","playable","2020-07-02 00:05:00.000" +"Rocket Wars","","status-playable","playable","2020-07-24 14:27:39.000" +"Rawr-Off","","crash;nvdec;status-menus","menus","2020-07-02 00:14:44.000" +"Blair Witch - 01006CC01182C000","01006CC01182C000","status-playable;nvdec;UE4","playable","2022-10-01 14:06:16.000" +"Urban Trial Tricky - 0100A2500EB92000","0100A2500EB92000","status-playable;nvdec;UE4","playable","2022-12-06 13:07:56.000" +"Infliction - 01001CB00EFD6000","01001CB00EFD6000","status-playable;nvdec;UE4","playable","2022-10-02 13:15:55.000" +"Catherine Full Body for Nintendo Switch (JP) - 0100BAE0077E4000","0100BAE0077E4000","Needs Update;gpu;status-ingame","ingame","2021-02-21 18:06:11.000" +"Night Call - 0100F3A0095A6000","0100F3A0095A6000","status-playable;nvdec","playable","2022-10-03 12:57:00.000" +"Grimshade - 01001E200F2F8000","01001E200F2F8000","status-playable","playable","2022-10-02 12:44:20.000" +"A Summer with the Shiba Inu - 01007DD011C4A000","01007DD011C4A000","status-playable","playable","2021-06-10 20:51:16.000" +"Holy Potatoes! What the Hell?!","","status-playable","playable","2020-07-03 10:48:56.000" +"Tower of Time","","gpu;nvdec;status-ingame","ingame","2020-07-03 11:11:12.000" +"Iron Wings - 01005270118D6000","01005270118D6000","slow;status-ingame","ingame","2022-08-07 08:32:57.000" +"Death Come True - 010012B011AB2000","010012B011AB2000","nvdec;status-playable","playable","2021-06-10 22:30:49.000" +"CAN ANDROIDS PRAY:BLUE","","","","2020-07-05 08:14:53.000" +"The Almost Gone","","status-playable","playable","2020-07-05 12:33:07.000" +"Urban Flow","","services;status-playable","playable","2020-07-05 12:51:47.000" +"Digimon Story Cyber Sleuth: Complete Edition - 010014E00DB56000","010014E00DB56000","status-playable;nvdec;opengl","playable","2022-09-13 15:02:37.000" +"Return of the Obra Dinn - 010032E00E6E2000","010032E00E6E2000","status-playable","playable","2022-09-15 19:56:45.000" +"YU-NO: A GIRL WHO CHANTS LOVE AT THE BOUND OF THIS WORLD. - 010037D00DBDC000","010037D00DBDC000","nvdec;status-playable","playable","2021-01-26 17:03:52.000" +"Summer Sweetheart - 01004E500DB9E000","01004E500DB9E000","status-playable;nvdec","playable","2022-09-16 12:51:46.000" +"ZikSquare - 010086700EF16000","010086700EF16000","gpu;status-ingame","ingame","2021-11-06 02:02:48.000" +"Planescape: Torment and Icewind Dale: Enhanced Editions - 010030B00C316000","010030B00C316000","cpu;status-boots;32-bit;crash;Needs Update","boots","2022-09-10 03:58:26.000" +"Megaquarium - 010082B00E8B8000","010082B00E8B8000","status-playable","playable","2022-09-14 16:50:00.000" +"Ice Age Scrat's Nutty Adventure - 01004E5007E92000","01004E5007E92000","status-playable;nvdec","playable","2022-09-13 22:22:29.000" +"Aggelos - 010004D00A9C0000","010004D00A9C0000","gpu;status-ingame","ingame","2023-02-19 13:24:23.000" +"Stranded Sails: Explorers of the Cursed Islands - 010078D00E8F4000","010078D00E8F4000","slow;status-playable;nvdec;UE4","playable","2022-09-16 11:58:38.000" +"Sub Level Zero: Redux - 0100E6400BCE8000","0100E6400BCE8000","status-playable","playable","2022-09-16 12:30:03.000" +"BurgerTime Party!","","slow;status-playable","playable","2020-11-21 14:11:53.000" +"Another Sight","","UE4;gpu;nvdec;status-ingame","ingame","2020-12-03 16:49:59.000" +"Baldur's Gate and Baldur's Gate II: Enhanced Editions - 010010A00DA48000","010010A00DA48000","32-bit;status-playable","playable","2022-09-12 23:52:15.000" +"Kine - 010089000F0E8000","010089000F0E8000","status-playable;UE4","playable","2022-09-14 14:28:37.000" +"Roof Rage - 010088100DD42000","010088100DD42000","status-boots;crash;regression","boots","2023-11-12 03:47:18.000" +"Pig Eat Ball - 01000FD00D5CC000","01000FD00D5CC000","services;status-ingame","ingame","2021-11-30 01:57:45.000" +"DORAEMON STORY OF SEASONS","","nvdec;status-playable","playable","2020-07-13 20:28:11.000" +"Root Letter: Last Answer - 010030A00DA3A000","010030A00DA3A000","status-playable;vulkan-backend-bug","playable","2022-09-17 10:25:57.000" +"Cat Quest II","","status-playable","playable","2020-07-06 23:52:09.000" +"Streets of Rage 4","","nvdec;online;status-playable","playable","2020-07-07 21:21:22.000" +"Deep Space Rush","","status-playable","playable","2020-07-07 23:30:33.000" +"Into the Dead 2 - 01000F700DECE000","01000F700DECE000","status-playable;nvdec","playable","2022-09-14 12:36:14.000" +"Dark Devotion - 010083A00BF6C000","010083A00BF6C000","status-playable;nvdec","playable","2022-08-09 09:41:18.000" +"Anthill - 010054C00D842000","010054C00D842000","services;status-menus;nvdec","menus","2021-11-18 09:25:25.000" +"Skullgirls: 2nd Encore - 010046B00DE62000","010046B00DE62000","status-playable","playable","2022-09-15 21:21:25.000" +"Tokyo School Life - 0100E2E00CB14000","0100E2E00CB14000","status-playable","playable","2022-09-16 20:25:54.000" +"Pixel Gladiator","","status-playable","playable","2020-07-08 02:41:26.000" +"Spirit Hunter: NG","","32-bit;status-playable","playable","2020-12-17 20:38:47.000" +"The Fox Awaits Me","","","","2020-07-08 11:58:56.000" +"Shalnor Legends: Sacred Lands - 0100B4900E008000","0100B4900E008000","status-playable","playable","2021-06-11 14:57:11.000" +"Hero must die. again","","","","2020-07-08 12:35:49.000" +"AeternoBlade I","","nvdec;status-playable","playable","2020-12-14 20:06:48.000" +"Sephirothic Stories - 010059700D4A0000","010059700D4A0000","services;status-menus","menus","2021-11-25 08:52:17.000" +"Ciel Fledge: A Daughter Raising Simulator","","","","2020-07-08 14:57:17.000" +"Olympia Soiree - 0100F9D00C186000","0100F9D00C186000","status-playable","playable","2022-12-04 21:07:12.000" +"Mighty Switch Force! Collection - 010060D00AE36000","010060D00AE36000","status-playable","playable","2022-10-28 20:40:32.000" +"Street Outlaws: The List - 010012400D202000","010012400D202000","nvdec;status-playable","playable","2021-06-11 12:15:32.000" +"TroubleDays","","","","2020-07-09 08:50:12.000" +"Legend of the Tetrarchs","","deadlock;status-ingame","ingame","2020-07-10 07:54:03.000" +"Soul Searching","","status-playable","playable","2020-07-09 18:39:07.000" +"Dusk Diver - 010011C00E636000","010011C00E636000","status-boots;crash;UE4","boots","2021-11-06 09:01:30.000" +"PBA Pro Bowling - 010085700ABC8000","010085700ABC8000","status-playable;nvdec;online-broken;UE4","playable","2022-09-14 23:00:49.000" +"Horror Pinball Bundle - 0100E4200FA82000","0100E4200FA82000","status-menus;crash","menus","2022-09-13 22:15:34.000" +"Farm Expert 2019 for Nintendo Switch","","status-playable","playable","2020-07-09 21:42:57.000" +"Super Monkey Ball: Banana Blitz HD - 0100B2A00E1E0000","0100B2A00E1E0000","status-playable;online-broken","playable","2022-09-16 13:16:25.000" +"Yuri - 0100FC900963E000","0100FC900963E000","status-playable","playable","2021-06-11 13:08:50.000" +"Vampyr - 01000BD00CE64000","01000BD00CE64000","status-playable;nvdec;UE4","playable","2022-09-16 22:15:51.000" +"Spirit Roots","","nvdec;status-playable","playable","2020-07-10 13:33:32.000" +"Resident Evil 5 - 010018100CD46000","010018100CD46000","status-playable;nvdec","playable","2024-02-18 17:15:29.000" +"RESIDENT EVIL 6 - 01002A000CD48000","01002A000CD48000","status-playable;nvdec","playable","2022-09-15 14:31:47.000" +"The Big Journey - 010089600E66A000","010089600E66A000","status-playable","playable","2022-09-16 14:03:08.000" +"Sky Gamblers: Storm Raiders 2 - 010068200E96E000","010068200E96E000","gpu;status-ingame","ingame","2022-09-13 12:24:04.000" +"Door Kickers: Action Squad - 01005ED00CD70000","01005ED00CD70000","status-playable;online-broken;ldn-broken","playable","2022-09-13 16:28:53.000" +"Agony","","UE4;crash;status-boots","boots","2020-07-10 16:21:18.000" +"Remothered: Tormented Fathers - 01001F100E8AE000","01001F100E8AE000","status-playable;nvdec;UE4","playable","2022-10-19 23:26:50.000" +"Biped - 010053B0117F8000","010053B0117F8000","status-playable;nvdec","playable","2022-10-01 13:32:58.000" +"Clash Force - 01005ED0107F4000","01005ED0107F4000","status-playable","playable","2022-10-01 23:45:48.000" +"Truck & Logistics Simulator - 0100F2100AA5C000","0100F2100AA5C000","status-playable","playable","2021-06-11 13:29:08.000" +"Collar X Malice - 010083E00F40E000","010083E00F40E000","status-playable;nvdec","playable","2022-10-02 11:51:56.000" +"TORICKY-S - 01007AF011732000","01007AF011732000","deadlock;status-menus","menus","2021-11-25 08:53:36.000" +"The Wanderer: Frankenstein's Creature","","status-playable","playable","2020-07-11 12:49:51.000" +"PRINCESS MAKER -FAERY TALES COME TRUE-","","","","2020-07-11 16:09:47.000" +"Princess Maker Go!Go! Princess","","","","2020-07-11 16:35:31.000" +"Paradox Soul","","","","2020-07-11 17:20:44.000" +"Diabolic - 0100F73011456000","0100F73011456000","status-playable","playable","2021-06-11 14:45:08.000" +"UBERMOSH:BLACK","","","","2020-07-11 17:42:34.000" +"Journey to the Savage Planet - 01008B60117EC000","01008B60117EC000","status-playable;nvdec;UE4;ldn-untested","playable","2022-10-02 18:48:12.000" +"Viviette - 010037900CB1C000","010037900CB1C000","status-playable","playable","2021-06-11 15:33:40.000" +"the StoryTale - 0100858010DC4000","0100858010DC4000","status-playable","playable","2022-09-03 13:00:25.000" +"Ghost Grab 3000","","status-playable","playable","2020-07-11 18:09:52.000" +"SEGA AGES Shinobi","","","","2020-07-11 18:17:27.000" +"eCrossminton","","status-playable","playable","2020-07-11 18:24:27.000" +"Dangerous Relationship","","","","2020-07-11 18:39:45.000" +"Indie Darling Bundle Vol. 3 - 01004DE011076000","01004DE011076000","status-playable","playable","2022-10-02 13:01:57.000" +"Murder by Numbers","","","","2020-07-11 19:12:19.000" +"BUSTAFELLOWS","","nvdec;status-playable","playable","2020-10-17 20:04:41.000" +"Love Letter from Thief X - 0100D36011AD4000","0100D36011AD4000","gpu;status-ingame;nvdec","ingame","2023-11-14 03:55:31.000" +"Escape Game Fort Boyard","","status-playable","playable","2020-07-12 12:45:43.000" +"SEGA AGES Gain Ground - 01001E600AF08000","01001E600AF08000","online;status-playable","playable","2021-05-05 16:16:27.000" +"The Wardrobe: Even Better Edition - 01008B200FC6C000","01008B200FC6C000","status-playable","playable","2022-09-16 19:14:55.000" +"SEGA AGES Wonder Boy: Monster Land - 01001E700AC60000","01001E700AC60000","online;status-playable","playable","2021-05-05 16:28:25.000" +"SEGA AGES Columns II: A Voyage Through Time","","","","2020-07-12 13:38:50.000" +"Zenith - 0100AAC00E692000","0100AAC00E692000","status-playable","playable","2022-09-17 09:57:02.000" +"Jumanji","","UE4;crash;status-boots","boots","2020-07-12 13:52:25.000" +"SEGA AGES Ichidant-R","","","","2020-07-12 13:54:29.000" +"STURMWIND EX - 0100C5500E7AE000","0100C5500E7AE000","audio;32-bit;status-playable","playable","2022-09-16 12:01:39.000" +"SEGA AGES Alex Kidd in Miracle World - 0100A8900AF04000","0100A8900AF04000","online;status-playable","playable","2021-05-05 16:35:47.000" +"The Lord of the Rings: Adventure Card Game - 010085A00C5E8000","010085A00C5E8000","status-menus;online-broken","menus","2022-09-16 15:19:32.000" +"Breeder Homegrown: Director's Cut","","","","2020-07-12 14:54:02.000" +"StarCrossed","","","","2020-07-12 15:15:22.000" +"The Legend of Dark Witch","","status-playable","playable","2020-07-12 15:18:33.000" +"One-Way Ticket","","","","2020-07-12 15:36:25.000" +"Ships - 01000E800FCB4000","01000E800FCB4000","status-playable","playable","2021-06-11 16:14:37.000" +"My Bewitching Perfume","","","","2020-07-12 15:55:15.000" +"Black and White Bushido","","","","2020-07-12 16:12:16.000" +"REKT","","online;status-playable","playable","2020-09-28 12:33:56.000" +"Nirvana Pilot Yume - 010020901088A000","010020901088A000","status-playable","playable","2022-10-29 11:49:49.000" +"Detective Jinguji Saburo Prism of Eyes","","status-playable","playable","2020-10-02 21:54:41.000" +"Harvest Moon: Mad Dash","","","","2020-07-12 20:37:50.000" +"Worse Than Death - 010037500C4DE000","010037500C4DE000","status-playable","playable","2021-06-11 16:05:40.000" +"Bad Dream: Coma - 01000CB00D094000","01000CB00D094000","deadlock;status-boots","boots","2023-08-03 00:54:18.000" +"Chou no Doku Hana no Kusari: Taishou Irokoi Ibun","","gpu;nvdec;status-ingame","ingame","2020-09-28 17:58:04.000" +"MODEL Debut #nicola","","","","2020-07-13 11:21:44.000" +"Chameleon","","","","2020-07-13 12:06:20.000" +"Gunka o haita neko","","gpu;nvdec;status-ingame","ingame","2020-08-25 12:37:56.000" +"Genso maneju","","","","2020-07-13 14:14:09.000" +"Coffee Talk","","status-playable","playable","2020-08-10 09:48:44.000" +"Labyrinth of the Witch","","status-playable","playable","2020-11-01 14:42:37.000" +"Ritual: Crown of Horns - 010042500FABA000","010042500FABA000","status-playable","playable","2021-01-26 16:01:47.000" +"THE GRISAIA TRILOGY - 01003b300e4aa000","01003b300e4aa000","status-playable","playable","2021-01-31 15:53:59.000" +"Perseverance","","status-playable","playable","2020-07-13 18:48:27.000" +"SEGA AGES Fantasy Zone","","","","2020-07-13 19:33:23.000" +"SEGA AGES Thunder Force AC","","","","2020-07-13 19:50:34.000" +"SEGA AGES Puyo Puyo 2","","","","2020-07-13 20:15:04.000" +"GRISAIA PHANTOM TRIGGER 01&02 - 01009D7011B02000","01009D7011B02000","status-playable;nvdec","playable","2022-12-04 21:16:06.000" +"Paper Dolls Original","","UE4;crash;status-boots","boots","2020-07-13 20:26:21.000" +"STAY COOL, KOBAYASHI-SAN! A RIVER RANSOM STORY - 0100B61009C60000","0100B61009C60000","status-playable","playable","2021-01-26 17:37:28.000" +" SEGA AGES G-LOC AIR BATTLE","","","","2020-07-13 20:42:40.000" +"Think of the Children - 0100F2300A5DA000","0100F2300A5DA000","deadlock;status-menus","menus","2021-11-23 09:04:45.000" +"OTOKOMIZU","","status-playable","playable","2020-07-13 21:00:44.000" +"Puchikon 4 Smile BASIC","","","","2020-07-13 21:18:15.000" +"Neverlast","","slow;status-ingame","ingame","2020-07-13 23:55:19.000" +"MONKEY BARRELS - 0100FBD00ED24000","0100FBD00ED24000","status-playable","playable","2022-09-14 17:28:52.000" +"Ghost Parade","","status-playable","playable","2020-07-14 00:43:54.000" +"Hopping girl KOHANE Jumping Kingdom: Princess of the Black Rabbit - 010087800EE5A000","010087800EE5A000","status-boots;crash","boots","2023-02-19 00:51:21.000" +"OMG Zombies! - 01006DB00D970000","01006DB00D970000","32-bit;status-playable","playable","2021-04-12 18:04:45.000" +"Evan's Remains","","","","2020-07-14 05:56:25.000" +"Working Zombies","","","","2020-07-14 06:30:55.000" +"Saboteur II: Avenging Angel","","Needs Update;cpu;crash;status-nothing","nothing","2021-01-26 14:47:37.000" +"Quell Zen - 0100492012378000","0100492012378000","gpu;status-ingame","ingame","2021-06-11 15:59:53.000" +"The Touryst - 0100C3300D8C4000","0100C3300D8C4000","status-ingame;crash","ingame","2023-08-22 01:32:38.000" +"SMASHING THE BATTLE - 01002AA00C974000","01002AA00C974000","status-playable","playable","2021-06-11 15:53:57.000" +"Him & Her","","","","2020-07-14 08:09:57.000" +"Speed Brawl","","slow;status-playable","playable","2020-09-18 22:08:16.000" +"River City Melee Mach!! - 0100B2100767C000","0100B2100767C000","status-playable;online-broken","playable","2022-09-20 20:51:57.000" +"Please The Gods","","","","2020-07-14 10:10:27.000" +"One Person Story","","status-playable","playable","2020-07-14 11:51:02.000" +"Mary Skelter 2 - 01003DE00C95E000","01003DE00C95E000","status-ingame;crash;regression","ingame","2023-09-12 07:37:28.000" +"NecroWorm","","","","2020-07-14 12:15:16.000" +"Juicy Realm - 0100C7600F654000","0100C7600F654000","status-playable","playable","2023-02-21 19:16:20.000" +"Grizzland","","","","2020-07-14 12:28:03.000" +"Garfield Kart Furious Racing - 010061E00E8BE000","010061E00E8BE000","status-playable;ldn-works;loader-allocator","playable","2022-09-13 21:40:25.000" +"Close to the Sun - 0100B7200DAC6000","0100B7200DAC6000","status-boots;crash;nvdec;UE4","boots","2021-11-04 09:19:41.000" +"Xeno Crisis","","","","2020-07-14 12:46:55.000" +"Boreal Blade - 01008E500AFF6000","01008E500AFF6000","gpu;ldn-untested;online;status-ingame","ingame","2021-06-11 15:37:14.000" +"Animus: Harbinger - 0100E5A00FD38000","0100E5A00FD38000","status-playable","playable","2022-09-13 22:09:20.000" +"DEADBOLT","","","","2020-07-14 13:20:01.000" +"Headsnatchers","","UE4;crash;status-menus","menus","2020-07-14 13:29:14.000" +"DOUBLE DRAGON Ⅲ: The Sacred Stones - 01001AD00E49A000","01001AD00E49A000","online;status-playable","playable","2021-06-11 15:41:44.000" +"911 Operator Deluxe Edition","","status-playable","playable","2020-07-14 13:57:44.000" +"Disney Tsum Tsum Festival","","crash;status-menus","menus","2020-07-14 14:05:28.000" +"JUST DANCE 2020 - 0100DDB00DB38000","0100DDB00DB38000","status-playable","playable","2022-01-24 13:31:57.000" +"A Street Cat's Tale","","","","2020-07-14 14:10:13.000" +"Real Heroes: Firefighter - 010048600CC16000","010048600CC16000","status-playable","playable","2022-09-20 18:18:44.000" +"The Savior's Gang - 01002BA00C7CE000","01002BA00C7CE000","gpu;status-ingame;nvdec;UE4","ingame","2022-09-21 12:37:48.000" +"KATANA KAMI: A Way of the Samurai Story - 0100F9800EDFA000","0100F9800EDFA000","slow;status-playable","playable","2022-04-09 10:40:16.000" +"Toon War - 01009EA00E2B8000","01009EA00E2B8000","status-playable","playable","2021-06-11 16:41:53.000" +"2048 CAT","","","","2020-07-14 14:44:29.000" +"Tick Tock: A Tale for Two","","status-menus","menus","2020-07-14 14:49:38.000" +"HexON","","","","2020-07-14 14:54:27.000" +"Ancient Rush 2","","UE4;crash;status-menus","menus","2020-07-14 14:58:47.000" +"Under Night In-Birth Exe:Late[cl-r]","","","","2020-07-14 15:06:07.000" +"Circuits - 01008FA00D686000","01008FA00D686000","status-playable","playable","2022-09-19 11:52:50.000" +"Breathing Fear","","status-playable","playable","2020-07-14 15:12:29.000" +"KAMINAZO Memories from the future","","","","2020-07-14 15:22:45.000" +"Big Pharma","","status-playable","playable","2020-07-14 15:27:30.000" +"Amoeba Battle - Microscopic RTS Action - 010041D00DEB2000","010041D00DEB2000","status-playable","playable","2021-05-06 13:33:41.000" +"Assassin's Creed The Rebel Collection - 010044700DEB0000","010044700DEB0000","gpu;status-ingame","ingame","2024-05-19 07:58:56.000" +"Defenders of Ekron - Definitive Edition - 01008BB00F824000","01008BB00F824000","status-playable","playable","2021-06-11 16:31:03.000" +"Hellmut: The Badass from Hell","","","","2020-07-14 15:56:49.000" +"Alien: Isolation - 010075D00E8BA000","010075D00E8BA000","status-playable;nvdec;vulkan-backend-bug","playable","2022-09-17 11:48:41.000" +"Immortal Planet - 01007BC00E55A000","01007BC00E55A000","status-playable","playable","2022-09-20 13:40:43.000" +"inbento","","","","2020-07-14 16:09:57.000" +"Ding Dong XL","","status-playable","playable","2020-07-14 16:13:19.000" +"KUUKIYOMI 2: Consider It More! - New Era - 010037500F282000","010037500F282000","status-nothing;crash;Needs Update","nothing","2021-11-02 09:34:40.000" +" KUUKIYOMI: Consider It!","","","","2020-07-14 16:21:36.000" +"MADORIS R","","","","2020-07-14 16:34:22.000" +"Kairobotica - 0100D5F00EC52000","0100D5F00EC52000","status-playable","playable","2021-05-06 12:17:56.000" +"Bouncy Bob 2","","status-playable","playable","2020-07-14 16:51:53.000" +"Grab the Bottle","","status-playable","playable","2020-07-14 17:06:41.000" +"Red Bow - 0100CF600FF7A000","0100CF600FF7A000","services;status-ingame","ingame","2021-11-29 03:51:34.000" +"Pocket Mini Golf","","","","2020-07-14 22:13:35.000" +"Must Dash Amigos - 0100F6000EAA8000","0100F6000EAA8000","status-playable","playable","2022-09-20 16:45:56.000" +"EarthNight - 0100A2E00BB0C000","0100A2E00BB0C000","status-playable","playable","2022-09-19 21:02:20.000" +"Baobabs Mauseoleum Ep 1: Ovnifagos Don't Eat Flamingos","","status-playable","playable","2020-07-15 05:06:29.000" +"Bloo Kid 2 - 010055900FADA000","010055900FADA000","status-playable","playable","2024-05-01 17:16:57.000" +"Narcos: Rise of the Cartels - 010072B00BDDE000","010072B00BDDE000","UE4;crash;nvdec;status-boots","boots","2021-03-22 13:18:47.000" +"PUSH THE CRATE - 010016400F07E000","010016400F07E000","status-playable;nvdec;UE4","playable","2022-09-15 13:28:41.000" +"Bee Simulator","","UE4;crash;status-boots","boots","2020-07-15 12:13:13.000" +"Where the Bees Make Honey","","status-playable","playable","2020-07-15 12:40:49.000" +"The Eyes of Ara - 0100B5900DFB2000","0100B5900DFB2000","status-playable","playable","2022-09-16 14:44:06.000" +"The Unicorn Princess - 010064E00ECBC000","010064E00ECBC000","status-playable","playable","2022-09-16 16:20:56.000" +"Sword of the Guardian","","status-playable","playable","2020-07-16 12:24:39.000" +"Waifu Uncovered - 0100B130119D0000","0100B130119D0000","status-ingame;crash","ingame","2023-02-27 01:17:46.000" +"Paper Mario The Origami King - 0100A3900C3E2000","0100A3900C3E2000","audio;status-playable;Needs Update","playable","2024-08-09 18:27:40.000" +"Touhou Spell Bubble","","status-playable","playable","2020-10-18 11:43:43.000" +"Crysis Remastered - 0100E66010ADE000","0100E66010ADE000","status-menus;nvdec","menus","2024-08-13 05:23:24.000" +"Helltaker","","","","2020-07-23 21:16:43.000" +"Shadow Blade Reload - 0100D5500DA94000","0100D5500DA94000","nvdec;status-playable","playable","2021-06-11 18:40:43.000" +"The Bunker - 01001B40086E2000","01001B40086E2000","status-playable;nvdec","playable","2022-09-16 14:24:05.000" +"War Tech Fighters - 010049500DE56000","010049500DE56000","status-playable;nvdec","playable","2022-09-16 22:29:31.000" +"Real Drift Racing","","status-playable","playable","2020-07-25 14:31:31.000" +"Phantaruk - 0100DDD00C0EA000","0100DDD00C0EA000","status-playable","playable","2021-06-11 18:09:54.000" +"Omensight: Definitive Edition","","UE4;crash;nvdec;status-ingame","ingame","2020-07-26 01:45:14.000" +"Phantom Doctrine - 010096F00E5B0000","010096F00E5B0000","status-playable;UE4","playable","2022-09-15 10:51:50.000" +"Monster Bugs Eat People","","status-playable","playable","2020-07-26 02:05:34.000" +"Machi Knights Blood bagos - 0100F2400D434000","0100F2400D434000","status-playable;nvdec;UE4","playable","2022-09-14 15:08:04.000" +"Offroad Racing - 01003CD00E8BC000","01003CD00E8BC000","status-playable;online-broken;UE4","playable","2022-09-14 18:53:22.000" +"Puzzle Book","","status-playable","playable","2020-09-28 13:26:01.000" +"SUSHI REVERSI - 01005AB01119C000","01005AB01119C000","status-playable","playable","2021-06-11 19:26:58.000" +"Strike Force - War on Terror - 010039100DACC000","010039100DACC000","status-menus;crash;Needs Update","menus","2021-11-24 08:08:20.000" +"Mr Blaster - 0100D3300F110000","0100D3300F110000","status-playable","playable","2022-09-14 17:56:24.000" +"Lust for Darkness","","nvdec;status-playable","playable","2020-07-26 12:09:15.000" +"Legrand Legacy: Tale of the Fatebounds","","nvdec;status-playable","playable","2020-07-26 12:27:36.000" +"Hardway Party","","status-playable","playable","2020-07-26 12:35:07.000" +"Earthfall: Alien Horde - 0100DFC00E472000","0100DFC00E472000","status-playable;nvdec;UE4;ldn-untested","playable","2022-09-13 17:32:37.000" +"Collidalot - 010030800BC36000","010030800BC36000","status-playable;nvdec","playable","2022-09-13 14:09:27.000" +"Miniature - The Story Puzzle - 010039200EC66000","010039200EC66000","status-playable;UE4","playable","2022-09-14 17:18:50.000" +"MEANDERS - 0100EEF00CBC0000","0100EEF00CBC0000","UE4;gpu;status-ingame","ingame","2021-06-11 19:19:33.000" +"Isoland","","status-playable","playable","2020-07-26 13:48:16.000" +"Fishing Star World Tour - 0100DEB00ACE2000","0100DEB00ACE2000","status-playable","playable","2022-09-13 19:08:51.000" +"Isoland 2: Ashes of Time","","status-playable","playable","2020-07-26 14:29:05.000" +"Golazo - 010013800F0A4000","010013800F0A4000","status-playable","playable","2022-09-13 21:58:37.000" +"Castle of No Escape 2 - 0100F5500FA0E000","0100F5500FA0E000","status-playable","playable","2022-09-13 13:51:42.000" +"Guess The Word","","status-playable","playable","2020-07-26 21:34:25.000" +"Black Future '88 - 010049000B69E000","010049000B69E000","status-playable;nvdec","playable","2022-09-13 11:24:37.000" +"The Childs Sight - 010066800E9F8000","010066800E9F8000","status-playable","playable","2021-06-11 19:04:56.000" +"Asterix & Obelix XXL3: The Crystal Menhir - 010081500EA1E000","010081500EA1E000","gpu;status-ingame;nvdec;regression","ingame","2022-11-28 14:19:23.000" +"Go! Fish Go!","","status-playable","playable","2020-07-27 13:52:28.000" +"Amnesia: Collection - 01003CC00D0BE000","01003CC00D0BE000","status-playable","playable","2022-10-04 13:36:15.000" +"Ages of Mages: the Last Keeper - 0100E4700E040000","0100E4700E040000","status-playable;vulkan-backend-bug","playable","2022-10-04 11:44:05.000" +"Worlds of Magic: Planar Conquest - 010000301025A000","010000301025A000","status-playable","playable","2021-06-12 12:51:28.000" +"Hang the Kings","","status-playable","playable","2020-07-28 22:56:59.000" +"Super Dungeon Tactics - 010023100B19A000","010023100B19A000","status-playable","playable","2022-10-06 17:40:40.000" +"Five Nights at Freddy's: Sister Location - 01003B200E440000","01003B200E440000","status-playable","playable","2023-10-06 09:00:58.000" +"Ice Cream Surfer","","status-playable","playable","2020-07-29 12:04:07.000" +"Demon's Rise","","status-playable","playable","2020-07-29 12:26:27.000" +"A Ch'ti Bundle - 010096A00CC80000","010096A00CC80000","status-playable;nvdec","playable","2022-10-04 12:48:44.000" +"Overwatch®: Legendary Edition - 0100F8600E21E000","0100F8600E21E000","deadlock;status-boots","boots","2022-09-14 20:22:22.000" +"Zombieland: Double Tap - Road Trip - 01000E5800D32C000","01000E5800D32C00","status-playable","playable","2022-09-17 10:08:45.000" +"Children of Morta - 01002DE00C250000","01002DE00C250000","gpu;status-ingame;nvdec","ingame","2022-09-13 17:48:47.000" +"Story of a Gladiator","","status-playable","playable","2020-07-29 15:08:18.000" +"SD GUNDAM G GENERATION CROSS RAYS - 010055700CEA8000","010055700CEA8000","status-playable;nvdec","playable","2022-09-15 20:58:44.000" +"Neverwinter Nights: Enhanced Edition - 010013700DA4A000","010013700DA4A000","gpu;status-menus;nvdec","menus","2024-09-30 02:59:19.000" +"Race With Ryan","","UE4;gpu;nvdec;slow;status-ingame","ingame","2020-11-16 04:35:33.000" +"StrikeForce Kitty","","nvdec;status-playable","playable","2020-07-29 16:22:15.000" +"Later Daters","","status-playable","playable","2020-07-29 16:35:45.000" +"Pine","","slow;status-ingame","ingame","2020-07-29 16:57:39.000" +"Japanese Rail Sim: Journey to Kyoto","","nvdec;status-playable","playable","2020-07-29 17:14:21.000" +"FoxyLand","","status-playable","playable","2020-07-29 20:55:20.000" +"Five Nights at Freddy's - 0100B6200D8D2000","0100B6200D8D2000","status-playable","playable","2022-09-13 19:26:36.000" +"Five Nights at Freddy's 2 - 01004EB00E43A000","01004EB00E43A000","status-playable","playable","2023-02-08 15:48:24.000" +"Five Nights at Freddy's 3 - 010056100E43C000","010056100E43C000","status-playable","playable","2022-09-13 20:58:07.000" +"Five Nights at Freddy's 4 - 010083800E43E000","010083800E43E000","status-playable","playable","2023-08-19 07:28:03.000" +"Widget Satchel - 0100C7800CA06000","0100C7800CA06000","status-playable","playable","2022-09-16 22:41:07.000" +"Nyan Cat: Lost in Space - 010049F00EC30000","010049F00EC30000","online;status-playable","playable","2021-06-12 13:22:03.000" +"Blacksad: Under the Skin - 010032000EA2C000","010032000EA2C000","status-playable","playable","2022-09-13 11:38:04.000" +"Mini Trains","","status-playable","playable","2020-07-29 23:06:20.000" +"Call of Juarez: Gunslinger - 0100B4700BFC6000","0100B4700BFC6000","gpu;status-ingame;nvdec","ingame","2022-09-17 16:49:46.000" +"Locomotion","","","","2020-07-31 08:17:09.000" +"Headspun","","status-playable","playable","2020-07-31 19:46:47.000" +"Exception - 0100F2D00C7DE000","0100F2D00C7DE000","status-playable;online-broken","playable","2022-09-20 12:47:10.000" +"Dead End Job - 01004C500BD40000","01004C500BD40000","status-playable;nvdec","playable","2022-09-19 12:48:44.000" +"Event Horizon: Space Defense","","status-playable","playable","2020-07-31 20:31:24.000" +"SAMURAI SHODOWN","","UE4;crash;nvdec;status-menus","menus","2020-09-06 02:17:00.000" +"BQM BlockQuest Maker","","online;status-playable","playable","2020-07-31 20:56:50.000" +"Hard West - 0100ECE00D13E000","0100ECE00D13E000","status-nothing;regression","nothing","2022-02-09 07:45:56.000" +"Override: Mech City Brawl - Super Charged Mega Edition - 01008A700F7EE000","01008A700F7EE000","status-playable;nvdec;online-broken;UE4","playable","2022-09-20 17:33:32.000" +"Where Are My Friends? - 0100FDB0092B4000","0100FDB0092B4000","status-playable","playable","2022-09-21 14:39:26.000" +"Final Light, The Prison","","status-playable","playable","2020-07-31 21:48:44.000" +"Citizens of Space - 0100E4200D84E000","0100E4200D84E000","gpu;status-boots","boots","2023-10-22 06:45:44.000" +"Adventures of Bertram Fiddle: Episode 1: A Dreadly Business - 01003B400A00A000","01003B400A00A000","status-playable;nvdec","playable","2022-09-17 11:07:56.000" +"Momonga Pinball Adventures - 01002CC00BC4C000","01002CC00BC4C000","status-playable","playable","2022-09-20 16:00:40.000" +"Suicide Guy: Sleepin' Deeply - 0100DE000C2E4000","0100DE000C2E4000","status-ingame;Needs More Attention","ingame","2022-09-20 23:45:25.000" +"Warhammer 40,000: Mechanicus - 0100C6000EEA8000","0100C6000EEA8000","nvdec;status-playable","playable","2021-06-13 10:46:38.000" +"Caretaker - 0100DA70115E6000","0100DA70115E6000","status-playable","playable","2022-10-04 14:52:24.000" +"Once Upon A Coma","","nvdec;status-playable","playable","2020-08-01 12:09:39.000" +"Welcome to Hanwell","","UE4;crash;status-boots","boots","2020-08-03 11:54:57.000" +"Radical Rabbit Stew","","status-playable","playable","2020-08-03 12:02:56.000" +"We should talk.","","crash;status-nothing","nothing","2020-08-03 12:32:36.000" +"Get 10 Quest","","status-playable","playable","2020-08-03 12:48:39.000" +"Dongo Adventure - 010088B010DD2000","010088B010DD2000","status-playable","playable","2022-10-04 16:22:26.000" +"Singled Out","","online;status-playable","playable","2020-08-03 13:06:18.000" +"Never Breakup - 010039801093A000","010039801093A000","status-playable","playable","2022-10-05 16:12:12.000" +"Ashen - 010027B00E40E000","010027B00E40E000","status-playable;nvdec;online-broken;UE4","playable","2022-09-17 12:19:14.000" +"JDM Racing","","status-playable","playable","2020-08-03 17:02:37.000" +"Farabel","","status-playable","playable","2020-08-03 17:47:28.000" +"Hover - 0100F6800910A000","0100F6800910A000","status-playable;online-broken","playable","2022-09-20 12:54:46.000" +"DragoDino","","gpu;nvdec;status-ingame","ingame","2020-08-03 20:49:16.000" +"Rift Keeper - 0100AC600D898000","0100AC600D898000","status-playable","playable","2022-09-20 19:48:20.000" +"Melbits World - 01000FA010340000","01000FA010340000","status-menus;nvdec;online","menus","2021-11-26 13:51:22.000" +"60 Parsecs! - 010010100FF14000","010010100FF14000","status-playable","playable","2022-09-17 11:01:17.000" +"Warhammer Quest 2","","status-playable","playable","2020-08-04 15:28:03.000" +"Rescue Tale - 01003C400AD42000","01003C400AD42000","status-playable","playable","2022-09-20 18:40:18.000" +"Akuto","","status-playable","playable","2020-08-04 19:43:27.000" +"Demon Pit - 010084600F51C000","010084600F51C000","status-playable;nvdec","playable","2022-09-19 13:35:15.000" +"Regions of Ruin","","status-playable","playable","2020-08-05 11:38:58.000" +"Roombo: First Blood","","nvdec;status-playable","playable","2020-08-05 12:11:37.000" +"Mountain Rescue Simulator - 01009DB00D6E0000","01009DB00D6E0000","status-playable","playable","2022-09-20 16:36:48.000" +"Mad Games Tycoon - 010061E00EB1E000","010061E00EB1E000","status-playable","playable","2022-09-20 14:23:14.000" +"Down to Hell - 0100B6600FE06000","0100B6600FE06000","gpu;status-ingame;nvdec","ingame","2022-09-19 14:01:26.000" +"Funny Bunny Adventures","","status-playable","playable","2020-08-05 13:46:56.000" +"Crazy Zen Mini Golf","","status-playable","playable","2020-08-05 14:00:00.000" +"Drawngeon: Dungeons of Ink and Paper - 0100B7E0102E4000","0100B7E0102E4000","gpu;status-ingame","ingame","2022-09-19 15:41:25.000" +"Farming Simulator 20 - 0100EB600E914000","0100EB600E914000","nvdec;status-playable","playable","2021-06-13 10:52:44.000" +"DreamBall","","UE4;crash;gpu;status-ingame","ingame","2020-08-05 14:45:25.000" +"DEMON'S TILT - 0100BE800E6D8000","0100BE800E6D8000","status-playable","playable","2022-09-19 13:22:46.000" +"Heroland","","status-playable","playable","2020-08-05 15:35:39.000" +"Double Switch - 25th Anniversary Edition - 0100FC000EE10000","0100FC000EE10000","status-playable;nvdec","playable","2022-09-19 13:41:50.000" +"Ultimate Racing 2D","","status-playable","playable","2020-08-05 17:27:09.000" +"THOTH","","status-playable","playable","2020-08-05 18:35:28.000" +"SUPER ROBOT WARS X","","online;status-playable","playable","2020-08-05 19:18:51.000" +"Aborigenus","","status-playable","playable","2020-08-05 19:47:24.000" +"140","","status-playable","playable","2020-08-05 20:01:33.000" +"Goken","","status-playable","playable","2020-08-05 20:22:38.000" +"Maitetsu: Pure Station - 0100D9900F220000","0100D9900F220000","status-playable","playable","2022-09-20 15:12:49.000" +"Super Mega Space Blaster Special Turbo","","online;status-playable","playable","2020-08-06 12:13:25.000" +"Squidlit","","status-playable","playable","2020-08-06 12:38:32.000" +"Stories Untold - 010074400F6A8000","010074400F6A8000","status-playable;nvdec","playable","2022-12-22 01:08:46.000" +"Super Saurio Fly","","nvdec;status-playable","playable","2020-08-06 13:12:14.000" +"Hero Express","","nvdec;status-playable","playable","2020-08-06 13:23:43.000" +"Demolish & Build - 010099D00D1A4000","010099D00D1A4000","status-playable","playable","2021-06-13 15:27:26.000" +"Masquerada: Songs and Shadows - 0100113008262000","0100113008262000","status-playable","playable","2022-09-20 15:18:54.000" +"Dreaming Canvas - 010058B00F3C0000","010058B00F3C0000","UE4;gpu;status-ingame","ingame","2021-06-13 22:50:07.000" +"Time Tenshi","","","","2020-08-06 14:38:37.000" +"FoxyLand 2","","status-playable","playable","2020-08-06 14:41:30.000" +"Nicole - 0100A95012668000","0100A95012668000","status-playable;audout","playable","2022-10-05 16:41:44.000" +"Spiral Memoria -The Summer I Meet Myself-","","","","2020-08-06 15:19:11.000" +"Warhammer 40,000: Space Wolf - 0100E5600D7B2000","0100E5600D7B2000","status-playable;online-broken","playable","2022-09-20 21:11:20.000" +"KukkoroDays - 010022801242C000","010022801242C000","status-menus;crash","menus","2021-11-25 08:52:56.000" +"Shadows 2: Perfidia","","status-playable","playable","2020-08-07 12:43:46.000" +"Murasame No Sword Breaker PV","","","","2020-08-07 12:54:21.000" +"Escape from Chernobyl - 0100FEF00F0AA000","0100FEF00F0AA000","status-boots;crash","boots","2022-09-19 21:36:58.000" +"198X","","status-playable","playable","2020-08-07 13:24:38.000" +"Orn: The Tiny Forest Sprite","","UE4;gpu;status-ingame","ingame","2020-08-07 14:25:30.000" +"Oddworld: Stranger's Wrath HD - 01002EA00ABBA000","01002EA00ABBA000","status-menus;crash;nvdec;loader-allocator","menus","2021-11-23 09:23:21.000" +"Just Glide","","status-playable","playable","2020-08-07 17:38:10.000" +"Ember - 010041A00FEC6000","010041A00FEC6000","status-playable;nvdec","playable","2022-09-19 21:16:11.000" +"Crazy Strike Bowling EX","","UE4;gpu;nvdec;status-ingame","ingame","2020-08-07 18:15:59.000" +"requesting accessibility in the main UI","","","","2020-08-08 00:09:05.000" +"Invisible Fist","","status-playable","playable","2020-08-08 13:25:52.000" +"Nicky: The Home Alone Golf Ball","","status-playable","playable","2020-08-08 13:45:39.000" +"KING OF FIGHTERS R-2","","","","2020-08-09 12:39:55.000" +"The Walking Dead: Season Two","","status-playable","playable","2020-08-09 12:57:06.000" +"Yoru, tomosu","","","","2020-08-09 12:57:28.000" +"Zero Zero Zero Zero","","","","2020-08-09 13:14:58.000" +"Duke of Defense","","","","2020-08-09 13:34:52.000" +"Himno","","","","2020-08-09 13:51:57.000" +"The Walking Dead: A New Frontier - 010056E00B4F4000","010056E00B4F4000","status-playable","playable","2022-09-21 13:40:48.000" +"Cruel Bands Career","","","","2020-08-09 15:00:25.000" +"CARRION","","crash;status-nothing","nothing","2020-08-13 17:15:12.000" +"CODE SHIFTER","","status-playable","playable","2020-08-09 15:20:55.000" +"Ultra Hat Dimension - 01002D4012222000","01002D4012222000","services;audio;status-menus","menus","2021-11-18 09:05:20.000" +"Root Film","","","","2020-08-09 17:47:35.000" +"NAIRI: Tower of Shirin","","nvdec;status-playable","playable","2020-08-09 19:49:12.000" +"Panzer Paladin - 01004AE0108E0000","01004AE0108E0000","status-playable","playable","2021-05-05 18:26:00.000" +"Sinless","","nvdec;status-playable","playable","2020-08-09 20:18:55.000" +"Aviary Attorney: Definitive Edition","","status-playable","playable","2020-08-09 20:32:12.000" +"Lumini","","status-playable","playable","2020-08-09 20:45:09.000" +"Music Racer","","status-playable","playable","2020-08-10 08:51:23.000" +"Curious Cases","","status-playable","playable","2020-08-10 09:30:48.000" +"7th Sector","","nvdec;status-playable","playable","2020-08-10 14:22:14.000" +"Ash of Gods: Redemption","","deadlock;status-nothing","nothing","2020-08-10 18:08:32.000" +"The Turing Test - 0100EA100F516000","0100EA100F516000","status-playable;nvdec","playable","2022-09-21 13:24:07.000" +"The Town of Light - 010058000A576000","010058000A576000","gpu;status-playable","playable","2022-09-21 12:51:34.000" +"The Park","","UE4;crash;gpu;status-ingame","ingame","2020-12-18 12:50:07.000" +"Rogue Legacy","","status-playable","playable","2020-08-10 19:17:28.000" +"Nerved - 01008B0010160000","01008B0010160000","status-playable;UE4","playable","2022-09-20 17:14:03.000" +"Super Korotama - 010000D00F81A000","010000D00F81A000","status-playable","playable","2021-06-06 19:06:22.000" +"Mosaic","","status-playable","playable","2020-08-11 13:07:35.000" +"Pumped BMX Pro - 01009AE00B788000","01009AE00B788000","status-playable;nvdec;online-broken","playable","2022-09-20 17:40:50.000" +"The Dark Crystal","","status-playable","playable","2020-08-11 13:43:41.000" +"Ageless","","","","2020-08-11 13:52:24.000" +"EQQO - 0100E95010058000","0100E95010058000","UE4;nvdec;status-playable","playable","2021-06-13 23:10:51.000" +"LAST FIGHT - 01009E100BDD6000","01009E100BDD6000","status-playable","playable","2022-09-20 13:54:55.000" +"Neverending Nightmares - 0100F79012600000","0100F79012600000","crash;gpu;status-boots","boots","2021-04-24 01:43:35.000" +"Monster Jam Steel Titans - 010095C00F354000","010095C00F354000","status-menus;crash;nvdec;UE4","menus","2021-11-14 09:45:38.000" +"Star Story: The Horizon Escape","","status-playable","playable","2020-08-11 22:31:38.000" +"LOCO-SPORTS - 0100BA000FC9C000","0100BA000FC9C000","status-playable","playable","2022-09-20 14:09:30.000" +"Eclipse: Edge of Light","","status-playable","playable","2020-08-11 23:06:29.000" +"Psikyo Shooting Stars Alpha - 01007A200F2E2000","01007A200F2E2000","32-bit;status-playable","playable","2021-04-13 12:03:43.000" +"Monster Energy Supercross - The Official Videogame 3 - 010097800EA20000","010097800EA20000","UE4;audout;nvdec;online;status-playable","playable","2021-06-14 12:37:54.000" +"Musou Orochi 2 Ultimate","","crash;nvdec;status-boots","boots","2021-04-09 19:39:16.000" +"Alien Cruise","","status-playable","playable","2020-08-12 13:56:05.000" +"KUNAI - 010035A00DF62000","010035A00DF62000","status-playable;nvdec","playable","2022-09-20 13:48:34.000" +"Haunted Dungeons: Hyakki Castle","","status-playable","playable","2020-08-12 14:21:48.000" +"Tangledeep","","crash;status-boots","boots","2021-01-05 04:08:41.000" +"Azuran Tales: Trials","","status-playable","playable","2020-08-12 15:23:07.000" +"LOST ORBIT: Terminal Velocity - 010054600AC74000","010054600AC74000","status-playable","playable","2021-06-14 12:21:12.000" +"Monster Blast - 0100E2D0128E6000","0100E2D0128E6000","gpu;status-ingame","ingame","2023-09-02 20:02:32.000" +"Need a Packet?","","status-playable","playable","2020-08-12 16:09:01.000" +"Downwell - 010093D00C726000","010093D00C726000","status-playable","playable","2021-04-25 20:05:24.000" +"Dex","","nvdec;status-playable","playable","2020-08-12 16:48:12.000" +"Magicolors","","status-playable","playable","2020-08-12 18:39:11.000" +"Jisei: The First Case HD - 010038D011F08000","010038D011F08000","audio;status-playable","playable","2022-10-05 11:43:33.000" +"Mittelborg: City of Mages","","status-playable","playable","2020-08-12 19:58:06.000" +"Psikyo Shooting Stars Bravo - 0100D7400F2E4000","0100D7400F2E4000","32-bit;status-playable","playable","2021-06-14 12:09:07.000" +"STAB STAB STAB!","","","","2020-08-13 16:39:00.000" +"fault - milestone one","","nvdec;status-playable","playable","2021-03-24 10:41:49.000" +"Gerrrms","","status-playable","playable","2020-08-15 11:32:52.000" +"Aircraft Evolution - 0100E95011FDC000","0100E95011FDC000","nvdec;status-playable","playable","2021-06-14 13:30:18.000" +"Creaks","","status-playable","playable","2020-08-15 12:20:52.000" +"ARCADE FUZZ","","status-playable","playable","2020-08-15 12:37:36.000" +"Esports powerful pro yakyuu 2020 - 010073000FE18000","010073000FE18000","gpu;status-ingame;crash;Needs More Attention","ingame","2024-04-29 05:34:14.000" +"Arcade Archives ALPHA MISSION - 01005DD00BE08000","01005DD00BE08000","online;status-playable","playable","2021-04-15 09:20:43.000" +"Arcade Archives ALPINE SKI - 010083800DC70000","010083800DC70000","online;status-playable","playable","2021-04-15 09:28:46.000" +"Arcade Archives ARGUS - 010014F001DE2000","010014F001DE2000","online;status-playable","playable","2021-04-16 06:51:25.000" +"Arcade Archives Armed F - 010014F001DE2000","010014F001DE2000","online;status-playable","playable","2021-04-16 07:00:17.000" +"Arcade Archives ATHENA - 0100BEC00C7A2000","0100BEC00C7A2000","online;status-playable","playable","2021-04-16 07:10:12.000" +"Arcade Archives Atomic Robo-Kid - 0100426001DE4000","0100426001DE4000","online;status-playable","playable","2021-04-16 07:20:29.000" +"Arcade Archives BOMB JACK - 0100192009824000","0100192009824000","online;status-playable","playable","2021-04-16 09:48:26.000" +"Arcade Archives CLU CLU LAND - 0100EDC00E35A000","0100EDC00E35A000","online;status-playable","playable","2021-04-16 10:00:42.000" +"Arcade Archives EXCITEBIKE","","","","2020-08-19 12:08:03.000" +"Arcade Archives FRONT LINE - 0100496006EC8000","0100496006EC8000","online;status-playable","playable","2021-05-05 14:10:49.000" +"Arcade Archives ICE CLIMBER - 01007D200D3FC000","01007D200D3FC000","online;status-playable","playable","2021-05-05 14:18:34.000" +"Arcade Archives IKARI WARRIORS - 010049400C7A8000","010049400C7A8000","online;status-playable","playable","2021-05-05 14:24:46.000" +"Arcade Archives IMAGE FIGHT - 010008300C978000","010008300C978000","online;status-playable","playable","2021-05-05 14:31:21.000" +"Arcade Archives MOON CRESTA - 01000BE001DD8000","01000BE001DD8000","online;status-playable","playable","2021-05-05 14:39:29.000" +"Arcade Archives Ninja Spirit - 01002F300D2C6000","01002F300D2C6000","online;status-playable","playable","2021-05-05 14:45:31.000" +"Arcade Archives POOYAN - 0100A6E00D3F8000","0100A6E00D3F8000","online;status-playable","playable","2021-05-05 17:58:19.000" +"Arcade Archives PSYCHO SOLDIER - 01000D200C7A4000","01000D200C7A4000","online;status-playable","playable","2021-05-05 18:02:19.000" +"Arcade Archives ROAD FIGHTER - 0100FBA00E35C000","0100FBA00E35C000","online;status-playable","playable","2021-05-05 18:09:17.000" +"Arcade Archives ROUTE 16 - 010060000BF7C000","010060000BF7C000","online;status-playable","playable","2021-05-05 18:40:41.000" +"Arcade Archives Shusse Ozumo - 01007A4009834000","01007A4009834000","online;status-playable","playable","2021-05-05 17:52:25.000" +"Arcade Archives Solomon's Key - 01008C900982E000","01008C900982E000","online;status-playable","playable","2021-04-19 16:27:18.000" +"Arcade Archives TERRA FORCE - 0100348001DE6000","0100348001DE6000","online;status-playable","playable","2021-04-16 20:03:27.000" +"Arcade Archives THE NINJA WARRIORS - 0100DC000983A000","0100DC000983A000","online;slow;status-ingame","ingame","2021-04-16 19:54:56.000" +"Arcade Archives TIME PILOT - 0100AF300D2E8000","0100AF300D2E8000","online;status-playable","playable","2021-04-16 19:22:31.000" +"Arcade Archives URBAN CHAMPION - 010042200BE0C000","010042200BE0C000","online;status-playable","playable","2021-04-16 10:20:03.000" +"Arcade Archives WILD WESTERN - 01001B000D8B6000","01001B000D8B6000","online;status-playable","playable","2021-04-16 10:11:36.000" +"Arcade Archives GRADIUS","","","","2020-08-19 13:42:45.000" +"Evergate","","","","2020-08-19 22:28:07.000" +"Naught - 0100103011894000","0100103011894000","UE4;status-playable","playable","2021-04-26 13:31:45.000" +"Vitamin Connection ","","","","2020-08-19 23:18:42.000" +"Rock of Ages 3: Make & Break - 0100A1B00DB36000","0100A1B00DB36000","status-playable;UE4","playable","2022-10-06 12:18:29.000" +"Cubicity - 010040D011D04000","010040D011D04000","status-playable","playable","2021-06-14 14:19:51.000" +"Anima Gate of Memories: The Nameless Chronicles - 01007A400B3F8000","01007A400B3F8000","status-playable","playable","2021-06-14 14:33:06.000" +"Big Dipper - 0100A42011B28000","0100A42011B28000","status-playable","playable","2021-06-14 15:08:19.000" +"Dodo Peak - 01001770115C8000","01001770115C8000","status-playable;nvdec;UE4","playable","2022-10-04 16:13:05.000" +"Cube Creator X - 010001600D1E8000","010001600D1E8000","status-menus;crash","menus","2021-11-25 08:53:28.000" +"Raji An Ancient Epic","","UE4;gpu;nvdec;status-ingame","ingame","2020-12-16 10:05:25.000" +"Red Siren : Space Defense - 010045400D73E000","010045400D73E000","UE4;status-playable","playable","2021-04-25 21:21:29.000" +"Shanky: The Vegan's Nightmare - 01000C00CC10000","","status-playable","playable","2021-01-26 15:03:55.000" +"Cricket 19 - 010022D00D4F0000","010022D00D4F0000","gpu;status-ingame","ingame","2021-06-14 14:56:07.000" +"Florence","","status-playable","playable","2020-09-05 01:22:30.000" +"Banner of the Maid - 010013C010C5C000","010013C010C5C000","status-playable","playable","2021-06-14 15:23:37.000" +"Super Loop Drive - 01003E300FCAE000","01003E300FCAE000","status-playable;nvdec;UE4","playable","2022-09-22 10:58:05.000" +"Buried Stars","","status-playable","playable","2020-09-07 14:11:58.000" +"FINAL FANTASY CRYSTAL CHRONICLES Remastered Edition - 0100CE4010AAC000","0100CE4010AAC000","status-playable","playable","2023-04-02 23:39:12.000" +"Go All Out - 01000C800FADC000","01000C800FADC000","status-playable;online-broken","playable","2022-09-21 19:16:34.000" +"This Strange Realm of Mine","","status-playable","playable","2020-08-28 12:07:24.000" +"Silent World","","status-playable","playable","2020-08-28 13:45:13.000" +"Alder's Blood","","status-playable","playable","2020-08-28 15:15:23.000" +"Red Death","","status-playable","playable","2020-08-30 13:07:37.000" +"3000th Duel - 0100FB5010D2E000","0100FB5010D2E000","status-playable","playable","2022-09-21 17:12:08.000" +"Rise of Insanity","","status-playable","playable","2020-08-30 15:42:14.000" +"Darksiders Genesis - 0100F2300D4BA000","0100F2300D4BA000","status-playable;nvdec;online-broken;UE4;ldn-broken","playable","2022-09-21 18:06:25.000" +"Space Blaze","","status-playable","playable","2020-08-30 16:18:05.000" +"Two Point Hospital - 010031200E044000","010031200E044000","status-ingame;crash;nvdec","ingame","2022-09-22 11:22:23.000" +"Is It Wrong to Try to Pick Up Girls in a Dungeon? Infinite Combate","","status-playable","playable","2020-08-31 13:52:21.000" +"Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz","","status-playable","playable","2020-08-31 14:17:42.000" +"Cat Girl Without Salad: Amuse-Bouche - 010076000C86E000","010076000C86E000","status-playable","playable","2022-09-03 13:01:47.000" +"moon","","","","2020-08-31 15:46:23.000" +"Lines XL","","status-playable","playable","2020-08-31 17:48:23.000" +"Knightin'+","","status-playable","playable","2020-08-31 18:18:21.000" +"King Lucas - 0100E6B00FFBA000","0100E6B00FFBA000","status-playable","playable","2022-09-21 19:43:23.000" +"Skulls of the Shogun: Bone-a-fide Edition","","status-playable","playable","2020-08-31 18:58:12.000" +"SEGA AGES SONIC THE HEDGEHOG 2 - 01000D200C614000","01000D200C614000","status-playable","playable","2022-09-21 20:26:35.000" +"Devil May Cry 3 Special Edition - 01007B600D5BC000","01007B600D5BC000","status-playable;nvdec","playable","2024-07-08 12:33:23.000" +"Double Dragon & Kunio-Kun: Retro Brawler Bundle","","status-playable","playable","2020-09-01 12:48:46.000" +"Lost Horizon","","status-playable","playable","2020-09-01 13:41:22.000" +"Unlock the King","","status-playable","playable","2020-09-01 13:58:27.000" +"Vasilis","","status-playable","playable","2020-09-01 15:05:35.000" +"Mathland","","status-playable","playable","2020-09-01 15:40:06.000" +"MEGAMAN ZERO/ZX LEGACY COLLECTION - 010025C00D410000","010025C00D410000","status-playable","playable","2021-06-14 16:17:32.000" +"Afterparty - 0100DB100BBCE000","0100DB100BBCE000","status-playable","playable","2022-09-22 12:23:19.000" +"Tiny Racer - 01005D0011A40000","01005D0011A40000","status-playable","playable","2022-10-07 11:13:03.000" +"Skully - 0100D7B011654000","0100D7B011654000","status-playable;nvdec;UE4","playable","2022-10-06 13:52:59.000" +"Megadimension Neptunia VII","","32-bit;nvdec;status-playable","playable","2020-12-17 20:56:03.000" +"Kingdom Rush - 0100A280121F6000","0100A280121F6000","status-nothing;32-bit;crash;Needs More Attention","nothing","2022-10-05 12:34:00.000" +"Cubers: Arena - 010082E00F1CE000","010082E00F1CE000","status-playable;nvdec;UE4","playable","2022-10-04 16:05:40.000" +"Air Missions: HIND","","status-playable","playable","2020-12-13 10:16:45.000" +"Fairy Tail - 0100CF900FA3E000","0100CF900FA3E000","status-playable;nvdec","playable","2022-10-04 23:00:32.000" +"Sentinels of Freedom - 01009E500D29C000","01009E500D29C000","status-playable","playable","2021-06-14 16:42:19.000" +"SAMURAI SHOWDOWN NEOGEO COLLECTION - 0100F6800F48E000","0100F6800F48E000","nvdec;status-playable","playable","2021-06-14 17:12:56.000" +"Rugby Challenge 4 - 010009B00D33C000","010009B00D33C000","slow;status-playable;online-broken;UE4","playable","2022-10-06 12:45:53.000" +"Neon Abyss - 0100BAB01113A000","0100BAB01113A000","status-playable","playable","2022-10-05 15:59:44.000" +"Max & The Book of Chaos","","status-playable","playable","2020-09-02 12:24:43.000" +"Family Mysteries: Poisonous Promises - 0100034012606000","0100034012606000","audio;status-menus;crash","menus","2021-11-26 12:35:06.000" +"Interrogation: You will be deceived - 010041501005E000","010041501005E000","status-playable","playable","2022-10-05 11:40:10.000" +"Instant Sports Summer Games","","gpu;status-menus","menus","2020-09-02 13:39:28.000" +"AvoCuddle","","status-playable","playable","2020-09-02 14:50:13.000" +"Be-A Walker","","slow;status-ingame","ingame","2020-09-02 15:00:31.000" +"Soccer, Tactics & Glory - 010095C00F9DE000","010095C00F9DE000","gpu;status-ingame","ingame","2022-09-26 17:15:58.000" +"The Great Perhaps","","status-playable","playable","2020-09-02 15:57:04.000" +"Volta-X - 0100A7900E79C000","0100A7900E79C000","status-playable;online-broken","playable","2022-10-07 12:20:51.000" +"Hero Hours Contract","","","","2020-09-03 03:13:22.000" +"Starlit Adventures Golden Stars","","status-playable","playable","2020-11-21 12:14:43.000" +"Superliminal","","status-playable","playable","2020-09-03 13:20:50.000" +"Robozarro","","status-playable","playable","2020-09-03 13:33:40.000" +"QuietMansion2","","status-playable","playable","2020-09-03 14:59:35.000" +"DISTRAINT 2","","status-playable","playable","2020-09-03 16:08:12.000" +"Bloodstained: Curse of the Moon 2","","status-playable","playable","2020-09-04 10:56:27.000" +"Deadly Premonition 2 - 0100BAC011928000","0100BAC011928000","status-playable","playable","2021-06-15 14:12:36.000" +"CrossCode - 01003D90058FC000","01003D90058FC000","status-playable","playable","2024-02-17 10:23:19.000" +"Metro: Last Light Redux - 0100F0400E850000","0100F0400E850000","slow;status-ingame;nvdec;vulkan-backend-bug","ingame","2023-11-01 11:53:52.000" +"Soul Axiom Rebooted","","nvdec;slow;status-ingame","ingame","2020-09-04 12:41:01.000" +"Portal Dogs","","status-playable","playable","2020-09-04 12:55:46.000" +"Bucket Knight","","crash;status-ingame","ingame","2020-09-04 13:11:24.000" +"Arcade Archives LIFE FORCE","","status-playable","playable","2020-09-04 13:26:25.000" +"Stela - 01002DE01043E000","01002DE01043E000","UE4;status-playable","playable","2021-06-15 13:28:34.000" +"7 Billion Humans","","32-bit;status-playable","playable","2020-12-17 21:04:58.000" +"Rack N Ruin","","status-playable","playable","2020-09-04 15:20:26.000" +"Piffle","","","","2020-09-06 00:07:53.000" +"BATTOJUTSU","","","","2020-09-06 00:07:58.000" +"Super Battle Cards","","","","2020-09-06 00:08:01.000" +"Hayfever - 0100EA900FB2C000","0100EA900FB2C000","status-playable;loader-allocator","playable","2022-09-22 17:35:41.000" +"Save Koch - 0100C8300FA90000","0100C8300FA90000","status-playable","playable","2022-09-26 17:06:56.000" +"MY HERO ONE'S JUSTICE 2","","UE4;gpu;nvdec;status-ingame","ingame","2020-12-18 14:08:47.000" +"Deep Diving Adventures - 010026800FA88000","010026800FA88000","status-playable","playable","2022-09-22 16:43:37.000" +"Trials of Mana Demo - 0100E1D00FBDE000","0100E1D00FBDE000","status-playable;nvdec;UE4;demo;vulkan-backend-bug","playable","2022-09-26 18:00:02.000" +"Sky Racket","","status-playable","playable","2020-09-07 12:22:24.000" +"LA-MULANA 1 & 2 - 0100E5D00F4AE000","0100E5D00F4AE000","status-playable","playable","2022-09-22 17:56:36.000" +"Exit the Gungeon - 0100DD30110CC000","0100DD30110CC000","status-playable","playable","2022-09-22 17:04:43.000" +"Super Mario 3D All-Stars - 010049900F546000","010049900F546000","services-horizon;slow;status-ingame;vulkan;amd-vendor-bug","ingame","2024-05-07 02:38:16.000" +"Cupid Parasite - 0100F7E00DFC8000","0100F7E00DFC8000","gpu;status-ingame","ingame","2023-08-21 05:52:36.000" +"Toraware no Paruma Deluxe Edition","","","","2020-09-20 09:34:41.000" +"Uta no☆Prince-sama♪ Repeat Love - 010024200E00A000","010024200E00A000","status-playable;nvdec","playable","2022-12-09 09:21:51.000" +"Clock Zero ~Shuuen no Ichibyou~ Devote - 01008C100C572000","01008C100C572000","status-playable;nvdec","playable","2022-12-04 22:19:14.000" +"Dear Magi - Mahou Shounen Gakka -","","status-playable","playable","2020-11-22 16:45:16.000" +"Reine des Fleurs","","cpu;crash;status-boots","boots","2020-09-27 18:50:39.000" +"Kaeru Batake DE Tsukamaete","","","","2020-09-20 17:06:57.000" +"Koi no Hanasaku Hyakkaen","","32-bit;gpu;nvdec;status-ingame","ingame","2020-10-03 14:17:10.000" +"Brothers Conflict: Precious Baby","","","","2020-09-20 19:13:24.000" +"Dairoku: Ayakashimori - 010061300DF48000","010061300DF48000","status-nothing;Needs Update;loader-allocator","nothing","2021-11-30 05:09:38.000" +"Yunohana Spring! - Mellow Times -","","audio;crash;status-menus","menus","2020-09-27 19:27:40.000" +"Nil Admirari no Tenbin: Irodori Nadeshiko","","","","2020-09-21 15:59:26.000" +"Shiritsu Berubara Gakuen ~Versailles no Bara Re*imagination~","","cpu;crash;status-boots","boots","2020-09-27 19:01:25.000" +"BEAST Darling! ~Kemomimi Danshi to Himitsu no Ryou~","","crash;status-menus","menus","2020-10-04 06:12:08.000" +"Kin'iro no Corda Octave","","status-playable","playable","2020-09-22 13:23:12.000" +"Moujuutsukai to Ouji-sama ~Flower & Snow~","","","","2020-09-22 17:22:03.000" +"Spooky Ghosts Dot Com - 0100C6100D75E000","0100C6100D75E000","status-playable","playable","2021-06-15 15:16:11.000" +"NBA 2K21 - 0100E24011D1E000","0100E24011D1E000","gpu;status-boots","boots","2022-10-05 15:31:51.000" +"Commander Keen in Keen Dreams - 0100C4D00D16A000","0100C4D00D16A000","gpu;status-ingame","ingame","2022-08-04 20:34:20.000" +"Minecraft - 0100D71004694000","0100D71004694000","status-ingame;crash;ldn-broken","ingame","2024-09-29 12:08:59.000" +"PGA TOUR 2K21 - 010053401147C000","010053401147C000","deadlock;status-ingame;nvdec","ingame","2022-10-05 21:53:50.000" +"The Executioner - 0100C2E0129A6000","0100C2E0129A6000","nvdec;status-playable","playable","2021-01-23 00:31:28.000" +"Tamiku - 010008A0128C4000","010008A0128C4000","gpu;status-ingame","ingame","2021-06-15 20:06:55.000" +"Shinobi, Koi Utsutsu","","","","2020-09-23 11:04:27.000" +"Hades - 0100535012974000","0100535012974000","status-playable;vulkan","playable","2022-10-05 10:45:21.000" +"Wolfenstein: Youngblood - 01003BD00CAAE000","01003BD00CAAE000","status-boots;online-broken","boots","2024-07-12 23:49:20.000" +"Taimumari: Complete Edition - 010040A00EA26000","010040A00EA26000","status-playable","playable","2022-12-06 13:34:49.000" +"Sangoku Rensenki ~Otome no Heihou!~","","gpu;nvdec;status-ingame","ingame","2020-10-17 19:13:14.000" +"Norn9 ~Norn + Nonette~ LOFN - 01001A500AD6A000","01001A500AD6A000","status-playable;nvdec;vulkan-backend-bug","playable","2022-12-09 09:29:16.000" +"Disaster Report 4: Summer Memories - 010020700E2A2000","010020700E2A2000","status-playable;nvdec;UE4","playable","2022-09-27 19:41:31.000" +"No Straight Roads - 01009F3011004000","01009F3011004000","status-playable;nvdec","playable","2022-10-05 17:01:38.000" +"Gnosia - 01008EF013A7C000","01008EF013A7C000","status-playable","playable","2021-04-05 17:20:30.000" +"Shin Hayarigami 1 and 2 Pack","","","","2020-09-25 15:56:19.000" +"Gothic Murder: Adventure That Changes Destiny","","deadlock;status-ingame;crash","ingame","2022-09-30 23:16:53.000" +"Grand Theft Auto 3 - 05B1D2ABD3D30000","05B1D2ABD3D30000","services;status-nothing;crash;homebrew","nothing","2023-05-01 22:01:58.000" +"Super Mario 64 - 054507E0B7552000","054507E0B7552000","status-ingame;homebrew","ingame","2024-03-20 16:57:27.000" +"Satsujin Tantei Jack the Ripper - 0100A4700BC98000","0100A4700BC98000","status-playable","playable","2021-06-21 16:32:54.000" +"Yoshiwara Higanbana Kuon no Chigiri","","nvdec;status-playable","playable","2020-10-17 19:14:46.000" +"Katakoi Contrast - collection of branch - - 01007FD00DB20000","01007FD00DB20000","status-playable;nvdec","playable","2022-12-09 09:41:26.000" +"Tlicolity Eyes - twinkle showtime - - 010019500DB1E000","010019500DB1E000","gpu;status-boots","boots","2021-05-29 19:43:44.000" +"Omega Vampire","","nvdec;status-playable","playable","2020-10-17 19:15:35.000" +"Iris School of Wizardry - Vinculum Hearts - - 0100AD300B786000","0100AD300B786000","status-playable","playable","2022-12-05 13:11:15.000" +"Meiji Katsugeki Haikara Ryuuseigumi - Seibai Shimaseu, Yonaoshi Kagyou - 0100EA100DF92000","0100EA100DF92000","32-bit;status-playable;nvdec","playable","2022-12-05 13:19:12.000" +"Undead Darlings ~no cure for love~","","","","2020-09-30 08:34:06.000" +"LEGO Marvel Super Heroes 2 - 0100D3A00409E000","0100D3A00409E000","status-nothing;crash","nothing","2023-03-02 17:12:33.000" +"RollerCoaster Tycoon 3: Complete Edition - 01004900113F8000","01004900113F8000","32-bit;status-playable","playable","2022-10-17 14:18:01.000" +"R.B.I. Baseball 20 - 010061400E7D4000","010061400E7D4000","status-playable","playable","2021-06-15 21:16:29.000" +"BATTLESLOTHS","","status-playable","playable","2020-10-03 08:32:22.000" +"Explosive Jake - 01009B7010B42000","01009B7010B42000","status-boots;crash","boots","2021-11-03 07:48:32.000" +"Dezatopia - 0100AFC00E06A000","0100AFC00E06A000","online;status-playable","playable","2021-06-15 21:06:11.000" +"Wordify","","status-playable","playable","2020-10-03 09:01:07.000" +"Wizards: Wand of Epicosity - 0100C7600E77E000","0100C7600E77E000","status-playable","playable","2022-10-07 12:32:06.000" +"Titan Glory - 0100FE801185E000","0100FE801185E000","status-boots","boots","2022-10-07 11:36:40.000" +"Soccer Pinball - 0100B5000E05C000","0100B5000E05C000","UE4;gpu;status-ingame","ingame","2021-06-15 20:56:51.000" +"Steam Tactics - 0100AE100DAFA000","0100AE100DAFA000","status-playable","playable","2022-10-06 16:53:45.000" +"Trover Saves the Universe","","UE4;crash;status-nothing","nothing","2020-10-03 10:25:27.000" +"112th Seed","","status-playable","playable","2020-10-03 10:32:38.000" +"Spitlings - 010042700E3FC000","010042700E3FC000","status-playable;online-broken","playable","2022-10-06 16:42:39.000" +"Unlock the King 2 - 0100A3E011CB0000","0100A3E011CB0000","status-playable","playable","2021-06-15 20:43:55.000" +"Preventive Strike - 010009300D278000","010009300D278000","status-playable;nvdec","playable","2022-10-06 10:55:51.000" +"Hidden - 01004E800F03C000","01004E800F03C000","slow;status-ingame","ingame","2022-10-05 10:56:53.000" +"Pulstario - 0100861012474000","0100861012474000","status-playable","playable","2022-10-06 11:02:01.000" +"Frontline Zed","","status-playable","playable","2020-10-03 12:55:59.000" +"bayala - the game - 0100194010422000","0100194010422000","status-playable","playable","2022-10-04 14:09:25.000" +"City Bus Driving Simulator - 01005E501284E000","01005E501284E000","status-playable","playable","2021-06-15 21:25:59.000" +"Memory Lane - 010062F011E7C000","010062F011E7C000","status-playable;UE4","playable","2022-10-05 14:31:03.000" +"Minefield - 0100B7500F756000","0100B7500F756000","status-playable","playable","2022-10-05 15:03:29.000" +"Double Kick Heroes","","gpu;status-ingame","ingame","2020-10-03 14:33:59.000" +"Little Shopping","","status-playable","playable","2020-10-03 16:34:35.000" +"Car Quest - 01007BD00AE70000","01007BD00AE70000","deadlock;status-menus","menus","2021-11-18 08:59:18.000" +"RogueCube - 0100C7300C0EC000","0100C7300C0EC000","status-playable","playable","2021-06-16 12:16:42.000" +"Timber Tennis Versus","","online;status-playable","playable","2020-10-03 17:07:15.000" +"Swimsanity! - 010049D00C8B0000","010049D00C8B0000","status-menus;online","menus","2021-11-26 14:27:16.000" +"Dininho Adventures","","status-playable","playable","2020-10-03 17:25:51.000" +"Rhythm of the Gods","","UE4;crash;status-nothing","nothing","2020-10-03 17:39:59.000" +"Rainbows, toilets & unicorns","","nvdec;status-playable","playable","2020-10-03 18:08:18.000" +"Super Mario Bros. 35 - 0100277011F1A000","0100277011F1A000","status-menus;online-broken","menus","2022-08-07 16:27:25.000" +"Bohemian Killing - 0100AD1010CCE000","0100AD1010CCE000","status-playable;vulkan-backend-bug","playable","2022-09-26 22:41:37.000" +"Colorgrid","","status-playable","playable","2020-10-04 01:50:52.000" +"Dogurai","","status-playable","playable","2020-10-04 02:40:16.000" +"The Legend of Heroes: Trails of Cold Steel III Demo - 01009B101044C000","01009B101044C000","demo;nvdec;status-playable","playable","2021-04-23 01:07:32.000" +"Star Wars Jedi Knight: Jedi Academy - 01008CA00FAE8000","01008CA00FAE8000","gpu;status-boots","boots","2021-06-16 12:35:30.000" +"Panzer Dragoon: Remake","","status-playable","playable","2020-10-04 04:03:55.000" +"Blackmoor2 - 0100A0A00E660000","0100A0A00E660000","status-playable;online-broken","playable","2022-09-26 20:26:34.000" +"CHAOS CODE -NEW SIGN OF CATASTROPHE- - 01007600115CE000","01007600115CE000","status-boots;crash;nvdec","boots","2022-04-04 12:24:21.000" +"Saints Row IV - 01008D100D43E000","01008D100D43E000","status-playable;ldn-untested;LAN","playable","2023-12-04 18:33:37.000" +"Troubleshooter","","UE4;crash;status-nothing","nothing","2020-10-04 13:46:50.000" +"Children of Zodiarcs","","status-playable","playable","2020-10-04 14:23:33.000" +"VtM Coteries of New York","","status-playable","playable","2020-10-04 14:55:22.000" +"Grand Guilds - 010038100D436000","010038100D436000","UE4;nvdec;status-playable","playable","2021-04-26 12:49:05.000" +"Best Friend Forever","","","","2020-10-04 15:41:42.000" +"Copperbell","","status-playable","playable","2020-10-04 15:54:36.000" +"Deep Sky Derelicts Definitive Edition - 0100C3E00D68E000","0100C3E00D68E000","status-playable","playable","2022-09-27 11:21:08.000" +"Wanba Warriors","","status-playable","playable","2020-10-04 17:56:22.000" +"Mist Hunter - 010059200CC40000","010059200CC40000","status-playable","playable","2021-06-16 13:58:58.000" +"Shinsekai Into the Depths - 01004EE0104F6000","01004EE0104F6000","status-playable","playable","2022-09-28 14:07:51.000" +"ELEA: Paradigm Shift","","UE4;crash;status-nothing","nothing","2020-10-04 19:07:43.000" +"Harukanaru Toki no Naka De 7","","","","2020-10-05 10:12:41.000" +"Saiaku Naru Saiyaku Ningen ni Sasagu","","","","2020-10-05 10:26:45.000" +"planetarian HD ~the reverie of a little planet~","","status-playable","playable","2020-10-17 20:26:20.000" +"Hypnospace Outlaw - 0100959010466000","0100959010466000","status-ingame;nvdec","ingame","2023-08-02 22:46:49.000" +"Dei Gratia no Rashinban - 010071C00CBA4000","010071C00CBA4000","crash;status-nothing","nothing","2021-07-13 02:25:32.000" +"Rogue Company","","","","2020-10-05 17:52:10.000" +"MX Nitro - 0100161009E5C000","0100161009E5C000","status-playable","playable","2022-09-27 22:34:33.000" +"Wanderjahr TryAgainOrWalkAway","","status-playable","playable","2020-12-16 09:46:04.000" +"Pooplers","","status-playable","playable","2020-11-02 11:52:10.000" +"Beyond Enemy Lines: Essentials - 0100B8F00DACA000","0100B8F00DACA000","status-playable;nvdec;UE4","playable","2022-09-26 19:48:16.000" +"Lust for Darkness: Dawn Edition - 0100F0B00F68E000","0100F0B00F68E000","nvdec;status-playable","playable","2021-06-16 13:47:46.000" +"Nerdook Bundle Vol. 1","","gpu;slow;status-ingame","ingame","2020-10-07 14:27:10.000" +"Indie Puzzle Bundle Vol 1 - 0100A2101107C000","0100A2101107C000","status-playable","playable","2022-09-27 22:23:21.000" +"Wurroom","","status-playable","playable","2020-10-07 22:46:21.000" +"Valley - 0100E0E00B108000","0100E0E00B108000","status-playable;nvdec","playable","2022-09-28 19:27:58.000" +"FIFA 21 Legacy Edition - 01000A001171A000","01000A001171A000","gpu;status-ingame;online-broken","ingame","2023-12-11 22:10:19.000" +"Hotline Miami Collection - 0100D0E00E51E000","0100D0E00E51E000","status-playable;nvdec","playable","2022-09-09 16:41:19.000" +"QuakespasmNX","","status-nothing;crash;homebrew","nothing","2022-07-23 19:28:07.000" +"nxquake2","","services;status-nothing;crash;homebrew","nothing","2022-08-04 23:14:04.000" +"ONE PIECE: PIRATE WARRIORS 4 - 01008FE00E2F6000","01008FE00E2F6000","status-playable;online-broken;ldn-untested","playable","2022-09-27 22:55:46.000" +"The Complex - 01004170113D4000","01004170113D4000","status-playable;nvdec","playable","2022-09-28 14:35:41.000" +"Gigantosaurus The Game - 01002C400E526000","01002C400E526000","status-playable;UE4","playable","2022-09-27 21:20:00.000" +"TY the Tasmanian Tiger","","32-bit;crash;nvdec;status-menus","menus","2020-12-17 21:15:00.000" +"Speaking Simulator","","status-playable","playable","2020-10-08 13:00:39.000" +"Pikmin 3 Deluxe Demo - 01001CB0106F8000","01001CB0106F8000","32-bit;crash;demo;gpu;status-ingame","ingame","2021-06-16 18:38:07.000" +"Rascal Fight","","status-playable","playable","2020-10-08 13:23:30.000" +"Rain City","","status-playable","playable","2020-10-08 16:59:03.000" +"Fury Unleashed Demo","","status-playable","playable","2020-10-08 20:09:21.000" +"Bridge 3","","status-playable","playable","2020-10-08 20:47:24.000" +"RMX Real Motocross","","status-playable","playable","2020-10-08 21:06:15.000" +"Birthday of Midnight","","","","2020-10-09 09:43:24.000" +"WARSAW","","","","2020-10-09 10:31:40.000" +"Candy Raid: The Factory","","","","2020-10-09 10:43:39.000" +"World for Two","","","","2020-10-09 12:37:07.000" +"Voxel Pirates - 0100AFA011068000","0100AFA011068000","status-playable","playable","2022-09-28 22:55:02.000" +"Voxel Galaxy - 0100B1E0100A4000","0100B1E0100A4000","status-playable","playable","2022-09-28 22:45:02.000" +"Journey of the Broken Circle","","","","2020-10-09 13:24:52.000" +"Daggerhood","","","","2020-10-09 13:54:02.000" +"Flipon","","","","2020-10-09 14:23:40.000" +"Nevaeh - 0100C20012A54000","0100C20012A54000","gpu;nvdec;status-ingame","ingame","2021-06-16 17:29:03.000" +"Bookbound Brigade","","status-playable","playable","2020-10-09 14:30:29.000" +"Aery - Sky Castle - 010018E012914000","010018E012914000","status-playable","playable","2022-10-21 17:58:49.000" +"Nickelodeon Kart Racers 2 Grand Prix","","","","2020-10-09 14:54:17.000" +"Issho ni Asobo Koupen chan","","","","2020-10-09 14:57:27.000" +"Kono Subarashii Sekai ni Shukufuku o Kono Yokubo no Isho ni Choai o - 010016C011AAA000","010016C011AAA000","status-playable","playable","2023-04-26 09:51:08.000" +"Kono Subarashii Sekai ni Shukufuku wo! Kurenai Densetsu","","","","2020-10-09 15:06:00.000" +"Hide & Dance!","","","","2020-10-09 15:10:06.000" +"Pro Yakyuu Famista 2020","","","","2020-10-09 15:21:25.000" +"METAL MAX Xeno Reborn - 0100E8F00F6BE000","0100E8F00F6BE000","status-playable","playable","2022-12-05 15:33:53.000" +"Ikenfell - 010040900AF46000","010040900AF46000","status-playable","playable","2021-06-16 17:18:44.000" +"Depixtion","","status-playable","playable","2020-10-10 18:52:37.000" +"GREEN The Life Algorithm - 0100DFE00F002000","0100DFE00F002000","status-playable","playable","2022-09-27 21:37:13.000" +"Served! A gourmet race - 0100B2C00E4DA000","0100B2C00E4DA000","status-playable;nvdec","playable","2022-09-28 12:46:00.000" +"OTTTD","","slow;status-ingame","ingame","2020-10-10 19:31:07.000" +"Metamorphosis - 010055200E87E000","010055200E87E000","UE4;audout;gpu;nvdec;status-ingame","ingame","2021-06-16 16:18:11.000" +"Zero Strain - 01004B001058C000","01004B001058C000","services;status-menus;UE4","menus","2021-11-10 07:48:32.000" +"Time Carnage - 01004C500B698000","01004C500B698000","status-playable","playable","2021-06-16 17:57:28.000" +"Spiritfarer - 0100BD400DC52000","0100BD400DC52000","gpu;status-ingame","ingame","2022-10-06 16:31:38.000" +"Street Power Soccer","","UE4;crash;status-boots","boots","2020-11-21 12:28:57.000" +"OZMAFIA!! -vivace-","","","","2020-10-12 10:24:45.000" +"Road to Guangdong","","slow;status-playable","playable","2020-10-12 12:15:32.000" +"Prehistoric Dude","","gpu;status-ingame","ingame","2020-10-12 12:38:48.000" +"MIND Path to Thalamus - 0100F5700C9A8000","0100F5700C9A8000","UE4;status-playable","playable","2021-06-16 17:37:25.000" +"Manifold Garden","","status-playable","playable","2020-10-13 20:27:13.000" +"INMOST - 0100F1401161E000","0100F1401161E000","status-playable","playable","2022-10-05 11:27:40.000" +"G.I. Joe Operation Blackout","","UE4;crash;status-boots","boots","2020-11-21 12:37:44.000" +"Petal Crash","","","","2020-10-14 07:58:02.000" +"Helheim Hassle","","status-playable","playable","2020-10-14 11:38:36.000" +"FuzzBall - 010067600F1A0000","010067600F1A0000","crash;status-nothing","nothing","2021-03-29 20:13:21.000" +"Fight Crab - 01006980127F0000","01006980127F0000","status-playable;online-broken;ldn-untested","playable","2022-10-05 10:24:04.000" +"Faeria - 010069100DB08000","010069100DB08000","status-menus;nvdec;online-broken","menus","2022-10-04 16:44:41.000" +"Escape from Tethys","","status-playable","playable","2020-10-14 22:38:25.000" +"Chinese Parents - 010046F012A04000","010046F012A04000","status-playable","playable","2021-04-08 12:56:41.000" +"Boomerang Fu - 010081A00EE62000","010081A00EE62000","status-playable","playable","2024-07-28 01:12:41.000" +"Bite the Bullet","","status-playable","playable","2020-10-14 23:10:11.000" +"Pretty Princess Magical Coordinate","","status-playable","playable","2020-10-15 11:43:41.000" +"A Short Hike","","status-playable","playable","2020-10-15 00:19:58.000" +"HYPERCHARGE: Unboxed - 0100A8B00F0B4000","0100A8B00F0B4000","status-playable;nvdec;online-broken;UE4;ldn-untested","playable","2022-09-27 21:52:39.000" +"Anima: Gate of Memories - 0100706005B6A000","0100706005B6A000","nvdec;status-playable","playable","2021-06-16 18:13:18.000" +"Perky Little Things - 01005CD012DC0000","01005CD012DC0000","status-boots;crash;vulkan","boots","2024-08-04 07:22:46.000" +"Save Your Nuts - 010091000F72C000","010091000F72C000","status-playable;nvdec;online-broken;UE4","playable","2022-09-27 23:12:02.000" +"Unknown Fate","","slow;status-ingame","ingame","2020-10-15 12:27:42.000" +"Picross S4","","status-playable","playable","2020-10-15 12:33:46.000" +"The Station - 010007F00AF56000","010007F00AF56000","status-playable","playable","2022-09-28 18:15:27.000" +"Liege Dragon - 010041F0128AE000","010041F0128AE000","status-playable","playable","2022-10-12 10:27:03.000" +"G-MODE Archives 06 The strongest ever Julia Miyamoto","","status-playable","playable","2020-10-15 13:06:26.000" +"Prinny: Can I Really Be the Hero? - 01007A0011878000","01007A0011878000","32-bit;status-playable;nvdec","playable","2023-10-22 09:25:25.000" +"Prinny 2: Dawn of Operation Panties, Dood! - 01008FA01187A000","01008FA01187A000","32-bit;status-playable","playable","2022-10-13 12:42:58.000" +"Convoy","","status-playable","playable","2020-10-15 14:43:50.000" +"Fight of Animals","","online;status-playable","playable","2020-10-15 15:08:28.000" +"Strawberry Vinegar - 0100D7E011C64000","0100D7E011C64000","status-playable;nvdec","playable","2022-12-05 16:25:40.000" +"Inside Grass: A little adventure","","status-playable","playable","2020-10-15 15:26:27.000" +"Battle Princess Madelyn Royal Edition - 0100A7500DF64000","0100A7500DF64000","status-playable","playable","2022-09-26 19:14:49.000" +"A HERO AND A GARDEN - 01009E1011EC4000","01009E1011EC4000","status-playable","playable","2022-12-05 16:37:47.000" +"Trials of Mana - 0100D7800E9E0000","0100D7800E9E0000","status-playable;UE4","playable","2022-09-30 21:50:37.000" +"Ultimate Fishing Simulator - 010048901295C000","010048901295C000","status-playable","playable","2021-06-16 18:38:23.000" +"Struggling","","status-playable","playable","2020-10-15 20:37:03.000" +"Samurai Jack Battle Through Time - 01006C600E46E000","01006C600E46E000","status-playable;nvdec;UE4","playable","2022-10-06 13:33:59.000" +"House Flipper - 0100CAE00EB02000","0100CAE00EB02000","status-playable","playable","2021-06-16 18:28:32.000" +"Aokana - Four Rhythms Across the Blue - 0100990011866000","0100990011866000","status-playable","playable","2022-10-04 13:50:26.000" +"NARUTO SHIPPUDEN: ULTIMATE NINJA STORM 4 ROAD TO BORUTO - 010084D00CF5E000","010084D00CF5E000","status-playable","playable","2024-06-29 13:04:22.000" +"Where Angels Cry - 010027D011C9C000","010027D011C9C000","gpu;status-ingame;nvdec","ingame","2022-09-30 22:24:47.000" +"The Copper Canyon Dixie Dash - 01000F20102AC000","01000F20102AC000","status-playable;UE4","playable","2022-09-29 11:42:29.000" +"Cloudpunk","","","","2020-10-15 23:03:55.000" +"MotoGP 20 - 01001FA00FBBC000","01001FA00FBBC000","status-playable;ldn-untested","playable","2022-09-29 17:58:01.000" +"Little Town Hero","","status-playable","playable","2020-10-15 23:28:48.000" +"Broken Lines","","status-playable","playable","2020-10-16 00:01:37.000" +"Crown Trick - 0100059012BAE000","0100059012BAE000","status-playable","playable","2021-06-16 19:36:29.000" +"Archaica: Path of LightInd","","crash;status-nothing","nothing","2020-10-16 13:22:26.000" +"Indivisible - 01001D3003FDE000","01001D3003FDE000","status-playable;nvdec","playable","2022-09-29 15:20:57.000" +"Thy Sword - 01000AC011588000","01000AC011588000","status-ingame;crash","ingame","2022-09-30 16:43:14.000" +"Spirit of the North - 01005E101122E000","01005E101122E000","status-playable;UE4","playable","2022-09-30 11:40:47.000" +"Megabyte Punch","","status-playable","playable","2020-10-16 14:07:18.000" +"Book of Demons - 01007A200F452000","01007A200F452000","status-playable","playable","2022-09-29 12:03:43.000" +"80's OVERDRIVE","","status-playable","playable","2020-10-16 14:33:32.000" +"My Universe My Baby","","","","2020-10-17 14:04:01.000" +"Mario Kart Live: Home Circuit - 0100ED100BA3A000","0100ED100BA3A000","services;status-nothing;crash;Needs More Attention","nothing","2022-12-07 22:36:52.000" +"STONE - 010070D00F640000","010070D00F640000","status-playable;UE4","playable","2022-09-30 11:53:32.000" +"Newt One","","status-playable","playable","2020-10-17 21:21:48.000" +"Zoids Wild Blast Unleashed - 010069C0123D8000","010069C0123D8000","status-playable;nvdec","playable","2022-10-15 11:26:59.000" +"KINGDOM HEARTS Melody of Memory DEMO","","","","2020-10-18 14:57:30.000" +"Escape First","","status-playable","playable","2020-10-20 22:46:53.000" +"If My Heart Had Wings - 01001AC00ED72000","01001AC00ED72000","status-playable","playable","2022-09-29 14:54:57.000" +"Felix the Reaper","","nvdec;status-playable","playable","2020-10-20 23:43:03.000" +"War-Torn Dreams","","crash;status-nothing","nothing","2020-10-21 11:36:16.000" +"TT Isle of Man 2 - 010000400F582000","010000400F582000","gpu;status-ingame;nvdec;online-broken","ingame","2022-09-30 22:13:05.000" +"Kholat - 0100F680116A2000","0100F680116A2000","UE4;nvdec;status-playable","playable","2021-06-17 11:52:48.000" +"Dungeon of the Endless - 010034300F0E2000","010034300F0E2000","nvdec;status-playable","playable","2021-05-27 19:16:26.000" +"Gravity Rider Zero - 01002C2011828000","01002C2011828000","gpu;status-ingame;vulkan-backend-bug","ingame","2022-09-29 13:56:13.000" +"Oddworld: Munch's Oddysee - 0100BB500EE3C000","0100BB500EE3C000","gpu;nvdec;status-ingame","ingame","2021-06-17 12:11:50.000" +"Five Nights at Freddy's: Help Wanted - 0100F7901118C000","0100F7901118C000","status-playable;UE4","playable","2022-09-29 12:40:09.000" +"Gates of Hell","","slow;status-playable","playable","2020-10-22 12:44:26.000" +"Concept Destruction - 0100971011224000","0100971011224000","status-playable","playable","2022-09-29 12:28:56.000" +"Zenge","","status-playable","playable","2020-10-22 13:23:57.000" +"Water Balloon Mania","","status-playable","playable","2020-10-23 20:20:59.000" +"The Persistence - 010050101127C000","010050101127C000","nvdec;status-playable","playable","2021-06-06 19:15:40.000" +"The House of Da Vinci 2","","status-playable","playable","2020-10-23 20:47:17.000" +"The Experiment: Escape Room - 01006050114D4000","01006050114D4000","gpu;status-ingame","ingame","2022-09-30 13:20:35.000" +"Telling Lies","","status-playable","playable","2020-10-23 21:14:51.000" +"She Sees Red - 01000320110C2000","01000320110C2000","status-playable;nvdec","playable","2022-09-30 11:30:15.000" +"Golf With Your Friends - 01006FB00EBE0000","01006FB00EBE0000","status-playable;online-broken","playable","2022-09-29 12:55:11.000" +"Island Saver","","nvdec;status-playable","playable","2020-10-23 22:07:02.000" +"Devil May Cry 2 - 01007CF00D5BA000","01007CF00D5BA000","status-playable;nvdec","playable","2023-01-24 23:03:20.000" +"The Otterman Empire - 0100B0101265C000","0100B0101265C000","UE4;gpu;status-ingame","ingame","2021-06-17 12:27:15.000" +"SaGa SCARLET GRACE: AMBITIONS - 010003A00D0B4000","010003A00D0B4000","status-playable","playable","2022-10-06 13:20:31.000" +"REZ PLZ","","status-playable","playable","2020-10-24 13:26:12.000" +"Bossgard - 010076F00EBE4000","010076F00EBE4000","status-playable;online-broken","playable","2022-10-04 14:21:13.000" +"1993 Shenandoah","","status-playable","playable","2020-10-24 13:55:42.000" +"Ori and the Will of the Wisps - 01008DD013200000","01008DD013200000","status-playable","playable","2023-03-07 00:47:13.000" +"WWE 2K Battlegrounds - 010081700EDF4000","010081700EDF4000","status-playable;nvdec;online-broken;UE4","playable","2022-10-07 12:44:40.000" +"Shaolin vs Wutang : Eastern Heroes - 01003AB01062C000","01003AB01062C000","deadlock;status-nothing","nothing","2021-03-29 20:38:54.000" +"Mini Motor Racing X - 01003560119A6000","01003560119A6000","status-playable","playable","2021-04-13 17:54:49.000" +"Secret Files 3","","nvdec;status-playable","playable","2020-10-24 15:32:39.000" +"Othercide - 0100E5900F49A000","0100E5900F49A000","status-playable;nvdec","playable","2022-10-05 19:04:38.000" +"Eiga Sumikko Gurashi Tobidasu Ehon to Himitsu no Ko Game de Asobo Ehon no Sekai","","status-playable","playable","2020-11-12 00:11:50.000" +"Party Hard 2 - 010022801217E000","010022801217E000","status-playable;nvdec","playable","2022-10-05 20:31:48.000" +"Paradise Killer - 01007FB010DC8000","01007FB010DC8000","status-playable;UE4","playable","2022-10-05 19:33:05.000" +"MX vs ATV All Out - 0100218011E7E000","0100218011E7E000","status-playable;nvdec;UE4;vulkan-backend-bug","playable","2022-10-25 19:51:46.000" +"CastleStorm 2","","UE4;crash;nvdec;status-boots","boots","2020-10-25 11:22:44.000" +"Hotshot Racing - 0100BDE008218000","0100BDE008218000","gpu;status-ingame;nvdec;online-broken;ldn-untested;vulkan-backend-bug","ingame","2024-02-04 21:31:17.000" +"Bounty Battle - 0100E1200DC1A000","0100E1200DC1A000","status-playable;nvdec","playable","2022-10-04 14:40:51.000" +"Avicii Invector","","status-playable","playable","2020-10-25 12:12:56.000" +"Ys Origin - 0100F90010882000","0100F90010882000","status-playable;nvdec","playable","2024-04-17 05:07:33.000" +"Kirby Fighters 2 - 0100227010460000","0100227010460000","ldn-works;online;status-playable","playable","2021-06-17 13:06:39.000" +"JUMP FORCE Deluxe Edition - 0100183010F12000","0100183010F12000","status-playable;nvdec;online-broken;UE4","playable","2023-10-01 15:56:05.000" +"The Survivalists","","status-playable","playable","2020-10-27 15:51:13.000" +"Season Match Full Bundle - Parts 1, 2 and 3","","status-playable","playable","2020-10-27 16:15:22.000" +"Moai VI: Unexpected Guests","","slow;status-playable","playable","2020-10-27 16:40:20.000" +"Agatha Christie - The ABC Murders","","status-playable","playable","2020-10-27 17:08:23.000" +"Remothered: Broken Porcelain - 0100FBD00F5F6000","0100FBD00F5F6000","UE4;gpu;nvdec;status-ingame","ingame","2021-06-17 15:13:11.000" +"Need For Speed Hot Pursuit Remastered","","audio;online;slow;status-ingame","ingame","2020-10-27 17:46:58.000" +"WarriOrb - 010032700EAC4000","010032700EAC4000","UE4;status-playable","playable","2021-06-17 15:45:14.000" +"Townsmen - A Kingdom Rebuilt - 010049E00BA34000","010049E00BA34000","status-playable;nvdec","playable","2022-10-14 22:48:59.000" +"Oceanhorn 2 Knights of the Lost Realm - 01006CB010840000","01006CB010840000","status-playable","playable","2021-05-21 18:26:10.000" +"No More Heroes 2 Desperate Struggle - 010071400F204000","010071400F204000","32-bit;status-playable;nvdec","playable","2022-11-19 01:38:13.000" +"No More Heroes - 0100F0400F202000","0100F0400F202000","32-bit;status-playable","playable","2022-09-13 07:44:27.000" +"Rusty Spount Rescue Adventure","","","","2020-10-29 17:06:42.000" +"Pixel Puzzle Makeout League - 010000E00E612000","010000E00E612000","status-playable","playable","2022-10-13 12:34:00.000" +"Futari de! Nyanko Daisensou - 01003C300B274000","01003C300B274000","status-playable","playable","2024-01-05 22:26:52.000" +"MAD RAT DEAD","","","","2020-10-31 13:30:24.000" +"The Language of Love","","Needs Update;crash;status-nothing","nothing","2020-12-03 17:54:00.000" +"Torn Tales - Rebound Edition","","status-playable","playable","2020-11-01 14:11:59.000" +"Spaceland","","status-playable","playable","2020-11-01 14:31:56.000" +"HARDCORE MECHA","","slow;status-playable","playable","2020-11-01 15:06:33.000" +"Barbearian - 0100F7E01308C000","0100F7E01308C000","Needs Update;gpu;status-ingame","ingame","2021-06-28 16:27:50.000" +"INSTANT Chef Party","","","","2020-11-01 23:15:58.000" +"Pikmin 3 Deluxe - 0100F4C009322000","0100F4C009322000","gpu;status-ingame;32-bit;nvdec;Needs Update","ingame","2024-09-03 00:28:26.000" +"Cobra Kai The Karate Kid Saga Continues - 01005790110F0000","01005790110F0000","status-playable","playable","2021-06-17 15:59:13.000" +"Seven Knights -Time Wanderer- - 010018400C24E000","010018400C24E000","status-playable;vulkan-backend-bug","playable","2022-10-13 22:08:54.000" +"Kangokuto Mary Skelter Finale","","audio;crash;status-ingame","ingame","2021-01-09 22:39:28.000" +"Shadowverse Champions Battle - 01002A800C064000","01002A800C064000","status-playable","playable","2022-10-02 22:59:29.000" +"Bakugan Champions of Vestroia","","status-playable","playable","2020-11-06 19:07:39.000" +"Jurassic World Evolution Complete Edition - 010050A011344000","010050A011344000","cpu;status-menus;crash","menus","2023-08-04 18:06:54.000" +"KAMEN RIDER memory of heroez / Premium Sound Edition - 0100A9801180E000","0100A9801180E000","status-playable","playable","2022-12-06 03:14:26.000" +"Shin Megami Tensei III NOCTURNE HD REMASTER - 010045800ED1E000","010045800ED1E000","gpu;status-ingame;Needs Update","ingame","2022-11-03 19:57:01.000" +"FUSER - 0100E1F013674000","0100E1F013674000","status-playable;nvdec;UE4","playable","2022-10-17 20:58:32.000" +"Mad Father","","status-playable","playable","2020-11-12 13:22:10.000" +"Café Enchanté","","status-playable","playable","2020-11-13 14:54:25.000" +"JUST DANCE 2021","","","","2020-11-14 06:22:04.000" +"Medarot Classics Plus Kuwagata Ver","","status-playable","playable","2020-11-21 11:30:40.000" +"Medarot Classics Plus Kabuto Ver","","status-playable","playable","2020-11-21 11:31:18.000" +"Forest Guardian","","","","2020-11-14 17:00:13.000" +"Fantasy Tavern Sextet -Vol.1 New World Days- - 01000E2012F6E000","01000E2012F6E000","gpu;status-ingame;crash;Needs Update","ingame","2022-12-05 16:48:00.000" +"Ary and the Secret of Seasons - 0100C2500CAB6000","0100C2500CAB6000","status-playable","playable","2022-10-07 20:45:09.000" +"Dark Quest 2","","status-playable","playable","2020-11-16 21:34:52.000" +"Cooking Tycoons 2: 3 in 1 Bundle","","status-playable","playable","2020-11-16 22:19:33.000" +"Cooking Tycoons: 3 in 1 Bundle","","status-playable","playable","2020-11-16 22:44:26.000" +"Agent A: A puzzle in disguise","","status-playable","playable","2020-11-16 22:53:27.000" +"ROBOTICS;NOTES DaSH","","status-playable","playable","2020-11-16 23:09:54.000" +"Hunting Simulator 2 - 010061F010C3A000","010061F010C3A000","status-playable;UE4","playable","2022-10-10 14:25:51.000" +"9 Monkeys of Shaolin","","UE4;gpu;slow;status-ingame","ingame","2020-11-17 11:58:43.000" +"Tin & Kuna","","status-playable","playable","2020-11-17 12:16:12.000" +"Seers Isle","","status-playable","playable","2020-11-17 12:28:50.000" +"Royal Roads","","status-playable","playable","2020-11-17 12:54:38.000" +"Rimelands - 01006AC00EE6E000","01006AC00EE6E000","status-playable","playable","2022-10-13 13:32:56.000" +"Mekorama - 0100B360068B2000","0100B360068B2000","gpu;status-boots","boots","2021-06-17 16:37:21.000" +"Need for Speed Hot Pursuit Remastered - 010029B0118E8000","010029B0118E8000","status-playable;online-broken","playable","2024-03-20 21:58:02.000" +"Mech Rage","","status-playable","playable","2020-11-18 12:30:16.000" +"Modern Tales: Age of Invention - 010004900D772000","010004900D772000","slow;status-playable","playable","2022-10-12 11:20:19.000" +"Dead Z Meat - 0100A24011F52000","0100A24011F52000","UE4;services;status-ingame","ingame","2021-04-14 16:50:16.000" +"Along the Edge","","status-playable","playable","2020-11-18 15:00:07.000" +"Country Tales - 0100C1E012A42000","0100C1E012A42000","status-playable","playable","2021-06-17 16:45:39.000" +"Ghost Sweeper - 01004B301108C000","01004B301108C000","status-playable","playable","2022-10-10 12:45:36.000" +"Hyrule Warriors: Age of Calamity - 01002B00111A2000","01002B00111A2000","gpu;deadlock;slow;status-ingame;crash;nvdec;amd-vendor-bug","ingame","2024-02-28 00:47:00.000" +"Path of Sin: Greed - 01001E500EA16000","01001E500EA16000","status-menus;crash","menus","2021-11-24 08:00:00.000" +"Hoggy 2 - 0100F7300ED2C000","0100F7300ED2C000","status-playable","playable","2022-10-10 13:53:35.000" +"Queen's Quest 4: Sacred Truce - 0100DCF00F13A000","0100DCF00F13A000","status-playable;nvdec","playable","2022-10-13 12:59:21.000" +"ROBOTICS;NOTES ELITE","","status-playable","playable","2020-11-26 10:28:20.000" +"Taiko no Tatsujin Rhythmic Adventure Pack","","status-playable","playable","2020-12-03 07:28:26.000" +"Pinstripe","","status-playable","playable","2020-11-26 10:40:40.000" +"Torchlight III - 010075400DDB8000","010075400DDB8000","status-playable;nvdec;online-broken;UE4","playable","2022-10-14 22:20:17.000" +"Ben 10: Power Trip - 01009CD00E3AA000","01009CD00E3AA000","status-playable;nvdec","playable","2022-10-09 10:52:12.000" +"Zoids Wild Infinity Blast","","","","2020-11-26 16:15:37.000" +"Picross S5 - 0100AC30133EC000","0100AC30133EC000","status-playable","playable","2022-10-17 18:51:42.000" +"Worm Jazz - 01009CD012CC0000","01009CD012CC0000","gpu;services;status-ingame;UE4;regression","ingame","2021-11-10 10:33:04.000" +"TTV2","","status-playable","playable","2020-11-27 13:21:36.000" +"Deadly Days","","status-playable","playable","2020-11-27 13:38:55.000" +"Pumpkin Jack - 01006C10131F6000","01006C10131F6000","status-playable;nvdec;UE4","playable","2022-10-13 12:52:32.000" +"Active Neurons 2 - 01000D1011EF0000","01000D1011EF0000","status-playable","playable","2022-10-07 16:21:42.000" +"Niche - a genetics survival game","","nvdec;status-playable","playable","2020-11-27 14:01:11.000" +"Monstrum - 010039F00EF70000","010039F00EF70000","status-playable","playable","2021-01-31 11:07:26.000" +"TRANSFORMERS: BATTLEGROUNDS - 01005E500E528000","01005E500E528000","online;status-playable","playable","2021-06-17 18:08:19.000" +"UBERMOSH:SANTICIDE","","status-playable","playable","2020-11-27 15:05:01.000" +"SPACE ELITE FORCE","","status-playable","playable","2020-11-27 15:21:05.000" +"Oddworld: New 'n' Tasty - 01005E700ABB8000","01005E700ABB8000","nvdec;status-playable","playable","2021-06-17 17:51:32.000" +"Immortal Realms: Vampire Wars - 010079501025C000","010079501025C000","nvdec;status-playable","playable","2021-06-17 17:41:46.000" +"Horace - 010086D011EB8000","010086D011EB8000","status-playable","playable","2022-10-10 14:03:50.000" +"Maid of Sker : Upscale Resolution not working","","","","2020-11-29 15:36:42.000" +"Professor Rubik's Brain Fitness","","","","2020-11-30 11:22:45.000" +"QV ( キュビ )","","","","2020-11-30 11:22:49.000" +"Double Pug Switch - 0100A5D00C7C0000","0100A5D00C7C0000","status-playable;nvdec","playable","2022-10-10 10:59:35.000" +"Trollhunters: Defenders of Arcadia","","gpu;nvdec;status-ingame","ingame","2020-11-30 13:27:09.000" +"Outbreak: Epidemic - 0100C850130FE000","0100C850130FE000","status-playable","playable","2022-10-13 10:27:31.000" +"Blackjack Hands","","status-playable","playable","2020-11-30 14:04:51.000" +"Piofiore: Fated Memories","","nvdec;status-playable","playable","2020-11-30 14:27:50.000" +"Task Force Kampas","","status-playable","playable","2020-11-30 14:44:15.000" +"Nexomon: Extinction","","status-playable","playable","2020-11-30 15:02:22.000" +"realMyst: Masterpiece Edition","","nvdec;status-playable","playable","2020-11-30 15:25:42.000" +"Neighbours back From Hell - 010065F00F55A000","010065F00F55A000","status-playable;nvdec","playable","2022-10-12 15:36:48.000" +"Sakai and... - 01007F000EB36000","01007F000EB36000","status-playable;nvdec","playable","2022-12-15 13:53:19.000" +"Supraland - 0100A6E01201C000","0100A6E01201C000","status-playable;nvdec;UE4;opengl-backend-bug","playable","2022-10-14 09:49:11.000" +"Ministry of Broadcast - 010069200EB80000","010069200EB80000","status-playable","playable","2022-08-10 00:31:16.000" +"Inertial Drift - 01002BD00F626000","01002BD00F626000","status-playable;online-broken","playable","2022-10-11 12:22:19.000" +"SuperEpic: The Entertainment War - 0100630010252000","0100630010252000","status-playable","playable","2022-10-13 23:02:48.000" +"HARDCORE Maze Cube","","status-playable","playable","2020-12-04 20:01:24.000" +"Firework","","status-playable","playable","2020-12-04 20:20:09.000" +"GORSD","","status-playable","playable","2020-12-04 22:15:21.000" +"Georifters","","UE4;crash;nvdec;status-menus","menus","2020-12-04 22:30:50.000" +"Giraffe and Annika","","UE4;crash;status-ingame","ingame","2020-12-04 22:41:57.000" +"Doodle Derby","","status-boots","boots","2020-12-04 22:51:48.000" +"Good Pizza, Great Pizza","","status-playable","playable","2020-12-04 22:59:18.000" +"HyperBrawl Tournament","","crash;services;status-boots","boots","2020-12-04 23:03:27.000" +"Dustoff Z","","status-playable","playable","2020-12-04 23:22:29.000" +"Embracelet","","status-playable","playable","2020-12-04 23:45:00.000" +"Cook, Serve, Delicious! 3?! - 0100B82010B6C000","0100B82010B6C000","status-playable","playable","2022-10-09 12:09:34.000" +"CAPTAIN TSUBASA: RISE OF NEW CHAMPIONS - 0100EAE010560000","0100EAE010560000","status-playable;online-broken;vulkan-backend-bug","playable","2022-10-09 11:20:50.000" +"Yomi wo Saku Hana","","","","2020-12-05 07:14:40.000" +"Immortals Fenyx Rising - 01004A600EC0A000","01004A600EC0A000","gpu;status-menus;crash","menus","2023-02-24 16:19:55.000" +"Supermarket Shriek - 0100C01012654000","0100C01012654000","status-playable","playable","2022-10-13 23:19:20.000" +"Absolute Drift","","status-playable","playable","2020-12-10 14:02:44.000" +"CASE 2: Animatronics Survival - 0100C4C0132F8000","0100C4C0132F8000","status-playable;nvdec;UE4;vulkan-backend-bug","playable","2022-10-09 11:45:03.000" +"BIG-Bobby-Car - The Big Race","","slow;status-playable","playable","2020-12-10 14:25:06.000" +"Asterix & Obelix XXL: Romastered - 0100F46011B50000","0100F46011B50000","gpu;status-ingame;nvdec;opengl","ingame","2023-08-16 21:22:06.000" +"Chicken Police - Paint it RED!","","nvdec;status-playable","playable","2020-12-10 15:10:11.000" +"Descenders","","gpu;status-ingame","ingame","2020-12-10 15:22:36.000" +"Outbreak: The Nightmare Chronicles - 01006EE013100000","01006EE013100000","status-playable","playable","2022-10-13 10:41:57.000" +"#Funtime","","status-playable","playable","2020-12-10 16:54:35.000" +"My Little Dog Adventure","","gpu;status-ingame","ingame","2020-12-10 17:47:37.000" +"n Verlore Verstand","","slow;status-ingame","ingame","2020-12-10 18:00:28.000" +"Oneiros - 0100463013246000","0100463013246000","status-playable","playable","2022-10-13 10:17:22.000" +"#KillAllZombies","","slow;status-playable","playable","2020-12-16 01:50:25.000" +"Connection Haunted","","slow;status-playable","playable","2020-12-10 18:57:14.000" +"Goosebumps Dead of Night","","gpu;nvdec;status-ingame","ingame","2020-12-10 20:02:16.000" +"#Halloween, Super Puzzles Dream","","nvdec;status-playable","playable","2020-12-10 20:43:58.000" +"The Long Return","","slow;status-playable","playable","2020-12-10 21:05:10.000" +"The Bluecoats: North & South","","nvdec;status-playable","playable","2020-12-10 21:22:29.000" +"Puyo Puyo Tetris 2 - 010038E011940000","010038E011940000","status-playable;ldn-untested","playable","2023-09-26 11:35:25.000" +"Yuppie Psycho: Executive Edition","","crash;status-ingame","ingame","2020-12-11 10:37:06.000" +"Root Double -Before Crime * After Days- Xtend Edition - 0100936011556000","0100936011556000","status-nothing;crash","nothing","2022-02-05 02:03:49.000" +"Hidden Folks","","","","2020-12-11 11:48:16.000" +"KINGDOM HEARTS Melody of Memory","","crash;nvdec;status-ingame","ingame","2021-03-03 17:34:12.000" +"Unhatched","","status-playable","playable","2020-12-11 12:11:09.000" +"Tropico 6 - 0100FBE0113CC000","0100FBE0113CC000","status-playable;nvdec;UE4","playable","2022-10-14 23:21:03.000" +"Star Renegades","","nvdec;status-playable","playable","2020-12-11 12:19:23.000" +"Alpaca Ball: Allstars","","nvdec;status-playable","playable","2020-12-11 12:26:29.000" +"Nordlicht","","","","2020-12-11 12:37:12.000" +"Sakuna: Of Rice and Ruin - 0100B1400E8FE000","0100B1400E8FE000","status-playable","playable","2023-07-24 13:47:13.000" +"Re:Turn - One Way Trip - 0100F03011616000","0100F03011616000","status-playable","playable","2022-08-29 22:42:53.000" +"L.O.L. Surprise! Remix: We Rule the World - 0100F2B0123AE000","0100F2B0123AE000","status-playable","playable","2022-10-11 22:48:03.000" +"They Bleed Pixels - 01001C2010D08000","01001C2010D08000","gpu;status-ingame","ingame","2024-08-09 05:52:18.000" +"If Found...","","status-playable","playable","2020-12-11 13:43:14.000" +"Gibbous - A Cthulhu Adventure - 0100D95012C0A000","0100D95012C0A000","status-playable;nvdec","playable","2022-10-10 12:57:17.000" +"Duck Life Adventure - 01005BC012C66000","01005BC012C66000","status-playable","playable","2022-10-10 11:27:03.000" +"Sniper Elite 4 - 010007B010FCC000","010007B010FCC000","gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug","ingame","2024-06-18 17:53:15.000" +"Serious Sam Collection - 010007D00D43A000","010007D00D43A000","status-boots;vulkan-backend-bug","boots","2022-10-13 13:53:34.000" +"Slide Stars - 010010D011E1C000","010010D011E1C000","status-menus;crash","menus","2021-11-25 08:53:43.000" +"Tank Mechanic Simulator","","status-playable","playable","2020-12-11 15:10:45.000" +"Five Dates","","nvdec;status-playable","playable","2020-12-11 15:17:11.000" +"MagiCat","","status-playable","playable","2020-12-11 15:22:07.000" +"Family Feud 2021 - 010060200FC44000","010060200FC44000","status-playable;online-broken","playable","2022-10-10 11:42:21.000" +"LUNA The Shadow Dust","","","","2020-12-11 15:26:55.000" +"Paw Patrol: Might Pups Save Adventure Bay! - 01001F201121E000","01001F201121E000","status-playable","playable","2022-10-13 12:17:55.000" +"30-in-1 Game Collection - 010056D00E234000","010056D00E234000","status-playable;online-broken","playable","2022-10-15 17:47:09.000" +"Truck Driver - 0100CB50107BA000","0100CB50107BA000","status-playable;online-broken","playable","2022-10-20 17:42:33.000" +"Bridge Constructor: The Walking Dead","","gpu;slow;status-ingame","ingame","2020-12-11 17:31:32.000" +"Speed 3: Grand Prix - 0100F18010BA0000","0100F18010BA0000","status-playable;UE4","playable","2022-10-20 12:32:31.000" +"Wonder Blade","","status-playable","playable","2020-12-11 17:55:31.000" +"Super Blood Hockey","","status-playable","playable","2020-12-11 20:01:41.000" +"Who Wants to Be a Millionaire?","","crash;status-nothing","nothing","2020-12-11 20:22:42.000" +"My Aunt is a Witch - 01002C6012334000","01002C6012334000","status-playable","playable","2022-10-19 09:21:17.000" +"Flatland: Prologue","","status-playable","playable","2020-12-11 20:41:12.000" +"Fantasy Friends - 010017C012726000","010017C012726000","status-playable","playable","2022-10-17 19:42:39.000" +"MO:Astray","","crash;status-ingame","ingame","2020-12-11 21:45:44.000" +"Wartile Complete Edition","","UE4;crash;gpu;status-menus","menus","2020-12-11 21:56:10.000" +"Super Punch Patrol - 01001F90122B2000","01001F90122B2000","status-playable","playable","2024-07-12 19:49:02.000" +"Chronos","","UE4;gpu;nvdec;status-ingame","ingame","2020-12-11 22:16:35.000" +"Going Under","","deadlock;nvdec;status-ingame","ingame","2020-12-11 22:29:46.000" +"Castle Crashers Remastered - 010001300D14A000","010001300D14A000","gpu;status-boots","boots","2024-08-10 09:21:20.000" +"Morbid: The Seven Acolytes - 010040E00F642000","010040E00F642000","status-playable","playable","2022-08-09 17:21:58.000" +"Elrador Creatures","","slow;status-playable","playable","2020-12-12 12:35:35.000" +"Sam & Max Save the World","","status-playable","playable","2020-12-12 13:11:51.000" +"Quiplash 2 InterLASHional - 0100AF100EE76000","0100AF100EE76000","status-playable;online-working","playable","2022-10-19 17:43:45.000" +"Monster Truck Championship - 0100D30010C42000","0100D30010C42000","slow;status-playable;nvdec;online-broken;UE4","playable","2022-10-18 23:16:51.000" +"Liberated: Enhanced Edition - 01003A90133A6000","01003A90133A6000","gpu;status-ingame;nvdec","ingame","2024-07-04 04:48:48.000" +"Empire of Sin","","nvdec","","2020-12-12 13:48:05.000" +"Girabox","","status-playable","playable","2020-12-12 13:55:05.000" +"Shiren the Wanderer: The Tower of Fortune and the Dice of Fate - 01007430122D0000","01007430122D0000","status-playable;nvdec","playable","2022-10-20 11:44:36.000" +"2048 Battles","","status-playable","playable","2020-12-12 14:21:25.000" +"Reaper: Tale of a Pale Swordsman","","status-playable","playable","2020-12-12 15:12:23.000" +"Demong Hunter","","status-playable","playable","2020-12-12 15:27:08.000" +"Rise and Shine","","status-playable","playable","2020-12-12 15:56:43.000" +"12 Labours of Hercules II: The Cretan Bull - 0100B1A010014000","0100B1A010014000","cpu;status-nothing;32-bit;crash","nothing","2022-12-07 13:43:10.000" +"#womenUp, Super Puzzles Dream","","status-playable","playable","2020-12-12 16:57:25.000" +"#NoLimitFantasy, Super Puzzles Dream","","nvdec;status-playable","playable","2020-12-12 17:21:32.000" +"2urvive - 01007550131EE000","01007550131EE000","status-playable","playable","2022-11-17 13:49:37.000" +"2weistein – The Curse of the Red Dragon - 0100E20012886000","0100E20012886000","status-playable;nvdec;UE4","playable","2022-11-18 14:47:07.000" +"64","","status-playable","playable","2020-12-12 21:31:58.000" +"4x4 Dirt Track","","status-playable","playable","2020-12-12 21:41:42.000" +"Aeolis Tournament","","online;status-playable","playable","2020-12-12 22:02:14.000" +"Adventures of Pip","","nvdec;status-playable","playable","2020-12-12 22:11:55.000" +"9th Dawn III","","status-playable","playable","2020-12-12 22:27:27.000" +"Ailment","","status-playable","playable","2020-12-12 22:30:41.000" +"Adrenaline Rush - Miami Drive","","status-playable","playable","2020-12-12 22:49:50.000" +"Adventures of Chris","","status-playable","playable","2020-12-12 23:00:02.000" +"Akuarium","","slow;status-playable","playable","2020-12-12 23:43:36.000" +"Alchemist's Castle","","status-playable","playable","2020-12-12 23:54:08.000" +"Angry Video Game Nerd I & II Deluxe","","crash;status-ingame","ingame","2020-12-12 23:59:54.000" +"SENTRY","","status-playable","playable","2020-12-13 12:00:24.000" +"Squeakers","","status-playable","playable","2020-12-13 12:13:05.000" +"ALPHA","","status-playable","playable","2020-12-13 12:17:45.000" +"Shoot 1UP DX","","status-playable","playable","2020-12-13 12:32:47.000" +"Animal Hunter Z","","status-playable","playable","2020-12-13 12:50:35.000" +"Star99 - 0100E6B0115FC000","0100E6B0115FC000","status-menus;online","menus","2021-11-26 14:18:51.000" +"Alwa's Legacy","","status-playable","playable","2020-12-13 13:00:57.000" +"TERROR SQUID - 010070C00FB56000","010070C00FB56000","status-playable;online-broken","playable","2023-10-30 22:29:29.000" +"Animal Fight Club","","gpu;status-ingame","ingame","2020-12-13 13:13:33.000" +"Momotaro Dentetsu Showa, Heisei, Reiwa mo Teiban! - 010093100DA04000","010093100DA04000","gpu;status-ingame","ingame","2023-09-22 10:21:46.000" +"Dokapon UP! Dreamy Roulette","","","","2020-12-13 14:53:27.000" +"ANIMUS","","status-playable","playable","2020-12-13 15:11:47.000" +"Pretty Princess Party - 01007F00128CC000","01007F00128CC000","status-playable","playable","2022-10-19 17:23:58.000" +"John Wick Hex - 01007090104EC000","01007090104EC000","status-playable","playable","2022-08-07 08:29:12.000" +"Animal Up","","status-playable","playable","2020-12-13 15:39:02.000" +"Derby Stallion","","","","2020-12-13 15:47:01.000" +"Ankh Guardian - Treasure of the Demon's Temple","","status-playable","playable","2020-12-13 15:55:49.000" +"Police X Heroine Lovepatrina! Love na Rhythm de Taihoshimasu!","","","","2020-12-13 16:12:56.000" +"Klondike Solitaire","","status-playable","playable","2020-12-13 16:17:27.000" +"Apocryph","","gpu;status-ingame","ingame","2020-12-13 23:24:10.000" +"Apparition","","nvdec;slow;status-ingame","ingame","2020-12-13 23:57:04.000" +"Tiny Gladiators","","status-playable","playable","2020-12-14 00:09:43.000" +"Aperion Cyberstorm","","status-playable","playable","2020-12-14 00:40:16.000" +"Cthulhu Saves Christmas","","status-playable","playable","2020-12-14 00:58:55.000" +"Kagamihara/Justice - 0100D58012FC2000","0100D58012FC2000","crash;status-nothing","nothing","2021-06-21 16:41:29.000" +"Greedroid","","status-playable","playable","2020-12-14 11:14:32.000" +"Aqua Lungers","","crash;status-ingame","ingame","2020-12-14 11:25:57.000" +"Atomic Heist - 01005FE00EC4E000","01005FE00EC4E000","status-playable","playable","2022-10-16 21:24:32.000" +"Nexoria: Dungeon Rogue Heroes - 0100B69012EC6000","0100B69012EC6000","gpu;status-ingame","ingame","2021-10-04 18:41:29.000" +"Armed 7 DX","","status-playable","playable","2020-12-14 11:49:56.000" +"Ord.","","status-playable","playable","2020-12-14 11:59:06.000" +"Commandos 2 HD Remaster - 010065A01158E000","010065A01158E000","gpu;status-ingame;nvdec","ingame","2022-08-10 21:52:27.000" +"Atomicrops - 0100AD30095A4000","0100AD30095A4000","status-playable","playable","2022-08-06 10:05:07.000" +"Rabi-Ribi - 01005BF00E4DE000","01005BF00E4DE000","status-playable","playable","2022-08-06 17:02:44.000" +"Assault Chainguns KM","","crash;gpu;status-ingame","ingame","2020-12-14 12:48:34.000" +"Attack of the Toy Tanks","","slow;status-ingame","ingame","2020-12-14 12:59:12.000" +"AstroWings SpaceWar","","status-playable","playable","2020-12-14 13:10:44.000" +"ATOMIK RunGunJumpGun","","status-playable","playable","2020-12-14 13:19:24.000" +"Arrest of a stone Buddha - 0100184011B32000","0100184011B32000","status-nothing;crash","nothing","2022-12-07 16:55:00.000" +"Midnight Evil - 0100A1200F20C000","0100A1200F20C000","status-playable","playable","2022-10-18 22:55:19.000" +"Awakening of Cthulhu - 0100085012D64000","0100085012D64000","UE4;status-playable","playable","2021-04-26 13:03:07.000" +"Axes - 0100DA3011174000","0100DA3011174000","status-playable","playable","2021-04-08 13:01:58.000" +"ASSAULT GUNNERS HD Edition","","","","2020-12-14 14:47:09.000" +"Shady Part of Me - 0100820013612000","0100820013612000","status-playable","playable","2022-10-20 11:31:55.000" +"A Frog Game","","status-playable","playable","2020-12-14 16:09:53.000" +"A Dark Room","","gpu;status-ingame","ingame","2020-12-14 16:14:28.000" +"A Sound Plan","","crash;status-boots","boots","2020-12-14 16:46:21.000" +"Actual Sunlight","","gpu;status-ingame","ingame","2020-12-14 17:18:41.000" +"Acthung! Cthulhu Tactics","","status-playable","playable","2020-12-14 18:40:27.000" +"ATOMINE","","gpu;nvdec;slow;status-playable","playable","2020-12-14 18:56:50.000" +"Adventure Llama","","status-playable","playable","2020-12-14 19:32:24.000" +"Minoria - 0100FAE010864000","0100FAE010864000","status-playable","playable","2022-08-06 18:50:50.000" +"Adventure Pinball Bundle","","slow;status-playable","playable","2020-12-14 20:31:53.000" +"Aery - Broken Memories - 0100087012810000","0100087012810000","status-playable","playable","2022-10-04 13:11:52.000" +"Fobia","","status-playable","playable","2020-12-14 21:05:23.000" +"Alchemic Jousts - 0100F5400AB6C000","0100F5400AB6C000","gpu;status-ingame","ingame","2022-12-08 15:06:28.000" +"Akash Path of the Five","","gpu;nvdec;status-ingame","ingame","2020-12-14 22:33:12.000" +"Witcheye","","status-playable","playable","2020-12-14 22:56:08.000" +"Zombie Driver","","nvdec;status-playable","playable","2020-12-14 23:15:10.000" +"Keen: One Girl Army","","status-playable","playable","2020-12-14 23:19:52.000" +"AFL Evolution 2 - 01001B400D334000","01001B400D334000","slow;status-playable;online-broken;UE4","playable","2022-12-07 12:45:56.000" +"Elden: Path of the Forgotten","","status-playable","playable","2020-12-15 00:33:19.000" +"Desire remaster ver.","","crash;status-boots","boots","2021-01-17 02:34:37.000" +"Alluris - 0100AC501122A000","0100AC501122A000","gpu;status-ingame;UE4","ingame","2023-08-02 23:13:50.000" +"Almightree the Last Dreamer","","slow;status-playable","playable","2020-12-15 13:59:03.000" +"Windscape - 010059900BA3C000","010059900BA3C000","status-playable","playable","2022-10-21 11:49:42.000" +"Warp Shift","","nvdec;status-playable","playable","2020-12-15 14:48:48.000" +"Alphaset by POWGI","","status-playable","playable","2020-12-15 15:15:15.000" +"Storm Boy - 010040D00BCF4000","010040D00BCF4000","status-playable","playable","2022-10-20 14:15:06.000" +"Fire & Water","","status-playable","playable","2020-12-15 15:43:20.000" +"Animated Jigsaws Collection","","nvdec;status-playable","playable","2020-12-15 15:58:34.000" +"More Dark","","status-playable","playable","2020-12-15 16:01:06.000" +"Clea","","crash;status-ingame","ingame","2020-12-15 16:22:56.000" +"Animal Fun for Toddlers and Kids","","services;status-boots","boots","2020-12-15 16:45:29.000" +"Brick Breaker","","crash;status-ingame","ingame","2020-12-15 17:03:59.000" +"Anode","","status-playable","playable","2020-12-15 17:18:58.000" +"Animal Pairs - Matching & Concentration Game for Toddlers & Kids - 010033C0121DC000","010033C0121DC000","services;status-boots","boots","2021-11-29 23:43:14.000" +"Animals for Toddlers","","services;status-boots","boots","2020-12-15 17:27:27.000" +"Stellar Interface - 01005A700C954000","01005A700C954000","status-playable","playable","2022-10-20 13:44:33.000" +"Anime Studio Story","","status-playable","playable","2020-12-15 18:14:05.000" +"Brick Breaker","","nvdec;online;status-playable","playable","2020-12-15 18:26:23.000" +"Anti-Hero Bundle - 0100596011E20000","0100596011E20000","status-playable;nvdec","playable","2022-10-21 20:10:30.000" +"Alt-Frequencies","","status-playable","playable","2020-12-15 19:01:33.000" +"Tanuki Justice - 01007A601318C000","01007A601318C000","status-playable;opengl","playable","2023-02-21 18:28:10.000" +"Norman's Great Illusion","","status-playable","playable","2020-12-15 19:28:24.000" +"Welcome to Primrose Lake - 0100D7F010B94000","0100D7F010B94000","status-playable","playable","2022-10-21 11:30:57.000" +"Dream","","status-playable","playable","2020-12-15 19:55:07.000" +"Lofi Ping Pong","","crash;status-ingame","ingame","2020-12-15 20:09:22.000" +"Antventor","","nvdec;status-playable","playable","2020-12-15 20:09:27.000" +"Space Pioneer - 010047B010260000","010047B010260000","status-playable","playable","2022-10-20 12:24:37.000" +"Death and Taxes","","status-playable","playable","2020-12-15 20:27:49.000" +"Deleveled","","slow;status-playable","playable","2020-12-15 21:02:29.000" +"Jenny LeClue - Detectivu","","crash;status-nothing","nothing","2020-12-15 21:07:07.000" +"Biz Builder Delux","","slow;status-playable","playable","2020-12-15 21:36:25.000" +"Creepy Tale","","status-playable","playable","2020-12-15 21:58:03.000" +"Among Us - 0100B0C013912000","0100B0C013912000","status-menus;online;ldn-broken","menus","2021-09-22 15:20:17.000" +"Spinch - 010076D0122A8000","010076D0122A8000","status-playable","playable","2024-07-12 19:02:10.000" +"Carto - 0100810012A1A000","0100810012A1A000","status-playable","playable","2022-09-04 15:37:06.000" +"Laraan","","status-playable","playable","2020-12-16 12:45:48.000" +"Spider Solitaire","","status-playable","playable","2020-12-16 16:19:30.000" +"Sin Slayers - 01006FE010438000","01006FE010438000","status-playable","playable","2022-10-20 11:53:52.000" +"AO Tennis 2 - 010047000E9AA000","010047000E9AA000","status-playable;online-broken","playable","2022-09-17 12:05:07.000" +"Area 86","","status-playable","playable","2020-12-16 16:45:52.000" +"Art Sqool - 01006AA013086000","01006AA013086000","status-playable;nvdec","playable","2022-10-16 20:42:37.000" +"Utopia 9 - A Volatile Vacation","","nvdec;status-playable","playable","2020-12-16 17:06:42.000" +"Arrog","","status-playable","playable","2020-12-16 17:20:50.000" +"Warlocks 2: God Slayers","","status-playable","playable","2020-12-16 17:36:50.000" +"Artifact Adventure Gaiden DX","","status-playable","playable","2020-12-16 17:49:25.000" +"Asemblance","","UE4;gpu;status-ingame","ingame","2020-12-16 18:01:23.000" +"Death Tales","","status-playable","playable","2020-12-17 10:55:52.000" +"Asphalt 9: Legends - 01007B000C834000","01007B000C834000","services;status-menus;crash;online-broken","menus","2022-12-07 13:28:29.000" +"Barbarous! Tavern of Emyr - 01003350102E2000","01003350102E2000","status-playable","playable","2022-10-16 21:50:24.000" +"Baila Latino - 010076B011EC8000","010076B011EC8000","status-playable","playable","2021-04-14 16:40:24.000" +"Unit 4","","status-playable","playable","2020-12-16 18:54:13.000" +"Ponpu","","status-playable","playable","2020-12-16 19:09:34.000" +"ATOM RPG - 0100B9400FA38000","0100B9400FA38000","status-playable;nvdec","playable","2022-10-22 10:11:48.000" +"Automachef","","status-playable","playable","2020-12-16 19:51:25.000" +"Croc's World 2","","status-playable","playable","2020-12-16 20:01:40.000" +"Ego Protocol","","nvdec;status-playable","playable","2020-12-16 20:16:35.000" +"Azure Reflections - 01006FB00990E000","01006FB00990E000","nvdec;online;status-playable","playable","2021-04-08 13:18:25.000" +"Back to Bed","","nvdec;status-playable","playable","2020-12-16 20:52:04.000" +"Azurebreak Heroes","","status-playable","playable","2020-12-16 21:26:17.000" +"Marooners - 010044600FDF0000","010044600FDF0000","status-playable;nvdec;online-broken","playable","2022-10-18 21:35:26.000" +"BaconMan - 0100EAF00E32E000","0100EAF00E32E000","status-menus;crash;nvdec","menus","2021-11-20 02:36:21.000" +"Peaky Blinders: Mastermind - 010002100CDCC000","010002100CDCC000","status-playable","playable","2022-10-19 16:56:35.000" +"Crash Drive 2","","online;status-playable","playable","2020-12-17 02:45:46.000" +"Blood will be Spilled","","nvdec;status-playable","playable","2020-12-17 03:02:03.000" +"Nefarious","","status-playable","playable","2020-12-17 03:20:33.000" +"Blacksea Odyssey - 01006B400C178000","01006B400C178000","status-playable;nvdec","playable","2022-10-16 22:14:34.000" +"Baobabs Mausoleum Ep2: 1313 Barnabas Dead Ends Drive","","status-playable","playable","2020-12-17 11:22:50.000" +"Life of Boris: Super Slav","","status-ingame","ingame","2020-12-17 11:40:05.000" +"Baobabs Mausoleum Ep.3: Un Pato en Muertoburgo","","nvdec;status-playable","playable","2020-12-17 11:43:10.000" +"Baron: Fur Is Gonna Fly - 010039C0106C6000","010039C0106C6000","status-boots;crash","boots","2022-02-06 02:05:43.000" +"Deployment - 01000BF00B6BC000","01000BF00B6BC000","slow;status-playable;online-broken","playable","2022-10-17 16:23:59.000" +"PixelJunk Eden 2","","crash;status-ingame","ingame","2020-12-17 11:55:52.000" +"Batbarian: Testament of the Primordials","","status-playable","playable","2020-12-17 12:00:59.000" +"Abyss of The Sacrifice - 010047F012BE2000","010047F012BE2000","status-playable;nvdec","playable","2022-10-21 13:56:28.000" +"Nightmares from the Deep 2: The Siren's Call - 01006E700B702000","01006E700B702000","status-playable;nvdec","playable","2022-10-19 10:58:53.000" +"Vera Blanc: Full Moon","","audio;status-playable","playable","2020-12-17 12:09:30.000" +"Linelight","","status-playable","playable","2020-12-17 12:18:07.000" +"Battle Hunters - 0100A3B011EDE000","0100A3B011EDE000","gpu;status-ingame","ingame","2022-11-12 09:19:17.000" +"Day and Night","","status-playable","playable","2020-12-17 12:30:51.000" +"Zombie's Cool","","status-playable","playable","2020-12-17 12:41:26.000" +"Battle of Kings","","slow;status-playable","playable","2020-12-17 12:45:23.000" +"Ghostrunner","","UE4;crash;gpu;nvdec;status-ingame","ingame","2020-12-17 13:01:59.000" +"Battleground - 0100650010DD4000","0100650010DD4000","status-ingame;crash","ingame","2021-09-06 11:53:23.000" +"Little Racer - 0100E6D00E81C000","0100E6D00E81C000","status-playable","playable","2022-10-18 16:41:13.000" +"Battle Planet - Judgement Day","","status-playable","playable","2020-12-17 14:06:20.000" +"Dokuro","","nvdec;status-playable","playable","2020-12-17 14:47:09.000" +"Reflection of Mine","","audio;status-playable","playable","2020-12-17 15:06:37.000" +"Foregone","","deadlock;status-ingame","ingame","2020-12-17 15:26:53.000" +"Choices That Matter: And The Sun Went Out","","status-playable","playable","2020-12-17 15:44:08.000" +"BATTLLOON","","status-playable","playable","2020-12-17 15:48:23.000" +"Grim Legends: The Forsaken Bride - 010009F011F90000","010009F011F90000","status-playable;nvdec","playable","2022-10-18 13:14:06.000" +"Glitch's Trip","","status-playable","playable","2020-12-17 16:00:57.000" +"Maze","","status-playable","playable","2020-12-17 16:13:58.000" +"Bayonetta - 010076F0049A2000","010076F0049A2000","status-playable;audout","playable","2022-11-20 15:51:59.000" +"Gnome More War","","status-playable","playable","2020-12-17 16:33:07.000" +"Fin and the Ancient Mystery","","nvdec;status-playable","playable","2020-12-17 16:40:39.000" +"Nubarron: The adventure of an unlucky gnome","","status-playable","playable","2020-12-17 16:45:17.000" +"Survive! Mr. Cube - 010029A00AEB0000","010029A00AEB0000","status-playable","playable","2022-10-20 14:44:47.000" +"Saboteur SiO","","slow;status-ingame","ingame","2020-12-17 16:59:49.000" +"Flowlines VS","","status-playable","playable","2020-12-17 17:01:53.000" +"Beat Me! - 01002D20129FC000","01002D20129FC000","status-playable;online-broken","playable","2022-10-16 21:59:26.000" +"YesterMorrow","","crash;status-ingame","ingame","2020-12-17 17:15:25.000" +"Drums","","status-playable","playable","2020-12-17 17:21:51.000" +"Gnomes Garden: Lost King - 010036C00D0D6000","010036C00D0D6000","deadlock;status-menus","menus","2021-11-18 11:14:03.000" +"Edna & Harvey: Harvey's New Eyes - 0100ABE00DB4E000","0100ABE00DB4E000","nvdec;status-playable","playable","2021-01-26 14:36:08.000" +"Roarr! - 010068200C5BE000","010068200C5BE000","status-playable","playable","2022-10-19 23:57:45.000" +"PHOGS!","","online;status-playable","playable","2021-01-18 15:18:37.000" +"Idle Champions of the Forgotten Realms","","online;status-boots","boots","2020-12-17 18:24:57.000" +"Polyroll - 010074B00ED32000","010074B00ED32000","gpu;status-boots","boots","2021-07-01 16:16:50.000" +"Control Ultimate Edition - Cloud Version - 0100041013360000","0100041013360000","Needs Update;crash;services;status-nothing","nothing","2021-04-18 22:34:06.000" +"Wilmot's Warehouse - 010071F00D65A000","010071F00D65A000","audio;gpu;status-ingame","ingame","2021-06-02 17:24:32.000" +"Jack N' Jill DX","","","","2020-12-18 02:27:22.000" +"Izneo - 0100D8E00C874000","0100D8E00C874000","status-menus;online-broken","menus","2022-08-06 15:56:23.000" +"Dicey Dungeons - 0100BBF011394000","0100BBF011394000","gpu;audio;slow;status-ingame","ingame","2023-08-02 20:30:12.000" +"Rabbids Adventure Party Demo / 疯狂兔子:奇遇派对 - 试玩版","","","","2020-12-18 05:53:35.000" +"Venture Kid - 010095B00DBC8000","010095B00DBC8000","crash;gpu;status-ingame","ingame","2021-04-18 16:33:17.000" +"Death Coming - 0100F3B00CF32000","0100F3B00CF32000","status-nothing;crash","nothing","2022-02-06 07:43:03.000" +"OlliOlli: Switch Stance - 0100E0200B980000","0100E0200B980000","gpu;status-boots","boots","2024-04-25 08:36:37.000" +"Cybxus Heart - 01006B9013672000","01006B9013672000","gpu;slow;status-ingame","ingame","2022-01-15 05:00:49.000" +"Gensou Rougoku no Kaleidscope - 0100AC600EB4C000","0100AC600EB4C000","status-menus;crash","menus","2021-11-24 08:45:07.000" +"Witch Spring 3 Re:Fine -The Story of the Marionette Witch Eirudy- - 0100454012E32000","0100454012E32000","status-ingame;crash","ingame","2021-08-08 11:56:18.000" +"Hulu - 0100A66003384000","0100A66003384000","status-boots;online-broken","boots","2022-12-09 10:05:00.000" +"Strife: Veteran Edition - 0100BDE012928000","0100BDE012928000","gpu;status-ingame","ingame","2022-01-15 05:10:42.000" +"Peasant Knight","","status-playable","playable","2020-12-22 09:30:50.000" +"Double Dragon Neon - 01005B10132B2000","01005B10132B2000","gpu;audio;status-ingame;32-bit","ingame","2022-09-20 18:00:20.000" +"Nekopara Vol.4","","crash;status-ingame","ingame","2021-01-17 01:47:18.000" +"Super Meat Boy Forever - 01009C200D60E000","01009C200D60E000","gpu;status-boots","boots","2021-04-26 14:25:39.000" +"Gems of Magic: Lost Family","","","","2020-12-24 15:33:57.000" +"Wagamama High Spec","","","","2020-12-25 09:02:51.000" +"BIT.TRIP RUNNER - 0100E62012D3C000","0100E62012D3C000","status-playable","playable","2022-10-17 14:23:24.000" +"BIT.TRIP VOID - 01000AD012D3A000","01000AD012D3A000","status-playable","playable","2022-10-17 14:31:23.000" +"Dark Arcana: The Carnival - 01003D301357A000","01003D301357A000","gpu;slow;status-ingame","ingame","2022-02-19 08:52:28.000" +"Food Girls","","","","2020-12-27 14:48:48.000" +"Override 2 Super Mech League - 0100647012F62000","0100647012F62000","status-playable;online-broken;UE4","playable","2022-10-19 15:56:04.000" +"Unto The End - 0100E49013190000","0100E49013190000","gpu;status-ingame","ingame","2022-10-21 11:13:29.000" +"Outbreak: Lost Hope - 0100D9F013102000","0100D9F013102000","crash;status-boots","boots","2021-04-26 18:01:23.000" +"Croc's World 3","","status-playable","playable","2020-12-30 18:53:26.000" +"COLLECTION of SaGA FINAL FANTASY LEGEND","","status-playable","playable","2020-12-30 19:11:16.000" +"The Adventures of 00 Dilly","","status-playable","playable","2020-12-30 19:32:29.000" +"Funimation - 01008E10130F8000","01008E10130F8000","gpu;status-boots","boots","2021-04-08 13:08:17.000" +"Aleste Collection","","","","2021-01-01 11:30:59.000" +"Trail Boss BMX","","","","2021-01-01 16:51:27.000" +"DEEMO -Reborn- - 01008B10132A2000","01008B10132A2000","status-playable;nvdec;online-broken","playable","2022-10-17 15:18:11.000" +"Catherine Full Body - 0100BF00112C0000","0100BF00112C0000","status-playable;nvdec","playable","2023-04-02 11:00:37.000" +"Hell Sports","","","","2021-01-03 15:40:25.000" +"Traditional Tactics Ne+","","","","2021-01-03 15:40:29.000" +"Earth Defense Force World Brothers ( ま~るい地球が四角くなった!? デジボク地球防衛軍 ) - 0100B9E012992000","0100B9E012992000","status-playable;UE4","playable","2022-12-07 12:59:16.000" +"The House of Da Vinci","","status-playable","playable","2021-01-05 14:17:19.000" +"Monster Sanctuary","","crash;status-ingame","ingame","2021-04-04 05:06:41.000" +"Monster Hunter Rise Demo - 010093A01305C000","010093A01305C000","status-playable;online-broken;ldn-works;demo","playable","2022-10-18 23:04:17.000" +"InnerSpace","","status-playable","playable","2021-01-13 19:36:14.000" +"Scott Pilgrim vs The World: The Game - 0100394011C30000","0100394011C30000","services-horizon;status-nothing;crash","nothing","2024-07-12 08:13:03.000" +"Fantasy Tavern Sextet -Vol.2 Adventurer's Days-","","gpu;slow;status-ingame;crash","ingame","2021-11-06 02:57:29.000" +"Monster Hunter XX Nintendo Switch Ver ( Double Cross ) - 0100C3800049C000","0100C3800049C000","status-playable","playable","2024-07-21 14:08:09.000" +"Football Manager 2021 Touch - 01007CF013152000","01007CF013152000","gpu;status-ingame","ingame","2022-10-17 20:08:23.000" +"Eyes: The Horror Game - 0100EFE00A3C2000","0100EFE00A3C2000","status-playable","playable","2021-01-20 21:59:46.000" +"Evolution Board Game - 01006A800FA22000","01006A800FA22000","online;status-playable","playable","2021-01-20 22:37:56.000" +"PBA Pro Bowling 2021 - 0100F95013772000","0100F95013772000","status-playable;online-broken;UE4","playable","2022-10-19 16:46:40.000" +"Body of Evidence - 0100721013510000","0100721013510000","status-playable","playable","2021-04-25 22:22:11.000" +"The Hong Kong Massacre","","crash;status-ingame","ingame","2021-01-21 12:06:56.000" +"Arkanoid vs Space Invaders","","services;status-ingame","ingame","2021-01-21 12:50:30.000" +"Professor Lupo: Ocean - 0100D1F0132F6000","0100D1F0132F6000","status-playable","playable","2021-04-14 16:33:33.000" +"My Universe - School Teacher - 01006C301199C000","01006C301199C000","nvdec;status-playable","playable","2021-01-21 16:02:52.000" +"FUZE Player - 010055801134E000","010055801134E000","status-ingame;online-broken;vulkan-backend-bug","ingame","2022-10-18 12:23:53.000" +"Defentron - 0100CDE0136E6000","0100CDE0136E6000","status-playable","playable","2022-10-17 15:47:56.000" +"Thief Simulator - 0100CE400E34E000","0100CE400E34E000","status-playable","playable","2023-04-22 04:39:11.000" +"Stardash - 01002100137BA000","01002100137BA000","status-playable","playable","2021-01-21 16:31:19.000" +"The Last Dead End - 0100AAD011592000","0100AAD011592000","gpu;status-ingame;UE4","ingame","2022-10-20 16:59:44.000" +"Buddy Mission BOND Demo [ バディミッション BOND ]","","Incomplete","","2021-01-23 18:07:40.000" +"Disgaea 6: Defiance of Destiny Demo [ 魔界戦記ディスガイア6 ] - 01005EE013888000","01005EE013888000","gpu;status-ingame;demo","ingame","2022-12-06 15:27:59.000" +"Down in Bermuda","","","","2021-01-22 15:29:19.000" +"Blacksmith of the Sand Kingdom - 010068E013450000","010068E013450000","status-playable","playable","2022-10-16 22:37:44.000" +"Tennis World Tour 2 - 0100950012F66000","0100950012F66000","status-playable;online-broken","playable","2022-10-14 10:43:16.000" +"Shadow Gangs - 0100BE501382A000","0100BE501382A000","cpu;gpu;status-ingame;crash;regression","ingame","2024-04-29 00:07:26.000" +"Red Colony - 0100351013A06000","0100351013A06000","status-playable","playable","2021-01-25 20:44:41.000" +"Construction Simulator 3 - Console Edition - 0100A5600FAC0000","0100A5600FAC0000","status-playable","playable","2023-02-06 09:31:23.000" +"Speed Truck Racing - 010061F013A0E000","010061F013A0E000","status-playable","playable","2022-10-20 12:57:04.000" +"Arcanoid Breakout - 0100E53013E1C000","0100E53013E1C000","status-playable","playable","2021-01-25 23:28:02.000" +"Life of Fly - 0100B3A0135D6000","0100B3A0135D6000","status-playable","playable","2021-01-25 23:41:07.000" +"Little Nightmares II DEMO - 010093A0135D6000","010093A0135D6000","status-playable;UE4;demo;vulkan-backend-bug","playable","2024-05-16 18:47:20.000" +"Iris Fall - 0100945012168000","0100945012168000","status-playable;nvdec","playable","2022-10-18 13:40:22.000" +"Dirt Trackin Sprint Cars - 01004CB01378A000","01004CB01378A000","status-playable;nvdec;online-broken","playable","2022-10-17 16:34:56.000" +"Gal*Gun Returns [ ぎゃる☆がん りたーんず ] - 0100047013378000","0100047013378000","status-playable;nvdec","playable","2022-10-17 23:50:46.000" +"Disgaea 6: Defiance of Destiny [ FG ] [ 魔界戦記ディスガイア6 ] - 0100307011D80000","0100307011D80000","status-playable","playable","2021-06-08 13:20:33.000" +"Buddy Mission BOND [ FG ] [ バディミッション BOND ] - 0100DB300B996000","0100DB300B996000","","","2021-01-30 04:22:26.000" +"CONARIUM - 010015801308E000","010015801308E000","UE4;nvdec;status-playable","playable","2021-04-26 17:57:53.000" +"Balan Wonderworld Demo - 0100E48013A34000","0100E48013A34000","gpu;services;status-ingame;UE4;demo","ingame","2023-02-16 20:05:07.000" +"War Truck Simulator - 0100B6B013B8A000","0100B6B013B8A000","status-playable","playable","2021-01-31 11:22:54.000" +"The Last Campfire - 0100449011506000","0100449011506000","status-playable","playable","2022-10-20 16:44:19.000" +"Spinny's journey - 01001E40136FE000","01001E40136FE000","status-ingame;crash","ingame","2021-11-30 03:39:44.000" +"Sally Face - 0100BBF0122B4000","0100BBF0122B4000","status-playable","playable","2022-06-06 18:41:24.000" +"Otti house keeper - 01006AF013A9E000","01006AF013A9E000","status-playable","playable","2021-01-31 12:11:24.000" +"Neoverse Trinity Edition - 01001A20133E000","","status-playable","playable","2022-10-19 10:28:03.000" +"Missile Dancer - 0100CFA0138C8000","0100CFA0138C8000","status-playable","playable","2021-01-31 12:22:03.000" +"Grisaia Phantom Trigger 03 - 01005250123B8000","01005250123B8000","audout;status-playable","playable","2021-01-31 12:30:47.000" +"GRISAIA PHANTOM TRIGGER 04 -0100D970123BA000","0100D970123BA000","audout;status-playable","playable","2021-01-31 12:40:37.000" +"GRISAIA PHANTOM TRIGGER 05 - 01002330123BC000","01002330123BC000","audout;nvdec;status-playable","playable","2021-01-31 12:49:59.000" +"GRISAIA PHANTOM TRIGGER 5.5 - 0100CAF013AE6000","0100CAF013AE6000","audout;nvdec;status-playable","playable","2021-01-31 12:59:44.000" +"Dreamo - 0100D24013466000","0100D24013466000","status-playable;UE4","playable","2022-10-17 18:25:28.000" +"Dirt Bike Insanity - 0100A8A013DA4000","0100A8A013DA4000","status-playable","playable","2021-01-31 13:27:38.000" +"Calico - 010013A00E750000","010013A00E750000","status-playable","playable","2022-10-17 14:44:28.000" +"ADVERSE - 01008C901266E000","01008C901266E000","UE4;status-playable","playable","2021-04-26 14:32:51.000" +"All Walls Must Fall - 0100CBD012FB6000","0100CBD012FB6000","status-playable;UE4","playable","2022-10-15 19:16:30.000" +"Bus Driver Simulator - 010030D012FF6000","010030D012FF6000","status-playable","playable","2022-10-17 13:55:27.000" +"Blade II The Return of Evil - 01009CC00E224000","01009CC00E224000","audio;status-ingame;crash;UE4","ingame","2021-11-14 02:49:59.000" +"Ziggy The Chaser - 0100D7B013DD0000","0100D7B013DD0000","status-playable","playable","2021-02-04 20:34:27.000" +"Colossus Down - 0100E2F0128B4000","0100E2F0128B4000","status-playable","playable","2021-02-04 20:49:50.000" +"Turrican Flashback - 01004B0130C8000","","status-playable;audout","playable","2021-08-30 10:07:56.000" +"Ubongo - Deluxe Edition","","status-playable","playable","2021-02-04 21:15:01.000" +"Märchen Forest - 0100B201D5E000","","status-playable","playable","2021-02-04 21:33:34.000" +"Re:ZERO -Starting Life in Another World- The Prophecy of the Throne","","gpu;status-boots;crash;nvdec;vulkan","boots","2023-03-07 21:27:24.000" +"Tracks - Toybox Edition - 0100192010F5A000","0100192010F5A000","UE4;crash;status-nothing","nothing","2021-02-08 15:19:18.000" +"TOHU - 0100B5E011920000","0100B5E011920000","slow;status-playable","playable","2021-02-08 15:40:44.000" +"Redout: Space Assault - 0100326010B98000","0100326010B98000","status-playable;UE4","playable","2022-10-19 23:04:35.000" +"Gods Will Fall - 0100CFA0111C8000","0100CFA0111C8000","status-playable","playable","2021-02-08 16:49:59.000" +"Cyber Shadow - 0100C1F0141AA000","0100C1F0141AA000","status-playable","playable","2022-07-17 05:37:41.000" +"Atelier Ryza 2: Lost Legends & the Secret Fairy - 01009A9012022000","01009A9012022000","status-playable","playable","2022-10-16 21:06:06.000" +"Heaven's Vault - 0100FD901000C000","0100FD901000C000","crash;status-ingame","ingame","2021-02-08 18:22:01.000" +"Contraptions - 01007D701298A000","01007D701298A000","status-playable","playable","2021-02-08 18:40:50.000" +"My Universe - Pet Clinic Cats & Dogs - 0100CD5011A02000","0100CD5011A02000","status-boots;crash;nvdec","boots","2022-02-06 02:05:53.000" +"Citizens Unite!: Earth x Space - 0100D9C012900000","0100D9C012900000","gpu;status-ingame","ingame","2023-10-22 06:44:19.000" +"Blue Fire - 010073B010F6E000","010073B010F6E000","status-playable;UE4","playable","2022-10-22 14:46:11.000" +"Shakes on a Plane - 01008DA012EC0000","01008DA012EC0000","status-menus;crash","menus","2021-11-25 08:52:25.000" +"Glyph - 0100EB501130E000","0100EB501130E000","status-playable","playable","2021-02-08 19:56:51.000" +"Flying Hero X - 0100419013A8A000","0100419013A8A000","status-menus;crash","menus","2021-11-17 07:46:58.000" +"Disjunction - 01000B70122A2000","01000B70122A2000","gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug","ingame","2024-04-28 23:55:24.000" +"Grey Skies: A War of the Worlds Story - 0100DA7013792000","0100DA7013792000","status-playable;UE4","playable","2022-10-24 11:13:59.000" +"#womenUp, Super Puzzles Dream Demo - 0100D87012A14000","0100D87012A14000","nvdec;status-playable","playable","2021-02-09 00:03:31.000" +"n Verlore Verstand - Demo - 01009A500E3DA000","01009A500E3DA000","status-playable","playable","2021-02-09 00:13:32.000" +"10 Second Run RETURNS Demo - 0100DC000A472000","0100DC000A472000","gpu;status-ingame","ingame","2021-02-09 00:17:18.000" +"16-Bit Soccer Demo - 0100B94013D28000","0100B94013D28000","status-playable","playable","2021-02-09 00:23:07.000" +"1993 Shenandoah Demo - 0100148012550000","0100148012550000","status-playable","playable","2021-02-09 00:43:43.000" +"9 Monkeys of Shaolin Demo - 0100C5F012E3E000","0100C5F012E3E000","UE4;gpu;nvdec;status-ingame","ingame","2021-02-09 01:03:30.000" +"99Vidas Demo - 010023500C2F0000","010023500C2F0000","status-playable","playable","2021-02-09 12:51:31.000" +"A Duel Hand Disaster Trackher: DEMO - 0100582012B90000","0100582012B90000","crash;demo;nvdec;status-ingame","ingame","2021-03-24 18:45:27.000" +"Aces of the Luftwaffe Squadron Demo - 010054300D822000","010054300D822000","nvdec;status-playable","playable","2021-02-09 13:12:28.000" +"Active Neurons 2 Demo - 010031C0122B0000","010031C0122B0000","status-playable","playable","2021-02-09 13:40:21.000" +"Adventures of Chris Demo - 0100A0A0136E8000","0100A0A0136E8000","status-playable","playable","2021-02-09 13:49:21.000" +"Aegis Defenders Demo - 010064500AF72000","010064500AF72000","status-playable","playable","2021-02-09 14:04:17.000" +"Aeolis Tournament Demo - 01006710122CE000","01006710122CE000","nvdec;status-playable","playable","2021-02-09 14:22:30.000" +"AeternoBlade Demo Version - 0100B1C00949A000","0100B1C00949A000","nvdec;status-playable","playable","2021-02-09 14:39:26.000" +"AeternoBlade II Demo Version","","gpu;nvdec;status-ingame","ingame","2021-02-09 15:10:19.000" +"Agent A: A puzzle in disguise (Demo) - 01008E8012C02000","01008E8012C02000","status-playable","playable","2021-02-09 18:30:41.000" +"Airfield Mania Demo - 010010A00DB72000","010010A00DB72000","services;status-boots;demo","boots","2022-04-10 03:43:02.000" +"Alder's Blood Prologue - 01004510110C4000","01004510110C4000","crash;status-ingame","ingame","2021-02-09 19:03:03.000" +"AI: The Somnium Files Demo - 0100C1700FB34000","0100C1700FB34000","nvdec;status-playable","playable","2021-02-10 12:52:33.000" +"Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz Trial version - 0100A8A00D27E000","0100A8A00D27E000","status-playable","playable","2021-02-10 13:33:59.000" +"Animated Jigsaws: Beautiful Japanese Scenery DEMO - 0100A1900B5B8000","0100A1900B5B8000","nvdec;status-playable","playable","2021-02-10 13:49:56.000" +"APE OUT DEMO - 010054500E6D4000","010054500E6D4000","status-playable","playable","2021-02-10 14:33:06.000" +"Anime Studio Story Demo - 01002B300EB86000","01002B300EB86000","status-playable","playable","2021-02-10 14:50:39.000" +"Aperion Cyberstorm Demo - 01008CA00D71C000","01008CA00D71C000","status-playable","playable","2021-02-10 15:53:21.000" +"ARMS Demo","","status-playable","playable","2021-02-10 16:30:13.000" +"Art of Balance DEMO - 010062F00CAE2000","010062F00CAE2000","gpu;slow;status-ingame","ingame","2021-02-10 17:17:12.000" +"Assault on Metaltron Demo - 0100C5E00E540000","0100C5E00E540000","status-playable","playable","2021-02-10 19:48:06.000" +"Automachef Demo - 01006B700EA6A000","01006B700EA6A000","status-playable","playable","2021-02-10 20:35:37.000" +"AVICII Invector Demo - 0100E100128BA000","0100E100128BA000","status-playable","playable","2021-02-10 21:04:58.000" +"Awesome Pea (Demo) - 010023800D3F2000","010023800D3F2000","status-playable","playable","2021-02-10 21:48:21.000" +"Awesome Pea 2 (Demo) - 0100D2011E28000","","crash;status-nothing","nothing","2021-02-10 22:08:27.000" +"Ayakashi koi gikyoku Free Trial - 010075400DEC6000","010075400DEC6000","status-playable","playable","2021-02-10 22:22:11.000" +"Bad North Demo","","status-playable","playable","2021-02-10 22:48:38.000" +"Baobabs Mausoleum: DEMO - 0100D3000AEC2000","0100D3000AEC2000","status-playable","playable","2021-02-10 22:59:25.000" +"Battle Chef Brigade Demo - 0100DBB00CAEE000","0100DBB00CAEE000","status-playable","playable","2021-02-10 23:15:07.000" +"Mercenaries Blaze Dawn of the Twin Dragons - 0100a790133fc000","0100a790133fc000","","","2021-02-11 18:43:00.000" +"Fallen Legion Revenants Demo - 0100cac013776000","0100cac013776000","","","2021-02-11 18:43:06.000" +"Bear With Me - The Lost Robots Demo - 010024200E97E800","010024200E97E800","nvdec;status-playable","playable","2021-02-12 22:38:12.000" +"Birds and Blocks Demo - 0100B6B012FF4000","0100B6B012FF4000","services;status-boots;demo","boots","2022-04-10 04:53:03.000" +"Black Hole Demo - 01004BE00A682000","01004BE00A682000","status-playable","playable","2021-02-12 23:02:17.000" +"Blasphemous Demo - 0100302010338000","0100302010338000","status-playable","playable","2021-02-12 23:49:56.000" +"Blaster Master Zero DEMO - 010025B002E92000","010025B002E92000","status-playable","playable","2021-02-12 23:59:06.000" +"Bleep Bloop DEMO - 010091700EA2A000","010091700EA2A000","nvdec;status-playable","playable","2021-02-13 00:20:53.000" +"Block-a-Pix Deluxe Demo - 0100E1C00DB6C000","0100E1C00DB6C000","status-playable","playable","2021-02-13 00:37:39.000" +"Get Over Here - 0100B5B00E77C000","0100B5B00E77C000","status-playable","playable","2022-10-28 11:53:52.000" +"Unspottable - 0100B410138C0000","0100B410138C0000","status-playable","playable","2022-10-25 19:28:49.000" +"Blossom Tales Demo - 01000EB01023E000","01000EB01023E000","status-playable","playable","2021-02-13 14:22:53.000" +"Boomerang Fu Demo Version - 010069F0135C4000","010069F0135C4000","demo;status-playable","playable","2021-02-13 14:38:13.000" +"Bot Vice Demo - 010069B00EAC8000","010069B00EAC8000","crash;demo;status-ingame","ingame","2021-02-13 14:52:42.000" +"BOXBOY! + BOXGIRL! Demo - 0100B7200E02E000","0100B7200E02E000","demo;status-playable","playable","2021-02-13 14:59:08.000" +"Super Mario 3D World + Bowser's Fury - 010028600EBDA000","010028600EBDA000","status-playable;ldn-works","playable","2024-07-31 10:45:37.000" +"Brawlout Demo - 0100C1B00E1CA000","0100C1B00E1CA000","demo;status-playable","playable","2021-02-13 22:46:53.000" +"Brigandine: The Legend of Runersia Demo - 0100703011258000","0100703011258000","status-playable","playable","2021-02-14 14:44:10.000" +"Brotherhood United Demo - 0100F19011226000","0100F19011226000","demo;status-playable","playable","2021-02-14 21:10:57.000" +"Bucket Knight demo - 0100F1B010A90000","0100F1B010A90000","demo;status-playable","playable","2021-02-14 21:23:09.000" +"BurgerTime Party! Demo - 01005780106E8000","01005780106E8000","demo;status-playable","playable","2021-02-14 21:34:16.000" +"Cadence of Hyrule Crypt of the NecroDancer Featuring The Legend of Zelda Demo - 010065700EE0600","","demo;gpu;nvdec;status-ingame","ingame","2021-02-14 21:48:15.000" +"Cafeteria Nipponica Demo - 010060400D21C000","010060400D21C000","demo;status-playable","playable","2021-02-14 22:11:35.000" +"Cake Bash Demo - 0100699012F82000","0100699012F82000","crash;demo;status-ingame","ingame","2021-02-14 22:21:15.000" +"Captain Toad: Treasure Tracker Demo - 01002C400B6B6000","01002C400B6B6000","32-bit;demo;status-playable","playable","2021-02-14 22:36:09.000" +"CAPTAIN TSUBASA: RISE OF NEW CHAMPIONS DEMO VERSION - 01002320137CC000","01002320137CC000","slow;status-playable","playable","2021-02-14 22:45:35.000" +"Castle Crashers Remastered Demo - 0100F6D01060E000","0100F6D01060E000","gpu;status-boots;demo","boots","2022-04-10 10:57:10.000" +"Cat Quest II Demo - 0100E86010220000","0100E86010220000","demo;status-playable","playable","2021-02-15 14:11:57.000" +"Caveman Warriors Demo","","demo;status-playable","playable","2021-02-15 14:44:08.000" +"Chickens Madness DEMO - 0100CAC011C3A000","0100CAC011C3A000","UE4;demo;gpu;nvdec;status-ingame","ingame","2021-02-15 15:02:10.000" +"Little Nightmares II - 010097100EDD6000","010097100EDD6000","status-playable;UE4","playable","2023-02-10 18:24:44.000" +"Rhythm Fighter - 0100729012D18000","0100729012D18000","crash;status-nothing","nothing","2021-02-16 18:51:30.000" +"大図書館の羊飼い -Library Party-01006de00a686000","01006de00a686000","","","2021-02-16 07:20:19.000" +"Timothy and the Mysterious Forest - 0100393013A10000","0100393013A10000","gpu;slow;status-ingame","ingame","2021-06-02 00:42:11.000" +"Pixel Game Maker Series Werewolf Princess Kaguya - 0100859013CE6000","0100859013CE6000","crash;services;status-nothing","nothing","2021-03-26 00:23:07.000" +"D.C.4 ~ダ・カーポ4~-0100D8500EE14000","0100D8500EE14000","","","2021-02-17 08:46:35.000" +"Yo kai watch 1 for Nintendo Switch - 0100C0000CEEA000","0100C0000CEEA000","gpu;status-ingame;opengl","ingame","2024-05-28 11:11:49.000" +"Project TRIANGLE STRATEGY Debut Demo - 01002980140F6000","01002980140F6000","status-playable;UE4;demo","playable","2022-10-24 21:40:27.000" +"SNK VS. CAPCOM: THE MATCH OF THE MILLENNIUM - 010027D0137E0000","010027D0137E0000","","","2021-02-19 12:35:20.000" +"Super Soccer Blast - 0100D61012270000","0100D61012270000","gpu;status-ingame","ingame","2022-02-16 08:39:12.000" +"VOEZ (Japan Version) - 0100A7F002830000","0100A7F002830000","","","2021-02-19 15:07:49.000" +"Dungreed - 010045B00C496000","010045B00C496000","","","2021-02-19 16:18:07.000" +"Capcom Arcade Stadium - 01001E0013208000","01001E0013208000","status-playable","playable","2021-03-17 05:45:14.000" +"Urban Street Fighting - 010054F014016000","010054F014016000","status-playable","playable","2021-02-20 19:16:36.000" +"The Long Dark - 01007A700A87C000","01007A700A87C000","status-playable","playable","2021-02-21 14:19:52.000" +"Rebel Galaxy: Outlaw - 0100CAA01084A000","0100CAA01084A000","status-playable;nvdec","playable","2022-12-01 07:44:56.000" +"Persona 5: Strikers (US) - 0100801011C3E000","0100801011C3E000","status-playable;nvdec;mac-bug","playable","2023-09-26 09:36:01.000" +"Steven Universe Unleash the Light","","","","2021-02-25 02:33:05.000" +"Ghosts 'n Goblins Resurrection - 0100D6200F2BA000","0100D6200F2BA000","status-playable","playable","2023-05-09 12:40:41.000" +"Taxi Chaos - 0100B76011DAA000","0100B76011DAA000","slow;status-playable;online-broken;UE4","playable","2022-10-25 19:13:00.000" +"COTTOn Reboot! [ コットン リブート! ] - 01003DD00F94A000","01003DD00F94A000","status-playable","playable","2022-05-24 16:29:24.000" +"STORY OF SEASONS Pioneers of Olive [ 牧場物語 オリーブタウンと希望の大地 ] - 010017301007E000","010017301007E000","status-playable","playable","2021-03-18 11:42:19.000" +"Bravely Default II - 01006DC010326000","01006DC010326000","gpu;status-ingame;crash;Needs Update;UE4","ingame","2024-04-26 06:11:26.000" +"Forward To The Sky - 0100DBA011136000","0100DBA011136000","","","2021-02-27 12:11:42.000" +"Just Dance 2019","","gpu;online;status-ingame","ingame","2021-02-27 17:21:27.000" +"Harvest Moon One World - 010016B010FDE00","","status-playable","playable","2023-05-26 09:17:19.000" +"Just Dance 2017 - 0100BCE000598000","0100BCE000598000","online;status-playable","playable","2021-03-05 09:46:01.000" +"コープスパーティー ブラッドカバー リピーティッドフィアー (Corpse Party Blood Covered: Repeated Fear) - 0100965012E22000","0100965012E22000","","","2021-03-05 09:47:52.000" +"Sea of Solitude The Director's Cut - 0100AFE012BA2000","0100AFE012BA2000","gpu;status-ingame","ingame","2024-07-12 18:29:29.000" +"Just Dance 2018 - 0100A0500348A000","0100A0500348A000","","","2021-03-13 08:09:14.000" +"Crash Bandicoot 4: It's About Time - 010073401175E000","010073401175E000","status-playable;nvdec;UE4","playable","2024-03-17 07:13:45.000" +"Bloody Bunny : The Game - 0100E510143EC000","0100E510143EC000","status-playable;nvdec;UE4","playable","2022-10-22 13:18:55.000" +"Plants vs. Zombies: Battle for Neighborville Complete Edition - 0100C56010FD8000","0100C56010FD8000","gpu;audio;status-boots;crash","boots","2024-09-02 12:58:14.000" +"Cathedral - 0100BEB01327A000","0100BEB01327A000","","","2021-03-19 22:12:46.000" +"Night Vision - 0100C3801458A000","0100C3801458A000","","","2021-03-19 22:20:53.000" +"Stubbs the Zombie in Rebel Without a Pulse - 0100964012528000","0100964012528000","","","2021-03-19 22:56:50.000" +"Hitman 3 - Cloud Version - 01004990132AC000","01004990132AC000","Needs Update;crash;services;status-nothing","nothing","2021-04-18 22:35:07.000" +"Speed Limit - 01000540139F6000","01000540139F6000","gpu;status-ingame","ingame","2022-09-02 18:37:40.000" +"Dig Dog - 0100A5A00DBB0000","0100A5A00DBB0000","gpu;status-ingame","ingame","2021-06-02 17:17:51.000" +"Renzo Racer - 01007CC0130C6000","01007CC0130C6000","status-playable","playable","2021-03-23 22:28:05.000" +"Persephone","","status-playable","playable","2021-03-23 22:39:19.000" +"Cresteaju","","gpu;status-ingame","ingame","2021-03-24 10:46:06.000" +"Boom Blaster","","status-playable","playable","2021-03-24 10:55:56.000" +"Soccer Club Life: Playing Manager - 010017B012AFC000","010017B012AFC000","gpu;status-ingame","ingame","2022-10-25 11:59:22.000" +"Radio Commander - 0100BAD013B6E000","0100BAD013B6E000","nvdec;status-playable","playable","2021-03-24 11:20:46.000" +"Negative - 01008390136FC000","01008390136FC000","nvdec;status-playable","playable","2021-03-24 11:29:41.000" +"Hero-U: Rogue to Redemption - 010077D01094C000","010077D01094C000","nvdec;status-playable","playable","2021-03-24 11:40:01.000" +"Haven - 0100E2600DBAA000","0100E2600DBAA000","status-playable","playable","2021-03-24 11:52:41.000" +"Escape First 2 - 010021201296A000","010021201296A000","status-playable","playable","2021-03-24 11:59:41.000" +"Active Neurons 3 - 0100EE1013E12000","0100EE1013E12000","status-playable","playable","2021-03-24 12:20:20.000" +"Blizzard Arcade Collection - 0100743013D56000","0100743013D56000","status-playable;nvdec","playable","2022-08-03 19:37:26.000" +"Hellpoint - 010024600C794000","010024600C794000","status-menus","menus","2021-11-26 13:24:20.000" +"Death's Hangover - 0100492011A8A000","0100492011A8A000","gpu;status-boots","boots","2023-08-01 22:38:06.000" +"Storm in a Teacup - 0100B2300B932000","0100B2300B932000","gpu;status-ingame","ingame","2021-11-06 02:03:19.000" +"Charge Kid - 0100F52013A66000","0100F52013A66000","gpu;status-boots;audout","boots","2024-02-11 01:17:47.000" +"Monster Hunter Rise - 0100B04011742000","0100B04011742000","gpu;slow;status-ingame;crash;nvdec;online-broken;Needs Update;ldn-works","ingame","2024-08-24 11:04:59.000" +"Gotobun no Hanayome Natsu no Omoide mo Gotobun [ 五等分の花嫁∬ ~夏の思い出も五等分~ ] - 0100FB5013670000","0100FB5013670000","","","2021-03-27 16:51:27.000" +"Steam Prison - 01008010118CC000","01008010118CC000","nvdec;status-playable","playable","2021-04-01 15:34:11.000" +"Rogue Heroes: Ruins of Tasos - 01009FA010848000","01009FA010848000","online;status-playable","playable","2021-04-01 15:41:25.000" +"Fallen Legion Revenants - 0100AA801258C000","0100AA801258C000","status-menus;crash","menus","2021-11-25 08:53:20.000" +" R-TYPE FINAL 2 Demo - 01007B0014300000","01007B0014300000","slow;status-ingame;nvdec;UE4;demo","ingame","2022-10-24 21:57:42.000" +"Fire Emblem: Shadow Dragon and the Blade of Light - 0100A12011CC8000","0100A12011CC8000","status-playable","playable","2022-10-17 19:49:14.000" +"Dariusburst - Another Chronicle EX+ - 010015800F93C000","010015800F93C000","online;status-playable","playable","2021-04-05 14:21:43.000" +"Curse of the Dead Gods - 0100D4A0118EA000","0100D4A0118EA000","status-playable","playable","2022-08-30 12:25:38.000" +"Clocker - 0100DF9013AD4000","0100DF9013AD4000","status-playable","playable","2021-04-05 15:05:13.000" +"Azur Lane: Crosswave - 01006AF012FC8000","01006AF012FC8000","UE4;nvdec;status-playable","playable","2021-04-05 15:15:25.000" +"AnShi - 01000FD00DF78000","01000FD00DF78000","status-playable;nvdec;UE4","playable","2022-10-21 19:37:01.000" +"Aery - A Journey Beyond Time - 0100DF8014056000","0100DF8014056000","status-playable","playable","2021-04-05 15:52:25.000" +"Sir Lovelot - 0100E9201410E000","0100E9201410E000","status-playable","playable","2021-04-05 16:21:46.000" +"Pixel Game Maker Series Puzzle Pedestrians - 0100EA2013BCC000","0100EA2013BCC000","status-playable","playable","2022-10-24 20:15:50.000" +"Monster Jam Steel Titans 2 - 010051B0131F0000","010051B0131F0000","status-playable;nvdec;UE4","playable","2022-10-24 17:17:59.000" +"Huntdown - 0100EBA004726000","0100EBA004726000","status-playable","playable","2021-04-05 16:59:54.000" +"GraviFire - 010054A013E0C000","010054A013E0C000","status-playable","playable","2021-04-05 17:13:32.000" +"Dungeons & Bombs","","status-playable","playable","2021-04-06 12:46:22.000" +"Estranged: The Departure - 01004F9012FD8000","01004F9012FD8000","status-playable;nvdec;UE4","playable","2022-10-24 10:37:58.000" +"Demon's Rise - Lords of Chaos - 0100E29013818000","0100E29013818000","status-playable","playable","2021-04-06 16:20:06.000" +"Bibi & Tina at the horse farm - 010062400E69C000","010062400E69C000","status-playable","playable","2021-04-06 16:31:39.000" +"WRC 9 The Official Game - 01001A0011798000","01001A0011798000","gpu;slow;status-ingame;nvdec","ingame","2022-10-25 19:47:39.000" +"Woodsalt - 0100288012966000","0100288012966000","status-playable","playable","2021-04-06 17:01:48.000" +"Kingdoms of Amalur: Re-Reckoning - 0100EF50132BE000","0100EF50132BE000","status-playable","playable","2023-08-10 13:05:08.000" +"Jiffy - 01008330134DA000","01008330134DA000","gpu;status-ingame;opengl","ingame","2024-02-03 23:11:24.000" +"A-Train: All Aboard! Tourism - 0100A3E010E56000","0100A3E010E56000","nvdec;status-playable","playable","2021-04-06 17:48:19.000" +"Synergia - 01009E700F448000","01009E700F448000","status-playable","playable","2021-04-06 17:58:04.000" +"R.B.I. Baseball 21 - 0100B4A0115CA000","0100B4A0115CA000","status-playable;online-working","playable","2022-10-24 22:31:45.000" +"NEOGEO POCKET COLOR SELECTION Vol.1 - 010006D0128B4000","010006D0128B4000","status-playable","playable","2023-07-08 20:55:36.000" +"Mighty Fight Federation - 0100C1E0135E0000","0100C1E0135E0000","online;status-playable","playable","2021-04-06 18:39:56.000" +"Lost Lands: The Four Horsemen - 0100133014510000","0100133014510000","status-playable;nvdec","playable","2022-10-24 16:41:00.000" +"In rays of the Light - 0100A760129A0000","0100A760129A0000","status-playable","playable","2021-04-07 15:18:07.000" +"DARQ Complete Edition - 0100440012FFA000","0100440012FFA000","audout;status-playable","playable","2021-04-07 15:26:21.000" +"Can't Drive This - 0100593008BDC000","0100593008BDC000","status-playable","playable","2022-10-22 14:55:17.000" +"Wanderlust Travel Stories - 0100B27010436000","0100B27010436000","status-playable","playable","2021-04-07 16:09:12.000" +"Tales from the Borderlands - 0100F0C011A68000","0100F0C011A68000","status-playable;nvdec","playable","2022-10-25 18:44:14.000" +"Star Wars: Republic Commando - 0100FA10115F8000","0100FA10115F8000","gpu;status-ingame;32-bit","ingame","2023-10-31 15:57:17.000" +"Barrage Fantasia - 0100F2A013752000","0100F2A013752000","","","2021-04-08 01:02:06.000" +"Atelier Rorona - The Alchemist of Arland - DX - 010088600C66E000","010088600C66E000","nvdec;status-playable","playable","2021-04-08 15:33:15.000" +"PAC-MAN 99 - 0100AD9012510000","0100AD9012510000","gpu;status-ingame;online-broken","ingame","2024-04-23 00:48:25.000" +"MAGLAM LORD - 0100C2C0125FC000","0100C2C0125FC000","","","2021-04-09 09:10:45.000" +"Part Time UFO - 01006B5012B32000 ","01006B5012B32000","status-ingame;crash","ingame","2023-03-03 03:13:05.000" +"Fitness Boxing - 0100E7300AAD4000","0100E7300AAD4000","status-playable","playable","2021-04-14 20:33:33.000" +"Fitness Boxing 2: Rhythm & Exercise - 0100073011382000","0100073011382000","crash;status-ingame","ingame","2021-04-14 20:40:48.000" +"Overcooked! All You Can Eat - 0100F28011892000","0100F28011892000","ldn-untested;online;status-playable","playable","2021-04-15 10:33:52.000" +"SpyHack - 01005D701264A000","01005D701264A000","status-playable","playable","2021-04-15 10:53:51.000" +"Oh My Godheads: Party Edition - 01003B900AE12000","01003B900AE12000","status-playable","playable","2021-04-15 11:04:11.000" +"My Hidden Things - 0100E4701373E000","0100E4701373E000","status-playable","playable","2021-04-15 11:26:06.000" +"Merchants of Kaidan - 0100E5000D3CA000","0100E5000D3CA000","status-playable","playable","2021-04-15 11:44:28.000" +"Mahluk dark demon - 010099A0145E8000","010099A0145E8000","status-playable","playable","2021-04-15 13:14:24.000" +"Fred3ric - 0100AC40108D8000","0100AC40108D8000","status-playable","playable","2021-04-15 13:30:31.000" +"Fishing Universe Simulator - 010069800D292000","010069800D292000","status-playable","playable","2021-04-15 14:00:43.000" +"Exorder - 0100FA800A1F4000","0100FA800A1F4000","nvdec;status-playable","playable","2021-04-15 14:17:20.000" +"FEZ - 01008D900B984000","01008D900B984000","gpu;status-ingame","ingame","2021-04-18 17:10:16.000" +"Danger Scavenger - ","","nvdec;status-playable","playable","2021-04-17 15:53:04.000" +"Hellbreachers - 01002BF013F0C000","01002BF013F0C000","","","2021-04-17 17:19:20.000" +"Cooking Simulator - 01001E400FD58000","01001E400FD58000","status-playable","playable","2021-04-18 13:25:23.000" +"Digerati Presents: The Dungeon Crawl Vol. 1 - 010035D0121EC000","010035D0121EC000","slow;status-ingame","ingame","2021-04-18 14:04:55.000" +"Clea 2 - 010045E0142A4000","010045E0142A4000","status-playable","playable","2021-04-18 14:25:18.000" +"Livestream Escape from Hotel Izanami - 0100E45014338000","0100E45014338000","","","2021-04-19 02:20:34.000" +"Ai Kiss 2 [ アイキス2 ] - 01000E9013CD4000","01000E9013CD4000","","","2021-04-19 02:49:12.000" +"Pikachin-Kit – Game de Pirameki Daisakusen [ ピカちんキット ゲームでピラメキ大作戦!] - 01009C100A8AA000","01009C100A8AA000","","","2021-04-19 03:11:07.000" +"Ougon musou kyoku CROSS [ 黄金夢想曲†CROSS] - 010011900E720000","010011900E720000","","","2021-04-19 03:22:41.000" +"Cargo Crew Driver - 0100DD6014870000","0100DD6014870000","status-playable","playable","2021-04-19 12:54:22.000" +"Black Legend - 0100C3200E7E6000","0100C3200E7E6000","gpu;status-ingame;UE4;vulkan-backend-bug;opengl-backend-bug","ingame","2022-10-22 12:54:48.000" +"Balan Wonderworld - 0100438012EC8000","0100438012EC8000","status-playable;nvdec;UE4","playable","2022-10-22 13:08:43.000" +"Arkham Horror: Mother's Embrace - 010069A010606000","010069A010606000","nvdec;status-playable","playable","2021-04-19 15:40:55.000" +"S.N.I.P.E.R. Hunter Scope - 0100B8B012ECA000","0100B8B012ECA000","status-playable","playable","2021-04-19 15:58:09.000" +"Ploid Saga - 0100E5B011F48000 ","0100E5B011F48000","status-playable","playable","2021-04-19 16:58:45.000" +"Kaze and the Wild Masks - 010038B00F142000","010038B00F142000","status-playable","playable","2021-04-19 17:11:03.000" +"I Saw Black Clouds - 01001860140B0000","01001860140B0000","nvdec;status-playable","playable","2021-04-19 17:22:16.000" +"Escape from Life Inc - 010023E013244000","010023E013244000","status-playable","playable","2021-04-19 17:34:09.000" +"El Hijo - A Wild West Tale - 010020A01209C000","010020A01209C000","nvdec;status-playable","playable","2021-04-19 17:44:08.000" +"Bomber Fox - 0100A1F012948000","0100A1F012948000","nvdec;status-playable","playable","2021-04-19 17:58:13.000" +"Stitchy in Tooki Trouble - 010077B014518000","010077B014518000","status-playable","playable","2021-05-06 16:25:53.000" +"SaGa Frontier Remastered - 0100A51013530000","0100A51013530000","status-playable;nvdec","playable","2022-11-03 13:54:56.000" +"Wonder Boy Asha in Monster World [ ワンダーボーイ アーシャ・イン・モンスターワールド ] - 0100EB2012E36000","0100EB2012E36000","status-nothing;crash","nothing","2021-11-03 08:45:06.000" +"Raiden IV x Mikado Remix [ 雷電Ⅳ×MIKADO remix ] - 01005CD013116000","01005CD013116000","status-playable","playable","2022-07-29 15:50:13.000" +"Uno no Tatsujin Machigai Sagashi Museum for Nintendo Switch [ -右脳の達人- まちがいさがしミュージアム for Nintendo Switch ] - 01001030136C6000","01001030136C6000","","","2021-04-22 21:59:27.000" +"Shantae - 0100430013120000","0100430013120000","status-playable","playable","2021-05-21 04:53:26.000" +"The Legend of Heroes: Trails of Cold Steel IV - 0100D3C010DE8000","0100D3C010DE8000","nvdec;status-playable","playable","2021-04-23 14:01:05.000" +"Effie - 01002550129F0000","01002550129F0000","status-playable","playable","2022-10-27 14:36:39.000" +"Death end re;Quest - 0100AEC013DDA000","0100AEC013DDA000","status-playable","playable","2023-07-09 12:19:54.000" +"THE LEGEND OF HEROES: ZERO NO KISEKI KAI [英雄傳說 零之軌跡:改] - 01005E5013862000","01005E5013862000","status-nothing;crash","nothing","2021-09-30 14:41:07.000" +"Yoshi's Crafted World - 01006000040C2000","01006000040C2000","gpu;status-ingame;audout","ingame","2021-08-30 13:25:51.000" +"TY the Tasmanian Tiger 2: Bush Rescue HD - 0100BC701417A000","0100BC701417A000","","","2021-05-04 23:11:57.000" +"Nintendo Labo Toy-Con 03: Vehicle Kit - 01001E9003502000","01001E9003502000","services;status-menus;crash","menus","2022-08-03 17:20:11.000" +"Say No! More - 01001C3012912000","01001C3012912000","status-playable","playable","2021-05-06 13:43:34.000" +"Potion Party - 01000A4014596000","01000A4014596000","status-playable","playable","2021-05-06 14:26:54.000" +"Saviors of Sapphire Wings & Stranger of Sword City Revisited - 0100AA00128BA000","0100AA00128BA000","status-menus;crash","menus","2022-10-24 23:00:46.000" +"Lost Words: Beyond the Page - 0100018013124000","0100018013124000","status-playable","playable","2022-10-24 17:03:21.000" +"Lost Lands 3: The Golden Curse - 0100156014C6A000","0100156014C6A000","status-playable;nvdec","playable","2022-10-24 16:30:00.000" +"ISLAND - 0100F06013710000","0100F06013710000","status-playable","playable","2021-05-06 15:11:47.000" +"SilverStarChess - 010016D00A964000","010016D00A964000","status-playable","playable","2021-05-06 15:25:57.000" +"Breathedge - 01000AA013A5E000","01000AA013A5E000","UE4;nvdec;status-playable","playable","2021-05-06 15:44:28.000" +"Isolomus - 010001F0145A8000","010001F0145A8000","services;status-boots","boots","2021-11-03 07:48:21.000" +"Relicta - 01002AD013C52000","01002AD013C52000","status-playable;nvdec;UE4","playable","2022-10-31 12:48:33.000" +"Rain on Your Parade - 0100BDD014232000","0100BDD014232000","status-playable","playable","2021-05-06 19:32:04.000" +"World's End Club Demo - 0100BE101453E000","0100BE101453E000","","","2021-05-08 16:22:55.000" +"Very Very Valet Demo - 01006C8014DDA000","01006C8014DDA000","status-boots;crash;Needs Update;demo","boots","2022-11-12 15:26:13.000" +"Miitopia Demo - 01007DA0140E8000","01007DA0140E8000","services;status-menus;crash;demo","menus","2023-02-24 11:50:58.000" +"Knight Squad 2 - 010024B00E1D6000","010024B00E1D6000","status-playable;nvdec;online-broken","playable","2022-10-28 18:38:09.000" +"Tonarini kanojo noiru shiawase ~ Curious Queen ~ [ となりに彼女のいる幸せ~Curious Queen~] - 0100A18011BE4000","0100A18011BE4000","","","2021-05-11 13:40:34.000" +"Mainichi mamoru miya sanchino kyou nogohan [ 毎日♪ 衛宮さんちの今日のごはん ] - 01005E6010114000","01005E6010114000","","","2021-05-11 13:45:30.000" +"Commander Keen in Keen Dreams: Definitive Edition - 0100E400129EC000","0100E400129EC000","status-playable","playable","2021-05-11 19:33:54.000" +"SD Gundam G Generation Genesis (0100CEE0140CE000)","0100CEE0140CE000","","","2021-05-13 12:29:50.000" +"Poison Control - 0100EB6012FD2000","0100EB6012FD2000","status-playable","playable","2021-05-16 14:01:54.000" +"My Riding Stables 2: A New Adventure - 010042A00FBF0000","010042A00FBF0000","status-playable","playable","2021-05-16 14:14:59.000" +"Dragon Audit - 0100DBC00BD5A000","0100DBC00BD5A000","crash;status-ingame","ingame","2021-05-16 14:24:46.000" +"Arcaea - 0100E680149DC000","0100E680149DC000","status-playable","playable","2023-03-16 19:31:21.000" +"Calculator - 010004701504A000","010004701504A000","status-playable","playable","2021-06-11 13:27:20.000" +"Rune Factory 5 (JP) - 010014D01216E000","010014D01216E000","gpu;status-ingame","ingame","2021-06-01 12:00:36.000" +"SD GUNDAM G GENERATION CROSS RAYS PREMIUM G SOUND EDITION - 010022900D3EC00","","status-playable;nvdec","playable","2022-09-15 20:45:57.000" +"War Of Stealth - assassin - 01004FA01391A000","01004FA01391A000","status-playable","playable","2021-05-22 17:34:38.000" +"Under Leaves - 01008F3013E4E000","01008F3013E4E000","status-playable","playable","2021-05-22 18:13:58.000" +"Travel Mosaics 7: Fantastic Berlin - ","","status-playable","playable","2021-05-22 18:37:34.000" +"Travel Mosaics 6: Christmas Around the World - 0100D520119D6000","0100D520119D6000","status-playable","playable","2021-05-26 00:52:47.000" +"Travel Mosaics 5: Waltzing Vienna - 01004C4010C00000","01004C4010C00000","status-playable","playable","2021-05-26 11:49:35.000" +"Travel Mosaics 4: Adventures in Rio - 010096D010BFE000","010096D010BFE000","status-playable","playable","2021-05-26 11:54:58.000" +"Travel Mosaics 3: Tokyo Animated - 0100102010BFC000","0100102010BFC000","status-playable","playable","2021-05-26 12:06:27.000" +"Travel Mosaics 2: Roman Holiday - 0100A8D010BFA000","0100A8D010BFA000","status-playable","playable","2021-05-26 12:33:16.000" +"Travel Mosaics: A Paris Tour - 01007DB00A226000","01007DB00A226000","status-playable","playable","2021-05-26 12:42:26.000" +"Rolling Gunner - 010076200CA16000","010076200CA16000","status-playable","playable","2021-05-26 12:54:18.000" +"MotoGP 21 - 01000F5013820000","01000F5013820000","gpu;status-ingame;nvdec;online-broken;UE4;ldn-untested","ingame","2022-10-28 21:35:08.000" +"Little Mouse's Encyclopedia - 0100FE0014200000","0100FE0014200000","status-playable","playable","2022-10-28 19:38:58.000" +"Himehibi 1 gakki - Princess Days - 0100F8D0129F4000","0100F8D0129F4000","status-nothing;crash","nothing","2021-11-03 08:34:19.000" +"Dokapon Up! Mugen no Roulette - 010048100D51A000","010048100D51A000","gpu;status-menus;Needs Update","menus","2022-12-08 19:39:10.000" +"Umineko no Naku Koro ni Saku - うみねこのなく頃に咲 ~猫箱と夢想の交響曲~ - 01006A300BA2C000","01006A300BA2C000","status-playable;audout","playable","2023-05-04 17:25:23.000" +"Paint (0100946012446000)","0100946012446000","","","2021-05-31 12:57:19.000" +"Knockout City - 01009EF00DDB4000","01009EF00DDB4000","services;status-boots;online-broken","boots","2022-12-09 09:48:58.000" +"Trine 2 - 010064E00A932000","010064E00A932000","nvdec;status-playable","playable","2021-06-03 11:45:20.000" +"Trine 3: The Artifacts of Power - 0100DEC00A934000","0100DEC00A934000","ldn-untested;online;status-playable","playable","2021-06-03 12:01:24.000" +"Jamestown+ - 010000100C4B8000","010000100C4B8000","","","2021-06-05 09:09:39.000" +"Lonely Mountains Downhill - 0100A0C00E0DE000","0100A0C00E0DE000","status-playable;online-broken","playable","2024-07-04 05:08:11.000" +"Densha de go!! Hashirou Yamanote Sen - 0100BC501355A000","0100BC501355A000","status-playable;nvdec;UE4","playable","2023-11-09 07:47:58.000" +"Warui Ohsama to Rippana Yuusha - 0100556011C10000","0100556011C10000","","","2021-06-24 14:22:15.000" +"TONY HAWK'S™ PRO SKATER™ 1 + 2 - 0100CC00102B4000","0100CC00102B4000","gpu;status-ingame;Needs Update","ingame","2024-09-24 08:18:14.000" +"Mario Golf: Super Rush - 0100C9C00E25C000","0100C9C00E25C000","gpu;status-ingame","ingame","2024-08-18 21:31:48.000" +"Neo : The World Ends with You (DEMO)- 新すばらしきこのせかい (体験版) - 01001AB0141A8000","01001AB0141A8000","crash;status-ingame","ingame","2021-07-18 07:29:18.000" +"LEGO Builder’s Journey - 01005EE0140AE000 ","01005EE0140AE000","","","2021-06-26 21:31:59.000" +"Disgaea 6: Defiance of Destiny - 0100ABC013136000","0100ABC013136000","deadlock;status-ingame","ingame","2023-04-15 00:50:32.000" +"Game Builder Garage - 0100FA5010788000","0100FA5010788000","status-ingame","ingame","2024-04-20 21:46:22.000" +"Miitopia - 01003DA010E8A000","01003DA010E8A000","gpu;services-horizon;status-ingame","ingame","2024-09-06 10:39:13.000" +"DOOM Eternal - 0100B1A00D8CE000","0100B1A00D8CE000","gpu;slow;status-ingame;nvdec;online-broken","ingame","2024-08-28 15:57:17.000" +"Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy DX+ - 0100FDB00AA800000","0100FDB00AA80000","gpu;status-ingame;nvdec;opengl","ingame","2022-09-14 15:15:55.000" +"Sky: Children of the Light - 0100C52011460000","0100C52011460000","cpu;status-nothing;online-broken","nothing","2023-02-23 10:57:10.000" +"Tantei bokumetsu 探偵撲滅 - 0100CBA014014000","0100CBA014014000","","","2021-07-11 15:58:42.000" +"The Legend of Heroes: Sen no Kiseki I - 0100AD0014AB4000 (Japan, Asia)","0100AD0014AB4000","","","2021-07-12 11:15:02.000" +"SmileBASIC 4 - 0100C9100B06A000","0100C9100B06A000","gpu;status-menus","menus","2021-07-29 17:35:59.000" +"The Legend of Zelda: Breath of the Wild Demo - 0100509005AF2000","0100509005AF2000","status-ingame;demo","ingame","2022-12-24 05:02:58.000" +"Kanda Alice mo Suiri Suru 神田アリス も 推理スル - 01003BD013E30000","01003BD013E30000","","","2021-07-15 00:30:16.000" +"Crayon Shin-chan Ora to Hakase no Natsuyasumi Owaranai Nanokakan no Tabi - 01005BA00F486000","01005BA00F486000","status-playable","playable","2021-07-21 10:41:33.000" +"The Legend of Zelda: Skyward Sword HD - 01002DA013484000","01002DA013484000","gpu;status-ingame","ingame","2024-06-14 16:48:29.000" +"Monster wo taoshite tsuyoi ken ya yoroi wo te ni shinasai. Shinde mo akiramezu ni tsuyoku nari nasai. Yuushatai ga maoh wo taosu sono hi wo shinzite imasu. - モンスターを倒して強い剣や鎧を手にしなさい。死んでも諦めずに強くなりなさい。勇者隊が魔王を倒すその日を信じています。 - 01004E10142FE000","01004E10142FE000","crash;status-ingame","ingame","2021-07-23 10:56:44.000" +"Suguru Nature - 0100BF9012AC6000","0100BF9012AC6000","crash;status-ingame","ingame","2021-07-29 11:36:27.000" +"Cris Tales - 0100B0400EBC4000","0100B0400EBC4000","crash;status-ingame","ingame","2021-07-29 15:10:53.000" +"Ren'ai, Karichaimashita 恋愛、借りちゃいました - 0100142013cea000","0100142013cea000","","","2021-07-28 00:37:48.000" +"Dai Gyakuten Saiban 1 & 2 -Naruhodou Ryuunosuke no Bouken to Kakugo- - 大逆転裁判1&2 -成歩堂龍ノ介の冒險と覺悟- - 0100D7F00FB1A000","0100D7F00FB1A000","","","2021-07-29 06:38:53.000" +"New Pokémon Snap - 0100F4300BF2C000","0100F4300BF2C000","status-playable","playable","2023-01-15 23:26:57.000" +"Astro Port Shmup Collection - 01000A601139E000","01000A601139E000","","","2021-08-03 13:14:37.000" +"Monster Hunter Stories 2: Wings of Ruin ID 0100E2101144600","","services;status-ingame","ingame","2022-07-10 19:27:30.000" +"Picross S GENESIS and Master System edition - ピクロスS MEGA DRIVE & MARKⅢ edition - 010089701567A000","010089701567A000","","","2021-08-10 04:18:06.000" +"ooKing simulator pizza -010033c014666000","010033c014666000","","","2021-08-15 20:49:24.000" +"Everyday♪ Today's MENU for EMIYA Family - 010031B012254000","010031B012254000","","","2021-08-15 19:27:36.000" +"Hatsune Miku Logic Paint S - 0100B4101459A000","0100B4101459A000","","","2021-08-19 00:23:50.000" +"シークレットゲーム KILLER QUEEN for Nintendo Switch","","","","2021-08-21 08:12:41.000" +"リベリオンズ: Secret Game 2nd Stage for Nintendo Switch - 010096000B658000","010096000B658000","","","2021-08-21 08:28:40.000" +"Susanoh -Nihon Shinwa RPG- - スサノオ ~日本神話RPG~ - 0100F3001472A000","0100F3001472A000","","","2021-08-22 04:20:18.000" +"Genkai Tokki Moero Crystal H- 極限凸起 萌情水晶 H - 한계돌파 모에로크리스탈 H - 0100D7E0110B2000","0100D7E0110B2000","32-bit;status-playable","playable","2022-06-06 00:42:09.000" +"World's End Club - 01005A2014362000","01005A2014362000","","","2021-08-28 13:20:14.000" +"Axiom Verge 2","","","","2021-09-02 08:01:30.000" +"Slot - 01007DD011608000","01007DD011608000","","","2021-09-04 01:40:29.000" +"Golf - 01007D8010018000","01007D8010018000","","","2021-09-04 01:55:37.000" +"World Soccer - 010083B00B97A000","010083B00B97A000","","","2021-09-04 02:07:29.000" +"DogFight - 0100E80013BB0000","0100E80013BB0000","","","2021-09-04 14:12:30.000" +"Demon Gaze Extra - デモンゲイズ エクストラ - 01005110142A8000","01005110142A8000","","","2021-09-04 15:06:19.000" +"Spy Alarm - 01000E6015350000","01000E6015350000","services;status-ingame","ingame","2022-12-09 10:12:51.000" +"Rainbocorns - 01005EE0142F6000","01005EE0142F6000","","","2021-09-04 15:53:49.000" +"ZOMB - 0100E2B00E064000","0100E2B00E064000","","","2021-09-04 16:07:19.000" +"Bubble - 01004A4011CB4000","01004A4011CB4000","","","2021-09-04 16:16:24.000" +"Guitar - 0100A2D00EFBE000","0100A2D00EFBE000","","","2021-09-04 18:54:14.000" +"Hunt - 01000DE0125B8000","01000DE0125B8000","","","2021-09-06 11:29:19.000" +"Fight - 0100995013404000","0100995013404000","","","2021-09-06 11:31:42.000" +"Table Tennis - 0100CB00125B6000","0100CB00125B6000","","","2021-09-06 11:55:38.000" +"No More Heroes 3 - 01007C600EB42000","01007C600EB42000","gpu;status-ingame;UE4","ingame","2024-03-11 17:06:19.000" +"Idol Days - 愛怒流でいす - 01002EC014BCA000","01002EC014BCA000","gpu;status-ingame;crash","ingame","2021-12-19 15:31:28.000" +"Checkers - 01001B80124E4000","01001B80124E4000","","","2021-09-06 16:07:24.000" +"King's Bounty II","","","","2021-09-07 21:12:57.000" +"KeyWe - 0100E2B012056000","0100E2B012056000","","","2021-09-07 22:30:10.000" +"Sonic Colors Ultimate [010040E0116B8000]","010040E0116B8000","status-playable","playable","2022-11-12 21:24:26.000" +"SpongeBob: Krusty Cook-Off - 01000D3013E8C000","01000D3013E8C000","","","2021-09-08 13:26:06.000" +"Snakes & Ladders - 010052C00ABFA000","010052C00ABFA000","","","2021-09-08 13:45:26.000" +"Darts - 01005A6010A04000","01005A6010A04000","","","2021-09-08 14:18:00.000" +"Luna's Fishing Garden - 0100374015A2C000","0100374015A2C000","","","2021-09-11 11:38:34.000" +"WarioWare: Get It Together! - 0100563010E0C000","0100563010E0C000","gpu;status-ingame;opengl-backend-bug","ingame","2024-04-23 01:04:56.000" +"SINce Memories Off the starry sky - 0100E94014792000","0100E94014792000","","","2021-09-17 02:03:06.000" +"Bang Dream Girls Band Party for Nintendo Switch","","status-playable","playable","2021-09-19 03:06:58.000" +"ENDER LILIES: Quietus of the Knights - 0100CCF012E9A000","0100CCF012E9A000","","","2021-09-19 01:10:44.000" +"Lost in Random - 01005FE01291A000","01005FE01291A000","gpu;status-ingame","ingame","2022-12-18 07:09:28.000" +"Miyamoto Sansuu Kyoushitsu Kashikoku Naru Puzzle Daizen - 宮本算数教室 賢くなるパズル 大全 - 01004ED014160000","01004ED014160000","","","2021-09-30 12:09:06.000" +"Hot Wheels Unleashed","","","","2021-10-01 01:14:17.000" +"Memories Off - 0100978013276000","0100978013276000","","","2021-10-05 18:50:06.000" +"Blue Reflections Second Light [Demo] [JP] - 01002FA01610A000","01002FA01610A000","","","2021-10-08 09:19:34.000" +"Metroid Dread - 010093801237C000","010093801237C000","status-playable","playable","2023-11-13 04:02:36.000" +"Kentucky Route Zero [0100327005C94000]","0100327005C94000","status-playable","playable","2024-04-09 23:22:46.000" +"Cotton/Guardian Saturn Tribute Games","","gpu;status-boots","boots","2022-11-27 21:00:51.000" +"The Great Ace Attorney Chronicles - 010036E00FB20000","010036E00FB20000","status-playable","playable","2023-06-22 21:26:29.000" +"第六妖守-Dairoku-Di Liu Yao Shou -Dairoku -0100ad80135f4000","0100ad80135f4000","","","2021-10-17 04:42:47.000" +"Touhou Genso Wanderer -Lotus Labyrinth R- - 0100a7a015e4c000","0100a7a015e4c000","","","2021-10-17 20:10:40.000" +"Crysis 2 Remastered - 0100582010AE0000","0100582010AE0000","deadlock;status-menus","menus","2023-09-21 10:46:17.000" +"Crysis 3 Remastered - 0100CD3010AE2000 ","0100CD3010AE2000","deadlock;status-menus","menus","2023-09-10 16:03:50.000" +"Dying Light: Platinum Edition - 01008c8012920000","01008c8012920000","services-horizon;status-boots","boots","2024-03-11 10:43:32.000" +"Steel Assault - 01001C6014772000","01001C6014772000","status-playable","playable","2022-12-06 14:48:30.000" +"Foreclosed - 0100AE001256E000","0100AE001256E000","status-ingame;crash;Needs More Attention;nvdec","ingame","2022-12-06 14:41:12.000" +"Nintendo 64 - Nintendo Switch Online - 0100C9A00ECE6000","0100C9A00ECE6000","gpu;status-ingame;vulkan","ingame","2024-04-23 20:21:07.000" +"Mario Party Superstars - 01006FE013472000","01006FE013472000","gpu;status-ingame;ldn-works;mac-bug","ingame","2024-05-16 11:23:34.000" +"Wheel of Fortune [010033600ADE6000]","010033600ADE6000","status-boots;crash;Needs More Attention;nvdec","boots","2023-11-12 20:29:24.000" +"Abarenbo Tengu & Zombie Nation - 010040E012A5A000","010040E012A5A000","","","2021-10-31 18:24:00.000" +"Eight Dragons - 01003AD013BD2000","01003AD013BD2000","status-playable;nvdec","playable","2022-10-27 14:47:28.000" +"Restless Night [0100FF201568E000]","0100FF201568E000","status-nothing;crash","nothing","2022-02-09 10:54:49.000" +"rRootage Reloaded [01005CD015986000]","01005CD015986000","status-playable","playable","2022-08-05 23:20:18.000" +"Just Dance 2022 - 0100EA6014BB8000","0100EA6014BB8000","gpu;services;status-ingame;crash;Needs Update","ingame","2022-10-28 11:01:53.000" +"LEGO Marvel Super Heroes - 01006F600FFC8000","01006F600FFC8000","status-playable","playable","2024-09-10 19:02:19.000" +"Destructivator SE [0100D74012E0A000]","0100D74012E0A000","","","2021-11-06 14:12:07.000" +"Diablo 2 Resurrected - 0100726014352000","0100726014352000","gpu;status-ingame;nvdec","ingame","2023-08-18 18:42:47.000" +"World War Z [010099F013898000]","010099F013898000","","","2021-11-09 12:00:01.000" +"STAR WARS Jedi Knight II Jedi Outcast - 0100BB500EACA000","0100BB500EACA000","gpu;status-ingame","ingame","2022-09-15 22:51:00.000" +"Shin Megami Tensei V - 010063B012DC6000","010063B012DC6000","status-playable;UE4","playable","2024-02-21 06:30:07.000" +"Mercenaries Rebirth Call of the Wild Lynx - [010031e01627e000]","010031e01627e000","","","2021-11-13 17:14:02.000" +"Summer Pockets REFLECTION BLUE - 0100273013ECA000","0100273013ECA000","","","2021-11-15 14:25:26.000" +"Spelunky - 0100710013ABA000","0100710013ABA000","status-playable","playable","2021-11-20 17:45:03.000" +"Spelunky 2 - 01007EC013ABC000","01007EC013ABC000","","","2021-11-17 19:31:16.000" +"MARSUPILAMI-HOOBADVENTURE - 010074F014628000","010074F014628000","","","2021-11-19 07:43:14.000" +"Pokémon Brilliant Diamond - 0100000011D90000","0100000011D90000","gpu;status-ingame;ldn-works","ingame","2024-08-28 13:26:35.000" +"Ice Station Z - 0100954014718000","0100954014718000","status-menus;crash","menus","2021-11-21 20:02:15.000" +"Shiro - 01000244016BAE000","01000244016BAE00","gpu;status-ingame","ingame","2024-01-13 08:54:39.000" +"Yuru Camp △ Have a nice day! - 0100D12014FC2000","0100D12014FC2000","","","2021-11-29 10:46:03.000" +"Iridium - 010095C016C14000","010095C016C14000","status-playable","playable","2022-08-05 23:19:53.000" +"Black The Fall - 0100502007f54000","0100502007f54000","","","2021-12-05 03:08:22.000" +"Loop Hero - 010004E01523C000","010004E01523C000","","","2021-12-12 18:11:42.000" +"The Battle Cats Unite! - 01001E50141BC000","01001E50141BC000","deadlock;status-ingame","ingame","2021-12-14 21:38:34.000" +"Life is Strange: True Colors [0100500012AB4000]","0100500012AB4000","gpu;status-ingame;UE4","ingame","2024-04-08 16:11:52.000" +"Deathsmiles I・II - 01009120119B4000","01009120119B4000","status-playable","playable","2024-04-08 19:29:00.000" +"Deedlit in Wonder Labyrinth - 0100EF0015A9A000","0100EF0015A9A000","deadlock;status-ingame;Needs Update;Incomplete","ingame","2022-01-19 10:00:59.000" +"Hamidashi Creative - 01006FF014152000","01006FF014152000","gpu;status-ingame","ingame","2021-12-19 15:30:51.000" +"Ys IX: Monstrum Nox - 0100E390124D8000","0100E390124D8000","status-playable","playable","2022-06-12 04:14:42.000" +"Animal Crossing New Horizons Island Transfer Tool - 0100F38011CFE000","0100F38011CFE000","services;status-ingame;Needs Update;Incomplete","ingame","2022-12-07 13:51:19.000" +"Pokémon Mystery Dungeon Rescue Team DX (DEMO) - 010040800FB54000","010040800FB54000","","","2022-01-09 02:15:04.000" +"Monopoly Madness - 01005FF013DC2000","01005FF013DC2000","status-playable","playable","2022-01-29 21:13:52.000" +"DoDonPachi Resurrection - 怒首領蜂大復活 - 01005A001489A000","01005A001489A000","status-ingame;32-bit;crash","ingame","2024-01-25 14:37:32.000" +"Shadow Man Remastered - 0100C3A013840000","0100C3A013840000","gpu;status-ingame","ingame","2024-05-20 06:01:39.000" +"Star Wars - Knights Of The Old Republic - 0100854015868000","0100854015868000","gpu;deadlock;status-boots","boots","2024-02-12 10:13:51.000" +"Gunvolt Chronicles: Luminous Avenger iX 2 - 0100763015C2E000","0100763015C2E000","status-nothing;crash;Needs Update","nothing","2022-04-29 15:34:34.000" +"Furaiki 4 - 風雨来記4 - 010046601125A000","010046601125A000","","","2022-01-27 17:37:47.000" +"Pokémon Legends: Arceus - 01001F5010DFA000","01001F5010DFA000","gpu;status-ingame;Needs Update;ldn-works","ingame","2024-09-19 10:02:02.000" +"Demon Gaze EXTRA - 0100FCC0168FC000","0100FCC0168FC000","","","2022-02-05 16:25:26.000" +"Fatal Frame: Maiden of Black Water - 0100BEB015604000","0100BEB015604000","status-playable","playable","2023-07-05 16:01:40.000" +"OlliOlli World - 0100C5D01128E000","0100C5D01128E000","","","2022-02-08 13:01:22.000" +"Horse Club Adventures - 0100A6B012932000","0100A6B012932000","","","2022-02-10 01:59:25.000" +"Toree 3D (0100E9701479E000)","0100E9701479E000","","","2022-02-15 18:41:33.000" +"Picross S7","","status-playable","playable","2022-02-16 12:51:25.000" +"Nintendo Switch Sports Online Play Test - 01000EE017182000","01000EE017182000","gpu;status-ingame","ingame","2022-03-16 07:44:12.000" +"MLB The Show 22 Tech Test - 0100A9F01776A000","0100A9F01776A000","services;status-nothing;crash;Needs Update;demo","nothing","2022-12-09 10:28:34.000" +"Cruis'n Blast - 0100B41013C82000","0100B41013C82000","gpu;status-ingame","ingame","2023-07-30 10:33:47.000" +"Crunchyroll - 0100C090153B4000","0100C090153B4000","","","2022-02-20 13:56:29.000" +"PUZZLE & DRAGONS Nintendo Switch Edition - 01001D701375A000","01001D701375A000","","","2022-02-20 11:01:34.000" +"Hatsune Miku Connecting Puzzle TAMAGOTORI - 0100118016036000","0100118016036000","","","2022-02-23 02:07:05.000" +"Mononoke Slashdown - 0100F3A00FB78000","0100F3A00FB78000","status-menus;crash","menus","2022-05-04 20:55:47.000" +"Tsukihime - A piece of blue glass moon- - 01001DC01486A800","01001DC01486A800","","","2022-02-28 14:35:38.000" +"Kirby and the Forgotten Land (Demo version) - 010091201605A000","010091201605A000","status-playable;demo","playable","2022-08-21 21:03:01.000" +"Super Zangyura - 01001DA016942000","01001DA016942000","","","2022-03-05 04:54:47.000" +"Atelier Sophie 2: The Alchemist of the Mysterious Dream - 010082A01538E000","010082A01538E000","status-ingame;crash","ingame","2022-12-01 04:34:03.000" +"SEGA Genesis - Nintendo Switch Online - 0100B3C014BDA000","0100B3C014BDA000","status-nothing;crash;regression","nothing","2022-04-11 07:27:21.000" +"TRIANGLE STRATEGY - 0100CC80140F8000","0100CC80140F8000","gpu;status-ingame;Needs Update;UE4;vulkan-backend-bug","ingame","2024-09-25 20:48:37.000" +"Pretty Girls Breakers! - 0100DD2017994000","0100DD2017994000","","","2022-03-10 03:43:51.000" +"Chocobo GP - 01006A30124CA000","01006A30124CA000","gpu;status-ingame;crash","ingame","2022-06-04 14:52:18.000" +".hack//G.U. Last Recode - 0100BA9014A02000","0100BA9014A02000","deadlock;status-boots","boots","2022-03-12 19:15:47.000" +"Monster World IV - 01008CF014560000","01008CF014560000","","","2022-03-12 04:25:01.000" +"Cosmos Bit - 01004810171EA000","01004810171EA000","","","2022-03-12 04:25:58.000" +"The Cruel King and the Great Hero - 0100EBA01548E000","0100EBA01548E000","gpu;services;status-ingame","ingame","2022-12-02 07:02:08.000" +"Lateral Freeze ","","","","2022-03-15 16:00:18.000" +"Miss Kobayashi's Dragonmaid Burst Forth!! Choro-gon☆Breath Demo - 0100FA7017CA6000","0100FA7017CA6000","","","2022-03-19 07:26:02.000" +"Neptunia X SENRAN KAGURA Ninja Wars - 01006D90165A2000","01006D90165A2000","","","2022-03-21 06:58:28.000" +"13 Sentinels Aegis Rim Demo - 0100C54015002000","0100C54015002000","status-playable;demo","playable","2022-04-13 14:15:48.000" +"Kirby and the Forgotten Land - 01004D300C5AE000","01004D300C5AE000","gpu;status-ingame","ingame","2024-03-11 17:11:21.000" +"Love of Love Emperor of LOVE! - 010015C017776000","010015C017776000","","","2022-03-25 08:46:23.000" +"Hatsune Miku JIGSAW PUZZLE - 010092E016B26000","010092E016B26000","","","2022-03-25 08:49:39.000" +"The Ryuo's Work is Never Done! - 010033100EE12000","010033100EE12000","status-playable","playable","2022-03-29 00:35:37.000" +"Miss Kobayashi's Dragonmaid Burst Forth!! Choro-gon☆Breath - 01005AB015994000","01005AB015994000","gpu;status-playable","playable","2022-03-28 02:22:24.000" +"MLB® The Show™ 22 - 0100876015D74000","0100876015D74000","gpu;slow;status-ingame","ingame","2023-04-25 06:28:43.000" +"13 Sentinels Aegis Rim - 01003FC01670C000","01003FC01670C000","slow;status-ingame","ingame","2024-06-10 20:33:38.000" +"Metal Dogs ","","","","2022-04-15 14:32:19.000" +"STAR WARS: The Force Unleashed - 0100153014544000","0100153014544000","status-playable","playable","2024-05-01 17:41:28.000" +"JKSV - 00000000000000000","0000000000000000","","","2022-04-21 23:34:59.000" +"Jigsaw Masterpieces - 0100BB800E0D2000","0100BB800E0D2000","","","2022-05-04 21:14:45.000" +"QuickSpot - 0100E4501677E000","0100E4501677E000","","","2022-05-04 21:14:48.000" +"Yomawari 3 - 0100F47016F26000","0100F47016F26000","status-playable","playable","2022-05-10 08:26:51.000" +"Marco & The Galaxy Dragon Demo - 0100DA7017C9E000","0100DA7017C9E000","gpu;status-ingame;demo","ingame","2023-06-03 13:05:33.000" +"Demon Turf: Neon Splash - 010010C017B28000","010010C017B28000","","","2022-05-04 21:35:59.000" +"Taiko Risshiden V DX - 0100346017304000","0100346017304000","status-nothing;crash","nothing","2022-06-06 16:25:31.000" +"The Stanley Parable: Ultra Deluxe - 010029300E5C4000","010029300E5C4000","gpu;status-ingame","ingame","2024-07-12 23:18:26.000" +"CHAOS;HEAD NOAH - 0100957016B90000","0100957016B90000","status-playable","playable","2022-06-02 22:57:19.000" +"LOOPERS - 010062A0178A8000","010062A0178A8000","gpu;slow;status-ingame;crash","ingame","2022-06-17 19:21:45.000" +"二ノ国 白き聖灰の女王 - 010032400E700000","010032400E700000","services;status-menus;32-bit","menus","2023-04-16 17:11:06.000" +"even if TEMPEST - 010095E01581C000","010095E01581C000","gpu;status-ingame","ingame","2023-06-22 23:50:25.000" +"Mario Strikers Battle League Football First Kick [01008A30182F2000]","01008A30182F2000","","","2022-06-09 20:58:06.000" +"Mario Strikers: Battle League Football - 010019401051C000","010019401051C000","status-boots;crash;nvdec","boots","2024-05-07 06:23:56.000" +"鬼滅之刃:火之神血風譚 / Demon Slayer -Kimetsu no Yaiba- The Hinokami Chronicles - 0100309016E7A000","0100309016E7A000","status-playable;UE4","playable","2024-08-08 04:51:49.000" +"Teenage Mutant Ninja Turtles: Shredder's Revenge - 0100FE701475A000","0100FE701475A000","deadlock;status-boots;crash","boots","2024-09-28 09:31:39.000" +"MOFUMOFU Sensen - 0100B46017500000","0100B46017500000","gpu;status-menus","menus","2024-09-21 21:51:08.000" +"OMORI - 010014E017B14000","010014E017B14000","status-playable","playable","2023-01-07 20:21:02.000" +"30 in 1 game collection vol. 2 - 0100DAC013D0A000","0100DAC013D0A000","status-playable;online-broken","playable","2022-10-15 17:22:27.000" +"索尼克:起源 / Sonic Origins - 01009FB016286000","01009FB016286000","status-ingame;crash","ingame","2024-06-02 07:20:15.000" +"Fire Emblem Warriors: Three Hopes - 010071F0143EA000","010071F0143EA000","gpu;status-ingame;nvdec","ingame","2024-05-01 07:07:42.000" +"LEGO Star Wars: The Skywalker Saga - 010042D00D900000","010042D00D900000","gpu;slow;status-ingame","ingame","2024-04-13 20:08:46.000" +"Pocky & Rocky Reshrined - 01000AF015596000","01000AF015596000","","","2022-06-26 21:34:16.000" +"Horgihugh And Friends - 010085301797E000","010085301797E000","","","2022-06-26 21:34:22.000" +"The movie The Quintessential Bride -Five Memories Spent with You- - 01005E9016BDE000","01005E9016BDE000","status-playable","playable","2023-12-14 14:43:43.000" +"nx-hbmenu - 0000000000000000","0000000000000000","status-boots;Needs Update;homebrew","boots","2024-04-06 22:05:32.000" +"Portal 2 - 0100ABD01785C000","0100ABD01785C000","gpu;status-ingame","ingame","2023-02-20 22:44:15.000" +"Portal - 01007BB017812000","01007BB017812000","status-playable","playable","2024-06-12 03:48:29.000" +"EVE ghost enemies - 01007BE0160D6000","01007BE0160D6000","gpu;status-ingame","ingame","2023-01-14 03:13:30.000" +"PowerSlave Exhumed - 01008E100E416000","01008E100E416000","gpu;status-ingame","ingame","2023-07-31 23:19:10.000" +"Quake - 0100BA5012E54000","0100BA5012E54000","gpu;status-menus;crash","menus","2022-08-08 12:40:34.000" +"Rustler - 010071E0145F8000","010071E0145F8000","","","2022-07-06 02:09:18.000" +"Colors Live - 010020500BD86000","010020500BD86000","gpu;services;status-boots;crash","boots","2023-02-26 02:51:07.000" +"WAIFU IMPACT - 0100393016D7E000","0100393016D7E000","","","2022-07-08 22:16:51.000" +"Sherlock Holmes: The Devil's Daughter - 010020F014DBE000","010020F014DBE000","gpu;status-ingame","ingame","2022-07-11 00:07:26.000" +"0100EE40143B6000 - Fire Emblem Warriors: Three Hopes (Japan) ","0100EE40143B6000","","","2022-07-11 18:41:30.000" +"Wunderling - 01001C400482C000","01001C400482C000","audio;status-ingame;crash","ingame","2022-09-10 13:20:12.000" +"SYNTHETIK: Ultimate - 01009BF00E7D2000","01009BF00E7D2000","gpu;status-ingame;crash","ingame","2022-08-30 03:19:25.000" +"Breakout: Recharged - 010022C016DC8000","010022C016DC8000","slow;status-ingame","ingame","2022-11-06 15:32:57.000" +"Banner Saga Trilogy - 0100CE800B94A000","0100CE800B94A000","slow;status-playable","playable","2024-03-06 11:25:20.000" +"CAPCOM BELT ACTION COLLECTION - 0100F6400A77E000","0100F6400A77E000","status-playable;online;ldn-untested","playable","2022-07-21 20:51:23.000" +"死神と少女/Shinigami to Shoujo - 0100AFA01750C000","0100AFA01750C000","gpu;status-ingame;Incomplete","ingame","2024-03-22 01:06:45.000" +"Darius Cozmic Collection Special Edition - 010059C00BED4000","010059C00BED4000","status-playable","playable","2022-07-22 16:26:50.000" +"Earthworms - 0100DCE00B756000","0100DCE00B756000","status-playable","playable","2022-07-25 16:28:55.000" +"LIVE A LIVE - 0100CF801776C000","0100CF801776C000","status-playable;UE4;amd-vendor-bug","playable","2023-02-05 15:12:07.000" +"Fit Boxing - 0100807008868000 ","0100807008868000","status-playable","playable","2022-07-26 19:24:55.000" +"Gurimugurimoa OnceMore Demo - 01002C8018554000","01002C8018554000","status-playable","playable","2022-07-29 22:07:31.000" +"Trinity Trigger Demo - 010048201891A000","010048201891A000","","","2022-07-26 23:32:10.000" +"SD GUNDAM BATTLE ALLIANCE Demo - 0100829018568000","0100829018568000","audio;status-ingame;crash;demo","ingame","2022-08-01 23:01:20.000" +"Fortnite - 010025400AECE000","010025400AECE000","services-horizon;status-nothing","nothing","2024-04-06 18:23:25.000" +"Furi Definitive Edition - 01000EC00AF98000","01000EC00AF98000","status-playable","playable","2022-07-27 12:35:08.000" +"Jackbox Party Starter - 0100814017CB6000","0100814017CB6000","Incomplete","","2022-07-29 22:18:07.000" +"Digimon Survive - 010047500B7B2000","010047500B7B2000","","","2022-07-29 12:33:28.000" +"Xenoblade Chronicles 3 - 010074F013262000","010074F013262000","gpu;status-ingame;crash;nvdec;vulkan-backend-bug;amd-vendor-bug","ingame","2024-08-06 19:56:44.000" +"Slime Rancher: Plortable Edition - 0100B9C0148D0000","0100B9C0148D0000","","","2022-07-30 06:02:55.000" +"Lost Ruins - 01008AD013A86800","01008AD013A86800","gpu;status-ingame","ingame","2023-02-19 14:09:00.000" +"Heroes of Hammerwatch - 0100D2B00BC54000","0100D2B00BC54000","status-playable","playable","2022-08-01 18:30:21.000" +"Zombie Army 4: Dead War - ","","","","2022-08-01 20:03:53.000" +"Plague Inc: Evolved - 01000CE00CBB8000","01000CE00CBB8000","","","2022-08-02 02:32:33.000" +"Kona - 0100464009294000","0100464009294000","status-playable","playable","2022-08-03 12:48:19.000" +"Minecraft: Story Mode - The Complete Adventure - 010059C002AC2000","010059C002AC2000","status-boots;crash;online-broken","boots","2022-08-04 18:56:58.000" +"LA-MULANA - 010026000F662800","010026000F662800","gpu;status-ingame","ingame","2022-08-12 01:06:21.000" +"Minecraft: Story Mode - Season Two - 01003EF007ABA000","01003EF007ABA000","status-playable;online-broken","playable","2023-03-04 00:30:50.000" +"My Riding Stables - Life with Horses - 010028F00ABAE000","010028F00ABAE000","status-playable","playable","2022-08-05 21:39:07.000" +"NBA Playgrounds - 010002900294A000","010002900294A000","status-playable;nvdec;online-broken;UE4","playable","2022-08-06 17:06:59.000" +"Nintendo Labo Toy-Con 02: Robot Kit - 01009AB0034E0000","01009AB0034E0000","gpu;status-ingame","ingame","2022-08-07 13:03:19.000" +"Nintendo Labo Toy-Con 04: VR Kit - 0100165003504000","0100165003504000","services;status-boots;crash","boots","2023-01-17 22:30:24.000" +"Azure Striker GUNVOLT 3 - 01004E90149AA000","01004E90149AA000","status-playable","playable","2022-08-10 13:46:49.000" +"Clumsy Rush Ultimate Guys - 0100A8A0174A4000","0100A8A0174A4000","","","2022-08-10 02:12:29.000" +"The DioField Chronicle Demo - 01009D901624A000","01009D901624A000","","","2022-08-10 02:18:16.000" +"Professional Construction - The Simulation - 0100A9800A1B6000","0100A9800A1B6000","slow;status-playable","playable","2022-08-10 15:15:45.000" +"Pokémon: Let's Go, Pikachu! demo - 01009AD008C4C000","01009AD008C4C000","slow;status-playable;demo","playable","2023-11-26 11:23:20.000" +"Retail Interactive Display Menu (DevQuestMenu)- 0100069000078000","0100069000078000","services;status-nothing;crash","nothing","2022-08-11 13:19:41.000" +"Retimed - 010086E00BCB2000","010086E00BCB2000","status-playable","playable","2022-08-11 13:32:39.000" +"DRAGON BALL Z: KAKAROT + A NEW POWER AWAKENS SET - 010051C0134F8000","010051C0134F8000","status-playable;vulkan-backend-bug","playable","2024-08-28 00:03:50.000" +"Runbow Deluxe Edition - 0100D37009B8A000","0100D37009B8A000","status-playable;online-broken","playable","2022-08-12 12:20:25.000" +"Saturday Morning RPG - 0100F0000869C000","0100F0000869C000","status-playable;nvdec","playable","2022-08-12 12:41:50.000" +"Slain Back from Hell - 0100BB100AF4C000","0100BB100AF4C000","status-playable","playable","2022-08-12 23:36:19.000" +"Spidersaurs - 010040B017830000","010040B017830000","","","2022-08-14 03:12:30.000" +"月姫 -A piece of blue glass moon- - 01001DC01486A000","01001DC01486A000","","","2022-08-15 15:41:29.000" +"Spacecats with Lasers - 0100D9B0041CE000","0100D9B0041CE000","status-playable","playable","2022-08-15 17:22:44.000" +"Spellspire - 0100E74007EAC000","0100E74007EAC000","status-playable","playable","2022-08-16 11:21:21.000" +"Spot The Difference - 0100E04009BD4000","0100E04009BD4000","status-playable","playable","2022-08-16 11:49:52.000" +"Spot the Differences: Party! - 010052100D1B4000","010052100D1B4000","status-playable","playable","2022-08-16 11:55:26.000" +"Demon Throttle - 01001DA015650000","01001DA015650000","","","2022-08-17 00:54:49.000" +"Kirby’s Dream Buffet - 0100A8E016236000","0100A8E016236000","status-ingame;crash;online-broken;Needs Update;ldn-works","ingame","2024-03-03 17:04:44.000" +"DOTORI - 0100DBD013C92000","0100DBD013C92000","","","2022-08-17 15:10:52.000" +"Syberia 2 - 010028C003FD6000","010028C003FD6000","gpu;status-ingame","ingame","2022-08-24 12:43:03.000" +"Drive Buy - 010093A0108DC000","010093A0108DC000","","","2022-08-21 03:30:18.000" +"Taiko no Tatsujin Rhythm Festival Demo - 0100AA2018846000","0100AA2018846000","","","2022-08-22 23:31:57.000" +"Splatoon 3: Splatfest World Premiere - 0100BA0018500000","0100BA0018500000","gpu;status-ingame;online-broken;demo","ingame","2022-09-19 03:17:12.000" +"Transcripted - 010009F004E66000","010009F004E66000","status-playable","playable","2022-08-25 12:13:11.000" +"eBaseball Powerful Pro Yakyuu 2022 - 0100BCA016636000","0100BCA016636000","gpu;services-horizon;status-nothing;crash","nothing","2024-05-26 23:07:19.000" +"Firegirl: Hack 'n Splash Rescue DX - 0100DAF016D48000","0100DAF016D48000","","","2022-08-30 15:32:22.000" +"Little Noah: Scion of Paradise - 0100535014D76000","0100535014D76000","status-playable;opengl-backend-bug","playable","2022-09-14 04:17:13.000" +"Tinykin - 0100A73016576000","0100A73016576000","gpu;status-ingame","ingame","2023-06-18 12:12:24.000" +"Youtubers Life - 00100A7700CCAA4000","00100A7700CCAA40","status-playable;nvdec","playable","2022-09-03 14:56:19.000" +"Cozy Grove - 01003370136EA000","01003370136EA000","gpu;status-ingame","ingame","2023-07-30 22:22:19.000" +"A Duel Hand Disaster: Trackher - 010026B006802000","010026B006802000","status-playable;nvdec;online-working","playable","2022-09-04 14:24:55.000" +"Angry Bunnies: Colossal Carrot Crusade - 0100F3500D05E000","0100F3500D05E000","status-playable;online-broken","playable","2022-09-04 14:53:26.000" +"CONTRA: ROGUE CORPS Demo - 0100B8200ECA6000","0100B8200ECA6000","gpu;status-ingame","ingame","2022-09-04 16:46:52.000" +"The Gardener and the Wild Vines - 01006350148DA000","01006350148DA000","gpu;status-ingame","ingame","2024-04-29 16:32:10.000" +"HAAK - 0100822012D76000","0100822012D76000","gpu;status-ingame","ingame","2023-02-19 14:31:05.000" +"Temtem - 0100C8B012DEA000","0100C8B012DEA000","status-menus;online-broken","menus","2022-12-17 17:36:11.000" +"Oniken - 010057C00D374000","010057C00D374000","status-playable","playable","2022-09-10 14:22:38.000" +"Ori and the Blind Forest: Definitive Edition Demo - 010005800F46E000","010005800F46E000","status-playable","playable","2022-09-10 14:40:12.000" +"Spyro Reignited Trilogy - 010077B00E046000","010077B00E046000","status-playable;nvdec;UE4","playable","2022-09-11 18:38:33.000" +"Disgaea 4 Complete+ Demo - 010068C00F324000","010068C00F324000","status-playable;nvdec","playable","2022-09-13 15:21:59.000" +"Disney Classic Games: Aladdin and The Lion King - 0100A2F00EEFC000 ","0100A2F00EEFC000","status-playable;online-broken","playable","2022-09-13 15:44:17.000" +"Pokémon Shield - 01008DB008C2C000","01008DB008C2C000","deadlock;status-ingame;crash;online-broken;ldn-works;LAN","ingame","2024-08-12 07:20:22.000" +"Shadowrun Returns - 0100371013B3E000","0100371013B3E000","gpu;status-ingame;Needs Update","ingame","2022-10-04 21:32:31.000" +"Shadowrun: Dragonfall - Director's Cut - 01008310154C4000","01008310154C4000","gpu;status-ingame;Needs Update","ingame","2022-10-04 20:52:18.000" +"Shadowrun: Hong Kong - Extended Edition - 0100C610154CA000","0100C610154CA000","gpu;status-ingame;Needs Update","ingame","2022-10-04 20:53:09.000" +"Animal Drifters - 010057F0195DE000","010057F0195DE000","","","2022-09-20 21:43:54.000" +"Paddles - 0100F5E019300000","0100F5E019300000","","","2022-09-20 21:46:00.000" +"River City Girls Zero - 0100E2D015DEA000","0100E2D015DEA000","","","2022-09-20 22:18:30.000" +"JoJos Bizarre Adventure All-Star Battle R - 01008120128C2000","01008120128C2000","status-playable","playable","2022-12-03 10:45:10.000" +"OneShot: World Machine EE","","","","2022-09-22 08:11:47.000" +"Taiko no Tatsujin: Rhythm Festival - 0100BCA0135A0000","0100BCA0135A0000","status-playable","playable","2023-11-13 13:16:34.000" +"Trinity Trigger - 01002D7010A54000","01002D7010A54000","status-ingame;crash","ingame","2023-03-03 03:09:09.000" +"太鼓之達人 咚咚雷音祭 - 01002460135a4000","01002460135a4000","","","2022-09-27 07:17:54.000" +"Life is Strange Remastered - 0100DC301186A000","0100DC301186A000","status-playable;UE4","playable","2022-10-03 16:54:44.000" +"Life is Strange: Before the Storm Remastered - 010008501186E000","010008501186E000","status-playable","playable","2023-09-28 17:15:44.000" +"Hatsune Miku: Project DIVA Mega Mix - 01001CC00FA1A000","01001CC00FA1A000","audio;status-playable;online-broken","playable","2024-01-07 23:12:57.000" +"Shovel Knight Dig - 0100B62017E68000","0100B62017E68000","","","2022-09-30 20:51:35.000" +"Couch Co-Op Bundle Vol. 2 - 01000E301107A000","01000E301107A000","status-playable;nvdec","playable","2022-10-02 12:04:21.000" +"Shadowverse: Champion’s Battle - 01003B90136DA000","01003B90136DA000","status-nothing;crash","nothing","2023-03-06 00:31:50.000" +"Jinrui no Ninasama he - 0100F4D00D8BE000","0100F4D00D8BE000","status-ingame;crash","ingame","2023-03-07 02:04:17.000" +"XEL - 0100CC9015360000","0100CC9015360000","gpu;status-ingame","ingame","2022-10-03 10:19:39.000" +"Catmaze - 01000A1018DF4000","01000A1018DF4000","","","2022-10-03 11:10:48.000" +"Lost Lands: Dark Overlord - 0100BDD010AC8000 ","0100BDD010AC8000","status-playable","playable","2022-10-03 11:52:58.000" +"STAR WARS Episode I: Racer - 0100BD100FFBE000 ","0100BD100FFBE000","slow;status-playable;nvdec","playable","2022-10-03 16:08:36.000" +"Story of Seasons: Friends of Mineral Town - 0100ED400EEC2000","0100ED400EEC2000","status-playable","playable","2022-10-03 16:40:31.000" +"Collar X Malice -Unlimited- - 0100E3B00F412000 ","0100E3B00F412000","status-playable;nvdec","playable","2022-10-04 15:30:40.000" +"Bullet Soul - 0100DA4017FC2000","0100DA4017FC2000","","","2022-10-05 09:41:49.000" +"Kwaidan ~Azuma manor story~ - 0100894011F62000 ","0100894011F62000","status-playable","playable","2022-10-05 12:50:44.000" +"Shantae: Risky's Revenge - Director's Cut - 0100ADA012370000","0100ADA012370000","status-playable","playable","2022-10-06 20:47:39.000" +"NieR:Automata The End of YoRHa Edition - 0100B8E016F76000","0100B8E016F76000","slow;status-ingame;crash","ingame","2024-05-17 01:06:34.000" +"Star Seeker: The secret of the sourcerous Standoff - 0100DFC018D86000","0100DFC018D86000","","","2022-10-09 15:46:05.000" +"Hyrule Warriors: Age of Calamity - Demo Version - 0100A2C01320E000","0100A2C01320E000","slow;status-playable","playable","2022-10-10 17:37:41.000" +"My Universe - Fashion Boutique - 0100F71011A0A000","0100F71011A0A000","status-playable;nvdec","playable","2022-10-12 14:54:19.000" +"Star Trek Prodigy: Supernova - 01009DF015776000","01009DF015776000","status-playable;nvdec;UE4;opengl-backend-bug","playable","2022-10-14 10:18:50.000" +"Dungeon Nightmares 1 + 2 Collection - 0100926013600000","0100926013600000","status-playable","playable","2022-10-17 18:54:22.000" +"Food Truck Tycoon - 0100F3900D0F0000 ","0100F3900D0F0000","status-playable","playable","2022-10-17 20:15:55.000" +"Persona 5 Royal - 01005CA01580EOO","","","","2022-10-17 21:00:21.000" +"Nintendo Switch Sports - 0100D2F00D5C0000","0100D2F00D5C0000","deadlock;status-boots","boots","2024-09-10 14:20:24.000" +"Grim Legends 2: Song Of The Dark Swan - 010078E012D80000","010078E012D80000","status-playable;nvdec","playable","2022-10-18 12:58:45.000" +"My Universe - Cooking Star Restaurant - 0100CD5011A02000","0100CD5011A02000","status-playable","playable","2022-10-19 10:00:44.000" +"Not Tonight - 0100DAF00D0E2000 ","0100DAF00D0E2000","status-playable;nvdec","playable","2022-10-19 11:48:47.000" +"Outbreak: The New Nightmare - 0100B450130FC000","0100B450130FC000","status-playable","playable","2022-10-19 15:42:07.000" +"Alan Wake Remaster - 01000623017A58000","01000623017A5800","","","2022-10-21 06:13:39.000" +"Persona 5 Royal - 01005CA01580E000","01005CA01580E000","gpu;status-ingame","ingame","2024-08-17 21:45:15.000" +"Shing! (サムライフォース:斬!) - 01009050133B4000","01009050133B4000","status-playable;nvdec","playable","2022-10-22 00:48:54.000" +"Mario + Rabbids® Sparks of Hope - 0100317013770000","0100317013770000","gpu;status-ingame;Needs Update","ingame","2024-06-20 19:56:19.000" +"3D Arcade Fishing - 010010C013F2A000","010010C013F2A000","status-playable","playable","2022-10-25 21:50:51.000" +"Aerial Knight's Never Yield - 0100E9B013D4A000","0100E9B013D4A000","status-playable","playable","2022-10-25 22:05:00.000" +"Aluna: Sentinel of the Shards - 010045201487C000","010045201487C000","status-playable;nvdec","playable","2022-10-25 22:17:03.000" +"Atelier Firis: The Alchemist and the Mysterious Journey DX - 010023201421E000","010023201421E000","gpu;status-ingame;nvdec","ingame","2022-10-25 22:46:19.000" +"Atelier Sophie: The Alchemist of the Mysterious Book DX - 01001A5014220000","01001A5014220000","status-playable","playable","2022-10-25 23:06:20.000" +"Backworlds - 0100FEA014316000","0100FEA014316000","status-playable","playable","2022-10-25 23:20:34.000" +"Bakumatsu Renka SHINSENGUMI - 01008260138C4000","01008260138C4000","status-playable","playable","2022-10-25 23:37:31.000" +"Bamerang - 01008D30128E0000","01008D30128E0000","status-playable","playable","2022-10-26 00:29:39.000" +"Battle Axe - 0100747011890000","0100747011890000","status-playable","playable","2022-10-26 00:38:01.000" +"Beautiful Desolation - 01006B0014590000","01006B0014590000","gpu;status-ingame;nvdec","ingame","2022-10-26 10:34:38.000" +"Bladed Fury - 0100DF0011A6A000","0100DF0011A6A000","status-playable","playable","2022-10-26 11:36:26.000" +"Boris The Rocket - 010092C013FB8000","010092C013FB8000","status-playable","playable","2022-10-26 13:23:09.000" +"BraveMatch - 010081501371E000","010081501371E000","status-playable;UE4","playable","2022-10-26 13:32:15.000" +"Brawl Chess - 010068F00F444000","010068F00F444000","status-playable;nvdec","playable","2022-10-26 13:59:17.000" +"CLANNAD Side Stories - 01007B01372C000","","status-playable","playable","2022-10-26 15:03:04.000" +"DC Super Hero Girls™: Teen Power - 0100F8F00C4F2000","0100F8F00C4F2000","nvdec","","2022-10-26 15:16:47.000" +"Devil Slayer - Raksasi - 01003C900EFF6000","01003C900EFF6000","status-playable","playable","2022-10-26 19:42:32.000" +"Disagaea 6: Defiance of Destiny Demo - 0100918014B02000","0100918014B02000","status-playable;demo","playable","2022-10-26 20:02:04.000" +"DreamWorks Spirit Lucky's Big Adventure - 0100236011B4C000","0100236011B4C000","status-playable","playable","2022-10-27 13:30:52.000" +"Dull Grey - 010068D0141F2000","010068D0141F2000","status-playable","playable","2022-10-27 13:40:38.000" +"Dunk Lords - 0100EC30140B6000","0100EC30140B6000","status-playable","playable","2024-06-26 00:07:26.000" +"Earth Defense Force: World Brothers - 0100298014030000","0100298014030000","status-playable;UE4","playable","2022-10-27 14:13:31.000" +"EQI - 01000FA0149B6000","01000FA0149B6000","status-playable;nvdec;UE4","playable","2022-10-27 16:42:32.000" +"Exodemon - 0100A82013976000","0100A82013976000","status-playable","playable","2022-10-27 20:17:52.000" +"Famicom Detective Club: The Girl Who Stands Behind - 0100D670126F6000","0100D670126F6000","status-playable;nvdec","playable","2022-10-27 20:41:40.000" +"Famicom Detective Club: The Missing Heir - 010033F0126F4000","010033F0126F4000","status-playable;nvdec","playable","2022-10-27 20:56:23.000" +"Fighting EX Layer Another Dash - 0100D02014048000","0100D02014048000","status-playable;online-broken;UE4","playable","2024-04-07 10:22:33.000" +"Fire: Ungh's Quest - 010025C014798000","010025C014798000","status-playable;nvdec","playable","2022-10-27 21:41:26.000" +"Haunted Dawn: The Zombie Apocalypse - 01009E6014F18000","01009E6014F18000","status-playable","playable","2022-10-28 12:31:51.000" +"Yomawari: The Long Night Collection - 010043D00BA3200","","Incomplete","","2022-10-29 10:23:17.000" +"Splatoon 3 - 0100C2500FC20000","0100C2500FC20000","status-playable;ldn-works;opengl-backend-bug;LAN;amd-vendor-bug","playable","2024-08-04 23:49:11.000" +"Bayonetta 3 - 01004A4010FEA000","01004A4010FEA000","gpu;status-ingame;crash;nvdec;vulkan-backend-bug;opengl-backend-bug;amd-vendor-bug;ASTC","ingame","2024-09-28 14:34:33.000" +"Instant Sports Tennis - 010031B0145B8000","010031B0145B8000","status-playable","playable","2022-10-28 16:42:17.000" +"Just Die Already - 0100AC600CF0A000","0100AC600CF0A000","status-playable;UE4","playable","2022-12-13 13:37:50.000" +"King of Seas Demo - 0100515014A94000","0100515014A94000","status-playable;nvdec;UE4","playable","2022-10-28 18:09:31.000" +"King of Seas - 01008D80148C8000","01008D80148C8000","status-playable;nvdec;UE4","playable","2022-10-28 18:29:41.000" +"Layers of Fear 2 - 01001730144DA000","01001730144DA000","status-playable;nvdec;UE4","playable","2022-10-28 18:49:52.000" +"Leisure Suit Larry - Wet Dreams Dry Twice - 010031A0135CA000","010031A0135CA000","status-playable","playable","2022-10-28 19:00:57.000" +"Life of Fly 2 - 010069A01506E000","010069A01506E000","slow;status-playable","playable","2022-10-28 19:26:52.000" +"Maneater - 010093D00CB22000","010093D00CB22000","status-playable;nvdec;UE4","playable","2024-05-21 16:11:57.000" +"Mighty Goose - 0100AD701344C000","0100AD701344C000","status-playable;nvdec","playable","2022-10-28 20:25:38.000" +"Missing Features 2D - 0100E3601495C000","0100E3601495C000","status-playable","playable","2022-10-28 20:52:54.000" +"Moorkuhn Kart 2 - 010045C00F274000","010045C00F274000","status-playable;online-broken","playable","2022-10-28 21:10:35.000" +"NINJA GAIDEN 3: Razor's Edge - 01002AF014F4C000","01002AF014F4C000","status-playable;nvdec","playable","2023-08-11 08:25:31.000" +"Nongunz: Doppelganger Edition - 0100542012884000","0100542012884000","status-playable","playable","2022-10-29 12:00:39.000" +"O---O - 01002E6014FC4000","01002E6014FC4000","status-playable","playable","2022-10-29 12:12:14.000" +"Off And On Again - 01006F5013202000","01006F5013202000","status-playable","playable","2022-10-29 19:46:26.000" +"Outbreak: Endless Nightmares - 0100A0D013464000","0100A0D013464000","status-playable","playable","2022-10-29 12:35:49.000" +"Picross S6 - 010025901432A000","010025901432A000","status-playable","playable","2022-10-29 17:52:19.000" +"Alfred Hitchcock - Vertigo - 0100DC7013F14000","0100DC7013F14000","","","2022-10-30 07:55:43.000" +"Port Royale 4 - 01007EF013CA0000","01007EF013CA0000","status-menus;crash;nvdec","menus","2022-10-30 14:34:06.000" +"Quantum Replica - 010045101288A000","010045101288A000","status-playable;nvdec;UE4","playable","2022-10-30 21:17:22.000" +"R-TYPE FINAL 2 - 0100F930136B6000","0100F930136B6000","slow;status-ingame;nvdec;UE4","ingame","2022-10-30 21:46:29.000" +"Retrograde Arena - 01000ED014A2C000","01000ED014A2C000","status-playable;online-broken","playable","2022-10-31 13:38:58.000" +"Rising Hell - 010020C012F48000","010020C012F48000","status-playable","playable","2022-10-31 13:54:02.000" +"Grand Theft Auto III - The Definitive Edition [0100C3C012718000]","0100C3C012718000","","","2022-10-31 20:13:51.000" +"Grand Theft Auto: San Andreas - The Definitive Edition [010065A014024000]","010065A014024000","","","2022-10-31 20:13:56.000" +"Hell Pie - 01000938017E5C000","01000938017E5C00","status-playable;nvdec;UE4","playable","2022-11-03 16:48:46.000" +"Zengeon - 0100057011E50000","0100057011E50000","services-horizon;status-boots;crash","boots","2024-04-29 15:43:07.000" +"Teenage Mutant Ninja Turtles: The Cowabunga Collection - 0100FDB0154E4000","0100FDB0154E4000","status-playable","playable","2024-01-22 19:39:04.000" +"Rolling Sky 2 - 0100579011B40000 ","0100579011B40000","status-playable","playable","2022-11-03 10:21:12.000" +"RWBY: Grimm Eclipse - 0100E21013908000","0100E21013908000","status-playable;online-broken","playable","2022-11-03 10:44:01.000" +"Shin Megami Tensei III Nocturne HD Remaster - 01003B0012DC2000","01003B0012DC2000","status-playable","playable","2022-11-03 22:53:27.000" +"BALDO THE GUARDIAN OWLS - 0100a75005e92000","0100a75005e92000","","","2022-11-04 06:36:18.000" +"Skate City - 0100134011E32000","0100134011E32000","status-playable","playable","2022-11-04 11:37:39.000" +"SnowRunner - 0100FBD13AB6000","","services;status-boots;crash","boots","2023-10-07 00:01:16.000" +"Spooky Chase - 010097C01336A000","010097C01336A000","status-playable","playable","2022-11-04 12:17:44.000" +"Strange Field Football - 01000A6013F86000","01000A6013F86000","status-playable","playable","2022-11-04 12:25:57.000" +"Subnautica Below Zero - 010014C011146000","010014C011146000","status-playable","playable","2022-12-23 14:15:13.000" +"Subnautica - 0100429011144000","0100429011144000","status-playable;vulkan-backend-bug","playable","2022-11-04 13:07:29.000" +"Pyramid Quest - 0100A4E017372000","0100A4E017372000","gpu;status-ingame","ingame","2023-08-16 21:14:52.000" +"Sonic Frontiers - 01004AD014BF0000","01004AD014BF0000","gpu;deadlock;status-ingame;amd-vendor-bug;intel-vendor-bug","ingame","2024-09-05 09:18:53.000" +"Metro 2033 Redux - 0100D4900E82C000","0100D4900E82C000","gpu;status-ingame","ingame","2022-11-09 10:53:13.000" +"Tactics Ogre Reborn - 0100E12013C1A000","0100E12013C1A000","status-playable;vulkan-backend-bug","playable","2024-04-09 06:21:35.000" +"Good Night, Knight - 01003AD0123A2000","01003AD0123A2000","status-nothing;crash","nothing","2023-07-30 23:38:13.000" +"Sumire - 01003D50126A4000","01003D50126A4000","status-playable","playable","2022-11-12 13:40:43.000" +"Sunblaze - 0100BFE014476000","0100BFE014476000","status-playable","playable","2022-11-12 13:59:23.000" +"Taiwan Monster Fruit : Prologue - 010028E013E0A000","010028E013E0A000","Incomplete","","2022-11-12 14:10:20.000" +"Tested on Humans: Escape Room - 01006F701507A000","01006F701507A000","status-playable","playable","2022-11-12 14:42:52.000" +"The Longing - 0100F3D0122C2000","0100F3D0122C2000","gpu;status-ingame","ingame","2022-11-12 15:00:58.000" +"Total Arcade Racing - 0100A64010D48000","0100A64010D48000","status-playable","playable","2022-11-12 15:12:48.000" +"Very Very Valet - 0100379013A62000","0100379013A62000","status-playable;nvdec","playable","2022-11-12 15:25:51.000" +"Persona 4 Arena ULTIMAX [010075A016A3A000)","010075A016A3A000","","","2022-11-12 17:27:51.000" +"Piofiore: Episodio 1926 - 01002B20174EE000","01002B20174EE000","status-playable","playable","2022-11-23 18:36:05.000" +"Seven Pirates H - 0100D6F016676000","0100D6F016676000","status-playable","playable","2024-06-03 14:54:12.000" +"Paradigm Paradox - 0100DC70174E0000","0100DC70174E0000","status-playable;vulkan-backend-bug","playable","2022-12-03 22:28:13.000" +"Wanna Survive - 0100D67013910000","0100D67013910000","status-playable","playable","2022-11-12 21:15:43.000" +"Wardogs: Red's Return - 010056901285A000","010056901285A000","status-playable","playable","2022-11-13 15:29:01.000" +"Warhammer Age of Sigmar: Storm Ground - 010031201307A000","010031201307A000","status-playable;nvdec;online-broken;UE4","playable","2022-11-13 15:46:14.000" +"Wing of Darkness - 010035B012F2000","","status-playable;UE4","playable","2022-11-13 16:03:51.000" +"Ninja Gaiden Sigma - 0100E2F014F46000","0100E2F014F46000","status-playable;nvdec","playable","2022-11-13 16:27:02.000" +"Ninja Gaiden Sigma 2 - 0100696014FA000","","status-playable;nvdec","playable","2024-07-31 21:53:48.000" +"MONSTER HUNTER STORIES 2: WINGS OF RUIN Trial Version - 010042501329E000","010042501329E000","status-playable;demo","playable","2022-11-13 22:20:26.000" +"112 Operator - 0100D82015774000","0100D82015774000","status-playable;nvdec","playable","2022-11-13 22:42:50.000" +"Aery - Calm Mind - 0100A801539000","","status-playable","playable","2022-11-14 14:26:58.000" +"Alex Kidd in Miracle World DX - 010025D01221A000","010025D01221A000","status-playable","playable","2022-11-14 15:01:34.000" +"Atari 50 The Anniversary Celebration - 010099801870E000","010099801870E000","slow;status-playable","playable","2022-11-14 19:42:10.000" +"FOOTBALL MANAGER 2023 TOUCH - 0100EDC01990E000","0100EDC01990E000","gpu;status-ingame","ingame","2023-08-01 03:40:53.000" +"ARIA CHRONICLE - 0100691013C46000","0100691013C46000","status-playable","playable","2022-11-16 13:50:55.000" +"B.ARK - 01009B901145C000","01009B901145C000","status-playable;nvdec","playable","2022-11-17 13:35:02.000" +"Pokémon Violet - 01008F6008C5E000","01008F6008C5E000","gpu;status-ingame;nvdec;ldn-works;amd-vendor-bug;mac-bug","ingame","2024-07-30 02:51:48.000" +"Pokémon Scarlet - 0100A3D008C5C000","0100A3D008C5C000","gpu;status-ingame;nvdec;ldn-works;amd-vendor-bug","ingame","2023-12-14 13:18:29.000" +"Bear's Restaurant - 0100CE014A4E000","","status-playable","playable","2024-08-11 21:26:59.000" +"BeeFense BeeMastered - 010018F007786000","010018F007786000","status-playable","playable","2022-11-17 15:38:12.000" +"Oddworld: Soulstorm - 0100D210177C6000","0100D210177C6000","services-horizon;status-boots;crash","boots","2024-08-18 13:13:26.000" +"Aquarium Hololive All CG","","","","2022-11-19 05:12:23.000" +"Billion Road - 010057700FF7C000","010057700FF7C000","status-playable","playable","2022-11-19 15:57:43.000" +"No Man’s Sky - 0100853015E86000","0100853015E86000","gpu;status-ingame","ingame","2024-07-25 05:18:17.000" +"Lunistice - 0100C2E01254C000","0100C2E01254C000","","","2022-11-23 18:44:18.000" +"The Oregon Trail - 0100B080184BC000","0100B080184BC000","gpu;status-ingame","ingame","2022-11-25 16:11:49.000" +"Smurfs Kart - 01009790186FE000","01009790186FE000","status-playable","playable","2023-10-18 00:55:00.000" +"DYSMANTLE - 010008900BC5A000","010008900BC5A000","gpu;status-ingame","ingame","2024-07-15 16:24:12.000" +"Happy Animals Mini Golf - 010066C018E50000","010066C018E50000","gpu;status-ingame","ingame","2022-12-04 19:24:28.000" +"Pocket Pool - 010019F019168000","010019F019168000","","","2022-11-27 03:36:39.000" +"7 Days of Rose - 01002D3019654000","01002D3019654000","","","2022-11-27 20:46:16.000" +"Garfield Lasagna Party - 01003C401895E000","01003C401895E000","","","2022-11-27 21:21:09.000" +"Paper Bad - 01002A0019914000","01002A0019914000","","","2022-11-27 22:01:45.000" +"Ultra Kaiju Monster Rancher - 01008E0019388000","01008E0019388000","","","2022-11-28 02:37:06.000" +"The Legend of Heroes: Trails from Zero - 01001920156C2000","01001920156C2000","gpu;status-ingame;mac-bug","ingame","2024-09-14 21:41:41.000" +"Harvestella - 0100A280187BC000","0100A280187BC000","status-playable;UE4;vulkan-backend-bug;mac-bug","playable","2024-02-13 07:04:11.000" +"Ace Angler: Fishing Spirits - 01007C50132C8000","01007C50132C8000","status-menus;crash","menus","2023-03-03 03:21:39.000" +"WHITE DAY : A labyrinth named school - 010076601839C000","010076601839C000","","","2022-12-03 07:17:03.000" +"Bravery and Greed - 0100F60017D4E000","0100F60017D4E000","gpu;deadlock;status-boots","boots","2022-12-04 02:23:47.000" +"River City Girls 2 - 01002E80168F4000","01002E80168F4000","status-playable","playable","2022-12-07 00:46:27.000" +"SAMURAI MAIDEN - 01003CE018AF6000","01003CE018AF6000","","","2022-12-05 02:56:48.000" +"Front Mission 1st Remake - 0100F200178F4000","0100F200178F4000","status-playable","playable","2023-06-09 07:44:24.000" +"Cardfight!! Vanguard Dear Days - 0100097016B04000","0100097016B04000","","","2022-12-06 00:37:12.000" +"MOL SOCCER ONLINE Lite - 010034501756C000","010034501756C000","","","2022-12-06 00:41:58.000" +"Goonya Monster - 010026301785A000","010026301785A000","","","2022-12-06 00:46:24.000" +"Battle Spirits Connected Battlers - 01009120155CC000","01009120155CC000","","","2022-12-07 00:21:33.000" +"TABE-O-JA - 0100E330127FC000","0100E330127FC000","","","2022-12-07 00:26:47.000" +"Solomon Program - 01008A801370C000","01008A801370C000","","","2022-12-07 00:33:02.000" +"Dragon Quest Treasures - 0100217014266000","0100217014266000","gpu;status-ingame;UE4","ingame","2023-05-09 11:16:52.000" +"Sword of the Necromancer - 0100E4701355C000","0100E4701355C000","status-ingame;crash","ingame","2022-12-10 01:28:39.000" +"Dragon Prana - 01001C5019074000","01001C5019074000","","","2022-12-10 02:10:53.000" +"Burger Patrol - 010013D018E8A000","010013D018E8A000","","","2022-12-10 02:12:02.000" +"Witch On The Holy Night - 010012A017F18800","010012A017F18800","status-playable","playable","2023-03-06 23:28:11.000" +"Hakoniwa Ranch Sheep Village - 010059C017346000 ","010059C017346000","","","2022-12-13 03:04:03.000" +"KASIORI - 0100E75014D7A000","0100E75014D7A000","","","2022-12-13 03:05:00.000" +"CRISIS CORE –FINAL FANTASY VII– REUNION - 01004BC0166CC000","01004BC0166CC000","status-playable","playable","2022-12-19 15:53:59.000" +"Bitmaster - 010026E0141C8000","010026E0141C8000","status-playable","playable","2022-12-13 14:05:51.000" +"Black Book - 0100DD1014AB8000","0100DD1014AB8000","status-playable;nvdec","playable","2022-12-13 16:38:53.000" +"Carnivores: Dinosaur Hunt","","status-playable","playable","2022-12-14 18:46:06.000" +"Trivial Pursuit Live! 2 - 0100868013FFC000","0100868013FFC000","status-boots","boots","2022-12-19 00:04:33.000" +"Astrologaster - 0100B80010C48000","0100B80010C48000","cpu;status-nothing;32-bit;crash","nothing","2023-06-28 15:39:31.000" +"Factorio - 01004200189F4000","01004200189F4000","deadlock;status-boots","boots","2024-06-11 19:26:16.000" +"The Punchuin - 01004F501962C000","01004F501962C000","","","2022-12-28 00:51:46.000" +"Adventure Academia The Fractured Continent - 01006E6018570000","01006E6018570000","","","2022-12-29 03:35:04.000" +"Illusion Garden Story ~Daiichi Sangyo Yuukarin~ - 01003FE0168EA000","01003FE0168EA000","","","2022-12-29 03:39:06.000" +"Popplings - 010063D019A70000","010063D019A70000","","","2022-12-29 03:42:21.000" +"Sports Story - 010025B0100D0000","010025B0100D0000","","","2022-12-29 03:45:54.000" +"Death Bite Shibito Magire - 01002EB01802A000","01002EB01802A000","","","2022-12-29 03:51:54.000" +"Yu-Gi-Oh! Rush Duel: Dawn of the Battle Royale!! Let's Go! Go Rush!! - 01002D60188DE000","01002D60188DE000","status-ingame;crash","ingame","2023-03-17 01:54:01.000" +"Asphalt 9 Legends - 01007B000C834800","01007B000C834800","","","2022-12-30 05:19:35.000" +"Arcade Archives TETRIS THE GRAND MASTER - 0100DFD016B7A000","0100DFD016B7A000","status-playable","playable","2024-06-23 01:50:29.000" +"Funny action Great adventure for good adults - 0100BB1018082000","0100BB1018082000","","","2023-01-01 03:13:21.000" +"Fairy Fencer F Refrain Chord - 010048C01774E000","010048C01774E000","","","2023-01-01 03:15:45.000" +"Needy Streamer Overload","","","","2023-01-01 23:24:14.000" +"Absolute Hero Remodeling Plan - 0100D7D015CC2000","0100D7D015CC2000","","","2023-01-02 03:42:59.000" +"Fourth God -Reunion- - 0100BF50131E6000","0100BF50131E6000","","","2023-01-02 03:45:28.000" +"Doll Princess of Marl Kingdom - 010078E0181D0000","010078E0181D0000","","","2023-01-02 03:49:45.000" +"Oshiritantei Pupupu Mirai no Meitantei Tojo! - 01000F7014504000","01000F7014504000","","","2023-01-02 03:51:59.000" +"Moshikashite Obake no Shatekiya for Nintendo Switch - 0100B580144F6000","0100B580144F6000","","","2023-01-02 03:55:10.000" +"Platinum Train-A trip through Japan - 0100B9400654E000","0100B9400654E000","","","2023-01-02 03:58:00.000" +"Deadly Eating Adventure Meshi - 01007B70146F6000","01007B70146F6000","","","2023-01-02 04:00:31.000" +"Gurimugurimoa OnceMore - 01003F5017760000","01003F5017760000","","","2023-01-02 04:03:49.000" +"Neko-Tomo - 0100FA00082BE000","0100FA00082BE000","","","2023-01-03 04:43:05.000" +"Wreckfest - 0100DC0012E48000","0100DC0012E48000","status-playable","playable","2023-02-12 16:13:00.000" +"VARIOUS DAYLIFE - 0100538017BAC000","0100538017BAC000","","","2023-01-03 13:41:46.000" +"WORTH LIFE - 0100D46014648000","0100D46014648000","","","2023-01-04 02:58:27.000" +"void* tRrLM2(); //Void Terrarium 2 - 010078D0175EE000","010078D0175EE000","status-playable","playable","2023-12-21 11:00:41.000" +"Witch's Garden - 010061501904E000","010061501904E000","gpu;status-ingame;crash;vulkan-backend-bug;opengl-backend-bug","ingame","2023-01-11 02:11:24.000" +"PUI PUI MOLCAR Let’s! MOLCAR PARTY! - 01004F6015612000","01004F6015612000","","","2023-01-05 23:05:00.000" +"Galleria Underground Labyrinth and the Witch’s Brigade - 01007010157B4000","01007010157B4000","","","2023-01-07 01:05:40.000" +"Simona's Requiem - 0100E8C019B36000","0100E8C019B36000","gpu;status-ingame","ingame","2023-02-21 18:29:19.000" +"Sonic Frontiers: Demo - 0100D0201A062000","0100D0201A062000","","","2023-01-07 14:50:19.000" +"Alphadia Neo - 010043101944A000","010043101944A000","","","2023-01-09 01:47:53.000" +"It’s Kunio-kun’s Three Kingdoms! - 0100056014DE0000","0100056014DE0000","","","2023-01-09 01:50:08.000" +"Neon White - 0100B9201406A000","0100B9201406A000","status-ingame;crash","ingame","2023-02-02 22:25:06.000" +"Typing Quest - 0100B7101475E000","0100B7101475E000","","","2023-01-10 03:23:00.000" +"Moorhuhn Jump and Run Traps and Treasures - 0100E3D014ABC000","0100E3D014ABC000","status-playable","playable","2024-03-08 15:10:02.000" +"Bandit Detective Buzzard - 01005DB0180B4000","01005DB0180B4000","","","2023-01-10 03:27:34.000" +"Curved Space - 0100CE5014026000","0100CE5014026000","status-playable","playable","2023-01-14 22:03:50.000" +"Destroy All Humans! - 01009E701356A000","01009E701356A000","gpu;status-ingame;nvdec;UE4","ingame","2023-01-14 22:23:53.000" +"Dininho Space Adventure - 010027E0158A6000","010027E0158A6000","status-playable","playable","2023-01-14 22:43:04.000" +"Vengeful Guardian: Moonrider - 01003A8018E60000","01003A8018E60000","deadlock;status-boots","boots","2024-03-17 23:35:37.000" +"Sumikko Gurashi Atsumare! Sumikko Town - 0100508013B26000","0100508013B26000","","","2023-01-16 04:42:55.000" +"Lone Ruin - 0100B6D016EE6000","0100B6D016EE6000","status-ingame;crash;nvdec","ingame","2023-01-17 06:41:19.000" +"Falcon Age - 0100C3F011B58000","0100C3F011B58000","","","2023-01-17 02:43:00.000" +"Persona 4 Golden - 010062B01525C000","010062B01525C000","status-playable","playable","2024-08-07 17:48:07.000" +"Persona 3 Portable - 0100DCD01525A000","0100DCD01525A000","","","2023-01-19 20:20:27.000" +"Fire Emblem: Engage - 0100A6301214E000","0100A6301214E000","status-playable;amd-vendor-bug;mac-bug","playable","2024-09-01 23:37:26.000" +"Sifu - 01007B5017A12000","01007B5017A12000","","","2023-01-20 19:58:54.000" +"Silver Nornir - 0100D1E018F26000","0100D1E018F26000","","","2023-01-21 04:25:06.000" +"Together - 010041C013C94000","010041C013C94000","","","2023-01-21 04:26:20.000" +"Party Party Time - 0100C6A019C84000","0100C6A019C84000","","","2023-01-21 04:27:40.000" +"Sumikko Gurashi Gakkou Seikatsu Hajimerun desu - 010070800D3E2000","010070800D3E2000","","","2023-01-22 02:47:34.000" +"Sumikko Gurashi Sugoroku every time in the corner - 0100713012BEC000","0100713012BEC000","","","2023-01-22 02:49:00.000" +"EA SPORTS FIFA 23 Nintendo Switch™ Legacy Edition - 01001C8016B4E000","01001C8016B4E000","gpu;status-ingame;crash","ingame","2024-06-10 23:33:05.000" +"Gesshizu Mori no Chiisana Nakama-tachi - 0100A0D011014000","0100A0D011014000","","","2023-01-23 03:56:43.000" +"Chickip Dancers Norinori Dance de Kokoro mo Odoru - 0100D85017B26000","0100D85017B26000","","","2023-01-23 03:56:47.000" +"Go Rally - 010055A0161F4000","010055A0161F4000","gpu;status-ingame","ingame","2023-08-16 21:18:23.000" +"Devil Kingdom - 01002F000E8F2000","01002F000E8F2000","status-playable","playable","2023-01-31 08:58:44.000" +"Cricket 22 - 0100387017100000","0100387017100000","status-boots;crash","boots","2023-10-18 08:01:57.000" +"サマータイムレンダ Another Horizon - 01005940182ec000","01005940182ec000","","","2023-01-28 02:15:25.000" +"Letters - a written adventure - 0100CE301678E800","0100CE301678E800","gpu;status-ingame","ingame","2023-02-21 20:12:38.000" +"Prinny Presents NIS Classics Volume 1 - 0100A6E01681C000","0100A6E01681C000","status-boots;crash;Needs Update","boots","2023-02-02 07:23:09.000" +"SpongeBob SquarePants The Cosmic Shake - 01009FB0172F4000","01009FB0172F4000","gpu;status-ingame;UE4","ingame","2023-08-01 19:29:53.000" +"THEATRHYTHM FINAL BAR LINE DEMO Version - 01004C5018BC4000","01004C5018BC4000","","","2023-02-01 16:59:55.000" +"Blue Reflection: Second Light [USA, Europe] - 010071C013390000","010071C013390000","","","2023-02-02 02:44:04.000" +"牧場物語 Welcome!ワンダフルライフ - 0100936018EB4000","0100936018EB4000","status-ingame;crash","ingame","2023-04-25 19:43:52.000" +"Coromon - 010048D014322000","010048D014322000","","","2023-02-03 00:47:51.000" +"Exitman Deluxe - 0100648016520000","0100648016520000","","","2023-02-04 02:02:03.000" +"Life is Strange 2 - 0100FD101186C000","0100FD101186C000","status-playable;UE4","playable","2024-07-04 05:05:58.000" +"Fashion Police Squad","","Incomplete","","2023-02-05 12:36:50.000" +"Grindstone - 0100538012496000","0100538012496000","status-playable","playable","2023-02-08 15:54:06.000" +"Kemono Friends Picross - 01004B100BDA2000","01004B100BDA2000","status-playable","playable","2023-02-08 15:54:34.000" +"Picross Lord Of The Nazarick - 010012100E8DC000","010012100E8DC000","status-playable","playable","2023-02-08 15:54:56.000" +"Shovel Knight Pocket Dungeon - 01006B00126EC000","01006B00126EC000","","","2023-02-08 20:12:10.000" +"Game Boy - Nintendo Switch Online - 0100C62011050000","0100C62011050000","status-playable","playable","2023-03-21 12:43:48.000" +"ゲームボーイ Nintendo Switch Online - 0100395011044000","0100395011044000","","","2023-02-08 23:53:21.000" +"Game Boy Advance - Nintendo Switch Online - 010012F017576000","010012F017576000","status-playable","playable","2023-02-16 20:38:15.000" +"Kirby’s Return to Dream Land Deluxe - Demo - 010091D01A57E000","010091D01A57E000","status-playable;demo","playable","2023-02-18 17:21:55.000" +"Metroid Prime Remastered - 010012101468C000","010012101468C000","gpu;status-ingame;Needs Update;vulkan-backend-bug;opengl-backend-bug","ingame","2024-05-07 22:48:15.000" +"WBSC eBASEBALL: POWER PROS - 01007D9019626000","01007D9019626000","","","2023-02-09 02:56:56.000" +"Tricky Towers - 010015F005C8E000","010015F005C8E000","","","2023-02-09 14:58:15.000" +"Clunky Hero - [0100879019212000]","0100879019212000","","","2023-02-10 07:41:34.000" +"Mercenaries Lament Requiem of the Silver Wolf - 0100E44019E4C000","0100E44019E4C000","","","2023-02-11 04:36:39.000" +"Pixel Cup Soccer Ultimate Edition - 0100E17019782000","0100E17019782000","","","2023-02-11 14:28:11.000" +"Sea of Stars Demo - 010036F0182C4000","010036F0182C4000","status-playable;demo","playable","2023-02-12 15:33:56.000" +"MistWorld the after - 010003801579A000","010003801579A000","","","2023-02-13 03:40:17.000" +"MistWorld the after 2 - 0100C50016CD6000","0100C50016CD6000","","","2023-02-13 03:40:23.000" +"Wonder Boy Anniversary Collection - 0100B49016FF0000","0100B49016FF0000","deadlock;status-nothing","nothing","2023-04-20 16:01:48.000" +"OddBallers - 010079A015976000","010079A015976000","","","2023-02-13 03:40:35.000" +"Game Doraemon Nobita’s Space War 2021 - 01000200128A4000","01000200128A4000","","","2023-02-14 02:52:57.000" +"Doraemon Nobita’s Brain Exercise Adventure - 0100E6F018D10000","0100E6F018D10000","","","2023-02-14 02:54:51.000" +"Makai Senki Disgaea 7 - 0100A78017BD6000","0100A78017BD6000","status-playable","playable","2023-10-05 00:22:18.000" +"Blanc - 010039501405E000","010039501405E000","gpu;slow;status-ingame","ingame","2023-02-22 14:00:13.000" +"Arcade Machine Gopher’s Revenge - 0100DCB019CAE000","0100DCB019CAE000","","","2023-02-15 21:48:46.000" +"Santa Claus Goblins Attack - 0100A0901A3E4000","0100A0901A3E4000","","","2023-02-15 21:48:50.000" +"Garden of Pets - 010075A01A312000","010075A01A312000","","","2023-02-15 21:48:52.000" +"THEATRHYTHM FINAL BAR LINE - 010024201834A000","010024201834A000","status-playable","playable","2023-02-19 19:58:57.000" +"Rob Riches - 010061501A2B6000","010061501A2B6000","","","2023-02-16 04:44:01.000" +"Cuddly Forest Friends - 01005980198D4000","01005980198D4000","","","2023-02-16 04:44:04.000" +"Dragon Quest X Awakening Five Races Offline - 0100E2E0152E4000","0100E2E0152E4000","status-playable;nvdec;UE4","playable","2024-08-20 10:04:24.000" +"Persona 5 Strikers Bonus Content - (01002F101340C000)","01002F101340C000","","","2023-02-16 20:29:01.000" +"Let’s play duema! - 0100EFC0152E0000","0100EFC0152E0000","","","2023-02-18 03:09:55.000" +"Let’s play duema Duel Masters! 2022 - 010006C017354000","010006C017354000","","","2023-02-18 03:09:58.000" +"Heterogeneous Strongest King Encyclopedia Battle Coliseum - 0100BD00198AA000","0100BD00198AA000","","","2023-02-18 03:10:01.000" +"Hopping Girl Kohane EX - 0100D2B018F5C000","0100D2B018F5C000","","","2023-02-19 00:57:25.000" +"Earth Defense Force 2 for Nintendo Switch - 010082B013C8C000","010082B013C8C000","","","2023-02-19 01:13:14.000" +"Earth Defense Force 3 for Nintendo Switch - 0100E87013C98000","0100E87013C98000","","","2023-02-19 01:13:21.000" +"PAC-MAN WORLD Re-PAC - 0100D4401565E000","0100D4401565E000","","","2023-02-19 18:49:11.000" +"Eastward - 010071B00F63A000","010071B00F63A000","","","2023-02-19 19:50:36.000" +"Arcade Archives THE NEWZEALAND STORY - 010045D019FF0000","010045D019FF0000","","","2023-02-20 01:59:58.000" +"Foxy’s Coin Hunt - 0100EE401A378000","0100EE401A378000","","","2023-02-20 02:00:00.000" +"Samurai Warrior - 0100B6501A360000","0100B6501A360000","status-playable","playable","2023-02-27 18:42:38.000" +"NCL USA Bowl - 010004801A450000","010004801A450000","","","2023-02-20 02:00:05.000" +"Dadish - 0100B8B013310000","0100B8B013310000","","","2023-02-20 23:19:02.000" +"Dadish 2 - 0100BB70140BA000","0100BB70140BA000","","","2023-02-20 23:28:43.000" +"Dadish 3 - 01001010181AA000","01001010181AA000","","","2023-02-20 23:38:55.000" +"Digimon World: Next Order - 0100F00014254000","0100F00014254000","status-playable","playable","2023-05-09 20:41:06.000" +"PAW Patrol The Movie: Adventure City Calls - 0100FFE013628000","0100FFE013628000","","","2023-02-22 14:09:11.000" +"PAW Patrol: Grand Prix - 0100360016800000","0100360016800000","gpu;status-ingame","ingame","2024-05-03 16:16:11.000" +"Gigantosaurus Dino Kart - 01001890167FE000","01001890167FE000","","","2023-02-23 03:15:01.000" +"Rise Of Fox Hero - 0100A27018ED0000","0100A27018ED0000","","","2023-02-23 03:15:04.000" +"MEGALAN 11 - 0100C7501360C000","0100C7501360C000","","","2023-02-23 03:15:06.000" +"Rooftop Renegade - 0100644012F0C000","0100644012F0C000","","","2023-02-23 03:15:10.000" +"Kirby’s Return to Dream Land Deluxe - 01006B601380E000","01006B601380E000","status-playable","playable","2024-05-16 19:58:04.000" +"Snow Bros. Special - 0100bfa01787c000","0100bfa01787c000","","","2023-02-24 02:25:54.000" +"Toree 2 - 0100C7301658C000","0100C7301658C000","","","2023-02-24 03:15:04.000" +"Red Hands - 2 Player Games - 01003B2019424000","01003B2019424000","","","2023-02-24 03:53:12.000" +"nPaint - 0100917019FD6000","0100917019FD6000","","","2023-02-24 03:53:18.000" +"Octopath Traveler II - 0100A3501946E000","0100A3501946E000","gpu;status-ingame;amd-vendor-bug","ingame","2024-09-22 11:39:20.000" +"Planet Cube Edge - 01007EA019CFC000","01007EA019CFC000","status-playable","playable","2023-03-22 17:10:12.000" +"Rumble Sus - 0100CE201946A000","0100CE201946A000","","","2023-02-25 02:19:01.000" +"Easy Come Easy Golf - 0100ECF01800C000","0100ECF01800C000","status-playable;online-broken;regression","playable","2024-04-04 16:15:00.000" +"Piano Learn and Play - 010038501A6B8000","010038501A6B8000","","","2023-02-26 02:57:12.000" +"nOS new Operating System - 01008AE019614000","01008AE019614000","status-playable","playable","2023-03-22 16:49:08.000" +"XanChuchamel - 0100D970191B8000","0100D970191B8000","","","2023-02-26 02:57:19.000" +"Rune Factory 3 Special - 01001EF017BE6000","01001EF017BE6000","","","2023-03-02 05:34:40.000" +"Light Fingers - 0100A0E005E42000","0100A0E005E42000","","","2023-03-03 03:04:09.000" +"Disaster Detective Saiga An Indescribable Mystery - 01005BF01A3EC000","01005BF01A3EC000","","","2023-03-04 00:34:26.000" +"Touhou Gouyoku Ibun ~ Sunken Fossil World. - 0100031018CFE000","0100031018CFE000","","","2023-03-04 00:34:29.000" +"Ninja Box - 0100272009E32000","0100272009E32000","","","2023-03-06 00:31:44.000" +"Rubber Bandits - 010060801843A000","010060801843A000","","","2023-03-07 22:26:57.000" +"Arcade Archives DON DOKO DON - 0100B6201A2AA000","0100B6201A2AA000","","","2023-03-14 00:13:52.000" +"Knights and Guns - 010060A011ECC000","010060A011ECC000","","","2023-03-14 00:13:54.000" +"Process of Elimination Demo - 01007F6019E2A000","01007F6019E2A000","","","2023-03-14 00:13:57.000" +"DREDGE [ CHAPTER ONE ] - 01000AB0191DA000","01000AB0191DA000","","","2023-03-14 01:49:12.000" +"Bayonetta Origins Cereza and the Lost Demon Demo - 010002801A3FA000","010002801A3FA000","gpu;status-ingame;demo","ingame","2024-02-17 06:06:28.000" +"Yo-Kai Watch 4++ - 010086C00AF7C000","010086C00AF7C000","status-playable","playable","2024-06-18 20:21:44.000" +"Tama Cannon - 0100D8601A848000","0100D8601A848000","","","2023-03-15 01:08:05.000" +"The Smile Alchemist - 0100D1C01944E000","0100D1C01944E000","","","2023-03-15 01:08:08.000" +"Caverns of Mars Recharged - 01009B201A10E000","01009B201A10E000","","","2023-03-15 01:08:12.000" +"Roniu's Tale - 010007E0193A2000","010007E0193A2000","","","2023-03-15 01:08:18.000" +"Mythology Waifus Mahjong - 0100C7101A5BE000","0100C7101A5BE000","","","2023-03-15 01:08:23.000" +"emoji Kart Racer - 0100AC601A26A000","0100AC601A26A000","","","2023-03-17 01:53:50.000" +"Self gunsbase - 01006BB015486000","01006BB015486000","","","2023-03-17 01:53:53.000" +"Melon Journey - 0100F68019636000","0100F68019636000","status-playable","playable","2023-04-23 21:20:01.000" +"Bayonetta Origins: Cereza and the Lost Demon - 0100CF5010FEC000","0100CF5010FEC000","gpu;status-ingame","ingame","2024-02-27 01:39:49.000" +"Uta no prince-sama All star After Secret - 01008030149FE000","01008030149FE000","","","2023-03-18 16:08:20.000" +"Hampuzz - 0100D85016326000","0100D85016326000","","","2023-03-19 00:39:40.000" +"Gotta Protectors Cart of Darkness - 01007570160E2000","01007570160E2000","","","2023-03-19 00:39:43.000" +"Game Type DX - 0100433017DAC000","0100433017DAC000","","","2023-03-20 00:29:23.000" +"Ray'z Arcade Chronology - 010088D018302000","010088D018302000","","","2023-03-20 00:29:26.000" +"Ruku's HeartBalloon - 01004570192D8000","01004570192D8000","","","2023-03-20 00:29:30.000" +"Megaton Musashi - 01001AD00E41E000","01001AD00E41E000","","","2023-03-21 01:11:33.000" +"Megaton Musashi X - 0100571018A70000","0100571018A70000","","","2023-03-21 01:11:39.000" +"In the Mood - 0100281017990000","0100281017990000","","","2023-03-22 00:53:54.000" +"Sixtar Gate STARTRAIL - 0100D29019BE4000","0100D29019BE4000","","","2023-03-22 00:53:57.000" +"Spelunker HD Deluxe - 010095701381A000","010095701381A000","","","2023-03-22 00:54:02.000" +"Pizza Tycoon - 0100A6301788E000","0100A6301788E000","","","2023-03-23 02:00:04.000" +"Cubic - 010081F00EAB8000","010081F00EAB8000","","","2023-03-23 02:00:12.000" +"Sherlock Purr - 010019F01AD78000","010019F01AD78000","","","2023-03-24 02:21:34.000" +"Blocky Farm - 0100E21016A68000","0100E21016A68000","","","2023-03-24 02:21:40.000" +"SD Shin Kamen Rider Ranbu [ SD シン・仮面ライダー 乱舞 ] - 0100CD40192AC000","0100CD40192AC000","","","2023-03-24 23:07:40.000" +"Peppa Pig: World Adventures - 0100FF1018E00000","0100FF1018E00000","Incomplete","","2023-03-25 07:46:56.000" +"Remnant: From the Ashes - 010010F01418E000","010010F01418E000","","","2023-03-26 20:30:16.000" +"Titanium Hound - 010010B0195EE000","010010B0195EE000","","","2023-03-26 19:06:35.000" +"MLB® The Show™ 23 - 0100913019170000","0100913019170000","gpu;status-ingame","ingame","2024-07-26 00:56:50.000" +"Grim Guardians Demon Purge - 0100B5301A180000","0100B5301A180000","","","2023-03-29 02:03:41.000" +"Blade Assault - 0100EA1018A2E000","0100EA1018A2E000","audio;status-nothing","nothing","2024-04-29 14:32:50.000" +"Bubble Puzzler - 0100FB201A21E000","0100FB201A21E000","","","2023-04-03 01:55:12.000" +"Tricky Thief - 0100F490198B8000","0100F490198B8000","","","2023-04-03 01:56:44.000" +"Scramballed - 0100106016602000","0100106016602000","","","2023-04-03 01:58:08.000" +"SWORD ART ONLINE Alicization Lycoris - 0100C6C01225A000","0100C6C01225A000","","","2023-04-03 02:03:00.000" +"Alice Gear Aegis CS Concerto of Simulatrix - 0100EEA0184C6000","0100EEA0184C6000","","","2023-04-05 01:40:02.000" +"Curse of the Sea Rats - 0100B970138FA000","0100B970138FA000","","","2023-04-08 15:56:01.000" +"THEATRHYTHM FINAL BAR LINE - 010081B01777C000","010081B01777C000","status-ingame;Incomplete","ingame","2024-08-05 14:24:55.000" +"Assault Suits Valken DECLASSIFIED - 0100FBC019042000","0100FBC019042000","","","2023-04-11 01:05:19.000" +"Xiaomei and the Flame Dragons Fist - 010072601922C000","010072601922C000","","","2023-04-11 01:06:46.000" +"Loop - 0100C88019092000","0100C88019092000","","","2023-04-11 01:08:03.000" +"Volley Pals - 01003A301A29E000","01003A301A29E000","","","2023-04-12 01:37:14.000" +"Catgotchi Virtual Pet - 0100CCF01A884000","0100CCF01A884000","","","2023-04-12 01:37:24.000" +"Pizza Tower - 05000FD261232000","05000FD261232000","status-ingame;crash","ingame","2024-09-16 00:21:56.000" +"Megaman Battle Network Legacy Collection Vol 1 - 010038E016264000","010038E016264000","status-playable","playable","2023-04-25 03:55:57.000" +"Process of Elimination - 01005CC018A32000","01005CC018A32000","","","2023-04-17 00:46:22.000" +"Detective Boys and the Strange Karakuri Mansion on the Hill [ 少年探偵団と丘の上の奇妙なカラクリ屋敷 ] - 0100F0801A5E8000","0100F0801A5E8000","","","2023-04-17 00:49:26.000" +"Dokapon Kingdom Connect [ ドカポンキングダムコネクト ] - 0100AC4018552000","0100AC4018552000","","","2023-04-17 00:53:37.000" +"Pixel Game Maker Series Tentacled Terrors Tyrannize Terra - 010040A01AABE000","010040A01AABE000","","","2023-04-18 02:29:14.000" +"Ultra Pixel Survive - 0100472019812000","0100472019812000","","","2023-04-18 02:29:20.000" +"PIANOFORTE - 0100D6D016F06000","0100D6D016F06000","","","2023-04-18 02:29:25.000" +"NASCAR Rivals - 0100545016D5E000","0100545016D5E000","status-ingame;crash;Incomplete","ingame","2023-04-21 01:17:47.000" +"Minecraft Legends - 01007C6012CC8000","01007C6012CC8000","gpu;status-ingame;crash","ingame","2024-03-04 00:32:24.000" +"Touhou Fan-made Virtual Autography - 0100196016944000","0100196016944000","","","2023-04-21 03:59:47.000" +"FINAL FANTASY I - 01000EA014150000","01000EA014150000","status-nothing;crash","nothing","2024-09-05 20:55:30.000" +"FINAL FANTASY II - 01006B7014156000","01006B7014156000","status-nothing;crash","nothing","2024-04-13 19:18:04.000" +"FINAL FANTASY III - 01002E2014158000","01002E2014158000","","","2023-04-21 11:50:01.000" +"FINAL FANTASY V - 0100AA201415C000","0100AA201415C000","status-playable","playable","2023-04-26 01:11:55.000" +"FINAL FANTASY VI - 0100AA001415E000","0100AA001415E000","","","2023-04-21 13:08:30.000" +"Advance Wars 1+2: Re-Boot Camp - 0100300012F2A000","0100300012F2A000","status-playable","playable","2024-01-30 18:19:44.000" +"Five Nights At Freddy’s Security Breach - 01009060193C4000","01009060193C4000","gpu;status-ingame;crash;mac-bug","ingame","2023-04-23 22:33:28.000" +"BUCCANYAR - 0100942019418000","0100942019418000","","","2023-04-23 00:59:51.000" +"BraveDungeon - The Meaning of Justice - 010068A00DAFC000","010068A00DAFC000","","","2023-04-23 13:34:05.000" +"Gemini - 010045300BE9A000","010045300BE9A000","","","2023-04-24 01:31:41.000" +"LOST EPIC - 010098F019A64000","010098F019A64000","","","2023-04-24 01:31:46.000" +"AKIBA'S TRIP2 Director's Cut - 0100FBD01884C000","0100FBD01884C000","","","2023-04-24 01:31:48.000" +"Afterimage - 010095E01A12A000","010095E01A12A000","","","2023-04-27 21:39:08.000" +"Fortress S - 010053C017D40000","010053C017D40000","","","2023-04-28 01:57:34.000" +"The Mageseeker: A League of Legends Story™ 0100375019B2E000","0100375019B2E000","","","2023-04-29 14:01:15.000" +"Cult of the Lamb - 01002E7016C46000","01002E7016C46000","","","2023-04-29 06:22:56.000" +"Disney SpeedStorm - 0100F0401435E000","0100F0401435E000","services;status-boots","boots","2023-11-27 02:15:32.000" +"The Outbound Ghost - 01000BC01801A000","01000BC01801A000","status-nothing","nothing","2024-03-02 17:10:58.000" +"Blaze Union Story to Reach the Future Remaster [ ブレイズ・ユニオン ] - 01003B001A81E000","01003B001A81E000","","","2023-05-02 02:03:16.000" +"Sakura Neko Calculator - 010029701AAD2000","010029701AAD2000","","","2023-05-02 06:16:04.000" +"Bramble The Mountain King - 0100E87017D0E000","0100E87017D0E000","services-horizon;status-playable","playable","2024-03-06 09:32:17.000" +"The Legend of Zelda: Tears of the Kingdom - 0100F2C0115B6000","0100F2C0115B6000","gpu;status-ingame;amd-vendor-bug;intel-vendor-bug;mac-bug","ingame","2024-08-24 12:38:30.000" +"Magical Drop VI - 0100B4D01A3A4000","0100B4D01A3A4000","","","2023-05-13 02:27:38.000" +"Yahari ge-mu demo ore no seishun rabukome hamachigatteiru. kan [ やはりゲームでも俺の青春ラブコメはまちがっている。完 ] - 010066801A138000","010066801A138000","","","2023-05-13 02:27:49.000" +"Mega Man Battle Network Legacy Collection Vol. 2 - 0100734016266000","0100734016266000","status-playable","playable","2023-08-03 18:04:32.000" +"Numolition - 010043C019088000","010043C019088000","","","2023-05-17 02:29:23.000" +"Vibitter for Nintendo Switch [ ビビッター ] - 0100D2A01855C000","0100D2A01855C000","","","2023-05-17 02:29:31.000" +"LEGO 2K Drive - 0100739018020000","0100739018020000","gpu;status-ingame;ldn-works","ingame","2024-04-09 02:05:12.000" +"Ys Memoire : The Oath in Felghana [ イース・メモワール -フェルガナの誓い- ] - 010070D01A192000","010070D01A192000","","","2023-05-22 01:12:30.000" +"Love on Leave - 0100E3701A870000","0100E3701A870000","","","2023-05-22 01:37:22.000" +"Puzzle Bobble Everybubble! - 010079E01A1E0000","010079E01A1E0000","audio;status-playable;ldn-works","playable","2023-06-10 03:53:40.000" +"Chasm: The Rift - 010034301A556000","010034301A556000","gpu;status-ingame","ingame","2024-04-29 19:02:48.000" +"Speed Crew Demo - 01005C001B696000","01005C001B696000","","","2023-06-04 00:18:22.000" +"Dr Fetus Mean Meat Machine Demo - 01001DA01B7C4000","01001DA01B7C4000","","","2023-06-04 00:18:30.000" +"Bubble Monsters - 0100FF801B87C000","0100FF801B87C000","","","2023-06-05 02:15:43.000" +"Puzzle Bobble / Bust-a-Move ( 16-Bit Console Version ) - 0100AFF019F3C000","0100AFF019F3C000","","","2023-06-05 02:15:53.000" +"Just Dance 2023 - 0100BEE017FC0000","0100BEE017FC0000","status-nothing","nothing","2023-06-05 16:44:54.000" +"We Love Katamari REROLL+ Royal Reverie - 010089D018D18000","010089D018D18000","","","2023-06-07 07:33:49.000" +"Loop8: Summer of Gods - 0100051018E4C000","0100051018E4C000","","","2023-06-10 17:09:56.000" +"Hatsune Miku - The Planet Of Wonder And Fragments Of Wishes - 010030301ABC2000","010030301ABC2000","","","2023-06-12 02:15:31.000" +"Speed Crew - 0100C1201A558000","0100C1201A558000","","","2023-06-12 02:15:35.000" +"Nocturnal - 01009C2019510000","01009C2019510000","","","2023-06-12 16:24:50.000" +"Harmony: The Fall of Reverie - 0100A65017D68000","0100A65017D68000","","","2023-06-13 22:37:51.000" +"Cave of Past Sorrows - 0100336019D36000","0100336019D36000","","","2023-06-18 01:42:19.000" +"BIRDIE WING -Golf Girls Story- - 01005B2017D92000","01005B2017D92000","","","2023-06-18 01:42:25.000" +"Dogotchi Virtual Pet - 0100BBD01A886000","0100BBD01A886000","","","2023-06-18 01:42:31.000" +"010036F018AC8000","010036F018AC8000","","","2023-06-18 13:11:56.000" +"Pikmin 1 - 0100AA80194B0000","0100AA80194B0000","audio;status-ingame","ingame","2024-05-28 18:56:11.000" +"Pikmin 2 - 0100D680194B2000","0100D680194B2000","gpu;status-ingame","ingame","2023-07-31 08:53:41.000" +"Ghost Trick Phantom Detective Demo - 010026C0184D4000","010026C0184D4000","","","2023-06-23 01:29:44.000" +"Dr Fetus' Mean Meat Machine - 01006C301B7C2000","01006C301B7C2000","","","2023-06-23 01:29:52.000" +"FIFA 22 Legacy Edition - 0100216014472000","0100216014472000","gpu;status-ingame","ingame","2024-03-02 14:13:48.000" +"Pretty Princess Magical Garden Island - 01001CA019DA2000","01001CA019DA2000","","","2023-06-26 02:43:04.000" +"Pool Together - 01009DB01BA16000","01009DB01BA16000","","","2023-06-26 02:43:13.000" +"Kizuna AI - Touch the Beat! - 0100BF2019B98000","0100BF2019B98000","","","2023-06-26 02:43:18.000" +"Convenience Stories - 0100DF801A092000","0100DF801A092000","","","2023-06-26 10:58:37.000" +"Pikmin 4 Demo - 0100E0B019974000","0100E0B019974000","gpu;status-ingame;nvdec;UE4;demo;amd-vendor-bug","ingame","2023-09-22 21:41:08.000" +"超探偵事件簿 レインコード (Master Detective Archives: Rain Code) - 0100F4401940A000","0100F4401940A000","status-ingame;crash","ingame","2024-02-12 20:58:31.000" +"Everybody 1-2-Switch! - 01006F900BF8E000","01006F900BF8E000","services;deadlock;status-nothing","nothing","2023-07-01 05:52:55.000" +"AEW Fight Forever - 0100BD10190C0000","0100BD10190C0000","","","2023-06-30 22:09:10.000" +"Master Detective Archives: Rain Code - 01004800197F0000","01004800197F0000","gpu;status-ingame","ingame","2024-04-19 20:11:09.000" +"The Lara Croft Collection - 010079C017F5E000","010079C017F5E000","services-horizon;deadlock;status-nothing","nothing","2024-07-12 22:45:51.000" +"Ghost Trick Phantom Detective - 010029B018432000","010029B018432000","status-playable","playable","2023-08-23 14:50:12.000" +"Sentimental Death Loop - 0100FFA01ACA8000","0100FFA01ACA8000","","","2023-07-10 03:23:08.000" +"The Settlers: New Allies - 0100F3200E7CA000","0100F3200E7CA000","deadlock;status-nothing","nothing","2023-10-25 00:18:05.000" +"Manic Mechanics - 010095A01550E000","010095A01550E000","","","2023-07-17 02:07:32.000" +"Crymachina Trial Edition ( Demo ) [ クライマキナ ] - 01000CC01C108000","01000CC01C108000","status-playable;demo","playable","2023-08-06 05:33:21.000" +"Xicatrice [ シカトリス ] - 0100EB601A932000","0100EB601A932000","","","2023-07-18 02:18:35.000" +"Trouble Witches Final! Episode 01: Daughters of Amalgam - 0100D06018DCA000","0100D06018DCA000","status-playable","playable","2024-04-08 15:08:11.000" +"The Quintessential Quintuplets: Gotopazu Story [ 五等分の花嫁 ごとぱずストーリー ] - 0100137019E9C000","0100137019E9C000","","","2023-07-18 02:18:50.000" +"Pinball FX - 0100DA70186D4000","0100DA70186D4000","status-playable","playable","2024-05-03 17:09:11.000" +"Moving Out 2 Training Day ( Demo ) - 010049E01B034000","010049E01B034000","","","2023-07-19 00:37:57.000" +"Cold Silence - 010035B01706E000","010035B01706E000","cpu;status-nothing;crash","nothing","2024-07-11 17:06:14.000" +"Demons of Asteborg - 0100B92015538000","0100B92015538000","","","2023-07-20 17:03:06.000" +"Pikmin 4 - 0100B7C00933A000","0100B7C00933A000","gpu;status-ingame;crash;UE4","ingame","2024-08-26 03:39:08.000" +"Grizzland - 010091300FFA0000","010091300FFA0000","gpu;status-ingame","ingame","2024-07-11 16:28:34.000" +"Disney Illusion Island","","","","2023-07-29 09:20:56.000" +"Double Dragon Gaiden: Rise of The Dragons - 010010401BC1A000","010010401BC1A000","","","2023-08-01 05:17:28.000" +"CRYSTAR -クライスタ- 0100E7B016778800","0100E7B016778800","","","2023-08-02 11:54:22.000" +"Orebody: Binders Tale - 010055A0189B8000","010055A0189B8000","","","2023-08-03 18:50:10.000" +"Ginnung - 01004B1019C7E000","01004B1019C7E000","","","2023-08-03 19:19:00.000" +"Legends of Amberland: The Forgotten Crown - 01007170100AA000","01007170100AA000","","","2023-08-03 22:18:17.000" +"Egglien - 0100E29019F56000","0100E29019F56000","","","2023-08-03 22:48:04.000" +"Dolmenjord - Viking Islands - 010012201B998000","010012201B998000","","","2023-08-05 20:55:28.000" +"The Knight & the Dragon - 010031B00DB34000","010031B00DB34000","gpu;status-ingame","ingame","2023-08-14 10:31:43.000" +"Cookies! Theory of Super Evolution - ","","","","2023-08-06 00:21:28.000" +"Jetboy - 010039C018168000","010039C018168000","","","2023-08-07 17:25:10.000" +"Townscaper - 01001260143FC000","01001260143FC000","","","2023-08-07 18:24:29.000" +"The Deer God - 01000B6007A3C000","01000B6007A3C000","","","2023-08-07 19:48:55.000" +"6 Souls - 0100421016BF2000","0100421016BF2000","","","2023-08-07 21:17:43.000" +"Brotato - 01002EF01A316000","01002EF01A316000","","","2023-08-10 14:57:25.000" +"超次元ゲイム ネプテューヌ GameMaker R:Evolution - 010064801a01c000","010064801a01c000","status-nothing;crash","nothing","2023-10-30 22:37:40.000" +"Quake II - 010048F0195E8000","010048F0195E8000","status-playable","playable","2023-08-15 03:42:14.000" +"Red Dead Redemption - 01007820196A6000","01007820196A6000","status-playable;amd-vendor-bug","playable","2024-09-13 13:26:13.000" +"Samba de Amigo : Party Central Demo - 01007EF01C0D2000","01007EF01C0D2000","","","2023-08-18 04:00:43.000" +"Bomb Rush Cyberfunk - 0100317014B7C000","0100317014B7C000","status-playable","playable","2023-09-28 19:51:57.000" +"Jack Jeanne - 010036D01937E000","010036D01937E000","","","2023-08-21 05:58:21.000" +"Bright Memory: Infinite Gold Edition - 01001A9018560000","01001A9018560000","","","2023-08-22 22:46:26.000" +"NBA 2K23 - 0100ACA017E4E800","0100ACA017E4E800","status-boots","boots","2023-10-10 23:07:14.000" +"Marble It Up! Ultra - 0100C18016896000","0100C18016896000","","","2023-08-30 20:14:21.000" +"Words of Wisdom - 0100B7F01BC9A000","0100B7F01BC9A000","","","2023-09-02 19:05:19.000" +"Koa and the Five Pirates of Mara - 0100C57019BA2000","0100C57019BA2000","gpu;status-ingame","ingame","2024-07-11 16:14:44.000" +"Little Orpheus stuck at 2 level","","","","2023-09-05 12:09:08.000" +"Tiny Thor - 010002401AE94000","010002401AE94000","gpu;status-ingame","ingame","2024-07-26 08:37:35.000" +"Radirgy Swag - 01000B900EEF4000","01000B900EEF4000","","","2023-09-06 23:00:39.000" +"Sea of Stars - 01008C0016544000","01008C0016544000","status-playable","playable","2024-03-15 20:27:12.000" +"NBA 2K24 - 010006501A8D8000","010006501A8D8000","cpu;gpu;status-boots","boots","2024-08-11 18:23:08.000" +"Rune Factory 3 Special - 010081C0191D8000","010081C0191D8000","status-playable","playable","2023-10-15 08:32:49.000" +"Baten Kaitos I & II HD Remaster (Japan) - 0100F28018CA4000","0100F28018CA4000","services;status-boots;Needs Update","boots","2023-10-24 23:11:54.000" +"F-ZERO 99 - 0100CCF019C8C000","0100CCF019C8C000","","","2023-09-14 16:43:01.000" +"Horizon Chase 2 - 0100001019F6E000","0100001019F6E000","deadlock;slow;status-ingame;crash;UE4","ingame","2024-08-19 04:24:06.000" +"Mortal Kombat 1 - 01006560184E6000","01006560184E6000","gpu;status-ingame","ingame","2024-09-04 15:45:47.000" +"Baten Kaitos I & II HD Remaster (Europe/USA) - 0100C07018CA6000","0100C07018CA6000","services;status-boots;Needs Update","boots","2023-10-01 00:44:32.000" +"Legend of Mana 01003570130E2000","01003570130E2000","","","2023-09-17 04:07:26.000" +"TUNIC 0100DA801624E000","0100DA801624E000","","","2023-09-17 04:28:22.000" +"SUPER BOMBERMAN R 2 - 0100B87017D94000","0100B87017D94000","deadlock;status-boots","boots","2023-09-29 13:19:51.000" +"Fae Farm - 010073F0189B6000 ","010073F0189B6000","status-playable","playable","2024-08-25 15:12:12.000" +"demon skin - 01006fe0146ec000","01006fe0146ec000","","","2023-09-18 08:36:18.000" +"Fatal Frame: Mask of the Lunar Eclipse - 0100DAE019110000","0100DAE019110000","status-playable;Incomplete","playable","2024-04-11 06:01:30.000" +"Winter Games 2023 - 0100A4A015FF0000","0100A4A015FF0000","deadlock;status-menus","menus","2023-11-07 20:47:36.000" +"EA Sports FC 24 - 0100BDB01A0E6000","0100BDB01A0E6000","status-boots","boots","2023-10-04 18:32:59.000" +"Cassette Beasts - 010066F01A0E0000","010066F01A0E0000","status-playable","playable","2024-07-22 20:38:43.000" +"COCOON - 01002E700C366000","01002E700C366000","gpu;status-ingame","ingame","2024-03-06 11:33:08.000" +"Detective Pikachu Returns - 010007500F27C000","010007500F27C000","status-playable","playable","2023-10-07 10:24:59.000" +"DeepOne - 0100961011BE6000","0100961011BE6000","services-horizon;status-nothing;Needs Update","nothing","2024-01-18 15:01:05.000" +"Sonic Superstars","","","","2023-10-13 18:33:19.000" +"Disco Elysium - 01006C5015E84000","01006C5015E84000","Incomplete","","2023-10-14 13:53:12.000" +"Sonic Superstars - 01008F701C074000","01008F701C074000","gpu;status-ingame;nvdec","ingame","2023-10-28 17:48:07.000" +"Sonic Superstars Digital Art Book with Mini Digital Soundtrack - 010088801C150000","010088801C150000","status-playable","playable","2024-08-20 13:26:56.000" +"Super Mario Bros. Wonder - 010015100B514000","010015100B514000","status-playable;amd-vendor-bug","playable","2024-09-06 13:21:21.000" +"Project Blue - 0100FCD0193A0000","0100FCD0193A0000","","","2023-10-24 15:55:09.000" +"Rear Sekai [ リアセカイ ] - 0100C3B01A5DD002","0100C3B01A5DD002","","","2023-10-24 01:55:18.000" +"Dementium: The Ward (Dementium Remastered) - 010038B01D2CA000","010038B01D2CA000","status-boots;crash","boots","2024-09-02 08:28:14.000" +"A Tiny Sticker Tale - 0100f6001b738000","0100f6001b738000","","","2023-10-26 23:15:46.000" +"Clive 'n' Wrench - 0100C6C010AE4000","0100C6C010AE4000","","","2023-10-28 14:56:46.000" +"STAR OCEAN The Second Story R - 010065301A2E0000","010065301A2E0000","status-ingame;crash","ingame","2024-06-01 02:39:59.000" +"Song of Nunu: A League of Legends Story - 01004F401BEBE000","01004F401BEBE000","status-ingame","ingame","2024-07-12 18:53:44.000" +"MythForce","","","","2023-11-03 12:58:52.000" +"Here Comes Niko! - 01001600121D4000","01001600121D4000","","","2023-11-04 22:26:44.000" +"Warioware: Move IT! - 010045B018EC2000","010045B018EC2000","status-playable","playable","2023-11-14 00:23:51.000" +"Game of Life [ 人生ゲーム for Nintendo Switch ] - 0100FF1017F76000","0100FF1017F76000","","","2023-11-07 19:59:08.000" +"Osyaberi! Horijyo! Gekihori - 01005D6013A54000","01005D6013A54000","","","2023-11-07 01:46:43.000" +"Fashion Dreamer - 0100E99019B3A000","0100E99019B3A000","status-playable","playable","2023-11-12 06:42:52.000" +"THE 密室逃脱 ~牵动命运的三十五道谜团~ (ESCAPE TRICK: 35 Fateful Enigmas) - 010087F005DFE000","010087F005DFE000","","","2023-11-08 02:20:17.000" +"Hogwarts Legacy 0100F7E00C70E000","0100F7E00C70E000","status-ingame;slow","ingame","2024-09-03 19:53:58.000" +"Super Mario RPG - 0100BC0018138000","0100BC0018138000","gpu;audio;status-ingame;nvdec","ingame","2024-06-19 17:43:42.000" +"Venatrix - 010063601B386000","010063601B386000","","","2023-11-18 06:55:12.000" +"Dreamwork's All-Star Kart Racing - 010037401A374000","010037401A374000","Incomplete","","2024-02-27 08:58:57.000" +"Watermelon Game [ スイカゲーム ] - 0100800015926000","0100800015926000","","","2023-11-27 02:49:45.000" +"屁屁侦探 噗噗 未来的名侦探登场! (Oshiri Tantei Mirai no Meitantei Tojo!) - 0100FDE017E56000","0100FDE017E56000","","","2023-12-01 11:15:46.000" +"Batman: Arkham Knight - 0100ACD0163D0000","0100ACD0163D0000","gpu;status-ingame;mac-bug","ingame","2024-06-25 20:24:42.000" +"DRAGON QUEST MONSTERS: The Dark Prince - 0100A77018EA0000","0100A77018EA0000","status-playable","playable","2023-12-29 16:10:05.000" +"ftpd classic - 0000000000000000","0000000000000000","homebrew","","2023-12-03 23:42:19.000" +"ftpd pro - 0000000000000000","0000000000000000","homebrew","","2023-12-03 23:47:46.000" +"Batman: Arkham City - 01003f00163ce000","01003f00163ce000","status-playable","playable","2024-09-11 00:30:19.000" +"DoDonPachi DAI-OU-JOU Re:incarnation (怒首領蜂大往生 臨廻転生) - 0100526017B00000","0100526017B00000","","","2023-12-08 15:16:22.000" +"Squid Commando - 0100044018E82000","0100044018E82000","","","2023-12-08 17:17:27.000" +"御伽活劇 豆狸のバケル ~オラクル祭太郎の祭難!!~ (Otogi Katsugeki Mameda no Bakeru Oracle Saitarou no Sainan!!) - 0100BF401AF9C000","0100BF401AF9C000","slow;status-playable","playable","2023-12-31 14:37:17.000" +"Another Code: Recollection DEMO - 01003E301A4D6000","01003E301A4D6000","","","2023-12-15 06:48:09.000" +"Alien Hominid HD - 010056B019874000","010056B019874000","","","2023-12-17 13:10:46.000" +"Piyokoro - 010098801D706000","010098801D706000","","","2023-12-18 02:17:53.000" +"Uzzuzuu My Pet - Golf Dash - 010015B01CAF0000","010015B01CAF0000","","","2023-12-18 02:17:57.000" +"Alien Hominid Invasion - 0100A3E00CDD4000","0100A3E00CDD4000","Incomplete","","2024-07-17 01:56:28.000" +"void* tRrLM2(); //Void Terrarium 2 (USA/EU) - 0100B510183BC000","0100B510183BC000","","","2023-12-21 11:08:18.000" +"Metal Gear Solid Master Collection Vol. 1: Metal Gear Solid 3 - 010047F01AA10000","010047F01AA10000","services-horizon;status-menus","menus","2024-07-24 06:34:06.000" +"Party Friends - 0100C0A01D478000","0100C0A01D478000","","","2023-12-23 02:43:33.000" +"Yohane the Parhelion Numazu in the Mirage Demo - 0100D7201DAAE000","0100D7201DAAE000","","","2023-12-23 02:49:28.000" +"SPY×FAMILY OPERATION DIARY - 010041601AB40000","010041601AB40000","","","2023-12-23 02:52:29.000" +"Golf Guys - 010040901CC42000","010040901CC42000","","","2023-12-28 01:20:16.000" +"Persona 5 Tactica - 010087701B092000","010087701B092000","status-playable","playable","2024-04-01 22:21:03.000" +"Batman: Arkham Asylum - 0100E870163CA000","0100E870163CA000","","","2024-01-11 23:03:37.000" +"Persona 5 Royal (KR/HK) - 01004B10157F2000","01004B10157F2000","Incomplete","","2024-08-17 21:42:28.000" +"Prince of Persia: The Lost Crown - 0100210019428000","0100210019428000","status-ingame;crash","ingame","2024-06-08 21:31:58.000" +"Another Code: Recollection - 0100CB9018F5A000","0100CB9018F5A000","gpu;status-ingame;crash","ingame","2024-09-06 05:58:52.000" +"It Takes Two - 010092A0172E4000","010092A0172E4000","","","2024-01-23 05:15:26.000" +"逆转裁判四五六 王泥喜精选集 (Apollo Justice: Ace Attorney Trilogy) - 010020D01B890000","010020D01B890000","status-playable","playable","2024-06-21 21:54:27.000" +"Hitman: Blood Money - Reprisal - 010083A018262000","010083A018262000","deadlock;status-ingame","ingame","2024-09-28 16:28:50.000" +"Mario vs. Donkey Kong™ Demo - 0100D9E01DBB0000","0100D9E01DBB0000","status-playable","playable","2024-02-18 10:40:06.000" +"LEGO The Incredibles - 0100F19006E04000","0100F19006E04000","crash","","2024-02-11 00:46:53.000" +"Tomb Raider I-III Remastered - 010024601BB16000","010024601BB16000","gpu;status-ingame;opengl","ingame","2024-09-27 12:32:04.000" +"Arzette: The Jewel of Faramore - 0100B7501C46A000","0100B7501C46A000","","","2024-02-17 17:22:34.000" +"Mario vs. Donkey Kong - 0100B99019412000","0100B99019412000","status-playable","playable","2024-05-04 21:22:39.000" +"Penny's Big Breakaway - 0100CA901AA9C000","0100CA901AA9C000","status-playable;amd-vendor-bug","playable","2024-05-27 07:58:51.000" +"CEIBA - 0100E8801D97E000","0100E8801D97E000","","","2024-02-25 22:33:36.000" +"Lil' Guardsman v1.1 - 010060B017F6E000","010060B017F6E000","","","2024-02-25 19:21:03.000" +"Fearmonium - 0100F5501CE12000","0100F5501CE12000","status-boots;crash","boots","2024-03-06 11:26:11.000" +"NeverAwake - 0100DA30189CA000","0100DA30189CA000","","","2024-02-26 02:27:39.000" +"Zombies Rising XXX","","","","2024-02-26 07:53:03.000" +"Balatro - 0100CD801CE5E000","0100CD801CE5E000","status-ingame","ingame","2024-04-21 02:01:53.000" +"Prison City - 0100C1801B914000","0100C1801B914000","gpu;status-ingame","ingame","2024-03-01 08:19:33.000" +"Yo-kai Watch Jam: Y School Heroes: Bustlin' School Life - 010051D010FC2000","010051D010FC2000","","","2024-03-03 02:57:22.000" +"Princess Peach: Showtime! Demo - 010024701DC2E000","010024701DC2E000","status-playable;UE4;demo","playable","2024-03-10 17:46:45.000" +"Unicorn Overlord - 010069401ADB8000","010069401ADB8000","status-playable","playable","2024-09-27 14:04:32.000" +"Dodgeball Academia - 010001F014D9A000","010001F014D9A000","","","2024-03-09 03:49:28.000" +"魂斗罗:加鲁加行动 (Contra: Operation Galuga) - 0100CF401A98E000","0100CF401A98E000","","","2024-03-13 01:13:42.000" +"STAR WARS Battlefront Classic Collection - 010040701B948000","010040701B948000","gpu;status-ingame;vulkan","ingame","2024-07-12 19:24:21.000" +"MLB The Show 24 - 0100E2E01C32E000","0100E2E01C32E000","services-horizon;status-nothing","nothing","2024-03-31 04:54:11.000" +"Orion Haste - 01009B401DD02000","01009B401DD02000","","","2024-03-16 17:22:59.000" +"Gylt - 0100AC601DCA8000","0100AC601DCA8000","status-ingame;crash","ingame","2024-03-18 20:16:51.000" +"マクロス(Macross) -Shooting Insight- - 01001C601B8D8000","01001C601B8D8000","","","2024-03-20 17:10:26.000" +"Geometry Survivor - 01006D401D4F4000","01006D401D4F4000","","","2024-03-20 17:35:34.000" +"Gley Lancer and Gynoug - Classic Shooting Pack - 010037201E3DA000","010037201E3DA000","","","2024-03-20 18:19:37.000" +"Princess Peach: Showtime! - 01007A3009184000","01007A3009184000","status-playable;UE4","playable","2024-09-21 13:39:45.000" +"Cosmic Fantasy Collection - 0100CCB01B1A0000","0100CCB01B1A0000","status-ingame","ingame","2024-05-21 17:56:37.000" +"Fit Boxing feat. 初音ミク - 010045D01AFC8000","010045D01AFC8000","","","2024-03-28 04:07:57.000" +"Sonic 2 (2013) - 0000000000000000","0000000000000000","status-ingame;crash;homebrew","ingame","2024-04-01 16:25:30.000" +"Sonic CD - 0000000000000000","0000000000000000","status-ingame;crash;homebrew","ingame","2024-04-01 16:25:31.000" +"Sonic A.I.R - 0000000000000000","0000000000000000","status-ingame;homebrew","ingame","2024-04-01 16:25:32.000" +"RSDKv5u - 0000000000000000","0000000000000000","status-ingame;homebrew","ingame","2024-04-01 16:25:34.000" +"Sonic 1 (2013) - 0000000000000000","0000000000000000","status-ingame;crash;homebrew","ingame","2024-04-06 18:31:20.000" +"The Dark Pictures Anthology : Man of Medan - 0100711017B30000","0100711017B30000","","","2024-04-01 16:38:04.000" +"SpaceCadetPinball - 0000000000000000","0000000000000000","status-ingame;homebrew","ingame","2024-04-18 19:30:04.000" +"Pepper Grinder - 0100B98019068000","0100B98019068000","","","2024-04-04 16:31:57.000" +"RetroArch - 010000000000100D","010000000000100D","","","2024-04-07 18:23:18.000" +"YouTube - 01003A400C3DA800","01003A400C3DA800","status-playable","playable","2024-06-08 05:24:10.000" +"Pawapoke R - 01000c4015030000","01000c4015030000","services-horizon;status-nothing","nothing","2024-05-14 14:28:32.000" +"MegaZeux - 0000000000000000","0000000000000000","","","2024-04-16 23:46:53.000" +"ANTONBLAST (Demo) - 0100B5F01EB24000","0100B5F01EB24000","","","2024-04-18 22:45:13.000" +"Europa (Demo) - 010092501EB2C000","010092501EB2C000","gpu;status-ingame;crash;UE4","ingame","2024-04-23 10:47:12.000" +"BioShock 1 & 2 Remastered [0100AD10102B2000 - 01002620102C6800] v1.0.2","0100AD10102B2000","","","2024-04-19 19:08:30.000" +"Turrican Anthology Vol. 2 - 010061D0130CA000 - game freezes at the beginning","010061D0130CA000","Incomplete","","2024-04-25 17:57:06.000" +"Nickelodeon All-Star Brawl 2 - 010010701AFB2000","010010701AFB2000","status-playable","playable","2024-06-03 14:15:01.000" +"Bloo Kid - 0100C6A01AD56000","0100C6A01AD56000","status-playable","playable","2024-05-01 17:18:04.000" +"Tales of Kenzera: ZAU - 01005C7015D30000","01005C7015D30000","","","2024-04-30 10:11:26.000" +"Demon Slayer – Kimetsu no Yaiba – Sweep the Board! - 0100A7101B806000","0100A7101B806000","","","2024-05-02 10:19:47.000" +"Endless Ocean Luminous - 010067B017588000","010067B017588000","services-horizon;status-ingame;crash","ingame","2024-05-30 02:05:57.000" +"Moto GP 24 - 010040401D564000","010040401D564000","gpu;status-ingame","ingame","2024-05-10 23:41:00.000" +"The game of life 2 - 0100B620139D8000","0100B620139D8000","","","2024-05-03 12:08:33.000" +"ANIMAL WELL - 010020D01AD24000","010020D01AD24000","status-playable","playable","2024-05-22 18:01:49.000" +"Super Mario World - 0000000000000000","0000000000000000","status-boots;homebrew","boots","2024-06-13 01:40:31.000" +"1000xRESIST - 0100B02019866000","0100B02019866000","","","2024-05-11 17:18:57.000" +"Dave The Diver - 010097F018538000","010097F018538000","Incomplete","","2024-09-03 21:38:55.000" +"Zombiewood","","Incomplete","","2024-05-15 11:37:19.000" +"Pawapoke Dash - 010066A015F94000","010066A015F94000","","","2024-05-16 08:45:51.000" +"Biomutant - 01004BA017CD6000","01004BA017CD6000","status-ingame;crash","ingame","2024-05-16 15:46:36.000" +"Vampire Survivors - 010089A0197E4000","010089A0197E4000","status-ingame","ingame","2024-06-17 09:57:38.000" +"Koumajou Remilia II Stranger’s Requiem","","Incomplete","","2024-05-22 20:59:04.000" +"Paper Mario: The Thousand-Year Door - 0100ECD018EBE000","0100ECD018EBE000","gpu;status-ingame;intel-vendor-bug;slow","ingame","2025-01-07 04:27:35.000" +"Stories From Sol: The Gun-dog Demo - 010092A01EC94000","010092A01EC94000","","","2024-05-22 19:55:35.000" +"Earth Defense Force: World Brothers 2 - 010083a01d456000","010083a01d456000","","","2024-06-01 18:34:34.000" +"锈色湖畔:内在昔日(Rusty Lake: The Past Within) - 01007010157EC000","01007010157EC000","","","2024-06-10 13:47:40.000" +"Garden Life A Cozy Simulator - 0100E3801ACC0000","0100E3801ACC0000","","","2024-06-12 00:12:01.000" +"Shin Megami Tensei V: Vengeance - 010069C01AB82000","010069C01AB82000","gpu;status-ingame;vulkan-backend-bug","ingame","2024-07-14 11:28:24.000" +"Valiant Hearts - The great war - 01006C70146A2000","01006C70146A2000","","","2024-06-18 21:31:15.000" +"Monster Hunter Stories - 010069301B1D4000","010069301B1D4000","Incomplete","","2024-09-11 07:58:24.000" +"Rocket Knight Adventures: Re-Sparked","","","","2024-06-20 20:13:10.000" +"Metal Slug Attack Reloaded","","","","2024-06-20 19:55:22.000" +"#BLUD - 010060201E0A4000","010060201E0A4000","","","2024-06-23 13:57:22.000" +"NARUTO X BARUTO Ultimate Ninja STORM CONNECTIONS - 0100D2D0190A4000","0100D2D0190A4000","services-horizon;status-nothing","nothing","2024-07-25 05:16:48.000" +"Bang-On Balls: Chronicles - 010081E01A45C000","010081E01A45C000","Incomplete","","2024-08-01 16:40:12.000" +"Downward: Enhanced Edition 0100C5501BF24000","0100C5501BF24000","","","2024-06-26 00:22:34.000" +"DNF Duel: Who's Next - 0100380017D3E000","0100380017D3E000","Incomplete","","2024-07-23 02:25:50.000" +"Borderlands 3 - 01009970122E4000","01009970122E4000","gpu;status-ingame","ingame","2024-07-15 04:38:14.000" +"Luigi's Mansion 2 HD - 010048701995E000","010048701995E000","status-ingame;ldn-broken;amd-vendor-bug","ingame","2024-09-05 23:47:27.000" +"Super Monkey Ball Banana Rumble - 010031F019294000","010031F019294000","status-playable","playable","2024-06-28 10:39:18.000" +"City of Beats 0100E94016B9E000","0100E94016B9E000","","","2024-07-01 07:02:20.000" +"Maquette 0100861018480000","0100861018480000","","","2024-07-04 05:20:21.000" +"Monomals - 01003030161DC000","01003030161DC000","gpu;status-ingame","ingame","2024-08-06 22:02:51.000" +"Ace Combat 7 - Skies Unknown Deluxe Edition - 010039301B7E0000","010039301B7E0000","gpu;status-ingame;UE4","ingame","2024-09-27 14:31:43.000" +"Teenage Mutant Ninja Turtles: Splintered Fate - 01005CF01E784000","01005CF01E784000","status-playable","playable","2024-08-03 13:50:42.000" +"Powerful Pro Baseball 2024-2025 - 0100D1C01C194000","0100D1C01C194000","gpu;status-ingame","ingame","2024-08-25 06:40:48.000" +"World of Goo 2 - 010061F01DB7C800","010061F01DB7C800","status-boots","boots","2024-08-08 22:52:49.000" +"Tomba! Special Edition - 0100D7F01E49C000","0100D7F01E49C000","services-horizon;status-nothing","nothing","2024-09-15 21:59:54.000" +"Machi Koro With Everyone-0100C32018824000","0100C32018824000","","","2024-08-07 19:19:30.000" +"STAR WARS: Bounty Hunter - 0100d7a01b7a2000","0100d7a01b7a2000","","","2024-08-08 11:12:56.000" +"Outer Wilds - 01003DC0144B6000","01003DC0144B6000","","","2024-08-08 17:36:16.000" +"Grounded 01006F301AE9C000","01006F301AE9C000","","","2024-08-09 16:35:52.000" +"DOOM + DOOM II - 01008CB01E52E000","01008CB01E52E000","status-playable;opengl;ldn-untested;LAN","playable","2024-09-12 07:06:01.000" +"Fishing Paradiso - 0100890016A74000","0100890016A74000","","","2024-08-11 21:39:54.000" +"Revue Starlight El Dorado - 010099c01d642000","010099c01d642000","","","2024-09-02 18:58:18.000" +"PowerWash Simulator - 0100926016012000","0100926016012000","","","2024-08-22 00:47:34.000" +"Thank Goodness You’re Here! - 010053101ACB8000","010053101ACB8000","","","2024-09-25 16:15:40.000" +"Freedom Planet 2 V1.2.3r (01009A301B68000)","","","","2024-08-23 18:16:54.000" +"Ace Attorney Investigations Collection DEMO - 010033401E68E000","010033401E68E000","status-playable","playable","2024-09-07 06:16:42.000" +"Castlevania Dominus Collection - 0100FA501AF90000","0100FA501AF90000","","","2024-09-19 01:39:04.000" +"Chants of Sennaar - 0100543019CB0000","0100543019CB0000","","","2024-09-19 16:30:27.000" +"Taisho x Alice ALL IN ONE - 大正×対称アリス ALL IN ONE - 010096000ca38000","010096000ca38000","","","2024-09-11 21:20:04.000" +"NBA 2K25 - 0100DFF01ED44000","0100DFF01ED44000","","","2024-09-10 17:34:54.000" +"逆转检察官1&2 御剑精选集 (Ace Attorney Investigations Collection) - 010005501E68C000","010005501E68C000","status-playable","playable","2024-09-19 16:38:05.000" +"Fabledom - 0100B6001E6D6000","0100B6001E6D6000","","","2024-09-28 12:12:55.000" +"BZZZT - 010091201A3F2000","010091201A3F2000","","","2024-09-22 21:29:58.000" +"EA SPORTS FC 25 - 010054E01D878000","010054E01D878000","status-ingame;crash","ingame","2024-09-25 21:07:50.000" +"Selfloss - 010036C01E244000","010036C01E244000","","","2024-09-23 23:12:13.000" +"Disney Epic Mickey: Rebrushed - 0100DA201EBF8000","0100DA201EBF8000","status-ingame;crash","ingame","2024-09-26 22:11:51.000" +"The Plucky Squire - 01006BD018B54000","01006BD018B54000","status-ingame;crash","ingame","2024-09-27 22:32:33.000" +"The Legend of Zelda Echoes of Wisdom - 01008CF01BAAC000","01008CF01BAAC000","status-playable;nvdec;ASTC;intel-vendor-bug","playable","2024-10-01 14:11:01.000" +"Bakeru - 01007CD01FAE0000","01007CD01FAE0000","","","2024-09-25 18:05:22.000" +"トラブル・マギア ~訳アリ少女は未来を勝ち取るために異国の魔法学校へ留学します~(Trouble Magia ~Wakeari Shoujo wa Mirai o Kachitoru Tame ni Ikoku no Mahou Gakkou e Ryuugaku Shimasu~) - 01000BB01CB8A000","01000BB01CB8A000","status-nothing","nothing","2024-09-28 07:03:14.000" +"I am an Airtraffic Controller AIRPORT HERO HANEDA ALLSTARS - 01002EE01BAE0000","01002EE01BAE0000","","","2024-09-27 02:04:17.000" +"燃えよ! 乙女道士 ~華遊恋語~ (Moeyo! Otome Doushi Kayu Koigatari) - 01001BA01EBFC000","01001BA01EBFC000","services-horizon;status-nothing","nothing","2024-09-28 12:22:55.000" +"I am an Air Traffic Controller AIRPORT HERO HANEDA - 0100BE700EDA4000","0100BE700EDA4000","","","2024-09-27 23:52:19.000" +"Angel at Dusk Demo - 0100D96020ADC000","0100D96020ADC000","","","2024-09-29 17:21:13.000" +"Monster Jam™ Showdown - 0100CE101B698000","0100CE101B698000","","","2024-09-30 04:03:13.000" +"Legend of Heroes: Trails Through Daybreak - 010040C01D248000","010040C01D248000","","","2024-10-01 07:36:25.000" +"Mario & Luigi: Brothership - 01006D0017F7A000","01006D0017F7A000","status-ingame;crash;slow;UE4;mac-bug","ingame","2025-01-07 04:00:00.000" +"Stray - 010075101EF84000","010075101EF84000","status-ingame;crash","ingame","2025-01-07 04:03:00.000" +"Dragon Quest III HD-2D Remake - 01003E601E324000","01003E601E324000","status-ingame;vulkan-backend-bug;UE4;audout;mac-bug","ingame","2025-01-07 04:10:27.000" +"SONIC X SHADOW GENERATIONS - 01005EA01C0FC000","01005EA01C0FC000","status-ingame;crash","ingame","2025-01-07 04:20:45.000" +"LEGO Horizon Adventures - 010073C01AF34000","010073C01AF34000","status-ingame;vulkan-backend-bug;opengl-backend-bug;UE4","ingame","2025-01-07 04:24:56.000" +"Legacy of Kain™ Soul Reaver 1&2 Remastered - 010079901C898000","010079901C898000","status-playable","playable","2025-01-07 05:50:01.000" diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs b/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs index d6390cc7d..8a3482c01 100644 --- a/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs +++ b/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs @@ -3,6 +3,7 @@ using nietras.SeparatedValues; using Ryujinx.Ava.Common.Locale; using System; using System.Collections.Generic; +using System.IO; using System.Linq; using System.Text; @@ -32,21 +33,22 @@ namespace Ryujinx.Ava.Utilities.Compat { public CompatibilityEntry(SepReaderHeader header, SepReader.Row row) { - IssueNumber = row[header.IndexOf("issue_number")].Parse(); - - var titleIdRow = row[header.IndexOf("extracted_game_id")].ToString(); + if (row.ColCount != header.ColNames.Count) + throw new InvalidDataException($"CSV row {row.RowIndex} ({row.ToString()}) has mismatched column count"); + + var titleIdRow = ColStr(row[header.IndexOf("\"extracted_game_id\"")]); TitleId = !string.IsNullOrEmpty(titleIdRow) ? titleIdRow : default(Optional); - var issueTitleRow = row[header.IndexOf("issue_title")].ToString(); + var issueTitleRow = ColStr(row[header.IndexOf("\"issue_title\"")]); if (TitleId.HasValue) issueTitleRow = issueTitleRow.ReplaceIgnoreCase($" - {TitleId}", string.Empty); GameName = issueTitleRow.Trim().Trim('"'); - IssueLabels = row[header.IndexOf("issue_labels")].ToString().Split(';'); - Status = row[header.IndexOf("extracted_status")].ToString().ToLower() switch + IssueLabels = ColStr(row[header.IndexOf("\"issue_labels\"")]).Split(';'); + Status = ColStr(row[header.IndexOf("\"extracted_status\"")]).ToLower() switch { "playable" => LocaleKeys.CompatibilityListPlayable, "ingame" => LocaleKeys.CompatibilityListIngame, @@ -56,20 +58,19 @@ namespace Ryujinx.Ava.Utilities.Compat _ => null }; - if (row[header.IndexOf("last_event_date")].TryParse(out var dt)) + if (DateTime.TryParse(ColStr(row[header.IndexOf("\"last_event_date\"")]), out var dt)) LastEvent = dt; - if (row[header.IndexOf("events_count")].TryParse(out var eventsCount)) - EventCount = eventsCount; + return; + + string ColStr(SepReader.Col col) => col.ToString().Trim('"'); } - - public int IssueNumber { get; } + public string GameName { get; } public Optional TitleId { get; } public string[] IssueLabels { get; } public LocaleKeys? Status { get; } public DateTime LastEvent { get; } - public int EventCount { get; } public string LocalizedStatus => LocaleManager.Instance[Status!.Value]; public string FormattedTitleId => TitleId @@ -83,13 +84,11 @@ namespace Ryujinx.Ava.Utilities.Compat public override string ToString() { var sb = new StringBuilder("CompatibilityEntry: {"); - sb.Append($"{nameof(IssueNumber)}={IssueNumber}, "); sb.Append($"{nameof(GameName)}=\"{GameName}\", "); sb.Append($"{nameof(TitleId)}={TitleId}, "); sb.Append($"{nameof(IssueLabels)}=\"{IssueLabels}\", "); sb.Append($"{nameof(Status)}=\"{Status}\", "); - sb.Append($"{nameof(LastEvent)}=\"{LastEvent}\", "); - sb.Append($"{nameof(EventCount)}={EventCount}"); + sb.Append($"{nameof(LastEvent)}=\"{LastEvent}\""); sb.Append('}'); return sb.ToString(); From 1e52af5e29c2ffe26225cafcad2208ccd572a094 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Tue, 7 Jan 2025 20:17:09 -0600 Subject: [PATCH 35/69] docs: compat: Multiple big changes: Sort alphabetically, Remove title IDs in "issue_title" column, and remove all entries without a playability status. --- docs/compatibility.csv | 7736 ++++++++++++++++++---------------------- 1 file changed, 3432 insertions(+), 4304 deletions(-) diff --git a/docs/compatibility.csv b/docs/compatibility.csv index 66de18297..9976c3bd5 100644 --- a/docs/compatibility.csv +++ b/docs/compatibility.csv @@ -1,4305 +1,3433 @@ "issue_title","extracted_game_id","issue_labels","extracted_status","last_event_date" -"ARMS - 01009B500007C000","01009B500007C000","status-playable;ldn-works;LAN","playable","2024-08-28 07:49:24.000" -"Pokemon Quest - 01005D100807A000","01005D100807A000","status-playable","playable","2022-02-22 16:12:32.000" -"Retro City Rampage DX","","status-playable","playable","2021-01-05 17:04:17.000" -"Kirby Star Allies - 01007E3006DDA000","01007E3006DDA000","status-playable;nvdec","playable","2023-11-15 17:06:19.000" -"Bayonetta 2 - 01007960049A0000","01007960049A0000","status-playable;nvdec;ldn-works;LAN","playable","2022-11-26 03:46:09.000" -"Bloons TD 5 - 0100B8400A1C6000","0100B8400A1C6000","Needs Update;audio;gpu;services;status-boots","boots","2021-04-18 23:02:46.000" -"Urban Trial Playground - 01001B10068EC000","01001B10068EC000","UE4;nvdec;online;status-playable","playable","2021-03-25 20:56:51.000" -"Ben 10 - 01006E1004404000","01006E1004404000","nvdec;status-playable","playable","2021-02-26 14:08:35.000" -"Lanota","","status-playable","playable","2019-09-04 01:58:14.000" -"Portal Knights - 0100437004170000","0100437004170000","ldn-untested;online;status-playable","playable","2021-05-27 19:29:04.000" -"Thimbleweed Park - 01009BD003B36000","01009BD003B36000","status-playable","playable","2022-08-24 11:15:31.000" -"Pokkén Tournament DX - 0100B3F000BE2000","0100B3F000BE2000","status-playable;nvdec;ldn-works;opengl-backend-bug;LAN;amd-vendor-bug;intel-vendor-bug","playable","2024-07-18 23:11:08.000" -"Farming Simulator Nintendo Switch Edition","","nvdec;status-playable","playable","2021-01-19 14:46:44.000" -"Sonic Forces - 01001270012B6000","01001270012B6000","status-playable","playable","2024-07-28 13:11:21.000" -"One Piece Pirate Warriors 3","","nvdec;status-playable","playable","2020-05-10 06:23:52.000" -"Dragon Quest Heroes I + II (JP) - 0100CD3000BDC000","0100CD3000BDC000","nvdec;status-playable","playable","2021-04-08 14:27:16.000" -"Dragon Quest Builders - 010008900705C000","010008900705C000","gpu;status-ingame;nvdec","ingame","2023-08-14 09:54:36.000" -"Don't Starve - 0100751007ADA000","0100751007ADA000","status-playable;nvdec","playable","2022-02-05 20:43:34.000" -"Bud Spencer & Terence Hill - Slaps and Beans - 01000D200AC0C000","01000D200AC0C000","status-playable","playable","2022-07-17 12:37:00.000" -"Fantasy Hero Unsigned Legacy - 0100767008502000","0100767008502000","status-playable","playable","2022-07-26 12:28:52.000" -"MUSNYX","","status-playable","playable","2020-05-08 14:24:43.000" -"Mario Tennis Aces - 0100BDE00862A000","0100BDE00862A000","gpu;status-ingame;nvdec;ldn-works;LAN","ingame","2024-09-28 15:54:40.000" -"Higurashi no Naku Koro ni Hō - 0100F6A00A684000","0100F6A00A684000","audio;status-ingame","ingame","2021-09-18 14:40:28.000" -"Nintendo Entertainment System - Nintendo Switch Online - 0100D870045B6000","0100D870045B6000","status-playable;online","playable","2022-07-01 15:45:06.000" -"SEGA Ages: Sonic The Hedgehog - 010051F00AC5E000","010051F00AC5E000","slow;status-playable","playable","2023-03-05 20:16:31.000" -"10 Second Run Returns - 01004D1007926000","01004D1007926000","gpu;status-ingame","ingame","2022-07-17 13:06:18.000" -"PriPara: All Idol Perfect Stage - 010007F00879E000","010007F00879E000","status-playable","playable","2022-11-22 16:35:52.000" -"Shantae and the Pirate's Curse - 0100EFD00A4FA000","0100EFD00A4FA000","status-playable","playable","2024-04-29 17:21:57.000" -"DARK SOULS™: REMASTERED - 01004AB00A260000","01004AB00A260000","gpu;status-ingame;nvdec;online-broken","ingame","2024-04-09 19:47:58.000" -"The Liar Princess and the Blind Prince - 010064B00B95C000","010064B00B95C000","audio;slow;status-playable","playable","2020-06-08 21:23:28.000" -"Dead Cells - 0100646009FBE000","0100646009FBE000","status-playable","playable","2021-09-22 22:18:49.000" -"Sonic Mania - 01009AA000FAA000","01009AA000FAA000","status-playable","playable","2020-06-08 17:30:57.000" -"The Mahjong","","Needs Update;crash;services;status-nothing","nothing","2021-04-01 22:06:22.000" -"Angels of Death - 0100AE000AEBC000","0100AE000AEBC000","nvdec;status-playable","playable","2021-02-22 14:17:15.000" -"Penny-Punching Princess - 0100C510049E0000","0100C510049E0000","status-playable","playable","2022-08-09 13:37:05.000" -"Just Shapes & Beats","","ldn-untested;nvdec;status-playable","playable","2021-02-09 12:18:36.000" -"Minecraft - Nintendo Switch Edition - 01006BD001E06000","01006BD001E06000","status-playable;ldn-broken","playable","2023-10-15 01:47:08.000" -"FINAL FANTASY XV POCKET EDITION HD","","status-playable","playable","2021-01-05 17:52:08.000" -"Dragon Ball Xenoverse 2 - 010078D000F88000","010078D000F88000","gpu;status-ingame;nvdec;online;ldn-untested","ingame","2022-07-24 12:31:01.000" -"Atelier Lydie & Suelle: The Alchemists and the Mysterious Paintings - 010009900947A000","010009900947A000","nvdec;status-playable","playable","2021-06-03 18:37:01.000" -"Nights of Azure 2: Bride of the New Moon - 0100628004BCE000","0100628004BCE000","status-menus;crash;nvdec;regression","menus","2022-11-24 16:00:39.000" -"RXN -Raijin-","","nvdec;status-playable","playable","2021-01-10 16:05:43.000" -"The Legend of Zelda: Breath of the Wild - 01007EF00011E000","01007EF00011E000","gpu;status-ingame;amd-vendor-bug;mac-bug","ingame","2024-09-23 19:35:46.000" -"The Messenger","","status-playable","playable","2020-03-22 13:51:37.000" -"Starlink: Battle for Atlas - 01002CC003FE6000","01002CC003FE6000","services-horizon;status-nothing;crash;Needs Update","nothing","2024-05-05 17:25:11.000" -"Nintendo Labo - Toy-Con 01: Variety Kit - 0100C4B0034B2000","0100C4B0034B2000","gpu;status-ingame","ingame","2022-08-07 12:56:07.000" -"Diablo III: Eternal Collection - 01001B300B9BE000","01001B300B9BE000","status-playable;online-broken;ldn-works","playable","2023-08-21 23:48:03.000" -"Road Redemption - 010053000B986000","010053000B986000","status-playable;online-broken","playable","2022-08-12 11:26:20.000" -"Brawlhalla - 0100C6800B934000","0100C6800B934000","online;opengl;status-playable","playable","2021-06-03 18:26:09.000" -"Super Mario Odyssey - 0100000000010000","0100000000010000","status-playable;nvdec;intel-vendor-bug;mac-bug","playable","2024-08-25 01:32:34.000" -"Sonic Mania Plus - 01009AA000FAA000","01009AA000FAA000","status-playable","playable","2022-01-16 04:09:11.000" -"Pokken Tournament DX Demo - 010030D005AE6000","010030D005AE6000","status-playable;demo;opengl-backend-bug","playable","2022-08-10 12:03:19.000" -"Fast RMX - 01009510001CA000","01009510001CA000","slow;status-ingame;crash;ldn-partial","ingame","2024-06-22 20:48:58.000" -"Steins;Gate Elite","","status-playable","playable","2020-08-04 07:33:32.000" -"Memories Off -Innocent Fille- for Dearest","","status-playable","playable","2020-08-04 07:31:22.000" -"Enchanting Mahjong Match","","gpu;status-ingame","ingame","2020-04-17 22:01:31.000" -"Code of Princess EX - 010034E005C9C000","010034E005C9C000","nvdec;online;status-playable","playable","2021-06-03 10:50:13.000" -"20XX - 0100749009844000","0100749009844000","gpu;status-ingame","ingame","2023-08-14 09:41:44.000" -"Cartoon Network Battle Crashers - 0100085003A2A000","0100085003A2A000","status-playable","playable","2022-07-21 21:55:40.000" -"Danmaku Unlimited 3","","status-playable","playable","2020-11-15 00:48:35.000" -"Mega Man Legacy Collection Vol.1 - 01002D4007AE0000","01002D4007AE0000","gpu;status-ingame","ingame","2021-06-03 18:17:17.000" -"Sparkle ZERO","","gpu;slow;status-ingame","ingame","2020-03-23 18:19:18.000" -"Sparkle 2","","status-playable","playable","2020-10-19 11:51:39.000" -"Sparkle Unleashed - 01000DC007E90000","01000DC007E90000","status-playable","playable","2021-06-03 14:52:15.000" -"I AM SETSUNA - 0100849000BDA000","0100849000BDA000","status-playable","playable","2021-11-28 11:06:11.000" -"Lego City Undercover - 01003A30012C0000","01003A30012C0000","status-playable;nvdec","playable","2024-09-30 08:44:27.000" -"Mega Man X Legacy Collection","","audio;crash;services;status-menus","menus","2020-12-04 04:30:17.000" -"Super Bomberman R - 01007AD00013E000","01007AD00013E000","status-playable;nvdec;online-broken;ldn-works","playable","2022-08-16 19:19:14.000" -"Mega Man 11 - 0100B0C0086B0000","0100B0C0086B0000","status-playable","playable","2021-04-26 12:07:53.000" -"Undertale - 010080B00AD66000","010080B00AD66000","status-playable","playable","2022-08-31 17:31:46.000" -"Pokémon: Let's Go, Eevee! - 0100187003A36000","0100187003A36000","status-ingame;crash;nvdec;online-broken;ldn-broken","ingame","2024-06-01 15:03:04.000" -"Poly Bridge","","services;status-playable","playable","2020-06-08 23:32:41.000" -"BlazBlue: Cross Tag Battle","","nvdec;online;status-playable","playable","2021-01-05 20:29:37.000" -"Capcom Beat 'Em Up Bundle","","status-playable","playable","2020-03-23 18:31:24.000" -"Owlboy","","status-playable","playable","2020-10-19 14:24:45.000" -"Subarashiki Kono Sekai -Final Remix-","","services;slow;status-ingame","ingame","2020-02-10 16:21:51.000" -"Ultra Street Fighter II: The Final Challengers - 01007330027EE000","01007330027EE000","status-playable;ldn-untested","playable","2021-11-25 07:54:58.000" -"Mighty Gunvolt Burst","","status-playable","playable","2020-10-19 16:05:49.000" -"Super Meat Boy","","services;status-playable","playable","2020-04-02 23:10:07.000" -"UNO - 01005AA00372A000","01005AA00372A000","status-playable;nvdec;ldn-untested","playable","2022-07-28 14:49:47.000" -"Tales of the Tiny Planet - 0100408007078000","0100408007078000","status-playable","playable","2021-01-25 15:47:41.000" -"Octopath Traveler","","UE4;crash;gpu;status-ingame","ingame","2020-08-31 02:34:36.000" -"A magical high school girl - 01008DD006C52000","01008DD006C52000","status-playable","playable","2022-07-19 14:40:50.000" -"Superbeat: Xonic EX - 0100FF60051E2000","0100FF60051E2000","status-ingame;crash;nvdec","ingame","2022-08-19 18:54:40.000" -"DRAGON BALL FighterZ - 0100A250097F0000","0100A250097F0000","UE4;ldn-broken;nvdec;online;status-playable","playable","2021-06-11 16:19:04.000" -"Arcade Archives VS. SUPER MARIO BROS.","","online;status-playable","playable","2021-04-08 14:48:11.000" -"Celeste","","status-playable","playable","2020-06-17 10:14:40.000" -"Hollow Knight - 0100633007D48000","0100633007D48000","status-playable;nvdec","playable","2023-01-16 15:44:56.000" -"Shining Resonance Refrain - 01009A5009A9E000","01009A5009A9E000","status-playable;nvdec","playable","2022-08-12 18:03:01.000" -"Valkyria Chronicles 4 Demo - 0100FBD00B91E000","0100FBD00B91E000","slow;status-ingame;demo","ingame","2022-08-29 20:39:07.000" -"Super Smash Bros. Ultimate - 01006A800016E000","01006A800016E000","gpu;status-ingame;crash;nvdec;ldn-works;intel-vendor-bug","ingame","2024-09-14 23:05:21.000" -"Cendrillon palikA - 01006B000A666000","01006B000A666000","gpu;status-ingame;nvdec","ingame","2022-07-21 22:52:24.000" -"Atari Flashback Classics","","","","2018-12-15 06:55:27.000" -"RPG Maker MV","","nvdec;status-playable","playable","2021-01-05 20:12:01.000" -"SNK 40th Anniversary Collection - 01004AB00AEF8000","01004AB00AEF8000","status-playable","playable","2022-08-14 13:33:15.000" -"Firewatch - 0100AC300919A000","0100AC300919A000","status-playable","playable","2021-06-03 10:56:38.000" -"Taiko no Tatsujin: Drum 'n' Fun! - 01002C000B552000","01002C000B552000","status-playable;online-broken;ldn-broken","playable","2023-05-20 15:10:12.000" -"Fairy Fencer F™: Advent Dark Force - 0100F6D00B8F2000","0100F6D00B8F2000","status-ingame;32-bit;crash;nvdec","ingame","2023-04-16 03:53:48.000" -"Azure Striker Gunvolt: STRIKER PACK - 0100192003FA4000","0100192003FA4000","32-bit;status-playable","playable","2024-02-10 23:51:21.000" -"LIMBO - 01009C8009026000","01009C8009026000","cpu;status-boots;32-bit","boots","2023-06-28 15:39:19.000" -"Dragon Marked for Death: Frontline Fighters (Empress & Warrior) - 010089700150E000","010089700150E000","status-playable;ldn-untested;audout","playable","2022-03-10 06:44:34.000" -"SENRAN KAGURA Reflexions","","status-playable","playable","2020-03-23 19:15:23.000" -"Dies irae Amantes amentes For Nintendo Switch - 0100BB900B5B4000","0100BB900B5B4000","status-nothing;32-bit;crash","nothing","2022-02-16 07:09:05.000" -"TETRIS 99 - 010040600C5CE000","010040600C5CE000","gpu;status-ingame;online-broken;ldn-untested","ingame","2024-05-02 16:36:41.000" -"Yoshi's Crafted World Demo Version","","gpu;status-boots;status-ingame","boots","2020-12-16 14:57:40.000" -"8-BIT ADVENTURE STEINS;GATE","","audio;status-ingame","ingame","2020-01-12 15:05:06.000" -"Ao no Kanata no Four Rhythm - 0100FA100620C000","0100FA100620C000","status-playable","playable","2022-07-21 10:50:42.000" -"DELTARUNE Chapter 1 - 010023800D64A000","010023800D64A000","status-playable","playable","2023-01-22 04:47:44.000" -"My Girlfriend is a Mermaid!?","","nvdec;status-playable","playable","2020-05-08 13:32:55.000" -"SEGA Mega Drive Classics","","online;status-playable","playable","2021-01-05 11:08:00.000" -"Aragami: Shadow Edition - 010071800BA74000","010071800BA74000","nvdec;status-playable","playable","2021-02-21 20:33:23.000" -"この世の果てで恋を唄う少女YU-NO","","audio;status-ingame","ingame","2021-01-22 07:00:16.000" -"Xenoblade Chronicles 2 - 0100E95004038000","0100E95004038000","deadlock;status-ingame;amd-vendor-bug","ingame","2024-03-28 14:31:41.000" -"Atelier Rorona Arland no Renkinjutsushi DX (JP) - 01002D700B906000","01002D700B906000","status-playable;nvdec","playable","2022-12-02 17:26:54.000" -"DEAD OR ALIVE Xtreme 3 Scarlet - 01009CC00C97C000","01009CC00C97C000","status-playable","playable","2022-07-23 17:05:06.000" -"Blaster Master Zero 2 - 01005AA00D676000","01005AA00D676000","status-playable","playable","2021-04-08 15:22:59.000" -"Vroom in the Night Sky - 01004E90028A2000","01004E90028A2000","status-playable;Needs Update;vulkan-backend-bug","playable","2023-02-20 02:32:29.000" -"Our World Is Ended.","","nvdec;status-playable","playable","2021-01-19 22:46:57.000" -"Mortal Kombat 11 - 0100F2200C984000","0100F2200C984000","slow;status-ingame;nvdec;online-broken;ldn-broken","ingame","2024-06-19 02:22:17.000" -"SEGA Ages: Virtua Racing - 010054400D2E6000","010054400D2E6000","status-playable;online-broken","playable","2023-01-29 17:08:39.000" -"BOXBOY! + BOXGIRL!","","status-playable","playable","2020-11-08 01:11:54.000" -"Hyrule Warriors: Definitive Edition - 0100AE00096EA000","0100AE00096EA000","services-horizon;status-ingame;nvdec","ingame","2024-06-16 10:34:05.000" -"Cytus α - 010063100B2C2000","010063100B2C2000","nvdec;status-playable","playable","2021-02-20 13:40:46.000" -"Resident Evil 4 - 010099A00BC1E000","010099A00BC1E000","status-playable;nvdec","playable","2022-11-16 21:16:04.000" -"Team Sonic Racing - 010092B0091D0000","010092B0091D0000","status-playable;online-broken;ldn-works","playable","2024-02-05 15:05:27.000" -"Pang Adventures - 010083700B730000","010083700B730000","status-playable","playable","2021-04-10 12:16:59.000" -"Remi Lore - 010095900B436000","010095900B436000","status-playable","playable","2021-06-03 18:58:15.000" -"SKYHILL - 0100A0A00D1AA000","0100A0A00D1AA000","status-playable","playable","2021-03-05 15:19:11.000" -"Valkyria Chronicles 4 - 01005C600AC68000","01005C600AC68000","audout;nvdec;status-playable","playable","2021-06-03 18:12:25.000" -"Crystal Crisis - 0100972008234000","0100972008234000","nvdec;status-playable","playable","2021-02-20 13:52:44.000" -"Crash Team Racing Nitro-Fueled - 0100F9F00C696000","0100F9F00C696000","gpu;status-ingame;nvdec;online-broken","ingame","2023-06-25 02:40:17.000" -"Collection of Mana","","status-playable","playable","2020-10-19 19:29:45.000" -"Super Mario Maker 2 - 01009B90006DC000","01009B90006DC000","status-playable;online-broken;ldn-broken","playable","2024-08-25 11:05:19.000" -"Nekopara Vol.3 - 010045000E418000","010045000E418000","status-playable","playable","2022-10-03 12:49:04.000" -"Moero Chronicle Hyper - 0100B8500D570000","0100B8500D570000","32-bit;status-playable","playable","2022-08-11 07:21:56.000" -"Monster Hunter XX Demo","","32-bit;cpu;status-nothing","nothing","2020-03-22 10:12:28.000" -"Super Neptunia RPG - 01004D600AC14000","01004D600AC14000","status-playable;nvdec","playable","2022-08-17 16:38:52.000" -"Terraria - 0100E46006708000","0100E46006708000","status-playable;online-broken","playable","2022-09-12 16:14:57.000" -"Megaman Legacy Collection 2","","status-playable","playable","2021-01-06 08:47:59.000" -"Blazing Chrome","","status-playable","playable","2020-11-16 04:56:54.000" -"Dragon Quest Builders 2 - 010042000A986000","010042000A986000","status-playable","playable","2024-04-19 16:36:38.000" -"CLANNAD - 0100A3A00CC7E000","0100A3A00CC7E000","status-playable","playable","2021-06-03 17:01:02.000" -"Ys VIII: Lacrimosa of Dana - 01007F200B0C0000","01007F200B0C0000","status-playable;nvdec","playable","2023-08-05 09:26:41.000" -"PC Building Simulator","","status-playable","playable","2020-06-12 00:31:58.000" -"NO THING","","status-playable","playable","2021-01-04 19:06:01.000" -"The Swords of Ditto","","slow;status-ingame","ingame","2020-12-06 00:13:12.000" -"Kill la Kill - IF","","status-playable","playable","2020-06-09 14:47:08.000" -"Spyro Reignited Trilogy","","Needs More Attention;UE4;crash;gpu;nvdec;status-menus","menus","2021-01-22 13:01:56.000" -"FINAL FANTASY VIII REMASTERED - 01008B900DC0A000","01008B900DC0A000","status-playable;nvdec","playable","2023-02-15 10:57:48.000" -"Super Nintendo Entertainment System - Nintendo Switch Online","","status-playable","playable","2021-01-05 00:29:48.000" -"スーパーファミコン Nintendo Switch Online","","slow;status-ingame","ingame","2020-03-14 05:48:38.000" -"Street Fighter 30th Anniversary Collection - 0100024008310000","0100024008310000","status-playable;online-broken;ldn-partial","playable","2022-08-20 16:50:47.000" -"Cadence of Hyrule Crypt of the NecroDancer Featuring The Legend of Zelda - 01000B900D8B0000","01000B900D8B0000","slow;status-playable;nvdec","playable","2024-04-01 22:43:40.000" -"Nekopara Vol.2","","status-playable","playable","2020-12-16 11:04:47.000" -"Nekopara Vol.1 - 0100B4900AD3E000","0100B4900AD3E000","status-playable;nvdec","playable","2022-08-06 18:25:54.000" -"Gunvolt Chronicles: Luminous Avenger iX","","status-playable","playable","2020-06-16 22:47:07.000" -"Outlast - 01008D4007A1E000","01008D4007A1E000","status-playable;nvdec;loader-allocator;vulkan-backend-bug","playable","2024-01-27 04:44:26.000" -"OKAMI HD - 0100276009872000","0100276009872000","status-playable;nvdec","playable","2024-04-05 06:24:58.000" -"Luigi's Mansion 3 - 0100DCA0064A6000","0100DCA0064A6000","gpu;slow;status-ingame;Needs Update;ldn-works","ingame","2024-09-27 22:17:36.000" -"The Legend of Zelda: Link's Awakening - 01006BB00C6F0000","01006BB00C6F0000","gpu;status-ingame;nvdec;mac-bug","ingame","2023-08-09 17:37:40.000" -"Cat Quest","","status-playable","playable","2020-04-02 23:09:32.000" -"Xenoblade Chronicles 2: Torna - The Golden Country - 0100C9F009F7A000","0100C9F009F7A000","slow;status-playable;nvdec","playable","2023-01-28 16:47:28.000" -"Devil May Cry","","nvdec;status-playable","playable","2021-01-04 19:43:08.000" -"Fire Emblem Warriors - 0100F15003E64000","0100F15003E64000","status-playable;nvdec","playable","2023-05-10 01:53:10.000" -"Disgaea 4 Complete Plus","","gpu;slow;status-playable","playable","2020-02-18 10:54:28.000" -"Donkey Kong Country Tropical Freeze - 0100C1F0051B6000","0100C1F0051B6000","status-playable","playable","2024-08-05 16:46:10.000" -"Puzzle and Dragons GOLD","","slow;status-playable","playable","2020-05-13 15:09:34.000" -"Fe","","","","2020-01-21 04:08:33.000" -"MARIO & SONIC AT THE OLYMPIC GAMES TOKYO 2020 - 010002C00C270000","010002C00C270000","status-ingame;crash;online-broken;ldn-works","ingame","2024-08-23 16:12:55.000" -"void* tRrLM(); //Void Terrarium - 0100FF7010E7E000","0100FF7010E7E000","gpu;status-ingame;Needs Update;regression","ingame","2023-02-10 01:13:25.000" -"Cars 3 Driven to Win - 01008D1001512000","01008D1001512000","gpu;status-ingame","ingame","2022-07-21 21:21:05.000" -"Yu-Gi-Oh! Legacy of the Duelist: Link Evolution! - 010022400BE5A000","010022400BE5A000","status-playable","playable","2024-09-27 21:48:43.000" -"Baba Is You - 01002CD00A51C000","01002CD00A51C000","status-playable","playable","2022-07-17 05:36:54.000" -"Thronebreaker: The Witcher Tales - 0100E910103B4000","0100E910103B4000","nvdec;status-playable","playable","2021-06-03 16:40:15.000" -"Fitness Boxing","","services;status-ingame","ingame","2020-05-17 14:00:48.000" -"Fire Emblem: Three Houses - 010055D009F78000","010055D009F78000","status-playable;online-broken","playable","2024-09-14 23:53:50.000" -"Persona 5: Scramble","","deadlock;status-boots","boots","2020-10-04 03:22:29.000" -"Pokémon Sword - 0100ABF008968000","0100ABF008968000","deadlock;status-ingame;crash;online-broken;ldn-works;LAN","ingame","2024-08-26 15:40:37.000" -"Mario + Rabbids Kingdom Battle - 010067300059A000","010067300059A000","slow;status-playable;opengl-backend-bug","playable","2024-05-06 10:16:54.000" -"Tokyo Mirage Sessions #FE Encore - 0100A9400C9C2000","0100A9400C9C2000","32-bit;status-playable;nvdec","playable","2022-07-07 09:41:07.000" -"Disgaea 1 Complete - 01004B100AF18000","01004B100AF18000","status-playable","playable","2023-01-30 21:45:23.000" -"初音ミク Project DIVA MEGA39's - 0100F3100DA46000","0100F3100DA46000","audio;status-playable;loader-allocator","playable","2022-07-29 11:45:52.000" -"Minna de Wai Wai! Spelunker - 0100C3F000BD8000","0100C3F000BD8000","status-nothing;crash","nothing","2021-11-03 07:17:11.000" -"Nickelodeon Paw Patrol: On a Roll - 0100CEC003A4A000","0100CEC003A4A000","nvdec;status-playable","playable","2021-01-28 21:14:49.000" -"Rune Factory 4 Special - 010051D00E3A4000","010051D00E3A4000","status-ingame;32-bit;crash;nvdec","ingame","2023-05-06 08:49:17.000" -"Mario Kart 8 Deluxe - 0100152000022000","0100152000022000","32-bit;status-playable;ldn-works;LAN;amd-vendor-bug","playable","2024-09-19 11:55:17.000" -"Pokémon Mystery Dungeon Rescue Team DX - 01003D200BAA2000","01003D200BAA2000","status-playable;mac-bug","playable","2024-01-21 00:16:32.000" -"YGGDRA UNION We’ll Never Fight Alone","","status-playable","playable","2020-04-03 02:20:47.000" -"メモリーズオフ - Innocent Fille - 010065500B218000","010065500B218000","status-playable","playable","2022-12-02 17:36:48.000" -"Bokujou Monogatari Saikai no Mineraru Taun (Story of Seasons: Friends of Mineral Town) - 01001D900D9AC000","01001D900D9AC000","slow;status-ingame;crash;Needs Update","ingame","2022-04-24 22:46:04.000" -"Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy - Deluxe Edition - 0100CE500D226000","0100CE500D226000","status-playable;nvdec;opengl","playable","2022-09-14 15:01:57.000" -"Animal Crossing: New Horizons - 01006F8002326000","01006F8002326000","gpu;status-ingame;crash;nvdec;online-broken;ldn-works;mac-bug","ingame","2024-09-23 13:31:49.000" -"Crayon Shin-chan The Storm Called Flaming Kasukabe Runner!","","services;status-menus","menus","2020-03-20 14:00:57.000" -"Super One More Jump - 0100284007D6C000","0100284007D6C000","status-playable","playable","2022-08-17 16:47:47.000" -"Trine - 0100D9000A930000","0100D9000A930000","ldn-untested;nvdec;status-playable","playable","2021-06-03 11:28:15.000" -"Sky Force Reloaded","","status-playable","playable","2021-01-04 20:06:57.000" -"World of Goo - 010009E001D90000","010009E001D90000","gpu;status-boots;32-bit;crash;regression","boots","2024-04-12 05:52:14.000" -"ZERO GUNNER 2","","status-playable","playable","2021-01-04 20:17:14.000" -"Zaccaria Pinball - 010092400A678000","010092400A678000","status-playable;online-broken","playable","2022-09-03 15:44:28.000" -"1917 - The Alien Invasion DX","","status-playable","playable","2021-01-08 22:11:16.000" -"Astro Duel Deluxe - 0100F0400351C000","0100F0400351C000","32-bit;status-playable","playable","2021-06-03 11:21:48.000" -"Another World - 01003C300AAAE000","01003C300AAAE000","slow;status-playable","playable","2022-07-21 10:42:38.000" -"Ring Fit Adventure - 01002FF008C24000","01002FF008C24000","crash;services;status-nothing","nothing","2021-04-14 19:00:01.000" -"Arcade Classics Anniversary Collection - 010050000D6C4000","010050000D6C4000","status-playable","playable","2021-06-03 13:55:10.000" -"Assault Android Cactus+ - 0100DF200B24C000","0100DF200B24C000","status-playable","playable","2021-06-03 13:23:55.000" -"American Fugitive","","nvdec;status-playable","playable","2021-01-04 20:45:11.000" -"Nickelodeon Kart Racers","","status-playable","playable","2021-01-07 12:16:49.000" -"Neonwall - 0100743008694000","0100743008694000","status-playable;nvdec","playable","2022-08-06 18:49:52.000" -"Never Stop Sneakin'","","","","2020-03-19 12:55:40.000" -"Next Up Hero","","online;status-playable","playable","2021-01-04 22:39:36.000" -"Ninja Striker","","status-playable","playable","2020-12-08 19:33:29.000" -"Not Not a Brain Buster","","status-playable","playable","2020-05-10 02:05:26.000" -"Oh...Sir! The Hollywood Roast","","status-ingame","ingame","2020-12-06 00:42:30.000" -"Old School Musical","","status-playable","playable","2020-12-10 12:51:12.000" -"Abyss","","","","2020-03-19 15:41:55.000" -"Alteric","","status-playable","playable","2020-11-08 13:53:22.000" -"AIRHEART - Tales of Broken Wings - 01003DD00BFEE000","01003DD00BFEE000","status-playable","playable","2021-02-26 15:20:27.000" -"Necrosphere","","","","2020-03-19 17:25:03.000" -"Neverout","","","","2020-03-19 17:33:39.000" -"Old Man's Journey - 0100CE2007A86000","0100CE2007A86000","nvdec;status-playable","playable","2021-01-28 19:16:52.000" -"Dr Kawashima's Brain Training - 0100ED000D390000","0100ED000D390000","services;status-ingame","ingame","2023-06-04 00:06:46.000" -"Nine Parchments - 0100D03003F0E000","0100D03003F0E000","status-playable;ldn-untested","playable","2022-08-07 12:32:08.000" -"All-Star Fruit Racing - 0100C1F00A9B8000","0100C1F00A9B8000","status-playable;nvdec;UE4","playable","2022-07-21 00:35:37.000" -"Armello","","nvdec;status-playable","playable","2021-01-07 11:43:26.000" -"DOOM 64","","nvdec;status-playable;vulkan","playable","2020-10-13 23:47:28.000" -"Motto New Pazzmatsu-san Shimpin Sotsugyo Keikaku","","","","2020-03-20 14:53:55.000" -"Refreshing Sideways Puzzle Ghost Hammer","","status-playable","playable","2020-10-18 12:08:54.000" -"Astebreed - 010057A00C1F6000","010057A00C1F6000","status-playable","playable","2022-07-21 17:33:54.000" -"ASCENDANCE","","status-playable","playable","2021-01-05 10:54:40.000" -"Astral Chain - 01007300020FA000","01007300020FA000","status-playable","playable","2024-07-17 18:02:19.000" -"Oceanhorn","","status-playable","playable","2021-01-05 13:55:22.000" -"NORTH","","nvdec;status-playable","playable","2021-01-05 16:17:44.000" -"No Heroes Here","","online;status-playable","playable","2020-05-10 02:41:57.000" -"New Frontier Days -Founding Pioneers-","","status-playable","playable","2020-12-10 12:45:07.000" -"Star Ghost","","","","2020-03-20 23:40:10.000" -"Stern Pinball Arcade - 0100AE0006474000","0100AE0006474000","status-playable","playable","2022-08-16 14:24:41.000" -"Nightmare Boy","","status-playable","playable","2021-01-05 15:52:29.000" -"Pinball FX3 - 0100DB7003828000","0100DB7003828000","status-playable;online-broken","playable","2022-11-11 23:49:07.000" -"Polygod - 010017600B180000","010017600B180000","slow;status-ingame;regression","ingame","2022-08-10 14:38:14.000" -"Prison Architect - 010029200AB1C000","010029200AB1C000","status-playable","playable","2021-04-10 12:27:58.000" -"Psikyo Collection Vol 1","","32-bit;status-playable","playable","2020-10-11 13:18:47.000" -"Raging Justice - 01003D00099EC000","01003D00099EC000","status-playable","playable","2021-06-03 14:06:50.000" -"Old School Racer 2","","status-playable","playable","2020-10-19 12:11:26.000" -"Death Road to Canada - 0100423009358000","0100423009358000","gpu;audio;status-nothing;32-bit;crash","nothing","2023-06-28 15:39:26.000" -"Feather - 0100E4300CB3E000","0100E4300CB3E000","status-playable","playable","2021-06-03 14:11:27.000" -"Laser Kitty Pow Pow","","","","2020-03-21 23:44:13.000" -"Bad Dudes","","status-playable","playable","2020-12-10 12:30:56.000" -"Bomber Crew - 01007900080B6000","01007900080B6000","status-playable","playable","2021-06-03 14:21:28.000" -"Death Squared","","status-playable","playable","2020-12-04 13:00:15.000" -"PAC-MAN CHAMPIONSHIP EDITION 2 PLUS","","status-playable","playable","2021-01-19 22:06:18.000" -"RollerCoaster Tycoon Adventures","","nvdec;status-playable","playable","2021-01-05 18:14:18.000" -"STAY - 0100616009082000","0100616009082000","crash;services;status-boots","boots","2021-04-23 14:24:52.000" -"STRIKERS1945 for Nintendo Switch - 0100FF5005B76000","0100FF5005B76000","32-bit;status-playable","playable","2021-06-03 19:35:04.000" -"STRIKERS1945II for Nintendo Switch - 0100720008ED2000","0100720008ED2000","32-bit;status-playable","playable","2021-06-03 19:43:00.000" -"BLEED","","","","2020-03-22 09:15:11.000" -"Earthworms Demo","","status-playable","playable","2021-01-05 16:57:11.000" -"MEMBRANE","","","","2020-03-22 10:25:32.000" -"Mercenary Kings","","online;status-playable","playable","2020-10-16 13:05:58.000" -"Morphite","","status-playable","playable","2021-01-05 19:40:55.000" -"Spiral Splatter","","status-playable","playable","2020-06-04 14:03:57.000" -"Odium to the Core","","gpu;status-ingame","ingame","2021-01-08 14:03:52.000" -"Brawl","","nvdec;slow;status-playable","playable","2020-06-04 14:23:18.000" -"Defunct","","status-playable","playable","2021-01-08 21:33:46.000" -"Dracula's Legacy","","nvdec;status-playable","playable","2020-12-10 13:24:25.000" -"Submerged - 0100EDA00D866000","0100EDA00D866000","status-playable;nvdec;UE4;vulkan-backend-bug","playable","2022-08-16 15:17:01.000" -"Resident Evil Revelations - 0100643002136000","0100643002136000","status-playable;nvdec;ldn-untested","playable","2022-08-11 12:44:19.000" -"Pokémon: Let's Go, Pikachu! - 010003F003A34000","010003F003A34000","status-ingame;crash;nvdec;online-broken;ldn-broken","ingame","2024-03-15 07:55:41.000" -"Syberia 1 & 2 - 01004BB00421E000","01004BB00421E000","status-playable","playable","2021-12-24 12:06:25.000" -"Light Fall","","nvdec;status-playable","playable","2021-01-18 14:55:36.000" -"PLANET ALPHA","","UE4;gpu;status-ingame","ingame","2020-12-16 14:42:20.000" -"Game Doraemon Nobita no Shin Kyoryu - 01006BD00F8C0000","01006BD00F8C0000","gpu;status-ingame","ingame","2023-02-27 02:03:28.000" -"Shift Happens","","status-playable","playable","2021-01-05 21:24:18.000" -"SENRAN KAGURA Peach Ball - 0100D1800D902000","0100D1800D902000","status-playable","playable","2021-06-03 15:12:10.000" -"Shadow Bug","","","","2020-03-23 20:26:08.000" -"Dandy Dungeon: Legend of Brave Yamada","","status-playable","playable","2021-01-06 09:48:47.000" -"Scribblenauts Mega Pack","","nvdec;status-playable","playable","2020-12-17 22:56:14.000" -"Scribblenauts Showdown","","gpu;nvdec;status-ingame","ingame","2020-12-17 23:05:53.000" -"Super Chariot - 010065F004E5E000","010065F004E5E000","status-playable","playable","2021-06-03 13:19:01.000" -"Table Top Racing World Tour Nitro Edition","","status-playable","playable","2020-04-05 23:21:30.000" -"The Pinball Arcade - 0100CD300880E000","0100CD300880E000","status-playable;online-broken","playable","2022-08-22 19:49:46.000" -"The Room - 010079400BEE0000","010079400BEE0000","status-playable","playable","2021-04-14 18:57:05.000" -"The Binding of Isaac: Afterbirth+ - 010021C000B6A000","010021C000B6A000","status-playable","playable","2021-04-26 14:11:56.000" -"World Soccer Pinball","","status-playable","playable","2021-01-06 00:37:02.000" -"ZOMBIE GOLD RUSH","","online;status-playable","playable","2020-09-24 12:56:08.000" -"Wondershot - 0100F5D00C812000","0100F5D00C812000","status-playable","playable","2022-08-31 21:05:31.000" -"Yet Another Zombie Defense HD","","status-playable","playable","2021-01-06 00:18:39.000" -"Among the Sleep - Enhanced Edition - 010046500C8D2000","010046500C8D2000","nvdec;status-playable","playable","2021-06-03 15:06:25.000" -"Silence - 0100F1400B0D6000","0100F1400B0D6000","nvdec;status-playable","playable","2021-06-03 14:46:17.000" -"A Robot Named Fight","","","","2020-03-24 19:27:39.000" -"60 Seconds! - 0100969005E98000","0100969005E98000","services;status-ingame","ingame","2021-11-30 01:04:14.000" -"Xenon Racer - 010028600BA16000","010028600BA16000","status-playable;nvdec;UE4","playable","2022-08-31 22:05:30.000" -"Awesome Pea","","status-playable","playable","2020-10-11 12:39:23.000" -"Woodle Tree 2","","gpu;slow;status-ingame","ingame","2020-06-04 18:44:00.000" -"Volgarr the Viking","","status-playable","playable","2020-12-18 15:25:50.000" -"VVVVVV","","","","2020-03-24 21:53:29.000" -"Vegas Party - 01009CD003A0A000","01009CD003A0A000","status-playable","playable","2021-04-14 19:21:41.000" -"Worms W.M.D - 01001AE005166000","01001AE005166000","gpu;status-boots;crash;nvdec;ldn-untested","boots","2023-09-16 21:42:59.000" -"Ambition of the Slimes","","","","2020-03-24 22:46:18.000" -"WINDJAMMERS","","online;status-playable","playable","2020-10-13 11:24:25.000" -"WarGroove - 01000F0002BB6000","01000F0002BB6000","status-playable;online-broken","playable","2022-08-31 10:30:45.000" -"Car Mechanic Manager","","status-playable","playable","2020-07-23 18:50:17.000" -"Cattails - 010004400B28A000","010004400B28A000","status-playable","playable","2021-06-03 14:36:57.000" -"Chameleon Run Deluxe Edition","","","","2020-03-25 00:20:21.000" -"ClusterPuck 99","","status-playable","playable","2021-01-06 00:28:12.000" -"Coloring Book - 0100A7000BD28000","0100A7000BD28000","status-playable","playable","2022-07-22 11:17:05.000" -"Crashlands - 010027100BD16000","010027100BD16000","status-playable","playable","2021-05-27 20:30:06.000" -"Crimsonland - 01005640080B0000","01005640080B0000","status-playable","playable","2021-05-27 20:50:54.000" -"Cubikolor","","","","2020-03-25 00:39:17.000" -"My Friend Pedro: Blood Bullets Bananas - 010031200B94C000","010031200B94C000","nvdec;status-playable","playable","2021-05-28 11:19:17.000" -"VA-11 HALL-A - 0100A6700D66E000","0100A6700D66E000","status-playable","playable","2021-02-26 15:05:34.000" -"Octodad Dadliest Catch - 0100CAB006F54000","0100CAB006F54000","crash;status-boots","boots","2021-04-23 15:26:12.000" -"Neko Navy: Daydream Edition","","","","2020-03-25 10:11:47.000" -"Neon Chrome - 010075E0047F8000","010075E0047F8000","status-playable","playable","2022-08-06 18:38:34.000" -"NeuroVoider","","status-playable","playable","2020-06-04 18:20:05.000" -"Ninjin: Clash of Carrots - 010003C00B868000","010003C00B868000","status-playable;online-broken","playable","2024-07-10 05:12:26.000" -"Nuclien","","status-playable","playable","2020-05-10 05:32:55.000" -"Number Place 10000 - 010020500C8C8000","010020500C8C8000","gpu;status-menus","menus","2021-11-24 09:14:23.000" -"Octocopter: Double or Squids","","status-playable","playable","2021-01-06 01:30:16.000" -"Odallus - 010084300C816000","010084300C816000","status-playable","playable","2022-08-08 12:37:58.000" -"One Eyed Kutkh","","","","2020-03-25 11:42:58.000" -"One More Dungeon","","status-playable","playable","2021-01-06 09:10:58.000" -"1-2-Switch - 01000320000CC000","01000320000CC000","services;status-playable","playable","2022-02-18 14:44:03.000" -"ACA NEOGEO AERO FIGHTERS 2 - 0100AC40038F4000","0100AC40038F4000","online;status-playable","playable","2021-04-08 15:44:09.000" -"Captain Toad: Treasure Tracker - 01009BF0072D4000","01009BF0072D4000","32-bit;status-playable","playable","2024-04-25 00:50:16.000" -"Vaccine","","nvdec;status-playable","playable","2021-01-06 01:02:07.000" -"Carnival Games - 010088C0092FE000","010088C0092FE000","status-playable;nvdec","playable","2022-07-21 21:01:22.000" -"OLYMPIC GAMES TOKYO 2020","","ldn-untested;nvdec;online;status-playable","playable","2021-01-06 01:20:24.000" -"Yodanji","","","","2020-03-25 16:28:53.000" -"Axiom Verge","","status-playable","playable","2020-10-20 01:07:18.000" -"Blaster Master Zero - 0100225000FEE000","0100225000FEE000","32-bit;status-playable","playable","2021-03-05 13:22:33.000" -"SamuraiAces for Nintendo Switch","","32-bit;status-playable","playable","2020-11-24 20:26:55.000" -"Rogue Aces - 0100EC7009348000","0100EC7009348000","gpu;services;status-ingame;nvdec","ingame","2021-11-30 02:18:30.000" -"Pokémon HOME","","Needs Update;crash;services;status-menus","menus","2020-12-06 06:01:51.000" -"Safety First!","","status-playable","playable","2021-01-06 09:05:23.000" -"3D MiniGolf","","status-playable","playable","2021-01-06 09:22:11.000" -"DOUBLE DRAGON4","","","","2020-03-25 23:46:46.000" -"Don't Die Mr. Robot DX - 010007200AC0E000","010007200AC0E000","status-playable;nvdec","playable","2022-09-02 18:34:38.000" -"DERU - The Art of Cooperation","","status-playable","playable","2021-01-07 16:59:59.000" -"Darts Up - 0100BA500B660000","0100BA500B660000","status-playable","playable","2021-04-14 17:22:22.000" -"Deponia - 010023600C704000","010023600C704000","nvdec;status-playable","playable","2021-01-26 17:17:19.000" -"Devious Dungeon - 01009EA00A320000","01009EA00A320000","status-playable","playable","2021-03-04 13:03:06.000" -"Turok - 010085500D5F6000","010085500D5F6000","gpu;status-ingame","ingame","2021-06-04 13:16:24.000" -"Toast Time: Smash Up!","","crash;services;status-menus","menus","2020-04-03 12:26:59.000" -"The VideoKid","","nvdec;status-playable","playable","2021-01-06 09:28:24.000" -"Timberman VS","","","","2020-03-26 14:18:29.000" -"Time Recoil - 0100F770045CA000","0100F770045CA000","status-playable","playable","2022-08-24 12:44:03.000" -"Toby: The Secret Mine","","nvdec;status-playable","playable","2021-01-06 09:22:33.000" -"Toki Tori","","","","2020-03-26 14:49:54.000" -"Totes the Goat","","","","2020-03-26 14:55:00.000" -"Twin Robots: Ultimate Edition - 0100047009742000","0100047009742000","status-playable;nvdec","playable","2022-08-25 14:24:03.000" -"Ultimate Runner - 010045200A1C2000","010045200A1C2000","status-playable","playable","2022-08-29 12:52:40.000" -"UnExplored - Unlocked Edition","","status-playable","playable","2021-01-06 10:02:16.000" -"Unepic - 01008F80049C6000","01008F80049C6000","status-playable","playable","2024-01-15 17:03:00.000" -"Uncanny Valley - 01002D900C5E4000","01002D900C5E4000","nvdec;status-playable","playable","2021-06-04 13:28:45.000" -"Ultra Hyperball","","status-playable","playable","2021-01-06 10:09:55.000" -"Timespinner - 0100DD300CF3A000","0100DD300CF3A000","gpu;status-ingame","ingame","2022-08-09 09:39:11.000" -"Tiny Barbarian DX","","","","2020-03-26 18:46:29.000" -"TorqueL -Physics Modified Edition-","","","","2020-03-26 18:55:23.000" -"Unholy Heights","","","","2020-03-26 19:03:43.000" -"Uurnog Uurnlimited","","","","2020-03-26 19:34:02.000" -"de Blob 2","","nvdec;status-playable","playable","2021-01-06 13:00:16.000" -"The Trail: Frontier Challenge - 0100B0E0086F6000","0100B0E0086F6000","slow;status-playable","playable","2022-08-23 15:10:51.000" -"Toy Stunt Bike: Tiptop's Trials - 01009FF00A160000","01009FF00A160000","UE4;status-playable","playable","2021-04-10 13:56:34.000" -"TumbleSeed","","","","2020-03-26 21:27:06.000" -"Type:Rider","","status-playable","playable","2021-01-06 13:12:55.000" -"Dawn of the Breakers - 0100F0B0081DA000","0100F0B0081DA000","status-menus;online-broken;vulkan-backend-bug","menus","2022-12-08 14:40:03.000" -"Thumper - 01006F6002840000","01006F6002840000","gpu;status-ingame","ingame","2024-08-12 02:41:07.000" -"Revenge of Justice - 010027400F708000 ","010027400F708000","status-playable;nvdec","playable","2022-11-20 15:43:23.000" -"Dead Synchronicity: Tomorrow Comes Today","","","","2020-03-26 23:13:28.000" -"Them Bombs","","","","2020-03-27 12:46:15.000" -"Alwa's Awakening","","status-playable","playable","2020-10-13 11:52:01.000" -"La Mulana 2 - 010038000F644000","010038000F644000","status-playable","playable","2022-09-03 13:45:57.000" -"Tied Together - 0100B6D00C2DE000","0100B6D00C2DE000","nvdec;status-playable","playable","2021-04-10 14:03:46.000" -"Magic Scroll Tactics","","","","2020-03-27 14:00:41.000" -"SeaBed","","status-playable","playable","2020-05-17 13:25:37.000" -"Wenjia","","status-playable","playable","2020-06-08 11:38:30.000" -"DragonBlaze for Nintendo Switch","","32-bit;status-playable","playable","2020-10-14 11:11:28.000" -"Debris Infinity - 010034F00BFC8000","010034F00BFC8000","nvdec;online;status-playable","playable","2021-05-28 12:14:39.000" -"Die for Valhalla!","","status-playable","playable","2021-01-06 16:09:14.000" -"Double Cross","","status-playable","playable","2021-01-07 15:34:22.000" -"Deep Ones","","services;status-nothing","nothing","2020-04-03 02:54:19.000" -"One Step to Eden","","","","2020-03-27 16:31:39.000" -"Bravely Default II Demo - 0100B6801137E000","0100B6801137E000","gpu;status-ingame;crash;UE4;demo","ingame","2022-09-27 05:39:47.000" -"Prison Princess - 0100F4800F872000","0100F4800F872000","status-playable","playable","2022-11-20 15:00:25.000" -"NinNinDays - 0100746010E4C000","0100746010E4C000","status-playable","playable","2022-11-20 15:17:29.000" -"Syrup and the Ultimate Sweet","","","","2020-03-27 21:10:42.000" -"Touhou Gensou Mahjong","","","","2020-03-27 21:36:20.000" -"Shikhondo Soul Eater","","","","2020-03-27 22:14:23.000" -" de Shooting wa Machigatteiru Daroka","","","","2020-03-27 22:27:54.000" -"MY HERO ONE'S JUSTICE","","UE4;crash;gpu;online;status-menus","menus","2020-12-10 13:11:04.000" -"Heaven Dust","","status-playable","playable","2020-05-17 14:02:41.000" -"Touhou Sky Arena matsuri climax","","","","2020-03-28 00:25:17.000" -"Mercenaries Wings The False Phoenix","","crash;services;status-nothing","nothing","2020-05-08 22:42:12.000" -"Don't Sink - 0100C4D00B608000","0100C4D00B608000","gpu;status-ingame","ingame","2021-02-26 15:41:11.000" -"Disease -Hidden Object-","","","","2020-03-28 08:17:51.000" -"Dexteritrip","","status-playable","playable","2021-01-06 12:51:12.000" -"Devil Engine - 010031B00CF66000","010031B00CF66000","status-playable","playable","2021-06-04 11:54:30.000" -"Detective Gallo - 01009C0009842000","01009C0009842000","status-playable;nvdec","playable","2022-07-24 11:51:04.000" -"Zettai kaikyu gakuen","","gpu;nvdec;status-ingame","ingame","2020-08-25 15:15:54.000" -"Demetrios - The BIG Cynical Adventure - 0100AB600ACB4000","0100AB600ACB4000","status-playable","playable","2021-06-04 12:01:01.000" -"Degrees of Separation","","status-playable","playable","2021-01-10 13:40:04.000" -"De Mambo - 01008E900471E000","01008E900471E000","status-playable","playable","2021-04-10 12:39:40.000" -"Death Mark","","status-playable","playable","2020-12-13 10:56:25.000" -"Deemo - 01002CC0062B8000","01002CC0062B8000","status-playable","playable","2022-07-24 11:34:33.000" -"Disgaea 5 Complete - 01005700031AE000","01005700031AE000","nvdec;status-playable","playable","2021-03-04 15:32:54.000" -"The World Ends With You -Final Remix- - 0100C1500B82E000","0100C1500B82E000","status-playable;ldn-untested","playable","2022-07-09 01:11:21.000" -"Don't Knock Twice - 0100E470067A8000","0100E470067A8000","status-playable","playable","2024-05-08 22:37:58.000" -"True Fear: Forsaken Souls - Part 1","","nvdec;status-playable","playable","2020-12-15 21:39:52.000" -"Disco Dodgeball Remix","","online;status-playable","playable","2020-09-28 23:24:49.000" -"Demon's Crystals - 0100A2B00BD88000","0100A2B00BD88000","status-nothing;crash;regression","nothing","2022-12-07 16:33:17.000" -"Dimension Drive","","","","2020-03-29 10:40:38.000" -"Tower of Babel","","status-playable","playable","2021-01-06 17:05:15.000" -"Disc Jam - 0100510004D2C000","0100510004D2C000","UE4;ldn-untested;nvdec;online;status-playable","playable","2021-04-08 16:40:35.000" -"DIABOLIK LOVERS CHAOS LINEAGE - 010027400BD24000","010027400BD24000","gpu;status-ingame;Needs Update","ingame","2023-06-08 02:20:44.000" -"Detention","","","","2020-03-29 11:17:35.000" -"Tumblestone","","status-playable","playable","2021-01-07 17:49:20.000" -"De Blob","","nvdec;status-playable","playable","2021-01-06 17:34:46.000" -"The Voice ","","services;status-menus","menus","2020-07-28 20:48:49.000" -"DESTINY CONNECT","","UE4;gpu;nvdec;status-ingame","ingame","2020-12-16 12:20:36.000" -"The Sexy Brutale","","status-playable","playable","2021-01-06 17:48:28.000" -"Unicornicopia","","","","2020-03-29 13:01:35.000" -"Ultra Space Battle Brawl","","","","2020-03-29 13:13:02.000" -"Unruly Heroes","","status-playable","playable","2021-01-07 18:09:31.000" -"UglyDolls: An Imperfect Adventure - 010079000B56C000","010079000B56C000","status-playable;nvdec;UE4","playable","2022-08-25 14:42:16.000" -"Use Your Words - 01007C0003AEC000","01007C0003AEC000","status-menus;nvdec;online-broken","menus","2022-08-29 17:22:10.000" -"New Super Lucky's Tale - 010017700B6C2000","010017700B6C2000","status-playable","playable","2024-03-11 14:14:10.000" -"Yooka-Laylee and the Impossible Lair - 010022F00DA66000","010022F00DA66000","status-playable","playable","2021-03-05 17:32:21.000" -"GRIS - 0100E1700C31C000","0100E1700C31C000","nvdec;status-playable","playable","2021-06-03 13:33:44.000" -"Monster Boy and the Cursed Kingdom - 01006F7001D10000","01006F7001D10000","status-playable;nvdec","playable","2022-08-04 20:06:32.000" -"Guns Gore and Cannoli 2","","online;status-playable","playable","2021-01-06 18:43:59.000" -"Mark of the Ninja Remastered - 01009A700A538000","01009A700A538000","status-playable","playable","2022-08-04 15:48:30.000" -"DOOM - 0100416004C00000","0100416004C00000","gpu;slow;status-ingame;nvdec;online-broken","ingame","2024-09-23 15:40:07.000" -"TINY METAL - 010074800741A000","010074800741A000","UE4;gpu;nvdec;status-ingame","ingame","2021-03-05 17:11:57.000" -"Shadowgate","","status-playable","playable","2021-04-24 07:32:57.000" -"R-Type Dimensions EX","","status-playable","playable","2020-10-09 12:04:43.000" -"Thea: The Awakening","","status-playable","playable","2021-01-18 15:08:47.000" -"Toki","","nvdec;status-playable","playable","2021-01-06 19:59:23.000" -"Superhot - 01001A500E8B4000","01001A500E8B4000","status-playable","playable","2021-05-05 19:51:30.000" -"Tools Up!","","crash;status-ingame","ingame","2020-07-21 12:58:17.000" -"The Stretchers - 0100AA400A238000","0100AA400A238000","status-playable;nvdec;UE4","playable","2022-09-16 15:40:58.000" -"Shantae: Half-Genie Hero Ultimate Edition","","status-playable","playable","2020-06-04 20:14:20.000" -"Monster Hunter Generation Ultimate - 0100770008DD8000","0100770008DD8000","32-bit;status-playable;online-broken;ldn-works","playable","2024-03-18 14:35:36.000" -"ATV Drift & Tricks - 01000F600B01E000","01000F600B01E000","UE4;online;status-playable","playable","2021-04-08 17:29:17.000" -"Metaloid: Origin","","status-playable","playable","2020-06-04 20:26:35.000" -"The Walking Dead: The Final Season - 010060F00AA70000","010060F00AA70000","status-playable;online-broken","playable","2022-08-23 17:22:32.000" -"Lyrica","","","","2020-03-31 10:09:40.000" -"Beat Cop","","status-playable","playable","2021-01-06 19:26:48.000" -"Broforce - 010060A00B53C000","010060A00B53C000","ldn-untested;online;status-playable","playable","2021-05-28 12:23:38.000" -"Ludo Mania","","crash;services;status-nothing","nothing","2020-04-03 00:33:47.000" -"The Way Remastered","","","","2020-03-31 10:34:26.000" -"Little Inferno","","32-bit;gpu;nvdec;status-ingame","ingame","2020-12-17 21:43:56.000" -"Toki Tori 2+","","","","2020-03-31 10:53:13.000" -"Bastion - 010038600B27E000","010038600B27E000","status-playable","playable","2022-02-15 14:15:24.000" -"Lovers in a Dangerous Spacetime","","","","2020-03-31 13:45:03.000" -"Back in 1995","","","","2020-03-31 13:52:35.000" -"Lost Phone Stories","","services;status-ingame","ingame","2020-04-05 23:17:33.000" -"The Walking Dead - 010029200B6AA000","010029200B6AA000","status-playable","playable","2021-06-04 13:10:56.000" -"Beyblade Burst Battle Zero - 010068600AD16000","010068600AD16000","services;status-menus;crash;Needs Update","menus","2022-11-20 15:48:32.000" -"Tiny Hands Adventure - 010061A00AE64000","010061A00AE64000","status-playable","playable","2022-08-24 16:07:48.000" -"My Time At Portia - 0100E25008E68000","0100E25008E68000","status-playable","playable","2021-05-28 12:42:55.000" -"NBA 2K Playgrounds 2 - 01001AE00C1B2000","01001AE00C1B2000","status-playable;nvdec;online-broken;UE4;vulkan-backend-bug","playable","2022-08-06 14:40:38.000" -"Valfaris - 010089700F30C000","010089700F30C000","status-playable","playable","2022-09-16 21:37:24.000" -"Wandersong - 0100F8A00853C000","0100F8A00853C000","nvdec;status-playable","playable","2021-06-04 15:33:34.000" -"Untitled Goose Game","","status-playable","playable","2020-09-26 13:18:06.000" -"Unbox: Newbie's Adventure - 0100592005164000","0100592005164000","status-playable;UE4","playable","2022-08-29 13:12:56.000" -"Trine 4: The Nightmare Prince - 010055E00CA68000","010055E00CA68000","gpu;status-nothing","nothing","2025-01-07 05:47:46.000" -"Travis Strikes Again: No More Heroes - 010011600C946000","010011600C946000","status-playable;nvdec;UE4","playable","2022-08-25 12:36:38.000" -"Bubble Bobble 4 Friends - 010010900F7B4000","010010900F7B4000","nvdec;status-playable","playable","2021-06-04 15:27:55.000" -"Bloodstained: Curse of the Moon","","status-playable","playable","2020-09-04 10:42:17.000" -"Unravel TWO - 0100E5D00CC0C000","0100E5D00CC0C000","status-playable;nvdec","playable","2024-05-23 15:45:05.000" -"Blazing Beaks","","status-playable","playable","2020-06-04 20:37:06.000" -"Moonlighter","","","","2020-04-01 12:52:32.000" -"Rock N' Racing Grand Prix","","status-playable","playable","2021-01-06 20:23:57.000" -"Blossom Tales - 0100C1000706C000","0100C1000706C000","status-playable","playable","2022-07-18 16:43:07.000" -"Maria The Witch","","","","2020-04-01 13:22:05.000" -"Runbow","","online;status-playable","playable","2021-01-08 22:47:44.000" -"Salt And Sanctuary","","status-playable","playable","2020-10-22 11:52:19.000" -"Bomb Chicken","","","","2020-04-01 13:52:21.000" -"Typoman","","","","2020-04-01 14:01:55.000" -"BOX Align","","crash;services;status-nothing","nothing","2020-04-03 17:26:56.000" -"Bridge Constructor Portal","","","","2020-04-01 14:59:34.000" -"METAGAL","","status-playable","playable","2020-06-05 00:05:48.000" -"Severed","","status-playable","playable","2020-12-15 21:48:48.000" -"Bombslinger - 010087300445A000","010087300445A000","services;status-menus","menus","2022-07-19 12:53:15.000" -"ToeJam & Earl: Back in the Groove","","status-playable","playable","2021-01-06 22:56:58.000" -"SHIFT QUANTUM","","UE4;crash;status-ingame","ingame","2020-11-06 21:54:08.000" -"Mana Spark","","status-playable","playable","2020-12-10 13:41:01.000" -"BOOST BEAST","","","","2020-04-01 22:07:28.000" -"Bass Pro Shops: The Strike - Championship Edition - 0100E3100450E000","0100E3100450E000","gpu;status-boots;32-bit","boots","2022-12-09 15:58:16.000" -"Semispheres","","status-playable","playable","2021-01-06 23:08:31.000" -"Megaton Rainfall - 010005A00B312000","010005A00B312000","gpu;status-boots;opengl","boots","2022-08-04 18:29:43.000" -"Romancing SaGa 2 - 01001F600829A000","01001F600829A000","status-playable","playable","2022-08-12 12:02:24.000" -"Runner3","","","","2020-04-02 12:58:46.000" -"Shakedown: Hawaii","","status-playable","playable","2021-01-07 09:44:36.000" -"Minit","","","","2020-04-02 13:15:45.000" -"Little Nightmares - 01002FC00412C000","01002FC00412C000","status-playable;nvdec;UE4","playable","2022-08-03 21:45:35.000" -"Shephy","","","","2020-04-02 13:33:44.000" -"Millie - 0100976008FBE000","0100976008FBE000","status-playable","playable","2021-01-26 20:47:19.000" -"Bloodstained: Ritual of the Night - 010025A00DF2A000","010025A00DF2A000","status-playable;nvdec;UE4","playable","2022-07-18 14:27:35.000" -"Shape Of The World - 0100B250009B96000","0100B250009B9600","UE4;status-playable","playable","2021-03-05 16:42:28.000" -"Bendy and the Ink Machine - 010074500BBC4000","010074500BBC4000","status-playable","playable","2023-05-06 20:35:39.000" -"Brothers: A Tale of Two Sons - 01000D500D08A000","01000D500D08A000","status-playable;nvdec;UE4","playable","2022-07-19 14:02:22.000" -"Raging Loop","","","","2020-04-03 12:29:28.000" -"A Hat In Time - 010056E00853A000","010056E00853A000","status-playable","playable","2024-06-25 19:52:44.000" -"Cooking Mama: Cookstar - 010060700EFBA000","010060700EFBA000","status-menus;crash;loader-allocator","menus","2021-11-20 03:19:35.000" -"Marble Power Blast - 01008E800D1FE000","01008E800D1FE000","status-playable","playable","2021-06-04 16:00:02.000" -"NARUTO™: Ultimate Ninja® STORM - 0100715007354000","0100715007354000","status-playable;nvdec","playable","2022-08-06 14:10:31.000" -"Oddmar","","","","2020-04-04 20:46:28.000" -"BLEED 2","","","","2020-04-05 11:29:05.000" -"Sea King - 0100E4A00D066000","0100E4A00D066000","UE4;nvdec;status-playable","playable","2021-06-04 15:49:22.000" -"Sausage Sports Club","","gpu;status-ingame","ingame","2021-01-10 05:37:17.000" -"Mini Metro","","","","2020-04-05 11:55:19.000" -"Mega Mall Story - 0100BBC00CB9A000","0100BBC00CB9A000","slow;status-playable","playable","2022-08-04 17:10:58.000" -"BILLIARD","","","","2020-04-05 13:41:11.000" -"The Wardrobe","","","","2020-04-05 13:53:33.000" -"LITTLE FRIENDS -DOGS & CATS-","","status-playable","playable","2020-11-12 12:45:51.000" -"LOST SPHEAR","","status-playable","playable","2021-01-10 06:01:21.000" -"Morphies Law","","UE4;crash;ldn-untested;nvdec;online;status-menus","menus","2020-11-22 17:05:29.000" -"Mercenaries Saga Chronicles","","status-playable","playable","2021-01-10 12:48:19.000" -"The Swindle - 010040D00B7CE000","010040D00B7CE000","status-playable;nvdec","playable","2022-08-22 20:53:52.000" -"Monster Energy Supercross - The Official Videogame - 0100742007266000","0100742007266000","status-playable;nvdec;UE4","playable","2022-08-04 20:25:00.000" -"Monster Energy Supercross - The Official Videogame 2 - 0100F8100B982000","0100F8100B982000","status-playable;nvdec;UE4;ldn-untested","playable","2022-08-04 21:21:24.000" -"Lumo - 0100FF00042EE000","0100FF00042EE000","status-playable;nvdec","playable","2022-02-11 18:20:30.000" -"Monopoly for Nintendo Switch - 01007430037F6000","01007430037F6000","status-playable;nvdec;online-broken","playable","2024-02-06 23:13:01.000" -"Mantis Burn Racing - 0100E98002F6E000","0100E98002F6E000","status-playable;online-broken;ldn-broken","playable","2024-09-02 02:13:04.000" -"Moorhuhn Remake","","","","2020-04-05 19:22:41.000" -"Lovecraft's Untold Stories","","","","2020-04-05 19:31:15.000" -"Moonfall Ultimate","","nvdec;status-playable","playable","2021-01-17 14:01:25.000" -"Max: The Curse Of Brotherhood - 01001C9007614000","01001C9007614000","status-playable;nvdec","playable","2022-08-04 16:33:04.000" -"Manticore - Galaxy on Fire - 0100C9A00952A000","0100C9A00952A000","status-boots;crash;nvdec","boots","2024-02-04 04:37:24.000" -"The Shapeshifting Detective","","nvdec;status-playable","playable","2021-01-10 13:10:49.000" -"Mom Hid My Game!","","","","2020-04-06 11:32:10.000" -"Meow Motors","","UE4;gpu;status-ingame","ingame","2020-12-18 00:24:01.000" -"Mahjong Solitaire Refresh - 01008C300B624000","01008C300B624000","status-boots;crash","boots","2022-12-09 12:02:55.000" -"Lucah: Born of a Dream","","","","2020-04-06 12:11:01.000" -"Moon Hunters","","","","2020-04-06 12:35:17.000" -"Mad Carnage","","status-playable","playable","2021-01-10 13:00:07.000" -"Monument Builders Rushmore","","","","2020-04-06 13:49:35.000" -"Lost Sea","","","","2020-04-06 14:08:14.000" -"Mahjong Deluxe 3","","","","2020-04-06 14:13:32.000" -"MONSTER JAM CRUSH IT!™ - 010088400366E000","010088400366E000","UE4;nvdec;online;status-playable","playable","2021-04-08 19:29:27.000" -"Midnight Deluxe","","","","2020-04-06 14:33:34.000" -"Metropolis: Lux Obscura","","","","2020-04-06 14:47:15.000" -"Lode Runner Legacy","","status-playable","playable","2021-01-10 14:10:28.000" -"Masters of Anima - 0100CC7009196000","0100CC7009196000","status-playable;nvdec","playable","2022-08-04 16:00:09.000" -"Monster Dynamite","","","","2020-04-06 17:55:14.000" -"The Warlock of Firetop Mountain","","","","2020-04-06 21:44:13.000" -"Mecho Tales - 0100C4F005EB4000","0100C4F005EB4000","status-playable","playable","2022-08-04 17:03:19.000" -"Titan Quest - 0100605008268000","0100605008268000","status-playable;nvdec;online-broken","playable","2022-08-19 21:54:15.000" -"This Is the Police - 0100066004D68000","0100066004D68000","status-playable","playable","2022-08-24 11:37:05.000" -"Miles & Kilo","","status-playable","playable","2020-10-22 11:39:49.000" -"This War of Mine: Complete Edition - 0100A8700BC2A000","0100A8700BC2A000","gpu;status-ingame;32-bit;nvdec","ingame","2022-08-24 12:00:44.000" -"Transistor","","status-playable","playable","2020-10-22 11:28:02.000" -"Momodora: Revere Under the Moonlight - 01004A400C320000","01004A400C320000","deadlock;status-nothing","nothing","2022-02-06 03:47:43.000" -"Monster Puzzle","","status-playable","playable","2020-09-28 22:23:10.000" -"Tiny Troopers Joint Ops XL","","","","2020-04-07 12:30:46.000" -"This Is the Police 2 - 01004C100A04C000","01004C100A04C000","status-playable","playable","2022-08-24 11:49:17.000" -"Trials Rising - 01003E800A102000","01003E800A102000","status-playable","playable","2024-02-11 01:36:39.000" -"Mainlining","","status-playable","playable","2020-06-05 01:02:00.000" -"Treadnauts","","status-playable","playable","2021-01-10 14:57:41.000" -"Treasure Stack","","","","2020-04-07 13:27:32.000" -"Monkey King: Master of the Clouds","","status-playable","playable","2020-09-28 22:35:48.000" -"Trailblazers - 0100BCA00843A000","0100BCA00843A000","status-playable","playable","2021-03-02 20:40:49.000" -"Stardew Valley - 0100E65002BB8000","0100E65002BB8000","status-playable;online-broken;ldn-untested","playable","2024-02-14 03:11:19.000" -"TT Isle of Man","","nvdec;status-playable","playable","2020-06-22 12:25:13.000" -"Truberbrook - 0100E6300D448000","0100E6300D448000","status-playable","playable","2021-06-04 17:08:00.000" -"Troll and I - 0100F78002040000","0100F78002040000","gpu;nvdec;status-ingame","ingame","2021-06-04 16:58:50.000" -"Rock 'N Racing Off Road DX","","status-playable","playable","2021-01-10 15:27:15.000" -"Touhou Genso Wanderer RELOADED - 01004E900B082000","01004E900B082000","gpu;status-ingame;nvdec","ingame","2022-08-25 11:57:36.000" -"Splasher","","","","2020-04-08 11:02:41.000" -"Rogue Trooper Redux - 01001CC00416C000","01001CC00416C000","status-playable;nvdec;online-broken","playable","2022-08-12 11:53:01.000" -"Semblance","","","","2020-04-08 11:22:11.000" -"Saints Row: The Third - The Full Package - 0100DE600BEEE000","0100DE600BEEE000","slow;status-playable;LAN","playable","2023-08-24 02:40:58.000" -"SEGA AGES PHANTASY STAR","","status-playable","playable","2021-01-11 12:49:48.000" -"SEGA AGES SPACE HARRIER","","status-playable","playable","2021-01-11 12:57:40.000" -"SEGA AGES OUTRUN","","status-playable","playable","2021-01-11 13:13:59.000" -"Schlag den Star - 0100ACB004006000","0100ACB004006000","slow;status-playable;nvdec","playable","2022-08-12 14:28:22.000" -"Serial Cleaner","","","","2020-04-08 15:26:22.000" -"Rotating Brave","","","","2020-04-09 12:25:59.000" -"SteamWorld Quest","","nvdec;status-playable","playable","2020-11-09 13:10:04.000" -"Shaq Fu: A Legend Reborn","","","","2020-04-09 13:24:32.000" -"Season Match Bundle - Part 1 and 2","","status-playable","playable","2021-01-11 13:28:23.000" -"Bulb Boy","","","","2020-04-09 16:22:39.000" -"SteamWorld Dig - 01009320084A4000","01009320084A4000","status-playable","playable","2024-08-19 12:12:23.000" -"Shadows of Adam","","status-playable","playable","2021-01-11 13:35:58.000" -"Battle Princess Madelyn","","status-playable","playable","2021-01-11 13:47:23.000" -"Shiftlings - 01000750084B2000","01000750084B2000","nvdec;status-playable","playable","2021-03-04 13:49:54.000" -"Save the Ninja Clan","","status-playable","playable","2021-01-11 13:56:37.000" -"SteamWorld Heist: Ultimate Edition","","","","2020-04-10 11:21:15.000" -"Battle Chef Brigade","","status-playable","playable","2021-01-11 14:16:28.000" -"Shelter Generations - 01009EB004CB0000","01009EB004CB0000","status-playable","playable","2021-06-04 16:52:39.000" -"Bow to Blood: Last Captain Standing","","slow;status-playable","playable","2020-10-23 10:51:21.000" -"Samsara","","status-playable","playable","2021-01-11 15:14:12.000" -"Touhou Kobuto V: Burst Battle","","status-playable","playable","2021-01-11 15:28:58.000" -"Screencheat","","","","2020-04-10 13:16:02.000" -"BlobCat - 0100F3500A20C000","0100F3500A20C000","status-playable","playable","2021-04-23 17:09:30.000" -"SteamWorld Dig 2 - 0100CA9002322000","0100CA9002322000","status-playable","playable","2022-12-21 19:25:42.000" -"She Remembered Caterpillars - 01004F50085F2000","01004F50085F2000","status-playable","playable","2022-08-12 17:45:14.000" -"Broken Sword 5 - the Serpent's Curse - 01001E60085E6000","01001E60085E6000","status-playable","playable","2021-06-04 17:28:59.000" -"Banner Saga 3","","slow;status-boots","boots","2021-01-11 16:53:57.000" -"Stranger Things 3: The Game","","status-playable","playable","2021-01-11 17:44:09.000" -"Blades of Time - 0100CFA00CC74000","0100CFA00CC74000","deadlock;status-boots;online","boots","2022-07-17 19:19:58.000" -"BLAZBLUE CENTRALFICTION Special Edition","","nvdec;status-playable","playable","2020-12-15 23:50:04.000" -"Brawlout - 010060200A4BE000","010060200A4BE000","ldn-untested;online;status-playable","playable","2021-06-04 17:35:35.000" -"Bouncy Bob","","","","2020-04-10 16:45:27.000" -"Broken Age - 0100EDD0068A6000","0100EDD0068A6000","status-playable","playable","2021-06-04 17:40:32.000" -"Attack on Titan 2","","status-playable","playable","2021-01-04 11:40:01.000" -"Battle Worlds: Kronos - 0100DEB00D5A8000","0100DEB00D5A8000","nvdec;status-playable","playable","2021-06-04 17:48:02.000" -"BLADE ARCUS Rebellion From Shining - 0100C4400CB7C000","0100C4400CB7C000","status-playable","playable","2022-07-17 18:52:28.000" -"Away: Journey to the Unexpected - 01002F1005F3C000","01002F1005F3C000","status-playable;nvdec;vulkan-backend-bug","playable","2022-11-06 15:31:04.000" -"Batman: The Enemy Within","","crash;status-nothing","nothing","2020-10-16 05:49:27.000" -"Batman - The Telltale Series","","nvdec;slow;status-playable","playable","2021-01-11 18:19:35.000" -"Big Crown: Showdown - 010088100C35E000","010088100C35E000","status-menus;nvdec;online;ldn-untested","menus","2022-07-17 18:25:32.000" -"Strike Suit Zero: Director's Cut - 010072500D52E000","010072500D52E000","crash;status-boots","boots","2021-04-23 17:15:14.000" -"Black Paradox","","","","2020-04-11 12:13:22.000" -"Spelunker Party! - 010021F004270000","010021F004270000","services;status-boots","boots","2022-08-16 11:25:49.000" -"OK K.O.! Let's Play Heroes","","nvdec;status-playable","playable","2021-01-11 18:41:02.000" -"Steredenn","","status-playable","playable","2021-01-13 09:19:42.000" -"State of Mind","","UE4;crash;status-boots","boots","2020-06-22 22:17:50.000" -"Bloody Zombies","","","","2020-04-11 18:23:57.000" -"MudRunner - American Wilds - 01009D200952E000","01009D200952E000","gpu;status-ingame;ldn-untested;vulkan-backend-bug;opengl-backend-bug","ingame","2022-08-16 11:40:52.000" -"Big Buck Hunter Arcade","","nvdec;status-playable","playable","2021-01-12 20:31:39.000" -"Sparkle 2 Evo","","","","2020-04-11 18:48:19.000" -"Brave Dungeon + Dark Witch's Story: COMBAT","","status-playable","playable","2021-01-12 21:06:34.000" -"BAFL","","status-playable","playable","2021-01-13 08:32:51.000" -"Steamburg","","status-playable","playable","2021-01-13 08:42:01.000" -"Splatoon 2 - 01003BC0000A0000","01003BC0000A0000","status-playable;ldn-works;LAN","playable","2024-07-12 19:11:15.000" -"Blade Strangers - 01005950022EC000","01005950022EC000","status-playable;nvdec","playable","2022-07-17 19:02:43.000" -"Sports Party - 0100DE9005170000","0100DE9005170000","nvdec;status-playable","playable","2021-03-05 13:40:42.000" -"Banner Saga","","","","2020-04-12 14:06:23.000" -"Banner Saga 2","","crash;status-boots","boots","2021-01-13 08:56:09.000" -"Hand of Fate 2 - 01003620068EA000","01003620068EA000","status-playable","playable","2022-08-01 15:44:16.000" -"State of Anarchy: Master of Mayhem","","nvdec;status-playable","playable","2021-01-12 19:00:05.000" -"Sphinx and the Cursed Mummy™ - 0100BD500BA94000","0100BD500BA94000","gpu;status-ingame;32-bit;opengl","ingame","2024-05-20 06:00:51.000" -"Risk - 0100E8300A67A000","0100E8300A67A000","status-playable;nvdec;online-broken","playable","2022-08-01 18:53:28.000" -"Baseball Riot - 01004860080A0000","01004860080A0000","status-playable","playable","2021-06-04 18:07:27.000" -"Spartan - 0100E6A009A26000","0100E6A009A26000","UE4;nvdec;status-playable","playable","2021-03-05 15:53:19.000" -"Halloween Pinball","","status-playable","playable","2021-01-12 16:00:46.000" -"Streets of Red : Devil's Dare Deluxe","","","","2020-04-12 18:08:29.000" -"Spider Solitaire F","","","","2020-04-12 20:26:44.000" -"Starship Avenger Operation: Take Back Earth","","status-playable","playable","2021-01-12 15:52:55.000" -"Battle Chasers: Nightwar","","nvdec;slow;status-playable","playable","2021-01-12 12:27:34.000" -"Infinite Minigolf","","online;status-playable","playable","2020-09-29 12:26:25.000" -"Blood Waves - 01007E700D17E000","01007E700D17E000","gpu;status-ingame","ingame","2022-07-18 13:04:46.000" -"Stick It to the Man","","","","2020-04-13 12:29:25.000" -"Bad Dream: Fever - 0100B3B00D81C000","0100B3B00D81C000","status-playable","playable","2021-06-04 18:33:12.000" -"Spectrum - 01008B000A5AE000","01008B000A5AE000","status-playable","playable","2022-08-16 11:15:59.000" -"Battlezone Gold Edition - 01006D800A988000","01006D800A988000","gpu;ldn-untested;online;status-boots","boots","2021-06-04 18:36:05.000" -"Squareboy vs Bullies: Arena Edition","","","","2020-04-13 12:51:57.000" -"Beach Buggy Racing - 010095C00406C000","010095C00406C000","online;status-playable","playable","2021-04-13 23:16:50.000" -"Avenger Bird","","","","2020-04-13 13:01:51.000" -"Beholder","","status-playable","playable","2020-10-16 12:48:58.000" -"Binaries","","","","2020-04-13 13:12:42.000" -"Space Ribbon - 010010A009830000","010010A009830000","status-playable","playable","2022-08-15 17:17:10.000" -"BINGO for Nintendo Switch","","status-playable","playable","2020-07-23 16:17:36.000" -"Bibi Blocksberg - Big Broom Race 3","","status-playable","playable","2021-01-11 19:07:16.000" -"Sparkle 3: Genesis","","","","2020-04-13 14:01:48.000" -"Bury me, my Love","","status-playable","playable","2020-11-07 12:47:37.000" -"Bad North - 0100E98006F22000","0100E98006F22000","status-playable","playable","2022-07-17 13:44:25.000" -"Stikbold! A Dodgeball Adventure DELUXE","","status-playable","playable","2021-01-11 20:12:54.000" -"BUTCHER","","status-playable","playable","2021-01-11 18:50:17.000" -"Bird Game + - 01001B700B278000","01001B700B278000","status-playable;online","playable","2022-07-17 18:41:57.000" -"SpiritSphere DX - 01009D60080B4000","01009D60080B4000","status-playable","playable","2021-07-03 23:37:49.000" -"Behind The Screen","","","","2020-04-13 15:41:34.000" -"Bibi & Tina - Adventures with Horses","","nvdec;slow;status-playable","playable","2021-01-13 08:58:09.000" -"Space Dave","","","","2020-04-13 15:57:37.000" -"Hellblade: Senua's Sacrifice - 010044500CF8E000","010044500CF8E000","gpu;status-ingame;UE4;vulkan-backend-bug;opengl-backend-bug","ingame","2022-08-01 19:36:50.000" -"Happy Birthdays","","","","2020-04-13 23:34:41.000" -"GUILTY GEAR XX ACCENT CORE PLUS R","","nvdec;status-playable","playable","2021-01-13 09:28:33.000" -"Hob: The Definitive Edition","","status-playable","playable","2021-01-13 09:39:19.000" -"Jurassic Pinball - 0100CE100A826000","0100CE100A826000","status-playable","playable","2021-06-04 19:02:37.000" -"Hyper Light Drifter - Special Edition - 01003B200B372000","01003B200B372000","status-playable;vulkan-backend-bug","playable","2023-01-13 15:44:48.000" -"GUNBIRD for Nintendo Switch - 01003C6008940000","01003C6008940000","32-bit;status-playable","playable","2021-06-04 19:16:01.000" -"GUNBIRD2 for Nintendo Switch","","status-playable","playable","2020-10-10 14:41:16.000" -"Hammerwatch - 01003B9007E86000","01003B9007E86000","status-playable;online-broken;ldn-broken","playable","2022-08-01 16:28:46.000" -"Into The Breach","","","","2020-04-14 14:05:04.000" -"Horizon Chase Turbo - 01009EA00B714000","01009EA00B714000","status-playable","playable","2021-02-19 19:40:56.000" -"Gunlord X","","","","2020-04-14 14:30:34.000" -"Ittle Dew 2+","","status-playable","playable","2020-11-17 11:44:32.000" -"Hue","","","","2020-04-14 14:52:35.000" -"Iconoclasts - 0100BC60099FE000","0100BC60099FE000","status-playable","playable","2021-08-30 21:11:04.000" -"James Pond Operation Robocod","","status-playable","playable","2021-01-13 09:48:45.000" -"Hello Neighbor - 0100FAA00B168000","0100FAA00B168000","status-playable;UE4","playable","2022-08-01 21:32:23.000" -"Gunman Clive HD Collection","","status-playable","playable","2020-10-09 12:17:35.000" -"Human Resource Machine","","32-bit;status-playable","playable","2020-12-17 21:47:09.000" -"INSIDE - 0100D2D009028000","0100D2D009028000","status-playable","playable","2021-12-25 20:24:56.000" -"Hello Neighbor: Hide And Seek","","UE4;gpu;slow;status-ingame","ingame","2020-10-24 10:59:57.000" -"Has-Been Heroes","","status-playable","playable","2021-01-13 13:31:48.000" -"GUNBARICH for Nintendo Switch","","","","2020-04-14 21:58:40.000" -"Hell is Other Demons","","status-playable","playable","2021-01-13 13:23:02.000" -"I, Zombie","","status-playable","playable","2021-01-13 14:53:44.000" -"Hello Kitty Kruisers With Sanrio Friends - 010087D0084A8000","010087D0084A8000","nvdec;status-playable","playable","2021-06-04 19:08:46.000" -"IMPLOSION - 0100737003190000","0100737003190000","status-playable;nvdec","playable","2021-12-12 03:52:13.000" -"Ikaruga - 01009F20086A0000","01009F20086A0000","status-playable","playable","2023-04-06 15:00:02.000" -"Ironcast","","status-playable","playable","2021-01-13 13:54:29.000" -"Jettomero: Hero of the Universe - 0100A5A00AF26000","0100A5A00AF26000","status-playable","playable","2022-08-02 14:46:43.000" -"Harvest Moon: Light of Hope Special Edition","","","","2020-04-15 13:00:41.000" -"Heroine Anthem Zero episode 1 - 01001B70080F0000","01001B70080F0000","status-playable;vulkan-backend-bug","playable","2022-08-01 22:02:36.000" -"Hunting Simulator - 0100C460040EA000","0100C460040EA000","status-playable;UE4","playable","2022-08-02 10:54:08.000" -"Guts and Glory","","","","2020-04-15 14:06:57.000" -"Island Flight Simulator - 010077900440A000","010077900440A000","status-playable","playable","2021-06-04 19:42:46.000" -"Hollow - 0100F2100061E8000","0100F2100061E800","UE4;gpu;status-ingame","ingame","2021-03-03 23:42:56.000" -"Heroes of the Monkey Tavern","","","","2020-04-15 15:24:33.000" -"Jotun: Valhalla Edition","","","","2020-04-15 15:46:21.000" -"OniNaki - 0100CF4011B2A000","0100CF4011B2A000","nvdec;status-playable","playable","2021-02-27 21:52:42.000" -"Diary of consultation with me (female doctor)","","","","2020-04-15 16:13:40.000" -"JunkPlanet","","status-playable","playable","2020-11-09 12:38:33.000" -"Hexologic","","","","2020-04-15 16:46:07.000" -"JYDGE - 010035A0044E8000","010035A0044E8000","status-playable","playable","2022-08-02 21:20:13.000" -"Mushroom Quest","","status-playable","playable","2020-05-17 13:07:08.000" -"Infernium","","UE4;regression;status-nothing","nothing","2021-01-13 16:36:07.000" -"Star-Crossed Myth - The Department of Wishes - 01005EB00EA10000","01005EB00EA10000","gpu;status-ingame","ingame","2021-06-04 19:34:36.000" -"Joe Dever's Lone Wolf","","","","2020-04-15 18:27:04.000" -"Final Fantasy VII - 0100A5B00BDC6000","0100A5B00BDC6000","status-playable","playable","2022-12-09 17:03:30.000" -"Irony Curtain: From Matryoshka with Love - 0100E5700CD56000","0100E5700CD56000","status-playable","playable","2021-06-04 20:12:37.000" -"Guns Gore and Cannoli","","","","2020-04-16 12:37:22.000" -"ICEY","","status-playable","playable","2021-01-14 16:16:04.000" -"Jumping Joe & Friends","","status-playable","playable","2021-01-13 17:09:42.000" -"Johnny Turbo's Arcade Wizard Fire - 0100D230069CC000","0100D230069CC000","status-playable","playable","2022-08-02 20:39:15.000" -"Johnny Turbo's Arcade Two Crude Dudes - 010080D002CC6000","010080D002CC6000","status-playable","playable","2022-08-02 20:29:50.000" -"Johnny Turbo's Arcade Sly Spy","","","","2020-04-16 13:56:32.000" -"Johnny Turbo's Arcade Caveman Ninja","","","","2020-04-16 14:11:07.000" -"Heroki - 010057300B0DC000","010057300B0DC000","gpu;status-ingame","ingame","2023-07-30 19:30:01.000" -"Immortal Redneck - 0100F400435A000","","nvdec;status-playable","playable","2021-01-27 18:36:28.000" -"Hungry Shark World","","status-playable","playable","2021-01-13 18:26:08.000" -"Homo Machina","","","","2020-04-16 15:10:24.000" -"InnerSpace","","","","2020-04-16 16:38:45.000" -"INK","","","","2020-04-16 16:48:26.000" -"Human: Fall Flat","","status-playable","playable","2021-01-13 18:36:05.000" -"Hotel Transylvania 3: Monsters Overboard - 0100017007980000","0100017007980000","nvdec;status-playable","playable","2021-01-27 18:55:31.000" -"It's Spring Again","","","","2020-04-16 19:08:21.000" -"FINAL FANTASY IX - 01006F000B056000","01006F000B056000","audout;nvdec;status-playable","playable","2021-06-05 11:35:00.000" -"Harvest Life - 0100D0500AD30000","0100D0500AD30000","status-playable","playable","2022-08-01 16:51:45.000" -"INVERSUS Deluxe - 01001D0003B96000","01001D0003B96000","status-playable;online-broken","playable","2022-08-02 14:35:36.000" -"HoPiKo","","status-playable","playable","2021-01-13 20:12:38.000" -"I Hate Running Backwards","","","","2020-04-16 20:53:45.000" -"Hexagravity - 01007AC00E012000","01007AC00E012000","status-playable","playable","2021-05-28 13:47:48.000" -"Holy Potatoes! A Weapon Shop?!","","","","2020-04-16 22:25:50.000" -"In Between","","","","2020-04-17 11:08:14.000" -"Hunter's Legacy: Purrfect Edition - 010068000CAC0000","010068000CAC0000","status-playable","playable","2022-08-02 10:33:31.000" -"Job the Leprechaun","","status-playable","playable","2020-06-05 12:10:06.000" -"Henry the Hamster Handler","","","","2020-04-17 11:30:02.000" -"FINAL FANTASY XII THE ZODIAC AGE - 0100EB100AB42000","0100EB100AB42000","status-playable;opengl;vulkan-backend-bug","playable","2024-08-11 07:01:54.000" -"Hiragana Pixel Party","","status-playable","playable","2021-01-14 08:36:50.000" -"Heart and Slash","","status-playable","playable","2021-01-13 20:56:32.000" -"InkSplosion","","","","2020-04-17 12:11:41.000" -"I and Me","","","","2020-04-17 12:18:43.000" -"Earthlock - 01006E50042EA000","01006E50042EA000","status-playable","playable","2021-06-05 11:51:02.000" -"Figment - 0100118009C68000","0100118009C68000","nvdec;status-playable","playable","2021-01-27 19:36:05.000" -"Dusty Raging Fist","","","","2020-04-18 14:02:20.000" -"Eternum Ex","","status-playable","playable","2021-01-13 20:28:32.000" -"Dragon's Lair Trilogy","","nvdec;status-playable","playable","2021-01-13 22:12:07.000" -"FIFA 18 - 0100F7B002340000","0100F7B002340000","gpu;status-ingame;online-broken;ldn-untested","ingame","2022-07-26 12:43:59.000" -"Dream Alone - 0100AA0093DC000","","nvdec;status-playable","playable","2021-01-27 19:41:50.000" -"Fight of Gods","","","","2020-04-18 17:22:19.000" -"Fallout Shelter","","","","2020-04-18 19:48:28.000" -"Drift Legends","","","","2020-04-18 20:15:36.000" -"Feudal Alloy","","status-playable","playable","2021-01-14 08:48:14.000" -"EVERSPACE - 0100DCF0093EC000","0100DCF0093EC000","status-playable;UE4","playable","2022-08-14 01:16:24.000" -"Epic Loon - 0100262009626000","0100262009626000","status-playable;nvdec","playable","2022-07-25 22:06:13.000" -"EARTH WARS - 01009B7006C88000","01009B7006C88000","status-playable","playable","2021-06-05 11:18:33.000" -"Finding Teddy 2 : Definitive Edition - 0100FF100FB68000","0100FF100FB68000","gpu;status-ingame","ingame","2024-04-19 16:51:33.000" -"Rocket League - 01005EE0036EC000","01005EE0036EC000","gpu;status-ingame;online-broken;ldn-untested","ingame","2024-02-08 19:51:36.000" -"Fimbul - 0100C3A00BB76000","0100C3A00BB76000","status-playable;nvdec","playable","2022-07-26 13:31:47.000" -"Fairune Collection - 01008A6009758000","01008A6009758000","status-playable","playable","2021-06-06 15:29:56.000" -"Enigmatis 2: The Mists of Ravenwood - 0100C6200A0AA000","0100C6200A0AA000","crash;regression;status-boots","boots","2021-06-06 15:15:30.000" -"Energy Balance","","","","2020-04-22 11:13:18.000" -"DragonFangZ","","status-playable","playable","2020-09-28 21:35:18.000" -"Dragon's Dogma: Dark Arisen - 010032C00AC58000","010032C00AC58000","status-playable","playable","2022-07-24 12:58:33.000" -"Everything","","","","2020-04-22 11:35:04.000" -"Dust: An Elysian Tail - 0100B6E00A420000","0100B6E00A420000","status-playable","playable","2022-07-25 15:28:12.000" -"EXTREME POKER","","","","2020-04-22 11:54:54.000" -"Dyna Bomb","","status-playable","playable","2020-06-07 13:26:55.000" -"Escape Doodland","","","","2020-04-22 12:10:08.000" -"Drone Fight - 010058C00A916000","010058C00A916000","status-playable","playable","2022-07-24 14:31:56.000" -"Resident Evil","","","","2020-04-22 12:31:10.000" -"Dungeon Rushers","","","","2020-04-22 12:43:24.000" -"Embers of Mirrim","","","","2020-04-22 12:56:52.000" -"FIFA 19 - 0100FFA0093E8000","0100FFA0093E8000","gpu;status-ingame;nvdec;online-broken;ldn-untested","ingame","2022-07-26 13:07:07.000" -"Energy Cycle","","","","2020-04-22 13:40:48.000" -"Dragons Dawn of New Riders","","nvdec;status-playable","playable","2021-01-27 20:05:26.000" -"Enter the Gungeon - 01009D60076F6000","01009D60076F6000","status-playable","playable","2022-07-25 20:28:33.000" -"Drowning - 010052000A574000","010052000A574000","status-playable","playable","2022-07-25 14:28:26.000" -"Earth Atlantis","","","","2020-04-22 14:42:46.000" -"Evil Defenders","","nvdec;status-playable","playable","2020-09-28 17:11:00.000" -"Dustoff Heli Rescue 2","","","","2020-04-22 15:31:34.000" -"Energy Cycle Edge - 0100B8700BD14000","0100B8700BD14000","services;status-ingame","ingame","2021-11-30 05:02:31.000" -"Element - 0100A6700AF10000","0100A6700AF10000","status-playable","playable","2022-07-25 17:17:16.000" -"Duck Game","","","","2020-04-22 17:10:36.000" -"Fill-a-Pix: Phil's Epic Adventure","","status-playable","playable","2020-12-22 13:48:22.000" -"Elliot Quest - 0100128003A24000","0100128003A24000","status-playable","playable","2022-07-25 17:46:14.000" -"Drawful 2 - 0100F7800A434000","0100F7800A434000","status-ingame","ingame","2022-07-24 13:50:21.000" -"Energy Invasion","","status-playable","playable","2021-01-14 21:32:26.000" -"Dungeon Stars","","status-playable","playable","2021-01-18 14:28:37.000" -"FINAL FANTASY X/X-2 HD REMASTER - 0100BC300CB48000","0100BC300CB48000","gpu;status-ingame","ingame","2022-08-16 20:29:26.000" -"Revenant Saga","","","","2020-04-22 23:52:09.000" -"Resident Evil 0","","","","2020-04-23 01:04:42.000" -"Fate/EXTELLA - 010053E002EA2000","010053E002EA2000","gpu;status-ingame;nvdec;online-broken;vulkan-backend-bug;opengl-backend-bug","ingame","2023-04-24 23:37:55.000" -"RiME","","UE4;crash;gpu;status-boots","boots","2020-07-20 15:52:38.000" -"DYNASTY WARRIORS 8: Xtreme Legends Definitive Edition - 0100E9A00CB30000","0100E9A00CB30000","status-playable;nvdec","playable","2024-06-26 00:16:30.000" -"Rival Megagun","","nvdec;online;status-playable","playable","2021-01-19 14:01:46.000" -"Riddled Corpses EX - 01002C700C326000","01002C700C326000","status-playable","playable","2021-06-06 16:02:44.000" -"Fear Effect Sedna","","nvdec;status-playable","playable","2021-01-19 13:10:33.000" -"Redout: Lightspeed Edition","","","","2020-04-23 14:46:59.000" -"RESIDENT EVIL REVELATIONS 2 - 010095300212A000","010095300212A000","status-playable;online-broken;ldn-untested","playable","2022-08-11 12:57:50.000" -"Robonauts - 0100618004096000","0100618004096000","status-playable;nvdec","playable","2022-08-12 11:33:23.000" -"Road to Ballhalla - 010002F009A7A000","010002F009A7A000","UE4;status-playable","playable","2021-06-07 02:22:36.000" -"Fate/EXTELLA LINK - 010051400B17A000","010051400B17A000","ldn-untested;nvdec;status-playable","playable","2021-01-27 00:45:50.000" -"Rocket Fist","","","","2020-04-23 16:56:33.000" -"RICO - 01009D5009234000","01009D5009234000","status-playable;nvdec;online-broken","playable","2022-08-11 20:16:40.000" -"R.B.I. Baseball 17 - 0100B5A004302000","0100B5A004302000","status-playable;online-working","playable","2022-08-11 11:55:47.000" -"Red Faction Guerrilla Re-Mars-tered - 010075000C608000","010075000C608000","ldn-untested;nvdec;online;status-playable","playable","2021-06-07 03:02:13.000" -"Riptide GP: Renegade - 01002A6006AA4000","01002A6006AA4000","online;status-playable","playable","2021-04-13 23:33:02.000" -"Realpolitiks","","","","2020-04-24 12:33:00.000" -"Fall Of Light - Darkest Edition - 01005A600BE60000","01005A600BE60000","slow;status-ingame;nvdec","ingame","2024-07-24 04:19:26.000" -"Reverie: Sweet As Edition","","","","2020-04-24 13:24:37.000" -"RIVE: Ultimate Edition","","status-playable","playable","2021-03-24 18:45:55.000" -"R.B.I. Baseball 18 - 01005CC007616000","01005CC007616000","status-playable;nvdec;online-working","playable","2022-08-11 11:27:52.000" -"Refunct","","UE4;status-playable","playable","2020-12-15 22:46:21.000" -"Rento Fortune Monolit","","ldn-untested;online;status-playable","playable","2021-01-19 19:52:21.000" -"Super Mario Party - 010036B0034E4000","010036B0034E4000","gpu;status-ingame;Needs Update;ldn-works","ingame","2024-06-21 05:10:16.000" -"Farm Together","","status-playable","playable","2021-01-19 20:01:19.000" -"Regalia: Of Men and Monarchs - Royal Edition - 0100FDF0083A6000","0100FDF0083A6000","status-playable","playable","2022-08-11 12:24:01.000" -"Red Game Without a Great Name","","status-playable","playable","2021-01-19 21:42:35.000" -"R.B.I. Baseball 19 - 0100FCB00BF40000","0100FCB00BF40000","status-playable;nvdec;online-working","playable","2022-08-11 11:43:52.000" -"Eagle Island - 010037400C7DA000","010037400C7DA000","status-playable","playable","2021-04-10 13:15:42.000" -"RIOT: Civil Unrest - 010088E00B816000","010088E00B816000","status-playable","playable","2022-08-11 20:27:56.000" -"Revenant Dogma","","","","2020-04-25 17:51:48.000" -"World of Final Fantasy Maxima","","status-playable","playable","2020-06-07 13:57:23.000" -"ITTA - 010068700C70A000","010068700C70A000","status-playable","playable","2021-06-07 03:15:52.000" -"Pirates: All Aboard!","","","","2020-04-27 12:18:29.000" -"Wolfenstein II The New Colossus - 01009040091E0000","01009040091E0000","gpu;status-ingame","ingame","2024-04-05 05:39:46.000" -"Onimusha: Warlords","","nvdec;status-playable","playable","2020-07-31 13:08:39.000" -"Radiation Island - 01009E40095EE000","01009E40095EE000","status-ingame;opengl;vulkan-backend-bug","ingame","2022-08-11 10:51:04.000" -"Pool Panic","","","","2020-04-27 13:49:19.000" -"Quad Fighter K","","","","2020-04-27 14:00:50.000" -"PSYVARIAR DELTA - 0100EC100A790000","0100EC100A790000","nvdec;status-playable","playable","2021-01-20 13:01:46.000" -"Puzzle Box Maker - 0100476004A9E000","0100476004A9E000","status-playable;nvdec;online-broken","playable","2022-08-10 18:00:52.000" -"Psikyo Collection Vol. 3 - 0100A2300DB78000","0100A2300DB78000","status-ingame","ingame","2021-06-07 02:46:23.000" -"Pianista: The Legendary Virtuoso - 010077300A86C000","010077300A86C000","status-playable;online-broken","playable","2022-08-09 14:52:56.000" -"Quarantine Circular - 0100F1400BA88000","0100F1400BA88000","status-playable","playable","2021-01-20 15:24:15.000" -"Pizza Titan Ultra - 01004A900C352000","01004A900C352000","nvdec;status-playable","playable","2021-01-20 15:58:42.000" -"Phantom Trigger - 0100C31005A50000","0100C31005A50000","status-playable","playable","2022-08-09 14:27:30.000" -"Operación Triunfo 2017 - 0100D5400BD90000","0100D5400BD90000","services;status-ingame;nvdec","ingame","2022-08-08 15:06:42.000" -"Rad Rodgers Radical Edition - 010000600CD54000","010000600CD54000","status-playable;nvdec;online-broken","playable","2022-08-10 19:57:23.000" -"Ape Out - 01005B100C268000","01005B100C268000","status-playable","playable","2022-09-26 19:04:47.000" -"Decay of Logos - 010027700FD2E000","010027700FD2E000","status-playable;nvdec","playable","2022-09-13 14:42:13.000" -"Q.U.B.E. 2 - 010023600AA34000","010023600AA34000","UE4;status-playable","playable","2021-03-03 21:38:57.000" -"Pikuniku","","","","2020-04-28 11:02:59.000" -"Picross S","","","","2020-04-28 11:14:18.000" -"PHANTOM BREAKER: BATTLE GROUNDS OVER DRIVE - 0100063005C86000","0100063005C86000","audio;status-playable;nvdec","playable","2024-02-29 14:20:35.000" -"Pilot Sports - 01007A500B0B2000","01007A500B0B2000","status-playable","playable","2021-01-20 15:04:17.000" -"Paper Wars","","","","2020-04-28 11:46:56.000" -"Fushigi no Gensokyo Lotus Labyrinth","","Needs Update;audio;gpu;nvdec;status-ingame","ingame","2021-01-20 15:30:02.000" -"OPUS: The Day We Found Earth - 010049C0075F0000","010049C0075F0000","nvdec;status-playable","playable","2021-01-21 18:29:31.000" -"Psikyo Collection Vol.2 - 01009D400C4A8000","01009D400C4A8000","32-bit;status-playable","playable","2021-06-07 03:22:07.000" -"PixARK","","","","2020-04-28 12:32:16.000" -"Puyo Puyo Tetris","","","","2020-04-28 12:46:37.000" -"Puzzle Puppers","","","","2020-04-28 12:54:05.000" -"OVERWHELM - 01005F000CC18000","01005F000CC18000","status-playable","playable","2021-01-21 18:37:18.000" -"Rapala Fishing: Pro Series","","nvdec;status-playable","playable","2020-12-16 13:26:53.000" -"Power Rangers: Battle for the Grid","","status-playable","playable","2020-06-21 16:52:42.000" -"Professional Farmer: Nintendo Switch Edition","","slow;status-playable","playable","2020-12-16 13:38:19.000" -"Project Nimbus: Complete Edition - 0100ACE00DAB6000","0100ACE00DAB6000","status-playable;nvdec;UE4;vulkan-backend-bug","playable","2022-08-10 17:35:43.000" -"Perfect Angle - 010089F00A3B4000","010089F00A3B4000","status-playable","playable","2021-01-21 18:48:45.000" -"Oniken: Unstoppable Edition - 010037900C814000","010037900C814000","status-playable","playable","2022-08-08 14:52:06.000" -"Pixeljunk Monsters 2 - 0100E4D00A690000","0100E4D00A690000","status-playable","playable","2021-06-07 03:40:01.000" -"Pocket Rumble","","","","2020-04-28 19:13:20.000" -"Putty Pals","","","","2020-04-28 19:35:49.000" -"Overcooked! Special Edition - 01009B900401E000","01009B900401E000","status-playable","playable","2022-08-08 20:48:52.000" -"Panda Hero","","","","2020-04-28 20:33:24.000" -"Piczle Lines DX","","UE4;crash;nvdec;status-menus","menus","2020-11-16 04:21:31.000" -"Packet Queen #","","","","2020-04-28 21:43:26.000" -"Punch Club","","","","2020-04-28 22:28:01.000" -"Oxenfree","","","","2020-04-28 23:56:28.000" -"Rayman Legends: Definitive Edition - 01005FF002E2A000","01005FF002E2A000","status-playable;nvdec;ldn-works","playable","2023-05-27 18:33:07.000" -"Poi: Explorer Edition - 010086F0064CE000","010086F0064CE000","nvdec;status-playable","playable","2021-01-21 19:32:00.000" -"Paladins - 011123900AEE0000","011123900AEE0000","online;status-menus","menus","2021-01-21 19:21:37.000" -"Q-YO Blaster","","gpu;status-ingame","ingame","2020-06-07 22:36:53.000" -"Please Don't Touch Anything","","","","2020-04-29 12:15:59.000" -"Puzzle Adventure Blockle","","","","2020-04-29 13:05:19.000" -"Plantera - 010087000428E000","010087000428E000","status-playable","playable","2022-08-09 15:36:28.000" -"One Strike","","","","2020-04-29 13:43:11.000" -"Party Arcade - 01007FC00A040000","01007FC00A040000","status-playable;online-broken;UE4;ldn-untested","playable","2022-08-09 12:32:53.000" -"PAYDAY 2 - 0100274004052000","0100274004052000","status-playable;nvdec;online-broken;ldn-untested","playable","2022-08-09 12:56:39.000" -"Quest of Dungeons - 01001DE005012000","01001DE005012000","status-playable","playable","2021-06-07 10:29:22.000" -"Plague Road - 0100FF8005EB2000","0100FF8005EB2000","status-playable","playable","2022-08-09 15:27:14.000" -"Picture Painting Puzzle 1000!","","","","2020-04-29 14:58:39.000" -"Ni No Kuni Wrath of the White Witch - 0100E5600D446000","0100E5600D446000","status-boots;32-bit;nvdec","boots","2024-07-12 04:52:59.000" -"Overcooked! 2 - 01006FD0080B2000","01006FD0080B2000","status-playable;ldn-untested","playable","2022-08-08 16:48:10.000" -"Qbik","","","","2020-04-29 15:50:22.000" -"Rain World - 010047600BF72000","010047600BF72000","status-playable","playable","2023-05-10 23:34:08.000" -"Othello","","","","2020-04-29 17:06:10.000" -"Pankapu","","","","2020-04-29 17:24:48.000" -"Pode - 01009440095FE000","01009440095FE000","nvdec;status-playable","playable","2021-01-25 12:58:35.000" -"PLANET RIX-13","","","","2020-04-29 22:00:16.000" -"Picross S2","","status-playable","playable","2020-10-15 12:01:40.000" -"Picross S3","","status-playable","playable","2020-10-15 11:55:27.000" -"POISOFT'S ""Thud""","","","","2020-04-29 22:26:06.000" -"Paranautical Activity - 010063400B2EC000","010063400B2EC000","status-playable","playable","2021-01-25 13:49:19.000" -"oOo: Ascension - 010074000BE8E000","010074000BE8E000","status-playable","playable","2021-01-25 14:13:34.000" -"Pic-a-Pix Pieces","","","","2020-04-30 12:07:19.000" -"Perception","","UE4;crash;nvdec;status-menus","menus","2020-12-18 11:49:23.000" -"Pirate Pop Plus","","","","2020-04-30 12:19:57.000" -"Outlast 2 - 0100DE70085E8000","0100DE70085E8000","status-ingame;crash;nvdec","ingame","2022-01-22 22:28:05.000" -"Project Highrise: Architect's Edition - 0100BBD00976C000","0100BBD00976C000","status-playable","playable","2022-08-10 17:19:12.000" -"Perchang - 010011700D1B2000","010011700D1B2000","status-playable","playable","2021-01-25 14:19:52.000" -"Out Of The Box - 01005A700A166000","01005A700A166000","status-playable","playable","2021-01-28 01:34:27.000" -"Paperbound Brawlers - 01006AD00B82C000","01006AD00B82C000","status-playable","playable","2021-01-25 14:32:15.000" -"Party Golf - 0100B8E00359E000","0100B8E00359E000","status-playable;nvdec","playable","2022-08-09 12:38:30.000" -"PAN-PAN A tiny big adventure - 0100F0D004CAE000","0100F0D004CAE000","audout;status-playable","playable","2021-01-25 14:42:00.000" -"OVIVO","","","","2020-04-30 15:12:05.000" -"Penguin Wars","","","","2020-04-30 15:28:21.000" -"Physical Contact: Speed - 01008110036FE000","01008110036FE000","status-playable","playable","2022-08-09 14:40:46.000" -"Pic-a-Pix Deluxe","","","","2020-04-30 16:00:55.000" -"Puyo Puyo Esports","","","","2020-04-30 16:13:17.000" -"Qbics Paint - 0100A8D003BAE000","0100A8D003BAE000","gpu;services;status-ingame","ingame","2021-06-07 10:54:09.000" -"Piczle Lines DX 500 More Puzzles!","","UE4;status-playable","playable","2020-12-15 23:42:51.000" -"Pato Box - 010031F006E76000","010031F006E76000","status-playable","playable","2021-01-25 15:17:52.000" -"Phoenix Wright: Ace Attorney Trilogy - 0100CB000A142000","0100CB000A142000","status-playable","playable","2023-09-15 22:03:12.000" -"Physical Contact: 2048","","slow;status-playable","playable","2021-01-25 15:18:32.000" -"OPUS Collection - 01004A200BE82000","01004A200BE82000","status-playable","playable","2021-01-25 15:24:04.000" -"Party Planet","","","","2020-04-30 18:30:59.000" -"Physical Contact: Picture Place","","","","2020-04-30 18:43:20.000" -"Tanzia - 01004DF007564000","01004DF007564000","status-playable","playable","2021-06-07 11:10:25.000" -"Syberia 3 - 0100CBE004E6C000","0100CBE004E6C000","nvdec;status-playable","playable","2021-01-25 16:15:12.000" -"SUPER DRAGON BALL HEROES WORLD MISSION - 0100E5E00C464000","0100E5E00C464000","status-playable;nvdec;online-broken","playable","2022-08-17 12:56:30.000" -"Tales of Vesperia: Definitive Edition - 01002C0008E52000","01002C0008E52000","status-playable","playable","2024-09-28 03:20:47.000" -"Surgeon Simulator CPR","","","","2020-05-01 15:11:43.000" -"Super Inefficient Golf - 010056800B534000","010056800B534000","status-playable;UE4","playable","2022-08-17 15:53:45.000" -"Super Daryl Deluxe","","","","2020-05-01 18:23:22.000" -"Sushi Striker: The Way of Sushido","","nvdec;status-playable","playable","2020-06-26 20:49:11.000" -"Super Volley Blast - 010035B00B3F0000","010035B00B3F0000","status-playable","playable","2022-08-19 18:14:40.000" -"Stunt Kite Party - 0100AF000B4AE000","0100AF000B4AE000","nvdec;status-playable","playable","2021-01-25 17:16:56.000" -"Super Putty Squad - 0100331005E8E000","0100331005E8E000","gpu;status-ingame;32-bit","ingame","2024-04-29 15:51:54.000" -"SWORD ART ONLINE: Hollow Realization Deluxe Edition - 01001B600D1D6000","01001B600D1D6000","status-playable;nvdec","playable","2022-08-19 19:19:15.000" -"SUPER ROBOT WARS T","","online;status-playable","playable","2021-03-25 11:00:40.000" -"Tactical Mind - 01000F20083A8000","01000F20083A8000","status-playable","playable","2021-01-25 18:05:00.000" -"Super Beat Sports - 0100F7000464A000","0100F7000464A000","status-playable;ldn-untested","playable","2022-08-16 16:05:50.000" -"Suicide Guy - 01005CD00A2A2000","01005CD00A2A2000","status-playable","playable","2021-01-26 13:13:54.000" -"Sundered: Eldritch Edition - 01002D3007962000","01002D3007962000","gpu;status-ingame","ingame","2021-06-07 11:46:00.000" -"Super Blackjack Battle II Turbo - The Card Warriors","","","","2020-05-02 09:45:57.000" -"Super Skelemania","","status-playable","playable","2020-06-07 22:59:50.000" -"Super Ping Pong Trick Shot","","","","2020-05-02 10:02:55.000" -"Subsurface Circular","","","","2020-05-02 10:36:40.000" -"Super Hero Fight Club: Reloaded","","","","2020-05-02 10:49:51.000" -"Superola and the lost burgers","","","","2020-05-02 10:57:54.000" -"Super Tennis Blast - 01000500DB50000","","status-playable","playable","2022-08-19 16:20:48.000" -"Swap This!","","","","2020-05-02 11:37:51.000" -"Super Sportmatchen - 0100A9300A4AE000","0100A9300A4AE000","status-playable","playable","2022-08-19 12:34:40.000" -"Super Destronaut DX","","","","2020-05-02 12:13:53.000" -"Summer Sports Games","","","","2020-05-02 12:45:15.000" -"Super Kickers League - 0100196009998000","0100196009998000","status-playable","playable","2021-01-26 13:36:48.000" -"Switch 'N' Shoot","","","","2020-05-03 02:02:08.000" -"Super Mutant Alien Assault","","status-playable","playable","2020-06-07 23:32:45.000" -"Tallowmere","","","","2020-05-03 02:23:10.000" -"Wizard of Legend - 0100522007AAA000","0100522007AAA000","status-playable","playable","2021-06-07 12:20:46.000" -"WARRIORS OROCHI 4 ULTIMATE - 0100E8500AD58000","0100E8500AD58000","status-playable;nvdec;online-broken","playable","2024-08-07 01:50:37.000" -"What Remains of Edith Finch - 010038900DFE0000","010038900DFE0000","slow;status-playable;UE4","playable","2022-08-31 19:57:59.000" -"Wasteland 2: Director's Cut - 010039A00BC64000","010039A00BC64000","nvdec;status-playable","playable","2021-01-27 13:34:11.000" -"Victor Vran Overkill Edition - 0100E81007A06000","0100E81007A06000","gpu;deadlock;status-ingame;nvdec;opengl","ingame","2022-08-30 11:46:56.000" -"Witch Thief - 01002FC00C6D0000","01002FC00C6D0000","status-playable","playable","2021-01-27 18:16:07.000" -"VSR: Void Space Racing - 0100C7C00AE6C000","0100C7C00AE6C000","status-playable","playable","2021-01-27 14:08:59.000" -"Warparty","","nvdec;status-playable","playable","2021-01-27 18:26:32.000" -"Windstorm","","UE4;gpu;nvdec;status-ingame","ingame","2020-12-22 13:17:48.000" -"WAKU WAKU SWEETS","","","","2020-05-03 19:46:53.000" -"Windstorm - Ari's Arrival - 0100D6800CEAC000","0100D6800CEAC000","UE4;status-playable","playable","2021-06-07 19:33:19.000" -"V-Rally 4 - 010064400B138000","010064400B138000","gpu;nvdec;status-ingame","ingame","2021-06-07 19:37:31.000" -"Valkyria Chronicles - 0100CAF00B744000","0100CAF00B744000","status-ingame;32-bit;crash;nvdec","ingame","2022-11-23 20:03:32.000" -"WILL: A Wonderful World","","","","2020-05-03 22:34:06.000" -"WILD GUNS Reloaded - 0100CFC00A1D8000","0100CFC00A1D8000","status-playable","playable","2021-01-28 12:29:05.000" -"Valthirian Arc: Hero School Story","","","","2020-05-04 12:06:06.000" -"War Theatre - 010084D00A134000","010084D00A134000","gpu;status-ingame","ingame","2021-06-07 19:42:45.000" -"Vostok, Inc. - 01004D8007368000","01004D8007368000","status-playable","playable","2021-01-27 17:43:59.000" -"Way of the Passive Fist - 0100BA200C378000","0100BA200C378000","gpu;status-ingame","ingame","2021-02-26 21:07:06.000" -"Vesta - 010057B00712C000","010057B00712C000","status-playable;nvdec","playable","2022-08-29 21:03:39.000" -"West of Loathing - 010031B00A4E8000","010031B00A4E8000","status-playable","playable","2021-01-28 12:35:19.000" -"Vaporum - 010030F00CA1E000","010030F00CA1E000","nvdec;status-playable","playable","2021-05-28 14:25:33.000" -"Vandals - 01007C500D650000","01007C500D650000","status-playable","playable","2021-01-27 21:45:46.000" -"Active Neurons - 010039A010DA0000","010039A010DA0000","status-playable","playable","2021-01-27 21:31:21.000" -"Voxel Sword - 0100BFB00D1F4000","0100BFB00D1F4000","status-playable","playable","2022-08-30 14:57:27.000" -"Levelhead","","online;status-ingame","ingame","2020-10-18 11:44:51.000" -"Violett - 01005880063AA000","01005880063AA000","nvdec;status-playable","playable","2021-01-28 13:09:36.000" -"Wheels of Aurelia - 0100DFC00405E000","0100DFC00405E000","status-playable","playable","2021-01-27 21:59:25.000" -"Varion","","","","2020-05-04 15:50:27.000" -"Warlock's Tower","","","","2020-05-04 16:03:52.000" -"Vectronom","","","","2020-05-04 16:14:05.000" -"Yooka-Laylee - 0100F110029C8000","0100F110029C8000","status-playable","playable","2021-01-28 14:21:45.000" -"WWE 2K18 - 010009800203E000","010009800203E000","status-playable;nvdec","playable","2023-10-21 17:22:01.000" -"Wulverblade - 010033700418A000","010033700418A000","nvdec;status-playable","playable","2021-01-27 22:29:05.000" -"YIIK: A Postmodern RPG - 0100634008266000","0100634008266000","status-playable","playable","2021-01-28 13:38:37.000" -"Yesterday Origins","","","","2020-05-05 14:17:14.000" -"Zarvot - 0100E7900C40000","","status-playable","playable","2021-01-28 13:51:36.000" -"World to the West","","","","2020-05-05 14:47:07.000" -"Yonder: The Cloud Catcher Chronicles - 0100CC600ABB2000","0100CC600ABB2000","status-playable","playable","2021-01-28 14:06:25.000" -"Emma: Lost in Memories - 010017b0102a8000","010017b0102a8000","nvdec;status-playable","playable","2021-01-28 16:19:10.000" -"Zotrix: Solar Division - 01001EE00A6B0000","01001EE00A6B0000","status-playable","playable","2021-06-07 20:34:05.000" -"X-Morph: Defense","","status-playable","playable","2020-06-22 11:05:31.000" -"Wonder Boy: The Dragon's Trap - 0100A6300150C000","0100A6300150C000","status-playable","playable","2021-06-25 04:53:21.000" -"Yoku's Island Express - 010002D00632E000","010002D00632E000","status-playable;nvdec","playable","2022-09-03 13:59:02.000" -"Woodle Tree Adventures","","","","2020-05-06 12:48:20.000" -"World Neverland - 01008E9007064000","01008E9007064000","status-playable","playable","2021-01-28 17:44:23.000" -"Yomawari: The Long Night Collection - 010012F00B6F2000","010012F00B6F2000","status-playable","playable","2022-09-03 14:36:59.000" -"Xenon Valkyrie+ - 010064200C324000","010064200C324000","status-playable","playable","2021-06-07 20:25:53.000" -"Word Search by POWGI","","","","2020-05-06 18:16:35.000" -"Zombie Scrapper","","","","2020-05-06 18:27:12.000" -"Moving Out - 0100C4C00E73E000","0100C4C00E73E000","nvdec;status-playable","playable","2021-06-07 21:17:24.000" -"Wonderboy Returns Remix","","","","2020-05-06 22:21:59.000" -"Xenoraid - 0100928005BD2000","0100928005BD2000","status-playable","playable","2022-09-03 13:01:10.000" -"Zombillie","","status-playable","playable","2020-07-23 17:42:23.000" -"World Conqueror X","","status-playable","playable","2020-12-22 16:10:29.000" -"Xeodrifter - 01005B5009364000","01005B5009364000","status-playable","playable","2022-09-03 13:18:39.000" -"Yono and the Celestial Elephants - 0100BE50042F6000","0100BE50042F6000","status-playable","playable","2021-01-28 18:23:58.000" -"Moto Racer 4 - 01002ED00B01C000","01002ED00B01C000","UE4;nvdec;online;status-playable","playable","2021-04-08 19:09:11.000" -"NARUTO SHIPPUDEN™: Ultimate Ninja Storm 3 Full Burst - 01006BB00800A000","01006BB00800A000","status-playable;nvdec","playable","2024-06-16 14:58:05.000" -"NAMCO MUSEUM - 010002F001220000","010002F001220000","status-playable;ldn-untested","playable","2024-08-13 07:52:21.000" -"Mother Russia Bleeds","","","","2020-05-07 17:29:22.000" -"MotoGP 18 - 0100361007268000","0100361007268000","status-playable;nvdec;UE4;ldn-untested","playable","2022-08-05 11:41:45.000" -"Mushroom Wars 2","","nvdec;status-playable","playable","2020-09-28 15:26:08.000" -"Mugsters - 010073E008E6E000","010073E008E6E000","status-playable","playable","2021-01-28 17:57:17.000" -"Mulaka - 0100211005E94000","0100211005E94000","status-playable","playable","2021-01-28 18:07:20.000" -"Mummy Pinball - 010038B00B9AE000","010038B00B9AE000","status-playable","playable","2022-08-05 16:08:11.000" -"Moto Rush GT - 01003F200D0F2000","01003F200D0F2000","status-playable","playable","2022-08-05 11:23:55.000" -"Mutant Football League Dynasty Edition - 0100C3E00ACAA000","0100C3E00ACAA000","status-playable;online-broken","playable","2022-08-05 17:01:51.000" -"Mr. Shifty","","slow;status-playable","playable","2020-05-08 15:28:16.000" -"MXGP3 - The Official Motocross Videogame","","UE4;gpu;nvdec;status-ingame","ingame","2020-12-16 14:00:20.000" -"My Memory of Us - 0100E7700C284000","0100E7700C284000","status-playable","playable","2022-08-20 11:03:14.000" -"N++ - 01000D5005974000","01000D5005974000","status-playable","playable","2022-08-05 21:54:58.000" -"MUJO","","status-playable","playable","2020-05-08 16:31:04.000" -"MotoGP 19 - 01004B800D0E8000","01004B800D0E8000","status-playable;nvdec;online-broken;UE4","playable","2022-08-05 11:54:14.000" -"Muddledash","","services;status-ingame","ingame","2020-05-08 16:46:14.000" -"My Little Riding Champion","","slow;status-playable","playable","2020-05-08 17:00:53.000" -"Motorsport Manager for Nintendo Switch - 01002A900D6D6000","01002A900D6D6000","status-playable;nvdec","playable","2022-08-05 12:48:14.000" -"Muse Dash","","status-playable","playable","2020-06-06 14:41:29.000" -"NAMCO MUSEUM ARCADE PAC - 0100DAA00AEE6000","0100DAA00AEE6000","status-playable","playable","2021-06-07 21:44:50.000" -"MyFarm 2018","","","","2020-05-09 12:14:19.000" -"Mutant Mudds Collection - 01004BE004A86000","01004BE004A86000","status-playable","playable","2022-08-05 17:11:38.000" -"Ms. Splosion Man","","online;status-playable","playable","2020-05-09 20:45:43.000" -"New Super Mario Bros. U Deluxe - 0100EA80032EA000","0100EA80032EA000","32-bit;status-playable","playable","2023-10-08 02:06:37.000" -"Nelke & the Legendary Alchemists ~Ateliers of the New World~ - 01006ED00BC76000","01006ED00BC76000","status-playable","playable","2021-01-28 19:39:42.000" -"Nihilumbra","","status-playable","playable","2020-05-10 16:00:12.000" -"Observer - 01002A000C478000","01002A000C478000","UE4;gpu;nvdec;status-ingame","ingame","2021-03-03 20:19:45.000" -"NOT A HERO - 0100CB800B07E000","0100CB800B07E000","status-playable","playable","2021-01-28 19:31:24.000" -"Nightshade","","nvdec;status-playable","playable","2020-05-10 19:43:31.000" -"Night in the Woods - 0100921006A04000","0100921006A04000","status-playable","playable","2022-12-03 20:17:54.000" -"Nippon Marathon - 010037200C72A000","010037200C72A000","nvdec;status-playable","playable","2021-01-28 20:32:46.000" -"One Piece Unlimited World Red Deluxe Edition","","status-playable","playable","2020-05-10 22:26:32.000" -"Numbala","","status-playable","playable","2020-05-11 12:01:07.000" -"Night Trap - 25th Anniversary Edition - 0100D8500A692000","0100D8500A692000","status-playable;nvdec","playable","2022-08-08 13:16:14.000" -"Ninja Shodown","","status-playable","playable","2020-05-11 12:31:21.000" -"OkunoKA - 01006AB00BD82000","01006AB00BD82000","status-playable;online-broken","playable","2022-08-08 14:41:51.000" -"Mechstermination Force - 0100E4600D31A000","0100E4600D31A000","status-playable","playable","2024-07-04 05:39:15.000" -"Lines X","","status-playable","playable","2020-05-11 15:28:30.000" -"Katamari Damacy REROLL - 0100D7000C2C6000","0100D7000C2C6000","status-playable","playable","2022-08-02 21:35:05.000" -"Lifeless Planet - 01005B6008132000","01005B6008132000","status-playable","playable","2022-08-03 21:25:13.000" -"League of Evil - 01009C100390E000","01009C100390E000","online;status-playable","playable","2021-06-08 11:23:27.000" -"Life Goes On - 010006300AFFE000","010006300AFFE000","status-playable","playable","2021-01-29 19:01:20.000" -"Leisure Suit Larry: Wet Dreams Don't Dry - 0100A8E00CAA0000","0100A8E00CAA0000","status-playable","playable","2022-08-03 19:51:44.000" -"Legend of Kay Anniversary - 01002DB007A96000","01002DB007A96000","nvdec;status-playable","playable","2021-01-29 18:38:29.000" -"Kunio-Kun: The World Classics Collection - 010060400ADD2000","010060400ADD2000","online;status-playable","playable","2021-01-29 20:21:46.000" -"Letter Quest Remastered","","status-playable","playable","2020-05-11 21:30:34.000" -"Koi DX","","status-playable","playable","2020-05-11 21:37:51.000" -"Knights of Pen and Paper +1 Deluxier Edition","","status-playable","playable","2020-05-11 21:46:32.000" -"Late Shift - 0100055007B86000","0100055007B86000","nvdec;status-playable","playable","2021-02-01 18:43:58.000" -"Lethal League Blaze - 01003AB00983C000","01003AB00983C000","online;status-playable","playable","2021-01-29 20:13:31.000" -"Koloro - 01005D200C9AA000","01005D200C9AA000","status-playable","playable","2022-08-03 12:34:02.000" -"Little Dragons Cafe","","status-playable","playable","2020-05-12 00:00:52.000" -"Legendary Fishing - 0100A7700B46C000","0100A7700B46C000","online;status-playable","playable","2021-04-14 15:08:46.000" -"Knock-Knock - 010001A00A1F6000","010001A00A1F6000","nvdec;status-playable","playable","2021-02-01 20:03:19.000" -"KAMEN RIDER CLIMAX SCRAMBLE - 0100BDC00A664000","0100BDC00A664000","status-playable;nvdec;ldn-untested","playable","2024-07-03 08:51:11.000" -"Kingdom: New Lands - 0100BD9004AB6000","0100BD9004AB6000","status-playable","playable","2022-08-02 21:48:50.000" -"Lapis x Labyrinth - 01005E000D3D8000","01005E000D3D8000","status-playable","playable","2021-02-01 18:58:08.000" -"Last Day of June - 0100DA700879C000","0100DA700879C000","nvdec;status-playable","playable","2021-06-08 11:35:32.000" -"Levels+","","status-playable","playable","2020-05-12 13:51:39.000" -"Katana ZERO - 010029600D56A000","010029600D56A000","status-playable","playable","2022-08-26 08:09:09.000" -"Layers of Fear: Legacy","","nvdec;status-playable","playable","2021-02-15 16:30:41.000" -"Kotodama: The 7 Mysteries of Fujisawa - 010046600CCA4000","010046600CCA4000","audout;status-playable","playable","2021-02-01 20:28:37.000" -"Lichtspeer: Double Speer Edition","","status-playable","playable","2020-05-12 16:43:09.000" -"Koral","","UE4;crash;gpu;status-menus","menus","2020-11-16 12:41:26.000" -"KeroBlaster","","status-playable","playable","2020-05-12 20:42:52.000" -"Kentucky Robo Chicken","","status-playable","playable","2020-05-12 20:54:17.000" -"L.A. Noire - 0100830004FB6000","0100830004FB6000","status-playable","playable","2022-08-03 16:49:35.000" -"Kill The Bad Guy","","status-playable","playable","2020-05-12 22:16:10.000" -"Legendary Eleven - 0100A73006E74000","0100A73006E74000","status-playable","playable","2021-06-08 12:09:03.000" -"Kitten Squad - 01000C900A136000","01000C900A136000","status-playable;nvdec","playable","2022-08-03 12:01:59.000" -"Labyrinth of Refrain: Coven of Dusk - 010058500B3E0000","010058500B3E0000","status-playable","playable","2021-02-15 17:38:48.000" -"KAMIKO","","status-playable","playable","2020-05-13 12:48:57.000" -"Left-Right: The Mansion","","status-playable","playable","2020-05-13 13:02:12.000" -"Knight Terrors","","status-playable","playable","2020-05-13 13:09:22.000" -"Kingdom: Two Crowns","","status-playable","playable","2020-05-16 19:36:21.000" -"Kid Tripp","","crash;status-nothing","nothing","2020-10-15 07:41:23.000" -"King Oddball","","status-playable","playable","2020-05-13 13:47:57.000" -"KORG Gadget","","status-playable","playable","2020-05-13 13:57:24.000" -"Knights of Pen and Paper 2 Deluxiest Edition","","status-playable","playable","2020-05-13 14:07:00.000" -"Keep Talking and Nobody Explodes - 01008D400A584000","01008D400A584000","status-playable","playable","2021-02-15 18:05:21.000" -"Jet Lancer - 0100F3500C70C000","0100F3500C70C000","gpu;status-ingame","ingame","2021-02-15 18:15:47.000" -"Furi - 01000EC00AF98000","01000EC00AF98000","status-playable","playable","2022-07-27 12:21:20.000" -"Forgotton Anne - 010059E00B93C000","010059E00B93C000","nvdec;status-playable","playable","2021-02-15 18:28:07.000" -"GOD EATER 3 - 01001C700873E000","01001C700873E000","gpu;status-ingame;nvdec","ingame","2022-07-29 21:33:21.000" -"Guacamelee! Super Turbo Championship Edition","","status-playable","playable","2020-05-13 23:44:18.000" -"Frost - 0100B5300B49A000","0100B5300B49A000","status-playable","playable","2022-07-27 12:00:36.000" -"GO VACATION - 0100C1800A9B6000","0100C1800A9B6000","status-playable;nvdec;ldn-works","playable","2024-05-13 19:28:53.000" -"Grand Prix Story - 0100BE600D07A000","0100BE600D07A000","status-playable","playable","2022-08-01 12:42:23.000" -"Freedom Planet","","status-playable","playable","2020-05-14 12:23:06.000" -"Fossil Hunters - 0100CA500756C000","0100CA500756C000","status-playable;nvdec","playable","2022-07-27 11:37:20.000" -"For The King - 010069400B6BE000","010069400B6BE000","nvdec;status-playable","playable","2021-02-15 18:51:44.000" -"Flashback","","nvdec;status-playable","playable","2020-05-14 13:57:29.000" -"Golf Story","","status-playable","playable","2020-05-14 14:56:17.000" -"Firefighters: Airport Fire Department","","status-playable","playable","2021-02-15 19:17:00.000" -"Chocobo's Mystery Dungeon Every Buddy!","","slow;status-playable","playable","2020-05-26 13:53:13.000" -"CHOP","","","","2020-05-14 17:13:00.000" -"FunBox Party","","status-playable","playable","2020-05-15 12:07:02.000" -"Friday the 13th: Killer Puzzle - 010003F00BD48000","010003F00BD48000","status-playable","playable","2021-01-28 01:33:38.000" -"Johnny Turbo's Arcade Gate of Doom - 010069B002CDE000","010069B002CDE000","status-playable","playable","2022-07-29 12:17:50.000" -"Frederic: Resurrection of Music","","nvdec;status-playable","playable","2020-07-23 16:59:53.000" -"Frederic 2","","status-playable","playable","2020-07-23 16:44:37.000" -"Fort Boyard","","nvdec;slow;status-playable","playable","2020-05-15 13:22:53.000" -"Flipping Death - 01009FB002B2E000","01009FB002B2E000","status-playable","playable","2021-02-17 16:12:30.000" -"Flat Heroes - 0100C53004C52000","0100C53004C52000","gpu;status-ingame","ingame","2022-07-26 19:37:37.000" -"Flood of Light","","status-playable","playable","2020-05-15 14:15:25.000" -"FRAMED COLLECTION - 0100F1A00A5DC000","0100F1A00A5DC000","status-playable;nvdec","playable","2022-07-27 11:48:15.000" -"Guacamelee! 2","","status-playable","playable","2020-05-15 14:56:59.000" -"Flinthook","","online;status-playable","playable","2021-03-25 20:42:29.000" -"FORMA.8","","nvdec;status-playable","playable","2020-11-15 01:04:32.000" -"FOX n FORESTS - 01008A100A028000","01008A100A028000","status-playable","playable","2021-02-16 14:27:49.000" -"Gotcha Racing 2nd","","status-playable","playable","2020-07-23 17:14:04.000" -"Floor Kids - 0100DF9005E7A000","0100DF9005E7A000","status-playable;nvdec","playable","2024-08-18 19:38:49.000" -"Firefighters - The Simulation - 0100434003C58000","0100434003C58000","status-playable","playable","2021-02-19 13:32:05.000" -"Flip Wars - 010095A004040000","010095A004040000","services;status-ingame;ldn-untested","ingame","2022-05-02 15:39:18.000" -"TowerFall","","status-playable","playable","2020-05-16 18:58:07.000" -"Towertale","","status-playable","playable","2020-10-15 13:56:58.000" -"Football Manager Touch 2018 - 010097F0099B4000","010097F0099B4000","status-playable","playable","2022-07-26 20:17:56.000" -"Fruitfall Crush","","status-playable","playable","2020-10-20 11:33:33.000" -"Forest Home","","","","2020-05-17 13:33:08.000" -"Fly O'Clock VS","","status-playable","playable","2020-05-17 13:39:52.000" -"Gal Metal - 01B8000C2EA000","","status-playable","playable","2022-07-27 20:57:48.000" -"Gear.Club Unlimited - 010065E003FD8000","010065E003FD8000","status-playable","playable","2021-06-08 13:03:19.000" -"Gear.Club Unlimited 2 - 010072900AFF0000","010072900AFF0000","status-playable;nvdec;online-broken","playable","2022-07-29 12:52:16.000" -"GRIP - 0100459009A2A000","0100459009A2A000","status-playable;nvdec;online-broken;UE4","playable","2022-08-01 15:00:22.000" -"Ginger: Beyond the Crystal - 0100C50007070000","0100C50007070000","status-playable","playable","2021-02-17 16:27:00.000" -"Slayin 2 - 01004E900EDDA000","01004E900EDDA000","gpu;status-ingame","ingame","2024-04-19 16:15:26.000" -"Grim Fandango Remastered - 0100B7900B024000","0100B7900B024000","status-playable;nvdec","playable","2022-08-01 13:55:58.000" -"Gal*Gun 2 - 010024700901A000","010024700901A000","status-playable;nvdec;UE4","playable","2022-07-27 12:45:37.000" -"Golem Gates - 01003C000D84C000","01003C000D84C000","status-ingame;crash;nvdec;online-broken;UE4","ingame","2022-07-30 11:35:11.000" -"Full Metal Furies","","online","","2020-05-18 13:22:06.000" -"GIGA WRECKER Alt. - 010045F00BFC2000","010045F00BFC2000","status-playable","playable","2022-07-29 14:13:54.000" -"Gelly Break - 01009D000AF3A000","01009D000AF3A000","UE4;status-playable","playable","2021-03-03 16:04:02.000" -"The World Next Door - 0100E6200D56E000","0100E6200D56E000","status-playable","playable","2022-09-21 14:15:23.000" -"GREEN - 010068D00AE68000","010068D00AE68000","status-playable","playable","2022-08-01 12:54:15.000" -"Feathery Ears","","","","2020-05-18 14:48:31.000" -"Gorogoa - 0100F2A005C98000","0100F2A005C98000","status-playable","playable","2022-08-01 11:55:08.000" -"Girls und Panzer Dream Tank Match DX - 01006DD00CC96000","01006DD00CC96000","status-playable;ldn-untested","playable","2022-09-12 16:07:11.000" -"Super Crush KO","","","","2020-05-18 15:49:23.000" -"Gem Smashers - 01001A4008192000","01001A4008192000","nvdec;status-playable","playable","2021-06-08 13:40:51.000" -"Grave Danger","","status-playable","playable","2020-05-18 17:41:28.000" -"Fury Unleashed","","crash;services;status-ingame","ingame","2020-10-18 11:52:40.000" -"TaniNani - 01007DB010D2C000","01007DB010D2C000","crash;kernel;status-nothing","nothing","2021-04-08 03:06:44.000" -"Atelier Escha & Logy: Alchemists Of The Dusk Sky DX - 0100E5600EE8E000","0100E5600EE8E000","status-playable;nvdec","playable","2022-11-20 16:01:41.000" -"Battle of Elemental Burst","","","","2020-05-18 23:27:22.000" -"Gun Crazy","","","","2020-05-18 23:47:28.000" -"Ascendant Hearts","","","","2020-05-19 08:50:44.000" -"Infinite Beyond the Mind","","","","2020-05-19 09:17:17.000" -"FullBlast","","status-playable","playable","2020-05-19 10:34:13.000" -"The Legend of Heroes: Trails of Cold Steel III","","status-playable","playable","2020-12-16 10:59:18.000" -"Goosebumps: The Game","","status-playable","playable","2020-05-19 11:56:52.000" -"Gonner","","status-playable","playable","2020-05-19 12:05:02.000" -"Monster Viator","","","","2020-05-19 12:15:18.000" -"Umihara Kawase Fresh","","","","2020-05-19 12:29:18.000" -"Operencia The Stolen Sun - 01006CF00CFA4000","01006CF00CFA4000","UE4;nvdec;status-playable","playable","2021-06-08 13:51:07.000" -"Goetia","","status-playable","playable","2020-05-19 12:55:39.000" -"Grid Mania","","status-playable","playable","2020-05-19 14:11:05.000" -"Pantsu Hunter","","status-playable","playable","2021-02-19 15:12:27.000" -"GOD WARS THE COMPLETE LEGEND","","nvdec;status-playable","playable","2020-05-19 14:37:50.000" -"Dark Burial","","","","2020-05-19 14:38:34.000" -"Langrisser I and II - 0100BAB00E8C0000","0100BAB00E8C0000","status-playable","playable","2021-02-19 15:46:10.000" -"My Secret Pets","","","","2020-05-19 15:26:56.000" -"Grass Cutter","","slow;status-ingame","ingame","2020-05-19 18:27:42.000" -"Giana Sisters: Twisted Dreams - Owltimate Edition - 01003830092B8000","01003830092B8000","status-playable","playable","2022-07-29 14:06:12.000" -"FUN! FUN! Animal Park - 010002F00CC20000","010002F00CC20000","status-playable","playable","2021-04-14 17:08:52.000" -"Graceful Explosion Machine","","status-playable","playable","2020-05-19 20:36:55.000" -"Garage","","status-playable","playable","2020-05-19 20:59:53.000" -"Game Dev Story","","status-playable","playable","2020-05-20 00:00:38.000" -"Gone Home - 0100EEC00AA6E000","0100EEC00AA6E000","status-playable","playable","2022-08-01 11:14:20.000" -"Geki Yaba Runner Anniversary Edition - 01000F000D9F0000","01000F000D9F0000","status-playable","playable","2021-02-19 18:59:07.000" -"Gridd: Retroenhanced","","status-playable","playable","2020-05-20 11:32:40.000" -"Green Game - 0100CBB0070EE000","0100CBB0070EE000","nvdec;status-playable","playable","2021-02-19 18:51:55.000" -"Glaive: Brick Breaker","","status-playable","playable","2020-05-20 12:15:59.000" -"Furwind - 0100A6B00D4EC000","0100A6B00D4EC000","status-playable","playable","2021-02-19 19:44:08.000" -"Goat Simulator - 010032600C8CE000","010032600C8CE000","32-bit;status-playable","playable","2022-07-29 21:02:33.000" -"Gnomes Garden 2","","status-playable","playable","2021-02-19 20:08:13.000" -"Gensokyo Defenders - 010000300C79C000","010000300C79C000","status-playable;online-broken;UE4","playable","2022-07-29 13:48:12.000" -"Guess the Character","","status-playable","playable","2020-05-20 13:14:19.000" -"Gato Roboto - 010025500C098000","010025500C098000","status-playable","playable","2023-01-20 15:04:11.000" -"Gekido Kintaro's Revenge","","status-playable","playable","2020-10-27 12:44:05.000" -"Ghost 1.0 - 0100EEB005ACC000","0100EEB005ACC000","status-playable","playable","2021-02-19 20:48:47.000" -"GALAK-Z: Variant S - 0100C9800A454000","0100C9800A454000","status-boots;online-broken","boots","2022-07-29 11:59:12.000" -"Cuphead - 0100A5C00D162000","0100A5C00D162000","status-playable","playable","2022-02-01 22:45:55.000" -"Darkest Dungeon - 01008F1008DA6000","01008F1008DA6000","status-playable;nvdec","playable","2022-07-22 18:49:18.000" -"Cabela's: The Hunt - Championship Edition - 0100E24004510000","0100E24004510000","status-menus;32-bit","menus","2022-07-21 20:21:25.000" -"Darius Cozmic Collection","","status-playable","playable","2021-02-19 20:59:06.000" -"Ion Fury - 010041C00D086000","010041C00D086000","status-ingame;vulkan-backend-bug","ingame","2022-08-07 08:27:51.000" -"Void Bastards - 0100D010113A8000","0100D010113A8000","status-playable","playable","2022-10-15 00:04:19.000" -"Our two Bedroom Story - 010097F010FE6000","010097F010FE6000","gpu;status-ingame;nvdec","ingame","2023-10-10 17:41:20.000" -"Dark Witch Music Episode: Rudymical","","status-playable","playable","2020-05-22 09:44:44.000" -"Cave Story+","","status-playable","playable","2020-05-22 09:57:25.000" -"Crawl","","status-playable","playable","2020-05-22 10:16:05.000" -"Chasm","","status-playable","playable","2020-10-23 11:03:43.000" -"Princess Closet","","","","2020-05-22 10:34:06.000" -"Color Zen","","status-playable","playable","2020-05-22 10:56:17.000" -"Coffee Crisis - 0100CF800C810000","0100CF800C810000","status-playable","playable","2021-02-20 12:34:52.000" -"Croc's World","","status-playable","playable","2020-05-22 11:21:09.000" -"Chicken Rider","","status-playable","playable","2020-05-22 11:31:17.000" -"Caveman Warriors","","status-playable","playable","2020-05-22 11:44:20.000" -"Clustertruck - 010096900A4D2000","010096900A4D2000","slow;status-ingame","ingame","2021-02-19 21:07:09.000" -"Yumeutsutsu Re:After - 0100B56011502000","0100B56011502000","status-playable","playable","2022-11-20 16:09:06.000" -"Danger Mouse - 01003ED0099B0000","01003ED0099B0000","status-boots;crash;online","boots","2022-07-22 15:49:45.000" -"Circle of Sumo","","status-playable","playable","2020-05-22 12:45:21.000" -"Chicken Range - 0100F6C00A016000","0100F6C00A016000","status-playable","playable","2021-04-23 12:14:23.000" -"Conga Master Party!","","status-playable","playable","2020-05-22 13:22:24.000" -"SNK HEROINES Tag Team Frenzy - 010027F00AD6C000","010027F00AD6C000","status-playable;nvdec;online-broken;ldn-untested","playable","2022-08-14 14:19:25.000" -"Conduct TOGETHER! - 010043700C9B0000","010043700C9B0000","nvdec;status-playable","playable","2021-02-20 12:59:00.000" -"Calculation Castle: Greco's Ghostly Challenge ""Addition""","","32-bit;status-playable","playable","2020-11-01 23:40:11.000" -"Calculation Castle: Greco's Ghostly Challenge ""Subtraction""","","32-bit;status-playable","playable","2020-11-01 23:47:42.000" -"Calculation Castle: Greco's Ghostly Challenge ""Multiplication""","","32-bit;status-playable","playable","2020-11-02 00:04:33.000" -"Calculation Castle: Greco's Ghostly Challenge ""Division""","","32-bit;status-playable","playable","2020-11-01 23:54:55.000" -"Chicken Assassin: Reloaded - 0100E3C00A118000","0100E3C00A118000","status-playable","playable","2021-02-20 13:29:01.000" -"eSports Legend","","","","2020-05-22 18:58:46.000" -"Crypt of the Necrodancer - 0100CEA007D08000","0100CEA007D08000","status-playable;nvdec","playable","2022-11-01 09:52:06.000" -"Crash Bandicoot N. Sane Trilogy - 0100D1B006744000","0100D1B006744000","status-playable","playable","2024-02-11 11:38:14.000" -"Castle of Heart - 01003C100445C000","01003C100445C000","status-playable;nvdec","playable","2022-07-21 23:10:45.000" -"Darkwood","","status-playable","playable","2021-01-08 21:24:06.000" -"A Fold Apart","","","","2020-05-23 08:10:49.000" -"Blind Men - 010089D011310000","010089D011310000","audout;status-playable","playable","2021-02-20 14:15:38.000" -"Darksiders Warmastered Edition - 0100E1400BA96000","0100E1400BA96000","status-playable;nvdec","playable","2023-03-02 18:08:09.000" -"OBAKEIDORO!","","nvdec;online;status-playable","playable","2020-10-16 16:57:34.000" -"De:YABATANIEN","","","","2020-05-23 10:48:51.000" -"Crash Dummy","","nvdec;status-playable","playable","2020-05-23 11:12:43.000" -"Castlevania Anniversary Collection","","audio;status-playable","playable","2020-05-23 11:40:29.000" -"Flan - 010038200E088000","010038200E088000","status-ingame;crash;regression","ingame","2021-11-17 07:39:28.000" -"Sisters Royale: Five Sisters Under Fire","","","","2020-05-23 15:12:09.000" -"Game Tengoku CruisinMix Special","","","","2020-05-23 17:30:59.000" -"Cosmic Star Heroine - 010067C00A776000","010067C00A776000","status-playable","playable","2021-02-20 14:30:47.000" -"Croixleur Sigma - 01000F0007D92000","01000F0007D92000","status-playable;online","playable","2022-07-22 14:26:54.000" -"Cities: Skylines - Nintendo Switch Edition","","status-playable","playable","2020-12-16 10:34:57.000" -"Castlestorm - 010097C00AB66000","010097C00AB66000","status-playable;nvdec","playable","2022-07-21 22:49:14.000" -"Coffin Dodgers - 0100178009648000","0100178009648000","status-playable","playable","2021-02-20 14:57:41.000" -"Child of Light","","nvdec;status-playable","playable","2020-12-16 10:23:10.000" -"Wizards of Brandel","","status-nothing","nothing","2020-10-14 15:52:33.000" -"Contra Anniversary Collection - 0100DCA00DA7E000","0100DCA00DA7E000","status-playable","playable","2022-07-22 11:30:12.000" -"Cartoon Network Adventure Time: Pirates of the Enchiridion - 0100C4E004406000","0100C4E004406000","status-playable;nvdec","playable","2022-07-21 21:49:01.000" -"Claybook - 010009300AA6C000","010009300AA6C000","slow;status-playable;nvdec;online;UE4","playable","2022-07-22 11:11:34.000" -"Crashbots - 0100BF200CD74000","0100BF200CD74000","status-playable","playable","2022-07-22 13:50:52.000" -"Crossing Souls - 0100B1E00AA56000","0100B1E00AA56000","nvdec;status-playable","playable","2021-02-20 15:42:54.000" -"Groove Coaster: Wai Wai Party!!!! - 0100EB500D92E000","0100EB500D92E000","status-playable;nvdec;ldn-broken","playable","2021-11-06 14:54:27.000" -"Candle - The Power of the Flame","","nvdec;status-playable","playable","2020-05-26 12:10:20.000" -"Minecraft Dungeons - 01006C100EC08000","01006C100EC08000","status-playable;nvdec;online-broken;UE4","playable","2024-06-26 22:10:43.000" -"Constructor Plus","","status-playable","playable","2020-05-26 12:37:40.000" -"The Wonderful 101: Remastered - 0100B1300FF08000","0100B1300FF08000","slow;status-playable;nvdec","playable","2022-09-30 13:49:28.000" -"Dandara","","status-playable","playable","2020-05-26 12:42:33.000" -"ChromaGun","","status-playable","playable","2020-05-26 12:56:42.000" -"Crayola Scoot - 0100C66007E96000","0100C66007E96000","status-playable;nvdec","playable","2022-07-22 14:01:55.000" -"Chess Ultra - 0100A5900472E000","0100A5900472E000","status-playable;UE4","playable","2023-08-30 23:06:31.000" -"Clue","","crash;online;status-menus","menus","2020-11-10 09:23:48.000" -"ACA NEOGEO Metal Slug X","","crash;services;status-menus","menus","2020-05-26 14:07:20.000" -"ACA NEOGEO ZUPAPA!","","online;status-playable","playable","2021-03-25 20:07:33.000" -"ACA NEOGEO WORLD HEROES PERFECT","","crash;services;status-menus","menus","2020-05-26 14:14:36.000" -"ACA NEOGEO WAKU WAKU 7 - 0100CEF001DC0000","0100CEF001DC0000","online;status-playable","playable","2021-04-10 14:20:52.000" -"ACA NEOGEO THE SUPER SPY - 0100F7F00AFA2000","0100F7F00AFA2000","online;status-playable","playable","2021-04-10 14:26:33.000" -"ACA NEOGEO THE LAST BLADE 2 - 0100699008792000","0100699008792000","online;status-playable","playable","2021-04-10 14:31:54.000" -"ACA NEOGEO THE KING OF FIGHTERS '99 - 0100583001DCA000","0100583001DCA000","online;status-playable","playable","2021-04-10 14:36:56.000" -"ACA NEOGEO THE KING OF FIGHTERS '98","","crash;services;status-menus","menus","2020-05-26 14:54:20.000" -"ACA NEOGEO THE KING OF FIGHTERS '97 - 0100170008728000","0100170008728000","online;status-playable","playable","2021-04-10 14:43:27.000" -"ACA NEOGEO THE KING OF FIGHTERS '96 - 01006F0004FB4000","01006F0004FB4000","online;status-playable","playable","2021-04-10 14:49:10.000" -"ACA NEOGEO THE KING OF FIGHTERS '95 - 01009DC001DB6000","01009DC001DB6000","status-playable","playable","2021-03-29 20:27:35.000" -"ACA NEOGEO THE KING OF FIGHTERS '94","","crash;services;status-menus","menus","2020-05-26 15:03:44.000" -"ACA NEOGEO THE KING OF FIGHTERS 2003 - 0100EF100AFE6000","0100EF100AFE6000","online;status-playable","playable","2021-04-10 14:54:31.000" -"ACA NEOGEO THE KING OF FIGHTERS 2002 - 0100CFD00AFDE000","0100CFD00AFDE000","online;status-playable","playable","2021-04-10 15:01:55.000" -"ACA NEOGEO THE KING OF FIGHTERS 2001 - 010048200AFC2000","010048200AFC2000","online;status-playable","playable","2021-04-10 15:16:23.000" -"ACA NEOGEO THE KING OF FIGHTERS 2000 - 0100B97002B44000","0100B97002B44000","online;status-playable","playable","2021-04-10 15:24:35.000" -"ACA NEOGEO SUPER SIDEKICKS 3: THE NEXT GLORY - 0100A4D00A308000","0100A4D00A308000","online;status-playable","playable","2021-04-10 15:39:22.000" -"ACA NEOGEO SUPER SIDEKICKS 2 - 010055A00A300000","010055A00A300000","online;status-playable","playable","2021-04-10 16:05:58.000" -"ACA NEOGEO SPIN MASTER - 01007D1004DBA000","01007D1004DBA000","online;status-playable","playable","2021-04-10 15:50:19.000" -"ACA NEOGEO SHOCK TROOPERS","","crash;services;status-menus","menus","2020-05-26 15:29:34.000" -"ACA NEOGEO SENGOKU 3 - 01008D000877C000","01008D000877C000","online;status-playable","playable","2021-04-10 16:11:53.000" -"ACA NEOGEO SENGOKU 2 - 01009B300872A000","01009B300872A000","online;status-playable","playable","2021-04-10 17:36:44.000" -"ACA NEOGEO SAMURAI SHODOWN SPECIAL V - 010049F00AFE8000","010049F00AFE8000","online;status-playable","playable","2021-04-10 18:07:13.000" -"ACA NEOGEO SAMURAI SHODOWN IV - 010047F001DBC000","010047F001DBC000","online;status-playable","playable","2021-04-12 12:58:54.000" -"ACA NEOGEO SAMURAI SHODOWN - 01005C9002B42000","01005C9002B42000","online;status-playable","playable","2021-04-01 17:11:35.000" -"ACA NEOGEO REAL BOUT FATAL FURY SPECIAL - 010088500878C000","010088500878C000","online;status-playable","playable","2021-04-01 17:18:27.000" -"ACA NEOGEO OVER TOP - 01003A5001DBA000","01003A5001DBA000","status-playable","playable","2021-02-21 13:16:25.000" -"ACA NEOGEO NINJA COMMANDO - 01007E800AFB6000","01007E800AFB6000","online;status-playable","playable","2021-04-01 17:28:18.000" -"ACA NEOGEO NINJA COMBAT - 010052A00A306000","010052A00A306000","status-playable","playable","2021-03-29 21:17:28.000" -"ACA NEOGEO NEO TURF MASTERS - 01002E70032E8000","01002E70032E8000","status-playable","playable","2021-02-21 15:12:01.000" -"ACA NEOGEO Money Puzzle Exchanger - 010038F00AFA0000","010038F00AFA0000","online;status-playable","playable","2021-04-01 17:59:56.000" -"ACA NEOGEO METAL SLUG 4 - 01009CE00AFAE000","01009CE00AFAE000","online;status-playable","playable","2021-04-01 18:12:18.000" -"ACA NEOGEO METAL SLUG 3","","crash;services;status-menus","menus","2020-05-26 16:32:45.000" -"ACA NEOGEO METAL SLUG 2 - 010086300486E000","010086300486E000","online;status-playable","playable","2021-04-01 19:25:52.000" -"ACA NEOGEO METAL SLUG - 0100EBE002B3E000","0100EBE002B3E000","status-playable","playable","2021-02-21 13:56:48.000" -"ACA NEOGEO MAGICIAN LORD - 01007920038F6000","01007920038F6000","online;status-playable","playable","2021-04-01 19:33:26.000" -"ACA NEOGEO MAGICAL DROP II","","crash;services;status-menus","menus","2020-05-26 16:48:24.000" -"SNK Gals Fighters","","","","2020-05-26 16:56:16.000" -"ESP Ra.De. Psi - 0100F9600E746000","0100F9600E746000","audio;slow;status-ingame","ingame","2024-03-07 15:05:08.000" -"ACA NEOGEO LEAGUE BOWLING","","crash;services;status-menus","menus","2020-05-26 17:11:04.000" -"ACA NEOGEO LAST RESORT - 01000D10038E6000","01000D10038E6000","online;status-playable","playable","2021-04-01 19:51:22.000" -"ACA NEOGEO GHOST PILOTS - 01005D700A2F8000","01005D700A2F8000","online;status-playable","playable","2021-04-01 20:26:45.000" -"ACA NEOGEO GAROU: MARK OF THE WOLVES - 0100CB2001DB8000","0100CB2001DB8000","online;status-playable","playable","2021-04-01 20:31:10.000" -"ACA NEOGEO FOOTBALL FRENZY","","status-playable","playable","2021-03-29 20:12:12.000" -"ACA NEOGEO FATAL FURY - 0100EE6002B48000","0100EE6002B48000","online;status-playable","playable","2021-04-01 20:36:23.000" -"ACA NEOGEO CROSSED SWORDS - 0100D2400AFB0000","0100D2400AFB0000","online;status-playable","playable","2021-04-01 20:42:59.000" -"ACA NEOGEO BLAZING STAR","","crash;services;status-menus","menus","2020-05-26 17:29:02.000" -"ACA NEOGEO BASEBALL STARS PROFESSIONAL - 01003FE00A2F6000","01003FE00A2F6000","online;status-playable","playable","2021-04-01 21:23:05.000" -"ACA NEOGEO AGGRESSORS OF DARK KOMBAT - 0100B4800AFBA000","0100B4800AFBA000","online;status-playable","playable","2021-04-01 22:48:01.000" -"ACA NEOGEO AERO FIGHTERS 3 - 0100B91008780000","0100B91008780000","online;status-playable","playable","2021-04-12 13:11:17.000" -"ACA NEOGEO 3 COUNT BOUT - 0100FC000AFC6000","0100FC000AFC6000","online;status-playable","playable","2021-04-12 13:16:42.000" -"ACA NEOGEO 2020 SUPER BASEBALL - 01003C400871E000","01003C400871E000","online;status-playable","playable","2021-04-12 13:23:51.000" -"Arcade Archives Traverse USA - 010029D006ED8000","010029D006ED8000","online;status-playable","playable","2021-04-15 08:11:06.000" -"Arcade Archives TERRA CRESTA","","crash;services;status-menus","menus","2020-08-18 20:20:55.000" -"Arcade Archives STAR FORCE - 010069F008A38000","010069F008A38000","online;status-playable","playable","2021-04-15 08:39:09.000" -"Arcade Archives Sky Skipper - 010008F00B054000","010008F00B054000","online;status-playable","playable","2021-04-15 08:58:09.000" -"Arcade Archives RYGAR - 0100C2D00981E000","0100C2D00981E000","online;status-playable","playable","2021-04-15 08:48:30.000" -"Arcade Archives Renegade - 010081E001DD2000","010081E001DD2000","status-playable;online","playable","2022-07-21 11:45:40.000" -"Arcade Archives PUNCH-OUT!! - 01001530097F8000","01001530097F8000","online;status-playable","playable","2021-03-25 22:10:55.000" -"Arcade Archives OMEGA FIGHTER","","crash;services;status-menus","menus","2020-08-18 20:50:54.000" -"Arcade Archives Ninja-Kid","","online;status-playable","playable","2021-03-26 20:55:07.000" -"Arcade Archives NINJA GAIDEN - 01003EF00D3B4000","01003EF00D3B4000","audio;online;status-ingame","ingame","2021-04-12 16:27:53.000" -"Arcade Archives MOON PATROL - 01003000097FE000","01003000097FE000","online;status-playable","playable","2021-03-26 11:42:04.000" -"Arcade Archives MARIO BROS. - 0100755004608000","0100755004608000","online;status-playable","playable","2021-03-26 11:31:32.000" -"Arcade Archives Kid's Horehore Daisakusen - 0100E7C001DE0000","0100E7C001DE0000","online;status-playable","playable","2021-04-12 16:21:29.000" -"Arcade Archives Kid Niki Radical Ninja - 010010B008A36000","010010B008A36000","audio;status-ingame;online","ingame","2022-07-21 11:02:04.000" -"Arcade Archives Ikki - 01000DB00980A000","01000DB00980A000","online;status-playable","playable","2021-03-25 23:11:28.000" -"Arcade Archives HEROIC EPISODE - 01009A4008A30000","01009A4008A30000","online;status-playable","playable","2021-03-25 23:01:26.000" -"Arcade Archives DOUBLE DRAGON II The Revenge - 01009E3001DDE000","01009E3001DDE000","online;status-playable","playable","2021-04-12 16:05:29.000" -"Arcade Archives DOUBLE DRAGON - 0100F25001DD0000","0100F25001DD0000","online;status-playable","playable","2021-03-25 22:44:34.000" -"Arcade Archives DONKEY KONG","","Needs Update;crash;services;status-menus","menus","2021-03-24 18:18:43.000" -"Arcade Archives CRAZY CLIMBER - 0100BB1001DD6000","0100BB1001DD6000","online;status-playable","playable","2021-03-25 22:24:15.000" -"Arcade Archives City CONNECTION - 010007A00980C000","010007A00980C000","online;status-playable","playable","2021-03-25 22:16:15.000" -"Arcade Archives 10-Yard Fight - 0100BE80097FA000","0100BE80097FA000","online;status-playable","playable","2021-03-25 21:26:41.000" -"Ark: Survival Evolved - 0100D4A00B284000","0100D4A00B284000","gpu;status-ingame;nvdec;online-broken;UE4;ldn-untested","ingame","2024-04-16 00:53:56.000" -"Art of Balance - 01008EC006BE2000","01008EC006BE2000","gpu;status-ingame;ldn-works","ingame","2022-07-21 17:13:57.000" -"Aces of the Luftwaffe Squadron","","nvdec;slow;status-playable","playable","2020-05-27 12:29:42.000" -"Atelier Lulua ~ The Scion of Arland ~","","nvdec;status-playable","playable","2020-12-16 14:29:19.000" -"Apocalipsis","","deadlock;status-menus","menus","2020-05-27 12:56:37.000" -"Aqua Moto Racing Utopia - 0100D0D00516A000","0100D0D00516A000","status-playable","playable","2021-02-21 21:21:00.000" -"Arc of Alchemist - 0100C7D00E6A0000","0100C7D00E6A0000","status-playable;nvdec","playable","2022-10-07 19:15:54.000" -"1979 Revolution: Black Friday - 0100D1000B18C000","0100D1000B18C000","nvdec;status-playable","playable","2021-02-21 21:03:43.000" -"ABZU - 0100C1300BBC6000","0100C1300BBC6000","status-playable;UE4","playable","2022-07-19 15:02:52.000" -"Asterix & Obelix XXL 2 - 010050400BD38000","010050400BD38000","deadlock;status-ingame;nvdec","ingame","2022-07-21 17:54:14.000" -"Astro Bears Party","","status-playable","playable","2020-05-28 11:21:58.000" -"AQUA KITTY UDX - 0100AC10085CE000","0100AC10085CE000","online;status-playable","playable","2021-04-12 15:34:11.000" -"Assassin's Creed III Remastered - 01007F600B134000","01007F600B134000","status-boots;nvdec","boots","2024-06-25 20:12:11.000" -"Antiquia Lost","","status-playable","playable","2020-05-28 11:57:32.000" -"Animal Super Squad - 0100EFE009424000","0100EFE009424000","UE4;status-playable","playable","2021-04-23 20:50:50.000" -"Anima: Arcane Edition - 010033F00B3FA000","010033F00B3FA000","nvdec;status-playable","playable","2021-01-26 16:55:51.000" -"American Ninja Warrior: Challenge - 010089D00A3FA000","010089D00A3FA000","nvdec;status-playable","playable","2021-06-09 13:11:17.000" -"Air Conflicts: Pacific Carriers","","status-playable","playable","2021-01-04 10:52:50.000" -"Agatha Knife","","status-playable","playable","2020-05-28 12:37:58.000" -"ACORN Tactics - 0100DBC0081A4000","0100DBC0081A4000","status-playable","playable","2021-02-22 12:57:40.000" -"Anarcute - 010050900E1C6000","010050900E1C6000","status-playable","playable","2021-02-22 13:17:59.000" -"39 Days to Mars - 0100AF400C4CE000","0100AF400C4CE000","status-playable","playable","2021-02-21 22:12:46.000" -"Animal Rivals Switch - 010065B009B3A000","010065B009B3A000","status-playable","playable","2021-02-22 14:02:42.000" -"88 Heroes","","status-playable","playable","2020-05-28 14:13:02.000" -"Aegis Defenders - 01008E60065020000","01008E6006502000","status-playable","playable","2021-02-22 13:29:33.000" -"Jeopardy! - 01006E400AE2A000","01006E400AE2A000","audout;nvdec;online;status-playable","playable","2021-02-22 13:53:46.000" -"Akane - 01007F100DE52000","01007F100DE52000","status-playable;nvdec","playable","2022-07-21 00:12:18.000" -"Aaero - 010097A00CC0A000","010097A00CC0A000","status-playable;nvdec","playable","2022-07-19 14:49:55.000" -"99Vidas","","online;status-playable","playable","2020-10-29 13:00:40.000" -"AngerForce: Reloaded for Nintendo Switch - 010001E00A5F6000","010001E00A5F6000","status-playable","playable","2022-07-21 10:37:17.000" -"36 Fragments of Midnight","","status-playable","playable","2020-05-28 15:12:59.000" -"Akihabara - Feel the Rhythm Remixed - 010053100B0EA000","010053100B0EA000","status-playable","playable","2021-02-22 14:39:35.000" -"Bertram Fiddle Episode 2: A Bleaker Predicklement - 010021F00C1C0000","010021F00C1C0000","nvdec;status-playable","playable","2021-02-22 14:56:37.000" -"6180 the moon","","status-playable","playable","2020-05-28 15:39:24.000" -"Ace of Seafood - 0100FF1004D56000","0100FF1004D56000","status-playable","playable","2022-07-19 15:32:25.000" -"12 orbits","","status-playable","playable","2020-05-28 16:13:26.000" -"Access Denied - 0100A9900CB5C000","0100A9900CB5C000","status-playable","playable","2022-07-19 15:25:10.000" -"Air Hockey","","status-playable","playable","2020-05-28 16:44:37.000" -"2064: Read Only Memories","","deadlock;status-menus","menus","2020-05-28 16:53:58.000" -"12 is Better Than 6 - 01007F600D1B8000","01007F600D1B8000","status-playable","playable","2021-02-22 16:10:12.000" -"Sid Meier's Civilization VI - 010044500C182000","010044500C182000","status-playable;ldn-untested","playable","2024-04-08 16:03:40.000" -"Sniper Elite V2 Remastered - 0100BB000A3AA000","0100BB000A3AA000","slow;status-ingame;nvdec;online-broken;ldn-untested","ingame","2022-08-14 13:23:13.000" -"South Park: The Fractured But Whole - 01008F2005154000","01008F2005154000","slow;status-playable;online-broken","playable","2024-07-08 17:47:28.000" -"SkyScrappers","","status-playable","playable","2020-05-28 22:11:25.000" -"Shio - 0100C2F00A568000","0100C2F00A568000","status-playable","playable","2021-02-22 16:25:09.000" -"NBA 2K18 - 0100760002048000","0100760002048000","gpu;status-ingame;ldn-untested","ingame","2022-08-06 14:17:51.000" -"Sky Force Anniversary - 010083100B5CA000","010083100B5CA000","status-playable;online-broken","playable","2022-08-12 20:50:07.000" -"Slay the Spire - 010026300BA4A000","010026300BA4A000","status-playable","playable","2023-01-20 15:09:26.000" -"Sky Gamblers: Storm Raiders - 010093D00AC38000","010093D00AC38000","gpu;audio;status-ingame;32-bit","ingame","2022-08-12 21:13:36.000" -"Shovel Knight: Treasure Trove","","status-playable","playable","2021-02-14 18:24:39.000" -"Sine Mora EX - 01002820036A8000","01002820036A8000","gpu;status-ingame;online-broken","ingame","2022-08-12 19:36:18.000" -"NBA Playgrounds - 0100F5A008126000","0100F5A008126000","status-playable;nvdec;online-broken;UE4","playable","2022-08-06 16:13:44.000" -"Shut Eye","","status-playable","playable","2020-07-23 18:08:35.000" -"SINNER: Sacrifice for Redemption - 0100B16009C10000","0100B16009C10000","status-playable;nvdec;UE4;vulkan-backend-bug","playable","2022-08-12 20:37:33.000" -"SKYPEACE","","status-playable","playable","2020-05-29 14:14:30.000" -"Slain","","status-playable","playable","2020-05-29 14:26:16.000" -"Umihara Kawase BaZooka!","","","","2020-05-29 14:56:48.000" -"Sigi - A Fart for Melusina - 01007FC00B674000","01007FC00B674000","status-playable","playable","2021-02-22 16:46:58.000" -"Sky Ride - 0100DDB004F30000","0100DDB004F30000","status-playable","playable","2021-02-22 16:53:07.000" -"Soccer Slammers","","status-playable","playable","2020-05-30 07:48:14.000" -"Songbringer","","status-playable","playable","2020-06-22 10:42:02.000" -"Sky Rogue","","status-playable","playable","2020-05-30 08:26:28.000" -"Shovel Knight: Specter of Torment","","status-playable","playable","2020-05-30 08:34:17.000" -"Snow Moto Racing Freedom - 010045300516E000","010045300516E000","gpu;status-ingame;vulkan-backend-bug","ingame","2022-08-15 16:05:14.000" -"Snake Pass - 0100C0F0020E8000","0100C0F0020E8000","status-playable;nvdec;UE4","playable","2022-01-03 04:31:52.000" -"Shu","","nvdec;status-playable","playable","2020-05-30 09:08:59.000" -"SOLDAM Drop, Connect, Erase","","status-playable","playable","2020-05-30 09:18:54.000" -"SkyTime","","slow;status-ingame","ingame","2020-05-30 09:24:51.000" -"NBA 2K19 - 01001FF00B544000","01001FF00B544000","crash;ldn-untested;services;status-nothing","nothing","2021-04-16 13:07:21.000" -"Shred!2 - Freeride MTB","","status-playable","playable","2020-05-30 14:34:09.000" -"Skelly Selest","","status-playable","playable","2020-05-30 15:38:18.000" -"Snipperclips Plus - 01008E20047DC000","01008E20047DC000","status-playable","playable","2023-02-14 20:20:13.000" -"SolDivide for Nintendo Switch - 0100590009C38000","0100590009C38000","32-bit;status-playable","playable","2021-06-09 14:13:03.000" -"Slime-san","","status-playable","playable","2020-05-30 16:15:12.000" -"Skies of Fury","","status-playable","playable","2020-05-30 16:40:54.000" -"SlabWell - 01003AD00DEAE000","01003AD00DEAE000","status-playable","playable","2021-02-22 17:02:51.000" -"Smoke and Sacrifice - 0100207007EB2000","0100207007EB2000","status-playable","playable","2022-08-14 12:38:27.000" -"Sky Gamblers - Afterburner - 010003F00CC98000","010003F00CC98000","gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug","ingame","2022-08-12 21:04:55.000" -"Slice Dice & Rice - 0100F4500AA4E000","0100F4500AA4E000","online;status-playable","playable","2021-02-22 17:44:23.000" -"Slayaway Camp: Butcher's Cut - 0100501006494000","0100501006494000","status-playable;opengl-backend-bug","playable","2022-08-12 23:44:05.000" -"Snowboarding the Next Phase - 0100BE200C34A000","0100BE200C34A000","nvdec;status-playable","playable","2021-02-23 12:56:58.000" -"Skylanders Imaginators","","crash;services;status-boots","boots","2020-05-30 18:49:18.000" -"Slime-san Superslime Edition","","status-playable","playable","2020-05-30 19:08:08.000" -"Skee-Ball","","status-playable","playable","2020-11-16 04:44:07.000" -"Marvel Ultimate Alliance 3: The Black Order - 010060700AC50000","010060700AC50000","status-playable;nvdec;ldn-untested","playable","2024-02-14 19:51:51.000" -"The Elder Scrolls V: Skyrim - 01000A10041EA000","01000A10041EA000","gpu;status-ingame;crash","ingame","2024-07-14 03:21:31.000" -"Risk of Rain","","","","2020-05-31 22:32:45.000" -"Risk of Rain 2 - 010076D00E4BA000","010076D00E4BA000","status-playable;online-broken","playable","2024-03-04 17:01:05.000" -"The Mummy Demastered - 0100496004194000","0100496004194000","status-playable","playable","2021-02-23 13:11:27.000" -"Teslagrad - 01005C8005F34000","01005C8005F34000","status-playable","playable","2021-02-23 14:41:02.000" -"Pushy and Pully in Blockland","","status-playable","playable","2020-07-04 11:44:41.000" -"The Raven Remastered - 010058A00BF1C000","010058A00BF1C000","status-playable;nvdec","playable","2022-08-22 20:02:47.000" -"Reed Remastered","","","","2020-05-31 23:15:15.000" -"The Infectious Madness of Doctor Dekker - 01008940086E0000","01008940086E0000","status-playable;nvdec","playable","2022-08-22 16:45:01.000" -"The Fall","","gpu;status-ingame","ingame","2020-05-31 23:31:16.000" -"The Fall Part 2: Unbound","","status-playable","playable","2021-11-06 02:18:08.000" -"The Red Strings Club","","status-playable","playable","2020-06-01 10:51:18.000" -"Omega Labyrinth Life - 01001D600E51A000","01001D600E51A000","status-playable","playable","2021-02-23 21:03:03.000" -"The Mystery of the Hudson Case","","status-playable","playable","2020-06-01 11:03:36.000" -"Tennis World Tour - 0100092006814000","0100092006814000","status-playable;online-broken","playable","2022-08-22 14:27:10.000" -"The Lost Child - 01008A000A404000","01008A000A404000","nvdec;status-playable","playable","2021-02-23 15:44:20.000" -"Little Misfortune - 0100E7000E826000","0100E7000E826000","nvdec;status-playable","playable","2021-02-23 20:39:44.000" -"The End is Nigh","","status-playable","playable","2020-06-01 11:26:45.000" -"The Caligula Effect: Overdose","","UE4;gpu;status-ingame","ingame","2021-01-04 11:07:50.000" -"The Flame in the Flood: Complete Edition - 0100C38004DCC000","0100C38004DCC000","gpu;status-ingame;nvdec;UE4","ingame","2022-08-22 16:23:49.000" -"The Journey Down: Chapter One - 010052C00B184000","010052C00B184000","nvdec;status-playable","playable","2021-02-24 13:32:41.000" -"The Journey Down: Chapter Two","","nvdec;status-playable","playable","2021-02-24 13:32:13.000" -"The Journey Down: Chapter Three - 01006BC00B188000","01006BC00B188000","nvdec;status-playable","playable","2021-02-24 13:45:27.000" -"The Mooseman - 010033300AC1A000","010033300AC1A000","status-playable","playable","2021-02-24 12:58:57.000" -"The Long Reach - 010052B003A38000","010052B003A38000","nvdec;status-playable","playable","2021-02-24 14:09:48.000" -"Asdivine Kamura","","","","2020-06-01 15:04:50.000" -"THE LAST REMNANT Remastered - 0100AC800D022000","0100AC800D022000","status-playable;nvdec;UE4","playable","2023-02-09 17:24:44.000" -"The Princess Guide - 0100E6A00B960000","0100E6A00B960000","status-playable","playable","2021-02-24 14:23:34.000" -"The LEGO NINJAGO Movie Video Game - 01007FC00206E000","01007FC00206E000","status-nothing;crash","nothing","2022-08-22 19:12:53.000" -"The Next Penelope - 01000CF0084BC000","01000CF0084BC000","status-playable","playable","2021-01-29 16:26:11.000" -"Tennis","","status-playable","playable","2020-06-01 20:50:36.000" -"The King's Bird - 010020500BD98000","010020500BD98000","status-playable","playable","2022-08-22 19:07:46.000" -"The First Tree - 010098800A1E4000","010098800A1E4000","status-playable","playable","2021-02-24 15:51:05.000" -"The Jackbox Party Pack - 0100AE5003EE6000","0100AE5003EE6000","status-playable;online-working","playable","2023-05-28 09:28:40.000" -"The Jackbox Party Pack 2 - 010015D003EE4000","010015D003EE4000","status-playable;online-working","playable","2022-08-22 18:23:40.000" -"The Jackbox Party Pack 3 - 0100CC80013D6000","0100CC80013D6000","slow;status-playable;online-working","playable","2022-08-22 18:41:06.000" -"The Jackbox Party Pack 4 - 0100E1F003EE8000","0100E1F003EE8000","status-playable;online-working","playable","2022-08-22 18:56:34.000" -"The LEGO Movie 2 - Videogame - 0100A4400BE74000","0100A4400BE74000","status-playable","playable","2023-03-01 11:23:37.000" -"The Gardens Between - 0100B13007A6A000","0100B13007A6A000","status-playable","playable","2021-01-29 16:16:53.000" -"The Bug Butcher","","status-playable","playable","2020-06-03 12:02:04.000" -"Funghi Puzzle Funghi Explosion","","status-playable","playable","2020-11-23 14:17:41.000" -"The Escapists: Complete Edition - 01001B700BA7C000","01001B700BA7C000","status-playable","playable","2021-02-24 17:50:31.000" -"The Escapists 2","","nvdec;status-playable","playable","2020-09-24 12:31:31.000" -"TENGAI for Nintendo Switch","","32-bit;status-playable","playable","2020-11-25 19:52:26.000" -"The Book of Unwritten Tales 2 - 010062500BFC0000","010062500BFC0000","status-playable","playable","2021-06-09 14:42:53.000" -"The Bridge","","status-playable","playable","2020-06-03 13:53:26.000" -"Ai: the Somnium Files - 010089B00D09C000","010089B00D09C000","status-playable;nvdec","playable","2022-09-04 14:45:06.000" -"The Coma: Recut","","status-playable","playable","2020-06-03 15:11:23.000" -"Ara Fell: Enhanced Edition","","","","2020-06-03 15:11:30.000" -"The Final Station - 0100CDC00789E000","0100CDC00789E000","status-playable;nvdec","playable","2022-08-22 15:54:39.000" -"The Count Lucanor - 01000850037C0000","01000850037C0000","status-playable;nvdec","playable","2022-08-22 15:26:37.000" -"Testra's Escape","","status-playable","playable","2020-06-03 18:21:14.000" -"The Low Road - 0100BAB00A116000","0100BAB00A116000","status-playable","playable","2021-02-26 13:23:22.000" -"The Adventure Pals - 01008ED0087A4000","01008ED0087A4000","status-playable","playable","2022-08-22 14:48:52.000" -"The Longest Five Minutes - 0100CE1004E72000","0100CE1004E72000","gpu;status-boots","boots","2023-02-19 18:33:11.000" -"The Inner World","","nvdec;status-playable","playable","2020-06-03 21:22:29.000" -"The Inner World - The Last Wind Monk","","nvdec;status-playable","playable","2020-11-16 13:09:40.000" -"The MISSING: J.J. Macfield and the Island of Memories - 0100F1B00B456000","0100F1B00B456000","status-playable","playable","2022-08-22 19:36:18.000" -"Jim Is Moving Out!","","deadlock;status-ingame","ingame","2020-06-03 22:05:19.000" -"The Darkside Detective","","status-playable","playable","2020-06-03 22:16:18.000" -"Tesla vs Lovecraft - 0100FBC007EAE000","0100FBC007EAE000","status-playable","playable","2023-11-21 06:19:36.000" -"The Lion's Song - 0100735004898000","0100735004898000","status-playable","playable","2021-06-09 15:07:16.000" -"Tennis in the Face - 01002970080AA000","01002970080AA000","status-playable","playable","2022-08-22 14:10:54.000" -"The Adventures of Elena Temple","","status-playable","playable","2020-06-03 23:15:35.000" -"The friends of Ringo Ishikawa - 010030700CBBC000","010030700CBBC000","status-playable","playable","2022-08-22 16:33:17.000" -"Redeemer: Enhanced Edition - 01000D100DCF8000","01000D100DCF8000","status-playable;nvdec;UE4;vulkan-backend-bug","playable","2022-09-11 10:20:24.000" -"Alien Escape","","status-playable","playable","2020-06-03 23:43:18.000" -"LEGO DC Super-Villains - 010070D009FEC000","010070D009FEC000","status-playable","playable","2021-05-27 18:10:37.000" -"LEGO Worlds","","crash;slow;status-ingame","ingame","2020-07-17 13:35:39.000" -"LEGO The Incredibles - 0100A01006E00000","0100A01006E00000","status-nothing;crash","nothing","2022-08-03 18:36:59.000" -"LEGO Harry Potter Collection - 010052A00B5D2000","010052A00B5D2000","status-ingame;crash","ingame","2024-01-31 10:28:07.000" -"Reed 2","","","","2020-06-04 16:43:29.000" -"The Men of Yoshiwara: Ohgiya","","","","2020-06-04 17:00:22.000" -"The Rainsdowne Players","","","","2020-06-04 17:16:02.000" -"Tonight we Riot - 0100D400100F8000","0100D400100F8000","status-playable","playable","2021-02-26 15:55:09.000" -"Skelattack - 01001A900F862000","01001A900F862000","status-playable","playable","2021-06-09 15:26:26.000" -"HyperParasite - 010061400ED90000","010061400ED90000","status-playable;nvdec;UE4","playable","2022-09-27 22:05:44.000" -"Climbros","","","","2020-06-04 21:02:21.000" -"Sweet Witches - 0100D6D00EC2C000","0100D6D00EC2C000","status-playable;nvdec","playable","2022-10-20 14:56:37.000" -"Whispering Willows - 010015A00AF1E000","010015A00AF1E000","status-playable;nvdec","playable","2022-09-30 22:33:05.000" -"The Outer Worlds - 0100626011656000","0100626011656000","gpu;status-ingame;nvdec;UE4;vulkan-backend-bug;opengl-backend-bug","ingame","2022-10-03 17:55:32.000" -"RADIO HAMMER STATION - 01008FA00ACEC000","01008FA00ACEC000","audout;status-playable","playable","2021-02-26 20:20:06.000" -"Light Tracer - 010087700D07C000","010087700D07C000","nvdec;status-playable","playable","2021-05-05 19:15:43.000" -"Uta no Prince-sama Amazing Aria & Sweet Serenade LOVE - 0100D4300EBF8000","0100D4300EBF8000","status-nothing;crash;Needs More Attention;Needs Update","nothing","2022-02-09 08:57:44.000" -"The Amazing Shinsengumi: Heroes in Love","","","","2020-06-06 09:27:49.000" -"Snow Battle Princess Sayuki","","","","2020-06-06 11:59:03.000" -"Good Job!","","status-playable","playable","2021-03-02 13:15:55.000" -"Ghost Blade HD - 010063200C588000","010063200C588000","status-playable;online-broken","playable","2022-09-13 21:51:21.000" -"HardCube - 01000C90117FA000","01000C90117FA000","status-playable","playable","2021-05-05 18:33:03.000" -"STAR OCEAN First Departure R - 0100EBF00E702000","0100EBF00E702000","nvdec;status-playable","playable","2021-07-05 19:29:16.000" -"Hair Mower 3D","","","","2020-06-08 02:29:17.000" -"Clubhouse Games: 51 Worldwide Classics - 010047700D540000","010047700D540000","status-playable;ldn-works","playable","2024-05-21 16:12:57.000" -"Torchlight 2","","status-playable","playable","2020-07-27 14:18:37.000" -"Creature in the Well","","UE4;gpu;status-ingame","ingame","2020-11-16 12:52:40.000" -"Panty Party","","","","2020-06-08 14:06:02.000" -"DEADLY PREMONITION Origins - 0100EBE00F22E000","0100EBE00F22E000","32-bit;status-playable;nvdec","playable","2024-03-25 12:47:46.000" -"Pillars of Eternity - 0100D6200E130000","0100D6200E130000","status-playable","playable","2021-02-27 00:24:21.000" -"Jump King","","status-playable","playable","2020-06-09 10:12:39.000" -"Bug Fables","","status-playable","playable","2020-06-09 11:27:00.000" -"DOOM 3 - 010029D00E740000","010029D00E740000","status-menus;crash","menus","2024-08-03 05:25:47.000" -"Raiden V: Director's Cut - 01002B000D97E000","01002B000D97E000","deadlock;status-boots;nvdec","boots","2024-07-12 07:31:46.000" -"Fantasy Strike - 0100944003820000","0100944003820000","online;status-playable","playable","2021-02-27 01:59:18.000" -"Hell Warders - 0100A4600E27A000","0100A4600E27A000","online;status-playable","playable","2021-02-27 02:31:03.000" -"THE NINJA SAVIORS Return of the Warriors - 01001FB00E386000","01001FB00E386000","online;status-playable","playable","2021-03-25 23:48:07.000" -"DOOM (1993) - 010018900DD00000","010018900DD00000","status-menus;nvdec;online-broken","menus","2022-09-06 13:32:19.000" -"DOOM 2 - 0100D4F00DD02000","0100D4F00DD02000","nvdec;online;status-playable","playable","2021-06-03 20:10:01.000" -"Songbird Symphony - 0100E5400BF94000","0100E5400BF94000","status-playable","playable","2021-02-27 02:44:04.000" -"Titans Pinball","","slow;status-playable","playable","2020-06-09 16:53:52.000" -"TERRORHYTHM (TRRT) - 010043700EB68000","010043700EB68000","status-playable","playable","2021-02-27 13:18:14.000" -"Pawarumi - 0100A56006CEE000","0100A56006CEE000","status-playable;online-broken","playable","2022-09-10 15:19:33.000" -"Rise: Race the Future - 01006BA00E652000","01006BA00E652000","status-playable","playable","2021-02-27 13:29:06.000" -"Run the Fan - 010074F00DE4A000","010074F00DE4A000","status-playable","playable","2021-02-27 13:36:28.000" -"Tetsumo Party","","status-playable","playable","2020-06-09 22:39:55.000" -"Snipperclips - 0100704000B3A000","0100704000B3A000","status-playable","playable","2022-12-05 12:44:55.000" -"The Tower of Beatrice - 010047300EBA6000","010047300EBA6000","status-playable","playable","2022-09-12 16:51:42.000" -"FIA European Truck Racing Championship - 01007510040E8000","01007510040E8000","status-playable;nvdec","playable","2022-09-06 17:51:59.000" -"Bear With Me - The Lost Robots - 010020700DE04000","010020700DE04000","nvdec;status-playable","playable","2021-02-27 14:20:10.000" -"Mutant Year Zero: Road to Eden - 0100E6B00DEA4000","0100E6B00DEA4000","status-playable;nvdec;UE4","playable","2022-09-10 13:31:10.000" -"Solo: Islands of the Heart - 010008600D1AC000","010008600D1AC000","gpu;status-ingame;nvdec","ingame","2022-09-11 17:54:43.000" -"1971 PROJECT HELIOS - 0100829010F4A000","0100829010F4A000","status-playable","playable","2021-04-14 13:50:19.000" -"Damsel - 0100BD2009A1C000","0100BD2009A1C000","status-playable","playable","2022-09-06 11:54:39.000" -"The Forbidden Arts - 01007700D4AC000","","status-playable","playable","2021-01-26 16:26:24.000" -"Turok 2: Seeds of Evil - 0100CDC00D8D6000","0100CDC00D8D6000","gpu;status-ingame;vulkan","ingame","2022-09-12 17:50:05.000" -"Tactics V: ""Obsidian Brigade"" - 01007C7006AEE000","01007C7006AEE000","status-playable","playable","2021-02-28 15:09:42.000" -"SWORD ART ONLINE: FATAL BULLET COMPLETE EDITION - 01005DF00DC26000","01005DF00DC26000","UE4;gpu;online;status-ingame","ingame","2021-06-09 16:58:50.000" -"Subdivision Infinity DX - 010001400E474000","010001400E474000","UE4;crash;status-boots","boots","2021-03-03 14:26:46.000" -"#RaceDieRun","","status-playable","playable","2020-07-04 20:23:16.000" -"Wreckin' Ball Adventure - 0100C5D00EDB8000","0100C5D00EDB8000","status-playable;UE4","playable","2022-09-12 18:56:28.000" -"PictoQuest - 010043B00E1CE000","010043B00E1CE000","status-playable","playable","2021-02-27 15:03:16.000" -"VASARA Collection - 0100FE200AF48000","0100FE200AF48000","nvdec;status-playable","playable","2021-02-28 15:26:10.000" -"The Vanishing of Ethan Carter - 0100BCF00E970000","0100BCF00E970000","UE4;status-playable","playable","2021-06-09 17:14:47.000" -"Enchanted in the Moonlight - Kiryu, Chikage & Yukinojo - 010068300E08E000","010068300E08E000","gpu;status-ingame;nvdec","ingame","2022-11-20 16:18:45.000" -"Demon's Tier+ - 0100161011458000","0100161011458000","status-playable","playable","2021-06-09 17:25:36.000" -"INSTANT SPORTS - 010099700D750000","010099700D750000","status-playable","playable","2022-09-09 12:59:40.000" -"Friday the 13th: The Game - 010092A00C4B6000","010092A00C4B6000","status-playable;nvdec;online-broken;UE4","playable","2022-09-06 17:33:27.000" -"Arcade Archives VS. GRADIUS - 01004EC00E634000","01004EC00E634000","online;status-playable","playable","2021-04-12 14:53:58.000" -"Desktop Rugby","","","","2020-06-10 23:21:11.000" -"Divinity Original Sin 2 - 010027400CDC6000","010027400CDC6000","services;status-menus;crash;online-broken;regression","menus","2023-08-13 17:20:03.000" -"Grandia HD Collection - 0100E0600BBC8000","0100E0600BBC8000","status-boots;crash","boots","2024-08-19 04:29:48.000" -"Bubsy: Paws on Fire! - 0100DBE00C554000","0100DBE00C554000","slow;status-ingame","ingame","2023-08-24 02:44:51.000" -"River City Girls","","nvdec;status-playable","playable","2020-06-10 23:44:09.000" -"Super Dodgeball Beats","","","","2020-06-10 23:45:22.000" -"RAD - 010024400C516000","010024400C516000","gpu;status-menus;crash;UE4","menus","2021-11-29 02:01:56.000" -"Super Jumpy Ball","","status-playable","playable","2020-07-04 18:40:36.000" -"Headliner: NoviNews - 0100EFE00E1DC000","0100EFE00E1DC000","online;status-playable","playable","2021-03-01 11:36:00.000" -"Atelier Ryza: Ever Darkness & the Secret Hideout - 0100D1900EC80000","0100D1900EC80000","status-playable","playable","2023-10-15 16:36:50.000" -"Ancestors Legacy - 01009EE0111CC000","01009EE0111CC000","status-playable;nvdec;UE4","playable","2022-10-01 12:25:36.000" -"Resolutiion - 0100E7F00FFB8000","0100E7F00FFB8000","crash;status-boots","boots","2021-04-25 21:57:56.000" -"Puzzle Quest: The Legend Returns","","","","2020-06-11 10:05:15.000" -"FAR: Lone Sails - 010022700E7D6000","010022700E7D6000","status-playable","playable","2022-09-06 16:33:05.000" -"Awesome Pea 2 - 0100B7D01147E000","0100B7D01147E000","status-playable","playable","2022-10-01 12:34:19.000" -"Arcade Archives PLUS ALPHA","","audio;status-ingame","ingame","2020-07-04 20:47:55.000" -"Caveblazers - 01001A100C0E8000","01001A100C0E8000","slow;status-ingame","ingame","2021-06-09 17:57:28.000" -"Piofiore no banshou - ricordo","","","","2020-06-11 19:14:52.000" -"Raining Blobs","","","","2020-06-11 19:32:04.000" -"Hyper Jam","","UE4;crash;status-boots","boots","2020-12-15 22:52:11.000" -"The Midnight Sanctuary - 0100DEC00B2BC000","0100DEC00B2BC000","status-playable;nvdec;UE4;vulkan-backend-bug","playable","2022-10-03 17:17:32.000" -"Indiecalypse","","nvdec;status-playable","playable","2020-06-11 20:19:09.000" -"Liberated - 0100C8000F146000","0100C8000F146000","gpu;status-ingame;nvdec","ingame","2024-07-04 04:58:24.000" -"Nelly Cootalot","","status-playable","playable","2020-06-11 20:55:42.000" -"Corpse Party: Blood Drive - 010016400B1FE000","010016400B1FE000","nvdec;status-playable","playable","2021-03-01 12:44:23.000" -"Professor Lupo and his Horrible Pets","","status-playable","playable","2020-06-12 00:08:45.000" -"Atelier Meruru ~ The Apprentice of Arland ~ DX","","nvdec;status-playable","playable","2020-06-12 00:50:48.000" -"Atelier Totori ~ The Adventurer of Arland ~ DX","","nvdec;status-playable","playable","2020-06-12 01:04:56.000" -"Red Wings - Aces of the Sky","","status-playable","playable","2020-06-12 01:19:53.000" -"L.F.O. - Lost Future Omega - ","","UE4;deadlock;status-boots","boots","2020-10-16 12:16:44.000" -"One Night Stand","","","","2020-06-12 16:34:34.000" -"They Came From the Sky","","status-playable","playable","2020-06-12 16:38:19.000" -"Nurse Love Addiction","","","","2020-06-12 16:48:29.000" -"THE TAKEOVER","","nvdec","","2020-06-12 16:52:28.000" -"Totally Reliable Delivery Service - 0100512010728000","0100512010728000","status-playable;online-broken","playable","2024-09-27 19:32:22.000" -"Nurse Love Syndrome - 010003701002C000","010003701002C000","status-playable","playable","2022-10-13 10:05:22.000" -"Undead and Beyond - 010076F011F54000","010076F011F54000","status-playable;nvdec","playable","2022-10-04 09:11:18.000" -"Borderlands: Game of the Year Edition - 010064800F66A000","010064800F66A000","slow;status-ingame;online-broken;ldn-untested","ingame","2023-07-23 21:10:36.000" -"TurtlePop: Journey to Freedom","","status-playable","playable","2020-06-12 17:45:39.000" -"DAEMON X MACHINA - 0100B6400CA56000","0100B6400CA56000","UE4;audout;ldn-untested;nvdec;status-playable","playable","2021-06-09 19:22:29.000" -"Blasphemous - 0100698009C6E000","0100698009C6E000","nvdec;status-playable","playable","2021-03-01 12:15:31.000" -"The Sinking City - 010028D00BA1A000","010028D00BA1A000","status-playable;nvdec;UE4","playable","2022-09-12 16:41:55.000" -"Battle Supremacy - Evolution - 010099B00E898000","010099B00E898000","gpu;status-boots;nvdec","boots","2022-02-17 09:02:50.000" -"STEINS;GATE: My Darling's Embrace - 0100CB400E9BC000","0100CB400E9BC000","status-playable;nvdec","playable","2022-11-20 16:48:34.000" -"Dragon Quest XI S: Echoes of an Elusive Age - Definitive Edition - 01006C300E9F0000","01006C300E9F0000","status-playable;UE4","playable","2021-11-27 12:27:11.000" -"Star Wars™ Pinball - 01006DA00DEAC000","01006DA00DEAC000","status-playable;online-broken","playable","2022-09-11 18:53:31.000" -"Space Cows","","UE4;crash;status-menus","menus","2020-06-15 11:33:20.000" -"Ritual - 0100BD300F0EC000","0100BD300F0EC000","status-playable","playable","2021-03-02 13:51:19.000" -"Snooker 19 - 01008DA00CBBA000","01008DA00CBBA000","status-playable;nvdec;online-broken;UE4","playable","2022-09-11 17:43:22.000" -"Sydney Hunter and the Curse of the Mayan","","status-playable","playable","2020-06-15 12:15:57.000" -"CONTRA: ROGUE CORPS","","crash;nvdec;regression;status-menus","menus","2021-01-07 13:23:35.000" -"Tyd wag vir Niemand - 010073A00C4B2000","010073A00C4B2000","status-playable","playable","2021-03-02 13:39:53.000" -"Detective Dolittle - 010030600E65A000","010030600E65A000","status-playable","playable","2021-03-02 14:03:59.000" -"Rebel Cops - 0100D9B00E22C000","0100D9B00E22C000","status-playable","playable","2022-09-11 10:02:53.000" -"Sayonara Wild Hearts - 010010A00A95E000","010010A00A95E000","status-playable","playable","2023-10-23 03:20:01.000" -"Neon Drive - 010032000EAC6000","010032000EAC6000","status-playable","playable","2022-09-10 13:45:48.000" -"GRID Autosport - 0100DC800A602000","0100DC800A602000","status-playable;nvdec;online-broken;ldn-untested","playable","2023-03-02 20:14:45.000" -"DISTRAINT: Deluxe Edition","","status-playable","playable","2020-06-15 23:42:24.000" -"Jet Kave Adventure - 0100E4900D266000","0100E4900D266000","status-playable;nvdec","playable","2022-09-09 14:50:39.000" -"LEGO Jurassic World - 01001C100E772000","01001C100E772000","status-playable","playable","2021-05-27 17:00:20.000" -"Neo Cab Demo","","crash;status-boots","boots","2020-06-16 00:14:00.000" -"Reel Fishing: Road Trip Adventure - 010007C00E558000","010007C00E558000","status-playable","playable","2021-03-02 16:06:43.000" -"Zombie Army Trilogy","","ldn-untested;online;status-playable","playable","2020-12-16 12:02:28.000" -"Project Warlock","","status-playable","playable","2020-06-16 10:50:41.000" -"Super Toy Cars 2 - 0100C6800D770000","0100C6800D770000","gpu;regression;status-ingame","ingame","2021-03-02 20:15:15.000" -"Call of Cthulhu - 010046000EE40000","010046000EE40000","status-playable;nvdec;UE4","playable","2022-12-18 03:08:30.000" -"Overpass - 01008EA00E816000","01008EA00E816000","status-playable;online-broken;UE4;ldn-untested","playable","2022-10-17 15:29:47.000" -"The Little Acre - 0100A5000D590000","0100A5000D590000","nvdec;status-playable","playable","2021-03-02 20:22:27.000" -"Lost Horizon 2","","nvdec;status-playable","playable","2020-06-16 12:02:12.000" -"Rogue Robots","","status-playable","playable","2020-06-16 12:16:11.000" -"Skelittle: A Giant Party!! - 01008E700F952000","01008E700F952000","status-playable","playable","2021-06-09 19:08:34.000" -"Magazine Mogul - 01004A200E722000","01004A200E722000","status-playable;loader-allocator","playable","2022-10-03 12:05:34.000" -"Dead by Daylight - 01004C400CF96000","01004C400CF96000","status-boots;nvdec;online-broken;UE4","boots","2022-09-13 14:32:13.000" -"Ori and the Blind Forest: Definitive Edition - 010061D00DB74000","010061D00DB74000","status-playable;nvdec;online-broken","playable","2022-09-14 19:58:13.000" -"Northgard - 0100A9E00D97A000","0100A9E00D97A000","status-menus;crash","menus","2022-02-06 02:05:35.000" -"Freedom Finger - 010082B00EE50000","010082B00EE50000","nvdec;status-playable","playable","2021-06-09 19:31:30.000" -"Atelier Shallie: Alchemists of the Dusk Sea DX","","nvdec;status-playable","playable","2020-11-25 20:54:12.000" -"Dragon Quest - 0100EFC00EFB2000","0100EFC00EFB2000","gpu;status-boots","boots","2021-11-09 03:31:32.000" -"Dragon Quest II: Luminaries of the Legendary Line - 010062200EFB4000","010062200EFB4000","status-playable","playable","2022-09-13 16:44:11.000" -"Atelier Ayesha: The Alchemist of Dusk DX - 0100D9D00EE8C000","0100D9D00EE8C000","status-menus;crash;nvdec;Needs Update","menus","2021-11-24 07:29:54.000" -"Dragon Quest III: The Seeds of Salvation - 010015600EFB6000","010015600EFB6000","gpu;status-boots","boots","2021-11-09 03:38:34.000" -"Habroxia","","status-playable","playable","2020-06-16 23:04:42.000" -"Petoons Party - 010044400EEAE000","010044400EEAE000","nvdec;status-playable","playable","2021-03-02 21:07:58.000" -"Fight'N Rage","","status-playable","playable","2020-06-16 23:35:19.000" -"Cyber Protocol","","nvdec;status-playable","playable","2020-09-28 14:47:40.000" -"Barry Bradford's Putt Panic Party","","nvdec;status-playable","playable","2020-06-17 01:08:34.000" -"Potata: Fairy Flower","","nvdec;status-playable","playable","2020-06-17 09:51:34.000" -"Kawaii Deathu Desu","","","","2020-06-17 09:59:15.000" -"The Spectrum Retreat - 010041C00A68C000","010041C00A68C000","status-playable","playable","2022-10-03 18:52:40.000" -"Moero Crystal H - 01004EB0119AC000","01004EB0119AC000","32-bit;status-playable;nvdec;vulkan-backend-bug","playable","2023-07-05 12:04:22.000" -"Modern Combat Blackout - 0100D8700B712000","0100D8700B712000","crash;status-nothing","nothing","2021-03-29 19:47:15.000" -"Forager - 01001D200BCC4000","01001D200BCC4000","status-menus;crash","menus","2021-11-24 07:10:17.000" -"Ultimate Ski Jumping 2020 - 01006B601117E000","01006B601117E000","online;status-playable","playable","2021-03-02 20:54:11.000" -"Strangers of the Power 3","","","","2020-06-17 14:45:52.000" -"Little Triangle","","status-playable","playable","2020-06-17 14:46:26.000" -"Nice Slice","","nvdec;status-playable","playable","2020-06-17 15:13:27.000" -"Project Starship","","","","2020-06-17 15:33:18.000" -"Puyo Puyo Champions","","online;status-playable","playable","2020-06-19 11:35:08.000" -"Shantae and the Seven Sirens","","nvdec;status-playable","playable","2020-06-19 12:23:40.000" -"SYNAPTIC DRIVE","","online;status-playable","playable","2020-09-07 13:44:05.000" -"XCOM 2 Collection - 0100D0B00FB74000","0100D0B00FB74000","gpu;status-ingame;crash","ingame","2022-10-04 09:38:30.000" -"BioShock Remastered - 0100AD10102B2000","0100AD10102B2000","services-horizon;status-boots;crash;Needs Update","boots","2024-06-06 01:08:52.000" -"Burnout Paradise Remastered - 0100DBF01000A000","0100DBF01000A000","nvdec;online;status-playable","playable","2021-06-13 02:54:46.000" -"Adam's Venture: Origins - 0100C0C0040E4000","0100C0C0040E4000","status-playable","playable","2021-03-04 18:43:57.000" -"Invisible, Inc.","","crash;status-nothing","nothing","2021-01-29 16:28:13.000" -"Vektor Wars - 010098400E39E000","010098400E39E000","status-playable;online-broken;vulkan-backend-bug","playable","2022-10-04 09:23:46.000" -"Flux8","","nvdec;status-playable","playable","2020-06-19 20:55:11.000" -"Beyond Enemy Lines: Covert Operations - 010056500CAD8000","010056500CAD8000","status-playable;UE4","playable","2022-10-01 13:11:50.000" -"Genetic Disaster","","status-playable","playable","2020-06-19 21:41:12.000" -"Castle Pals - 0100DA2011F18000","0100DA2011F18000","status-playable","playable","2021-03-04 21:00:33.000" -"BioShock 2 Remastered - 01002620102C6000","01002620102C6000","services;status-nothing","nothing","2022-10-29 14:39:22.000" -"BioShock Infinite: The Complete Edition - 0100D560102C8000","0100D560102C8000","services-horizon;status-nothing;crash","nothing","2024-08-11 21:35:01.000" -"Borderlands 2: Game of the Year Edition - 010096F00FF22000","010096F00FF22000","status-playable","playable","2022-04-22 18:35:07.000" -"Borderlands: The Pre-Sequel Ultimate Edition - 010007400FF24000","010007400FF24000","nvdec;status-playable","playable","2021-06-09 20:17:10.000" -"The Coma 2: Vicious Sisters","","gpu;status-ingame","ingame","2020-06-20 12:51:51.000" -"Roll'd","","status-playable","playable","2020-07-04 20:24:01.000" -"Big Drunk Satanic Massacre - 01002FA00DE72000","01002FA00DE72000","status-playable","playable","2021-03-04 21:28:22.000" -"LUXAR - 0100EC2011A80000","0100EC2011A80000","status-playable","playable","2021-03-04 21:11:57.000" -"OneWayTicket","","UE4;status-playable","playable","2020-06-20 17:20:49.000" -"Radiation City - 0100DA400E07E000","0100DA400E07E000","status-ingame;crash","ingame","2022-09-30 11:15:04.000" -"Arcade Spirits","","status-playable","playable","2020-06-21 11:45:03.000" -"Bring Them Home - 01000BF00BE40000","01000BF00BE40000","UE4;status-playable","playable","2021-04-12 14:14:43.000" -"Fly Punch Boom!","","online;status-playable","playable","2020-06-21 12:06:11.000" -"Xenoblade Chronicles Definitive Edition - 0100FF500E34A000","0100FF500E34A000","status-playable;nvdec","playable","2024-05-04 20:12:41.000" -"A Winter's Daydream","","","","2020-06-22 14:52:38.000" -"DEAD OR SCHOOL - 0100A5000F7AA000","0100A5000F7AA000","status-playable;nvdec","playable","2022-09-06 12:04:09.000" -"Biolab Wars","","","","2020-06-22 15:50:34.000" -"Worldend Syndrome","","status-playable","playable","2021-01-03 14:16:32.000" -"The Tiny Bang Story - 01009B300D76A000","01009B300D76A000","status-playable","playable","2021-03-05 15:39:05.000" -"Neo Cab - 0100EBB00D2F4000","0100EBB00D2F4000","status-playable","playable","2021-04-24 00:27:58.000" -"Sniper Elite 3 Ultimate Edition - 010075A00BA14000","010075A00BA14000","status-playable;ldn-untested","playable","2024-04-18 07:47:49.000" -"Boku to Nurse no Kenshuu Nisshi - 010093700ECEC000","010093700ECEC000","status-playable","playable","2022-11-21 20:38:34.000" -"80 Days","","status-playable","playable","2020-06-22 21:43:01.000" -"Mirror","","","","2020-06-22 21:46:55.000" -"SELFY COLLECTION Dream Stylist","","","","2020-06-22 22:15:25.000" -"G-MODE Archives 4 Beach Volleyball Girl Drop","","","","2020-06-22 22:36:36.000" -"Star Horizon","","","","2020-06-22 23:03:45.000" -"To the Moon","","status-playable","playable","2021-03-20 15:33:38.000" -"Darksiders II Deathinitive Edition - 010071800BA98000","010071800BA98000","gpu;status-ingame;nvdec;online-broken","ingame","2024-06-26 00:37:25.000" -"SpongeBob SquarePants: Battle for Bikini Bottom - Rehydrated - 010062800D39C000","010062800D39C000","status-playable;online-broken;UE4;ldn-broken;vulkan-backend-bug","playable","2023-08-01 19:29:34.000" -"Sleep Tight - 01004AC0081DC000","01004AC0081DC000","gpu;status-ingame;UE4","ingame","2022-08-13 00:17:32.000" -"SUPER ROBOT WARS V","","online;status-playable","playable","2020-06-23 12:56:37.000" -"Ghostbusters: The Video Game Remastered - 010008A00F632000","010008A00F632000","status-playable;nvdec","playable","2021-09-17 07:26:57.000" -"FIFA 20 Legacy Edition - 01005DE00D05C000","01005DE00D05C000","gpu;status-ingame;nvdec;online-broken;ldn-untested","ingame","2022-09-13 17:57:20.000" -"VARIABLE BARRICADE NS - 010045C0109F2000","010045C0109F2000","status-playable;nvdec","playable","2022-02-26 15:50:13.000" -"Super Cane Magic ZERO - 0100D9B00DB5E000","0100D9B00DB5E000","status-playable","playable","2022-09-12 15:33:46.000" -"Whipsey and the Lost Atlas","","status-playable","playable","2020-06-23 20:24:14.000" -"FUZE4 - 0100EAD007E98000","0100EAD007E98000","status-playable;vulkan-backend-bug","playable","2022-09-06 19:25:01.000" -"Legend of the Skyfish","","status-playable","playable","2020-06-24 13:04:22.000" -"Grand Brix Shooter","","slow;status-playable","playable","2020-06-24 13:23:54.000" -"Pokémon Café Mix - 010072400E04A000","010072400E04A000","status-playable","playable","2021-08-17 20:00:04.000" -"BULLETSTORM: DUKE OF SWITCH EDITION - 01003DD00D658000","01003DD00D658000","status-playable;nvdec","playable","2022-03-03 08:30:24.000" -"Brunch Club","","status-playable","playable","2020-06-24 13:54:07.000" -"Invisigun Reloaded - 01005F400E644000","01005F400E644000","gpu;online;status-ingame","ingame","2021-06-10 12:13:24.000" -"AER - Memories of Old - 0100A0400DDE0000","0100A0400DDE0000","nvdec;status-playable","playable","2021-03-05 18:43:43.000" -"Farm Mystery - 01000E400ED98000","01000E400ED98000","status-playable;nvdec","playable","2022-09-06 16:46:47.000" -"Ninjala - 0100CCD0073EA000","0100CCD0073EA000","status-boots;online-broken;UE4","boots","2024-07-03 20:04:49.000" -"Shojo Jigoku no Doku musume","","","","2020-06-25 11:25:12.000" -"Jump Rope Challenge - 0100B9C012706000","0100B9C012706000","services;status-boots;crash;Needs Update","boots","2023-02-27 01:24:28.000" -"Knight Squad","","status-playable","playable","2020-08-09 16:54:51.000" -"WARBORN","","status-playable","playable","2020-06-25 12:36:47.000" -"The Bard's Tale ARPG: Remastered and Resnarkled - 0100CD500DDAE000","0100CD500DDAE000","gpu;status-ingame;nvdec;online-working","ingame","2024-07-18 12:52:01.000" -"NAMCOT COLLECTION","","audio;status-playable","playable","2020-06-25 13:35:22.000" -"Code: Realize ~Future Blessings~ - 010002400F408000","010002400F408000","status-playable;nvdec","playable","2023-03-31 16:57:47.000" -"Code: Realize ~Guardian of Rebirth~","","","","2020-06-25 15:09:14.000" -"Polandball: Can Into Space!","","status-playable","playable","2020-06-25 15:13:26.000" -"Ruiner - 01006EC00F2CC000","01006EC00F2CC000","status-playable;UE4","playable","2022-10-03 14:11:33.000" -"Summer in Mara - 0100A130109B2000","0100A130109B2000","nvdec;status-playable","playable","2021-03-06 14:10:38.000" -"Brigandine: The Legend of Runersia - 010011000EA7A000","010011000EA7A000","status-playable","playable","2021-06-20 06:52:25.000" -"Duke Nukem 3D: 20th Anniversary World Tour - 01007EF00CB88000","01007EF00CB88000","32-bit;status-playable;ldn-untested","playable","2022-08-19 22:22:40.000" -"Outbuddies DX - 0100B8900EFA6000","0100B8900EFA6000","gpu;status-ingame","ingame","2022-08-04 22:39:24.000" -"Mr. DRILLER DrillLand","","nvdec;status-playable","playable","2020-07-24 13:56:48.000" -"Fable of Fairy Stones - 0100E3D0103CE000","0100E3D0103CE000","status-playable","playable","2021-05-05 21:04:54.000" -"Destrobots - 01008BB011ED6000","01008BB011ED6000","status-playable","playable","2021-03-06 14:37:05.000" -"Aery - 0100875011D0C000","0100875011D0C000","status-playable","playable","2021-03-07 15:25:51.000" -"TETRA for Nintendo Switch","","status-playable","playable","2020-06-26 20:49:55.000" -"Push the Crate 2 - 0100B60010432000","0100B60010432000","UE4;gpu;nvdec;status-ingame","ingame","2021-06-10 14:20:01.000" -"Railway Empire - 01002EE00DC02000","01002EE00DC02000","status-playable;nvdec","playable","2022-10-03 13:53:50.000" -"Endless Fables: Dark Moor - 01004F3011F92000","01004F3011F92000","gpu;nvdec;status-ingame","ingame","2021-03-07 15:31:03.000" -"Across the Grooves","","status-playable","playable","2020-06-27 12:29:51.000" -"Behold the Kickmen","","status-playable","playable","2020-06-27 12:49:45.000" -"Blood & Guts Bundle","","status-playable","playable","2020-06-27 12:57:35.000" -"Seek Hearts - 010075D0101FA000","010075D0101FA000","status-playable","playable","2022-11-22 15:06:26.000" -"Edna & Harvey: The Breakout - Anniversary Edition - 01004F000B716000","01004F000B716000","status-ingame;crash;nvdec","ingame","2022-08-01 16:59:56.000" -"-KLAUS-","","nvdec;status-playable","playable","2020-06-27 13:27:30.000" -"Gun Gun Pixies","","","","2020-06-27 13:31:06.000" -"Tcheco in the Castle of Lucio","","status-playable","playable","2020-06-27 13:35:43.000" -"My Butler","","status-playable","playable","2020-06-27 13:46:23.000" -"Caladrius Blaze - 01004FD00D66A000","01004FD00D66A000","deadlock;status-nothing;nvdec","nothing","2022-12-07 16:44:37.000" -"Shipped","","status-playable","playable","2020-11-21 14:22:32.000" -"The Alliance Alive HD Remastered - 010045A00E038000","010045A00E038000","nvdec;status-playable","playable","2021-03-07 15:43:45.000" -"Monochrome Order","","","","2020-06-27 14:38:40.000" -"My Lovely Daughter - 010086B00C784000","010086B00C784000","status-playable","playable","2022-11-24 17:25:32.000" -"Caged Garden Cock Robin","","","","2020-06-27 16:47:22.000" -"A Knight's Quest - 01005EF00CFDA000","01005EF00CFDA000","status-playable;UE4","playable","2022-09-12 20:44:20.000" -"The Witcher 3: Wild Hunt - 01003D100E9C6000","01003D100E9C6000","status-playable;nvdec;vulkan-backend-bug;amd-vendor-bug","playable","2024-02-22 12:21:51.000" -"BATTLESTAR GALACTICA Deadlock","","nvdec;status-playable","playable","2020-06-27 17:35:44.000" -"STELLATUM - 0100BC800EDA2000","0100BC800EDA2000","gpu;status-playable","playable","2021-03-07 16:30:23.000" -"Reventure - 0100E2E00EA42000","0100E2E00EA42000","status-playable","playable","2022-09-15 20:07:06.000" -"Killer Queen Black - 0100F2900B3E2000","0100F2900B3E2000","ldn-untested;online;status-playable","playable","2021-04-08 12:46:18.000" -"Puchitto kurasutā","","Need-Update;crash;services;status-menus","menus","2020-07-04 16:44:28.000" -"Silk - 010045500DFE2000","010045500DFE2000","nvdec;status-playable","playable","2021-06-10 15:34:37.000" -"Aldred - Knight of Honor - 01000E000EEF8000","01000E000EEF8000","services;status-playable","playable","2021-11-30 01:49:17.000" -"Tamashii - 010012800EE3E000","010012800EE3E000","status-playable","playable","2021-06-10 15:26:20.000" -"Overlanders - 0100D7F00EC64000","0100D7F00EC64000","status-playable;nvdec;UE4","playable","2022-09-14 20:15:06.000" -"Romancing SaGa 3","","audio;gpu;status-ingame","ingame","2020-06-27 20:26:18.000" -"Hakoniwa Explorer Plus","","slow;status-ingame","ingame","2021-02-19 16:56:19.000" -"Fractured Minds - 01004200099F2000","01004200099F2000","status-playable","playable","2022-09-13 21:21:40.000" -"Strange Telephone","","","","2020-06-27 21:00:43.000" -"Strikey Sisters","","","","2020-06-27 22:20:14.000" -"IxSHE Tell - 0100DEB00F12A000","0100DEB00F12A000","status-playable;nvdec","playable","2022-12-02 18:00:42.000" -"Monster Farm - 0100E9900ED74000","0100E9900ED74000","32-bit;nvdec;status-playable","playable","2021-05-05 19:29:13.000" -"Pachi Pachi On A Roll","","","","2020-06-28 10:28:59.000" -"MISTOVER","","","","2020-06-28 11:23:53.000" -"Little Busters! Converted Edition - 0100943010310000","0100943010310000","status-playable;nvdec","playable","2022-09-29 15:34:56.000" -"Snack World The Dungeon Crawl Gold - 0100F2800D46E000","0100F2800D46E000","gpu;slow;status-ingame;nvdec;audout","ingame","2022-05-01 21:12:44.000" -"Super Kirby Clash - 01003FB00C5A8000","01003FB00C5A8000","status-playable;ldn-works","playable","2024-07-30 18:21:55.000" -"SEGA AGES Thunder Force IV","","","","2020-06-29 12:06:07.000" -"SEGA AGES Puyo Puyo - 01005F600CB0E000","01005F600CB0E000","online;status-playable","playable","2021-05-05 16:09:28.000" -"EAT BEAT DEADSPIKE-san - 0100A9B009678000","0100A9B009678000","audio;status-playable;Needs Update","playable","2022-12-02 19:25:29.000" -"AeternoBlade II - 01009D100EA28000","01009D100EA28000","status-playable;online-broken;UE4;vulkan-backend-bug","playable","2022-09-12 21:11:18.000" -"WRC 8 FIA World Rally Championship - 010087800DCEA000","010087800DCEA000","status-playable;nvdec","playable","2022-09-16 23:03:36.000" -"Yaga - 01006FB00DB02000","01006FB00DB02000","status-playable;nvdec","playable","2022-09-16 23:17:17.000" -"Woven - 01006F100EB16000","01006F100EB16000","nvdec;status-playable","playable","2021-06-02 13:41:08.000" -"Kissed by the Baddest Bidder - 0100F3A00F4CA000","0100F3A00F4CA000","gpu;status-ingame;nvdec","ingame","2022-12-04 20:57:11.000" -"Thief of Thieves - 0100CE700F62A000","0100CE700F62A000","status-nothing;crash;loader-allocator","nothing","2021-11-03 07:16:30.000" -"Squidgies Takeover","","status-playable","playable","2020-07-20 22:28:08.000" -"Balthazar's Dreams - 0100BC400FB64000","0100BC400FB64000","status-playable","playable","2022-09-13 00:13:22.000" -"ZenChess","","status-playable","playable","2020-07-01 22:28:27.000" -"Sparklite - 01007ED00C032000","01007ED00C032000","status-playable","playable","2022-08-06 11:35:41.000" -"Some Distant Memory - 01009EE00E91E000","01009EE00E91E000","status-playable","playable","2022-09-15 21:48:19.000" -"Skybolt Zack - 010041C01014E000","010041C01014E000","status-playable","playable","2021-04-12 18:28:00.000" -"Tactical Mind 2","","status-playable","playable","2020-07-01 23:11:07.000" -"Super Street: Racer - 0100FB400F54E000","0100FB400F54E000","status-playable;UE4","playable","2022-09-16 13:43:14.000" -"TOKYO DARK - REMEMBRANCE - - 01003E500F962000","01003E500F962000","nvdec;status-playable","playable","2021-06-10 20:09:49.000" -"Party Treats","","status-playable","playable","2020-07-02 00:05:00.000" -"Rocket Wars","","status-playable","playable","2020-07-24 14:27:39.000" -"Rawr-Off","","crash;nvdec;status-menus","menus","2020-07-02 00:14:44.000" -"Blair Witch - 01006CC01182C000","01006CC01182C000","status-playable;nvdec;UE4","playable","2022-10-01 14:06:16.000" -"Urban Trial Tricky - 0100A2500EB92000","0100A2500EB92000","status-playable;nvdec;UE4","playable","2022-12-06 13:07:56.000" -"Infliction - 01001CB00EFD6000","01001CB00EFD6000","status-playable;nvdec;UE4","playable","2022-10-02 13:15:55.000" -"Catherine Full Body for Nintendo Switch (JP) - 0100BAE0077E4000","0100BAE0077E4000","Needs Update;gpu;status-ingame","ingame","2021-02-21 18:06:11.000" -"Night Call - 0100F3A0095A6000","0100F3A0095A6000","status-playable;nvdec","playable","2022-10-03 12:57:00.000" -"Grimshade - 01001E200F2F8000","01001E200F2F8000","status-playable","playable","2022-10-02 12:44:20.000" -"A Summer with the Shiba Inu - 01007DD011C4A000","01007DD011C4A000","status-playable","playable","2021-06-10 20:51:16.000" -"Holy Potatoes! What the Hell?!","","status-playable","playable","2020-07-03 10:48:56.000" -"Tower of Time","","gpu;nvdec;status-ingame","ingame","2020-07-03 11:11:12.000" -"Iron Wings - 01005270118D6000","01005270118D6000","slow;status-ingame","ingame","2022-08-07 08:32:57.000" -"Death Come True - 010012B011AB2000","010012B011AB2000","nvdec;status-playable","playable","2021-06-10 22:30:49.000" -"CAN ANDROIDS PRAY:BLUE","","","","2020-07-05 08:14:53.000" -"The Almost Gone","","status-playable","playable","2020-07-05 12:33:07.000" -"Urban Flow","","services;status-playable","playable","2020-07-05 12:51:47.000" -"Digimon Story Cyber Sleuth: Complete Edition - 010014E00DB56000","010014E00DB56000","status-playable;nvdec;opengl","playable","2022-09-13 15:02:37.000" -"Return of the Obra Dinn - 010032E00E6E2000","010032E00E6E2000","status-playable","playable","2022-09-15 19:56:45.000" -"YU-NO: A GIRL WHO CHANTS LOVE AT THE BOUND OF THIS WORLD. - 010037D00DBDC000","010037D00DBDC000","nvdec;status-playable","playable","2021-01-26 17:03:52.000" -"Summer Sweetheart - 01004E500DB9E000","01004E500DB9E000","status-playable;nvdec","playable","2022-09-16 12:51:46.000" -"ZikSquare - 010086700EF16000","010086700EF16000","gpu;status-ingame","ingame","2021-11-06 02:02:48.000" -"Planescape: Torment and Icewind Dale: Enhanced Editions - 010030B00C316000","010030B00C316000","cpu;status-boots;32-bit;crash;Needs Update","boots","2022-09-10 03:58:26.000" -"Megaquarium - 010082B00E8B8000","010082B00E8B8000","status-playable","playable","2022-09-14 16:50:00.000" -"Ice Age Scrat's Nutty Adventure - 01004E5007E92000","01004E5007E92000","status-playable;nvdec","playable","2022-09-13 22:22:29.000" -"Aggelos - 010004D00A9C0000","010004D00A9C0000","gpu;status-ingame","ingame","2023-02-19 13:24:23.000" -"Stranded Sails: Explorers of the Cursed Islands - 010078D00E8F4000","010078D00E8F4000","slow;status-playable;nvdec;UE4","playable","2022-09-16 11:58:38.000" -"Sub Level Zero: Redux - 0100E6400BCE8000","0100E6400BCE8000","status-playable","playable","2022-09-16 12:30:03.000" -"BurgerTime Party!","","slow;status-playable","playable","2020-11-21 14:11:53.000" -"Another Sight","","UE4;gpu;nvdec;status-ingame","ingame","2020-12-03 16:49:59.000" -"Baldur's Gate and Baldur's Gate II: Enhanced Editions - 010010A00DA48000","010010A00DA48000","32-bit;status-playable","playable","2022-09-12 23:52:15.000" -"Kine - 010089000F0E8000","010089000F0E8000","status-playable;UE4","playable","2022-09-14 14:28:37.000" -"Roof Rage - 010088100DD42000","010088100DD42000","status-boots;crash;regression","boots","2023-11-12 03:47:18.000" -"Pig Eat Ball - 01000FD00D5CC000","01000FD00D5CC000","services;status-ingame","ingame","2021-11-30 01:57:45.000" -"DORAEMON STORY OF SEASONS","","nvdec;status-playable","playable","2020-07-13 20:28:11.000" -"Root Letter: Last Answer - 010030A00DA3A000","010030A00DA3A000","status-playable;vulkan-backend-bug","playable","2022-09-17 10:25:57.000" -"Cat Quest II","","status-playable","playable","2020-07-06 23:52:09.000" -"Streets of Rage 4","","nvdec;online;status-playable","playable","2020-07-07 21:21:22.000" -"Deep Space Rush","","status-playable","playable","2020-07-07 23:30:33.000" -"Into the Dead 2 - 01000F700DECE000","01000F700DECE000","status-playable;nvdec","playable","2022-09-14 12:36:14.000" -"Dark Devotion - 010083A00BF6C000","010083A00BF6C000","status-playable;nvdec","playable","2022-08-09 09:41:18.000" -"Anthill - 010054C00D842000","010054C00D842000","services;status-menus;nvdec","menus","2021-11-18 09:25:25.000" -"Skullgirls: 2nd Encore - 010046B00DE62000","010046B00DE62000","status-playable","playable","2022-09-15 21:21:25.000" -"Tokyo School Life - 0100E2E00CB14000","0100E2E00CB14000","status-playable","playable","2022-09-16 20:25:54.000" -"Pixel Gladiator","","status-playable","playable","2020-07-08 02:41:26.000" -"Spirit Hunter: NG","","32-bit;status-playable","playable","2020-12-17 20:38:47.000" -"The Fox Awaits Me","","","","2020-07-08 11:58:56.000" -"Shalnor Legends: Sacred Lands - 0100B4900E008000","0100B4900E008000","status-playable","playable","2021-06-11 14:57:11.000" -"Hero must die. again","","","","2020-07-08 12:35:49.000" -"AeternoBlade I","","nvdec;status-playable","playable","2020-12-14 20:06:48.000" -"Sephirothic Stories - 010059700D4A0000","010059700D4A0000","services;status-menus","menus","2021-11-25 08:52:17.000" -"Ciel Fledge: A Daughter Raising Simulator","","","","2020-07-08 14:57:17.000" -"Olympia Soiree - 0100F9D00C186000","0100F9D00C186000","status-playable","playable","2022-12-04 21:07:12.000" -"Mighty Switch Force! Collection - 010060D00AE36000","010060D00AE36000","status-playable","playable","2022-10-28 20:40:32.000" -"Street Outlaws: The List - 010012400D202000","010012400D202000","nvdec;status-playable","playable","2021-06-11 12:15:32.000" -"TroubleDays","","","","2020-07-09 08:50:12.000" -"Legend of the Tetrarchs","","deadlock;status-ingame","ingame","2020-07-10 07:54:03.000" -"Soul Searching","","status-playable","playable","2020-07-09 18:39:07.000" -"Dusk Diver - 010011C00E636000","010011C00E636000","status-boots;crash;UE4","boots","2021-11-06 09:01:30.000" -"PBA Pro Bowling - 010085700ABC8000","010085700ABC8000","status-playable;nvdec;online-broken;UE4","playable","2022-09-14 23:00:49.000" -"Horror Pinball Bundle - 0100E4200FA82000","0100E4200FA82000","status-menus;crash","menus","2022-09-13 22:15:34.000" -"Farm Expert 2019 for Nintendo Switch","","status-playable","playable","2020-07-09 21:42:57.000" -"Super Monkey Ball: Banana Blitz HD - 0100B2A00E1E0000","0100B2A00E1E0000","status-playable;online-broken","playable","2022-09-16 13:16:25.000" -"Yuri - 0100FC900963E000","0100FC900963E000","status-playable","playable","2021-06-11 13:08:50.000" -"Vampyr - 01000BD00CE64000","01000BD00CE64000","status-playable;nvdec;UE4","playable","2022-09-16 22:15:51.000" -"Spirit Roots","","nvdec;status-playable","playable","2020-07-10 13:33:32.000" -"Resident Evil 5 - 010018100CD46000","010018100CD46000","status-playable;nvdec","playable","2024-02-18 17:15:29.000" -"RESIDENT EVIL 6 - 01002A000CD48000","01002A000CD48000","status-playable;nvdec","playable","2022-09-15 14:31:47.000" -"The Big Journey - 010089600E66A000","010089600E66A000","status-playable","playable","2022-09-16 14:03:08.000" -"Sky Gamblers: Storm Raiders 2 - 010068200E96E000","010068200E96E000","gpu;status-ingame","ingame","2022-09-13 12:24:04.000" -"Door Kickers: Action Squad - 01005ED00CD70000","01005ED00CD70000","status-playable;online-broken;ldn-broken","playable","2022-09-13 16:28:53.000" -"Agony","","UE4;crash;status-boots","boots","2020-07-10 16:21:18.000" -"Remothered: Tormented Fathers - 01001F100E8AE000","01001F100E8AE000","status-playable;nvdec;UE4","playable","2022-10-19 23:26:50.000" -"Biped - 010053B0117F8000","010053B0117F8000","status-playable;nvdec","playable","2022-10-01 13:32:58.000" -"Clash Force - 01005ED0107F4000","01005ED0107F4000","status-playable","playable","2022-10-01 23:45:48.000" -"Truck & Logistics Simulator - 0100F2100AA5C000","0100F2100AA5C000","status-playable","playable","2021-06-11 13:29:08.000" -"Collar X Malice - 010083E00F40E000","010083E00F40E000","status-playable;nvdec","playable","2022-10-02 11:51:56.000" -"TORICKY-S - 01007AF011732000","01007AF011732000","deadlock;status-menus","menus","2021-11-25 08:53:36.000" -"The Wanderer: Frankenstein's Creature","","status-playable","playable","2020-07-11 12:49:51.000" -"PRINCESS MAKER -FAERY TALES COME TRUE-","","","","2020-07-11 16:09:47.000" -"Princess Maker Go!Go! Princess","","","","2020-07-11 16:35:31.000" -"Paradox Soul","","","","2020-07-11 17:20:44.000" -"Diabolic - 0100F73011456000","0100F73011456000","status-playable","playable","2021-06-11 14:45:08.000" -"UBERMOSH:BLACK","","","","2020-07-11 17:42:34.000" -"Journey to the Savage Planet - 01008B60117EC000","01008B60117EC000","status-playable;nvdec;UE4;ldn-untested","playable","2022-10-02 18:48:12.000" -"Viviette - 010037900CB1C000","010037900CB1C000","status-playable","playable","2021-06-11 15:33:40.000" -"the StoryTale - 0100858010DC4000","0100858010DC4000","status-playable","playable","2022-09-03 13:00:25.000" -"Ghost Grab 3000","","status-playable","playable","2020-07-11 18:09:52.000" -"SEGA AGES Shinobi","","","","2020-07-11 18:17:27.000" -"eCrossminton","","status-playable","playable","2020-07-11 18:24:27.000" -"Dangerous Relationship","","","","2020-07-11 18:39:45.000" -"Indie Darling Bundle Vol. 3 - 01004DE011076000","01004DE011076000","status-playable","playable","2022-10-02 13:01:57.000" -"Murder by Numbers","","","","2020-07-11 19:12:19.000" -"BUSTAFELLOWS","","nvdec;status-playable","playable","2020-10-17 20:04:41.000" -"Love Letter from Thief X - 0100D36011AD4000","0100D36011AD4000","gpu;status-ingame;nvdec","ingame","2023-11-14 03:55:31.000" -"Escape Game Fort Boyard","","status-playable","playable","2020-07-12 12:45:43.000" -"SEGA AGES Gain Ground - 01001E600AF08000","01001E600AF08000","online;status-playable","playable","2021-05-05 16:16:27.000" -"The Wardrobe: Even Better Edition - 01008B200FC6C000","01008B200FC6C000","status-playable","playable","2022-09-16 19:14:55.000" -"SEGA AGES Wonder Boy: Monster Land - 01001E700AC60000","01001E700AC60000","online;status-playable","playable","2021-05-05 16:28:25.000" -"SEGA AGES Columns II: A Voyage Through Time","","","","2020-07-12 13:38:50.000" -"Zenith - 0100AAC00E692000","0100AAC00E692000","status-playable","playable","2022-09-17 09:57:02.000" -"Jumanji","","UE4;crash;status-boots","boots","2020-07-12 13:52:25.000" -"SEGA AGES Ichidant-R","","","","2020-07-12 13:54:29.000" -"STURMWIND EX - 0100C5500E7AE000","0100C5500E7AE000","audio;32-bit;status-playable","playable","2022-09-16 12:01:39.000" -"SEGA AGES Alex Kidd in Miracle World - 0100A8900AF04000","0100A8900AF04000","online;status-playable","playable","2021-05-05 16:35:47.000" -"The Lord of the Rings: Adventure Card Game - 010085A00C5E8000","010085A00C5E8000","status-menus;online-broken","menus","2022-09-16 15:19:32.000" -"Breeder Homegrown: Director's Cut","","","","2020-07-12 14:54:02.000" -"StarCrossed","","","","2020-07-12 15:15:22.000" -"The Legend of Dark Witch","","status-playable","playable","2020-07-12 15:18:33.000" -"One-Way Ticket","","","","2020-07-12 15:36:25.000" -"Ships - 01000E800FCB4000","01000E800FCB4000","status-playable","playable","2021-06-11 16:14:37.000" -"My Bewitching Perfume","","","","2020-07-12 15:55:15.000" -"Black and White Bushido","","","","2020-07-12 16:12:16.000" -"REKT","","online;status-playable","playable","2020-09-28 12:33:56.000" -"Nirvana Pilot Yume - 010020901088A000","010020901088A000","status-playable","playable","2022-10-29 11:49:49.000" -"Detective Jinguji Saburo Prism of Eyes","","status-playable","playable","2020-10-02 21:54:41.000" -"Harvest Moon: Mad Dash","","","","2020-07-12 20:37:50.000" -"Worse Than Death - 010037500C4DE000","010037500C4DE000","status-playable","playable","2021-06-11 16:05:40.000" -"Bad Dream: Coma - 01000CB00D094000","01000CB00D094000","deadlock;status-boots","boots","2023-08-03 00:54:18.000" -"Chou no Doku Hana no Kusari: Taishou Irokoi Ibun","","gpu;nvdec;status-ingame","ingame","2020-09-28 17:58:04.000" -"MODEL Debut #nicola","","","","2020-07-13 11:21:44.000" -"Chameleon","","","","2020-07-13 12:06:20.000" -"Gunka o haita neko","","gpu;nvdec;status-ingame","ingame","2020-08-25 12:37:56.000" -"Genso maneju","","","","2020-07-13 14:14:09.000" -"Coffee Talk","","status-playable","playable","2020-08-10 09:48:44.000" -"Labyrinth of the Witch","","status-playable","playable","2020-11-01 14:42:37.000" -"Ritual: Crown of Horns - 010042500FABA000","010042500FABA000","status-playable","playable","2021-01-26 16:01:47.000" -"THE GRISAIA TRILOGY - 01003b300e4aa000","01003b300e4aa000","status-playable","playable","2021-01-31 15:53:59.000" -"Perseverance","","status-playable","playable","2020-07-13 18:48:27.000" -"SEGA AGES Fantasy Zone","","","","2020-07-13 19:33:23.000" -"SEGA AGES Thunder Force AC","","","","2020-07-13 19:50:34.000" -"SEGA AGES Puyo Puyo 2","","","","2020-07-13 20:15:04.000" -"GRISAIA PHANTOM TRIGGER 01&02 - 01009D7011B02000","01009D7011B02000","status-playable;nvdec","playable","2022-12-04 21:16:06.000" -"Paper Dolls Original","","UE4;crash;status-boots","boots","2020-07-13 20:26:21.000" -"STAY COOL, KOBAYASHI-SAN! A RIVER RANSOM STORY - 0100B61009C60000","0100B61009C60000","status-playable","playable","2021-01-26 17:37:28.000" -" SEGA AGES G-LOC AIR BATTLE","","","","2020-07-13 20:42:40.000" -"Think of the Children - 0100F2300A5DA000","0100F2300A5DA000","deadlock;status-menus","menus","2021-11-23 09:04:45.000" -"OTOKOMIZU","","status-playable","playable","2020-07-13 21:00:44.000" -"Puchikon 4 Smile BASIC","","","","2020-07-13 21:18:15.000" -"Neverlast","","slow;status-ingame","ingame","2020-07-13 23:55:19.000" -"MONKEY BARRELS - 0100FBD00ED24000","0100FBD00ED24000","status-playable","playable","2022-09-14 17:28:52.000" -"Ghost Parade","","status-playable","playable","2020-07-14 00:43:54.000" -"Hopping girl KOHANE Jumping Kingdom: Princess of the Black Rabbit - 010087800EE5A000","010087800EE5A000","status-boots;crash","boots","2023-02-19 00:51:21.000" -"OMG Zombies! - 01006DB00D970000","01006DB00D970000","32-bit;status-playable","playable","2021-04-12 18:04:45.000" -"Evan's Remains","","","","2020-07-14 05:56:25.000" -"Working Zombies","","","","2020-07-14 06:30:55.000" -"Saboteur II: Avenging Angel","","Needs Update;cpu;crash;status-nothing","nothing","2021-01-26 14:47:37.000" -"Quell Zen - 0100492012378000","0100492012378000","gpu;status-ingame","ingame","2021-06-11 15:59:53.000" -"The Touryst - 0100C3300D8C4000","0100C3300D8C4000","status-ingame;crash","ingame","2023-08-22 01:32:38.000" -"SMASHING THE BATTLE - 01002AA00C974000","01002AA00C974000","status-playable","playable","2021-06-11 15:53:57.000" -"Him & Her","","","","2020-07-14 08:09:57.000" -"Speed Brawl","","slow;status-playable","playable","2020-09-18 22:08:16.000" -"River City Melee Mach!! - 0100B2100767C000","0100B2100767C000","status-playable;online-broken","playable","2022-09-20 20:51:57.000" -"Please The Gods","","","","2020-07-14 10:10:27.000" -"One Person Story","","status-playable","playable","2020-07-14 11:51:02.000" -"Mary Skelter 2 - 01003DE00C95E000","01003DE00C95E000","status-ingame;crash;regression","ingame","2023-09-12 07:37:28.000" -"NecroWorm","","","","2020-07-14 12:15:16.000" -"Juicy Realm - 0100C7600F654000","0100C7600F654000","status-playable","playable","2023-02-21 19:16:20.000" -"Grizzland","","","","2020-07-14 12:28:03.000" -"Garfield Kart Furious Racing - 010061E00E8BE000","010061E00E8BE000","status-playable;ldn-works;loader-allocator","playable","2022-09-13 21:40:25.000" -"Close to the Sun - 0100B7200DAC6000","0100B7200DAC6000","status-boots;crash;nvdec;UE4","boots","2021-11-04 09:19:41.000" -"Xeno Crisis","","","","2020-07-14 12:46:55.000" -"Boreal Blade - 01008E500AFF6000","01008E500AFF6000","gpu;ldn-untested;online;status-ingame","ingame","2021-06-11 15:37:14.000" -"Animus: Harbinger - 0100E5A00FD38000","0100E5A00FD38000","status-playable","playable","2022-09-13 22:09:20.000" -"DEADBOLT","","","","2020-07-14 13:20:01.000" -"Headsnatchers","","UE4;crash;status-menus","menus","2020-07-14 13:29:14.000" -"DOUBLE DRAGON Ⅲ: The Sacred Stones - 01001AD00E49A000","01001AD00E49A000","online;status-playable","playable","2021-06-11 15:41:44.000" -"911 Operator Deluxe Edition","","status-playable","playable","2020-07-14 13:57:44.000" -"Disney Tsum Tsum Festival","","crash;status-menus","menus","2020-07-14 14:05:28.000" -"JUST DANCE 2020 - 0100DDB00DB38000","0100DDB00DB38000","status-playable","playable","2022-01-24 13:31:57.000" -"A Street Cat's Tale","","","","2020-07-14 14:10:13.000" -"Real Heroes: Firefighter - 010048600CC16000","010048600CC16000","status-playable","playable","2022-09-20 18:18:44.000" -"The Savior's Gang - 01002BA00C7CE000","01002BA00C7CE000","gpu;status-ingame;nvdec;UE4","ingame","2022-09-21 12:37:48.000" -"KATANA KAMI: A Way of the Samurai Story - 0100F9800EDFA000","0100F9800EDFA000","slow;status-playable","playable","2022-04-09 10:40:16.000" -"Toon War - 01009EA00E2B8000","01009EA00E2B8000","status-playable","playable","2021-06-11 16:41:53.000" -"2048 CAT","","","","2020-07-14 14:44:29.000" -"Tick Tock: A Tale for Two","","status-menus","menus","2020-07-14 14:49:38.000" -"HexON","","","","2020-07-14 14:54:27.000" -"Ancient Rush 2","","UE4;crash;status-menus","menus","2020-07-14 14:58:47.000" -"Under Night In-Birth Exe:Late[cl-r]","","","","2020-07-14 15:06:07.000" -"Circuits - 01008FA00D686000","01008FA00D686000","status-playable","playable","2022-09-19 11:52:50.000" -"Breathing Fear","","status-playable","playable","2020-07-14 15:12:29.000" -"KAMINAZO Memories from the future","","","","2020-07-14 15:22:45.000" -"Big Pharma","","status-playable","playable","2020-07-14 15:27:30.000" -"Amoeba Battle - Microscopic RTS Action - 010041D00DEB2000","010041D00DEB2000","status-playable","playable","2021-05-06 13:33:41.000" -"Assassin's Creed The Rebel Collection - 010044700DEB0000","010044700DEB0000","gpu;status-ingame","ingame","2024-05-19 07:58:56.000" -"Defenders of Ekron - Definitive Edition - 01008BB00F824000","01008BB00F824000","status-playable","playable","2021-06-11 16:31:03.000" -"Hellmut: The Badass from Hell","","","","2020-07-14 15:56:49.000" -"Alien: Isolation - 010075D00E8BA000","010075D00E8BA000","status-playable;nvdec;vulkan-backend-bug","playable","2022-09-17 11:48:41.000" -"Immortal Planet - 01007BC00E55A000","01007BC00E55A000","status-playable","playable","2022-09-20 13:40:43.000" -"inbento","","","","2020-07-14 16:09:57.000" -"Ding Dong XL","","status-playable","playable","2020-07-14 16:13:19.000" -"KUUKIYOMI 2: Consider It More! - New Era - 010037500F282000","010037500F282000","status-nothing;crash;Needs Update","nothing","2021-11-02 09:34:40.000" -" KUUKIYOMI: Consider It!","","","","2020-07-14 16:21:36.000" -"MADORIS R","","","","2020-07-14 16:34:22.000" -"Kairobotica - 0100D5F00EC52000","0100D5F00EC52000","status-playable","playable","2021-05-06 12:17:56.000" -"Bouncy Bob 2","","status-playable","playable","2020-07-14 16:51:53.000" -"Grab the Bottle","","status-playable","playable","2020-07-14 17:06:41.000" -"Red Bow - 0100CF600FF7A000","0100CF600FF7A000","services;status-ingame","ingame","2021-11-29 03:51:34.000" -"Pocket Mini Golf","","","","2020-07-14 22:13:35.000" -"Must Dash Amigos - 0100F6000EAA8000","0100F6000EAA8000","status-playable","playable","2022-09-20 16:45:56.000" -"EarthNight - 0100A2E00BB0C000","0100A2E00BB0C000","status-playable","playable","2022-09-19 21:02:20.000" -"Baobabs Mauseoleum Ep 1: Ovnifagos Don't Eat Flamingos","","status-playable","playable","2020-07-15 05:06:29.000" -"Bloo Kid 2 - 010055900FADA000","010055900FADA000","status-playable","playable","2024-05-01 17:16:57.000" -"Narcos: Rise of the Cartels - 010072B00BDDE000","010072B00BDDE000","UE4;crash;nvdec;status-boots","boots","2021-03-22 13:18:47.000" -"PUSH THE CRATE - 010016400F07E000","010016400F07E000","status-playable;nvdec;UE4","playable","2022-09-15 13:28:41.000" -"Bee Simulator","","UE4;crash;status-boots","boots","2020-07-15 12:13:13.000" -"Where the Bees Make Honey","","status-playable","playable","2020-07-15 12:40:49.000" -"The Eyes of Ara - 0100B5900DFB2000","0100B5900DFB2000","status-playable","playable","2022-09-16 14:44:06.000" -"The Unicorn Princess - 010064E00ECBC000","010064E00ECBC000","status-playable","playable","2022-09-16 16:20:56.000" -"Sword of the Guardian","","status-playable","playable","2020-07-16 12:24:39.000" -"Waifu Uncovered - 0100B130119D0000","0100B130119D0000","status-ingame;crash","ingame","2023-02-27 01:17:46.000" -"Paper Mario The Origami King - 0100A3900C3E2000","0100A3900C3E2000","audio;status-playable;Needs Update","playable","2024-08-09 18:27:40.000" -"Touhou Spell Bubble","","status-playable","playable","2020-10-18 11:43:43.000" -"Crysis Remastered - 0100E66010ADE000","0100E66010ADE000","status-menus;nvdec","menus","2024-08-13 05:23:24.000" -"Helltaker","","","","2020-07-23 21:16:43.000" -"Shadow Blade Reload - 0100D5500DA94000","0100D5500DA94000","nvdec;status-playable","playable","2021-06-11 18:40:43.000" -"The Bunker - 01001B40086E2000","01001B40086E2000","status-playable;nvdec","playable","2022-09-16 14:24:05.000" -"War Tech Fighters - 010049500DE56000","010049500DE56000","status-playable;nvdec","playable","2022-09-16 22:29:31.000" -"Real Drift Racing","","status-playable","playable","2020-07-25 14:31:31.000" -"Phantaruk - 0100DDD00C0EA000","0100DDD00C0EA000","status-playable","playable","2021-06-11 18:09:54.000" -"Omensight: Definitive Edition","","UE4;crash;nvdec;status-ingame","ingame","2020-07-26 01:45:14.000" -"Phantom Doctrine - 010096F00E5B0000","010096F00E5B0000","status-playable;UE4","playable","2022-09-15 10:51:50.000" -"Monster Bugs Eat People","","status-playable","playable","2020-07-26 02:05:34.000" -"Machi Knights Blood bagos - 0100F2400D434000","0100F2400D434000","status-playable;nvdec;UE4","playable","2022-09-14 15:08:04.000" -"Offroad Racing - 01003CD00E8BC000","01003CD00E8BC000","status-playable;online-broken;UE4","playable","2022-09-14 18:53:22.000" -"Puzzle Book","","status-playable","playable","2020-09-28 13:26:01.000" -"SUSHI REVERSI - 01005AB01119C000","01005AB01119C000","status-playable","playable","2021-06-11 19:26:58.000" -"Strike Force - War on Terror - 010039100DACC000","010039100DACC000","status-menus;crash;Needs Update","menus","2021-11-24 08:08:20.000" -"Mr Blaster - 0100D3300F110000","0100D3300F110000","status-playable","playable","2022-09-14 17:56:24.000" -"Lust for Darkness","","nvdec;status-playable","playable","2020-07-26 12:09:15.000" -"Legrand Legacy: Tale of the Fatebounds","","nvdec;status-playable","playable","2020-07-26 12:27:36.000" -"Hardway Party","","status-playable","playable","2020-07-26 12:35:07.000" -"Earthfall: Alien Horde - 0100DFC00E472000","0100DFC00E472000","status-playable;nvdec;UE4;ldn-untested","playable","2022-09-13 17:32:37.000" -"Collidalot - 010030800BC36000","010030800BC36000","status-playable;nvdec","playable","2022-09-13 14:09:27.000" -"Miniature - The Story Puzzle - 010039200EC66000","010039200EC66000","status-playable;UE4","playable","2022-09-14 17:18:50.000" -"MEANDERS - 0100EEF00CBC0000","0100EEF00CBC0000","UE4;gpu;status-ingame","ingame","2021-06-11 19:19:33.000" -"Isoland","","status-playable","playable","2020-07-26 13:48:16.000" -"Fishing Star World Tour - 0100DEB00ACE2000","0100DEB00ACE2000","status-playable","playable","2022-09-13 19:08:51.000" -"Isoland 2: Ashes of Time","","status-playable","playable","2020-07-26 14:29:05.000" -"Golazo - 010013800F0A4000","010013800F0A4000","status-playable","playable","2022-09-13 21:58:37.000" -"Castle of No Escape 2 - 0100F5500FA0E000","0100F5500FA0E000","status-playable","playable","2022-09-13 13:51:42.000" -"Guess The Word","","status-playable","playable","2020-07-26 21:34:25.000" -"Black Future '88 - 010049000B69E000","010049000B69E000","status-playable;nvdec","playable","2022-09-13 11:24:37.000" -"The Childs Sight - 010066800E9F8000","010066800E9F8000","status-playable","playable","2021-06-11 19:04:56.000" -"Asterix & Obelix XXL3: The Crystal Menhir - 010081500EA1E000","010081500EA1E000","gpu;status-ingame;nvdec;regression","ingame","2022-11-28 14:19:23.000" -"Go! Fish Go!","","status-playable","playable","2020-07-27 13:52:28.000" -"Amnesia: Collection - 01003CC00D0BE000","01003CC00D0BE000","status-playable","playable","2022-10-04 13:36:15.000" -"Ages of Mages: the Last Keeper - 0100E4700E040000","0100E4700E040000","status-playable;vulkan-backend-bug","playable","2022-10-04 11:44:05.000" -"Worlds of Magic: Planar Conquest - 010000301025A000","010000301025A000","status-playable","playable","2021-06-12 12:51:28.000" -"Hang the Kings","","status-playable","playable","2020-07-28 22:56:59.000" -"Super Dungeon Tactics - 010023100B19A000","010023100B19A000","status-playable","playable","2022-10-06 17:40:40.000" -"Five Nights at Freddy's: Sister Location - 01003B200E440000","01003B200E440000","status-playable","playable","2023-10-06 09:00:58.000" -"Ice Cream Surfer","","status-playable","playable","2020-07-29 12:04:07.000" -"Demon's Rise","","status-playable","playable","2020-07-29 12:26:27.000" -"A Ch'ti Bundle - 010096A00CC80000","010096A00CC80000","status-playable;nvdec","playable","2022-10-04 12:48:44.000" -"Overwatch®: Legendary Edition - 0100F8600E21E000","0100F8600E21E000","deadlock;status-boots","boots","2022-09-14 20:22:22.000" -"Zombieland: Double Tap - Road Trip - 01000E5800D32C000","01000E5800D32C00","status-playable","playable","2022-09-17 10:08:45.000" -"Children of Morta - 01002DE00C250000","01002DE00C250000","gpu;status-ingame;nvdec","ingame","2022-09-13 17:48:47.000" -"Story of a Gladiator","","status-playable","playable","2020-07-29 15:08:18.000" -"SD GUNDAM G GENERATION CROSS RAYS - 010055700CEA8000","010055700CEA8000","status-playable;nvdec","playable","2022-09-15 20:58:44.000" -"Neverwinter Nights: Enhanced Edition - 010013700DA4A000","010013700DA4A000","gpu;status-menus;nvdec","menus","2024-09-30 02:59:19.000" -"Race With Ryan","","UE4;gpu;nvdec;slow;status-ingame","ingame","2020-11-16 04:35:33.000" -"StrikeForce Kitty","","nvdec;status-playable","playable","2020-07-29 16:22:15.000" -"Later Daters","","status-playable","playable","2020-07-29 16:35:45.000" -"Pine","","slow;status-ingame","ingame","2020-07-29 16:57:39.000" -"Japanese Rail Sim: Journey to Kyoto","","nvdec;status-playable","playable","2020-07-29 17:14:21.000" -"FoxyLand","","status-playable","playable","2020-07-29 20:55:20.000" -"Five Nights at Freddy's - 0100B6200D8D2000","0100B6200D8D2000","status-playable","playable","2022-09-13 19:26:36.000" -"Five Nights at Freddy's 2 - 01004EB00E43A000","01004EB00E43A000","status-playable","playable","2023-02-08 15:48:24.000" -"Five Nights at Freddy's 3 - 010056100E43C000","010056100E43C000","status-playable","playable","2022-09-13 20:58:07.000" -"Five Nights at Freddy's 4 - 010083800E43E000","010083800E43E000","status-playable","playable","2023-08-19 07:28:03.000" -"Widget Satchel - 0100C7800CA06000","0100C7800CA06000","status-playable","playable","2022-09-16 22:41:07.000" -"Nyan Cat: Lost in Space - 010049F00EC30000","010049F00EC30000","online;status-playable","playable","2021-06-12 13:22:03.000" -"Blacksad: Under the Skin - 010032000EA2C000","010032000EA2C000","status-playable","playable","2022-09-13 11:38:04.000" -"Mini Trains","","status-playable","playable","2020-07-29 23:06:20.000" -"Call of Juarez: Gunslinger - 0100B4700BFC6000","0100B4700BFC6000","gpu;status-ingame;nvdec","ingame","2022-09-17 16:49:46.000" -"Locomotion","","","","2020-07-31 08:17:09.000" -"Headspun","","status-playable","playable","2020-07-31 19:46:47.000" -"Exception - 0100F2D00C7DE000","0100F2D00C7DE000","status-playable;online-broken","playable","2022-09-20 12:47:10.000" -"Dead End Job - 01004C500BD40000","01004C500BD40000","status-playable;nvdec","playable","2022-09-19 12:48:44.000" -"Event Horizon: Space Defense","","status-playable","playable","2020-07-31 20:31:24.000" -"SAMURAI SHODOWN","","UE4;crash;nvdec;status-menus","menus","2020-09-06 02:17:00.000" -"BQM BlockQuest Maker","","online;status-playable","playable","2020-07-31 20:56:50.000" -"Hard West - 0100ECE00D13E000","0100ECE00D13E000","status-nothing;regression","nothing","2022-02-09 07:45:56.000" -"Override: Mech City Brawl - Super Charged Mega Edition - 01008A700F7EE000","01008A700F7EE000","status-playable;nvdec;online-broken;UE4","playable","2022-09-20 17:33:32.000" -"Where Are My Friends? - 0100FDB0092B4000","0100FDB0092B4000","status-playable","playable","2022-09-21 14:39:26.000" -"Final Light, The Prison","","status-playable","playable","2020-07-31 21:48:44.000" -"Citizens of Space - 0100E4200D84E000","0100E4200D84E000","gpu;status-boots","boots","2023-10-22 06:45:44.000" -"Adventures of Bertram Fiddle: Episode 1: A Dreadly Business - 01003B400A00A000","01003B400A00A000","status-playable;nvdec","playable","2022-09-17 11:07:56.000" -"Momonga Pinball Adventures - 01002CC00BC4C000","01002CC00BC4C000","status-playable","playable","2022-09-20 16:00:40.000" -"Suicide Guy: Sleepin' Deeply - 0100DE000C2E4000","0100DE000C2E4000","status-ingame;Needs More Attention","ingame","2022-09-20 23:45:25.000" -"Warhammer 40,000: Mechanicus - 0100C6000EEA8000","0100C6000EEA8000","nvdec;status-playable","playable","2021-06-13 10:46:38.000" -"Caretaker - 0100DA70115E6000","0100DA70115E6000","status-playable","playable","2022-10-04 14:52:24.000" -"Once Upon A Coma","","nvdec;status-playable","playable","2020-08-01 12:09:39.000" -"Welcome to Hanwell","","UE4;crash;status-boots","boots","2020-08-03 11:54:57.000" -"Radical Rabbit Stew","","status-playable","playable","2020-08-03 12:02:56.000" -"We should talk.","","crash;status-nothing","nothing","2020-08-03 12:32:36.000" -"Get 10 Quest","","status-playable","playable","2020-08-03 12:48:39.000" -"Dongo Adventure - 010088B010DD2000","010088B010DD2000","status-playable","playable","2022-10-04 16:22:26.000" -"Singled Out","","online;status-playable","playable","2020-08-03 13:06:18.000" -"Never Breakup - 010039801093A000","010039801093A000","status-playable","playable","2022-10-05 16:12:12.000" -"Ashen - 010027B00E40E000","010027B00E40E000","status-playable;nvdec;online-broken;UE4","playable","2022-09-17 12:19:14.000" -"JDM Racing","","status-playable","playable","2020-08-03 17:02:37.000" -"Farabel","","status-playable","playable","2020-08-03 17:47:28.000" -"Hover - 0100F6800910A000","0100F6800910A000","status-playable;online-broken","playable","2022-09-20 12:54:46.000" -"DragoDino","","gpu;nvdec;status-ingame","ingame","2020-08-03 20:49:16.000" -"Rift Keeper - 0100AC600D898000","0100AC600D898000","status-playable","playable","2022-09-20 19:48:20.000" -"Melbits World - 01000FA010340000","01000FA010340000","status-menus;nvdec;online","menus","2021-11-26 13:51:22.000" -"60 Parsecs! - 010010100FF14000","010010100FF14000","status-playable","playable","2022-09-17 11:01:17.000" -"Warhammer Quest 2","","status-playable","playable","2020-08-04 15:28:03.000" -"Rescue Tale - 01003C400AD42000","01003C400AD42000","status-playable","playable","2022-09-20 18:40:18.000" -"Akuto","","status-playable","playable","2020-08-04 19:43:27.000" -"Demon Pit - 010084600F51C000","010084600F51C000","status-playable;nvdec","playable","2022-09-19 13:35:15.000" -"Regions of Ruin","","status-playable","playable","2020-08-05 11:38:58.000" -"Roombo: First Blood","","nvdec;status-playable","playable","2020-08-05 12:11:37.000" -"Mountain Rescue Simulator - 01009DB00D6E0000","01009DB00D6E0000","status-playable","playable","2022-09-20 16:36:48.000" -"Mad Games Tycoon - 010061E00EB1E000","010061E00EB1E000","status-playable","playable","2022-09-20 14:23:14.000" -"Down to Hell - 0100B6600FE06000","0100B6600FE06000","gpu;status-ingame;nvdec","ingame","2022-09-19 14:01:26.000" -"Funny Bunny Adventures","","status-playable","playable","2020-08-05 13:46:56.000" -"Crazy Zen Mini Golf","","status-playable","playable","2020-08-05 14:00:00.000" -"Drawngeon: Dungeons of Ink and Paper - 0100B7E0102E4000","0100B7E0102E4000","gpu;status-ingame","ingame","2022-09-19 15:41:25.000" -"Farming Simulator 20 - 0100EB600E914000","0100EB600E914000","nvdec;status-playable","playable","2021-06-13 10:52:44.000" -"DreamBall","","UE4;crash;gpu;status-ingame","ingame","2020-08-05 14:45:25.000" -"DEMON'S TILT - 0100BE800E6D8000","0100BE800E6D8000","status-playable","playable","2022-09-19 13:22:46.000" -"Heroland","","status-playable","playable","2020-08-05 15:35:39.000" -"Double Switch - 25th Anniversary Edition - 0100FC000EE10000","0100FC000EE10000","status-playable;nvdec","playable","2022-09-19 13:41:50.000" -"Ultimate Racing 2D","","status-playable","playable","2020-08-05 17:27:09.000" -"THOTH","","status-playable","playable","2020-08-05 18:35:28.000" -"SUPER ROBOT WARS X","","online;status-playable","playable","2020-08-05 19:18:51.000" -"Aborigenus","","status-playable","playable","2020-08-05 19:47:24.000" -"140","","status-playable","playable","2020-08-05 20:01:33.000" -"Goken","","status-playable","playable","2020-08-05 20:22:38.000" -"Maitetsu: Pure Station - 0100D9900F220000","0100D9900F220000","status-playable","playable","2022-09-20 15:12:49.000" -"Super Mega Space Blaster Special Turbo","","online;status-playable","playable","2020-08-06 12:13:25.000" -"Squidlit","","status-playable","playable","2020-08-06 12:38:32.000" -"Stories Untold - 010074400F6A8000","010074400F6A8000","status-playable;nvdec","playable","2022-12-22 01:08:46.000" -"Super Saurio Fly","","nvdec;status-playable","playable","2020-08-06 13:12:14.000" -"Hero Express","","nvdec;status-playable","playable","2020-08-06 13:23:43.000" -"Demolish & Build - 010099D00D1A4000","010099D00D1A4000","status-playable","playable","2021-06-13 15:27:26.000" -"Masquerada: Songs and Shadows - 0100113008262000","0100113008262000","status-playable","playable","2022-09-20 15:18:54.000" -"Dreaming Canvas - 010058B00F3C0000","010058B00F3C0000","UE4;gpu;status-ingame","ingame","2021-06-13 22:50:07.000" -"Time Tenshi","","","","2020-08-06 14:38:37.000" -"FoxyLand 2","","status-playable","playable","2020-08-06 14:41:30.000" -"Nicole - 0100A95012668000","0100A95012668000","status-playable;audout","playable","2022-10-05 16:41:44.000" -"Spiral Memoria -The Summer I Meet Myself-","","","","2020-08-06 15:19:11.000" -"Warhammer 40,000: Space Wolf - 0100E5600D7B2000","0100E5600D7B2000","status-playable;online-broken","playable","2022-09-20 21:11:20.000" -"KukkoroDays - 010022801242C000","010022801242C000","status-menus;crash","menus","2021-11-25 08:52:56.000" -"Shadows 2: Perfidia","","status-playable","playable","2020-08-07 12:43:46.000" -"Murasame No Sword Breaker PV","","","","2020-08-07 12:54:21.000" -"Escape from Chernobyl - 0100FEF00F0AA000","0100FEF00F0AA000","status-boots;crash","boots","2022-09-19 21:36:58.000" -"198X","","status-playable","playable","2020-08-07 13:24:38.000" -"Orn: The Tiny Forest Sprite","","UE4;gpu;status-ingame","ingame","2020-08-07 14:25:30.000" -"Oddworld: Stranger's Wrath HD - 01002EA00ABBA000","01002EA00ABBA000","status-menus;crash;nvdec;loader-allocator","menus","2021-11-23 09:23:21.000" -"Just Glide","","status-playable","playable","2020-08-07 17:38:10.000" -"Ember - 010041A00FEC6000","010041A00FEC6000","status-playable;nvdec","playable","2022-09-19 21:16:11.000" -"Crazy Strike Bowling EX","","UE4;gpu;nvdec;status-ingame","ingame","2020-08-07 18:15:59.000" -"requesting accessibility in the main UI","","","","2020-08-08 00:09:05.000" -"Invisible Fist","","status-playable","playable","2020-08-08 13:25:52.000" -"Nicky: The Home Alone Golf Ball","","status-playable","playable","2020-08-08 13:45:39.000" -"KING OF FIGHTERS R-2","","","","2020-08-09 12:39:55.000" -"The Walking Dead: Season Two","","status-playable","playable","2020-08-09 12:57:06.000" -"Yoru, tomosu","","","","2020-08-09 12:57:28.000" -"Zero Zero Zero Zero","","","","2020-08-09 13:14:58.000" -"Duke of Defense","","","","2020-08-09 13:34:52.000" -"Himno","","","","2020-08-09 13:51:57.000" -"The Walking Dead: A New Frontier - 010056E00B4F4000","010056E00B4F4000","status-playable","playable","2022-09-21 13:40:48.000" -"Cruel Bands Career","","","","2020-08-09 15:00:25.000" -"CARRION","","crash;status-nothing","nothing","2020-08-13 17:15:12.000" -"CODE SHIFTER","","status-playable","playable","2020-08-09 15:20:55.000" -"Ultra Hat Dimension - 01002D4012222000","01002D4012222000","services;audio;status-menus","menus","2021-11-18 09:05:20.000" -"Root Film","","","","2020-08-09 17:47:35.000" -"NAIRI: Tower of Shirin","","nvdec;status-playable","playable","2020-08-09 19:49:12.000" -"Panzer Paladin - 01004AE0108E0000","01004AE0108E0000","status-playable","playable","2021-05-05 18:26:00.000" -"Sinless","","nvdec;status-playable","playable","2020-08-09 20:18:55.000" -"Aviary Attorney: Definitive Edition","","status-playable","playable","2020-08-09 20:32:12.000" -"Lumini","","status-playable","playable","2020-08-09 20:45:09.000" -"Music Racer","","status-playable","playable","2020-08-10 08:51:23.000" -"Curious Cases","","status-playable","playable","2020-08-10 09:30:48.000" -"7th Sector","","nvdec;status-playable","playable","2020-08-10 14:22:14.000" -"Ash of Gods: Redemption","","deadlock;status-nothing","nothing","2020-08-10 18:08:32.000" -"The Turing Test - 0100EA100F516000","0100EA100F516000","status-playable;nvdec","playable","2022-09-21 13:24:07.000" -"The Town of Light - 010058000A576000","010058000A576000","gpu;status-playable","playable","2022-09-21 12:51:34.000" -"The Park","","UE4;crash;gpu;status-ingame","ingame","2020-12-18 12:50:07.000" -"Rogue Legacy","","status-playable","playable","2020-08-10 19:17:28.000" -"Nerved - 01008B0010160000","01008B0010160000","status-playable;UE4","playable","2022-09-20 17:14:03.000" -"Super Korotama - 010000D00F81A000","010000D00F81A000","status-playable","playable","2021-06-06 19:06:22.000" -"Mosaic","","status-playable","playable","2020-08-11 13:07:35.000" -"Pumped BMX Pro - 01009AE00B788000","01009AE00B788000","status-playable;nvdec;online-broken","playable","2022-09-20 17:40:50.000" -"The Dark Crystal","","status-playable","playable","2020-08-11 13:43:41.000" -"Ageless","","","","2020-08-11 13:52:24.000" -"EQQO - 0100E95010058000","0100E95010058000","UE4;nvdec;status-playable","playable","2021-06-13 23:10:51.000" -"LAST FIGHT - 01009E100BDD6000","01009E100BDD6000","status-playable","playable","2022-09-20 13:54:55.000" -"Neverending Nightmares - 0100F79012600000","0100F79012600000","crash;gpu;status-boots","boots","2021-04-24 01:43:35.000" -"Monster Jam Steel Titans - 010095C00F354000","010095C00F354000","status-menus;crash;nvdec;UE4","menus","2021-11-14 09:45:38.000" -"Star Story: The Horizon Escape","","status-playable","playable","2020-08-11 22:31:38.000" -"LOCO-SPORTS - 0100BA000FC9C000","0100BA000FC9C000","status-playable","playable","2022-09-20 14:09:30.000" -"Eclipse: Edge of Light","","status-playable","playable","2020-08-11 23:06:29.000" -"Psikyo Shooting Stars Alpha - 01007A200F2E2000","01007A200F2E2000","32-bit;status-playable","playable","2021-04-13 12:03:43.000" -"Monster Energy Supercross - The Official Videogame 3 - 010097800EA20000","010097800EA20000","UE4;audout;nvdec;online;status-playable","playable","2021-06-14 12:37:54.000" -"Musou Orochi 2 Ultimate","","crash;nvdec;status-boots","boots","2021-04-09 19:39:16.000" -"Alien Cruise","","status-playable","playable","2020-08-12 13:56:05.000" -"KUNAI - 010035A00DF62000","010035A00DF62000","status-playable;nvdec","playable","2022-09-20 13:48:34.000" -"Haunted Dungeons: Hyakki Castle","","status-playable","playable","2020-08-12 14:21:48.000" -"Tangledeep","","crash;status-boots","boots","2021-01-05 04:08:41.000" -"Azuran Tales: Trials","","status-playable","playable","2020-08-12 15:23:07.000" -"LOST ORBIT: Terminal Velocity - 010054600AC74000","010054600AC74000","status-playable","playable","2021-06-14 12:21:12.000" -"Monster Blast - 0100E2D0128E6000","0100E2D0128E6000","gpu;status-ingame","ingame","2023-09-02 20:02:32.000" -"Need a Packet?","","status-playable","playable","2020-08-12 16:09:01.000" -"Downwell - 010093D00C726000","010093D00C726000","status-playable","playable","2021-04-25 20:05:24.000" -"Dex","","nvdec;status-playable","playable","2020-08-12 16:48:12.000" -"Magicolors","","status-playable","playable","2020-08-12 18:39:11.000" -"Jisei: The First Case HD - 010038D011F08000","010038D011F08000","audio;status-playable","playable","2022-10-05 11:43:33.000" -"Mittelborg: City of Mages","","status-playable","playable","2020-08-12 19:58:06.000" -"Psikyo Shooting Stars Bravo - 0100D7400F2E4000","0100D7400F2E4000","32-bit;status-playable","playable","2021-06-14 12:09:07.000" -"STAB STAB STAB!","","","","2020-08-13 16:39:00.000" -"fault - milestone one","","nvdec;status-playable","playable","2021-03-24 10:41:49.000" -"Gerrrms","","status-playable","playable","2020-08-15 11:32:52.000" -"Aircraft Evolution - 0100E95011FDC000","0100E95011FDC000","nvdec;status-playable","playable","2021-06-14 13:30:18.000" -"Creaks","","status-playable","playable","2020-08-15 12:20:52.000" -"ARCADE FUZZ","","status-playable","playable","2020-08-15 12:37:36.000" -"Esports powerful pro yakyuu 2020 - 010073000FE18000","010073000FE18000","gpu;status-ingame;crash;Needs More Attention","ingame","2024-04-29 05:34:14.000" -"Arcade Archives ALPHA MISSION - 01005DD00BE08000","01005DD00BE08000","online;status-playable","playable","2021-04-15 09:20:43.000" -"Arcade Archives ALPINE SKI - 010083800DC70000","010083800DC70000","online;status-playable","playable","2021-04-15 09:28:46.000" -"Arcade Archives ARGUS - 010014F001DE2000","010014F001DE2000","online;status-playable","playable","2021-04-16 06:51:25.000" -"Arcade Archives Armed F - 010014F001DE2000","010014F001DE2000","online;status-playable","playable","2021-04-16 07:00:17.000" -"Arcade Archives ATHENA - 0100BEC00C7A2000","0100BEC00C7A2000","online;status-playable","playable","2021-04-16 07:10:12.000" -"Arcade Archives Atomic Robo-Kid - 0100426001DE4000","0100426001DE4000","online;status-playable","playable","2021-04-16 07:20:29.000" -"Arcade Archives BOMB JACK - 0100192009824000","0100192009824000","online;status-playable","playable","2021-04-16 09:48:26.000" -"Arcade Archives CLU CLU LAND - 0100EDC00E35A000","0100EDC00E35A000","online;status-playable","playable","2021-04-16 10:00:42.000" -"Arcade Archives EXCITEBIKE","","","","2020-08-19 12:08:03.000" -"Arcade Archives FRONT LINE - 0100496006EC8000","0100496006EC8000","online;status-playable","playable","2021-05-05 14:10:49.000" -"Arcade Archives ICE CLIMBER - 01007D200D3FC000","01007D200D3FC000","online;status-playable","playable","2021-05-05 14:18:34.000" -"Arcade Archives IKARI WARRIORS - 010049400C7A8000","010049400C7A8000","online;status-playable","playable","2021-05-05 14:24:46.000" -"Arcade Archives IMAGE FIGHT - 010008300C978000","010008300C978000","online;status-playable","playable","2021-05-05 14:31:21.000" -"Arcade Archives MOON CRESTA - 01000BE001DD8000","01000BE001DD8000","online;status-playable","playable","2021-05-05 14:39:29.000" -"Arcade Archives Ninja Spirit - 01002F300D2C6000","01002F300D2C6000","online;status-playable","playable","2021-05-05 14:45:31.000" -"Arcade Archives POOYAN - 0100A6E00D3F8000","0100A6E00D3F8000","online;status-playable","playable","2021-05-05 17:58:19.000" -"Arcade Archives PSYCHO SOLDIER - 01000D200C7A4000","01000D200C7A4000","online;status-playable","playable","2021-05-05 18:02:19.000" -"Arcade Archives ROAD FIGHTER - 0100FBA00E35C000","0100FBA00E35C000","online;status-playable","playable","2021-05-05 18:09:17.000" -"Arcade Archives ROUTE 16 - 010060000BF7C000","010060000BF7C000","online;status-playable","playable","2021-05-05 18:40:41.000" -"Arcade Archives Shusse Ozumo - 01007A4009834000","01007A4009834000","online;status-playable","playable","2021-05-05 17:52:25.000" -"Arcade Archives Solomon's Key - 01008C900982E000","01008C900982E000","online;status-playable","playable","2021-04-19 16:27:18.000" -"Arcade Archives TERRA FORCE - 0100348001DE6000","0100348001DE6000","online;status-playable","playable","2021-04-16 20:03:27.000" -"Arcade Archives THE NINJA WARRIORS - 0100DC000983A000","0100DC000983A000","online;slow;status-ingame","ingame","2021-04-16 19:54:56.000" -"Arcade Archives TIME PILOT - 0100AF300D2E8000","0100AF300D2E8000","online;status-playable","playable","2021-04-16 19:22:31.000" -"Arcade Archives URBAN CHAMPION - 010042200BE0C000","010042200BE0C000","online;status-playable","playable","2021-04-16 10:20:03.000" -"Arcade Archives WILD WESTERN - 01001B000D8B6000","01001B000D8B6000","online;status-playable","playable","2021-04-16 10:11:36.000" -"Arcade Archives GRADIUS","","","","2020-08-19 13:42:45.000" -"Evergate","","","","2020-08-19 22:28:07.000" -"Naught - 0100103011894000","0100103011894000","UE4;status-playable","playable","2021-04-26 13:31:45.000" -"Vitamin Connection ","","","","2020-08-19 23:18:42.000" -"Rock of Ages 3: Make & Break - 0100A1B00DB36000","0100A1B00DB36000","status-playable;UE4","playable","2022-10-06 12:18:29.000" -"Cubicity - 010040D011D04000","010040D011D04000","status-playable","playable","2021-06-14 14:19:51.000" -"Anima Gate of Memories: The Nameless Chronicles - 01007A400B3F8000","01007A400B3F8000","status-playable","playable","2021-06-14 14:33:06.000" -"Big Dipper - 0100A42011B28000","0100A42011B28000","status-playable","playable","2021-06-14 15:08:19.000" -"Dodo Peak - 01001770115C8000","01001770115C8000","status-playable;nvdec;UE4","playable","2022-10-04 16:13:05.000" -"Cube Creator X - 010001600D1E8000","010001600D1E8000","status-menus;crash","menus","2021-11-25 08:53:28.000" -"Raji An Ancient Epic","","UE4;gpu;nvdec;status-ingame","ingame","2020-12-16 10:05:25.000" -"Red Siren : Space Defense - 010045400D73E000","010045400D73E000","UE4;status-playable","playable","2021-04-25 21:21:29.000" -"Shanky: The Vegan's Nightmare - 01000C00CC10000","","status-playable","playable","2021-01-26 15:03:55.000" -"Cricket 19 - 010022D00D4F0000","010022D00D4F0000","gpu;status-ingame","ingame","2021-06-14 14:56:07.000" -"Florence","","status-playable","playable","2020-09-05 01:22:30.000" -"Banner of the Maid - 010013C010C5C000","010013C010C5C000","status-playable","playable","2021-06-14 15:23:37.000" -"Super Loop Drive - 01003E300FCAE000","01003E300FCAE000","status-playable;nvdec;UE4","playable","2022-09-22 10:58:05.000" -"Buried Stars","","status-playable","playable","2020-09-07 14:11:58.000" -"FINAL FANTASY CRYSTAL CHRONICLES Remastered Edition - 0100CE4010AAC000","0100CE4010AAC000","status-playable","playable","2023-04-02 23:39:12.000" -"Go All Out - 01000C800FADC000","01000C800FADC000","status-playable;online-broken","playable","2022-09-21 19:16:34.000" -"This Strange Realm of Mine","","status-playable","playable","2020-08-28 12:07:24.000" -"Silent World","","status-playable","playable","2020-08-28 13:45:13.000" -"Alder's Blood","","status-playable","playable","2020-08-28 15:15:23.000" -"Red Death","","status-playable","playable","2020-08-30 13:07:37.000" -"3000th Duel - 0100FB5010D2E000","0100FB5010D2E000","status-playable","playable","2022-09-21 17:12:08.000" -"Rise of Insanity","","status-playable","playable","2020-08-30 15:42:14.000" -"Darksiders Genesis - 0100F2300D4BA000","0100F2300D4BA000","status-playable;nvdec;online-broken;UE4;ldn-broken","playable","2022-09-21 18:06:25.000" -"Space Blaze","","status-playable","playable","2020-08-30 16:18:05.000" -"Two Point Hospital - 010031200E044000","010031200E044000","status-ingame;crash;nvdec","ingame","2022-09-22 11:22:23.000" -"Is It Wrong to Try to Pick Up Girls in a Dungeon? Infinite Combate","","status-playable","playable","2020-08-31 13:52:21.000" -"Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz","","status-playable","playable","2020-08-31 14:17:42.000" -"Cat Girl Without Salad: Amuse-Bouche - 010076000C86E000","010076000C86E000","status-playable","playable","2022-09-03 13:01:47.000" -"moon","","","","2020-08-31 15:46:23.000" -"Lines XL","","status-playable","playable","2020-08-31 17:48:23.000" -"Knightin'+","","status-playable","playable","2020-08-31 18:18:21.000" -"King Lucas - 0100E6B00FFBA000","0100E6B00FFBA000","status-playable","playable","2022-09-21 19:43:23.000" -"Skulls of the Shogun: Bone-a-fide Edition","","status-playable","playable","2020-08-31 18:58:12.000" -"SEGA AGES SONIC THE HEDGEHOG 2 - 01000D200C614000","01000D200C614000","status-playable","playable","2022-09-21 20:26:35.000" -"Devil May Cry 3 Special Edition - 01007B600D5BC000","01007B600D5BC000","status-playable;nvdec","playable","2024-07-08 12:33:23.000" -"Double Dragon & Kunio-Kun: Retro Brawler Bundle","","status-playable","playable","2020-09-01 12:48:46.000" -"Lost Horizon","","status-playable","playable","2020-09-01 13:41:22.000" -"Unlock the King","","status-playable","playable","2020-09-01 13:58:27.000" -"Vasilis","","status-playable","playable","2020-09-01 15:05:35.000" -"Mathland","","status-playable","playable","2020-09-01 15:40:06.000" -"MEGAMAN ZERO/ZX LEGACY COLLECTION - 010025C00D410000","010025C00D410000","status-playable","playable","2021-06-14 16:17:32.000" -"Afterparty - 0100DB100BBCE000","0100DB100BBCE000","status-playable","playable","2022-09-22 12:23:19.000" -"Tiny Racer - 01005D0011A40000","01005D0011A40000","status-playable","playable","2022-10-07 11:13:03.000" -"Skully - 0100D7B011654000","0100D7B011654000","status-playable;nvdec;UE4","playable","2022-10-06 13:52:59.000" -"Megadimension Neptunia VII","","32-bit;nvdec;status-playable","playable","2020-12-17 20:56:03.000" -"Kingdom Rush - 0100A280121F6000","0100A280121F6000","status-nothing;32-bit;crash;Needs More Attention","nothing","2022-10-05 12:34:00.000" -"Cubers: Arena - 010082E00F1CE000","010082E00F1CE000","status-playable;nvdec;UE4","playable","2022-10-04 16:05:40.000" -"Air Missions: HIND","","status-playable","playable","2020-12-13 10:16:45.000" -"Fairy Tail - 0100CF900FA3E000","0100CF900FA3E000","status-playable;nvdec","playable","2022-10-04 23:00:32.000" -"Sentinels of Freedom - 01009E500D29C000","01009E500D29C000","status-playable","playable","2021-06-14 16:42:19.000" -"SAMURAI SHOWDOWN NEOGEO COLLECTION - 0100F6800F48E000","0100F6800F48E000","nvdec;status-playable","playable","2021-06-14 17:12:56.000" -"Rugby Challenge 4 - 010009B00D33C000","010009B00D33C000","slow;status-playable;online-broken;UE4","playable","2022-10-06 12:45:53.000" -"Neon Abyss - 0100BAB01113A000","0100BAB01113A000","status-playable","playable","2022-10-05 15:59:44.000" -"Max & The Book of Chaos","","status-playable","playable","2020-09-02 12:24:43.000" -"Family Mysteries: Poisonous Promises - 0100034012606000","0100034012606000","audio;status-menus;crash","menus","2021-11-26 12:35:06.000" -"Interrogation: You will be deceived - 010041501005E000","010041501005E000","status-playable","playable","2022-10-05 11:40:10.000" -"Instant Sports Summer Games","","gpu;status-menus","menus","2020-09-02 13:39:28.000" -"AvoCuddle","","status-playable","playable","2020-09-02 14:50:13.000" -"Be-A Walker","","slow;status-ingame","ingame","2020-09-02 15:00:31.000" -"Soccer, Tactics & Glory - 010095C00F9DE000","010095C00F9DE000","gpu;status-ingame","ingame","2022-09-26 17:15:58.000" -"The Great Perhaps","","status-playable","playable","2020-09-02 15:57:04.000" -"Volta-X - 0100A7900E79C000","0100A7900E79C000","status-playable;online-broken","playable","2022-10-07 12:20:51.000" -"Hero Hours Contract","","","","2020-09-03 03:13:22.000" -"Starlit Adventures Golden Stars","","status-playable","playable","2020-11-21 12:14:43.000" -"Superliminal","","status-playable","playable","2020-09-03 13:20:50.000" -"Robozarro","","status-playable","playable","2020-09-03 13:33:40.000" -"QuietMansion2","","status-playable","playable","2020-09-03 14:59:35.000" -"DISTRAINT 2","","status-playable","playable","2020-09-03 16:08:12.000" -"Bloodstained: Curse of the Moon 2","","status-playable","playable","2020-09-04 10:56:27.000" -"Deadly Premonition 2 - 0100BAC011928000","0100BAC011928000","status-playable","playable","2021-06-15 14:12:36.000" -"CrossCode - 01003D90058FC000","01003D90058FC000","status-playable","playable","2024-02-17 10:23:19.000" -"Metro: Last Light Redux - 0100F0400E850000","0100F0400E850000","slow;status-ingame;nvdec;vulkan-backend-bug","ingame","2023-11-01 11:53:52.000" -"Soul Axiom Rebooted","","nvdec;slow;status-ingame","ingame","2020-09-04 12:41:01.000" -"Portal Dogs","","status-playable","playable","2020-09-04 12:55:46.000" -"Bucket Knight","","crash;status-ingame","ingame","2020-09-04 13:11:24.000" -"Arcade Archives LIFE FORCE","","status-playable","playable","2020-09-04 13:26:25.000" -"Stela - 01002DE01043E000","01002DE01043E000","UE4;status-playable","playable","2021-06-15 13:28:34.000" -"7 Billion Humans","","32-bit;status-playable","playable","2020-12-17 21:04:58.000" -"Rack N Ruin","","status-playable","playable","2020-09-04 15:20:26.000" -"Piffle","","","","2020-09-06 00:07:53.000" -"BATTOJUTSU","","","","2020-09-06 00:07:58.000" -"Super Battle Cards","","","","2020-09-06 00:08:01.000" -"Hayfever - 0100EA900FB2C000","0100EA900FB2C000","status-playable;loader-allocator","playable","2022-09-22 17:35:41.000" -"Save Koch - 0100C8300FA90000","0100C8300FA90000","status-playable","playable","2022-09-26 17:06:56.000" -"MY HERO ONE'S JUSTICE 2","","UE4;gpu;nvdec;status-ingame","ingame","2020-12-18 14:08:47.000" -"Deep Diving Adventures - 010026800FA88000","010026800FA88000","status-playable","playable","2022-09-22 16:43:37.000" -"Trials of Mana Demo - 0100E1D00FBDE000","0100E1D00FBDE000","status-playable;nvdec;UE4;demo;vulkan-backend-bug","playable","2022-09-26 18:00:02.000" -"Sky Racket","","status-playable","playable","2020-09-07 12:22:24.000" -"LA-MULANA 1 & 2 - 0100E5D00F4AE000","0100E5D00F4AE000","status-playable","playable","2022-09-22 17:56:36.000" -"Exit the Gungeon - 0100DD30110CC000","0100DD30110CC000","status-playable","playable","2022-09-22 17:04:43.000" -"Super Mario 3D All-Stars - 010049900F546000","010049900F546000","services-horizon;slow;status-ingame;vulkan;amd-vendor-bug","ingame","2024-05-07 02:38:16.000" -"Cupid Parasite - 0100F7E00DFC8000","0100F7E00DFC8000","gpu;status-ingame","ingame","2023-08-21 05:52:36.000" -"Toraware no Paruma Deluxe Edition","","","","2020-09-20 09:34:41.000" -"Uta no☆Prince-sama♪ Repeat Love - 010024200E00A000","010024200E00A000","status-playable;nvdec","playable","2022-12-09 09:21:51.000" -"Clock Zero ~Shuuen no Ichibyou~ Devote - 01008C100C572000","01008C100C572000","status-playable;nvdec","playable","2022-12-04 22:19:14.000" -"Dear Magi - Mahou Shounen Gakka -","","status-playable","playable","2020-11-22 16:45:16.000" -"Reine des Fleurs","","cpu;crash;status-boots","boots","2020-09-27 18:50:39.000" -"Kaeru Batake DE Tsukamaete","","","","2020-09-20 17:06:57.000" -"Koi no Hanasaku Hyakkaen","","32-bit;gpu;nvdec;status-ingame","ingame","2020-10-03 14:17:10.000" -"Brothers Conflict: Precious Baby","","","","2020-09-20 19:13:24.000" -"Dairoku: Ayakashimori - 010061300DF48000","010061300DF48000","status-nothing;Needs Update;loader-allocator","nothing","2021-11-30 05:09:38.000" -"Yunohana Spring! - Mellow Times -","","audio;crash;status-menus","menus","2020-09-27 19:27:40.000" -"Nil Admirari no Tenbin: Irodori Nadeshiko","","","","2020-09-21 15:59:26.000" -"Shiritsu Berubara Gakuen ~Versailles no Bara Re*imagination~","","cpu;crash;status-boots","boots","2020-09-27 19:01:25.000" -"BEAST Darling! ~Kemomimi Danshi to Himitsu no Ryou~","","crash;status-menus","menus","2020-10-04 06:12:08.000" -"Kin'iro no Corda Octave","","status-playable","playable","2020-09-22 13:23:12.000" -"Moujuutsukai to Ouji-sama ~Flower & Snow~","","","","2020-09-22 17:22:03.000" -"Spooky Ghosts Dot Com - 0100C6100D75E000","0100C6100D75E000","status-playable","playable","2021-06-15 15:16:11.000" -"NBA 2K21 - 0100E24011D1E000","0100E24011D1E000","gpu;status-boots","boots","2022-10-05 15:31:51.000" -"Commander Keen in Keen Dreams - 0100C4D00D16A000","0100C4D00D16A000","gpu;status-ingame","ingame","2022-08-04 20:34:20.000" -"Minecraft - 0100D71004694000","0100D71004694000","status-ingame;crash;ldn-broken","ingame","2024-09-29 12:08:59.000" -"PGA TOUR 2K21 - 010053401147C000","010053401147C000","deadlock;status-ingame;nvdec","ingame","2022-10-05 21:53:50.000" -"The Executioner - 0100C2E0129A6000","0100C2E0129A6000","nvdec;status-playable","playable","2021-01-23 00:31:28.000" -"Tamiku - 010008A0128C4000","010008A0128C4000","gpu;status-ingame","ingame","2021-06-15 20:06:55.000" -"Shinobi, Koi Utsutsu","","","","2020-09-23 11:04:27.000" -"Hades - 0100535012974000","0100535012974000","status-playable;vulkan","playable","2022-10-05 10:45:21.000" -"Wolfenstein: Youngblood - 01003BD00CAAE000","01003BD00CAAE000","status-boots;online-broken","boots","2024-07-12 23:49:20.000" -"Taimumari: Complete Edition - 010040A00EA26000","010040A00EA26000","status-playable","playable","2022-12-06 13:34:49.000" -"Sangoku Rensenki ~Otome no Heihou!~","","gpu;nvdec;status-ingame","ingame","2020-10-17 19:13:14.000" -"Norn9 ~Norn + Nonette~ LOFN - 01001A500AD6A000","01001A500AD6A000","status-playable;nvdec;vulkan-backend-bug","playable","2022-12-09 09:29:16.000" -"Disaster Report 4: Summer Memories - 010020700E2A2000","010020700E2A2000","status-playable;nvdec;UE4","playable","2022-09-27 19:41:31.000" -"No Straight Roads - 01009F3011004000","01009F3011004000","status-playable;nvdec","playable","2022-10-05 17:01:38.000" -"Gnosia - 01008EF013A7C000","01008EF013A7C000","status-playable","playable","2021-04-05 17:20:30.000" -"Shin Hayarigami 1 and 2 Pack","","","","2020-09-25 15:56:19.000" -"Gothic Murder: Adventure That Changes Destiny","","deadlock;status-ingame;crash","ingame","2022-09-30 23:16:53.000" -"Grand Theft Auto 3 - 05B1D2ABD3D30000","05B1D2ABD3D30000","services;status-nothing;crash;homebrew","nothing","2023-05-01 22:01:58.000" -"Super Mario 64 - 054507E0B7552000","054507E0B7552000","status-ingame;homebrew","ingame","2024-03-20 16:57:27.000" -"Satsujin Tantei Jack the Ripper - 0100A4700BC98000","0100A4700BC98000","status-playable","playable","2021-06-21 16:32:54.000" -"Yoshiwara Higanbana Kuon no Chigiri","","nvdec;status-playable","playable","2020-10-17 19:14:46.000" -"Katakoi Contrast - collection of branch - - 01007FD00DB20000","01007FD00DB20000","status-playable;nvdec","playable","2022-12-09 09:41:26.000" -"Tlicolity Eyes - twinkle showtime - - 010019500DB1E000","010019500DB1E000","gpu;status-boots","boots","2021-05-29 19:43:44.000" -"Omega Vampire","","nvdec;status-playable","playable","2020-10-17 19:15:35.000" -"Iris School of Wizardry - Vinculum Hearts - - 0100AD300B786000","0100AD300B786000","status-playable","playable","2022-12-05 13:11:15.000" -"Meiji Katsugeki Haikara Ryuuseigumi - Seibai Shimaseu, Yonaoshi Kagyou - 0100EA100DF92000","0100EA100DF92000","32-bit;status-playable;nvdec","playable","2022-12-05 13:19:12.000" -"Undead Darlings ~no cure for love~","","","","2020-09-30 08:34:06.000" -"LEGO Marvel Super Heroes 2 - 0100D3A00409E000","0100D3A00409E000","status-nothing;crash","nothing","2023-03-02 17:12:33.000" -"RollerCoaster Tycoon 3: Complete Edition - 01004900113F8000","01004900113F8000","32-bit;status-playable","playable","2022-10-17 14:18:01.000" -"R.B.I. Baseball 20 - 010061400E7D4000","010061400E7D4000","status-playable","playable","2021-06-15 21:16:29.000" -"BATTLESLOTHS","","status-playable","playable","2020-10-03 08:32:22.000" -"Explosive Jake - 01009B7010B42000","01009B7010B42000","status-boots;crash","boots","2021-11-03 07:48:32.000" -"Dezatopia - 0100AFC00E06A000","0100AFC00E06A000","online;status-playable","playable","2021-06-15 21:06:11.000" -"Wordify","","status-playable","playable","2020-10-03 09:01:07.000" -"Wizards: Wand of Epicosity - 0100C7600E77E000","0100C7600E77E000","status-playable","playable","2022-10-07 12:32:06.000" -"Titan Glory - 0100FE801185E000","0100FE801185E000","status-boots","boots","2022-10-07 11:36:40.000" -"Soccer Pinball - 0100B5000E05C000","0100B5000E05C000","UE4;gpu;status-ingame","ingame","2021-06-15 20:56:51.000" -"Steam Tactics - 0100AE100DAFA000","0100AE100DAFA000","status-playable","playable","2022-10-06 16:53:45.000" -"Trover Saves the Universe","","UE4;crash;status-nothing","nothing","2020-10-03 10:25:27.000" -"112th Seed","","status-playable","playable","2020-10-03 10:32:38.000" -"Spitlings - 010042700E3FC000","010042700E3FC000","status-playable;online-broken","playable","2022-10-06 16:42:39.000" -"Unlock the King 2 - 0100A3E011CB0000","0100A3E011CB0000","status-playable","playable","2021-06-15 20:43:55.000" -"Preventive Strike - 010009300D278000","010009300D278000","status-playable;nvdec","playable","2022-10-06 10:55:51.000" -"Hidden - 01004E800F03C000","01004E800F03C000","slow;status-ingame","ingame","2022-10-05 10:56:53.000" -"Pulstario - 0100861012474000","0100861012474000","status-playable","playable","2022-10-06 11:02:01.000" -"Frontline Zed","","status-playable","playable","2020-10-03 12:55:59.000" -"bayala - the game - 0100194010422000","0100194010422000","status-playable","playable","2022-10-04 14:09:25.000" -"City Bus Driving Simulator - 01005E501284E000","01005E501284E000","status-playable","playable","2021-06-15 21:25:59.000" -"Memory Lane - 010062F011E7C000","010062F011E7C000","status-playable;UE4","playable","2022-10-05 14:31:03.000" -"Minefield - 0100B7500F756000","0100B7500F756000","status-playable","playable","2022-10-05 15:03:29.000" -"Double Kick Heroes","","gpu;status-ingame","ingame","2020-10-03 14:33:59.000" -"Little Shopping","","status-playable","playable","2020-10-03 16:34:35.000" -"Car Quest - 01007BD00AE70000","01007BD00AE70000","deadlock;status-menus","menus","2021-11-18 08:59:18.000" -"RogueCube - 0100C7300C0EC000","0100C7300C0EC000","status-playable","playable","2021-06-16 12:16:42.000" -"Timber Tennis Versus","","online;status-playable","playable","2020-10-03 17:07:15.000" -"Swimsanity! - 010049D00C8B0000","010049D00C8B0000","status-menus;online","menus","2021-11-26 14:27:16.000" -"Dininho Adventures","","status-playable","playable","2020-10-03 17:25:51.000" -"Rhythm of the Gods","","UE4;crash;status-nothing","nothing","2020-10-03 17:39:59.000" -"Rainbows, toilets & unicorns","","nvdec;status-playable","playable","2020-10-03 18:08:18.000" -"Super Mario Bros. 35 - 0100277011F1A000","0100277011F1A000","status-menus;online-broken","menus","2022-08-07 16:27:25.000" -"Bohemian Killing - 0100AD1010CCE000","0100AD1010CCE000","status-playable;vulkan-backend-bug","playable","2022-09-26 22:41:37.000" -"Colorgrid","","status-playable","playable","2020-10-04 01:50:52.000" -"Dogurai","","status-playable","playable","2020-10-04 02:40:16.000" -"The Legend of Heroes: Trails of Cold Steel III Demo - 01009B101044C000","01009B101044C000","demo;nvdec;status-playable","playable","2021-04-23 01:07:32.000" -"Star Wars Jedi Knight: Jedi Academy - 01008CA00FAE8000","01008CA00FAE8000","gpu;status-boots","boots","2021-06-16 12:35:30.000" -"Panzer Dragoon: Remake","","status-playable","playable","2020-10-04 04:03:55.000" -"Blackmoor2 - 0100A0A00E660000","0100A0A00E660000","status-playable;online-broken","playable","2022-09-26 20:26:34.000" -"CHAOS CODE -NEW SIGN OF CATASTROPHE- - 01007600115CE000","01007600115CE000","status-boots;crash;nvdec","boots","2022-04-04 12:24:21.000" -"Saints Row IV - 01008D100D43E000","01008D100D43E000","status-playable;ldn-untested;LAN","playable","2023-12-04 18:33:37.000" -"Troubleshooter","","UE4;crash;status-nothing","nothing","2020-10-04 13:46:50.000" -"Children of Zodiarcs","","status-playable","playable","2020-10-04 14:23:33.000" -"VtM Coteries of New York","","status-playable","playable","2020-10-04 14:55:22.000" -"Grand Guilds - 010038100D436000","010038100D436000","UE4;nvdec;status-playable","playable","2021-04-26 12:49:05.000" -"Best Friend Forever","","","","2020-10-04 15:41:42.000" -"Copperbell","","status-playable","playable","2020-10-04 15:54:36.000" -"Deep Sky Derelicts Definitive Edition - 0100C3E00D68E000","0100C3E00D68E000","status-playable","playable","2022-09-27 11:21:08.000" -"Wanba Warriors","","status-playable","playable","2020-10-04 17:56:22.000" -"Mist Hunter - 010059200CC40000","010059200CC40000","status-playable","playable","2021-06-16 13:58:58.000" -"Shinsekai Into the Depths - 01004EE0104F6000","01004EE0104F6000","status-playable","playable","2022-09-28 14:07:51.000" -"ELEA: Paradigm Shift","","UE4;crash;status-nothing","nothing","2020-10-04 19:07:43.000" -"Harukanaru Toki no Naka De 7","","","","2020-10-05 10:12:41.000" -"Saiaku Naru Saiyaku Ningen ni Sasagu","","","","2020-10-05 10:26:45.000" -"planetarian HD ~the reverie of a little planet~","","status-playable","playable","2020-10-17 20:26:20.000" -"Hypnospace Outlaw - 0100959010466000","0100959010466000","status-ingame;nvdec","ingame","2023-08-02 22:46:49.000" -"Dei Gratia no Rashinban - 010071C00CBA4000","010071C00CBA4000","crash;status-nothing","nothing","2021-07-13 02:25:32.000" -"Rogue Company","","","","2020-10-05 17:52:10.000" -"MX Nitro - 0100161009E5C000","0100161009E5C000","status-playable","playable","2022-09-27 22:34:33.000" -"Wanderjahr TryAgainOrWalkAway","","status-playable","playable","2020-12-16 09:46:04.000" -"Pooplers","","status-playable","playable","2020-11-02 11:52:10.000" -"Beyond Enemy Lines: Essentials - 0100B8F00DACA000","0100B8F00DACA000","status-playable;nvdec;UE4","playable","2022-09-26 19:48:16.000" -"Lust for Darkness: Dawn Edition - 0100F0B00F68E000","0100F0B00F68E000","nvdec;status-playable","playable","2021-06-16 13:47:46.000" -"Nerdook Bundle Vol. 1","","gpu;slow;status-ingame","ingame","2020-10-07 14:27:10.000" -"Indie Puzzle Bundle Vol 1 - 0100A2101107C000","0100A2101107C000","status-playable","playable","2022-09-27 22:23:21.000" -"Wurroom","","status-playable","playable","2020-10-07 22:46:21.000" -"Valley - 0100E0E00B108000","0100E0E00B108000","status-playable;nvdec","playable","2022-09-28 19:27:58.000" -"FIFA 21 Legacy Edition - 01000A001171A000","01000A001171A000","gpu;status-ingame;online-broken","ingame","2023-12-11 22:10:19.000" -"Hotline Miami Collection - 0100D0E00E51E000","0100D0E00E51E000","status-playable;nvdec","playable","2022-09-09 16:41:19.000" -"QuakespasmNX","","status-nothing;crash;homebrew","nothing","2022-07-23 19:28:07.000" -"nxquake2","","services;status-nothing;crash;homebrew","nothing","2022-08-04 23:14:04.000" -"ONE PIECE: PIRATE WARRIORS 4 - 01008FE00E2F6000","01008FE00E2F6000","status-playable;online-broken;ldn-untested","playable","2022-09-27 22:55:46.000" -"The Complex - 01004170113D4000","01004170113D4000","status-playable;nvdec","playable","2022-09-28 14:35:41.000" -"Gigantosaurus The Game - 01002C400E526000","01002C400E526000","status-playable;UE4","playable","2022-09-27 21:20:00.000" -"TY the Tasmanian Tiger","","32-bit;crash;nvdec;status-menus","menus","2020-12-17 21:15:00.000" -"Speaking Simulator","","status-playable","playable","2020-10-08 13:00:39.000" -"Pikmin 3 Deluxe Demo - 01001CB0106F8000","01001CB0106F8000","32-bit;crash;demo;gpu;status-ingame","ingame","2021-06-16 18:38:07.000" -"Rascal Fight","","status-playable","playable","2020-10-08 13:23:30.000" -"Rain City","","status-playable","playable","2020-10-08 16:59:03.000" -"Fury Unleashed Demo","","status-playable","playable","2020-10-08 20:09:21.000" -"Bridge 3","","status-playable","playable","2020-10-08 20:47:24.000" -"RMX Real Motocross","","status-playable","playable","2020-10-08 21:06:15.000" -"Birthday of Midnight","","","","2020-10-09 09:43:24.000" -"WARSAW","","","","2020-10-09 10:31:40.000" -"Candy Raid: The Factory","","","","2020-10-09 10:43:39.000" -"World for Two","","","","2020-10-09 12:37:07.000" -"Voxel Pirates - 0100AFA011068000","0100AFA011068000","status-playable","playable","2022-09-28 22:55:02.000" -"Voxel Galaxy - 0100B1E0100A4000","0100B1E0100A4000","status-playable","playable","2022-09-28 22:45:02.000" -"Journey of the Broken Circle","","","","2020-10-09 13:24:52.000" -"Daggerhood","","","","2020-10-09 13:54:02.000" -"Flipon","","","","2020-10-09 14:23:40.000" -"Nevaeh - 0100C20012A54000","0100C20012A54000","gpu;nvdec;status-ingame","ingame","2021-06-16 17:29:03.000" -"Bookbound Brigade","","status-playable","playable","2020-10-09 14:30:29.000" -"Aery - Sky Castle - 010018E012914000","010018E012914000","status-playable","playable","2022-10-21 17:58:49.000" -"Nickelodeon Kart Racers 2 Grand Prix","","","","2020-10-09 14:54:17.000" -"Issho ni Asobo Koupen chan","","","","2020-10-09 14:57:27.000" -"Kono Subarashii Sekai ni Shukufuku o Kono Yokubo no Isho ni Choai o - 010016C011AAA000","010016C011AAA000","status-playable","playable","2023-04-26 09:51:08.000" -"Kono Subarashii Sekai ni Shukufuku wo! Kurenai Densetsu","","","","2020-10-09 15:06:00.000" -"Hide & Dance!","","","","2020-10-09 15:10:06.000" -"Pro Yakyuu Famista 2020","","","","2020-10-09 15:21:25.000" -"METAL MAX Xeno Reborn - 0100E8F00F6BE000","0100E8F00F6BE000","status-playable","playable","2022-12-05 15:33:53.000" -"Ikenfell - 010040900AF46000","010040900AF46000","status-playable","playable","2021-06-16 17:18:44.000" -"Depixtion","","status-playable","playable","2020-10-10 18:52:37.000" -"GREEN The Life Algorithm - 0100DFE00F002000","0100DFE00F002000","status-playable","playable","2022-09-27 21:37:13.000" -"Served! A gourmet race - 0100B2C00E4DA000","0100B2C00E4DA000","status-playable;nvdec","playable","2022-09-28 12:46:00.000" -"OTTTD","","slow;status-ingame","ingame","2020-10-10 19:31:07.000" -"Metamorphosis - 010055200E87E000","010055200E87E000","UE4;audout;gpu;nvdec;status-ingame","ingame","2021-06-16 16:18:11.000" -"Zero Strain - 01004B001058C000","01004B001058C000","services;status-menus;UE4","menus","2021-11-10 07:48:32.000" -"Time Carnage - 01004C500B698000","01004C500B698000","status-playable","playable","2021-06-16 17:57:28.000" -"Spiritfarer - 0100BD400DC52000","0100BD400DC52000","gpu;status-ingame","ingame","2022-10-06 16:31:38.000" -"Street Power Soccer","","UE4;crash;status-boots","boots","2020-11-21 12:28:57.000" -"OZMAFIA!! -vivace-","","","","2020-10-12 10:24:45.000" -"Road to Guangdong","","slow;status-playable","playable","2020-10-12 12:15:32.000" -"Prehistoric Dude","","gpu;status-ingame","ingame","2020-10-12 12:38:48.000" -"MIND Path to Thalamus - 0100F5700C9A8000","0100F5700C9A8000","UE4;status-playable","playable","2021-06-16 17:37:25.000" -"Manifold Garden","","status-playable","playable","2020-10-13 20:27:13.000" -"INMOST - 0100F1401161E000","0100F1401161E000","status-playable","playable","2022-10-05 11:27:40.000" -"G.I. Joe Operation Blackout","","UE4;crash;status-boots","boots","2020-11-21 12:37:44.000" -"Petal Crash","","","","2020-10-14 07:58:02.000" -"Helheim Hassle","","status-playable","playable","2020-10-14 11:38:36.000" -"FuzzBall - 010067600F1A0000","010067600F1A0000","crash;status-nothing","nothing","2021-03-29 20:13:21.000" -"Fight Crab - 01006980127F0000","01006980127F0000","status-playable;online-broken;ldn-untested","playable","2022-10-05 10:24:04.000" -"Faeria - 010069100DB08000","010069100DB08000","status-menus;nvdec;online-broken","menus","2022-10-04 16:44:41.000" -"Escape from Tethys","","status-playable","playable","2020-10-14 22:38:25.000" -"Chinese Parents - 010046F012A04000","010046F012A04000","status-playable","playable","2021-04-08 12:56:41.000" -"Boomerang Fu - 010081A00EE62000","010081A00EE62000","status-playable","playable","2024-07-28 01:12:41.000" -"Bite the Bullet","","status-playable","playable","2020-10-14 23:10:11.000" -"Pretty Princess Magical Coordinate","","status-playable","playable","2020-10-15 11:43:41.000" -"A Short Hike","","status-playable","playable","2020-10-15 00:19:58.000" -"HYPERCHARGE: Unboxed - 0100A8B00F0B4000","0100A8B00F0B4000","status-playable;nvdec;online-broken;UE4;ldn-untested","playable","2022-09-27 21:52:39.000" -"Anima: Gate of Memories - 0100706005B6A000","0100706005B6A000","nvdec;status-playable","playable","2021-06-16 18:13:18.000" -"Perky Little Things - 01005CD012DC0000","01005CD012DC0000","status-boots;crash;vulkan","boots","2024-08-04 07:22:46.000" -"Save Your Nuts - 010091000F72C000","010091000F72C000","status-playable;nvdec;online-broken;UE4","playable","2022-09-27 23:12:02.000" -"Unknown Fate","","slow;status-ingame","ingame","2020-10-15 12:27:42.000" -"Picross S4","","status-playable","playable","2020-10-15 12:33:46.000" -"The Station - 010007F00AF56000","010007F00AF56000","status-playable","playable","2022-09-28 18:15:27.000" -"Liege Dragon - 010041F0128AE000","010041F0128AE000","status-playable","playable","2022-10-12 10:27:03.000" -"G-MODE Archives 06 The strongest ever Julia Miyamoto","","status-playable","playable","2020-10-15 13:06:26.000" -"Prinny: Can I Really Be the Hero? - 01007A0011878000","01007A0011878000","32-bit;status-playable;nvdec","playable","2023-10-22 09:25:25.000" -"Prinny 2: Dawn of Operation Panties, Dood! - 01008FA01187A000","01008FA01187A000","32-bit;status-playable","playable","2022-10-13 12:42:58.000" -"Convoy","","status-playable","playable","2020-10-15 14:43:50.000" -"Fight of Animals","","online;status-playable","playable","2020-10-15 15:08:28.000" -"Strawberry Vinegar - 0100D7E011C64000","0100D7E011C64000","status-playable;nvdec","playable","2022-12-05 16:25:40.000" -"Inside Grass: A little adventure","","status-playable","playable","2020-10-15 15:26:27.000" -"Battle Princess Madelyn Royal Edition - 0100A7500DF64000","0100A7500DF64000","status-playable","playable","2022-09-26 19:14:49.000" -"A HERO AND A GARDEN - 01009E1011EC4000","01009E1011EC4000","status-playable","playable","2022-12-05 16:37:47.000" -"Trials of Mana - 0100D7800E9E0000","0100D7800E9E0000","status-playable;UE4","playable","2022-09-30 21:50:37.000" -"Ultimate Fishing Simulator - 010048901295C000","010048901295C000","status-playable","playable","2021-06-16 18:38:23.000" -"Struggling","","status-playable","playable","2020-10-15 20:37:03.000" -"Samurai Jack Battle Through Time - 01006C600E46E000","01006C600E46E000","status-playable;nvdec;UE4","playable","2022-10-06 13:33:59.000" -"House Flipper - 0100CAE00EB02000","0100CAE00EB02000","status-playable","playable","2021-06-16 18:28:32.000" -"Aokana - Four Rhythms Across the Blue - 0100990011866000","0100990011866000","status-playable","playable","2022-10-04 13:50:26.000" -"NARUTO SHIPPUDEN: ULTIMATE NINJA STORM 4 ROAD TO BORUTO - 010084D00CF5E000","010084D00CF5E000","status-playable","playable","2024-06-29 13:04:22.000" -"Where Angels Cry - 010027D011C9C000","010027D011C9C000","gpu;status-ingame;nvdec","ingame","2022-09-30 22:24:47.000" -"The Copper Canyon Dixie Dash - 01000F20102AC000","01000F20102AC000","status-playable;UE4","playable","2022-09-29 11:42:29.000" -"Cloudpunk","","","","2020-10-15 23:03:55.000" -"MotoGP 20 - 01001FA00FBBC000","01001FA00FBBC000","status-playable;ldn-untested","playable","2022-09-29 17:58:01.000" -"Little Town Hero","","status-playable","playable","2020-10-15 23:28:48.000" -"Broken Lines","","status-playable","playable","2020-10-16 00:01:37.000" -"Crown Trick - 0100059012BAE000","0100059012BAE000","status-playable","playable","2021-06-16 19:36:29.000" -"Archaica: Path of LightInd","","crash;status-nothing","nothing","2020-10-16 13:22:26.000" -"Indivisible - 01001D3003FDE000","01001D3003FDE000","status-playable;nvdec","playable","2022-09-29 15:20:57.000" -"Thy Sword - 01000AC011588000","01000AC011588000","status-ingame;crash","ingame","2022-09-30 16:43:14.000" -"Spirit of the North - 01005E101122E000","01005E101122E000","status-playable;UE4","playable","2022-09-30 11:40:47.000" -"Megabyte Punch","","status-playable","playable","2020-10-16 14:07:18.000" -"Book of Demons - 01007A200F452000","01007A200F452000","status-playable","playable","2022-09-29 12:03:43.000" -"80's OVERDRIVE","","status-playable","playable","2020-10-16 14:33:32.000" -"My Universe My Baby","","","","2020-10-17 14:04:01.000" -"Mario Kart Live: Home Circuit - 0100ED100BA3A000","0100ED100BA3A000","services;status-nothing;crash;Needs More Attention","nothing","2022-12-07 22:36:52.000" -"STONE - 010070D00F640000","010070D00F640000","status-playable;UE4","playable","2022-09-30 11:53:32.000" -"Newt One","","status-playable","playable","2020-10-17 21:21:48.000" -"Zoids Wild Blast Unleashed - 010069C0123D8000","010069C0123D8000","status-playable;nvdec","playable","2022-10-15 11:26:59.000" -"KINGDOM HEARTS Melody of Memory DEMO","","","","2020-10-18 14:57:30.000" -"Escape First","","status-playable","playable","2020-10-20 22:46:53.000" -"If My Heart Had Wings - 01001AC00ED72000","01001AC00ED72000","status-playable","playable","2022-09-29 14:54:57.000" -"Felix the Reaper","","nvdec;status-playable","playable","2020-10-20 23:43:03.000" -"War-Torn Dreams","","crash;status-nothing","nothing","2020-10-21 11:36:16.000" -"TT Isle of Man 2 - 010000400F582000","010000400F582000","gpu;status-ingame;nvdec;online-broken","ingame","2022-09-30 22:13:05.000" -"Kholat - 0100F680116A2000","0100F680116A2000","UE4;nvdec;status-playable","playable","2021-06-17 11:52:48.000" -"Dungeon of the Endless - 010034300F0E2000","010034300F0E2000","nvdec;status-playable","playable","2021-05-27 19:16:26.000" -"Gravity Rider Zero - 01002C2011828000","01002C2011828000","gpu;status-ingame;vulkan-backend-bug","ingame","2022-09-29 13:56:13.000" -"Oddworld: Munch's Oddysee - 0100BB500EE3C000","0100BB500EE3C000","gpu;nvdec;status-ingame","ingame","2021-06-17 12:11:50.000" -"Five Nights at Freddy's: Help Wanted - 0100F7901118C000","0100F7901118C000","status-playable;UE4","playable","2022-09-29 12:40:09.000" -"Gates of Hell","","slow;status-playable","playable","2020-10-22 12:44:26.000" -"Concept Destruction - 0100971011224000","0100971011224000","status-playable","playable","2022-09-29 12:28:56.000" -"Zenge","","status-playable","playable","2020-10-22 13:23:57.000" -"Water Balloon Mania","","status-playable","playable","2020-10-23 20:20:59.000" -"The Persistence - 010050101127C000","010050101127C000","nvdec;status-playable","playable","2021-06-06 19:15:40.000" -"The House of Da Vinci 2","","status-playable","playable","2020-10-23 20:47:17.000" -"The Experiment: Escape Room - 01006050114D4000","01006050114D4000","gpu;status-ingame","ingame","2022-09-30 13:20:35.000" -"Telling Lies","","status-playable","playable","2020-10-23 21:14:51.000" -"She Sees Red - 01000320110C2000","01000320110C2000","status-playable;nvdec","playable","2022-09-30 11:30:15.000" -"Golf With Your Friends - 01006FB00EBE0000","01006FB00EBE0000","status-playable;online-broken","playable","2022-09-29 12:55:11.000" -"Island Saver","","nvdec;status-playable","playable","2020-10-23 22:07:02.000" -"Devil May Cry 2 - 01007CF00D5BA000","01007CF00D5BA000","status-playable;nvdec","playable","2023-01-24 23:03:20.000" -"The Otterman Empire - 0100B0101265C000","0100B0101265C000","UE4;gpu;status-ingame","ingame","2021-06-17 12:27:15.000" -"SaGa SCARLET GRACE: AMBITIONS - 010003A00D0B4000","010003A00D0B4000","status-playable","playable","2022-10-06 13:20:31.000" -"REZ PLZ","","status-playable","playable","2020-10-24 13:26:12.000" -"Bossgard - 010076F00EBE4000","010076F00EBE4000","status-playable;online-broken","playable","2022-10-04 14:21:13.000" -"1993 Shenandoah","","status-playable","playable","2020-10-24 13:55:42.000" -"Ori and the Will of the Wisps - 01008DD013200000","01008DD013200000","status-playable","playable","2023-03-07 00:47:13.000" -"WWE 2K Battlegrounds - 010081700EDF4000","010081700EDF4000","status-playable;nvdec;online-broken;UE4","playable","2022-10-07 12:44:40.000" -"Shaolin vs Wutang : Eastern Heroes - 01003AB01062C000","01003AB01062C000","deadlock;status-nothing","nothing","2021-03-29 20:38:54.000" -"Mini Motor Racing X - 01003560119A6000","01003560119A6000","status-playable","playable","2021-04-13 17:54:49.000" -"Secret Files 3","","nvdec;status-playable","playable","2020-10-24 15:32:39.000" -"Othercide - 0100E5900F49A000","0100E5900F49A000","status-playable;nvdec","playable","2022-10-05 19:04:38.000" -"Eiga Sumikko Gurashi Tobidasu Ehon to Himitsu no Ko Game de Asobo Ehon no Sekai","","status-playable","playable","2020-11-12 00:11:50.000" -"Party Hard 2 - 010022801217E000","010022801217E000","status-playable;nvdec","playable","2022-10-05 20:31:48.000" -"Paradise Killer - 01007FB010DC8000","01007FB010DC8000","status-playable;UE4","playable","2022-10-05 19:33:05.000" -"MX vs ATV All Out - 0100218011E7E000","0100218011E7E000","status-playable;nvdec;UE4;vulkan-backend-bug","playable","2022-10-25 19:51:46.000" -"CastleStorm 2","","UE4;crash;nvdec;status-boots","boots","2020-10-25 11:22:44.000" -"Hotshot Racing - 0100BDE008218000","0100BDE008218000","gpu;status-ingame;nvdec;online-broken;ldn-untested;vulkan-backend-bug","ingame","2024-02-04 21:31:17.000" -"Bounty Battle - 0100E1200DC1A000","0100E1200DC1A000","status-playable;nvdec","playable","2022-10-04 14:40:51.000" -"Avicii Invector","","status-playable","playable","2020-10-25 12:12:56.000" -"Ys Origin - 0100F90010882000","0100F90010882000","status-playable;nvdec","playable","2024-04-17 05:07:33.000" -"Kirby Fighters 2 - 0100227010460000","0100227010460000","ldn-works;online;status-playable","playable","2021-06-17 13:06:39.000" -"JUMP FORCE Deluxe Edition - 0100183010F12000","0100183010F12000","status-playable;nvdec;online-broken;UE4","playable","2023-10-01 15:56:05.000" -"The Survivalists","","status-playable","playable","2020-10-27 15:51:13.000" -"Season Match Full Bundle - Parts 1, 2 and 3","","status-playable","playable","2020-10-27 16:15:22.000" -"Moai VI: Unexpected Guests","","slow;status-playable","playable","2020-10-27 16:40:20.000" -"Agatha Christie - The ABC Murders","","status-playable","playable","2020-10-27 17:08:23.000" -"Remothered: Broken Porcelain - 0100FBD00F5F6000","0100FBD00F5F6000","UE4;gpu;nvdec;status-ingame","ingame","2021-06-17 15:13:11.000" -"Need For Speed Hot Pursuit Remastered","","audio;online;slow;status-ingame","ingame","2020-10-27 17:46:58.000" -"WarriOrb - 010032700EAC4000","010032700EAC4000","UE4;status-playable","playable","2021-06-17 15:45:14.000" -"Townsmen - A Kingdom Rebuilt - 010049E00BA34000","010049E00BA34000","status-playable;nvdec","playable","2022-10-14 22:48:59.000" -"Oceanhorn 2 Knights of the Lost Realm - 01006CB010840000","01006CB010840000","status-playable","playable","2021-05-21 18:26:10.000" -"No More Heroes 2 Desperate Struggle - 010071400F204000","010071400F204000","32-bit;status-playable;nvdec","playable","2022-11-19 01:38:13.000" -"No More Heroes - 0100F0400F202000","0100F0400F202000","32-bit;status-playable","playable","2022-09-13 07:44:27.000" -"Rusty Spount Rescue Adventure","","","","2020-10-29 17:06:42.000" -"Pixel Puzzle Makeout League - 010000E00E612000","010000E00E612000","status-playable","playable","2022-10-13 12:34:00.000" -"Futari de! Nyanko Daisensou - 01003C300B274000","01003C300B274000","status-playable","playable","2024-01-05 22:26:52.000" -"MAD RAT DEAD","","","","2020-10-31 13:30:24.000" -"The Language of Love","","Needs Update;crash;status-nothing","nothing","2020-12-03 17:54:00.000" -"Torn Tales - Rebound Edition","","status-playable","playable","2020-11-01 14:11:59.000" -"Spaceland","","status-playable","playable","2020-11-01 14:31:56.000" -"HARDCORE MECHA","","slow;status-playable","playable","2020-11-01 15:06:33.000" -"Barbearian - 0100F7E01308C000","0100F7E01308C000","Needs Update;gpu;status-ingame","ingame","2021-06-28 16:27:50.000" -"INSTANT Chef Party","","","","2020-11-01 23:15:58.000" -"Pikmin 3 Deluxe - 0100F4C009322000","0100F4C009322000","gpu;status-ingame;32-bit;nvdec;Needs Update","ingame","2024-09-03 00:28:26.000" -"Cobra Kai The Karate Kid Saga Continues - 01005790110F0000","01005790110F0000","status-playable","playable","2021-06-17 15:59:13.000" -"Seven Knights -Time Wanderer- - 010018400C24E000","010018400C24E000","status-playable;vulkan-backend-bug","playable","2022-10-13 22:08:54.000" -"Kangokuto Mary Skelter Finale","","audio;crash;status-ingame","ingame","2021-01-09 22:39:28.000" -"Shadowverse Champions Battle - 01002A800C064000","01002A800C064000","status-playable","playable","2022-10-02 22:59:29.000" -"Bakugan Champions of Vestroia","","status-playable","playable","2020-11-06 19:07:39.000" -"Jurassic World Evolution Complete Edition - 010050A011344000","010050A011344000","cpu;status-menus;crash","menus","2023-08-04 18:06:54.000" -"KAMEN RIDER memory of heroez / Premium Sound Edition - 0100A9801180E000","0100A9801180E000","status-playable","playable","2022-12-06 03:14:26.000" -"Shin Megami Tensei III NOCTURNE HD REMASTER - 010045800ED1E000","010045800ED1E000","gpu;status-ingame;Needs Update","ingame","2022-11-03 19:57:01.000" -"FUSER - 0100E1F013674000","0100E1F013674000","status-playable;nvdec;UE4","playable","2022-10-17 20:58:32.000" -"Mad Father","","status-playable","playable","2020-11-12 13:22:10.000" -"Café Enchanté","","status-playable","playable","2020-11-13 14:54:25.000" -"JUST DANCE 2021","","","","2020-11-14 06:22:04.000" -"Medarot Classics Plus Kuwagata Ver","","status-playable","playable","2020-11-21 11:30:40.000" -"Medarot Classics Plus Kabuto Ver","","status-playable","playable","2020-11-21 11:31:18.000" -"Forest Guardian","","","","2020-11-14 17:00:13.000" -"Fantasy Tavern Sextet -Vol.1 New World Days- - 01000E2012F6E000","01000E2012F6E000","gpu;status-ingame;crash;Needs Update","ingame","2022-12-05 16:48:00.000" -"Ary and the Secret of Seasons - 0100C2500CAB6000","0100C2500CAB6000","status-playable","playable","2022-10-07 20:45:09.000" -"Dark Quest 2","","status-playable","playable","2020-11-16 21:34:52.000" -"Cooking Tycoons 2: 3 in 1 Bundle","","status-playable","playable","2020-11-16 22:19:33.000" -"Cooking Tycoons: 3 in 1 Bundle","","status-playable","playable","2020-11-16 22:44:26.000" -"Agent A: A puzzle in disguise","","status-playable","playable","2020-11-16 22:53:27.000" -"ROBOTICS;NOTES DaSH","","status-playable","playable","2020-11-16 23:09:54.000" -"Hunting Simulator 2 - 010061F010C3A000","010061F010C3A000","status-playable;UE4","playable","2022-10-10 14:25:51.000" -"9 Monkeys of Shaolin","","UE4;gpu;slow;status-ingame","ingame","2020-11-17 11:58:43.000" -"Tin & Kuna","","status-playable","playable","2020-11-17 12:16:12.000" -"Seers Isle","","status-playable","playable","2020-11-17 12:28:50.000" -"Royal Roads","","status-playable","playable","2020-11-17 12:54:38.000" -"Rimelands - 01006AC00EE6E000","01006AC00EE6E000","status-playable","playable","2022-10-13 13:32:56.000" -"Mekorama - 0100B360068B2000","0100B360068B2000","gpu;status-boots","boots","2021-06-17 16:37:21.000" -"Need for Speed Hot Pursuit Remastered - 010029B0118E8000","010029B0118E8000","status-playable;online-broken","playable","2024-03-20 21:58:02.000" -"Mech Rage","","status-playable","playable","2020-11-18 12:30:16.000" -"Modern Tales: Age of Invention - 010004900D772000","010004900D772000","slow;status-playable","playable","2022-10-12 11:20:19.000" -"Dead Z Meat - 0100A24011F52000","0100A24011F52000","UE4;services;status-ingame","ingame","2021-04-14 16:50:16.000" -"Along the Edge","","status-playable","playable","2020-11-18 15:00:07.000" -"Country Tales - 0100C1E012A42000","0100C1E012A42000","status-playable","playable","2021-06-17 16:45:39.000" -"Ghost Sweeper - 01004B301108C000","01004B301108C000","status-playable","playable","2022-10-10 12:45:36.000" -"Hyrule Warriors: Age of Calamity - 01002B00111A2000","01002B00111A2000","gpu;deadlock;slow;status-ingame;crash;nvdec;amd-vendor-bug","ingame","2024-02-28 00:47:00.000" -"Path of Sin: Greed - 01001E500EA16000","01001E500EA16000","status-menus;crash","menus","2021-11-24 08:00:00.000" -"Hoggy 2 - 0100F7300ED2C000","0100F7300ED2C000","status-playable","playable","2022-10-10 13:53:35.000" -"Queen's Quest 4: Sacred Truce - 0100DCF00F13A000","0100DCF00F13A000","status-playable;nvdec","playable","2022-10-13 12:59:21.000" -"ROBOTICS;NOTES ELITE","","status-playable","playable","2020-11-26 10:28:20.000" -"Taiko no Tatsujin Rhythmic Adventure Pack","","status-playable","playable","2020-12-03 07:28:26.000" -"Pinstripe","","status-playable","playable","2020-11-26 10:40:40.000" -"Torchlight III - 010075400DDB8000","010075400DDB8000","status-playable;nvdec;online-broken;UE4","playable","2022-10-14 22:20:17.000" -"Ben 10: Power Trip - 01009CD00E3AA000","01009CD00E3AA000","status-playable;nvdec","playable","2022-10-09 10:52:12.000" -"Zoids Wild Infinity Blast","","","","2020-11-26 16:15:37.000" -"Picross S5 - 0100AC30133EC000","0100AC30133EC000","status-playable","playable","2022-10-17 18:51:42.000" -"Worm Jazz - 01009CD012CC0000","01009CD012CC0000","gpu;services;status-ingame;UE4;regression","ingame","2021-11-10 10:33:04.000" -"TTV2","","status-playable","playable","2020-11-27 13:21:36.000" -"Deadly Days","","status-playable","playable","2020-11-27 13:38:55.000" -"Pumpkin Jack - 01006C10131F6000","01006C10131F6000","status-playable;nvdec;UE4","playable","2022-10-13 12:52:32.000" -"Active Neurons 2 - 01000D1011EF0000","01000D1011EF0000","status-playable","playable","2022-10-07 16:21:42.000" -"Niche - a genetics survival game","","nvdec;status-playable","playable","2020-11-27 14:01:11.000" -"Monstrum - 010039F00EF70000","010039F00EF70000","status-playable","playable","2021-01-31 11:07:26.000" -"TRANSFORMERS: BATTLEGROUNDS - 01005E500E528000","01005E500E528000","online;status-playable","playable","2021-06-17 18:08:19.000" -"UBERMOSH:SANTICIDE","","status-playable","playable","2020-11-27 15:05:01.000" -"SPACE ELITE FORCE","","status-playable","playable","2020-11-27 15:21:05.000" -"Oddworld: New 'n' Tasty - 01005E700ABB8000","01005E700ABB8000","nvdec;status-playable","playable","2021-06-17 17:51:32.000" -"Immortal Realms: Vampire Wars - 010079501025C000","010079501025C000","nvdec;status-playable","playable","2021-06-17 17:41:46.000" -"Horace - 010086D011EB8000","010086D011EB8000","status-playable","playable","2022-10-10 14:03:50.000" -"Maid of Sker : Upscale Resolution not working","","","","2020-11-29 15:36:42.000" -"Professor Rubik's Brain Fitness","","","","2020-11-30 11:22:45.000" -"QV ( キュビ )","","","","2020-11-30 11:22:49.000" -"Double Pug Switch - 0100A5D00C7C0000","0100A5D00C7C0000","status-playable;nvdec","playable","2022-10-10 10:59:35.000" -"Trollhunters: Defenders of Arcadia","","gpu;nvdec;status-ingame","ingame","2020-11-30 13:27:09.000" -"Outbreak: Epidemic - 0100C850130FE000","0100C850130FE000","status-playable","playable","2022-10-13 10:27:31.000" -"Blackjack Hands","","status-playable","playable","2020-11-30 14:04:51.000" -"Piofiore: Fated Memories","","nvdec;status-playable","playable","2020-11-30 14:27:50.000" -"Task Force Kampas","","status-playable","playable","2020-11-30 14:44:15.000" -"Nexomon: Extinction","","status-playable","playable","2020-11-30 15:02:22.000" -"realMyst: Masterpiece Edition","","nvdec;status-playable","playable","2020-11-30 15:25:42.000" -"Neighbours back From Hell - 010065F00F55A000","010065F00F55A000","status-playable;nvdec","playable","2022-10-12 15:36:48.000" -"Sakai and... - 01007F000EB36000","01007F000EB36000","status-playable;nvdec","playable","2022-12-15 13:53:19.000" -"Supraland - 0100A6E01201C000","0100A6E01201C000","status-playable;nvdec;UE4;opengl-backend-bug","playable","2022-10-14 09:49:11.000" -"Ministry of Broadcast - 010069200EB80000","010069200EB80000","status-playable","playable","2022-08-10 00:31:16.000" -"Inertial Drift - 01002BD00F626000","01002BD00F626000","status-playable;online-broken","playable","2022-10-11 12:22:19.000" -"SuperEpic: The Entertainment War - 0100630010252000","0100630010252000","status-playable","playable","2022-10-13 23:02:48.000" -"HARDCORE Maze Cube","","status-playable","playable","2020-12-04 20:01:24.000" -"Firework","","status-playable","playable","2020-12-04 20:20:09.000" -"GORSD","","status-playable","playable","2020-12-04 22:15:21.000" -"Georifters","","UE4;crash;nvdec;status-menus","menus","2020-12-04 22:30:50.000" -"Giraffe and Annika","","UE4;crash;status-ingame","ingame","2020-12-04 22:41:57.000" -"Doodle Derby","","status-boots","boots","2020-12-04 22:51:48.000" -"Good Pizza, Great Pizza","","status-playable","playable","2020-12-04 22:59:18.000" -"HyperBrawl Tournament","","crash;services;status-boots","boots","2020-12-04 23:03:27.000" -"Dustoff Z","","status-playable","playable","2020-12-04 23:22:29.000" -"Embracelet","","status-playable","playable","2020-12-04 23:45:00.000" -"Cook, Serve, Delicious! 3?! - 0100B82010B6C000","0100B82010B6C000","status-playable","playable","2022-10-09 12:09:34.000" -"CAPTAIN TSUBASA: RISE OF NEW CHAMPIONS - 0100EAE010560000","0100EAE010560000","status-playable;online-broken;vulkan-backend-bug","playable","2022-10-09 11:20:50.000" -"Yomi wo Saku Hana","","","","2020-12-05 07:14:40.000" -"Immortals Fenyx Rising - 01004A600EC0A000","01004A600EC0A000","gpu;status-menus;crash","menus","2023-02-24 16:19:55.000" -"Supermarket Shriek - 0100C01012654000","0100C01012654000","status-playable","playable","2022-10-13 23:19:20.000" -"Absolute Drift","","status-playable","playable","2020-12-10 14:02:44.000" -"CASE 2: Animatronics Survival - 0100C4C0132F8000","0100C4C0132F8000","status-playable;nvdec;UE4;vulkan-backend-bug","playable","2022-10-09 11:45:03.000" -"BIG-Bobby-Car - The Big Race","","slow;status-playable","playable","2020-12-10 14:25:06.000" -"Asterix & Obelix XXL: Romastered - 0100F46011B50000","0100F46011B50000","gpu;status-ingame;nvdec;opengl","ingame","2023-08-16 21:22:06.000" -"Chicken Police - Paint it RED!","","nvdec;status-playable","playable","2020-12-10 15:10:11.000" -"Descenders","","gpu;status-ingame","ingame","2020-12-10 15:22:36.000" -"Outbreak: The Nightmare Chronicles - 01006EE013100000","01006EE013100000","status-playable","playable","2022-10-13 10:41:57.000" -"#Funtime","","status-playable","playable","2020-12-10 16:54:35.000" -"My Little Dog Adventure","","gpu;status-ingame","ingame","2020-12-10 17:47:37.000" -"n Verlore Verstand","","slow;status-ingame","ingame","2020-12-10 18:00:28.000" -"Oneiros - 0100463013246000","0100463013246000","status-playable","playable","2022-10-13 10:17:22.000" -"#KillAllZombies","","slow;status-playable","playable","2020-12-16 01:50:25.000" -"Connection Haunted","","slow;status-playable","playable","2020-12-10 18:57:14.000" -"Goosebumps Dead of Night","","gpu;nvdec;status-ingame","ingame","2020-12-10 20:02:16.000" -"#Halloween, Super Puzzles Dream","","nvdec;status-playable","playable","2020-12-10 20:43:58.000" -"The Long Return","","slow;status-playable","playable","2020-12-10 21:05:10.000" -"The Bluecoats: North & South","","nvdec;status-playable","playable","2020-12-10 21:22:29.000" -"Puyo Puyo Tetris 2 - 010038E011940000","010038E011940000","status-playable;ldn-untested","playable","2023-09-26 11:35:25.000" -"Yuppie Psycho: Executive Edition","","crash;status-ingame","ingame","2020-12-11 10:37:06.000" -"Root Double -Before Crime * After Days- Xtend Edition - 0100936011556000","0100936011556000","status-nothing;crash","nothing","2022-02-05 02:03:49.000" -"Hidden Folks","","","","2020-12-11 11:48:16.000" -"KINGDOM HEARTS Melody of Memory","","crash;nvdec;status-ingame","ingame","2021-03-03 17:34:12.000" -"Unhatched","","status-playable","playable","2020-12-11 12:11:09.000" -"Tropico 6 - 0100FBE0113CC000","0100FBE0113CC000","status-playable;nvdec;UE4","playable","2022-10-14 23:21:03.000" -"Star Renegades","","nvdec;status-playable","playable","2020-12-11 12:19:23.000" -"Alpaca Ball: Allstars","","nvdec;status-playable","playable","2020-12-11 12:26:29.000" -"Nordlicht","","","","2020-12-11 12:37:12.000" -"Sakuna: Of Rice and Ruin - 0100B1400E8FE000","0100B1400E8FE000","status-playable","playable","2023-07-24 13:47:13.000" -"Re:Turn - One Way Trip - 0100F03011616000","0100F03011616000","status-playable","playable","2022-08-29 22:42:53.000" -"L.O.L. Surprise! Remix: We Rule the World - 0100F2B0123AE000","0100F2B0123AE000","status-playable","playable","2022-10-11 22:48:03.000" -"They Bleed Pixels - 01001C2010D08000","01001C2010D08000","gpu;status-ingame","ingame","2024-08-09 05:52:18.000" -"If Found...","","status-playable","playable","2020-12-11 13:43:14.000" -"Gibbous - A Cthulhu Adventure - 0100D95012C0A000","0100D95012C0A000","status-playable;nvdec","playable","2022-10-10 12:57:17.000" -"Duck Life Adventure - 01005BC012C66000","01005BC012C66000","status-playable","playable","2022-10-10 11:27:03.000" -"Sniper Elite 4 - 010007B010FCC000","010007B010FCC000","gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug","ingame","2024-06-18 17:53:15.000" -"Serious Sam Collection - 010007D00D43A000","010007D00D43A000","status-boots;vulkan-backend-bug","boots","2022-10-13 13:53:34.000" -"Slide Stars - 010010D011E1C000","010010D011E1C000","status-menus;crash","menus","2021-11-25 08:53:43.000" -"Tank Mechanic Simulator","","status-playable","playable","2020-12-11 15:10:45.000" -"Five Dates","","nvdec;status-playable","playable","2020-12-11 15:17:11.000" -"MagiCat","","status-playable","playable","2020-12-11 15:22:07.000" -"Family Feud 2021 - 010060200FC44000","010060200FC44000","status-playable;online-broken","playable","2022-10-10 11:42:21.000" -"LUNA The Shadow Dust","","","","2020-12-11 15:26:55.000" -"Paw Patrol: Might Pups Save Adventure Bay! - 01001F201121E000","01001F201121E000","status-playable","playable","2022-10-13 12:17:55.000" -"30-in-1 Game Collection - 010056D00E234000","010056D00E234000","status-playable;online-broken","playable","2022-10-15 17:47:09.000" -"Truck Driver - 0100CB50107BA000","0100CB50107BA000","status-playable;online-broken","playable","2022-10-20 17:42:33.000" -"Bridge Constructor: The Walking Dead","","gpu;slow;status-ingame","ingame","2020-12-11 17:31:32.000" -"Speed 3: Grand Prix - 0100F18010BA0000","0100F18010BA0000","status-playable;UE4","playable","2022-10-20 12:32:31.000" -"Wonder Blade","","status-playable","playable","2020-12-11 17:55:31.000" -"Super Blood Hockey","","status-playable","playable","2020-12-11 20:01:41.000" -"Who Wants to Be a Millionaire?","","crash;status-nothing","nothing","2020-12-11 20:22:42.000" -"My Aunt is a Witch - 01002C6012334000","01002C6012334000","status-playable","playable","2022-10-19 09:21:17.000" -"Flatland: Prologue","","status-playable","playable","2020-12-11 20:41:12.000" -"Fantasy Friends - 010017C012726000","010017C012726000","status-playable","playable","2022-10-17 19:42:39.000" -"MO:Astray","","crash;status-ingame","ingame","2020-12-11 21:45:44.000" -"Wartile Complete Edition","","UE4;crash;gpu;status-menus","menus","2020-12-11 21:56:10.000" -"Super Punch Patrol - 01001F90122B2000","01001F90122B2000","status-playable","playable","2024-07-12 19:49:02.000" -"Chronos","","UE4;gpu;nvdec;status-ingame","ingame","2020-12-11 22:16:35.000" -"Going Under","","deadlock;nvdec;status-ingame","ingame","2020-12-11 22:29:46.000" -"Castle Crashers Remastered - 010001300D14A000","010001300D14A000","gpu;status-boots","boots","2024-08-10 09:21:20.000" -"Morbid: The Seven Acolytes - 010040E00F642000","010040E00F642000","status-playable","playable","2022-08-09 17:21:58.000" -"Elrador Creatures","","slow;status-playable","playable","2020-12-12 12:35:35.000" -"Sam & Max Save the World","","status-playable","playable","2020-12-12 13:11:51.000" -"Quiplash 2 InterLASHional - 0100AF100EE76000","0100AF100EE76000","status-playable;online-working","playable","2022-10-19 17:43:45.000" -"Monster Truck Championship - 0100D30010C42000","0100D30010C42000","slow;status-playable;nvdec;online-broken;UE4","playable","2022-10-18 23:16:51.000" -"Liberated: Enhanced Edition - 01003A90133A6000","01003A90133A6000","gpu;status-ingame;nvdec","ingame","2024-07-04 04:48:48.000" -"Empire of Sin","","nvdec","","2020-12-12 13:48:05.000" -"Girabox","","status-playable","playable","2020-12-12 13:55:05.000" -"Shiren the Wanderer: The Tower of Fortune and the Dice of Fate - 01007430122D0000","01007430122D0000","status-playable;nvdec","playable","2022-10-20 11:44:36.000" -"2048 Battles","","status-playable","playable","2020-12-12 14:21:25.000" -"Reaper: Tale of a Pale Swordsman","","status-playable","playable","2020-12-12 15:12:23.000" -"Demong Hunter","","status-playable","playable","2020-12-12 15:27:08.000" -"Rise and Shine","","status-playable","playable","2020-12-12 15:56:43.000" -"12 Labours of Hercules II: The Cretan Bull - 0100B1A010014000","0100B1A010014000","cpu;status-nothing;32-bit;crash","nothing","2022-12-07 13:43:10.000" -"#womenUp, Super Puzzles Dream","","status-playable","playable","2020-12-12 16:57:25.000" -"#NoLimitFantasy, Super Puzzles Dream","","nvdec;status-playable","playable","2020-12-12 17:21:32.000" -"2urvive - 01007550131EE000","01007550131EE000","status-playable","playable","2022-11-17 13:49:37.000" -"2weistein – The Curse of the Red Dragon - 0100E20012886000","0100E20012886000","status-playable;nvdec;UE4","playable","2022-11-18 14:47:07.000" -"64","","status-playable","playable","2020-12-12 21:31:58.000" -"4x4 Dirt Track","","status-playable","playable","2020-12-12 21:41:42.000" -"Aeolis Tournament","","online;status-playable","playable","2020-12-12 22:02:14.000" -"Adventures of Pip","","nvdec;status-playable","playable","2020-12-12 22:11:55.000" -"9th Dawn III","","status-playable","playable","2020-12-12 22:27:27.000" -"Ailment","","status-playable","playable","2020-12-12 22:30:41.000" -"Adrenaline Rush - Miami Drive","","status-playable","playable","2020-12-12 22:49:50.000" -"Adventures of Chris","","status-playable","playable","2020-12-12 23:00:02.000" -"Akuarium","","slow;status-playable","playable","2020-12-12 23:43:36.000" -"Alchemist's Castle","","status-playable","playable","2020-12-12 23:54:08.000" -"Angry Video Game Nerd I & II Deluxe","","crash;status-ingame","ingame","2020-12-12 23:59:54.000" -"SENTRY","","status-playable","playable","2020-12-13 12:00:24.000" -"Squeakers","","status-playable","playable","2020-12-13 12:13:05.000" -"ALPHA","","status-playable","playable","2020-12-13 12:17:45.000" -"Shoot 1UP DX","","status-playable","playable","2020-12-13 12:32:47.000" -"Animal Hunter Z","","status-playable","playable","2020-12-13 12:50:35.000" -"Star99 - 0100E6B0115FC000","0100E6B0115FC000","status-menus;online","menus","2021-11-26 14:18:51.000" -"Alwa's Legacy","","status-playable","playable","2020-12-13 13:00:57.000" -"TERROR SQUID - 010070C00FB56000","010070C00FB56000","status-playable;online-broken","playable","2023-10-30 22:29:29.000" -"Animal Fight Club","","gpu;status-ingame","ingame","2020-12-13 13:13:33.000" -"Momotaro Dentetsu Showa, Heisei, Reiwa mo Teiban! - 010093100DA04000","010093100DA04000","gpu;status-ingame","ingame","2023-09-22 10:21:46.000" -"Dokapon UP! Dreamy Roulette","","","","2020-12-13 14:53:27.000" -"ANIMUS","","status-playable","playable","2020-12-13 15:11:47.000" -"Pretty Princess Party - 01007F00128CC000","01007F00128CC000","status-playable","playable","2022-10-19 17:23:58.000" -"John Wick Hex - 01007090104EC000","01007090104EC000","status-playable","playable","2022-08-07 08:29:12.000" -"Animal Up","","status-playable","playable","2020-12-13 15:39:02.000" -"Derby Stallion","","","","2020-12-13 15:47:01.000" -"Ankh Guardian - Treasure of the Demon's Temple","","status-playable","playable","2020-12-13 15:55:49.000" -"Police X Heroine Lovepatrina! Love na Rhythm de Taihoshimasu!","","","","2020-12-13 16:12:56.000" -"Klondike Solitaire","","status-playable","playable","2020-12-13 16:17:27.000" -"Apocryph","","gpu;status-ingame","ingame","2020-12-13 23:24:10.000" -"Apparition","","nvdec;slow;status-ingame","ingame","2020-12-13 23:57:04.000" -"Tiny Gladiators","","status-playable","playable","2020-12-14 00:09:43.000" -"Aperion Cyberstorm","","status-playable","playable","2020-12-14 00:40:16.000" -"Cthulhu Saves Christmas","","status-playable","playable","2020-12-14 00:58:55.000" -"Kagamihara/Justice - 0100D58012FC2000","0100D58012FC2000","crash;status-nothing","nothing","2021-06-21 16:41:29.000" -"Greedroid","","status-playable","playable","2020-12-14 11:14:32.000" -"Aqua Lungers","","crash;status-ingame","ingame","2020-12-14 11:25:57.000" -"Atomic Heist - 01005FE00EC4E000","01005FE00EC4E000","status-playable","playable","2022-10-16 21:24:32.000" -"Nexoria: Dungeon Rogue Heroes - 0100B69012EC6000","0100B69012EC6000","gpu;status-ingame","ingame","2021-10-04 18:41:29.000" -"Armed 7 DX","","status-playable","playable","2020-12-14 11:49:56.000" -"Ord.","","status-playable","playable","2020-12-14 11:59:06.000" -"Commandos 2 HD Remaster - 010065A01158E000","010065A01158E000","gpu;status-ingame;nvdec","ingame","2022-08-10 21:52:27.000" -"Atomicrops - 0100AD30095A4000","0100AD30095A4000","status-playable","playable","2022-08-06 10:05:07.000" -"Rabi-Ribi - 01005BF00E4DE000","01005BF00E4DE000","status-playable","playable","2022-08-06 17:02:44.000" -"Assault Chainguns KM","","crash;gpu;status-ingame","ingame","2020-12-14 12:48:34.000" -"Attack of the Toy Tanks","","slow;status-ingame","ingame","2020-12-14 12:59:12.000" -"AstroWings SpaceWar","","status-playable","playable","2020-12-14 13:10:44.000" -"ATOMIK RunGunJumpGun","","status-playable","playable","2020-12-14 13:19:24.000" -"Arrest of a stone Buddha - 0100184011B32000","0100184011B32000","status-nothing;crash","nothing","2022-12-07 16:55:00.000" -"Midnight Evil - 0100A1200F20C000","0100A1200F20C000","status-playable","playable","2022-10-18 22:55:19.000" -"Awakening of Cthulhu - 0100085012D64000","0100085012D64000","UE4;status-playable","playable","2021-04-26 13:03:07.000" -"Axes - 0100DA3011174000","0100DA3011174000","status-playable","playable","2021-04-08 13:01:58.000" -"ASSAULT GUNNERS HD Edition","","","","2020-12-14 14:47:09.000" -"Shady Part of Me - 0100820013612000","0100820013612000","status-playable","playable","2022-10-20 11:31:55.000" -"A Frog Game","","status-playable","playable","2020-12-14 16:09:53.000" -"A Dark Room","","gpu;status-ingame","ingame","2020-12-14 16:14:28.000" -"A Sound Plan","","crash;status-boots","boots","2020-12-14 16:46:21.000" -"Actual Sunlight","","gpu;status-ingame","ingame","2020-12-14 17:18:41.000" -"Acthung! Cthulhu Tactics","","status-playable","playable","2020-12-14 18:40:27.000" -"ATOMINE","","gpu;nvdec;slow;status-playable","playable","2020-12-14 18:56:50.000" -"Adventure Llama","","status-playable","playable","2020-12-14 19:32:24.000" -"Minoria - 0100FAE010864000","0100FAE010864000","status-playable","playable","2022-08-06 18:50:50.000" -"Adventure Pinball Bundle","","slow;status-playable","playable","2020-12-14 20:31:53.000" -"Aery - Broken Memories - 0100087012810000","0100087012810000","status-playable","playable","2022-10-04 13:11:52.000" -"Fobia","","status-playable","playable","2020-12-14 21:05:23.000" -"Alchemic Jousts - 0100F5400AB6C000","0100F5400AB6C000","gpu;status-ingame","ingame","2022-12-08 15:06:28.000" -"Akash Path of the Five","","gpu;nvdec;status-ingame","ingame","2020-12-14 22:33:12.000" -"Witcheye","","status-playable","playable","2020-12-14 22:56:08.000" -"Zombie Driver","","nvdec;status-playable","playable","2020-12-14 23:15:10.000" -"Keen: One Girl Army","","status-playable","playable","2020-12-14 23:19:52.000" -"AFL Evolution 2 - 01001B400D334000","01001B400D334000","slow;status-playable;online-broken;UE4","playable","2022-12-07 12:45:56.000" -"Elden: Path of the Forgotten","","status-playable","playable","2020-12-15 00:33:19.000" -"Desire remaster ver.","","crash;status-boots","boots","2021-01-17 02:34:37.000" -"Alluris - 0100AC501122A000","0100AC501122A000","gpu;status-ingame;UE4","ingame","2023-08-02 23:13:50.000" -"Almightree the Last Dreamer","","slow;status-playable","playable","2020-12-15 13:59:03.000" -"Windscape - 010059900BA3C000","010059900BA3C000","status-playable","playable","2022-10-21 11:49:42.000" -"Warp Shift","","nvdec;status-playable","playable","2020-12-15 14:48:48.000" -"Alphaset by POWGI","","status-playable","playable","2020-12-15 15:15:15.000" -"Storm Boy - 010040D00BCF4000","010040D00BCF4000","status-playable","playable","2022-10-20 14:15:06.000" -"Fire & Water","","status-playable","playable","2020-12-15 15:43:20.000" -"Animated Jigsaws Collection","","nvdec;status-playable","playable","2020-12-15 15:58:34.000" -"More Dark","","status-playable","playable","2020-12-15 16:01:06.000" -"Clea","","crash;status-ingame","ingame","2020-12-15 16:22:56.000" -"Animal Fun for Toddlers and Kids","","services;status-boots","boots","2020-12-15 16:45:29.000" -"Brick Breaker","","crash;status-ingame","ingame","2020-12-15 17:03:59.000" -"Anode","","status-playable","playable","2020-12-15 17:18:58.000" -"Animal Pairs - Matching & Concentration Game for Toddlers & Kids - 010033C0121DC000","010033C0121DC000","services;status-boots","boots","2021-11-29 23:43:14.000" -"Animals for Toddlers","","services;status-boots","boots","2020-12-15 17:27:27.000" -"Stellar Interface - 01005A700C954000","01005A700C954000","status-playable","playable","2022-10-20 13:44:33.000" -"Anime Studio Story","","status-playable","playable","2020-12-15 18:14:05.000" -"Brick Breaker","","nvdec;online;status-playable","playable","2020-12-15 18:26:23.000" -"Anti-Hero Bundle - 0100596011E20000","0100596011E20000","status-playable;nvdec","playable","2022-10-21 20:10:30.000" -"Alt-Frequencies","","status-playable","playable","2020-12-15 19:01:33.000" -"Tanuki Justice - 01007A601318C000","01007A601318C000","status-playable;opengl","playable","2023-02-21 18:28:10.000" -"Norman's Great Illusion","","status-playable","playable","2020-12-15 19:28:24.000" -"Welcome to Primrose Lake - 0100D7F010B94000","0100D7F010B94000","status-playable","playable","2022-10-21 11:30:57.000" -"Dream","","status-playable","playable","2020-12-15 19:55:07.000" -"Lofi Ping Pong","","crash;status-ingame","ingame","2020-12-15 20:09:22.000" -"Antventor","","nvdec;status-playable","playable","2020-12-15 20:09:27.000" -"Space Pioneer - 010047B010260000","010047B010260000","status-playable","playable","2022-10-20 12:24:37.000" -"Death and Taxes","","status-playable","playable","2020-12-15 20:27:49.000" -"Deleveled","","slow;status-playable","playable","2020-12-15 21:02:29.000" -"Jenny LeClue - Detectivu","","crash;status-nothing","nothing","2020-12-15 21:07:07.000" -"Biz Builder Delux","","slow;status-playable","playable","2020-12-15 21:36:25.000" -"Creepy Tale","","status-playable","playable","2020-12-15 21:58:03.000" -"Among Us - 0100B0C013912000","0100B0C013912000","status-menus;online;ldn-broken","menus","2021-09-22 15:20:17.000" -"Spinch - 010076D0122A8000","010076D0122A8000","status-playable","playable","2024-07-12 19:02:10.000" -"Carto - 0100810012A1A000","0100810012A1A000","status-playable","playable","2022-09-04 15:37:06.000" -"Laraan","","status-playable","playable","2020-12-16 12:45:48.000" -"Spider Solitaire","","status-playable","playable","2020-12-16 16:19:30.000" -"Sin Slayers - 01006FE010438000","01006FE010438000","status-playable","playable","2022-10-20 11:53:52.000" -"AO Tennis 2 - 010047000E9AA000","010047000E9AA000","status-playable;online-broken","playable","2022-09-17 12:05:07.000" -"Area 86","","status-playable","playable","2020-12-16 16:45:52.000" -"Art Sqool - 01006AA013086000","01006AA013086000","status-playable;nvdec","playable","2022-10-16 20:42:37.000" -"Utopia 9 - A Volatile Vacation","","nvdec;status-playable","playable","2020-12-16 17:06:42.000" -"Arrog","","status-playable","playable","2020-12-16 17:20:50.000" -"Warlocks 2: God Slayers","","status-playable","playable","2020-12-16 17:36:50.000" -"Artifact Adventure Gaiden DX","","status-playable","playable","2020-12-16 17:49:25.000" -"Asemblance","","UE4;gpu;status-ingame","ingame","2020-12-16 18:01:23.000" -"Death Tales","","status-playable","playable","2020-12-17 10:55:52.000" -"Asphalt 9: Legends - 01007B000C834000","01007B000C834000","services;status-menus;crash;online-broken","menus","2022-12-07 13:28:29.000" -"Barbarous! Tavern of Emyr - 01003350102E2000","01003350102E2000","status-playable","playable","2022-10-16 21:50:24.000" -"Baila Latino - 010076B011EC8000","010076B011EC8000","status-playable","playable","2021-04-14 16:40:24.000" -"Unit 4","","status-playable","playable","2020-12-16 18:54:13.000" -"Ponpu","","status-playable","playable","2020-12-16 19:09:34.000" -"ATOM RPG - 0100B9400FA38000","0100B9400FA38000","status-playable;nvdec","playable","2022-10-22 10:11:48.000" -"Automachef","","status-playable","playable","2020-12-16 19:51:25.000" -"Croc's World 2","","status-playable","playable","2020-12-16 20:01:40.000" -"Ego Protocol","","nvdec;status-playable","playable","2020-12-16 20:16:35.000" -"Azure Reflections - 01006FB00990E000","01006FB00990E000","nvdec;online;status-playable","playable","2021-04-08 13:18:25.000" -"Back to Bed","","nvdec;status-playable","playable","2020-12-16 20:52:04.000" -"Azurebreak Heroes","","status-playable","playable","2020-12-16 21:26:17.000" -"Marooners - 010044600FDF0000","010044600FDF0000","status-playable;nvdec;online-broken","playable","2022-10-18 21:35:26.000" -"BaconMan - 0100EAF00E32E000","0100EAF00E32E000","status-menus;crash;nvdec","menus","2021-11-20 02:36:21.000" -"Peaky Blinders: Mastermind - 010002100CDCC000","010002100CDCC000","status-playable","playable","2022-10-19 16:56:35.000" -"Crash Drive 2","","online;status-playable","playable","2020-12-17 02:45:46.000" -"Blood will be Spilled","","nvdec;status-playable","playable","2020-12-17 03:02:03.000" -"Nefarious","","status-playable","playable","2020-12-17 03:20:33.000" -"Blacksea Odyssey - 01006B400C178000","01006B400C178000","status-playable;nvdec","playable","2022-10-16 22:14:34.000" -"Baobabs Mausoleum Ep2: 1313 Barnabas Dead Ends Drive","","status-playable","playable","2020-12-17 11:22:50.000" -"Life of Boris: Super Slav","","status-ingame","ingame","2020-12-17 11:40:05.000" -"Baobabs Mausoleum Ep.3: Un Pato en Muertoburgo","","nvdec;status-playable","playable","2020-12-17 11:43:10.000" -"Baron: Fur Is Gonna Fly - 010039C0106C6000","010039C0106C6000","status-boots;crash","boots","2022-02-06 02:05:43.000" -"Deployment - 01000BF00B6BC000","01000BF00B6BC000","slow;status-playable;online-broken","playable","2022-10-17 16:23:59.000" -"PixelJunk Eden 2","","crash;status-ingame","ingame","2020-12-17 11:55:52.000" -"Batbarian: Testament of the Primordials","","status-playable","playable","2020-12-17 12:00:59.000" -"Abyss of The Sacrifice - 010047F012BE2000","010047F012BE2000","status-playable;nvdec","playable","2022-10-21 13:56:28.000" -"Nightmares from the Deep 2: The Siren's Call - 01006E700B702000","01006E700B702000","status-playable;nvdec","playable","2022-10-19 10:58:53.000" -"Vera Blanc: Full Moon","","audio;status-playable","playable","2020-12-17 12:09:30.000" -"Linelight","","status-playable","playable","2020-12-17 12:18:07.000" -"Battle Hunters - 0100A3B011EDE000","0100A3B011EDE000","gpu;status-ingame","ingame","2022-11-12 09:19:17.000" -"Day and Night","","status-playable","playable","2020-12-17 12:30:51.000" -"Zombie's Cool","","status-playable","playable","2020-12-17 12:41:26.000" -"Battle of Kings","","slow;status-playable","playable","2020-12-17 12:45:23.000" -"Ghostrunner","","UE4;crash;gpu;nvdec;status-ingame","ingame","2020-12-17 13:01:59.000" -"Battleground - 0100650010DD4000","0100650010DD4000","status-ingame;crash","ingame","2021-09-06 11:53:23.000" -"Little Racer - 0100E6D00E81C000","0100E6D00E81C000","status-playable","playable","2022-10-18 16:41:13.000" -"Battle Planet - Judgement Day","","status-playable","playable","2020-12-17 14:06:20.000" -"Dokuro","","nvdec;status-playable","playable","2020-12-17 14:47:09.000" -"Reflection of Mine","","audio;status-playable","playable","2020-12-17 15:06:37.000" -"Foregone","","deadlock;status-ingame","ingame","2020-12-17 15:26:53.000" -"Choices That Matter: And The Sun Went Out","","status-playable","playable","2020-12-17 15:44:08.000" -"BATTLLOON","","status-playable","playable","2020-12-17 15:48:23.000" -"Grim Legends: The Forsaken Bride - 010009F011F90000","010009F011F90000","status-playable;nvdec","playable","2022-10-18 13:14:06.000" -"Glitch's Trip","","status-playable","playable","2020-12-17 16:00:57.000" -"Maze","","status-playable","playable","2020-12-17 16:13:58.000" -"Bayonetta - 010076F0049A2000","010076F0049A2000","status-playable;audout","playable","2022-11-20 15:51:59.000" -"Gnome More War","","status-playable","playable","2020-12-17 16:33:07.000" -"Fin and the Ancient Mystery","","nvdec;status-playable","playable","2020-12-17 16:40:39.000" -"Nubarron: The adventure of an unlucky gnome","","status-playable","playable","2020-12-17 16:45:17.000" -"Survive! Mr. Cube - 010029A00AEB0000","010029A00AEB0000","status-playable","playable","2022-10-20 14:44:47.000" -"Saboteur SiO","","slow;status-ingame","ingame","2020-12-17 16:59:49.000" -"Flowlines VS","","status-playable","playable","2020-12-17 17:01:53.000" -"Beat Me! - 01002D20129FC000","01002D20129FC000","status-playable;online-broken","playable","2022-10-16 21:59:26.000" -"YesterMorrow","","crash;status-ingame","ingame","2020-12-17 17:15:25.000" -"Drums","","status-playable","playable","2020-12-17 17:21:51.000" -"Gnomes Garden: Lost King - 010036C00D0D6000","010036C00D0D6000","deadlock;status-menus","menus","2021-11-18 11:14:03.000" -"Edna & Harvey: Harvey's New Eyes - 0100ABE00DB4E000","0100ABE00DB4E000","nvdec;status-playable","playable","2021-01-26 14:36:08.000" -"Roarr! - 010068200C5BE000","010068200C5BE000","status-playable","playable","2022-10-19 23:57:45.000" -"PHOGS!","","online;status-playable","playable","2021-01-18 15:18:37.000" -"Idle Champions of the Forgotten Realms","","online;status-boots","boots","2020-12-17 18:24:57.000" -"Polyroll - 010074B00ED32000","010074B00ED32000","gpu;status-boots","boots","2021-07-01 16:16:50.000" -"Control Ultimate Edition - Cloud Version - 0100041013360000","0100041013360000","Needs Update;crash;services;status-nothing","nothing","2021-04-18 22:34:06.000" -"Wilmot's Warehouse - 010071F00D65A000","010071F00D65A000","audio;gpu;status-ingame","ingame","2021-06-02 17:24:32.000" -"Jack N' Jill DX","","","","2020-12-18 02:27:22.000" -"Izneo - 0100D8E00C874000","0100D8E00C874000","status-menus;online-broken","menus","2022-08-06 15:56:23.000" -"Dicey Dungeons - 0100BBF011394000","0100BBF011394000","gpu;audio;slow;status-ingame","ingame","2023-08-02 20:30:12.000" -"Rabbids Adventure Party Demo / 疯狂兔子:奇遇派对 - 试玩版","","","","2020-12-18 05:53:35.000" -"Venture Kid - 010095B00DBC8000","010095B00DBC8000","crash;gpu;status-ingame","ingame","2021-04-18 16:33:17.000" -"Death Coming - 0100F3B00CF32000","0100F3B00CF32000","status-nothing;crash","nothing","2022-02-06 07:43:03.000" -"OlliOlli: Switch Stance - 0100E0200B980000","0100E0200B980000","gpu;status-boots","boots","2024-04-25 08:36:37.000" -"Cybxus Heart - 01006B9013672000","01006B9013672000","gpu;slow;status-ingame","ingame","2022-01-15 05:00:49.000" -"Gensou Rougoku no Kaleidscope - 0100AC600EB4C000","0100AC600EB4C000","status-menus;crash","menus","2021-11-24 08:45:07.000" -"Witch Spring 3 Re:Fine -The Story of the Marionette Witch Eirudy- - 0100454012E32000","0100454012E32000","status-ingame;crash","ingame","2021-08-08 11:56:18.000" -"Hulu - 0100A66003384000","0100A66003384000","status-boots;online-broken","boots","2022-12-09 10:05:00.000" -"Strife: Veteran Edition - 0100BDE012928000","0100BDE012928000","gpu;status-ingame","ingame","2022-01-15 05:10:42.000" -"Peasant Knight","","status-playable","playable","2020-12-22 09:30:50.000" -"Double Dragon Neon - 01005B10132B2000","01005B10132B2000","gpu;audio;status-ingame;32-bit","ingame","2022-09-20 18:00:20.000" -"Nekopara Vol.4","","crash;status-ingame","ingame","2021-01-17 01:47:18.000" -"Super Meat Boy Forever - 01009C200D60E000","01009C200D60E000","gpu;status-boots","boots","2021-04-26 14:25:39.000" -"Gems of Magic: Lost Family","","","","2020-12-24 15:33:57.000" -"Wagamama High Spec","","","","2020-12-25 09:02:51.000" -"BIT.TRIP RUNNER - 0100E62012D3C000","0100E62012D3C000","status-playable","playable","2022-10-17 14:23:24.000" -"BIT.TRIP VOID - 01000AD012D3A000","01000AD012D3A000","status-playable","playable","2022-10-17 14:31:23.000" -"Dark Arcana: The Carnival - 01003D301357A000","01003D301357A000","gpu;slow;status-ingame","ingame","2022-02-19 08:52:28.000" -"Food Girls","","","","2020-12-27 14:48:48.000" -"Override 2 Super Mech League - 0100647012F62000","0100647012F62000","status-playable;online-broken;UE4","playable","2022-10-19 15:56:04.000" -"Unto The End - 0100E49013190000","0100E49013190000","gpu;status-ingame","ingame","2022-10-21 11:13:29.000" -"Outbreak: Lost Hope - 0100D9F013102000","0100D9F013102000","crash;status-boots","boots","2021-04-26 18:01:23.000" -"Croc's World 3","","status-playable","playable","2020-12-30 18:53:26.000" -"COLLECTION of SaGA FINAL FANTASY LEGEND","","status-playable","playable","2020-12-30 19:11:16.000" -"The Adventures of 00 Dilly","","status-playable","playable","2020-12-30 19:32:29.000" -"Funimation - 01008E10130F8000","01008E10130F8000","gpu;status-boots","boots","2021-04-08 13:08:17.000" -"Aleste Collection","","","","2021-01-01 11:30:59.000" -"Trail Boss BMX","","","","2021-01-01 16:51:27.000" -"DEEMO -Reborn- - 01008B10132A2000","01008B10132A2000","status-playable;nvdec;online-broken","playable","2022-10-17 15:18:11.000" -"Catherine Full Body - 0100BF00112C0000","0100BF00112C0000","status-playable;nvdec","playable","2023-04-02 11:00:37.000" -"Hell Sports","","","","2021-01-03 15:40:25.000" -"Traditional Tactics Ne+","","","","2021-01-03 15:40:29.000" -"Earth Defense Force World Brothers ( ま~るい地球が四角くなった!? デジボク地球防衛軍 ) - 0100B9E012992000","0100B9E012992000","status-playable;UE4","playable","2022-12-07 12:59:16.000" -"The House of Da Vinci","","status-playable","playable","2021-01-05 14:17:19.000" -"Monster Sanctuary","","crash;status-ingame","ingame","2021-04-04 05:06:41.000" -"Monster Hunter Rise Demo - 010093A01305C000","010093A01305C000","status-playable;online-broken;ldn-works;demo","playable","2022-10-18 23:04:17.000" -"InnerSpace","","status-playable","playable","2021-01-13 19:36:14.000" -"Scott Pilgrim vs The World: The Game - 0100394011C30000","0100394011C30000","services-horizon;status-nothing;crash","nothing","2024-07-12 08:13:03.000" -"Fantasy Tavern Sextet -Vol.2 Adventurer's Days-","","gpu;slow;status-ingame;crash","ingame","2021-11-06 02:57:29.000" -"Monster Hunter XX Nintendo Switch Ver ( Double Cross ) - 0100C3800049C000","0100C3800049C000","status-playable","playable","2024-07-21 14:08:09.000" -"Football Manager 2021 Touch - 01007CF013152000","01007CF013152000","gpu;status-ingame","ingame","2022-10-17 20:08:23.000" -"Eyes: The Horror Game - 0100EFE00A3C2000","0100EFE00A3C2000","status-playable","playable","2021-01-20 21:59:46.000" -"Evolution Board Game - 01006A800FA22000","01006A800FA22000","online;status-playable","playable","2021-01-20 22:37:56.000" -"PBA Pro Bowling 2021 - 0100F95013772000","0100F95013772000","status-playable;online-broken;UE4","playable","2022-10-19 16:46:40.000" -"Body of Evidence - 0100721013510000","0100721013510000","status-playable","playable","2021-04-25 22:22:11.000" -"The Hong Kong Massacre","","crash;status-ingame","ingame","2021-01-21 12:06:56.000" -"Arkanoid vs Space Invaders","","services;status-ingame","ingame","2021-01-21 12:50:30.000" -"Professor Lupo: Ocean - 0100D1F0132F6000","0100D1F0132F6000","status-playable","playable","2021-04-14 16:33:33.000" -"My Universe - School Teacher - 01006C301199C000","01006C301199C000","nvdec;status-playable","playable","2021-01-21 16:02:52.000" -"FUZE Player - 010055801134E000","010055801134E000","status-ingame;online-broken;vulkan-backend-bug","ingame","2022-10-18 12:23:53.000" -"Defentron - 0100CDE0136E6000","0100CDE0136E6000","status-playable","playable","2022-10-17 15:47:56.000" -"Thief Simulator - 0100CE400E34E000","0100CE400E34E000","status-playable","playable","2023-04-22 04:39:11.000" -"Stardash - 01002100137BA000","01002100137BA000","status-playable","playable","2021-01-21 16:31:19.000" -"The Last Dead End - 0100AAD011592000","0100AAD011592000","gpu;status-ingame;UE4","ingame","2022-10-20 16:59:44.000" -"Buddy Mission BOND Demo [ バディミッション BOND ]","","Incomplete","","2021-01-23 18:07:40.000" -"Disgaea 6: Defiance of Destiny Demo [ 魔界戦記ディスガイア6 ] - 01005EE013888000","01005EE013888000","gpu;status-ingame;demo","ingame","2022-12-06 15:27:59.000" -"Down in Bermuda","","","","2021-01-22 15:29:19.000" -"Blacksmith of the Sand Kingdom - 010068E013450000","010068E013450000","status-playable","playable","2022-10-16 22:37:44.000" -"Tennis World Tour 2 - 0100950012F66000","0100950012F66000","status-playable;online-broken","playable","2022-10-14 10:43:16.000" -"Shadow Gangs - 0100BE501382A000","0100BE501382A000","cpu;gpu;status-ingame;crash;regression","ingame","2024-04-29 00:07:26.000" -"Red Colony - 0100351013A06000","0100351013A06000","status-playable","playable","2021-01-25 20:44:41.000" -"Construction Simulator 3 - Console Edition - 0100A5600FAC0000","0100A5600FAC0000","status-playable","playable","2023-02-06 09:31:23.000" -"Speed Truck Racing - 010061F013A0E000","010061F013A0E000","status-playable","playable","2022-10-20 12:57:04.000" -"Arcanoid Breakout - 0100E53013E1C000","0100E53013E1C000","status-playable","playable","2021-01-25 23:28:02.000" -"Life of Fly - 0100B3A0135D6000","0100B3A0135D6000","status-playable","playable","2021-01-25 23:41:07.000" -"Little Nightmares II DEMO - 010093A0135D6000","010093A0135D6000","status-playable;UE4;demo;vulkan-backend-bug","playable","2024-05-16 18:47:20.000" -"Iris Fall - 0100945012168000","0100945012168000","status-playable;nvdec","playable","2022-10-18 13:40:22.000" -"Dirt Trackin Sprint Cars - 01004CB01378A000","01004CB01378A000","status-playable;nvdec;online-broken","playable","2022-10-17 16:34:56.000" -"Gal*Gun Returns [ ぎゃる☆がん りたーんず ] - 0100047013378000","0100047013378000","status-playable;nvdec","playable","2022-10-17 23:50:46.000" -"Disgaea 6: Defiance of Destiny [ FG ] [ 魔界戦記ディスガイア6 ] - 0100307011D80000","0100307011D80000","status-playable","playable","2021-06-08 13:20:33.000" -"Buddy Mission BOND [ FG ] [ バディミッション BOND ] - 0100DB300B996000","0100DB300B996000","","","2021-01-30 04:22:26.000" -"CONARIUM - 010015801308E000","010015801308E000","UE4;nvdec;status-playable","playable","2021-04-26 17:57:53.000" -"Balan Wonderworld Demo - 0100E48013A34000","0100E48013A34000","gpu;services;status-ingame;UE4;demo","ingame","2023-02-16 20:05:07.000" -"War Truck Simulator - 0100B6B013B8A000","0100B6B013B8A000","status-playable","playable","2021-01-31 11:22:54.000" -"The Last Campfire - 0100449011506000","0100449011506000","status-playable","playable","2022-10-20 16:44:19.000" -"Spinny's journey - 01001E40136FE000","01001E40136FE000","status-ingame;crash","ingame","2021-11-30 03:39:44.000" -"Sally Face - 0100BBF0122B4000","0100BBF0122B4000","status-playable","playable","2022-06-06 18:41:24.000" -"Otti house keeper - 01006AF013A9E000","01006AF013A9E000","status-playable","playable","2021-01-31 12:11:24.000" -"Neoverse Trinity Edition - 01001A20133E000","","status-playable","playable","2022-10-19 10:28:03.000" -"Missile Dancer - 0100CFA0138C8000","0100CFA0138C8000","status-playable","playable","2021-01-31 12:22:03.000" -"Grisaia Phantom Trigger 03 - 01005250123B8000","01005250123B8000","audout;status-playable","playable","2021-01-31 12:30:47.000" -"GRISAIA PHANTOM TRIGGER 04 -0100D970123BA000","0100D970123BA000","audout;status-playable","playable","2021-01-31 12:40:37.000" -"GRISAIA PHANTOM TRIGGER 05 - 01002330123BC000","01002330123BC000","audout;nvdec;status-playable","playable","2021-01-31 12:49:59.000" -"GRISAIA PHANTOM TRIGGER 5.5 - 0100CAF013AE6000","0100CAF013AE6000","audout;nvdec;status-playable","playable","2021-01-31 12:59:44.000" -"Dreamo - 0100D24013466000","0100D24013466000","status-playable;UE4","playable","2022-10-17 18:25:28.000" -"Dirt Bike Insanity - 0100A8A013DA4000","0100A8A013DA4000","status-playable","playable","2021-01-31 13:27:38.000" -"Calico - 010013A00E750000","010013A00E750000","status-playable","playable","2022-10-17 14:44:28.000" -"ADVERSE - 01008C901266E000","01008C901266E000","UE4;status-playable","playable","2021-04-26 14:32:51.000" -"All Walls Must Fall - 0100CBD012FB6000","0100CBD012FB6000","status-playable;UE4","playable","2022-10-15 19:16:30.000" -"Bus Driver Simulator - 010030D012FF6000","010030D012FF6000","status-playable","playable","2022-10-17 13:55:27.000" -"Blade II The Return of Evil - 01009CC00E224000","01009CC00E224000","audio;status-ingame;crash;UE4","ingame","2021-11-14 02:49:59.000" -"Ziggy The Chaser - 0100D7B013DD0000","0100D7B013DD0000","status-playable","playable","2021-02-04 20:34:27.000" -"Colossus Down - 0100E2F0128B4000","0100E2F0128B4000","status-playable","playable","2021-02-04 20:49:50.000" -"Turrican Flashback - 01004B0130C8000","","status-playable;audout","playable","2021-08-30 10:07:56.000" -"Ubongo - Deluxe Edition","","status-playable","playable","2021-02-04 21:15:01.000" -"Märchen Forest - 0100B201D5E000","","status-playable","playable","2021-02-04 21:33:34.000" -"Re:ZERO -Starting Life in Another World- The Prophecy of the Throne","","gpu;status-boots;crash;nvdec;vulkan","boots","2023-03-07 21:27:24.000" -"Tracks - Toybox Edition - 0100192010F5A000","0100192010F5A000","UE4;crash;status-nothing","nothing","2021-02-08 15:19:18.000" -"TOHU - 0100B5E011920000","0100B5E011920000","slow;status-playable","playable","2021-02-08 15:40:44.000" -"Redout: Space Assault - 0100326010B98000","0100326010B98000","status-playable;UE4","playable","2022-10-19 23:04:35.000" -"Gods Will Fall - 0100CFA0111C8000","0100CFA0111C8000","status-playable","playable","2021-02-08 16:49:59.000" -"Cyber Shadow - 0100C1F0141AA000","0100C1F0141AA000","status-playable","playable","2022-07-17 05:37:41.000" -"Atelier Ryza 2: Lost Legends & the Secret Fairy - 01009A9012022000","01009A9012022000","status-playable","playable","2022-10-16 21:06:06.000" -"Heaven's Vault - 0100FD901000C000","0100FD901000C000","crash;status-ingame","ingame","2021-02-08 18:22:01.000" -"Contraptions - 01007D701298A000","01007D701298A000","status-playable","playable","2021-02-08 18:40:50.000" -"My Universe - Pet Clinic Cats & Dogs - 0100CD5011A02000","0100CD5011A02000","status-boots;crash;nvdec","boots","2022-02-06 02:05:53.000" -"Citizens Unite!: Earth x Space - 0100D9C012900000","0100D9C012900000","gpu;status-ingame","ingame","2023-10-22 06:44:19.000" -"Blue Fire - 010073B010F6E000","010073B010F6E000","status-playable;UE4","playable","2022-10-22 14:46:11.000" -"Shakes on a Plane - 01008DA012EC0000","01008DA012EC0000","status-menus;crash","menus","2021-11-25 08:52:25.000" -"Glyph - 0100EB501130E000","0100EB501130E000","status-playable","playable","2021-02-08 19:56:51.000" -"Flying Hero X - 0100419013A8A000","0100419013A8A000","status-menus;crash","menus","2021-11-17 07:46:58.000" -"Disjunction - 01000B70122A2000","01000B70122A2000","gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug","ingame","2024-04-28 23:55:24.000" -"Grey Skies: A War of the Worlds Story - 0100DA7013792000","0100DA7013792000","status-playable;UE4","playable","2022-10-24 11:13:59.000" -"#womenUp, Super Puzzles Dream Demo - 0100D87012A14000","0100D87012A14000","nvdec;status-playable","playable","2021-02-09 00:03:31.000" -"n Verlore Verstand - Demo - 01009A500E3DA000","01009A500E3DA000","status-playable","playable","2021-02-09 00:13:32.000" -"10 Second Run RETURNS Demo - 0100DC000A472000","0100DC000A472000","gpu;status-ingame","ingame","2021-02-09 00:17:18.000" -"16-Bit Soccer Demo - 0100B94013D28000","0100B94013D28000","status-playable","playable","2021-02-09 00:23:07.000" -"1993 Shenandoah Demo - 0100148012550000","0100148012550000","status-playable","playable","2021-02-09 00:43:43.000" -"9 Monkeys of Shaolin Demo - 0100C5F012E3E000","0100C5F012E3E000","UE4;gpu;nvdec;status-ingame","ingame","2021-02-09 01:03:30.000" -"99Vidas Demo - 010023500C2F0000","010023500C2F0000","status-playable","playable","2021-02-09 12:51:31.000" -"A Duel Hand Disaster Trackher: DEMO - 0100582012B90000","0100582012B90000","crash;demo;nvdec;status-ingame","ingame","2021-03-24 18:45:27.000" -"Aces of the Luftwaffe Squadron Demo - 010054300D822000","010054300D822000","nvdec;status-playable","playable","2021-02-09 13:12:28.000" -"Active Neurons 2 Demo - 010031C0122B0000","010031C0122B0000","status-playable","playable","2021-02-09 13:40:21.000" -"Adventures of Chris Demo - 0100A0A0136E8000","0100A0A0136E8000","status-playable","playable","2021-02-09 13:49:21.000" -"Aegis Defenders Demo - 010064500AF72000","010064500AF72000","status-playable","playable","2021-02-09 14:04:17.000" -"Aeolis Tournament Demo - 01006710122CE000","01006710122CE000","nvdec;status-playable","playable","2021-02-09 14:22:30.000" -"AeternoBlade Demo Version - 0100B1C00949A000","0100B1C00949A000","nvdec;status-playable","playable","2021-02-09 14:39:26.000" -"AeternoBlade II Demo Version","","gpu;nvdec;status-ingame","ingame","2021-02-09 15:10:19.000" -"Agent A: A puzzle in disguise (Demo) - 01008E8012C02000","01008E8012C02000","status-playable","playable","2021-02-09 18:30:41.000" -"Airfield Mania Demo - 010010A00DB72000","010010A00DB72000","services;status-boots;demo","boots","2022-04-10 03:43:02.000" -"Alder's Blood Prologue - 01004510110C4000","01004510110C4000","crash;status-ingame","ingame","2021-02-09 19:03:03.000" -"AI: The Somnium Files Demo - 0100C1700FB34000","0100C1700FB34000","nvdec;status-playable","playable","2021-02-10 12:52:33.000" -"Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz Trial version - 0100A8A00D27E000","0100A8A00D27E000","status-playable","playable","2021-02-10 13:33:59.000" -"Animated Jigsaws: Beautiful Japanese Scenery DEMO - 0100A1900B5B8000","0100A1900B5B8000","nvdec;status-playable","playable","2021-02-10 13:49:56.000" -"APE OUT DEMO - 010054500E6D4000","010054500E6D4000","status-playable","playable","2021-02-10 14:33:06.000" -"Anime Studio Story Demo - 01002B300EB86000","01002B300EB86000","status-playable","playable","2021-02-10 14:50:39.000" -"Aperion Cyberstorm Demo - 01008CA00D71C000","01008CA00D71C000","status-playable","playable","2021-02-10 15:53:21.000" -"ARMS Demo","","status-playable","playable","2021-02-10 16:30:13.000" -"Art of Balance DEMO - 010062F00CAE2000","010062F00CAE2000","gpu;slow;status-ingame","ingame","2021-02-10 17:17:12.000" -"Assault on Metaltron Demo - 0100C5E00E540000","0100C5E00E540000","status-playable","playable","2021-02-10 19:48:06.000" -"Automachef Demo - 01006B700EA6A000","01006B700EA6A000","status-playable","playable","2021-02-10 20:35:37.000" -"AVICII Invector Demo - 0100E100128BA000","0100E100128BA000","status-playable","playable","2021-02-10 21:04:58.000" -"Awesome Pea (Demo) - 010023800D3F2000","010023800D3F2000","status-playable","playable","2021-02-10 21:48:21.000" -"Awesome Pea 2 (Demo) - 0100D2011E28000","","crash;status-nothing","nothing","2021-02-10 22:08:27.000" -"Ayakashi koi gikyoku Free Trial - 010075400DEC6000","010075400DEC6000","status-playable","playable","2021-02-10 22:22:11.000" -"Bad North Demo","","status-playable","playable","2021-02-10 22:48:38.000" -"Baobabs Mausoleum: DEMO - 0100D3000AEC2000","0100D3000AEC2000","status-playable","playable","2021-02-10 22:59:25.000" -"Battle Chef Brigade Demo - 0100DBB00CAEE000","0100DBB00CAEE000","status-playable","playable","2021-02-10 23:15:07.000" -"Mercenaries Blaze Dawn of the Twin Dragons - 0100a790133fc000","0100a790133fc000","","","2021-02-11 18:43:00.000" -"Fallen Legion Revenants Demo - 0100cac013776000","0100cac013776000","","","2021-02-11 18:43:06.000" -"Bear With Me - The Lost Robots Demo - 010024200E97E800","010024200E97E800","nvdec;status-playable","playable","2021-02-12 22:38:12.000" -"Birds and Blocks Demo - 0100B6B012FF4000","0100B6B012FF4000","services;status-boots;demo","boots","2022-04-10 04:53:03.000" -"Black Hole Demo - 01004BE00A682000","01004BE00A682000","status-playable","playable","2021-02-12 23:02:17.000" -"Blasphemous Demo - 0100302010338000","0100302010338000","status-playable","playable","2021-02-12 23:49:56.000" -"Blaster Master Zero DEMO - 010025B002E92000","010025B002E92000","status-playable","playable","2021-02-12 23:59:06.000" -"Bleep Bloop DEMO - 010091700EA2A000","010091700EA2A000","nvdec;status-playable","playable","2021-02-13 00:20:53.000" -"Block-a-Pix Deluxe Demo - 0100E1C00DB6C000","0100E1C00DB6C000","status-playable","playable","2021-02-13 00:37:39.000" -"Get Over Here - 0100B5B00E77C000","0100B5B00E77C000","status-playable","playable","2022-10-28 11:53:52.000" -"Unspottable - 0100B410138C0000","0100B410138C0000","status-playable","playable","2022-10-25 19:28:49.000" -"Blossom Tales Demo - 01000EB01023E000","01000EB01023E000","status-playable","playable","2021-02-13 14:22:53.000" -"Boomerang Fu Demo Version - 010069F0135C4000","010069F0135C4000","demo;status-playable","playable","2021-02-13 14:38:13.000" -"Bot Vice Demo - 010069B00EAC8000","010069B00EAC8000","crash;demo;status-ingame","ingame","2021-02-13 14:52:42.000" -"BOXBOY! + BOXGIRL! Demo - 0100B7200E02E000","0100B7200E02E000","demo;status-playable","playable","2021-02-13 14:59:08.000" -"Super Mario 3D World + Bowser's Fury - 010028600EBDA000","010028600EBDA000","status-playable;ldn-works","playable","2024-07-31 10:45:37.000" -"Brawlout Demo - 0100C1B00E1CA000","0100C1B00E1CA000","demo;status-playable","playable","2021-02-13 22:46:53.000" -"Brigandine: The Legend of Runersia Demo - 0100703011258000","0100703011258000","status-playable","playable","2021-02-14 14:44:10.000" -"Brotherhood United Demo - 0100F19011226000","0100F19011226000","demo;status-playable","playable","2021-02-14 21:10:57.000" -"Bucket Knight demo - 0100F1B010A90000","0100F1B010A90000","demo;status-playable","playable","2021-02-14 21:23:09.000" -"BurgerTime Party! Demo - 01005780106E8000","01005780106E8000","demo;status-playable","playable","2021-02-14 21:34:16.000" -"Cadence of Hyrule Crypt of the NecroDancer Featuring The Legend of Zelda Demo - 010065700EE0600","","demo;gpu;nvdec;status-ingame","ingame","2021-02-14 21:48:15.000" -"Cafeteria Nipponica Demo - 010060400D21C000","010060400D21C000","demo;status-playable","playable","2021-02-14 22:11:35.000" -"Cake Bash Demo - 0100699012F82000","0100699012F82000","crash;demo;status-ingame","ingame","2021-02-14 22:21:15.000" -"Captain Toad: Treasure Tracker Demo - 01002C400B6B6000","01002C400B6B6000","32-bit;demo;status-playable","playable","2021-02-14 22:36:09.000" -"CAPTAIN TSUBASA: RISE OF NEW CHAMPIONS DEMO VERSION - 01002320137CC000","01002320137CC000","slow;status-playable","playable","2021-02-14 22:45:35.000" -"Castle Crashers Remastered Demo - 0100F6D01060E000","0100F6D01060E000","gpu;status-boots;demo","boots","2022-04-10 10:57:10.000" -"Cat Quest II Demo - 0100E86010220000","0100E86010220000","demo;status-playable","playable","2021-02-15 14:11:57.000" -"Caveman Warriors Demo","","demo;status-playable","playable","2021-02-15 14:44:08.000" -"Chickens Madness DEMO - 0100CAC011C3A000","0100CAC011C3A000","UE4;demo;gpu;nvdec;status-ingame","ingame","2021-02-15 15:02:10.000" -"Little Nightmares II - 010097100EDD6000","010097100EDD6000","status-playable;UE4","playable","2023-02-10 18:24:44.000" -"Rhythm Fighter - 0100729012D18000","0100729012D18000","crash;status-nothing","nothing","2021-02-16 18:51:30.000" -"大図書館の羊飼い -Library Party-01006de00a686000","01006de00a686000","","","2021-02-16 07:20:19.000" -"Timothy and the Mysterious Forest - 0100393013A10000","0100393013A10000","gpu;slow;status-ingame","ingame","2021-06-02 00:42:11.000" -"Pixel Game Maker Series Werewolf Princess Kaguya - 0100859013CE6000","0100859013CE6000","crash;services;status-nothing","nothing","2021-03-26 00:23:07.000" -"D.C.4 ~ダ・カーポ4~-0100D8500EE14000","0100D8500EE14000","","","2021-02-17 08:46:35.000" -"Yo kai watch 1 for Nintendo Switch - 0100C0000CEEA000","0100C0000CEEA000","gpu;status-ingame;opengl","ingame","2024-05-28 11:11:49.000" -"Project TRIANGLE STRATEGY Debut Demo - 01002980140F6000","01002980140F6000","status-playable;UE4;demo","playable","2022-10-24 21:40:27.000" -"SNK VS. CAPCOM: THE MATCH OF THE MILLENNIUM - 010027D0137E0000","010027D0137E0000","","","2021-02-19 12:35:20.000" -"Super Soccer Blast - 0100D61012270000","0100D61012270000","gpu;status-ingame","ingame","2022-02-16 08:39:12.000" -"VOEZ (Japan Version) - 0100A7F002830000","0100A7F002830000","","","2021-02-19 15:07:49.000" -"Dungreed - 010045B00C496000","010045B00C496000","","","2021-02-19 16:18:07.000" -"Capcom Arcade Stadium - 01001E0013208000","01001E0013208000","status-playable","playable","2021-03-17 05:45:14.000" -"Urban Street Fighting - 010054F014016000","010054F014016000","status-playable","playable","2021-02-20 19:16:36.000" -"The Long Dark - 01007A700A87C000","01007A700A87C000","status-playable","playable","2021-02-21 14:19:52.000" -"Rebel Galaxy: Outlaw - 0100CAA01084A000","0100CAA01084A000","status-playable;nvdec","playable","2022-12-01 07:44:56.000" -"Persona 5: Strikers (US) - 0100801011C3E000","0100801011C3E000","status-playable;nvdec;mac-bug","playable","2023-09-26 09:36:01.000" -"Steven Universe Unleash the Light","","","","2021-02-25 02:33:05.000" -"Ghosts 'n Goblins Resurrection - 0100D6200F2BA000","0100D6200F2BA000","status-playable","playable","2023-05-09 12:40:41.000" -"Taxi Chaos - 0100B76011DAA000","0100B76011DAA000","slow;status-playable;online-broken;UE4","playable","2022-10-25 19:13:00.000" -"COTTOn Reboot! [ コットン リブート! ] - 01003DD00F94A000","01003DD00F94A000","status-playable","playable","2022-05-24 16:29:24.000" -"STORY OF SEASONS Pioneers of Olive [ 牧場物語 オリーブタウンと希望の大地 ] - 010017301007E000","010017301007E000","status-playable","playable","2021-03-18 11:42:19.000" -"Bravely Default II - 01006DC010326000","01006DC010326000","gpu;status-ingame;crash;Needs Update;UE4","ingame","2024-04-26 06:11:26.000" -"Forward To The Sky - 0100DBA011136000","0100DBA011136000","","","2021-02-27 12:11:42.000" -"Just Dance 2019","","gpu;online;status-ingame","ingame","2021-02-27 17:21:27.000" -"Harvest Moon One World - 010016B010FDE00","","status-playable","playable","2023-05-26 09:17:19.000" -"Just Dance 2017 - 0100BCE000598000","0100BCE000598000","online;status-playable","playable","2021-03-05 09:46:01.000" -"コープスパーティー ブラッドカバー リピーティッドフィアー (Corpse Party Blood Covered: Repeated Fear) - 0100965012E22000","0100965012E22000","","","2021-03-05 09:47:52.000" -"Sea of Solitude The Director's Cut - 0100AFE012BA2000","0100AFE012BA2000","gpu;status-ingame","ingame","2024-07-12 18:29:29.000" -"Just Dance 2018 - 0100A0500348A000","0100A0500348A000","","","2021-03-13 08:09:14.000" -"Crash Bandicoot 4: It's About Time - 010073401175E000","010073401175E000","status-playable;nvdec;UE4","playable","2024-03-17 07:13:45.000" -"Bloody Bunny : The Game - 0100E510143EC000","0100E510143EC000","status-playable;nvdec;UE4","playable","2022-10-22 13:18:55.000" -"Plants vs. Zombies: Battle for Neighborville Complete Edition - 0100C56010FD8000","0100C56010FD8000","gpu;audio;status-boots;crash","boots","2024-09-02 12:58:14.000" -"Cathedral - 0100BEB01327A000","0100BEB01327A000","","","2021-03-19 22:12:46.000" -"Night Vision - 0100C3801458A000","0100C3801458A000","","","2021-03-19 22:20:53.000" -"Stubbs the Zombie in Rebel Without a Pulse - 0100964012528000","0100964012528000","","","2021-03-19 22:56:50.000" -"Hitman 3 - Cloud Version - 01004990132AC000","01004990132AC000","Needs Update;crash;services;status-nothing","nothing","2021-04-18 22:35:07.000" -"Speed Limit - 01000540139F6000","01000540139F6000","gpu;status-ingame","ingame","2022-09-02 18:37:40.000" -"Dig Dog - 0100A5A00DBB0000","0100A5A00DBB0000","gpu;status-ingame","ingame","2021-06-02 17:17:51.000" -"Renzo Racer - 01007CC0130C6000","01007CC0130C6000","status-playable","playable","2021-03-23 22:28:05.000" -"Persephone","","status-playable","playable","2021-03-23 22:39:19.000" -"Cresteaju","","gpu;status-ingame","ingame","2021-03-24 10:46:06.000" -"Boom Blaster","","status-playable","playable","2021-03-24 10:55:56.000" -"Soccer Club Life: Playing Manager - 010017B012AFC000","010017B012AFC000","gpu;status-ingame","ingame","2022-10-25 11:59:22.000" -"Radio Commander - 0100BAD013B6E000","0100BAD013B6E000","nvdec;status-playable","playable","2021-03-24 11:20:46.000" -"Negative - 01008390136FC000","01008390136FC000","nvdec;status-playable","playable","2021-03-24 11:29:41.000" -"Hero-U: Rogue to Redemption - 010077D01094C000","010077D01094C000","nvdec;status-playable","playable","2021-03-24 11:40:01.000" -"Haven - 0100E2600DBAA000","0100E2600DBAA000","status-playable","playable","2021-03-24 11:52:41.000" -"Escape First 2 - 010021201296A000","010021201296A000","status-playable","playable","2021-03-24 11:59:41.000" -"Active Neurons 3 - 0100EE1013E12000","0100EE1013E12000","status-playable","playable","2021-03-24 12:20:20.000" -"Blizzard Arcade Collection - 0100743013D56000","0100743013D56000","status-playable;nvdec","playable","2022-08-03 19:37:26.000" -"Hellpoint - 010024600C794000","010024600C794000","status-menus","menus","2021-11-26 13:24:20.000" -"Death's Hangover - 0100492011A8A000","0100492011A8A000","gpu;status-boots","boots","2023-08-01 22:38:06.000" -"Storm in a Teacup - 0100B2300B932000","0100B2300B932000","gpu;status-ingame","ingame","2021-11-06 02:03:19.000" -"Charge Kid - 0100F52013A66000","0100F52013A66000","gpu;status-boots;audout","boots","2024-02-11 01:17:47.000" -"Monster Hunter Rise - 0100B04011742000","0100B04011742000","gpu;slow;status-ingame;crash;nvdec;online-broken;Needs Update;ldn-works","ingame","2024-08-24 11:04:59.000" -"Gotobun no Hanayome Natsu no Omoide mo Gotobun [ 五等分の花嫁∬ ~夏の思い出も五等分~ ] - 0100FB5013670000","0100FB5013670000","","","2021-03-27 16:51:27.000" -"Steam Prison - 01008010118CC000","01008010118CC000","nvdec;status-playable","playable","2021-04-01 15:34:11.000" -"Rogue Heroes: Ruins of Tasos - 01009FA010848000","01009FA010848000","online;status-playable","playable","2021-04-01 15:41:25.000" -"Fallen Legion Revenants - 0100AA801258C000","0100AA801258C000","status-menus;crash","menus","2021-11-25 08:53:20.000" -" R-TYPE FINAL 2 Demo - 01007B0014300000","01007B0014300000","slow;status-ingame;nvdec;UE4;demo","ingame","2022-10-24 21:57:42.000" -"Fire Emblem: Shadow Dragon and the Blade of Light - 0100A12011CC8000","0100A12011CC8000","status-playable","playable","2022-10-17 19:49:14.000" -"Dariusburst - Another Chronicle EX+ - 010015800F93C000","010015800F93C000","online;status-playable","playable","2021-04-05 14:21:43.000" -"Curse of the Dead Gods - 0100D4A0118EA000","0100D4A0118EA000","status-playable","playable","2022-08-30 12:25:38.000" -"Clocker - 0100DF9013AD4000","0100DF9013AD4000","status-playable","playable","2021-04-05 15:05:13.000" -"Azur Lane: Crosswave - 01006AF012FC8000","01006AF012FC8000","UE4;nvdec;status-playable","playable","2021-04-05 15:15:25.000" -"AnShi - 01000FD00DF78000","01000FD00DF78000","status-playable;nvdec;UE4","playable","2022-10-21 19:37:01.000" -"Aery - A Journey Beyond Time - 0100DF8014056000","0100DF8014056000","status-playable","playable","2021-04-05 15:52:25.000" -"Sir Lovelot - 0100E9201410E000","0100E9201410E000","status-playable","playable","2021-04-05 16:21:46.000" -"Pixel Game Maker Series Puzzle Pedestrians - 0100EA2013BCC000","0100EA2013BCC000","status-playable","playable","2022-10-24 20:15:50.000" -"Monster Jam Steel Titans 2 - 010051B0131F0000","010051B0131F0000","status-playable;nvdec;UE4","playable","2022-10-24 17:17:59.000" -"Huntdown - 0100EBA004726000","0100EBA004726000","status-playable","playable","2021-04-05 16:59:54.000" -"GraviFire - 010054A013E0C000","010054A013E0C000","status-playable","playable","2021-04-05 17:13:32.000" -"Dungeons & Bombs","","status-playable","playable","2021-04-06 12:46:22.000" -"Estranged: The Departure - 01004F9012FD8000","01004F9012FD8000","status-playable;nvdec;UE4","playable","2022-10-24 10:37:58.000" -"Demon's Rise - Lords of Chaos - 0100E29013818000","0100E29013818000","status-playable","playable","2021-04-06 16:20:06.000" -"Bibi & Tina at the horse farm - 010062400E69C000","010062400E69C000","status-playable","playable","2021-04-06 16:31:39.000" -"WRC 9 The Official Game - 01001A0011798000","01001A0011798000","gpu;slow;status-ingame;nvdec","ingame","2022-10-25 19:47:39.000" -"Woodsalt - 0100288012966000","0100288012966000","status-playable","playable","2021-04-06 17:01:48.000" -"Kingdoms of Amalur: Re-Reckoning - 0100EF50132BE000","0100EF50132BE000","status-playable","playable","2023-08-10 13:05:08.000" -"Jiffy - 01008330134DA000","01008330134DA000","gpu;status-ingame;opengl","ingame","2024-02-03 23:11:24.000" -"A-Train: All Aboard! Tourism - 0100A3E010E56000","0100A3E010E56000","nvdec;status-playable","playable","2021-04-06 17:48:19.000" -"Synergia - 01009E700F448000","01009E700F448000","status-playable","playable","2021-04-06 17:58:04.000" -"R.B.I. Baseball 21 - 0100B4A0115CA000","0100B4A0115CA000","status-playable;online-working","playable","2022-10-24 22:31:45.000" -"NEOGEO POCKET COLOR SELECTION Vol.1 - 010006D0128B4000","010006D0128B4000","status-playable","playable","2023-07-08 20:55:36.000" -"Mighty Fight Federation - 0100C1E0135E0000","0100C1E0135E0000","online;status-playable","playable","2021-04-06 18:39:56.000" -"Lost Lands: The Four Horsemen - 0100133014510000","0100133014510000","status-playable;nvdec","playable","2022-10-24 16:41:00.000" -"In rays of the Light - 0100A760129A0000","0100A760129A0000","status-playable","playable","2021-04-07 15:18:07.000" -"DARQ Complete Edition - 0100440012FFA000","0100440012FFA000","audout;status-playable","playable","2021-04-07 15:26:21.000" -"Can't Drive This - 0100593008BDC000","0100593008BDC000","status-playable","playable","2022-10-22 14:55:17.000" -"Wanderlust Travel Stories - 0100B27010436000","0100B27010436000","status-playable","playable","2021-04-07 16:09:12.000" -"Tales from the Borderlands - 0100F0C011A68000","0100F0C011A68000","status-playable;nvdec","playable","2022-10-25 18:44:14.000" -"Star Wars: Republic Commando - 0100FA10115F8000","0100FA10115F8000","gpu;status-ingame;32-bit","ingame","2023-10-31 15:57:17.000" -"Barrage Fantasia - 0100F2A013752000","0100F2A013752000","","","2021-04-08 01:02:06.000" -"Atelier Rorona - The Alchemist of Arland - DX - 010088600C66E000","010088600C66E000","nvdec;status-playable","playable","2021-04-08 15:33:15.000" -"PAC-MAN 99 - 0100AD9012510000","0100AD9012510000","gpu;status-ingame;online-broken","ingame","2024-04-23 00:48:25.000" -"MAGLAM LORD - 0100C2C0125FC000","0100C2C0125FC000","","","2021-04-09 09:10:45.000" -"Part Time UFO - 01006B5012B32000 ","01006B5012B32000","status-ingame;crash","ingame","2023-03-03 03:13:05.000" -"Fitness Boxing - 0100E7300AAD4000","0100E7300AAD4000","status-playable","playable","2021-04-14 20:33:33.000" -"Fitness Boxing 2: Rhythm & Exercise - 0100073011382000","0100073011382000","crash;status-ingame","ingame","2021-04-14 20:40:48.000" -"Overcooked! All You Can Eat - 0100F28011892000","0100F28011892000","ldn-untested;online;status-playable","playable","2021-04-15 10:33:52.000" -"SpyHack - 01005D701264A000","01005D701264A000","status-playable","playable","2021-04-15 10:53:51.000" -"Oh My Godheads: Party Edition - 01003B900AE12000","01003B900AE12000","status-playable","playable","2021-04-15 11:04:11.000" -"My Hidden Things - 0100E4701373E000","0100E4701373E000","status-playable","playable","2021-04-15 11:26:06.000" -"Merchants of Kaidan - 0100E5000D3CA000","0100E5000D3CA000","status-playable","playable","2021-04-15 11:44:28.000" -"Mahluk dark demon - 010099A0145E8000","010099A0145E8000","status-playable","playable","2021-04-15 13:14:24.000" -"Fred3ric - 0100AC40108D8000","0100AC40108D8000","status-playable","playable","2021-04-15 13:30:31.000" -"Fishing Universe Simulator - 010069800D292000","010069800D292000","status-playable","playable","2021-04-15 14:00:43.000" -"Exorder - 0100FA800A1F4000","0100FA800A1F4000","nvdec;status-playable","playable","2021-04-15 14:17:20.000" -"FEZ - 01008D900B984000","01008D900B984000","gpu;status-ingame","ingame","2021-04-18 17:10:16.000" -"Danger Scavenger - ","","nvdec;status-playable","playable","2021-04-17 15:53:04.000" -"Hellbreachers - 01002BF013F0C000","01002BF013F0C000","","","2021-04-17 17:19:20.000" -"Cooking Simulator - 01001E400FD58000","01001E400FD58000","status-playable","playable","2021-04-18 13:25:23.000" -"Digerati Presents: The Dungeon Crawl Vol. 1 - 010035D0121EC000","010035D0121EC000","slow;status-ingame","ingame","2021-04-18 14:04:55.000" -"Clea 2 - 010045E0142A4000","010045E0142A4000","status-playable","playable","2021-04-18 14:25:18.000" -"Livestream Escape from Hotel Izanami - 0100E45014338000","0100E45014338000","","","2021-04-19 02:20:34.000" -"Ai Kiss 2 [ アイキス2 ] - 01000E9013CD4000","01000E9013CD4000","","","2021-04-19 02:49:12.000" -"Pikachin-Kit – Game de Pirameki Daisakusen [ ピカちんキット ゲームでピラメキ大作戦!] - 01009C100A8AA000","01009C100A8AA000","","","2021-04-19 03:11:07.000" -"Ougon musou kyoku CROSS [ 黄金夢想曲†CROSS] - 010011900E720000","010011900E720000","","","2021-04-19 03:22:41.000" -"Cargo Crew Driver - 0100DD6014870000","0100DD6014870000","status-playable","playable","2021-04-19 12:54:22.000" -"Black Legend - 0100C3200E7E6000","0100C3200E7E6000","gpu;status-ingame;UE4;vulkan-backend-bug;opengl-backend-bug","ingame","2022-10-22 12:54:48.000" -"Balan Wonderworld - 0100438012EC8000","0100438012EC8000","status-playable;nvdec;UE4","playable","2022-10-22 13:08:43.000" -"Arkham Horror: Mother's Embrace - 010069A010606000","010069A010606000","nvdec;status-playable","playable","2021-04-19 15:40:55.000" -"S.N.I.P.E.R. Hunter Scope - 0100B8B012ECA000","0100B8B012ECA000","status-playable","playable","2021-04-19 15:58:09.000" -"Ploid Saga - 0100E5B011F48000 ","0100E5B011F48000","status-playable","playable","2021-04-19 16:58:45.000" -"Kaze and the Wild Masks - 010038B00F142000","010038B00F142000","status-playable","playable","2021-04-19 17:11:03.000" -"I Saw Black Clouds - 01001860140B0000","01001860140B0000","nvdec;status-playable","playable","2021-04-19 17:22:16.000" -"Escape from Life Inc - 010023E013244000","010023E013244000","status-playable","playable","2021-04-19 17:34:09.000" -"El Hijo - A Wild West Tale - 010020A01209C000","010020A01209C000","nvdec;status-playable","playable","2021-04-19 17:44:08.000" -"Bomber Fox - 0100A1F012948000","0100A1F012948000","nvdec;status-playable","playable","2021-04-19 17:58:13.000" -"Stitchy in Tooki Trouble - 010077B014518000","010077B014518000","status-playable","playable","2021-05-06 16:25:53.000" -"SaGa Frontier Remastered - 0100A51013530000","0100A51013530000","status-playable;nvdec","playable","2022-11-03 13:54:56.000" -"Wonder Boy Asha in Monster World [ ワンダーボーイ アーシャ・イン・モンスターワールド ] - 0100EB2012E36000","0100EB2012E36000","status-nothing;crash","nothing","2021-11-03 08:45:06.000" -"Raiden IV x Mikado Remix [ 雷電Ⅳ×MIKADO remix ] - 01005CD013116000","01005CD013116000","status-playable","playable","2022-07-29 15:50:13.000" -"Uno no Tatsujin Machigai Sagashi Museum for Nintendo Switch [ -右脳の達人- まちがいさがしミュージアム for Nintendo Switch ] - 01001030136C6000","01001030136C6000","","","2021-04-22 21:59:27.000" -"Shantae - 0100430013120000","0100430013120000","status-playable","playable","2021-05-21 04:53:26.000" -"The Legend of Heroes: Trails of Cold Steel IV - 0100D3C010DE8000","0100D3C010DE8000","nvdec;status-playable","playable","2021-04-23 14:01:05.000" -"Effie - 01002550129F0000","01002550129F0000","status-playable","playable","2022-10-27 14:36:39.000" -"Death end re;Quest - 0100AEC013DDA000","0100AEC013DDA000","status-playable","playable","2023-07-09 12:19:54.000" -"THE LEGEND OF HEROES: ZERO NO KISEKI KAI [英雄傳說 零之軌跡:改] - 01005E5013862000","01005E5013862000","status-nothing;crash","nothing","2021-09-30 14:41:07.000" -"Yoshi's Crafted World - 01006000040C2000","01006000040C2000","gpu;status-ingame;audout","ingame","2021-08-30 13:25:51.000" -"TY the Tasmanian Tiger 2: Bush Rescue HD - 0100BC701417A000","0100BC701417A000","","","2021-05-04 23:11:57.000" -"Nintendo Labo Toy-Con 03: Vehicle Kit - 01001E9003502000","01001E9003502000","services;status-menus;crash","menus","2022-08-03 17:20:11.000" -"Say No! More - 01001C3012912000","01001C3012912000","status-playable","playable","2021-05-06 13:43:34.000" -"Potion Party - 01000A4014596000","01000A4014596000","status-playable","playable","2021-05-06 14:26:54.000" -"Saviors of Sapphire Wings & Stranger of Sword City Revisited - 0100AA00128BA000","0100AA00128BA000","status-menus;crash","menus","2022-10-24 23:00:46.000" -"Lost Words: Beyond the Page - 0100018013124000","0100018013124000","status-playable","playable","2022-10-24 17:03:21.000" -"Lost Lands 3: The Golden Curse - 0100156014C6A000","0100156014C6A000","status-playable;nvdec","playable","2022-10-24 16:30:00.000" -"ISLAND - 0100F06013710000","0100F06013710000","status-playable","playable","2021-05-06 15:11:47.000" -"SilverStarChess - 010016D00A964000","010016D00A964000","status-playable","playable","2021-05-06 15:25:57.000" -"Breathedge - 01000AA013A5E000","01000AA013A5E000","UE4;nvdec;status-playable","playable","2021-05-06 15:44:28.000" -"Isolomus - 010001F0145A8000","010001F0145A8000","services;status-boots","boots","2021-11-03 07:48:21.000" -"Relicta - 01002AD013C52000","01002AD013C52000","status-playable;nvdec;UE4","playable","2022-10-31 12:48:33.000" -"Rain on Your Parade - 0100BDD014232000","0100BDD014232000","status-playable","playable","2021-05-06 19:32:04.000" -"World's End Club Demo - 0100BE101453E000","0100BE101453E000","","","2021-05-08 16:22:55.000" -"Very Very Valet Demo - 01006C8014DDA000","01006C8014DDA000","status-boots;crash;Needs Update;demo","boots","2022-11-12 15:26:13.000" -"Miitopia Demo - 01007DA0140E8000","01007DA0140E8000","services;status-menus;crash;demo","menus","2023-02-24 11:50:58.000" -"Knight Squad 2 - 010024B00E1D6000","010024B00E1D6000","status-playable;nvdec;online-broken","playable","2022-10-28 18:38:09.000" -"Tonarini kanojo noiru shiawase ~ Curious Queen ~ [ となりに彼女のいる幸せ~Curious Queen~] - 0100A18011BE4000","0100A18011BE4000","","","2021-05-11 13:40:34.000" -"Mainichi mamoru miya sanchino kyou nogohan [ 毎日♪ 衛宮さんちの今日のごはん ] - 01005E6010114000","01005E6010114000","","","2021-05-11 13:45:30.000" -"Commander Keen in Keen Dreams: Definitive Edition - 0100E400129EC000","0100E400129EC000","status-playable","playable","2021-05-11 19:33:54.000" -"SD Gundam G Generation Genesis (0100CEE0140CE000)","0100CEE0140CE000","","","2021-05-13 12:29:50.000" -"Poison Control - 0100EB6012FD2000","0100EB6012FD2000","status-playable","playable","2021-05-16 14:01:54.000" -"My Riding Stables 2: A New Adventure - 010042A00FBF0000","010042A00FBF0000","status-playable","playable","2021-05-16 14:14:59.000" -"Dragon Audit - 0100DBC00BD5A000","0100DBC00BD5A000","crash;status-ingame","ingame","2021-05-16 14:24:46.000" -"Arcaea - 0100E680149DC000","0100E680149DC000","status-playable","playable","2023-03-16 19:31:21.000" -"Calculator - 010004701504A000","010004701504A000","status-playable","playable","2021-06-11 13:27:20.000" -"Rune Factory 5 (JP) - 010014D01216E000","010014D01216E000","gpu;status-ingame","ingame","2021-06-01 12:00:36.000" -"SD GUNDAM G GENERATION CROSS RAYS PREMIUM G SOUND EDITION - 010022900D3EC00","","status-playable;nvdec","playable","2022-09-15 20:45:57.000" -"War Of Stealth - assassin - 01004FA01391A000","01004FA01391A000","status-playable","playable","2021-05-22 17:34:38.000" -"Under Leaves - 01008F3013E4E000","01008F3013E4E000","status-playable","playable","2021-05-22 18:13:58.000" -"Travel Mosaics 7: Fantastic Berlin - ","","status-playable","playable","2021-05-22 18:37:34.000" -"Travel Mosaics 6: Christmas Around the World - 0100D520119D6000","0100D520119D6000","status-playable","playable","2021-05-26 00:52:47.000" -"Travel Mosaics 5: Waltzing Vienna - 01004C4010C00000","01004C4010C00000","status-playable","playable","2021-05-26 11:49:35.000" -"Travel Mosaics 4: Adventures in Rio - 010096D010BFE000","010096D010BFE000","status-playable","playable","2021-05-26 11:54:58.000" -"Travel Mosaics 3: Tokyo Animated - 0100102010BFC000","0100102010BFC000","status-playable","playable","2021-05-26 12:06:27.000" -"Travel Mosaics 2: Roman Holiday - 0100A8D010BFA000","0100A8D010BFA000","status-playable","playable","2021-05-26 12:33:16.000" -"Travel Mosaics: A Paris Tour - 01007DB00A226000","01007DB00A226000","status-playable","playable","2021-05-26 12:42:26.000" -"Rolling Gunner - 010076200CA16000","010076200CA16000","status-playable","playable","2021-05-26 12:54:18.000" -"MotoGP 21 - 01000F5013820000","01000F5013820000","gpu;status-ingame;nvdec;online-broken;UE4;ldn-untested","ingame","2022-10-28 21:35:08.000" -"Little Mouse's Encyclopedia - 0100FE0014200000","0100FE0014200000","status-playable","playable","2022-10-28 19:38:58.000" -"Himehibi 1 gakki - Princess Days - 0100F8D0129F4000","0100F8D0129F4000","status-nothing;crash","nothing","2021-11-03 08:34:19.000" -"Dokapon Up! Mugen no Roulette - 010048100D51A000","010048100D51A000","gpu;status-menus;Needs Update","menus","2022-12-08 19:39:10.000" -"Umineko no Naku Koro ni Saku - うみねこのなく頃に咲 ~猫箱と夢想の交響曲~ - 01006A300BA2C000","01006A300BA2C000","status-playable;audout","playable","2023-05-04 17:25:23.000" -"Paint (0100946012446000)","0100946012446000","","","2021-05-31 12:57:19.000" -"Knockout City - 01009EF00DDB4000","01009EF00DDB4000","services;status-boots;online-broken","boots","2022-12-09 09:48:58.000" -"Trine 2 - 010064E00A932000","010064E00A932000","nvdec;status-playable","playable","2021-06-03 11:45:20.000" -"Trine 3: The Artifacts of Power - 0100DEC00A934000","0100DEC00A934000","ldn-untested;online;status-playable","playable","2021-06-03 12:01:24.000" -"Jamestown+ - 010000100C4B8000","010000100C4B8000","","","2021-06-05 09:09:39.000" -"Lonely Mountains Downhill - 0100A0C00E0DE000","0100A0C00E0DE000","status-playable;online-broken","playable","2024-07-04 05:08:11.000" -"Densha de go!! Hashirou Yamanote Sen - 0100BC501355A000","0100BC501355A000","status-playable;nvdec;UE4","playable","2023-11-09 07:47:58.000" -"Warui Ohsama to Rippana Yuusha - 0100556011C10000","0100556011C10000","","","2021-06-24 14:22:15.000" -"TONY HAWK'S™ PRO SKATER™ 1 + 2 - 0100CC00102B4000","0100CC00102B4000","gpu;status-ingame;Needs Update","ingame","2024-09-24 08:18:14.000" -"Mario Golf: Super Rush - 0100C9C00E25C000","0100C9C00E25C000","gpu;status-ingame","ingame","2024-08-18 21:31:48.000" -"Neo : The World Ends with You (DEMO)- 新すばらしきこのせかい (体験版) - 01001AB0141A8000","01001AB0141A8000","crash;status-ingame","ingame","2021-07-18 07:29:18.000" -"LEGO Builder’s Journey - 01005EE0140AE000 ","01005EE0140AE000","","","2021-06-26 21:31:59.000" -"Disgaea 6: Defiance of Destiny - 0100ABC013136000","0100ABC013136000","deadlock;status-ingame","ingame","2023-04-15 00:50:32.000" -"Game Builder Garage - 0100FA5010788000","0100FA5010788000","status-ingame","ingame","2024-04-20 21:46:22.000" -"Miitopia - 01003DA010E8A000","01003DA010E8A000","gpu;services-horizon;status-ingame","ingame","2024-09-06 10:39:13.000" -"DOOM Eternal - 0100B1A00D8CE000","0100B1A00D8CE000","gpu;slow;status-ingame;nvdec;online-broken","ingame","2024-08-28 15:57:17.000" -"Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy DX+ - 0100FDB00AA800000","0100FDB00AA80000","gpu;status-ingame;nvdec;opengl","ingame","2022-09-14 15:15:55.000" -"Sky: Children of the Light - 0100C52011460000","0100C52011460000","cpu;status-nothing;online-broken","nothing","2023-02-23 10:57:10.000" -"Tantei bokumetsu 探偵撲滅 - 0100CBA014014000","0100CBA014014000","","","2021-07-11 15:58:42.000" -"The Legend of Heroes: Sen no Kiseki I - 0100AD0014AB4000 (Japan, Asia)","0100AD0014AB4000","","","2021-07-12 11:15:02.000" -"SmileBASIC 4 - 0100C9100B06A000","0100C9100B06A000","gpu;status-menus","menus","2021-07-29 17:35:59.000" -"The Legend of Zelda: Breath of the Wild Demo - 0100509005AF2000","0100509005AF2000","status-ingame;demo","ingame","2022-12-24 05:02:58.000" -"Kanda Alice mo Suiri Suru 神田アリス も 推理スル - 01003BD013E30000","01003BD013E30000","","","2021-07-15 00:30:16.000" -"Crayon Shin-chan Ora to Hakase no Natsuyasumi Owaranai Nanokakan no Tabi - 01005BA00F486000","01005BA00F486000","status-playable","playable","2021-07-21 10:41:33.000" -"The Legend of Zelda: Skyward Sword HD - 01002DA013484000","01002DA013484000","gpu;status-ingame","ingame","2024-06-14 16:48:29.000" -"Monster wo taoshite tsuyoi ken ya yoroi wo te ni shinasai. Shinde mo akiramezu ni tsuyoku nari nasai. Yuushatai ga maoh wo taosu sono hi wo shinzite imasu. - モンスターを倒して強い剣や鎧を手にしなさい。死んでも諦めずに強くなりなさい。勇者隊が魔王を倒すその日を信じています。 - 01004E10142FE000","01004E10142FE000","crash;status-ingame","ingame","2021-07-23 10:56:44.000" -"Suguru Nature - 0100BF9012AC6000","0100BF9012AC6000","crash;status-ingame","ingame","2021-07-29 11:36:27.000" -"Cris Tales - 0100B0400EBC4000","0100B0400EBC4000","crash;status-ingame","ingame","2021-07-29 15:10:53.000" -"Ren'ai, Karichaimashita 恋愛、借りちゃいました - 0100142013cea000","0100142013cea000","","","2021-07-28 00:37:48.000" -"Dai Gyakuten Saiban 1 & 2 -Naruhodou Ryuunosuke no Bouken to Kakugo- - 大逆転裁判1&2 -成歩堂龍ノ介の冒險と覺悟- - 0100D7F00FB1A000","0100D7F00FB1A000","","","2021-07-29 06:38:53.000" -"New Pokémon Snap - 0100F4300BF2C000","0100F4300BF2C000","status-playable","playable","2023-01-15 23:26:57.000" -"Astro Port Shmup Collection - 01000A601139E000","01000A601139E000","","","2021-08-03 13:14:37.000" -"Monster Hunter Stories 2: Wings of Ruin ID 0100E2101144600","","services;status-ingame","ingame","2022-07-10 19:27:30.000" -"Picross S GENESIS and Master System edition - ピクロスS MEGA DRIVE & MARKⅢ edition - 010089701567A000","010089701567A000","","","2021-08-10 04:18:06.000" -"ooKing simulator pizza -010033c014666000","010033c014666000","","","2021-08-15 20:49:24.000" -"Everyday♪ Today's MENU for EMIYA Family - 010031B012254000","010031B012254000","","","2021-08-15 19:27:36.000" -"Hatsune Miku Logic Paint S - 0100B4101459A000","0100B4101459A000","","","2021-08-19 00:23:50.000" -"シークレットゲーム KILLER QUEEN for Nintendo Switch","","","","2021-08-21 08:12:41.000" -"リベリオンズ: Secret Game 2nd Stage for Nintendo Switch - 010096000B658000","010096000B658000","","","2021-08-21 08:28:40.000" -"Susanoh -Nihon Shinwa RPG- - スサノオ ~日本神話RPG~ - 0100F3001472A000","0100F3001472A000","","","2021-08-22 04:20:18.000" -"Genkai Tokki Moero Crystal H- 極限凸起 萌情水晶 H - 한계돌파 모에로크리스탈 H - 0100D7E0110B2000","0100D7E0110B2000","32-bit;status-playable","playable","2022-06-06 00:42:09.000" -"World's End Club - 01005A2014362000","01005A2014362000","","","2021-08-28 13:20:14.000" -"Axiom Verge 2","","","","2021-09-02 08:01:30.000" -"Slot - 01007DD011608000","01007DD011608000","","","2021-09-04 01:40:29.000" -"Golf - 01007D8010018000","01007D8010018000","","","2021-09-04 01:55:37.000" -"World Soccer - 010083B00B97A000","010083B00B97A000","","","2021-09-04 02:07:29.000" -"DogFight - 0100E80013BB0000","0100E80013BB0000","","","2021-09-04 14:12:30.000" -"Demon Gaze Extra - デモンゲイズ エクストラ - 01005110142A8000","01005110142A8000","","","2021-09-04 15:06:19.000" -"Spy Alarm - 01000E6015350000","01000E6015350000","services;status-ingame","ingame","2022-12-09 10:12:51.000" -"Rainbocorns - 01005EE0142F6000","01005EE0142F6000","","","2021-09-04 15:53:49.000" -"ZOMB - 0100E2B00E064000","0100E2B00E064000","","","2021-09-04 16:07:19.000" -"Bubble - 01004A4011CB4000","01004A4011CB4000","","","2021-09-04 16:16:24.000" -"Guitar - 0100A2D00EFBE000","0100A2D00EFBE000","","","2021-09-04 18:54:14.000" -"Hunt - 01000DE0125B8000","01000DE0125B8000","","","2021-09-06 11:29:19.000" -"Fight - 0100995013404000","0100995013404000","","","2021-09-06 11:31:42.000" -"Table Tennis - 0100CB00125B6000","0100CB00125B6000","","","2021-09-06 11:55:38.000" -"No More Heroes 3 - 01007C600EB42000","01007C600EB42000","gpu;status-ingame;UE4","ingame","2024-03-11 17:06:19.000" -"Idol Days - 愛怒流でいす - 01002EC014BCA000","01002EC014BCA000","gpu;status-ingame;crash","ingame","2021-12-19 15:31:28.000" -"Checkers - 01001B80124E4000","01001B80124E4000","","","2021-09-06 16:07:24.000" -"King's Bounty II","","","","2021-09-07 21:12:57.000" -"KeyWe - 0100E2B012056000","0100E2B012056000","","","2021-09-07 22:30:10.000" -"Sonic Colors Ultimate [010040E0116B8000]","010040E0116B8000","status-playable","playable","2022-11-12 21:24:26.000" -"SpongeBob: Krusty Cook-Off - 01000D3013E8C000","01000D3013E8C000","","","2021-09-08 13:26:06.000" -"Snakes & Ladders - 010052C00ABFA000","010052C00ABFA000","","","2021-09-08 13:45:26.000" -"Darts - 01005A6010A04000","01005A6010A04000","","","2021-09-08 14:18:00.000" -"Luna's Fishing Garden - 0100374015A2C000","0100374015A2C000","","","2021-09-11 11:38:34.000" -"WarioWare: Get It Together! - 0100563010E0C000","0100563010E0C000","gpu;status-ingame;opengl-backend-bug","ingame","2024-04-23 01:04:56.000" -"SINce Memories Off the starry sky - 0100E94014792000","0100E94014792000","","","2021-09-17 02:03:06.000" -"Bang Dream Girls Band Party for Nintendo Switch","","status-playable","playable","2021-09-19 03:06:58.000" -"ENDER LILIES: Quietus of the Knights - 0100CCF012E9A000","0100CCF012E9A000","","","2021-09-19 01:10:44.000" -"Lost in Random - 01005FE01291A000","01005FE01291A000","gpu;status-ingame","ingame","2022-12-18 07:09:28.000" -"Miyamoto Sansuu Kyoushitsu Kashikoku Naru Puzzle Daizen - 宮本算数教室 賢くなるパズル 大全 - 01004ED014160000","01004ED014160000","","","2021-09-30 12:09:06.000" -"Hot Wheels Unleashed","","","","2021-10-01 01:14:17.000" -"Memories Off - 0100978013276000","0100978013276000","","","2021-10-05 18:50:06.000" -"Blue Reflections Second Light [Demo] [JP] - 01002FA01610A000","01002FA01610A000","","","2021-10-08 09:19:34.000" -"Metroid Dread - 010093801237C000","010093801237C000","status-playable","playable","2023-11-13 04:02:36.000" -"Kentucky Route Zero [0100327005C94000]","0100327005C94000","status-playable","playable","2024-04-09 23:22:46.000" -"Cotton/Guardian Saturn Tribute Games","","gpu;status-boots","boots","2022-11-27 21:00:51.000" -"The Great Ace Attorney Chronicles - 010036E00FB20000","010036E00FB20000","status-playable","playable","2023-06-22 21:26:29.000" -"第六妖守-Dairoku-Di Liu Yao Shou -Dairoku -0100ad80135f4000","0100ad80135f4000","","","2021-10-17 04:42:47.000" -"Touhou Genso Wanderer -Lotus Labyrinth R- - 0100a7a015e4c000","0100a7a015e4c000","","","2021-10-17 20:10:40.000" -"Crysis 2 Remastered - 0100582010AE0000","0100582010AE0000","deadlock;status-menus","menus","2023-09-21 10:46:17.000" -"Crysis 3 Remastered - 0100CD3010AE2000 ","0100CD3010AE2000","deadlock;status-menus","menus","2023-09-10 16:03:50.000" -"Dying Light: Platinum Edition - 01008c8012920000","01008c8012920000","services-horizon;status-boots","boots","2024-03-11 10:43:32.000" -"Steel Assault - 01001C6014772000","01001C6014772000","status-playable","playable","2022-12-06 14:48:30.000" -"Foreclosed - 0100AE001256E000","0100AE001256E000","status-ingame;crash;Needs More Attention;nvdec","ingame","2022-12-06 14:41:12.000" -"Nintendo 64 - Nintendo Switch Online - 0100C9A00ECE6000","0100C9A00ECE6000","gpu;status-ingame;vulkan","ingame","2024-04-23 20:21:07.000" -"Mario Party Superstars - 01006FE013472000","01006FE013472000","gpu;status-ingame;ldn-works;mac-bug","ingame","2024-05-16 11:23:34.000" -"Wheel of Fortune [010033600ADE6000]","010033600ADE6000","status-boots;crash;Needs More Attention;nvdec","boots","2023-11-12 20:29:24.000" -"Abarenbo Tengu & Zombie Nation - 010040E012A5A000","010040E012A5A000","","","2021-10-31 18:24:00.000" -"Eight Dragons - 01003AD013BD2000","01003AD013BD2000","status-playable;nvdec","playable","2022-10-27 14:47:28.000" -"Restless Night [0100FF201568E000]","0100FF201568E000","status-nothing;crash","nothing","2022-02-09 10:54:49.000" -"rRootage Reloaded [01005CD015986000]","01005CD015986000","status-playable","playable","2022-08-05 23:20:18.000" -"Just Dance 2022 - 0100EA6014BB8000","0100EA6014BB8000","gpu;services;status-ingame;crash;Needs Update","ingame","2022-10-28 11:01:53.000" -"LEGO Marvel Super Heroes - 01006F600FFC8000","01006F600FFC8000","status-playable","playable","2024-09-10 19:02:19.000" -"Destructivator SE [0100D74012E0A000]","0100D74012E0A000","","","2021-11-06 14:12:07.000" -"Diablo 2 Resurrected - 0100726014352000","0100726014352000","gpu;status-ingame;nvdec","ingame","2023-08-18 18:42:47.000" -"World War Z [010099F013898000]","010099F013898000","","","2021-11-09 12:00:01.000" -"STAR WARS Jedi Knight II Jedi Outcast - 0100BB500EACA000","0100BB500EACA000","gpu;status-ingame","ingame","2022-09-15 22:51:00.000" -"Shin Megami Tensei V - 010063B012DC6000","010063B012DC6000","status-playable;UE4","playable","2024-02-21 06:30:07.000" -"Mercenaries Rebirth Call of the Wild Lynx - [010031e01627e000]","010031e01627e000","","","2021-11-13 17:14:02.000" -"Summer Pockets REFLECTION BLUE - 0100273013ECA000","0100273013ECA000","","","2021-11-15 14:25:26.000" -"Spelunky - 0100710013ABA000","0100710013ABA000","status-playable","playable","2021-11-20 17:45:03.000" -"Spelunky 2 - 01007EC013ABC000","01007EC013ABC000","","","2021-11-17 19:31:16.000" -"MARSUPILAMI-HOOBADVENTURE - 010074F014628000","010074F014628000","","","2021-11-19 07:43:14.000" -"Pokémon Brilliant Diamond - 0100000011D90000","0100000011D90000","gpu;status-ingame;ldn-works","ingame","2024-08-28 13:26:35.000" -"Ice Station Z - 0100954014718000","0100954014718000","status-menus;crash","menus","2021-11-21 20:02:15.000" -"Shiro - 01000244016BAE000","01000244016BAE00","gpu;status-ingame","ingame","2024-01-13 08:54:39.000" -"Yuru Camp △ Have a nice day! - 0100D12014FC2000","0100D12014FC2000","","","2021-11-29 10:46:03.000" -"Iridium - 010095C016C14000","010095C016C14000","status-playable","playable","2022-08-05 23:19:53.000" -"Black The Fall - 0100502007f54000","0100502007f54000","","","2021-12-05 03:08:22.000" -"Loop Hero - 010004E01523C000","010004E01523C000","","","2021-12-12 18:11:42.000" -"The Battle Cats Unite! - 01001E50141BC000","01001E50141BC000","deadlock;status-ingame","ingame","2021-12-14 21:38:34.000" -"Life is Strange: True Colors [0100500012AB4000]","0100500012AB4000","gpu;status-ingame;UE4","ingame","2024-04-08 16:11:52.000" -"Deathsmiles I・II - 01009120119B4000","01009120119B4000","status-playable","playable","2024-04-08 19:29:00.000" -"Deedlit in Wonder Labyrinth - 0100EF0015A9A000","0100EF0015A9A000","deadlock;status-ingame;Needs Update;Incomplete","ingame","2022-01-19 10:00:59.000" -"Hamidashi Creative - 01006FF014152000","01006FF014152000","gpu;status-ingame","ingame","2021-12-19 15:30:51.000" -"Ys IX: Monstrum Nox - 0100E390124D8000","0100E390124D8000","status-playable","playable","2022-06-12 04:14:42.000" -"Animal Crossing New Horizons Island Transfer Tool - 0100F38011CFE000","0100F38011CFE000","services;status-ingame;Needs Update;Incomplete","ingame","2022-12-07 13:51:19.000" -"Pokémon Mystery Dungeon Rescue Team DX (DEMO) - 010040800FB54000","010040800FB54000","","","2022-01-09 02:15:04.000" -"Monopoly Madness - 01005FF013DC2000","01005FF013DC2000","status-playable","playable","2022-01-29 21:13:52.000" -"DoDonPachi Resurrection - 怒首領蜂大復活 - 01005A001489A000","01005A001489A000","status-ingame;32-bit;crash","ingame","2024-01-25 14:37:32.000" -"Shadow Man Remastered - 0100C3A013840000","0100C3A013840000","gpu;status-ingame","ingame","2024-05-20 06:01:39.000" -"Star Wars - Knights Of The Old Republic - 0100854015868000","0100854015868000","gpu;deadlock;status-boots","boots","2024-02-12 10:13:51.000" -"Gunvolt Chronicles: Luminous Avenger iX 2 - 0100763015C2E000","0100763015C2E000","status-nothing;crash;Needs Update","nothing","2022-04-29 15:34:34.000" -"Furaiki 4 - 風雨来記4 - 010046601125A000","010046601125A000","","","2022-01-27 17:37:47.000" -"Pokémon Legends: Arceus - 01001F5010DFA000","01001F5010DFA000","gpu;status-ingame;Needs Update;ldn-works","ingame","2024-09-19 10:02:02.000" -"Demon Gaze EXTRA - 0100FCC0168FC000","0100FCC0168FC000","","","2022-02-05 16:25:26.000" -"Fatal Frame: Maiden of Black Water - 0100BEB015604000","0100BEB015604000","status-playable","playable","2023-07-05 16:01:40.000" -"OlliOlli World - 0100C5D01128E000","0100C5D01128E000","","","2022-02-08 13:01:22.000" -"Horse Club Adventures - 0100A6B012932000","0100A6B012932000","","","2022-02-10 01:59:25.000" -"Toree 3D (0100E9701479E000)","0100E9701479E000","","","2022-02-15 18:41:33.000" -"Picross S7","","status-playable","playable","2022-02-16 12:51:25.000" -"Nintendo Switch Sports Online Play Test - 01000EE017182000","01000EE017182000","gpu;status-ingame","ingame","2022-03-16 07:44:12.000" -"MLB The Show 22 Tech Test - 0100A9F01776A000","0100A9F01776A000","services;status-nothing;crash;Needs Update;demo","nothing","2022-12-09 10:28:34.000" -"Cruis'n Blast - 0100B41013C82000","0100B41013C82000","gpu;status-ingame","ingame","2023-07-30 10:33:47.000" -"Crunchyroll - 0100C090153B4000","0100C090153B4000","","","2022-02-20 13:56:29.000" -"PUZZLE & DRAGONS Nintendo Switch Edition - 01001D701375A000","01001D701375A000","","","2022-02-20 11:01:34.000" -"Hatsune Miku Connecting Puzzle TAMAGOTORI - 0100118016036000","0100118016036000","","","2022-02-23 02:07:05.000" -"Mononoke Slashdown - 0100F3A00FB78000","0100F3A00FB78000","status-menus;crash","menus","2022-05-04 20:55:47.000" -"Tsukihime - A piece of blue glass moon- - 01001DC01486A800","01001DC01486A800","","","2022-02-28 14:35:38.000" -"Kirby and the Forgotten Land (Demo version) - 010091201605A000","010091201605A000","status-playable;demo","playable","2022-08-21 21:03:01.000" -"Super Zangyura - 01001DA016942000","01001DA016942000","","","2022-03-05 04:54:47.000" -"Atelier Sophie 2: The Alchemist of the Mysterious Dream - 010082A01538E000","010082A01538E000","status-ingame;crash","ingame","2022-12-01 04:34:03.000" -"SEGA Genesis - Nintendo Switch Online - 0100B3C014BDA000","0100B3C014BDA000","status-nothing;crash;regression","nothing","2022-04-11 07:27:21.000" -"TRIANGLE STRATEGY - 0100CC80140F8000","0100CC80140F8000","gpu;status-ingame;Needs Update;UE4;vulkan-backend-bug","ingame","2024-09-25 20:48:37.000" -"Pretty Girls Breakers! - 0100DD2017994000","0100DD2017994000","","","2022-03-10 03:43:51.000" -"Chocobo GP - 01006A30124CA000","01006A30124CA000","gpu;status-ingame;crash","ingame","2022-06-04 14:52:18.000" -".hack//G.U. Last Recode - 0100BA9014A02000","0100BA9014A02000","deadlock;status-boots","boots","2022-03-12 19:15:47.000" -"Monster World IV - 01008CF014560000","01008CF014560000","","","2022-03-12 04:25:01.000" -"Cosmos Bit - 01004810171EA000","01004810171EA000","","","2022-03-12 04:25:58.000" -"The Cruel King and the Great Hero - 0100EBA01548E000","0100EBA01548E000","gpu;services;status-ingame","ingame","2022-12-02 07:02:08.000" -"Lateral Freeze ","","","","2022-03-15 16:00:18.000" -"Miss Kobayashi's Dragonmaid Burst Forth!! Choro-gon☆Breath Demo - 0100FA7017CA6000","0100FA7017CA6000","","","2022-03-19 07:26:02.000" -"Neptunia X SENRAN KAGURA Ninja Wars - 01006D90165A2000","01006D90165A2000","","","2022-03-21 06:58:28.000" -"13 Sentinels Aegis Rim Demo - 0100C54015002000","0100C54015002000","status-playable;demo","playable","2022-04-13 14:15:48.000" -"Kirby and the Forgotten Land - 01004D300C5AE000","01004D300C5AE000","gpu;status-ingame","ingame","2024-03-11 17:11:21.000" -"Love of Love Emperor of LOVE! - 010015C017776000","010015C017776000","","","2022-03-25 08:46:23.000" -"Hatsune Miku JIGSAW PUZZLE - 010092E016B26000","010092E016B26000","","","2022-03-25 08:49:39.000" -"The Ryuo's Work is Never Done! - 010033100EE12000","010033100EE12000","status-playable","playable","2022-03-29 00:35:37.000" -"Miss Kobayashi's Dragonmaid Burst Forth!! Choro-gon☆Breath - 01005AB015994000","01005AB015994000","gpu;status-playable","playable","2022-03-28 02:22:24.000" -"MLB® The Show™ 22 - 0100876015D74000","0100876015D74000","gpu;slow;status-ingame","ingame","2023-04-25 06:28:43.000" -"13 Sentinels Aegis Rim - 01003FC01670C000","01003FC01670C000","slow;status-ingame","ingame","2024-06-10 20:33:38.000" -"Metal Dogs ","","","","2022-04-15 14:32:19.000" -"STAR WARS: The Force Unleashed - 0100153014544000","0100153014544000","status-playable","playable","2024-05-01 17:41:28.000" -"JKSV - 00000000000000000","0000000000000000","","","2022-04-21 23:34:59.000" -"Jigsaw Masterpieces - 0100BB800E0D2000","0100BB800E0D2000","","","2022-05-04 21:14:45.000" -"QuickSpot - 0100E4501677E000","0100E4501677E000","","","2022-05-04 21:14:48.000" -"Yomawari 3 - 0100F47016F26000","0100F47016F26000","status-playable","playable","2022-05-10 08:26:51.000" -"Marco & The Galaxy Dragon Demo - 0100DA7017C9E000","0100DA7017C9E000","gpu;status-ingame;demo","ingame","2023-06-03 13:05:33.000" -"Demon Turf: Neon Splash - 010010C017B28000","010010C017B28000","","","2022-05-04 21:35:59.000" -"Taiko Risshiden V DX - 0100346017304000","0100346017304000","status-nothing;crash","nothing","2022-06-06 16:25:31.000" -"The Stanley Parable: Ultra Deluxe - 010029300E5C4000","010029300E5C4000","gpu;status-ingame","ingame","2024-07-12 23:18:26.000" -"CHAOS;HEAD NOAH - 0100957016B90000","0100957016B90000","status-playable","playable","2022-06-02 22:57:19.000" -"LOOPERS - 010062A0178A8000","010062A0178A8000","gpu;slow;status-ingame;crash","ingame","2022-06-17 19:21:45.000" -"二ノ国 白き聖灰の女王 - 010032400E700000","010032400E700000","services;status-menus;32-bit","menus","2023-04-16 17:11:06.000" -"even if TEMPEST - 010095E01581C000","010095E01581C000","gpu;status-ingame","ingame","2023-06-22 23:50:25.000" -"Mario Strikers Battle League Football First Kick [01008A30182F2000]","01008A30182F2000","","","2022-06-09 20:58:06.000" -"Mario Strikers: Battle League Football - 010019401051C000","010019401051C000","status-boots;crash;nvdec","boots","2024-05-07 06:23:56.000" -"鬼滅之刃:火之神血風譚 / Demon Slayer -Kimetsu no Yaiba- The Hinokami Chronicles - 0100309016E7A000","0100309016E7A000","status-playable;UE4","playable","2024-08-08 04:51:49.000" -"Teenage Mutant Ninja Turtles: Shredder's Revenge - 0100FE701475A000","0100FE701475A000","deadlock;status-boots;crash","boots","2024-09-28 09:31:39.000" -"MOFUMOFU Sensen - 0100B46017500000","0100B46017500000","gpu;status-menus","menus","2024-09-21 21:51:08.000" -"OMORI - 010014E017B14000","010014E017B14000","status-playable","playable","2023-01-07 20:21:02.000" -"30 in 1 game collection vol. 2 - 0100DAC013D0A000","0100DAC013D0A000","status-playable;online-broken","playable","2022-10-15 17:22:27.000" -"索尼克:起源 / Sonic Origins - 01009FB016286000","01009FB016286000","status-ingame;crash","ingame","2024-06-02 07:20:15.000" -"Fire Emblem Warriors: Three Hopes - 010071F0143EA000","010071F0143EA000","gpu;status-ingame;nvdec","ingame","2024-05-01 07:07:42.000" -"LEGO Star Wars: The Skywalker Saga - 010042D00D900000","010042D00D900000","gpu;slow;status-ingame","ingame","2024-04-13 20:08:46.000" -"Pocky & Rocky Reshrined - 01000AF015596000","01000AF015596000","","","2022-06-26 21:34:16.000" -"Horgihugh And Friends - 010085301797E000","010085301797E000","","","2022-06-26 21:34:22.000" -"The movie The Quintessential Bride -Five Memories Spent with You- - 01005E9016BDE000","01005E9016BDE000","status-playable","playable","2023-12-14 14:43:43.000" -"nx-hbmenu - 0000000000000000","0000000000000000","status-boots;Needs Update;homebrew","boots","2024-04-06 22:05:32.000" -"Portal 2 - 0100ABD01785C000","0100ABD01785C000","gpu;status-ingame","ingame","2023-02-20 22:44:15.000" -"Portal - 01007BB017812000","01007BB017812000","status-playable","playable","2024-06-12 03:48:29.000" -"EVE ghost enemies - 01007BE0160D6000","01007BE0160D6000","gpu;status-ingame","ingame","2023-01-14 03:13:30.000" -"PowerSlave Exhumed - 01008E100E416000","01008E100E416000","gpu;status-ingame","ingame","2023-07-31 23:19:10.000" -"Quake - 0100BA5012E54000","0100BA5012E54000","gpu;status-menus;crash","menus","2022-08-08 12:40:34.000" -"Rustler - 010071E0145F8000","010071E0145F8000","","","2022-07-06 02:09:18.000" -"Colors Live - 010020500BD86000","010020500BD86000","gpu;services;status-boots;crash","boots","2023-02-26 02:51:07.000" -"WAIFU IMPACT - 0100393016D7E000","0100393016D7E000","","","2022-07-08 22:16:51.000" -"Sherlock Holmes: The Devil's Daughter - 010020F014DBE000","010020F014DBE000","gpu;status-ingame","ingame","2022-07-11 00:07:26.000" -"0100EE40143B6000 - Fire Emblem Warriors: Three Hopes (Japan) ","0100EE40143B6000","","","2022-07-11 18:41:30.000" -"Wunderling - 01001C400482C000","01001C400482C000","audio;status-ingame;crash","ingame","2022-09-10 13:20:12.000" -"SYNTHETIK: Ultimate - 01009BF00E7D2000","01009BF00E7D2000","gpu;status-ingame;crash","ingame","2022-08-30 03:19:25.000" -"Breakout: Recharged - 010022C016DC8000","010022C016DC8000","slow;status-ingame","ingame","2022-11-06 15:32:57.000" -"Banner Saga Trilogy - 0100CE800B94A000","0100CE800B94A000","slow;status-playable","playable","2024-03-06 11:25:20.000" -"CAPCOM BELT ACTION COLLECTION - 0100F6400A77E000","0100F6400A77E000","status-playable;online;ldn-untested","playable","2022-07-21 20:51:23.000" -"死神と少女/Shinigami to Shoujo - 0100AFA01750C000","0100AFA01750C000","gpu;status-ingame;Incomplete","ingame","2024-03-22 01:06:45.000" -"Darius Cozmic Collection Special Edition - 010059C00BED4000","010059C00BED4000","status-playable","playable","2022-07-22 16:26:50.000" -"Earthworms - 0100DCE00B756000","0100DCE00B756000","status-playable","playable","2022-07-25 16:28:55.000" -"LIVE A LIVE - 0100CF801776C000","0100CF801776C000","status-playable;UE4;amd-vendor-bug","playable","2023-02-05 15:12:07.000" -"Fit Boxing - 0100807008868000 ","0100807008868000","status-playable","playable","2022-07-26 19:24:55.000" -"Gurimugurimoa OnceMore Demo - 01002C8018554000","01002C8018554000","status-playable","playable","2022-07-29 22:07:31.000" -"Trinity Trigger Demo - 010048201891A000","010048201891A000","","","2022-07-26 23:32:10.000" -"SD GUNDAM BATTLE ALLIANCE Demo - 0100829018568000","0100829018568000","audio;status-ingame;crash;demo","ingame","2022-08-01 23:01:20.000" -"Fortnite - 010025400AECE000","010025400AECE000","services-horizon;status-nothing","nothing","2024-04-06 18:23:25.000" -"Furi Definitive Edition - 01000EC00AF98000","01000EC00AF98000","status-playable","playable","2022-07-27 12:35:08.000" -"Jackbox Party Starter - 0100814017CB6000","0100814017CB6000","Incomplete","","2022-07-29 22:18:07.000" -"Digimon Survive - 010047500B7B2000","010047500B7B2000","","","2022-07-29 12:33:28.000" -"Xenoblade Chronicles 3 - 010074F013262000","010074F013262000","gpu;status-ingame;crash;nvdec;vulkan-backend-bug;amd-vendor-bug","ingame","2024-08-06 19:56:44.000" -"Slime Rancher: Plortable Edition - 0100B9C0148D0000","0100B9C0148D0000","","","2022-07-30 06:02:55.000" -"Lost Ruins - 01008AD013A86800","01008AD013A86800","gpu;status-ingame","ingame","2023-02-19 14:09:00.000" -"Heroes of Hammerwatch - 0100D2B00BC54000","0100D2B00BC54000","status-playable","playable","2022-08-01 18:30:21.000" -"Zombie Army 4: Dead War - ","","","","2022-08-01 20:03:53.000" -"Plague Inc: Evolved - 01000CE00CBB8000","01000CE00CBB8000","","","2022-08-02 02:32:33.000" -"Kona - 0100464009294000","0100464009294000","status-playable","playable","2022-08-03 12:48:19.000" -"Minecraft: Story Mode - The Complete Adventure - 010059C002AC2000","010059C002AC2000","status-boots;crash;online-broken","boots","2022-08-04 18:56:58.000" -"LA-MULANA - 010026000F662800","010026000F662800","gpu;status-ingame","ingame","2022-08-12 01:06:21.000" -"Minecraft: Story Mode - Season Two - 01003EF007ABA000","01003EF007ABA000","status-playable;online-broken","playable","2023-03-04 00:30:50.000" -"My Riding Stables - Life with Horses - 010028F00ABAE000","010028F00ABAE000","status-playable","playable","2022-08-05 21:39:07.000" -"NBA Playgrounds - 010002900294A000","010002900294A000","status-playable;nvdec;online-broken;UE4","playable","2022-08-06 17:06:59.000" -"Nintendo Labo Toy-Con 02: Robot Kit - 01009AB0034E0000","01009AB0034E0000","gpu;status-ingame","ingame","2022-08-07 13:03:19.000" -"Nintendo Labo Toy-Con 04: VR Kit - 0100165003504000","0100165003504000","services;status-boots;crash","boots","2023-01-17 22:30:24.000" -"Azure Striker GUNVOLT 3 - 01004E90149AA000","01004E90149AA000","status-playable","playable","2022-08-10 13:46:49.000" -"Clumsy Rush Ultimate Guys - 0100A8A0174A4000","0100A8A0174A4000","","","2022-08-10 02:12:29.000" -"The DioField Chronicle Demo - 01009D901624A000","01009D901624A000","","","2022-08-10 02:18:16.000" -"Professional Construction - The Simulation - 0100A9800A1B6000","0100A9800A1B6000","slow;status-playable","playable","2022-08-10 15:15:45.000" -"Pokémon: Let's Go, Pikachu! demo - 01009AD008C4C000","01009AD008C4C000","slow;status-playable;demo","playable","2023-11-26 11:23:20.000" -"Retail Interactive Display Menu (DevQuestMenu)- 0100069000078000","0100069000078000","services;status-nothing;crash","nothing","2022-08-11 13:19:41.000" -"Retimed - 010086E00BCB2000","010086E00BCB2000","status-playable","playable","2022-08-11 13:32:39.000" -"DRAGON BALL Z: KAKAROT + A NEW POWER AWAKENS SET - 010051C0134F8000","010051C0134F8000","status-playable;vulkan-backend-bug","playable","2024-08-28 00:03:50.000" -"Runbow Deluxe Edition - 0100D37009B8A000","0100D37009B8A000","status-playable;online-broken","playable","2022-08-12 12:20:25.000" -"Saturday Morning RPG - 0100F0000869C000","0100F0000869C000","status-playable;nvdec","playable","2022-08-12 12:41:50.000" -"Slain Back from Hell - 0100BB100AF4C000","0100BB100AF4C000","status-playable","playable","2022-08-12 23:36:19.000" -"Spidersaurs - 010040B017830000","010040B017830000","","","2022-08-14 03:12:30.000" -"月姫 -A piece of blue glass moon- - 01001DC01486A000","01001DC01486A000","","","2022-08-15 15:41:29.000" -"Spacecats with Lasers - 0100D9B0041CE000","0100D9B0041CE000","status-playable","playable","2022-08-15 17:22:44.000" -"Spellspire - 0100E74007EAC000","0100E74007EAC000","status-playable","playable","2022-08-16 11:21:21.000" -"Spot The Difference - 0100E04009BD4000","0100E04009BD4000","status-playable","playable","2022-08-16 11:49:52.000" -"Spot the Differences: Party! - 010052100D1B4000","010052100D1B4000","status-playable","playable","2022-08-16 11:55:26.000" -"Demon Throttle - 01001DA015650000","01001DA015650000","","","2022-08-17 00:54:49.000" -"Kirby’s Dream Buffet - 0100A8E016236000","0100A8E016236000","status-ingame;crash;online-broken;Needs Update;ldn-works","ingame","2024-03-03 17:04:44.000" -"DOTORI - 0100DBD013C92000","0100DBD013C92000","","","2022-08-17 15:10:52.000" -"Syberia 2 - 010028C003FD6000","010028C003FD6000","gpu;status-ingame","ingame","2022-08-24 12:43:03.000" -"Drive Buy - 010093A0108DC000","010093A0108DC000","","","2022-08-21 03:30:18.000" -"Taiko no Tatsujin Rhythm Festival Demo - 0100AA2018846000","0100AA2018846000","","","2022-08-22 23:31:57.000" -"Splatoon 3: Splatfest World Premiere - 0100BA0018500000","0100BA0018500000","gpu;status-ingame;online-broken;demo","ingame","2022-09-19 03:17:12.000" -"Transcripted - 010009F004E66000","010009F004E66000","status-playable","playable","2022-08-25 12:13:11.000" -"eBaseball Powerful Pro Yakyuu 2022 - 0100BCA016636000","0100BCA016636000","gpu;services-horizon;status-nothing;crash","nothing","2024-05-26 23:07:19.000" -"Firegirl: Hack 'n Splash Rescue DX - 0100DAF016D48000","0100DAF016D48000","","","2022-08-30 15:32:22.000" -"Little Noah: Scion of Paradise - 0100535014D76000","0100535014D76000","status-playable;opengl-backend-bug","playable","2022-09-14 04:17:13.000" -"Tinykin - 0100A73016576000","0100A73016576000","gpu;status-ingame","ingame","2023-06-18 12:12:24.000" -"Youtubers Life - 00100A7700CCAA4000","00100A7700CCAA40","status-playable;nvdec","playable","2022-09-03 14:56:19.000" -"Cozy Grove - 01003370136EA000","01003370136EA000","gpu;status-ingame","ingame","2023-07-30 22:22:19.000" -"A Duel Hand Disaster: Trackher - 010026B006802000","010026B006802000","status-playable;nvdec;online-working","playable","2022-09-04 14:24:55.000" -"Angry Bunnies: Colossal Carrot Crusade - 0100F3500D05E000","0100F3500D05E000","status-playable;online-broken","playable","2022-09-04 14:53:26.000" -"CONTRA: ROGUE CORPS Demo - 0100B8200ECA6000","0100B8200ECA6000","gpu;status-ingame","ingame","2022-09-04 16:46:52.000" -"The Gardener and the Wild Vines - 01006350148DA000","01006350148DA000","gpu;status-ingame","ingame","2024-04-29 16:32:10.000" -"HAAK - 0100822012D76000","0100822012D76000","gpu;status-ingame","ingame","2023-02-19 14:31:05.000" -"Temtem - 0100C8B012DEA000","0100C8B012DEA000","status-menus;online-broken","menus","2022-12-17 17:36:11.000" -"Oniken - 010057C00D374000","010057C00D374000","status-playable","playable","2022-09-10 14:22:38.000" -"Ori and the Blind Forest: Definitive Edition Demo - 010005800F46E000","010005800F46E000","status-playable","playable","2022-09-10 14:40:12.000" -"Spyro Reignited Trilogy - 010077B00E046000","010077B00E046000","status-playable;nvdec;UE4","playable","2022-09-11 18:38:33.000" -"Disgaea 4 Complete+ Demo - 010068C00F324000","010068C00F324000","status-playable;nvdec","playable","2022-09-13 15:21:59.000" -"Disney Classic Games: Aladdin and The Lion King - 0100A2F00EEFC000 ","0100A2F00EEFC000","status-playable;online-broken","playable","2022-09-13 15:44:17.000" -"Pokémon Shield - 01008DB008C2C000","01008DB008C2C000","deadlock;status-ingame;crash;online-broken;ldn-works;LAN","ingame","2024-08-12 07:20:22.000" -"Shadowrun Returns - 0100371013B3E000","0100371013B3E000","gpu;status-ingame;Needs Update","ingame","2022-10-04 21:32:31.000" -"Shadowrun: Dragonfall - Director's Cut - 01008310154C4000","01008310154C4000","gpu;status-ingame;Needs Update","ingame","2022-10-04 20:52:18.000" -"Shadowrun: Hong Kong - Extended Edition - 0100C610154CA000","0100C610154CA000","gpu;status-ingame;Needs Update","ingame","2022-10-04 20:53:09.000" -"Animal Drifters - 010057F0195DE000","010057F0195DE000","","","2022-09-20 21:43:54.000" -"Paddles - 0100F5E019300000","0100F5E019300000","","","2022-09-20 21:46:00.000" -"River City Girls Zero - 0100E2D015DEA000","0100E2D015DEA000","","","2022-09-20 22:18:30.000" -"JoJos Bizarre Adventure All-Star Battle R - 01008120128C2000","01008120128C2000","status-playable","playable","2022-12-03 10:45:10.000" -"OneShot: World Machine EE","","","","2022-09-22 08:11:47.000" -"Taiko no Tatsujin: Rhythm Festival - 0100BCA0135A0000","0100BCA0135A0000","status-playable","playable","2023-11-13 13:16:34.000" -"Trinity Trigger - 01002D7010A54000","01002D7010A54000","status-ingame;crash","ingame","2023-03-03 03:09:09.000" -"太鼓之達人 咚咚雷音祭 - 01002460135a4000","01002460135a4000","","","2022-09-27 07:17:54.000" -"Life is Strange Remastered - 0100DC301186A000","0100DC301186A000","status-playable;UE4","playable","2022-10-03 16:54:44.000" -"Life is Strange: Before the Storm Remastered - 010008501186E000","010008501186E000","status-playable","playable","2023-09-28 17:15:44.000" -"Hatsune Miku: Project DIVA Mega Mix - 01001CC00FA1A000","01001CC00FA1A000","audio;status-playable;online-broken","playable","2024-01-07 23:12:57.000" -"Shovel Knight Dig - 0100B62017E68000","0100B62017E68000","","","2022-09-30 20:51:35.000" -"Couch Co-Op Bundle Vol. 2 - 01000E301107A000","01000E301107A000","status-playable;nvdec","playable","2022-10-02 12:04:21.000" -"Shadowverse: Champion’s Battle - 01003B90136DA000","01003B90136DA000","status-nothing;crash","nothing","2023-03-06 00:31:50.000" -"Jinrui no Ninasama he - 0100F4D00D8BE000","0100F4D00D8BE000","status-ingame;crash","ingame","2023-03-07 02:04:17.000" -"XEL - 0100CC9015360000","0100CC9015360000","gpu;status-ingame","ingame","2022-10-03 10:19:39.000" -"Catmaze - 01000A1018DF4000","01000A1018DF4000","","","2022-10-03 11:10:48.000" -"Lost Lands: Dark Overlord - 0100BDD010AC8000 ","0100BDD010AC8000","status-playable","playable","2022-10-03 11:52:58.000" -"STAR WARS Episode I: Racer - 0100BD100FFBE000 ","0100BD100FFBE000","slow;status-playable;nvdec","playable","2022-10-03 16:08:36.000" -"Story of Seasons: Friends of Mineral Town - 0100ED400EEC2000","0100ED400EEC2000","status-playable","playable","2022-10-03 16:40:31.000" -"Collar X Malice -Unlimited- - 0100E3B00F412000 ","0100E3B00F412000","status-playable;nvdec","playable","2022-10-04 15:30:40.000" -"Bullet Soul - 0100DA4017FC2000","0100DA4017FC2000","","","2022-10-05 09:41:49.000" -"Kwaidan ~Azuma manor story~ - 0100894011F62000 ","0100894011F62000","status-playable","playable","2022-10-05 12:50:44.000" -"Shantae: Risky's Revenge - Director's Cut - 0100ADA012370000","0100ADA012370000","status-playable","playable","2022-10-06 20:47:39.000" -"NieR:Automata The End of YoRHa Edition - 0100B8E016F76000","0100B8E016F76000","slow;status-ingame;crash","ingame","2024-05-17 01:06:34.000" -"Star Seeker: The secret of the sourcerous Standoff - 0100DFC018D86000","0100DFC018D86000","","","2022-10-09 15:46:05.000" -"Hyrule Warriors: Age of Calamity - Demo Version - 0100A2C01320E000","0100A2C01320E000","slow;status-playable","playable","2022-10-10 17:37:41.000" -"My Universe - Fashion Boutique - 0100F71011A0A000","0100F71011A0A000","status-playable;nvdec","playable","2022-10-12 14:54:19.000" -"Star Trek Prodigy: Supernova - 01009DF015776000","01009DF015776000","status-playable;nvdec;UE4;opengl-backend-bug","playable","2022-10-14 10:18:50.000" -"Dungeon Nightmares 1 + 2 Collection - 0100926013600000","0100926013600000","status-playable","playable","2022-10-17 18:54:22.000" -"Food Truck Tycoon - 0100F3900D0F0000 ","0100F3900D0F0000","status-playable","playable","2022-10-17 20:15:55.000" -"Persona 5 Royal - 01005CA01580EOO","","","","2022-10-17 21:00:21.000" -"Nintendo Switch Sports - 0100D2F00D5C0000","0100D2F00D5C0000","deadlock;status-boots","boots","2024-09-10 14:20:24.000" -"Grim Legends 2: Song Of The Dark Swan - 010078E012D80000","010078E012D80000","status-playable;nvdec","playable","2022-10-18 12:58:45.000" -"My Universe - Cooking Star Restaurant - 0100CD5011A02000","0100CD5011A02000","status-playable","playable","2022-10-19 10:00:44.000" -"Not Tonight - 0100DAF00D0E2000 ","0100DAF00D0E2000","status-playable;nvdec","playable","2022-10-19 11:48:47.000" -"Outbreak: The New Nightmare - 0100B450130FC000","0100B450130FC000","status-playable","playable","2022-10-19 15:42:07.000" -"Alan Wake Remaster - 01000623017A58000","01000623017A5800","","","2022-10-21 06:13:39.000" -"Persona 5 Royal - 01005CA01580E000","01005CA01580E000","gpu;status-ingame","ingame","2024-08-17 21:45:15.000" -"Shing! (サムライフォース:斬!) - 01009050133B4000","01009050133B4000","status-playable;nvdec","playable","2022-10-22 00:48:54.000" -"Mario + Rabbids® Sparks of Hope - 0100317013770000","0100317013770000","gpu;status-ingame;Needs Update","ingame","2024-06-20 19:56:19.000" -"3D Arcade Fishing - 010010C013F2A000","010010C013F2A000","status-playable","playable","2022-10-25 21:50:51.000" -"Aerial Knight's Never Yield - 0100E9B013D4A000","0100E9B013D4A000","status-playable","playable","2022-10-25 22:05:00.000" -"Aluna: Sentinel of the Shards - 010045201487C000","010045201487C000","status-playable;nvdec","playable","2022-10-25 22:17:03.000" -"Atelier Firis: The Alchemist and the Mysterious Journey DX - 010023201421E000","010023201421E000","gpu;status-ingame;nvdec","ingame","2022-10-25 22:46:19.000" -"Atelier Sophie: The Alchemist of the Mysterious Book DX - 01001A5014220000","01001A5014220000","status-playable","playable","2022-10-25 23:06:20.000" -"Backworlds - 0100FEA014316000","0100FEA014316000","status-playable","playable","2022-10-25 23:20:34.000" -"Bakumatsu Renka SHINSENGUMI - 01008260138C4000","01008260138C4000","status-playable","playable","2022-10-25 23:37:31.000" -"Bamerang - 01008D30128E0000","01008D30128E0000","status-playable","playable","2022-10-26 00:29:39.000" -"Battle Axe - 0100747011890000","0100747011890000","status-playable","playable","2022-10-26 00:38:01.000" -"Beautiful Desolation - 01006B0014590000","01006B0014590000","gpu;status-ingame;nvdec","ingame","2022-10-26 10:34:38.000" -"Bladed Fury - 0100DF0011A6A000","0100DF0011A6A000","status-playable","playable","2022-10-26 11:36:26.000" -"Boris The Rocket - 010092C013FB8000","010092C013FB8000","status-playable","playable","2022-10-26 13:23:09.000" -"BraveMatch - 010081501371E000","010081501371E000","status-playable;UE4","playable","2022-10-26 13:32:15.000" -"Brawl Chess - 010068F00F444000","010068F00F444000","status-playable;nvdec","playable","2022-10-26 13:59:17.000" -"CLANNAD Side Stories - 01007B01372C000","","status-playable","playable","2022-10-26 15:03:04.000" -"DC Super Hero Girls™: Teen Power - 0100F8F00C4F2000","0100F8F00C4F2000","nvdec","","2022-10-26 15:16:47.000" -"Devil Slayer - Raksasi - 01003C900EFF6000","01003C900EFF6000","status-playable","playable","2022-10-26 19:42:32.000" -"Disagaea 6: Defiance of Destiny Demo - 0100918014B02000","0100918014B02000","status-playable;demo","playable","2022-10-26 20:02:04.000" -"DreamWorks Spirit Lucky's Big Adventure - 0100236011B4C000","0100236011B4C000","status-playable","playable","2022-10-27 13:30:52.000" -"Dull Grey - 010068D0141F2000","010068D0141F2000","status-playable","playable","2022-10-27 13:40:38.000" -"Dunk Lords - 0100EC30140B6000","0100EC30140B6000","status-playable","playable","2024-06-26 00:07:26.000" -"Earth Defense Force: World Brothers - 0100298014030000","0100298014030000","status-playable;UE4","playable","2022-10-27 14:13:31.000" -"EQI - 01000FA0149B6000","01000FA0149B6000","status-playable;nvdec;UE4","playable","2022-10-27 16:42:32.000" -"Exodemon - 0100A82013976000","0100A82013976000","status-playable","playable","2022-10-27 20:17:52.000" -"Famicom Detective Club: The Girl Who Stands Behind - 0100D670126F6000","0100D670126F6000","status-playable;nvdec","playable","2022-10-27 20:41:40.000" -"Famicom Detective Club: The Missing Heir - 010033F0126F4000","010033F0126F4000","status-playable;nvdec","playable","2022-10-27 20:56:23.000" -"Fighting EX Layer Another Dash - 0100D02014048000","0100D02014048000","status-playable;online-broken;UE4","playable","2024-04-07 10:22:33.000" -"Fire: Ungh's Quest - 010025C014798000","010025C014798000","status-playable;nvdec","playable","2022-10-27 21:41:26.000" -"Haunted Dawn: The Zombie Apocalypse - 01009E6014F18000","01009E6014F18000","status-playable","playable","2022-10-28 12:31:51.000" -"Yomawari: The Long Night Collection - 010043D00BA3200","","Incomplete","","2022-10-29 10:23:17.000" -"Splatoon 3 - 0100C2500FC20000","0100C2500FC20000","status-playable;ldn-works;opengl-backend-bug;LAN;amd-vendor-bug","playable","2024-08-04 23:49:11.000" -"Bayonetta 3 - 01004A4010FEA000","01004A4010FEA000","gpu;status-ingame;crash;nvdec;vulkan-backend-bug;opengl-backend-bug;amd-vendor-bug;ASTC","ingame","2024-09-28 14:34:33.000" -"Instant Sports Tennis - 010031B0145B8000","010031B0145B8000","status-playable","playable","2022-10-28 16:42:17.000" -"Just Die Already - 0100AC600CF0A000","0100AC600CF0A000","status-playable;UE4","playable","2022-12-13 13:37:50.000" -"King of Seas Demo - 0100515014A94000","0100515014A94000","status-playable;nvdec;UE4","playable","2022-10-28 18:09:31.000" -"King of Seas - 01008D80148C8000","01008D80148C8000","status-playable;nvdec;UE4","playable","2022-10-28 18:29:41.000" -"Layers of Fear 2 - 01001730144DA000","01001730144DA000","status-playable;nvdec;UE4","playable","2022-10-28 18:49:52.000" -"Leisure Suit Larry - Wet Dreams Dry Twice - 010031A0135CA000","010031A0135CA000","status-playable","playable","2022-10-28 19:00:57.000" -"Life of Fly 2 - 010069A01506E000","010069A01506E000","slow;status-playable","playable","2022-10-28 19:26:52.000" -"Maneater - 010093D00CB22000","010093D00CB22000","status-playable;nvdec;UE4","playable","2024-05-21 16:11:57.000" -"Mighty Goose - 0100AD701344C000","0100AD701344C000","status-playable;nvdec","playable","2022-10-28 20:25:38.000" -"Missing Features 2D - 0100E3601495C000","0100E3601495C000","status-playable","playable","2022-10-28 20:52:54.000" -"Moorkuhn Kart 2 - 010045C00F274000","010045C00F274000","status-playable;online-broken","playable","2022-10-28 21:10:35.000" -"NINJA GAIDEN 3: Razor's Edge - 01002AF014F4C000","01002AF014F4C000","status-playable;nvdec","playable","2023-08-11 08:25:31.000" -"Nongunz: Doppelganger Edition - 0100542012884000","0100542012884000","status-playable","playable","2022-10-29 12:00:39.000" -"O---O - 01002E6014FC4000","01002E6014FC4000","status-playable","playable","2022-10-29 12:12:14.000" -"Off And On Again - 01006F5013202000","01006F5013202000","status-playable","playable","2022-10-29 19:46:26.000" -"Outbreak: Endless Nightmares - 0100A0D013464000","0100A0D013464000","status-playable","playable","2022-10-29 12:35:49.000" -"Picross S6 - 010025901432A000","010025901432A000","status-playable","playable","2022-10-29 17:52:19.000" -"Alfred Hitchcock - Vertigo - 0100DC7013F14000","0100DC7013F14000","","","2022-10-30 07:55:43.000" -"Port Royale 4 - 01007EF013CA0000","01007EF013CA0000","status-menus;crash;nvdec","menus","2022-10-30 14:34:06.000" -"Quantum Replica - 010045101288A000","010045101288A000","status-playable;nvdec;UE4","playable","2022-10-30 21:17:22.000" -"R-TYPE FINAL 2 - 0100F930136B6000","0100F930136B6000","slow;status-ingame;nvdec;UE4","ingame","2022-10-30 21:46:29.000" -"Retrograde Arena - 01000ED014A2C000","01000ED014A2C000","status-playable;online-broken","playable","2022-10-31 13:38:58.000" -"Rising Hell - 010020C012F48000","010020C012F48000","status-playable","playable","2022-10-31 13:54:02.000" -"Grand Theft Auto III - The Definitive Edition [0100C3C012718000]","0100C3C012718000","","","2022-10-31 20:13:51.000" -"Grand Theft Auto: San Andreas - The Definitive Edition [010065A014024000]","010065A014024000","","","2022-10-31 20:13:56.000" -"Hell Pie - 01000938017E5C000","01000938017E5C00","status-playable;nvdec;UE4","playable","2022-11-03 16:48:46.000" -"Zengeon - 0100057011E50000","0100057011E50000","services-horizon;status-boots;crash","boots","2024-04-29 15:43:07.000" -"Teenage Mutant Ninja Turtles: The Cowabunga Collection - 0100FDB0154E4000","0100FDB0154E4000","status-playable","playable","2024-01-22 19:39:04.000" -"Rolling Sky 2 - 0100579011B40000 ","0100579011B40000","status-playable","playable","2022-11-03 10:21:12.000" -"RWBY: Grimm Eclipse - 0100E21013908000","0100E21013908000","status-playable;online-broken","playable","2022-11-03 10:44:01.000" -"Shin Megami Tensei III Nocturne HD Remaster - 01003B0012DC2000","01003B0012DC2000","status-playable","playable","2022-11-03 22:53:27.000" -"BALDO THE GUARDIAN OWLS - 0100a75005e92000","0100a75005e92000","","","2022-11-04 06:36:18.000" -"Skate City - 0100134011E32000","0100134011E32000","status-playable","playable","2022-11-04 11:37:39.000" -"SnowRunner - 0100FBD13AB6000","","services;status-boots;crash","boots","2023-10-07 00:01:16.000" -"Spooky Chase - 010097C01336A000","010097C01336A000","status-playable","playable","2022-11-04 12:17:44.000" -"Strange Field Football - 01000A6013F86000","01000A6013F86000","status-playable","playable","2022-11-04 12:25:57.000" -"Subnautica Below Zero - 010014C011146000","010014C011146000","status-playable","playable","2022-12-23 14:15:13.000" -"Subnautica - 0100429011144000","0100429011144000","status-playable;vulkan-backend-bug","playable","2022-11-04 13:07:29.000" -"Pyramid Quest - 0100A4E017372000","0100A4E017372000","gpu;status-ingame","ingame","2023-08-16 21:14:52.000" -"Sonic Frontiers - 01004AD014BF0000","01004AD014BF0000","gpu;deadlock;status-ingame;amd-vendor-bug;intel-vendor-bug","ingame","2024-09-05 09:18:53.000" -"Metro 2033 Redux - 0100D4900E82C000","0100D4900E82C000","gpu;status-ingame","ingame","2022-11-09 10:53:13.000" -"Tactics Ogre Reborn - 0100E12013C1A000","0100E12013C1A000","status-playable;vulkan-backend-bug","playable","2024-04-09 06:21:35.000" -"Good Night, Knight - 01003AD0123A2000","01003AD0123A2000","status-nothing;crash","nothing","2023-07-30 23:38:13.000" -"Sumire - 01003D50126A4000","01003D50126A4000","status-playable","playable","2022-11-12 13:40:43.000" -"Sunblaze - 0100BFE014476000","0100BFE014476000","status-playable","playable","2022-11-12 13:59:23.000" -"Taiwan Monster Fruit : Prologue - 010028E013E0A000","010028E013E0A000","Incomplete","","2022-11-12 14:10:20.000" -"Tested on Humans: Escape Room - 01006F701507A000","01006F701507A000","status-playable","playable","2022-11-12 14:42:52.000" -"The Longing - 0100F3D0122C2000","0100F3D0122C2000","gpu;status-ingame","ingame","2022-11-12 15:00:58.000" -"Total Arcade Racing - 0100A64010D48000","0100A64010D48000","status-playable","playable","2022-11-12 15:12:48.000" -"Very Very Valet - 0100379013A62000","0100379013A62000","status-playable;nvdec","playable","2022-11-12 15:25:51.000" -"Persona 4 Arena ULTIMAX [010075A016A3A000)","010075A016A3A000","","","2022-11-12 17:27:51.000" -"Piofiore: Episodio 1926 - 01002B20174EE000","01002B20174EE000","status-playable","playable","2022-11-23 18:36:05.000" -"Seven Pirates H - 0100D6F016676000","0100D6F016676000","status-playable","playable","2024-06-03 14:54:12.000" -"Paradigm Paradox - 0100DC70174E0000","0100DC70174E0000","status-playable;vulkan-backend-bug","playable","2022-12-03 22:28:13.000" -"Wanna Survive - 0100D67013910000","0100D67013910000","status-playable","playable","2022-11-12 21:15:43.000" -"Wardogs: Red's Return - 010056901285A000","010056901285A000","status-playable","playable","2022-11-13 15:29:01.000" -"Warhammer Age of Sigmar: Storm Ground - 010031201307A000","010031201307A000","status-playable;nvdec;online-broken;UE4","playable","2022-11-13 15:46:14.000" -"Wing of Darkness - 010035B012F2000","","status-playable;UE4","playable","2022-11-13 16:03:51.000" -"Ninja Gaiden Sigma - 0100E2F014F46000","0100E2F014F46000","status-playable;nvdec","playable","2022-11-13 16:27:02.000" -"Ninja Gaiden Sigma 2 - 0100696014FA000","","status-playable;nvdec","playable","2024-07-31 21:53:48.000" -"MONSTER HUNTER STORIES 2: WINGS OF RUIN Trial Version - 010042501329E000","010042501329E000","status-playable;demo","playable","2022-11-13 22:20:26.000" -"112 Operator - 0100D82015774000","0100D82015774000","status-playable;nvdec","playable","2022-11-13 22:42:50.000" -"Aery - Calm Mind - 0100A801539000","","status-playable","playable","2022-11-14 14:26:58.000" -"Alex Kidd in Miracle World DX - 010025D01221A000","010025D01221A000","status-playable","playable","2022-11-14 15:01:34.000" -"Atari 50 The Anniversary Celebration - 010099801870E000","010099801870E000","slow;status-playable","playable","2022-11-14 19:42:10.000" -"FOOTBALL MANAGER 2023 TOUCH - 0100EDC01990E000","0100EDC01990E000","gpu;status-ingame","ingame","2023-08-01 03:40:53.000" -"ARIA CHRONICLE - 0100691013C46000","0100691013C46000","status-playable","playable","2022-11-16 13:50:55.000" -"B.ARK - 01009B901145C000","01009B901145C000","status-playable;nvdec","playable","2022-11-17 13:35:02.000" -"Pokémon Violet - 01008F6008C5E000","01008F6008C5E000","gpu;status-ingame;nvdec;ldn-works;amd-vendor-bug;mac-bug","ingame","2024-07-30 02:51:48.000" -"Pokémon Scarlet - 0100A3D008C5C000","0100A3D008C5C000","gpu;status-ingame;nvdec;ldn-works;amd-vendor-bug","ingame","2023-12-14 13:18:29.000" -"Bear's Restaurant - 0100CE014A4E000","","status-playable","playable","2024-08-11 21:26:59.000" -"BeeFense BeeMastered - 010018F007786000","010018F007786000","status-playable","playable","2022-11-17 15:38:12.000" -"Oddworld: Soulstorm - 0100D210177C6000","0100D210177C6000","services-horizon;status-boots;crash","boots","2024-08-18 13:13:26.000" -"Aquarium Hololive All CG","","","","2022-11-19 05:12:23.000" -"Billion Road - 010057700FF7C000","010057700FF7C000","status-playable","playable","2022-11-19 15:57:43.000" -"No Man’s Sky - 0100853015E86000","0100853015E86000","gpu;status-ingame","ingame","2024-07-25 05:18:17.000" -"Lunistice - 0100C2E01254C000","0100C2E01254C000","","","2022-11-23 18:44:18.000" -"The Oregon Trail - 0100B080184BC000","0100B080184BC000","gpu;status-ingame","ingame","2022-11-25 16:11:49.000" -"Smurfs Kart - 01009790186FE000","01009790186FE000","status-playable","playable","2023-10-18 00:55:00.000" -"DYSMANTLE - 010008900BC5A000","010008900BC5A000","gpu;status-ingame","ingame","2024-07-15 16:24:12.000" -"Happy Animals Mini Golf - 010066C018E50000","010066C018E50000","gpu;status-ingame","ingame","2022-12-04 19:24:28.000" -"Pocket Pool - 010019F019168000","010019F019168000","","","2022-11-27 03:36:39.000" -"7 Days of Rose - 01002D3019654000","01002D3019654000","","","2022-11-27 20:46:16.000" -"Garfield Lasagna Party - 01003C401895E000","01003C401895E000","","","2022-11-27 21:21:09.000" -"Paper Bad - 01002A0019914000","01002A0019914000","","","2022-11-27 22:01:45.000" -"Ultra Kaiju Monster Rancher - 01008E0019388000","01008E0019388000","","","2022-11-28 02:37:06.000" -"The Legend of Heroes: Trails from Zero - 01001920156C2000","01001920156C2000","gpu;status-ingame;mac-bug","ingame","2024-09-14 21:41:41.000" -"Harvestella - 0100A280187BC000","0100A280187BC000","status-playable;UE4;vulkan-backend-bug;mac-bug","playable","2024-02-13 07:04:11.000" -"Ace Angler: Fishing Spirits - 01007C50132C8000","01007C50132C8000","status-menus;crash","menus","2023-03-03 03:21:39.000" -"WHITE DAY : A labyrinth named school - 010076601839C000","010076601839C000","","","2022-12-03 07:17:03.000" -"Bravery and Greed - 0100F60017D4E000","0100F60017D4E000","gpu;deadlock;status-boots","boots","2022-12-04 02:23:47.000" -"River City Girls 2 - 01002E80168F4000","01002E80168F4000","status-playable","playable","2022-12-07 00:46:27.000" -"SAMURAI MAIDEN - 01003CE018AF6000","01003CE018AF6000","","","2022-12-05 02:56:48.000" -"Front Mission 1st Remake - 0100F200178F4000","0100F200178F4000","status-playable","playable","2023-06-09 07:44:24.000" -"Cardfight!! Vanguard Dear Days - 0100097016B04000","0100097016B04000","","","2022-12-06 00:37:12.000" -"MOL SOCCER ONLINE Lite - 010034501756C000","010034501756C000","","","2022-12-06 00:41:58.000" -"Goonya Monster - 010026301785A000","010026301785A000","","","2022-12-06 00:46:24.000" -"Battle Spirits Connected Battlers - 01009120155CC000","01009120155CC000","","","2022-12-07 00:21:33.000" -"TABE-O-JA - 0100E330127FC000","0100E330127FC000","","","2022-12-07 00:26:47.000" -"Solomon Program - 01008A801370C000","01008A801370C000","","","2022-12-07 00:33:02.000" -"Dragon Quest Treasures - 0100217014266000","0100217014266000","gpu;status-ingame;UE4","ingame","2023-05-09 11:16:52.000" -"Sword of the Necromancer - 0100E4701355C000","0100E4701355C000","status-ingame;crash","ingame","2022-12-10 01:28:39.000" -"Dragon Prana - 01001C5019074000","01001C5019074000","","","2022-12-10 02:10:53.000" -"Burger Patrol - 010013D018E8A000","010013D018E8A000","","","2022-12-10 02:12:02.000" -"Witch On The Holy Night - 010012A017F18800","010012A017F18800","status-playable","playable","2023-03-06 23:28:11.000" -"Hakoniwa Ranch Sheep Village - 010059C017346000 ","010059C017346000","","","2022-12-13 03:04:03.000" -"KASIORI - 0100E75014D7A000","0100E75014D7A000","","","2022-12-13 03:05:00.000" -"CRISIS CORE –FINAL FANTASY VII– REUNION - 01004BC0166CC000","01004BC0166CC000","status-playable","playable","2022-12-19 15:53:59.000" -"Bitmaster - 010026E0141C8000","010026E0141C8000","status-playable","playable","2022-12-13 14:05:51.000" -"Black Book - 0100DD1014AB8000","0100DD1014AB8000","status-playable;nvdec","playable","2022-12-13 16:38:53.000" -"Carnivores: Dinosaur Hunt","","status-playable","playable","2022-12-14 18:46:06.000" -"Trivial Pursuit Live! 2 - 0100868013FFC000","0100868013FFC000","status-boots","boots","2022-12-19 00:04:33.000" -"Astrologaster - 0100B80010C48000","0100B80010C48000","cpu;status-nothing;32-bit;crash","nothing","2023-06-28 15:39:31.000" -"Factorio - 01004200189F4000","01004200189F4000","deadlock;status-boots","boots","2024-06-11 19:26:16.000" -"The Punchuin - 01004F501962C000","01004F501962C000","","","2022-12-28 00:51:46.000" -"Adventure Academia The Fractured Continent - 01006E6018570000","01006E6018570000","","","2022-12-29 03:35:04.000" -"Illusion Garden Story ~Daiichi Sangyo Yuukarin~ - 01003FE0168EA000","01003FE0168EA000","","","2022-12-29 03:39:06.000" -"Popplings - 010063D019A70000","010063D019A70000","","","2022-12-29 03:42:21.000" -"Sports Story - 010025B0100D0000","010025B0100D0000","","","2022-12-29 03:45:54.000" -"Death Bite Shibito Magire - 01002EB01802A000","01002EB01802A000","","","2022-12-29 03:51:54.000" -"Yu-Gi-Oh! Rush Duel: Dawn of the Battle Royale!! Let's Go! Go Rush!! - 01002D60188DE000","01002D60188DE000","status-ingame;crash","ingame","2023-03-17 01:54:01.000" -"Asphalt 9 Legends - 01007B000C834800","01007B000C834800","","","2022-12-30 05:19:35.000" -"Arcade Archives TETRIS THE GRAND MASTER - 0100DFD016B7A000","0100DFD016B7A000","status-playable","playable","2024-06-23 01:50:29.000" -"Funny action Great adventure for good adults - 0100BB1018082000","0100BB1018082000","","","2023-01-01 03:13:21.000" -"Fairy Fencer F Refrain Chord - 010048C01774E000","010048C01774E000","","","2023-01-01 03:15:45.000" -"Needy Streamer Overload","","","","2023-01-01 23:24:14.000" -"Absolute Hero Remodeling Plan - 0100D7D015CC2000","0100D7D015CC2000","","","2023-01-02 03:42:59.000" -"Fourth God -Reunion- - 0100BF50131E6000","0100BF50131E6000","","","2023-01-02 03:45:28.000" -"Doll Princess of Marl Kingdom - 010078E0181D0000","010078E0181D0000","","","2023-01-02 03:49:45.000" -"Oshiritantei Pupupu Mirai no Meitantei Tojo! - 01000F7014504000","01000F7014504000","","","2023-01-02 03:51:59.000" -"Moshikashite Obake no Shatekiya for Nintendo Switch - 0100B580144F6000","0100B580144F6000","","","2023-01-02 03:55:10.000" -"Platinum Train-A trip through Japan - 0100B9400654E000","0100B9400654E000","","","2023-01-02 03:58:00.000" -"Deadly Eating Adventure Meshi - 01007B70146F6000","01007B70146F6000","","","2023-01-02 04:00:31.000" -"Gurimugurimoa OnceMore - 01003F5017760000","01003F5017760000","","","2023-01-02 04:03:49.000" -"Neko-Tomo - 0100FA00082BE000","0100FA00082BE000","","","2023-01-03 04:43:05.000" -"Wreckfest - 0100DC0012E48000","0100DC0012E48000","status-playable","playable","2023-02-12 16:13:00.000" -"VARIOUS DAYLIFE - 0100538017BAC000","0100538017BAC000","","","2023-01-03 13:41:46.000" -"WORTH LIFE - 0100D46014648000","0100D46014648000","","","2023-01-04 02:58:27.000" -"void* tRrLM2(); //Void Terrarium 2 - 010078D0175EE000","010078D0175EE000","status-playable","playable","2023-12-21 11:00:41.000" -"Witch's Garden - 010061501904E000","010061501904E000","gpu;status-ingame;crash;vulkan-backend-bug;opengl-backend-bug","ingame","2023-01-11 02:11:24.000" -"PUI PUI MOLCAR Let’s! MOLCAR PARTY! - 01004F6015612000","01004F6015612000","","","2023-01-05 23:05:00.000" -"Galleria Underground Labyrinth and the Witch’s Brigade - 01007010157B4000","01007010157B4000","","","2023-01-07 01:05:40.000" -"Simona's Requiem - 0100E8C019B36000","0100E8C019B36000","gpu;status-ingame","ingame","2023-02-21 18:29:19.000" -"Sonic Frontiers: Demo - 0100D0201A062000","0100D0201A062000","","","2023-01-07 14:50:19.000" -"Alphadia Neo - 010043101944A000","010043101944A000","","","2023-01-09 01:47:53.000" -"It’s Kunio-kun’s Three Kingdoms! - 0100056014DE0000","0100056014DE0000","","","2023-01-09 01:50:08.000" -"Neon White - 0100B9201406A000","0100B9201406A000","status-ingame;crash","ingame","2023-02-02 22:25:06.000" -"Typing Quest - 0100B7101475E000","0100B7101475E000","","","2023-01-10 03:23:00.000" -"Moorhuhn Jump and Run Traps and Treasures - 0100E3D014ABC000","0100E3D014ABC000","status-playable","playable","2024-03-08 15:10:02.000" -"Bandit Detective Buzzard - 01005DB0180B4000","01005DB0180B4000","","","2023-01-10 03:27:34.000" -"Curved Space - 0100CE5014026000","0100CE5014026000","status-playable","playable","2023-01-14 22:03:50.000" -"Destroy All Humans! - 01009E701356A000","01009E701356A000","gpu;status-ingame;nvdec;UE4","ingame","2023-01-14 22:23:53.000" -"Dininho Space Adventure - 010027E0158A6000","010027E0158A6000","status-playable","playable","2023-01-14 22:43:04.000" -"Vengeful Guardian: Moonrider - 01003A8018E60000","01003A8018E60000","deadlock;status-boots","boots","2024-03-17 23:35:37.000" -"Sumikko Gurashi Atsumare! Sumikko Town - 0100508013B26000","0100508013B26000","","","2023-01-16 04:42:55.000" -"Lone Ruin - 0100B6D016EE6000","0100B6D016EE6000","status-ingame;crash;nvdec","ingame","2023-01-17 06:41:19.000" -"Falcon Age - 0100C3F011B58000","0100C3F011B58000","","","2023-01-17 02:43:00.000" -"Persona 4 Golden - 010062B01525C000","010062B01525C000","status-playable","playable","2024-08-07 17:48:07.000" -"Persona 3 Portable - 0100DCD01525A000","0100DCD01525A000","","","2023-01-19 20:20:27.000" -"Fire Emblem: Engage - 0100A6301214E000","0100A6301214E000","status-playable;amd-vendor-bug;mac-bug","playable","2024-09-01 23:37:26.000" -"Sifu - 01007B5017A12000","01007B5017A12000","","","2023-01-20 19:58:54.000" -"Silver Nornir - 0100D1E018F26000","0100D1E018F26000","","","2023-01-21 04:25:06.000" -"Together - 010041C013C94000","010041C013C94000","","","2023-01-21 04:26:20.000" -"Party Party Time - 0100C6A019C84000","0100C6A019C84000","","","2023-01-21 04:27:40.000" -"Sumikko Gurashi Gakkou Seikatsu Hajimerun desu - 010070800D3E2000","010070800D3E2000","","","2023-01-22 02:47:34.000" -"Sumikko Gurashi Sugoroku every time in the corner - 0100713012BEC000","0100713012BEC000","","","2023-01-22 02:49:00.000" -"EA SPORTS FIFA 23 Nintendo Switch™ Legacy Edition - 01001C8016B4E000","01001C8016B4E000","gpu;status-ingame;crash","ingame","2024-06-10 23:33:05.000" -"Gesshizu Mori no Chiisana Nakama-tachi - 0100A0D011014000","0100A0D011014000","","","2023-01-23 03:56:43.000" -"Chickip Dancers Norinori Dance de Kokoro mo Odoru - 0100D85017B26000","0100D85017B26000","","","2023-01-23 03:56:47.000" -"Go Rally - 010055A0161F4000","010055A0161F4000","gpu;status-ingame","ingame","2023-08-16 21:18:23.000" -"Devil Kingdom - 01002F000E8F2000","01002F000E8F2000","status-playable","playable","2023-01-31 08:58:44.000" -"Cricket 22 - 0100387017100000","0100387017100000","status-boots;crash","boots","2023-10-18 08:01:57.000" -"サマータイムレンダ Another Horizon - 01005940182ec000","01005940182ec000","","","2023-01-28 02:15:25.000" -"Letters - a written adventure - 0100CE301678E800","0100CE301678E800","gpu;status-ingame","ingame","2023-02-21 20:12:38.000" -"Prinny Presents NIS Classics Volume 1 - 0100A6E01681C000","0100A6E01681C000","status-boots;crash;Needs Update","boots","2023-02-02 07:23:09.000" -"SpongeBob SquarePants The Cosmic Shake - 01009FB0172F4000","01009FB0172F4000","gpu;status-ingame;UE4","ingame","2023-08-01 19:29:53.000" -"THEATRHYTHM FINAL BAR LINE DEMO Version - 01004C5018BC4000","01004C5018BC4000","","","2023-02-01 16:59:55.000" -"Blue Reflection: Second Light [USA, Europe] - 010071C013390000","010071C013390000","","","2023-02-02 02:44:04.000" -"牧場物語 Welcome!ワンダフルライフ - 0100936018EB4000","0100936018EB4000","status-ingame;crash","ingame","2023-04-25 19:43:52.000" -"Coromon - 010048D014322000","010048D014322000","","","2023-02-03 00:47:51.000" -"Exitman Deluxe - 0100648016520000","0100648016520000","","","2023-02-04 02:02:03.000" -"Life is Strange 2 - 0100FD101186C000","0100FD101186C000","status-playable;UE4","playable","2024-07-04 05:05:58.000" -"Fashion Police Squad","","Incomplete","","2023-02-05 12:36:50.000" -"Grindstone - 0100538012496000","0100538012496000","status-playable","playable","2023-02-08 15:54:06.000" -"Kemono Friends Picross - 01004B100BDA2000","01004B100BDA2000","status-playable","playable","2023-02-08 15:54:34.000" -"Picross Lord Of The Nazarick - 010012100E8DC000","010012100E8DC000","status-playable","playable","2023-02-08 15:54:56.000" -"Shovel Knight Pocket Dungeon - 01006B00126EC000","01006B00126EC000","","","2023-02-08 20:12:10.000" -"Game Boy - Nintendo Switch Online - 0100C62011050000","0100C62011050000","status-playable","playable","2023-03-21 12:43:48.000" -"ゲームボーイ Nintendo Switch Online - 0100395011044000","0100395011044000","","","2023-02-08 23:53:21.000" -"Game Boy Advance - Nintendo Switch Online - 010012F017576000","010012F017576000","status-playable","playable","2023-02-16 20:38:15.000" -"Kirby’s Return to Dream Land Deluxe - Demo - 010091D01A57E000","010091D01A57E000","status-playable;demo","playable","2023-02-18 17:21:55.000" -"Metroid Prime Remastered - 010012101468C000","010012101468C000","gpu;status-ingame;Needs Update;vulkan-backend-bug;opengl-backend-bug","ingame","2024-05-07 22:48:15.000" -"WBSC eBASEBALL: POWER PROS - 01007D9019626000","01007D9019626000","","","2023-02-09 02:56:56.000" -"Tricky Towers - 010015F005C8E000","010015F005C8E000","","","2023-02-09 14:58:15.000" -"Clunky Hero - [0100879019212000]","0100879019212000","","","2023-02-10 07:41:34.000" -"Mercenaries Lament Requiem of the Silver Wolf - 0100E44019E4C000","0100E44019E4C000","","","2023-02-11 04:36:39.000" -"Pixel Cup Soccer Ultimate Edition - 0100E17019782000","0100E17019782000","","","2023-02-11 14:28:11.000" -"Sea of Stars Demo - 010036F0182C4000","010036F0182C4000","status-playable;demo","playable","2023-02-12 15:33:56.000" -"MistWorld the after - 010003801579A000","010003801579A000","","","2023-02-13 03:40:17.000" -"MistWorld the after 2 - 0100C50016CD6000","0100C50016CD6000","","","2023-02-13 03:40:23.000" -"Wonder Boy Anniversary Collection - 0100B49016FF0000","0100B49016FF0000","deadlock;status-nothing","nothing","2023-04-20 16:01:48.000" -"OddBallers - 010079A015976000","010079A015976000","","","2023-02-13 03:40:35.000" -"Game Doraemon Nobita’s Space War 2021 - 01000200128A4000","01000200128A4000","","","2023-02-14 02:52:57.000" -"Doraemon Nobita’s Brain Exercise Adventure - 0100E6F018D10000","0100E6F018D10000","","","2023-02-14 02:54:51.000" -"Makai Senki Disgaea 7 - 0100A78017BD6000","0100A78017BD6000","status-playable","playable","2023-10-05 00:22:18.000" -"Blanc - 010039501405E000","010039501405E000","gpu;slow;status-ingame","ingame","2023-02-22 14:00:13.000" -"Arcade Machine Gopher’s Revenge - 0100DCB019CAE000","0100DCB019CAE000","","","2023-02-15 21:48:46.000" -"Santa Claus Goblins Attack - 0100A0901A3E4000","0100A0901A3E4000","","","2023-02-15 21:48:50.000" -"Garden of Pets - 010075A01A312000","010075A01A312000","","","2023-02-15 21:48:52.000" -"THEATRHYTHM FINAL BAR LINE - 010024201834A000","010024201834A000","status-playable","playable","2023-02-19 19:58:57.000" -"Rob Riches - 010061501A2B6000","010061501A2B6000","","","2023-02-16 04:44:01.000" -"Cuddly Forest Friends - 01005980198D4000","01005980198D4000","","","2023-02-16 04:44:04.000" -"Dragon Quest X Awakening Five Races Offline - 0100E2E0152E4000","0100E2E0152E4000","status-playable;nvdec;UE4","playable","2024-08-20 10:04:24.000" -"Persona 5 Strikers Bonus Content - (01002F101340C000)","01002F101340C000","","","2023-02-16 20:29:01.000" -"Let’s play duema! - 0100EFC0152E0000","0100EFC0152E0000","","","2023-02-18 03:09:55.000" -"Let’s play duema Duel Masters! 2022 - 010006C017354000","010006C017354000","","","2023-02-18 03:09:58.000" -"Heterogeneous Strongest King Encyclopedia Battle Coliseum - 0100BD00198AA000","0100BD00198AA000","","","2023-02-18 03:10:01.000" -"Hopping Girl Kohane EX - 0100D2B018F5C000","0100D2B018F5C000","","","2023-02-19 00:57:25.000" -"Earth Defense Force 2 for Nintendo Switch - 010082B013C8C000","010082B013C8C000","","","2023-02-19 01:13:14.000" -"Earth Defense Force 3 for Nintendo Switch - 0100E87013C98000","0100E87013C98000","","","2023-02-19 01:13:21.000" -"PAC-MAN WORLD Re-PAC - 0100D4401565E000","0100D4401565E000","","","2023-02-19 18:49:11.000" -"Eastward - 010071B00F63A000","010071B00F63A000","","","2023-02-19 19:50:36.000" -"Arcade Archives THE NEWZEALAND STORY - 010045D019FF0000","010045D019FF0000","","","2023-02-20 01:59:58.000" -"Foxy’s Coin Hunt - 0100EE401A378000","0100EE401A378000","","","2023-02-20 02:00:00.000" -"Samurai Warrior - 0100B6501A360000","0100B6501A360000","status-playable","playable","2023-02-27 18:42:38.000" -"NCL USA Bowl - 010004801A450000","010004801A450000","","","2023-02-20 02:00:05.000" -"Dadish - 0100B8B013310000","0100B8B013310000","","","2023-02-20 23:19:02.000" -"Dadish 2 - 0100BB70140BA000","0100BB70140BA000","","","2023-02-20 23:28:43.000" -"Dadish 3 - 01001010181AA000","01001010181AA000","","","2023-02-20 23:38:55.000" -"Digimon World: Next Order - 0100F00014254000","0100F00014254000","status-playable","playable","2023-05-09 20:41:06.000" -"PAW Patrol The Movie: Adventure City Calls - 0100FFE013628000","0100FFE013628000","","","2023-02-22 14:09:11.000" -"PAW Patrol: Grand Prix - 0100360016800000","0100360016800000","gpu;status-ingame","ingame","2024-05-03 16:16:11.000" -"Gigantosaurus Dino Kart - 01001890167FE000","01001890167FE000","","","2023-02-23 03:15:01.000" -"Rise Of Fox Hero - 0100A27018ED0000","0100A27018ED0000","","","2023-02-23 03:15:04.000" -"MEGALAN 11 - 0100C7501360C000","0100C7501360C000","","","2023-02-23 03:15:06.000" -"Rooftop Renegade - 0100644012F0C000","0100644012F0C000","","","2023-02-23 03:15:10.000" -"Kirby’s Return to Dream Land Deluxe - 01006B601380E000","01006B601380E000","status-playable","playable","2024-05-16 19:58:04.000" -"Snow Bros. Special - 0100bfa01787c000","0100bfa01787c000","","","2023-02-24 02:25:54.000" -"Toree 2 - 0100C7301658C000","0100C7301658C000","","","2023-02-24 03:15:04.000" -"Red Hands - 2 Player Games - 01003B2019424000","01003B2019424000","","","2023-02-24 03:53:12.000" -"nPaint - 0100917019FD6000","0100917019FD6000","","","2023-02-24 03:53:18.000" -"Octopath Traveler II - 0100A3501946E000","0100A3501946E000","gpu;status-ingame;amd-vendor-bug","ingame","2024-09-22 11:39:20.000" -"Planet Cube Edge - 01007EA019CFC000","01007EA019CFC000","status-playable","playable","2023-03-22 17:10:12.000" -"Rumble Sus - 0100CE201946A000","0100CE201946A000","","","2023-02-25 02:19:01.000" -"Easy Come Easy Golf - 0100ECF01800C000","0100ECF01800C000","status-playable;online-broken;regression","playable","2024-04-04 16:15:00.000" -"Piano Learn and Play - 010038501A6B8000","010038501A6B8000","","","2023-02-26 02:57:12.000" -"nOS new Operating System - 01008AE019614000","01008AE019614000","status-playable","playable","2023-03-22 16:49:08.000" -"XanChuchamel - 0100D970191B8000","0100D970191B8000","","","2023-02-26 02:57:19.000" -"Rune Factory 3 Special - 01001EF017BE6000","01001EF017BE6000","","","2023-03-02 05:34:40.000" -"Light Fingers - 0100A0E005E42000","0100A0E005E42000","","","2023-03-03 03:04:09.000" -"Disaster Detective Saiga An Indescribable Mystery - 01005BF01A3EC000","01005BF01A3EC000","","","2023-03-04 00:34:26.000" -"Touhou Gouyoku Ibun ~ Sunken Fossil World. - 0100031018CFE000","0100031018CFE000","","","2023-03-04 00:34:29.000" -"Ninja Box - 0100272009E32000","0100272009E32000","","","2023-03-06 00:31:44.000" -"Rubber Bandits - 010060801843A000","010060801843A000","","","2023-03-07 22:26:57.000" -"Arcade Archives DON DOKO DON - 0100B6201A2AA000","0100B6201A2AA000","","","2023-03-14 00:13:52.000" -"Knights and Guns - 010060A011ECC000","010060A011ECC000","","","2023-03-14 00:13:54.000" -"Process of Elimination Demo - 01007F6019E2A000","01007F6019E2A000","","","2023-03-14 00:13:57.000" -"DREDGE [ CHAPTER ONE ] - 01000AB0191DA000","01000AB0191DA000","","","2023-03-14 01:49:12.000" -"Bayonetta Origins Cereza and the Lost Demon Demo - 010002801A3FA000","010002801A3FA000","gpu;status-ingame;demo","ingame","2024-02-17 06:06:28.000" -"Yo-Kai Watch 4++ - 010086C00AF7C000","010086C00AF7C000","status-playable","playable","2024-06-18 20:21:44.000" -"Tama Cannon - 0100D8601A848000","0100D8601A848000","","","2023-03-15 01:08:05.000" -"The Smile Alchemist - 0100D1C01944E000","0100D1C01944E000","","","2023-03-15 01:08:08.000" -"Caverns of Mars Recharged - 01009B201A10E000","01009B201A10E000","","","2023-03-15 01:08:12.000" -"Roniu's Tale - 010007E0193A2000","010007E0193A2000","","","2023-03-15 01:08:18.000" -"Mythology Waifus Mahjong - 0100C7101A5BE000","0100C7101A5BE000","","","2023-03-15 01:08:23.000" -"emoji Kart Racer - 0100AC601A26A000","0100AC601A26A000","","","2023-03-17 01:53:50.000" -"Self gunsbase - 01006BB015486000","01006BB015486000","","","2023-03-17 01:53:53.000" -"Melon Journey - 0100F68019636000","0100F68019636000","status-playable","playable","2023-04-23 21:20:01.000" -"Bayonetta Origins: Cereza and the Lost Demon - 0100CF5010FEC000","0100CF5010FEC000","gpu;status-ingame","ingame","2024-02-27 01:39:49.000" -"Uta no prince-sama All star After Secret - 01008030149FE000","01008030149FE000","","","2023-03-18 16:08:20.000" -"Hampuzz - 0100D85016326000","0100D85016326000","","","2023-03-19 00:39:40.000" -"Gotta Protectors Cart of Darkness - 01007570160E2000","01007570160E2000","","","2023-03-19 00:39:43.000" -"Game Type DX - 0100433017DAC000","0100433017DAC000","","","2023-03-20 00:29:23.000" -"Ray'z Arcade Chronology - 010088D018302000","010088D018302000","","","2023-03-20 00:29:26.000" -"Ruku's HeartBalloon - 01004570192D8000","01004570192D8000","","","2023-03-20 00:29:30.000" -"Megaton Musashi - 01001AD00E41E000","01001AD00E41E000","","","2023-03-21 01:11:33.000" -"Megaton Musashi X - 0100571018A70000","0100571018A70000","","","2023-03-21 01:11:39.000" -"In the Mood - 0100281017990000","0100281017990000","","","2023-03-22 00:53:54.000" -"Sixtar Gate STARTRAIL - 0100D29019BE4000","0100D29019BE4000","","","2023-03-22 00:53:57.000" -"Spelunker HD Deluxe - 010095701381A000","010095701381A000","","","2023-03-22 00:54:02.000" -"Pizza Tycoon - 0100A6301788E000","0100A6301788E000","","","2023-03-23 02:00:04.000" -"Cubic - 010081F00EAB8000","010081F00EAB8000","","","2023-03-23 02:00:12.000" -"Sherlock Purr - 010019F01AD78000","010019F01AD78000","","","2023-03-24 02:21:34.000" -"Blocky Farm - 0100E21016A68000","0100E21016A68000","","","2023-03-24 02:21:40.000" -"SD Shin Kamen Rider Ranbu [ SD シン・仮面ライダー 乱舞 ] - 0100CD40192AC000","0100CD40192AC000","","","2023-03-24 23:07:40.000" -"Peppa Pig: World Adventures - 0100FF1018E00000","0100FF1018E00000","Incomplete","","2023-03-25 07:46:56.000" -"Remnant: From the Ashes - 010010F01418E000","010010F01418E000","","","2023-03-26 20:30:16.000" -"Titanium Hound - 010010B0195EE000","010010B0195EE000","","","2023-03-26 19:06:35.000" -"MLB® The Show™ 23 - 0100913019170000","0100913019170000","gpu;status-ingame","ingame","2024-07-26 00:56:50.000" -"Grim Guardians Demon Purge - 0100B5301A180000","0100B5301A180000","","","2023-03-29 02:03:41.000" -"Blade Assault - 0100EA1018A2E000","0100EA1018A2E000","audio;status-nothing","nothing","2024-04-29 14:32:50.000" -"Bubble Puzzler - 0100FB201A21E000","0100FB201A21E000","","","2023-04-03 01:55:12.000" -"Tricky Thief - 0100F490198B8000","0100F490198B8000","","","2023-04-03 01:56:44.000" -"Scramballed - 0100106016602000","0100106016602000","","","2023-04-03 01:58:08.000" -"SWORD ART ONLINE Alicization Lycoris - 0100C6C01225A000","0100C6C01225A000","","","2023-04-03 02:03:00.000" -"Alice Gear Aegis CS Concerto of Simulatrix - 0100EEA0184C6000","0100EEA0184C6000","","","2023-04-05 01:40:02.000" -"Curse of the Sea Rats - 0100B970138FA000","0100B970138FA000","","","2023-04-08 15:56:01.000" -"THEATRHYTHM FINAL BAR LINE - 010081B01777C000","010081B01777C000","status-ingame;Incomplete","ingame","2024-08-05 14:24:55.000" -"Assault Suits Valken DECLASSIFIED - 0100FBC019042000","0100FBC019042000","","","2023-04-11 01:05:19.000" -"Xiaomei and the Flame Dragons Fist - 010072601922C000","010072601922C000","","","2023-04-11 01:06:46.000" -"Loop - 0100C88019092000","0100C88019092000","","","2023-04-11 01:08:03.000" -"Volley Pals - 01003A301A29E000","01003A301A29E000","","","2023-04-12 01:37:14.000" -"Catgotchi Virtual Pet - 0100CCF01A884000","0100CCF01A884000","","","2023-04-12 01:37:24.000" -"Pizza Tower - 05000FD261232000","05000FD261232000","status-ingame;crash","ingame","2024-09-16 00:21:56.000" -"Megaman Battle Network Legacy Collection Vol 1 - 010038E016264000","010038E016264000","status-playable","playable","2023-04-25 03:55:57.000" -"Process of Elimination - 01005CC018A32000","01005CC018A32000","","","2023-04-17 00:46:22.000" -"Detective Boys and the Strange Karakuri Mansion on the Hill [ 少年探偵団と丘の上の奇妙なカラクリ屋敷 ] - 0100F0801A5E8000","0100F0801A5E8000","","","2023-04-17 00:49:26.000" -"Dokapon Kingdom Connect [ ドカポンキングダムコネクト ] - 0100AC4018552000","0100AC4018552000","","","2023-04-17 00:53:37.000" -"Pixel Game Maker Series Tentacled Terrors Tyrannize Terra - 010040A01AABE000","010040A01AABE000","","","2023-04-18 02:29:14.000" -"Ultra Pixel Survive - 0100472019812000","0100472019812000","","","2023-04-18 02:29:20.000" -"PIANOFORTE - 0100D6D016F06000","0100D6D016F06000","","","2023-04-18 02:29:25.000" -"NASCAR Rivals - 0100545016D5E000","0100545016D5E000","status-ingame;crash;Incomplete","ingame","2023-04-21 01:17:47.000" -"Minecraft Legends - 01007C6012CC8000","01007C6012CC8000","gpu;status-ingame;crash","ingame","2024-03-04 00:32:24.000" -"Touhou Fan-made Virtual Autography - 0100196016944000","0100196016944000","","","2023-04-21 03:59:47.000" -"FINAL FANTASY I - 01000EA014150000","01000EA014150000","status-nothing;crash","nothing","2024-09-05 20:55:30.000" -"FINAL FANTASY II - 01006B7014156000","01006B7014156000","status-nothing;crash","nothing","2024-04-13 19:18:04.000" -"FINAL FANTASY III - 01002E2014158000","01002E2014158000","","","2023-04-21 11:50:01.000" -"FINAL FANTASY V - 0100AA201415C000","0100AA201415C000","status-playable","playable","2023-04-26 01:11:55.000" -"FINAL FANTASY VI - 0100AA001415E000","0100AA001415E000","","","2023-04-21 13:08:30.000" -"Advance Wars 1+2: Re-Boot Camp - 0100300012F2A000","0100300012F2A000","status-playable","playable","2024-01-30 18:19:44.000" -"Five Nights At Freddy’s Security Breach - 01009060193C4000","01009060193C4000","gpu;status-ingame;crash;mac-bug","ingame","2023-04-23 22:33:28.000" -"BUCCANYAR - 0100942019418000","0100942019418000","","","2023-04-23 00:59:51.000" -"BraveDungeon - The Meaning of Justice - 010068A00DAFC000","010068A00DAFC000","","","2023-04-23 13:34:05.000" -"Gemini - 010045300BE9A000","010045300BE9A000","","","2023-04-24 01:31:41.000" -"LOST EPIC - 010098F019A64000","010098F019A64000","","","2023-04-24 01:31:46.000" -"AKIBA'S TRIP2 Director's Cut - 0100FBD01884C000","0100FBD01884C000","","","2023-04-24 01:31:48.000" -"Afterimage - 010095E01A12A000","010095E01A12A000","","","2023-04-27 21:39:08.000" -"Fortress S - 010053C017D40000","010053C017D40000","","","2023-04-28 01:57:34.000" -"The Mageseeker: A League of Legends Story™ 0100375019B2E000","0100375019B2E000","","","2023-04-29 14:01:15.000" -"Cult of the Lamb - 01002E7016C46000","01002E7016C46000","","","2023-04-29 06:22:56.000" -"Disney SpeedStorm - 0100F0401435E000","0100F0401435E000","services;status-boots","boots","2023-11-27 02:15:32.000" -"The Outbound Ghost - 01000BC01801A000","01000BC01801A000","status-nothing","nothing","2024-03-02 17:10:58.000" -"Blaze Union Story to Reach the Future Remaster [ ブレイズ・ユニオン ] - 01003B001A81E000","01003B001A81E000","","","2023-05-02 02:03:16.000" -"Sakura Neko Calculator - 010029701AAD2000","010029701AAD2000","","","2023-05-02 06:16:04.000" -"Bramble The Mountain King - 0100E87017D0E000","0100E87017D0E000","services-horizon;status-playable","playable","2024-03-06 09:32:17.000" -"The Legend of Zelda: Tears of the Kingdom - 0100F2C0115B6000","0100F2C0115B6000","gpu;status-ingame;amd-vendor-bug;intel-vendor-bug;mac-bug","ingame","2024-08-24 12:38:30.000" -"Magical Drop VI - 0100B4D01A3A4000","0100B4D01A3A4000","","","2023-05-13 02:27:38.000" -"Yahari ge-mu demo ore no seishun rabukome hamachigatteiru. kan [ やはりゲームでも俺の青春ラブコメはまちがっている。完 ] - 010066801A138000","010066801A138000","","","2023-05-13 02:27:49.000" -"Mega Man Battle Network Legacy Collection Vol. 2 - 0100734016266000","0100734016266000","status-playable","playable","2023-08-03 18:04:32.000" -"Numolition - 010043C019088000","010043C019088000","","","2023-05-17 02:29:23.000" -"Vibitter for Nintendo Switch [ ビビッター ] - 0100D2A01855C000","0100D2A01855C000","","","2023-05-17 02:29:31.000" -"LEGO 2K Drive - 0100739018020000","0100739018020000","gpu;status-ingame;ldn-works","ingame","2024-04-09 02:05:12.000" -"Ys Memoire : The Oath in Felghana [ イース・メモワール -フェルガナの誓い- ] - 010070D01A192000","010070D01A192000","","","2023-05-22 01:12:30.000" -"Love on Leave - 0100E3701A870000","0100E3701A870000","","","2023-05-22 01:37:22.000" -"Puzzle Bobble Everybubble! - 010079E01A1E0000","010079E01A1E0000","audio;status-playable;ldn-works","playable","2023-06-10 03:53:40.000" -"Chasm: The Rift - 010034301A556000","010034301A556000","gpu;status-ingame","ingame","2024-04-29 19:02:48.000" -"Speed Crew Demo - 01005C001B696000","01005C001B696000","","","2023-06-04 00:18:22.000" -"Dr Fetus Mean Meat Machine Demo - 01001DA01B7C4000","01001DA01B7C4000","","","2023-06-04 00:18:30.000" -"Bubble Monsters - 0100FF801B87C000","0100FF801B87C000","","","2023-06-05 02:15:43.000" -"Puzzle Bobble / Bust-a-Move ( 16-Bit Console Version ) - 0100AFF019F3C000","0100AFF019F3C000","","","2023-06-05 02:15:53.000" -"Just Dance 2023 - 0100BEE017FC0000","0100BEE017FC0000","status-nothing","nothing","2023-06-05 16:44:54.000" -"We Love Katamari REROLL+ Royal Reverie - 010089D018D18000","010089D018D18000","","","2023-06-07 07:33:49.000" -"Loop8: Summer of Gods - 0100051018E4C000","0100051018E4C000","","","2023-06-10 17:09:56.000" -"Hatsune Miku - The Planet Of Wonder And Fragments Of Wishes - 010030301ABC2000","010030301ABC2000","","","2023-06-12 02:15:31.000" -"Speed Crew - 0100C1201A558000","0100C1201A558000","","","2023-06-12 02:15:35.000" -"Nocturnal - 01009C2019510000","01009C2019510000","","","2023-06-12 16:24:50.000" -"Harmony: The Fall of Reverie - 0100A65017D68000","0100A65017D68000","","","2023-06-13 22:37:51.000" -"Cave of Past Sorrows - 0100336019D36000","0100336019D36000","","","2023-06-18 01:42:19.000" -"BIRDIE WING -Golf Girls Story- - 01005B2017D92000","01005B2017D92000","","","2023-06-18 01:42:25.000" -"Dogotchi Virtual Pet - 0100BBD01A886000","0100BBD01A886000","","","2023-06-18 01:42:31.000" -"010036F018AC8000","010036F018AC8000","","","2023-06-18 13:11:56.000" -"Pikmin 1 - 0100AA80194B0000","0100AA80194B0000","audio;status-ingame","ingame","2024-05-28 18:56:11.000" -"Pikmin 2 - 0100D680194B2000","0100D680194B2000","gpu;status-ingame","ingame","2023-07-31 08:53:41.000" -"Ghost Trick Phantom Detective Demo - 010026C0184D4000","010026C0184D4000","","","2023-06-23 01:29:44.000" -"Dr Fetus' Mean Meat Machine - 01006C301B7C2000","01006C301B7C2000","","","2023-06-23 01:29:52.000" -"FIFA 22 Legacy Edition - 0100216014472000","0100216014472000","gpu;status-ingame","ingame","2024-03-02 14:13:48.000" -"Pretty Princess Magical Garden Island - 01001CA019DA2000","01001CA019DA2000","","","2023-06-26 02:43:04.000" -"Pool Together - 01009DB01BA16000","01009DB01BA16000","","","2023-06-26 02:43:13.000" -"Kizuna AI - Touch the Beat! - 0100BF2019B98000","0100BF2019B98000","","","2023-06-26 02:43:18.000" -"Convenience Stories - 0100DF801A092000","0100DF801A092000","","","2023-06-26 10:58:37.000" -"Pikmin 4 Demo - 0100E0B019974000","0100E0B019974000","gpu;status-ingame;nvdec;UE4;demo;amd-vendor-bug","ingame","2023-09-22 21:41:08.000" -"超探偵事件簿 レインコード (Master Detective Archives: Rain Code) - 0100F4401940A000","0100F4401940A000","status-ingame;crash","ingame","2024-02-12 20:58:31.000" -"Everybody 1-2-Switch! - 01006F900BF8E000","01006F900BF8E000","services;deadlock;status-nothing","nothing","2023-07-01 05:52:55.000" -"AEW Fight Forever - 0100BD10190C0000","0100BD10190C0000","","","2023-06-30 22:09:10.000" -"Master Detective Archives: Rain Code - 01004800197F0000","01004800197F0000","gpu;status-ingame","ingame","2024-04-19 20:11:09.000" -"The Lara Croft Collection - 010079C017F5E000","010079C017F5E000","services-horizon;deadlock;status-nothing","nothing","2024-07-12 22:45:51.000" -"Ghost Trick Phantom Detective - 010029B018432000","010029B018432000","status-playable","playable","2023-08-23 14:50:12.000" -"Sentimental Death Loop - 0100FFA01ACA8000","0100FFA01ACA8000","","","2023-07-10 03:23:08.000" -"The Settlers: New Allies - 0100F3200E7CA000","0100F3200E7CA000","deadlock;status-nothing","nothing","2023-10-25 00:18:05.000" -"Manic Mechanics - 010095A01550E000","010095A01550E000","","","2023-07-17 02:07:32.000" -"Crymachina Trial Edition ( Demo ) [ クライマキナ ] - 01000CC01C108000","01000CC01C108000","status-playable;demo","playable","2023-08-06 05:33:21.000" -"Xicatrice [ シカトリス ] - 0100EB601A932000","0100EB601A932000","","","2023-07-18 02:18:35.000" -"Trouble Witches Final! Episode 01: Daughters of Amalgam - 0100D06018DCA000","0100D06018DCA000","status-playable","playable","2024-04-08 15:08:11.000" -"The Quintessential Quintuplets: Gotopazu Story [ 五等分の花嫁 ごとぱずストーリー ] - 0100137019E9C000","0100137019E9C000","","","2023-07-18 02:18:50.000" -"Pinball FX - 0100DA70186D4000","0100DA70186D4000","status-playable","playable","2024-05-03 17:09:11.000" -"Moving Out 2 Training Day ( Demo ) - 010049E01B034000","010049E01B034000","","","2023-07-19 00:37:57.000" -"Cold Silence - 010035B01706E000","010035B01706E000","cpu;status-nothing;crash","nothing","2024-07-11 17:06:14.000" -"Demons of Asteborg - 0100B92015538000","0100B92015538000","","","2023-07-20 17:03:06.000" -"Pikmin 4 - 0100B7C00933A000","0100B7C00933A000","gpu;status-ingame;crash;UE4","ingame","2024-08-26 03:39:08.000" -"Grizzland - 010091300FFA0000","010091300FFA0000","gpu;status-ingame","ingame","2024-07-11 16:28:34.000" -"Disney Illusion Island","","","","2023-07-29 09:20:56.000" -"Double Dragon Gaiden: Rise of The Dragons - 010010401BC1A000","010010401BC1A000","","","2023-08-01 05:17:28.000" -"CRYSTAR -クライスタ- 0100E7B016778800","0100E7B016778800","","","2023-08-02 11:54:22.000" -"Orebody: Binders Tale - 010055A0189B8000","010055A0189B8000","","","2023-08-03 18:50:10.000" -"Ginnung - 01004B1019C7E000","01004B1019C7E000","","","2023-08-03 19:19:00.000" -"Legends of Amberland: The Forgotten Crown - 01007170100AA000","01007170100AA000","","","2023-08-03 22:18:17.000" -"Egglien - 0100E29019F56000","0100E29019F56000","","","2023-08-03 22:48:04.000" -"Dolmenjord - Viking Islands - 010012201B998000","010012201B998000","","","2023-08-05 20:55:28.000" -"The Knight & the Dragon - 010031B00DB34000","010031B00DB34000","gpu;status-ingame","ingame","2023-08-14 10:31:43.000" -"Cookies! Theory of Super Evolution - ","","","","2023-08-06 00:21:28.000" -"Jetboy - 010039C018168000","010039C018168000","","","2023-08-07 17:25:10.000" -"Townscaper - 01001260143FC000","01001260143FC000","","","2023-08-07 18:24:29.000" -"The Deer God - 01000B6007A3C000","01000B6007A3C000","","","2023-08-07 19:48:55.000" -"6 Souls - 0100421016BF2000","0100421016BF2000","","","2023-08-07 21:17:43.000" -"Brotato - 01002EF01A316000","01002EF01A316000","","","2023-08-10 14:57:25.000" -"超次元ゲイム ネプテューヌ GameMaker R:Evolution - 010064801a01c000","010064801a01c000","status-nothing;crash","nothing","2023-10-30 22:37:40.000" -"Quake II - 010048F0195E8000","010048F0195E8000","status-playable","playable","2023-08-15 03:42:14.000" -"Red Dead Redemption - 01007820196A6000","01007820196A6000","status-playable;amd-vendor-bug","playable","2024-09-13 13:26:13.000" -"Samba de Amigo : Party Central Demo - 01007EF01C0D2000","01007EF01C0D2000","","","2023-08-18 04:00:43.000" -"Bomb Rush Cyberfunk - 0100317014B7C000","0100317014B7C000","status-playable","playable","2023-09-28 19:51:57.000" -"Jack Jeanne - 010036D01937E000","010036D01937E000","","","2023-08-21 05:58:21.000" -"Bright Memory: Infinite Gold Edition - 01001A9018560000","01001A9018560000","","","2023-08-22 22:46:26.000" -"NBA 2K23 - 0100ACA017E4E800","0100ACA017E4E800","status-boots","boots","2023-10-10 23:07:14.000" -"Marble It Up! Ultra - 0100C18016896000","0100C18016896000","","","2023-08-30 20:14:21.000" -"Words of Wisdom - 0100B7F01BC9A000","0100B7F01BC9A000","","","2023-09-02 19:05:19.000" -"Koa and the Five Pirates of Mara - 0100C57019BA2000","0100C57019BA2000","gpu;status-ingame","ingame","2024-07-11 16:14:44.000" -"Little Orpheus stuck at 2 level","","","","2023-09-05 12:09:08.000" -"Tiny Thor - 010002401AE94000","010002401AE94000","gpu;status-ingame","ingame","2024-07-26 08:37:35.000" -"Radirgy Swag - 01000B900EEF4000","01000B900EEF4000","","","2023-09-06 23:00:39.000" -"Sea of Stars - 01008C0016544000","01008C0016544000","status-playable","playable","2024-03-15 20:27:12.000" -"NBA 2K24 - 010006501A8D8000","010006501A8D8000","cpu;gpu;status-boots","boots","2024-08-11 18:23:08.000" -"Rune Factory 3 Special - 010081C0191D8000","010081C0191D8000","status-playable","playable","2023-10-15 08:32:49.000" -"Baten Kaitos I & II HD Remaster (Japan) - 0100F28018CA4000","0100F28018CA4000","services;status-boots;Needs Update","boots","2023-10-24 23:11:54.000" -"F-ZERO 99 - 0100CCF019C8C000","0100CCF019C8C000","","","2023-09-14 16:43:01.000" -"Horizon Chase 2 - 0100001019F6E000","0100001019F6E000","deadlock;slow;status-ingame;crash;UE4","ingame","2024-08-19 04:24:06.000" -"Mortal Kombat 1 - 01006560184E6000","01006560184E6000","gpu;status-ingame","ingame","2024-09-04 15:45:47.000" -"Baten Kaitos I & II HD Remaster (Europe/USA) - 0100C07018CA6000","0100C07018CA6000","services;status-boots;Needs Update","boots","2023-10-01 00:44:32.000" -"Legend of Mana 01003570130E2000","01003570130E2000","","","2023-09-17 04:07:26.000" -"TUNIC 0100DA801624E000","0100DA801624E000","","","2023-09-17 04:28:22.000" -"SUPER BOMBERMAN R 2 - 0100B87017D94000","0100B87017D94000","deadlock;status-boots","boots","2023-09-29 13:19:51.000" -"Fae Farm - 010073F0189B6000 ","010073F0189B6000","status-playable","playable","2024-08-25 15:12:12.000" -"demon skin - 01006fe0146ec000","01006fe0146ec000","","","2023-09-18 08:36:18.000" -"Fatal Frame: Mask of the Lunar Eclipse - 0100DAE019110000","0100DAE019110000","status-playable;Incomplete","playable","2024-04-11 06:01:30.000" -"Winter Games 2023 - 0100A4A015FF0000","0100A4A015FF0000","deadlock;status-menus","menus","2023-11-07 20:47:36.000" -"EA Sports FC 24 - 0100BDB01A0E6000","0100BDB01A0E6000","status-boots","boots","2023-10-04 18:32:59.000" -"Cassette Beasts - 010066F01A0E0000","010066F01A0E0000","status-playable","playable","2024-07-22 20:38:43.000" -"COCOON - 01002E700C366000","01002E700C366000","gpu;status-ingame","ingame","2024-03-06 11:33:08.000" -"Detective Pikachu Returns - 010007500F27C000","010007500F27C000","status-playable","playable","2023-10-07 10:24:59.000" -"DeepOne - 0100961011BE6000","0100961011BE6000","services-horizon;status-nothing;Needs Update","nothing","2024-01-18 15:01:05.000" -"Sonic Superstars","","","","2023-10-13 18:33:19.000" -"Disco Elysium - 01006C5015E84000","01006C5015E84000","Incomplete","","2023-10-14 13:53:12.000" -"Sonic Superstars - 01008F701C074000","01008F701C074000","gpu;status-ingame;nvdec","ingame","2023-10-28 17:48:07.000" -"Sonic Superstars Digital Art Book with Mini Digital Soundtrack - 010088801C150000","010088801C150000","status-playable","playable","2024-08-20 13:26:56.000" -"Super Mario Bros. Wonder - 010015100B514000","010015100B514000","status-playable;amd-vendor-bug","playable","2024-09-06 13:21:21.000" -"Project Blue - 0100FCD0193A0000","0100FCD0193A0000","","","2023-10-24 15:55:09.000" -"Rear Sekai [ リアセカイ ] - 0100C3B01A5DD002","0100C3B01A5DD002","","","2023-10-24 01:55:18.000" -"Dementium: The Ward (Dementium Remastered) - 010038B01D2CA000","010038B01D2CA000","status-boots;crash","boots","2024-09-02 08:28:14.000" -"A Tiny Sticker Tale - 0100f6001b738000","0100f6001b738000","","","2023-10-26 23:15:46.000" -"Clive 'n' Wrench - 0100C6C010AE4000","0100C6C010AE4000","","","2023-10-28 14:56:46.000" -"STAR OCEAN The Second Story R - 010065301A2E0000","010065301A2E0000","status-ingame;crash","ingame","2024-06-01 02:39:59.000" -"Song of Nunu: A League of Legends Story - 01004F401BEBE000","01004F401BEBE000","status-ingame","ingame","2024-07-12 18:53:44.000" -"MythForce","","","","2023-11-03 12:58:52.000" -"Here Comes Niko! - 01001600121D4000","01001600121D4000","","","2023-11-04 22:26:44.000" -"Warioware: Move IT! - 010045B018EC2000","010045B018EC2000","status-playable","playable","2023-11-14 00:23:51.000" -"Game of Life [ 人生ゲーム for Nintendo Switch ] - 0100FF1017F76000","0100FF1017F76000","","","2023-11-07 19:59:08.000" -"Osyaberi! Horijyo! Gekihori - 01005D6013A54000","01005D6013A54000","","","2023-11-07 01:46:43.000" -"Fashion Dreamer - 0100E99019B3A000","0100E99019B3A000","status-playable","playable","2023-11-12 06:42:52.000" -"THE 密室逃脱 ~牵动命运的三十五道谜团~ (ESCAPE TRICK: 35 Fateful Enigmas) - 010087F005DFE000","010087F005DFE000","","","2023-11-08 02:20:17.000" -"Hogwarts Legacy 0100F7E00C70E000","0100F7E00C70E000","status-ingame;slow","ingame","2024-09-03 19:53:58.000" -"Super Mario RPG - 0100BC0018138000","0100BC0018138000","gpu;audio;status-ingame;nvdec","ingame","2024-06-19 17:43:42.000" -"Venatrix - 010063601B386000","010063601B386000","","","2023-11-18 06:55:12.000" -"Dreamwork's All-Star Kart Racing - 010037401A374000","010037401A374000","Incomplete","","2024-02-27 08:58:57.000" -"Watermelon Game [ スイカゲーム ] - 0100800015926000","0100800015926000","","","2023-11-27 02:49:45.000" -"屁屁侦探 噗噗 未来的名侦探登场! (Oshiri Tantei Mirai no Meitantei Tojo!) - 0100FDE017E56000","0100FDE017E56000","","","2023-12-01 11:15:46.000" -"Batman: Arkham Knight - 0100ACD0163D0000","0100ACD0163D0000","gpu;status-ingame;mac-bug","ingame","2024-06-25 20:24:42.000" -"DRAGON QUEST MONSTERS: The Dark Prince - 0100A77018EA0000","0100A77018EA0000","status-playable","playable","2023-12-29 16:10:05.000" -"ftpd classic - 0000000000000000","0000000000000000","homebrew","","2023-12-03 23:42:19.000" -"ftpd pro - 0000000000000000","0000000000000000","homebrew","","2023-12-03 23:47:46.000" -"Batman: Arkham City - 01003f00163ce000","01003f00163ce000","status-playable","playable","2024-09-11 00:30:19.000" -"DoDonPachi DAI-OU-JOU Re:incarnation (怒首領蜂大往生 臨廻転生) - 0100526017B00000","0100526017B00000","","","2023-12-08 15:16:22.000" -"Squid Commando - 0100044018E82000","0100044018E82000","","","2023-12-08 17:17:27.000" -"御伽活劇 豆狸のバケル ~オラクル祭太郎の祭難!!~ (Otogi Katsugeki Mameda no Bakeru Oracle Saitarou no Sainan!!) - 0100BF401AF9C000","0100BF401AF9C000","slow;status-playable","playable","2023-12-31 14:37:17.000" -"Another Code: Recollection DEMO - 01003E301A4D6000","01003E301A4D6000","","","2023-12-15 06:48:09.000" -"Alien Hominid HD - 010056B019874000","010056B019874000","","","2023-12-17 13:10:46.000" -"Piyokoro - 010098801D706000","010098801D706000","","","2023-12-18 02:17:53.000" -"Uzzuzuu My Pet - Golf Dash - 010015B01CAF0000","010015B01CAF0000","","","2023-12-18 02:17:57.000" -"Alien Hominid Invasion - 0100A3E00CDD4000","0100A3E00CDD4000","Incomplete","","2024-07-17 01:56:28.000" -"void* tRrLM2(); //Void Terrarium 2 (USA/EU) - 0100B510183BC000","0100B510183BC000","","","2023-12-21 11:08:18.000" -"Metal Gear Solid Master Collection Vol. 1: Metal Gear Solid 3 - 010047F01AA10000","010047F01AA10000","services-horizon;status-menus","menus","2024-07-24 06:34:06.000" -"Party Friends - 0100C0A01D478000","0100C0A01D478000","","","2023-12-23 02:43:33.000" -"Yohane the Parhelion Numazu in the Mirage Demo - 0100D7201DAAE000","0100D7201DAAE000","","","2023-12-23 02:49:28.000" -"SPY×FAMILY OPERATION DIARY - 010041601AB40000","010041601AB40000","","","2023-12-23 02:52:29.000" -"Golf Guys - 010040901CC42000","010040901CC42000","","","2023-12-28 01:20:16.000" -"Persona 5 Tactica - 010087701B092000","010087701B092000","status-playable","playable","2024-04-01 22:21:03.000" -"Batman: Arkham Asylum - 0100E870163CA000","0100E870163CA000","","","2024-01-11 23:03:37.000" -"Persona 5 Royal (KR/HK) - 01004B10157F2000","01004B10157F2000","Incomplete","","2024-08-17 21:42:28.000" -"Prince of Persia: The Lost Crown - 0100210019428000","0100210019428000","status-ingame;crash","ingame","2024-06-08 21:31:58.000" -"Another Code: Recollection - 0100CB9018F5A000","0100CB9018F5A000","gpu;status-ingame;crash","ingame","2024-09-06 05:58:52.000" -"It Takes Two - 010092A0172E4000","010092A0172E4000","","","2024-01-23 05:15:26.000" -"逆转裁判四五六 王泥喜精选集 (Apollo Justice: Ace Attorney Trilogy) - 010020D01B890000","010020D01B890000","status-playable","playable","2024-06-21 21:54:27.000" -"Hitman: Blood Money - Reprisal - 010083A018262000","010083A018262000","deadlock;status-ingame","ingame","2024-09-28 16:28:50.000" -"Mario vs. Donkey Kong™ Demo - 0100D9E01DBB0000","0100D9E01DBB0000","status-playable","playable","2024-02-18 10:40:06.000" -"LEGO The Incredibles - 0100F19006E04000","0100F19006E04000","crash","","2024-02-11 00:46:53.000" -"Tomb Raider I-III Remastered - 010024601BB16000","010024601BB16000","gpu;status-ingame;opengl","ingame","2024-09-27 12:32:04.000" -"Arzette: The Jewel of Faramore - 0100B7501C46A000","0100B7501C46A000","","","2024-02-17 17:22:34.000" -"Mario vs. Donkey Kong - 0100B99019412000","0100B99019412000","status-playable","playable","2024-05-04 21:22:39.000" -"Penny's Big Breakaway - 0100CA901AA9C000","0100CA901AA9C000","status-playable;amd-vendor-bug","playable","2024-05-27 07:58:51.000" -"CEIBA - 0100E8801D97E000","0100E8801D97E000","","","2024-02-25 22:33:36.000" -"Lil' Guardsman v1.1 - 010060B017F6E000","010060B017F6E000","","","2024-02-25 19:21:03.000" -"Fearmonium - 0100F5501CE12000","0100F5501CE12000","status-boots;crash","boots","2024-03-06 11:26:11.000" -"NeverAwake - 0100DA30189CA000","0100DA30189CA000","","","2024-02-26 02:27:39.000" -"Zombies Rising XXX","","","","2024-02-26 07:53:03.000" -"Balatro - 0100CD801CE5E000","0100CD801CE5E000","status-ingame","ingame","2024-04-21 02:01:53.000" -"Prison City - 0100C1801B914000","0100C1801B914000","gpu;status-ingame","ingame","2024-03-01 08:19:33.000" -"Yo-kai Watch Jam: Y School Heroes: Bustlin' School Life - 010051D010FC2000","010051D010FC2000","","","2024-03-03 02:57:22.000" -"Princess Peach: Showtime! Demo - 010024701DC2E000","010024701DC2E000","status-playable;UE4;demo","playable","2024-03-10 17:46:45.000" -"Unicorn Overlord - 010069401ADB8000","010069401ADB8000","status-playable","playable","2024-09-27 14:04:32.000" -"Dodgeball Academia - 010001F014D9A000","010001F014D9A000","","","2024-03-09 03:49:28.000" -"魂斗罗:加鲁加行动 (Contra: Operation Galuga) - 0100CF401A98E000","0100CF401A98E000","","","2024-03-13 01:13:42.000" -"STAR WARS Battlefront Classic Collection - 010040701B948000","010040701B948000","gpu;status-ingame;vulkan","ingame","2024-07-12 19:24:21.000" -"MLB The Show 24 - 0100E2E01C32E000","0100E2E01C32E000","services-horizon;status-nothing","nothing","2024-03-31 04:54:11.000" -"Orion Haste - 01009B401DD02000","01009B401DD02000","","","2024-03-16 17:22:59.000" -"Gylt - 0100AC601DCA8000","0100AC601DCA8000","status-ingame;crash","ingame","2024-03-18 20:16:51.000" -"マクロス(Macross) -Shooting Insight- - 01001C601B8D8000","01001C601B8D8000","","","2024-03-20 17:10:26.000" -"Geometry Survivor - 01006D401D4F4000","01006D401D4F4000","","","2024-03-20 17:35:34.000" -"Gley Lancer and Gynoug - Classic Shooting Pack - 010037201E3DA000","010037201E3DA000","","","2024-03-20 18:19:37.000" -"Princess Peach: Showtime! - 01007A3009184000","01007A3009184000","status-playable;UE4","playable","2024-09-21 13:39:45.000" -"Cosmic Fantasy Collection - 0100CCB01B1A0000","0100CCB01B1A0000","status-ingame","ingame","2024-05-21 17:56:37.000" -"Fit Boxing feat. 初音ミク - 010045D01AFC8000","010045D01AFC8000","","","2024-03-28 04:07:57.000" -"Sonic 2 (2013) - 0000000000000000","0000000000000000","status-ingame;crash;homebrew","ingame","2024-04-01 16:25:30.000" -"Sonic CD - 0000000000000000","0000000000000000","status-ingame;crash;homebrew","ingame","2024-04-01 16:25:31.000" -"Sonic A.I.R - 0000000000000000","0000000000000000","status-ingame;homebrew","ingame","2024-04-01 16:25:32.000" -"RSDKv5u - 0000000000000000","0000000000000000","status-ingame;homebrew","ingame","2024-04-01 16:25:34.000" -"Sonic 1 (2013) - 0000000000000000","0000000000000000","status-ingame;crash;homebrew","ingame","2024-04-06 18:31:20.000" -"The Dark Pictures Anthology : Man of Medan - 0100711017B30000","0100711017B30000","","","2024-04-01 16:38:04.000" -"SpaceCadetPinball - 0000000000000000","0000000000000000","status-ingame;homebrew","ingame","2024-04-18 19:30:04.000" -"Pepper Grinder - 0100B98019068000","0100B98019068000","","","2024-04-04 16:31:57.000" -"RetroArch - 010000000000100D","010000000000100D","","","2024-04-07 18:23:18.000" -"YouTube - 01003A400C3DA800","01003A400C3DA800","status-playable","playable","2024-06-08 05:24:10.000" -"Pawapoke R - 01000c4015030000","01000c4015030000","services-horizon;status-nothing","nothing","2024-05-14 14:28:32.000" -"MegaZeux - 0000000000000000","0000000000000000","","","2024-04-16 23:46:53.000" -"ANTONBLAST (Demo) - 0100B5F01EB24000","0100B5F01EB24000","","","2024-04-18 22:45:13.000" -"Europa (Demo) - 010092501EB2C000","010092501EB2C000","gpu;status-ingame;crash;UE4","ingame","2024-04-23 10:47:12.000" -"BioShock 1 & 2 Remastered [0100AD10102B2000 - 01002620102C6800] v1.0.2","0100AD10102B2000","","","2024-04-19 19:08:30.000" -"Turrican Anthology Vol. 2 - 010061D0130CA000 - game freezes at the beginning","010061D0130CA000","Incomplete","","2024-04-25 17:57:06.000" -"Nickelodeon All-Star Brawl 2 - 010010701AFB2000","010010701AFB2000","status-playable","playable","2024-06-03 14:15:01.000" -"Bloo Kid - 0100C6A01AD56000","0100C6A01AD56000","status-playable","playable","2024-05-01 17:18:04.000" -"Tales of Kenzera: ZAU - 01005C7015D30000","01005C7015D30000","","","2024-04-30 10:11:26.000" -"Demon Slayer – Kimetsu no Yaiba – Sweep the Board! - 0100A7101B806000","0100A7101B806000","","","2024-05-02 10:19:47.000" -"Endless Ocean Luminous - 010067B017588000","010067B017588000","services-horizon;status-ingame;crash","ingame","2024-05-30 02:05:57.000" -"Moto GP 24 - 010040401D564000","010040401D564000","gpu;status-ingame","ingame","2024-05-10 23:41:00.000" -"The game of life 2 - 0100B620139D8000","0100B620139D8000","","","2024-05-03 12:08:33.000" -"ANIMAL WELL - 010020D01AD24000","010020D01AD24000","status-playable","playable","2024-05-22 18:01:49.000" -"Super Mario World - 0000000000000000","0000000000000000","status-boots;homebrew","boots","2024-06-13 01:40:31.000" -"1000xRESIST - 0100B02019866000","0100B02019866000","","","2024-05-11 17:18:57.000" -"Dave The Diver - 010097F018538000","010097F018538000","Incomplete","","2024-09-03 21:38:55.000" -"Zombiewood","","Incomplete","","2024-05-15 11:37:19.000" -"Pawapoke Dash - 010066A015F94000","010066A015F94000","","","2024-05-16 08:45:51.000" -"Biomutant - 01004BA017CD6000","01004BA017CD6000","status-ingame;crash","ingame","2024-05-16 15:46:36.000" -"Vampire Survivors - 010089A0197E4000","010089A0197E4000","status-ingame","ingame","2024-06-17 09:57:38.000" -"Koumajou Remilia II Stranger’s Requiem","","Incomplete","","2024-05-22 20:59:04.000" -"Paper Mario: The Thousand-Year Door - 0100ECD018EBE000","0100ECD018EBE000","gpu;status-ingame;intel-vendor-bug;slow","ingame","2025-01-07 04:27:35.000" -"Stories From Sol: The Gun-dog Demo - 010092A01EC94000","010092A01EC94000","","","2024-05-22 19:55:35.000" -"Earth Defense Force: World Brothers 2 - 010083a01d456000","010083a01d456000","","","2024-06-01 18:34:34.000" -"锈色湖畔:内在昔日(Rusty Lake: The Past Within) - 01007010157EC000","01007010157EC000","","","2024-06-10 13:47:40.000" -"Garden Life A Cozy Simulator - 0100E3801ACC0000","0100E3801ACC0000","","","2024-06-12 00:12:01.000" -"Shin Megami Tensei V: Vengeance - 010069C01AB82000","010069C01AB82000","gpu;status-ingame;vulkan-backend-bug","ingame","2024-07-14 11:28:24.000" -"Valiant Hearts - The great war - 01006C70146A2000","01006C70146A2000","","","2024-06-18 21:31:15.000" -"Monster Hunter Stories - 010069301B1D4000","010069301B1D4000","Incomplete","","2024-09-11 07:58:24.000" -"Rocket Knight Adventures: Re-Sparked","","","","2024-06-20 20:13:10.000" -"Metal Slug Attack Reloaded","","","","2024-06-20 19:55:22.000" -"#BLUD - 010060201E0A4000","010060201E0A4000","","","2024-06-23 13:57:22.000" -"NARUTO X BARUTO Ultimate Ninja STORM CONNECTIONS - 0100D2D0190A4000","0100D2D0190A4000","services-horizon;status-nothing","nothing","2024-07-25 05:16:48.000" -"Bang-On Balls: Chronicles - 010081E01A45C000","010081E01A45C000","Incomplete","","2024-08-01 16:40:12.000" -"Downward: Enhanced Edition 0100C5501BF24000","0100C5501BF24000","","","2024-06-26 00:22:34.000" -"DNF Duel: Who's Next - 0100380017D3E000","0100380017D3E000","Incomplete","","2024-07-23 02:25:50.000" -"Borderlands 3 - 01009970122E4000","01009970122E4000","gpu;status-ingame","ingame","2024-07-15 04:38:14.000" -"Luigi's Mansion 2 HD - 010048701995E000","010048701995E000","status-ingame;ldn-broken;amd-vendor-bug","ingame","2024-09-05 23:47:27.000" -"Super Monkey Ball Banana Rumble - 010031F019294000","010031F019294000","status-playable","playable","2024-06-28 10:39:18.000" -"City of Beats 0100E94016B9E000","0100E94016B9E000","","","2024-07-01 07:02:20.000" -"Maquette 0100861018480000","0100861018480000","","","2024-07-04 05:20:21.000" -"Monomals - 01003030161DC000","01003030161DC000","gpu;status-ingame","ingame","2024-08-06 22:02:51.000" -"Ace Combat 7 - Skies Unknown Deluxe Edition - 010039301B7E0000","010039301B7E0000","gpu;status-ingame;UE4","ingame","2024-09-27 14:31:43.000" -"Teenage Mutant Ninja Turtles: Splintered Fate - 01005CF01E784000","01005CF01E784000","status-playable","playable","2024-08-03 13:50:42.000" -"Powerful Pro Baseball 2024-2025 - 0100D1C01C194000","0100D1C01C194000","gpu;status-ingame","ingame","2024-08-25 06:40:48.000" -"World of Goo 2 - 010061F01DB7C800","010061F01DB7C800","status-boots","boots","2024-08-08 22:52:49.000" -"Tomba! Special Edition - 0100D7F01E49C000","0100D7F01E49C000","services-horizon;status-nothing","nothing","2024-09-15 21:59:54.000" -"Machi Koro With Everyone-0100C32018824000","0100C32018824000","","","2024-08-07 19:19:30.000" -"STAR WARS: Bounty Hunter - 0100d7a01b7a2000","0100d7a01b7a2000","","","2024-08-08 11:12:56.000" -"Outer Wilds - 01003DC0144B6000","01003DC0144B6000","","","2024-08-08 17:36:16.000" -"Grounded 01006F301AE9C000","01006F301AE9C000","","","2024-08-09 16:35:52.000" -"DOOM + DOOM II - 01008CB01E52E000","01008CB01E52E000","status-playable;opengl;ldn-untested;LAN","playable","2024-09-12 07:06:01.000" -"Fishing Paradiso - 0100890016A74000","0100890016A74000","","","2024-08-11 21:39:54.000" -"Revue Starlight El Dorado - 010099c01d642000","010099c01d642000","","","2024-09-02 18:58:18.000" -"PowerWash Simulator - 0100926016012000","0100926016012000","","","2024-08-22 00:47:34.000" -"Thank Goodness You’re Here! - 010053101ACB8000","010053101ACB8000","","","2024-09-25 16:15:40.000" -"Freedom Planet 2 V1.2.3r (01009A301B68000)","","","","2024-08-23 18:16:54.000" -"Ace Attorney Investigations Collection DEMO - 010033401E68E000","010033401E68E000","status-playable","playable","2024-09-07 06:16:42.000" -"Castlevania Dominus Collection - 0100FA501AF90000","0100FA501AF90000","","","2024-09-19 01:39:04.000" -"Chants of Sennaar - 0100543019CB0000","0100543019CB0000","","","2024-09-19 16:30:27.000" -"Taisho x Alice ALL IN ONE - 大正×対称アリス ALL IN ONE - 010096000ca38000","010096000ca38000","","","2024-09-11 21:20:04.000" -"NBA 2K25 - 0100DFF01ED44000","0100DFF01ED44000","","","2024-09-10 17:34:54.000" -"逆转检察官1&2 御剑精选集 (Ace Attorney Investigations Collection) - 010005501E68C000","010005501E68C000","status-playable","playable","2024-09-19 16:38:05.000" -"Fabledom - 0100B6001E6D6000","0100B6001E6D6000","","","2024-09-28 12:12:55.000" -"BZZZT - 010091201A3F2000","010091201A3F2000","","","2024-09-22 21:29:58.000" -"EA SPORTS FC 25 - 010054E01D878000","010054E01D878000","status-ingame;crash","ingame","2024-09-25 21:07:50.000" -"Selfloss - 010036C01E244000","010036C01E244000","","","2024-09-23 23:12:13.000" -"Disney Epic Mickey: Rebrushed - 0100DA201EBF8000","0100DA201EBF8000","status-ingame;crash","ingame","2024-09-26 22:11:51.000" -"The Plucky Squire - 01006BD018B54000","01006BD018B54000","status-ingame;crash","ingame","2024-09-27 22:32:33.000" -"The Legend of Zelda Echoes of Wisdom - 01008CF01BAAC000","01008CF01BAAC000","status-playable;nvdec;ASTC;intel-vendor-bug","playable","2024-10-01 14:11:01.000" -"Bakeru - 01007CD01FAE0000","01007CD01FAE0000","","","2024-09-25 18:05:22.000" -"トラブル・マギア ~訳アリ少女は未来を勝ち取るために異国の魔法学校へ留学します~(Trouble Magia ~Wakeari Shoujo wa Mirai o Kachitoru Tame ni Ikoku no Mahou Gakkou e Ryuugaku Shimasu~) - 01000BB01CB8A000","01000BB01CB8A000","status-nothing","nothing","2024-09-28 07:03:14.000" -"I am an Airtraffic Controller AIRPORT HERO HANEDA ALLSTARS - 01002EE01BAE0000","01002EE01BAE0000","","","2024-09-27 02:04:17.000" -"燃えよ! 乙女道士 ~華遊恋語~ (Moeyo! Otome Doushi Kayu Koigatari) - 01001BA01EBFC000","01001BA01EBFC000","services-horizon;status-nothing","nothing","2024-09-28 12:22:55.000" -"I am an Air Traffic Controller AIRPORT HERO HANEDA - 0100BE700EDA4000","0100BE700EDA4000","","","2024-09-27 23:52:19.000" -"Angel at Dusk Demo - 0100D96020ADC000","0100D96020ADC000","","","2024-09-29 17:21:13.000" -"Monster Jam™ Showdown - 0100CE101B698000","0100CE101B698000","","","2024-09-30 04:03:13.000" -"Legend of Heroes: Trails Through Daybreak - 010040C01D248000","010040C01D248000","","","2024-10-01 07:36:25.000" -"Mario & Luigi: Brothership - 01006D0017F7A000","01006D0017F7A000","status-ingame;crash;slow;UE4;mac-bug","ingame","2025-01-07 04:00:00.000" -"Stray - 010075101EF84000","010075101EF84000","status-ingame;crash","ingame","2025-01-07 04:03:00.000" -"Dragon Quest III HD-2D Remake - 01003E601E324000","01003E601E324000","status-ingame;vulkan-backend-bug;UE4;audout;mac-bug","ingame","2025-01-07 04:10:27.000" -"SONIC X SHADOW GENERATIONS - 01005EA01C0FC000","01005EA01C0FC000","status-ingame;crash","ingame","2025-01-07 04:20:45.000" -"LEGO Horizon Adventures - 010073C01AF34000","010073C01AF34000","status-ingame;vulkan-backend-bug;opengl-backend-bug;UE4","ingame","2025-01-07 04:24:56.000" -"Legacy of Kain™ Soul Reaver 1&2 Remastered - 010079901C898000","010079901C898000","status-playable","playable","2025-01-07 05:50:01.000" +"-KLAUS-",,nvdec;status-playable,playable,2020-06-27 13:27:30.000 +".hack//G.U. Last Recode",0100BA9014A02000,deadlock;status-boots,boots,2022-03-12 19:15:47.000 +"#Funtime",,status-playable,playable,2020-12-10 16:54:35.000 +"#Halloween, Super Puzzles Dream",,nvdec;status-playable,playable,2020-12-10 20:43:58.000 +"#KillAllZombies",,slow;status-playable,playable,2020-12-16 01:50:25.000 +"#NoLimitFantasy, Super Puzzles Dream",,nvdec;status-playable,playable,2020-12-12 17:21:32.000 +"#RaceDieRun",,status-playable,playable,2020-07-04 20:23:16.000 +"#womenUp, Super Puzzles Dream",,status-playable,playable,2020-12-12 16:57:25.000 +"#womenUp, Super Puzzles Dream Demo",0100D87012A14000,nvdec;status-playable,playable,2021-02-09 00:03:31.000 +"1-2-Switch",01000320000CC000,services;status-playable,playable,2022-02-18 14:44:03.000 +"10 Second Run Returns",01004D1007926000,gpu;status-ingame,ingame,2022-07-17 13:06:18.000 +"10 Second Run RETURNS Demo",0100DC000A472000,gpu;status-ingame,ingame,2021-02-09 00:17:18.000 +"112 Operator",0100D82015774000,status-playable;nvdec,playable,2022-11-13 22:42:50.000 +"112th Seed",,status-playable,playable,2020-10-03 10:32:38.000 +"12 is Better Than 6",01007F600D1B8000,status-playable,playable,2021-02-22 16:10:12.000 +"12 Labours of Hercules II: The Cretan Bull",0100B1A010014000,cpu;status-nothing;32-bit;crash,nothing,2022-12-07 13:43:10.000 +"12 orbits",,status-playable,playable,2020-05-28 16:13:26.000 +"13 Sentinels Aegis Rim",01003FC01670C000,slow;status-ingame,ingame,2024-06-10 20:33:38.000 +"13 Sentinels Aegis Rim Demo",0100C54015002000,status-playable;demo,playable,2022-04-13 14:15:48.000 +"140",,status-playable,playable,2020-08-05 20:01:33.000 +"16-Bit Soccer Demo",0100B94013D28000,status-playable,playable,2021-02-09 00:23:07.000 +"1917 - The Alien Invasion DX",,status-playable,playable,2021-01-08 22:11:16.000 +"1971 PROJECT HELIOS",0100829010F4A000,status-playable,playable,2021-04-14 13:50:19.000 +"1979 Revolution: Black Friday",0100D1000B18C000,nvdec;status-playable,playable,2021-02-21 21:03:43.000 +"198X",,status-playable,playable,2020-08-07 13:24:38.000 +"1993 Shenandoah",,status-playable,playable,2020-10-24 13:55:42.000 +"1993 Shenandoah Demo",0100148012550000,status-playable,playable,2021-02-09 00:43:43.000 +"2048 Battles",,status-playable,playable,2020-12-12 14:21:25.000 +"2064: Read Only Memories",,deadlock;status-menus,menus,2020-05-28 16:53:58.000 +"20XX",0100749009844000,gpu;status-ingame,ingame,2023-08-14 09:41:44.000 +"2urvive",01007550131EE000,status-playable,playable,2022-11-17 13:49:37.000 +"2weistein – The Curse of the Red Dragon",0100E20012886000,status-playable;nvdec;UE4,playable,2022-11-18 14:47:07.000 +"30 in 1 game collection vol. 2",0100DAC013D0A000,status-playable;online-broken,playable,2022-10-15 17:22:27.000 +"30-in-1 Game Collection",010056D00E234000,status-playable;online-broken,playable,2022-10-15 17:47:09.000 +"3000th Duel",0100FB5010D2E000,status-playable,playable,2022-09-21 17:12:08.000 +"36 Fragments of Midnight",,status-playable,playable,2020-05-28 15:12:59.000 +"39 Days to Mars",0100AF400C4CE000,status-playable,playable,2021-02-21 22:12:46.000 +"3D Arcade Fishing",010010C013F2A000,status-playable,playable,2022-10-25 21:50:51.000 +"3D MiniGolf",,status-playable,playable,2021-01-06 09:22:11.000 +"4x4 Dirt Track",,status-playable,playable,2020-12-12 21:41:42.000 +"60 Parsecs!",010010100FF14000,status-playable,playable,2022-09-17 11:01:17.000 +"60 Seconds!",0100969005E98000,services;status-ingame,ingame,2021-11-30 01:04:14.000 +"6180 the moon",,status-playable,playable,2020-05-28 15:39:24.000 +"64",,status-playable,playable,2020-12-12 21:31:58.000 +"7 Billion Humans",,32-bit;status-playable,playable,2020-12-17 21:04:58.000 +"7th Sector",,nvdec;status-playable,playable,2020-08-10 14:22:14.000 +"8-BIT ADVENTURE STEINS;GATE",,audio;status-ingame,ingame,2020-01-12 15:05:06.000 +"80 Days",,status-playable,playable,2020-06-22 21:43:01.000 +"80's OVERDRIVE",,status-playable,playable,2020-10-16 14:33:32.000 +"88 Heroes",,status-playable,playable,2020-05-28 14:13:02.000 +"9 Monkeys of Shaolin",,UE4;gpu;slow;status-ingame,ingame,2020-11-17 11:58:43.000 +"9 Monkeys of Shaolin Demo",0100C5F012E3E000,UE4;gpu;nvdec;status-ingame,ingame,2021-02-09 01:03:30.000 +"911 Operator Deluxe Edition",,status-playable,playable,2020-07-14 13:57:44.000 +"99Vidas",,online;status-playable,playable,2020-10-29 13:00:40.000 +"99Vidas Demo",010023500C2F0000,status-playable,playable,2021-02-09 12:51:31.000 +"9th Dawn III",,status-playable,playable,2020-12-12 22:27:27.000 +"A Ch'ti Bundle",010096A00CC80000,status-playable;nvdec,playable,2022-10-04 12:48:44.000 +"A Dark Room",,gpu;status-ingame,ingame,2020-12-14 16:14:28.000 +"A Duel Hand Disaster Trackher: DEMO",0100582012B90000,crash;demo;nvdec;status-ingame,ingame,2021-03-24 18:45:27.000 +"A Duel Hand Disaster: Trackher",010026B006802000,status-playable;nvdec;online-working,playable,2022-09-04 14:24:55.000 +"A Frog Game",,status-playable,playable,2020-12-14 16:09:53.000 +"A Hat In Time",010056E00853A000,status-playable,playable,2024-06-25 19:52:44.000 +"A HERO AND A GARDEN",01009E1011EC4000,status-playable,playable,2022-12-05 16:37:47.000 +"A Knight's Quest",01005EF00CFDA000,status-playable;UE4,playable,2022-09-12 20:44:20.000 +"A magical high school girl",01008DD006C52000,status-playable,playable,2022-07-19 14:40:50.000 +"A Short Hike",,status-playable,playable,2020-10-15 00:19:58.000 +"A Sound Plan",,crash;status-boots,boots,2020-12-14 16:46:21.000 +"A Summer with the Shiba Inu",01007DD011C4A000,status-playable,playable,2021-06-10 20:51:16.000 +"A-Train: All Aboard! Tourism",0100A3E010E56000,nvdec;status-playable,playable,2021-04-06 17:48:19.000 +"Aaero",010097A00CC0A000,status-playable;nvdec,playable,2022-07-19 14:49:55.000 +"Aborigenus",,status-playable,playable,2020-08-05 19:47:24.000 +"Absolute Drift",,status-playable,playable,2020-12-10 14:02:44.000 +"Abyss of The Sacrifice",010047F012BE2000,status-playable;nvdec,playable,2022-10-21 13:56:28.000 +"ABZU",0100C1300BBC6000,status-playable;UE4,playable,2022-07-19 15:02:52.000 +"ACA NEOGEO 2020 SUPER BASEBALL",01003C400871E000,online;status-playable,playable,2021-04-12 13:23:51.000 +"ACA NEOGEO 3 COUNT BOUT",0100FC000AFC6000,online;status-playable,playable,2021-04-12 13:16:42.000 +"ACA NEOGEO AERO FIGHTERS 2",0100AC40038F4000,online;status-playable,playable,2021-04-08 15:44:09.000 +"ACA NEOGEO AERO FIGHTERS 3",0100B91008780000,online;status-playable,playable,2021-04-12 13:11:17.000 +"ACA NEOGEO AGGRESSORS OF DARK KOMBAT",0100B4800AFBA000,online;status-playable,playable,2021-04-01 22:48:01.000 +"ACA NEOGEO BASEBALL STARS PROFESSIONAL",01003FE00A2F6000,online;status-playable,playable,2021-04-01 21:23:05.000 +"ACA NEOGEO BLAZING STAR",,crash;services;status-menus,menus,2020-05-26 17:29:02.000 +"ACA NEOGEO CROSSED SWORDS",0100D2400AFB0000,online;status-playable,playable,2021-04-01 20:42:59.000 +"ACA NEOGEO FATAL FURY",0100EE6002B48000,online;status-playable,playable,2021-04-01 20:36:23.000 +"ACA NEOGEO FOOTBALL FRENZY",,status-playable,playable,2021-03-29 20:12:12.000 +"ACA NEOGEO GAROU: MARK OF THE WOLVES",0100CB2001DB8000,online;status-playable,playable,2021-04-01 20:31:10.000 +"ACA NEOGEO GHOST PILOTS",01005D700A2F8000,online;status-playable,playable,2021-04-01 20:26:45.000 +"ACA NEOGEO LAST RESORT",01000D10038E6000,online;status-playable,playable,2021-04-01 19:51:22.000 +"ACA NEOGEO LEAGUE BOWLING",,crash;services;status-menus,menus,2020-05-26 17:11:04.000 +"ACA NEOGEO MAGICAL DROP II",,crash;services;status-menus,menus,2020-05-26 16:48:24.000 +"ACA NEOGEO MAGICIAN LORD",01007920038F6000,online;status-playable,playable,2021-04-01 19:33:26.000 +"ACA NEOGEO METAL SLUG",0100EBE002B3E000,status-playable,playable,2021-02-21 13:56:48.000 +"ACA NEOGEO METAL SLUG 2",010086300486E000,online;status-playable,playable,2021-04-01 19:25:52.000 +"ACA NEOGEO METAL SLUG 3",,crash;services;status-menus,menus,2020-05-26 16:32:45.000 +"ACA NEOGEO METAL SLUG 4",01009CE00AFAE000,online;status-playable,playable,2021-04-01 18:12:18.000 +"ACA NEOGEO Metal Slug X",,crash;services;status-menus,menus,2020-05-26 14:07:20.000 +"ACA NEOGEO Money Puzzle Exchanger",010038F00AFA0000,online;status-playable,playable,2021-04-01 17:59:56.000 +"ACA NEOGEO NEO TURF MASTERS",01002E70032E8000,status-playable,playable,2021-02-21 15:12:01.000 +"ACA NEOGEO NINJA COMBAT",010052A00A306000,status-playable,playable,2021-03-29 21:17:28.000 +"ACA NEOGEO NINJA COMMANDO",01007E800AFB6000,online;status-playable,playable,2021-04-01 17:28:18.000 +"ACA NEOGEO OVER TOP",01003A5001DBA000,status-playable,playable,2021-02-21 13:16:25.000 +"ACA NEOGEO REAL BOUT FATAL FURY SPECIAL",010088500878C000,online;status-playable,playable,2021-04-01 17:18:27.000 +"ACA NEOGEO SAMURAI SHODOWN",01005C9002B42000,online;status-playable,playable,2021-04-01 17:11:35.000 +"ACA NEOGEO SAMURAI SHODOWN IV",010047F001DBC000,online;status-playable,playable,2021-04-12 12:58:54.000 +"ACA NEOGEO SAMURAI SHODOWN SPECIAL V",010049F00AFE8000,online;status-playable,playable,2021-04-10 18:07:13.000 +"ACA NEOGEO SENGOKU 2",01009B300872A000,online;status-playable,playable,2021-04-10 17:36:44.000 +"ACA NEOGEO SENGOKU 3",01008D000877C000,online;status-playable,playable,2021-04-10 16:11:53.000 +"ACA NEOGEO SHOCK TROOPERS",,crash;services;status-menus,menus,2020-05-26 15:29:34.000 +"ACA NEOGEO SPIN MASTER",01007D1004DBA000,online;status-playable,playable,2021-04-10 15:50:19.000 +"ACA NEOGEO SUPER SIDEKICKS 2",010055A00A300000,online;status-playable,playable,2021-04-10 16:05:58.000 +"ACA NEOGEO SUPER SIDEKICKS 3: THE NEXT GLORY",0100A4D00A308000,online;status-playable,playable,2021-04-10 15:39:22.000 +"ACA NEOGEO THE KING OF FIGHTERS '94",,crash;services;status-menus,menus,2020-05-26 15:03:44.000 +"ACA NEOGEO THE KING OF FIGHTERS '95",01009DC001DB6000,status-playable,playable,2021-03-29 20:27:35.000 +"ACA NEOGEO THE KING OF FIGHTERS '96",01006F0004FB4000,online;status-playable,playable,2021-04-10 14:49:10.000 +"ACA NEOGEO THE KING OF FIGHTERS '97",0100170008728000,online;status-playable,playable,2021-04-10 14:43:27.000 +"ACA NEOGEO THE KING OF FIGHTERS '98",,crash;services;status-menus,menus,2020-05-26 14:54:20.000 +"ACA NEOGEO THE KING OF FIGHTERS '99",0100583001DCA000,online;status-playable,playable,2021-04-10 14:36:56.000 +"ACA NEOGEO THE KING OF FIGHTERS 2000",0100B97002B44000,online;status-playable,playable,2021-04-10 15:24:35.000 +"ACA NEOGEO THE KING OF FIGHTERS 2001",010048200AFC2000,online;status-playable,playable,2021-04-10 15:16:23.000 +"ACA NEOGEO THE KING OF FIGHTERS 2002",0100CFD00AFDE000,online;status-playable,playable,2021-04-10 15:01:55.000 +"ACA NEOGEO THE KING OF FIGHTERS 2003",0100EF100AFE6000,online;status-playable,playable,2021-04-10 14:54:31.000 +"ACA NEOGEO THE LAST BLADE 2",0100699008792000,online;status-playable,playable,2021-04-10 14:31:54.000 +"ACA NEOGEO THE SUPER SPY",0100F7F00AFA2000,online;status-playable,playable,2021-04-10 14:26:33.000 +"ACA NEOGEO WAKU WAKU 7",0100CEF001DC0000,online;status-playable,playable,2021-04-10 14:20:52.000 +"ACA NEOGEO WORLD HEROES PERFECT",,crash;services;status-menus,menus,2020-05-26 14:14:36.000 +"ACA NEOGEO ZUPAPA!",,online;status-playable,playable,2021-03-25 20:07:33.000 +"Access Denied",0100A9900CB5C000,status-playable,playable,2022-07-19 15:25:10.000 +"Ace Angler: Fishing Spirits",01007C50132C8000,status-menus;crash,menus,2023-03-03 03:21:39.000 +"Ace Attorney Investigations Collection DEMO",010033401E68E000,status-playable,playable,2024-09-07 06:16:42.000 +"Ace Combat 7 - Skies Unknown Deluxe Edition",010039301B7E0000,gpu;status-ingame;UE4,ingame,2024-09-27 14:31:43.000 +"Ace of Seafood",0100FF1004D56000,status-playable,playable,2022-07-19 15:32:25.000 +"Aces of the Luftwaffe Squadron",,nvdec;slow;status-playable,playable,2020-05-27 12:29:42.000 +"Aces of the Luftwaffe Squadron Demo",010054300D822000,nvdec;status-playable,playable,2021-02-09 13:12:28.000 +"ACORN Tactics",0100DBC0081A4000,status-playable,playable,2021-02-22 12:57:40.000 +"Across the Grooves",,status-playable,playable,2020-06-27 12:29:51.000 +"Acthung! Cthulhu Tactics",,status-playable,playable,2020-12-14 18:40:27.000 +"Active Neurons",010039A010DA0000,status-playable,playable,2021-01-27 21:31:21.000 +"Active Neurons 2",01000D1011EF0000,status-playable,playable,2022-10-07 16:21:42.000 +"Active Neurons 2 Demo",010031C0122B0000,status-playable,playable,2021-02-09 13:40:21.000 +"Active Neurons 3",0100EE1013E12000,status-playable,playable,2021-03-24 12:20:20.000 +"Actual Sunlight",,gpu;status-ingame,ingame,2020-12-14 17:18:41.000 +"Adam's Venture: Origins",0100C0C0040E4000,status-playable,playable,2021-03-04 18:43:57.000 +"Adrenaline Rush - Miami Drive",,status-playable,playable,2020-12-12 22:49:50.000 +"Advance Wars 1+2: Re-Boot Camp",0100300012F2A000,status-playable,playable,2024-01-30 18:19:44.000 +"Adventure Llama",,status-playable,playable,2020-12-14 19:32:24.000 +"Adventure Pinball Bundle",,slow;status-playable,playable,2020-12-14 20:31:53.000 +"Adventures of Bertram Fiddle: Episode 1: A Dreadly Business",01003B400A00A000,status-playable;nvdec,playable,2022-09-17 11:07:56.000 +"Adventures of Chris",,status-playable,playable,2020-12-12 23:00:02.000 +"Adventures of Chris Demo",0100A0A0136E8000,status-playable,playable,2021-02-09 13:49:21.000 +"Adventures of Pip",,nvdec;status-playable,playable,2020-12-12 22:11:55.000 +"ADVERSE",01008C901266E000,UE4;status-playable,playable,2021-04-26 14:32:51.000 +"Aegis Defenders Demo",010064500AF72000,status-playable,playable,2021-02-09 14:04:17.000 +"Aegis Defenders0",01008E6006502000,status-playable,playable,2021-02-22 13:29:33.000 +"Aeolis Tournament",,online;status-playable,playable,2020-12-12 22:02:14.000 +"Aeolis Tournament Demo",01006710122CE000,nvdec;status-playable,playable,2021-02-09 14:22:30.000 +"AER - Memories of Old",0100A0400DDE0000,nvdec;status-playable,playable,2021-03-05 18:43:43.000 +"Aerial Knight's Never Yield",0100E9B013D4A000,status-playable,playable,2022-10-25 22:05:00.000 +"Aery",0100875011D0C000,status-playable,playable,2021-03-07 15:25:51.000 +"Aery - Sky Castle",010018E012914000,status-playable,playable,2022-10-21 17:58:49.000 +"Aery - A Journey Beyond Time",0100DF8014056000,status-playable,playable,2021-04-05 15:52:25.000 +"Aery - Broken Memories",0100087012810000,status-playable,playable,2022-10-04 13:11:52.000 +"Aery - Calm Mind - 0100A801539000",,status-playable,playable,2022-11-14 14:26:58.000 +"AeternoBlade Demo Version",0100B1C00949A000,nvdec;status-playable,playable,2021-02-09 14:39:26.000 +"AeternoBlade I",,nvdec;status-playable,playable,2020-12-14 20:06:48.000 +"AeternoBlade II",01009D100EA28000,status-playable;online-broken;UE4;vulkan-backend-bug,playable,2022-09-12 21:11:18.000 +"AeternoBlade II Demo Version",,gpu;nvdec;status-ingame,ingame,2021-02-09 15:10:19.000 +"AFL Evolution 2",01001B400D334000,slow;status-playable;online-broken;UE4,playable,2022-12-07 12:45:56.000 +"Afterparty",0100DB100BBCE000,status-playable,playable,2022-09-22 12:23:19.000 +"Agatha Christie - The ABC Murders",,status-playable,playable,2020-10-27 17:08:23.000 +"Agatha Knife",,status-playable,playable,2020-05-28 12:37:58.000 +"Agent A: A puzzle in disguise",,status-playable,playable,2020-11-16 22:53:27.000 +"Agent A: A puzzle in disguise (Demo)",01008E8012C02000,status-playable,playable,2021-02-09 18:30:41.000 +"Ages of Mages: the Last Keeper",0100E4700E040000,status-playable;vulkan-backend-bug,playable,2022-10-04 11:44:05.000 +"Aggelos",010004D00A9C0000,gpu;status-ingame,ingame,2023-02-19 13:24:23.000 +"Agony",,UE4;crash;status-boots,boots,2020-07-10 16:21:18.000 +"Ai: the Somnium Files",010089B00D09C000,status-playable;nvdec,playable,2022-09-04 14:45:06.000 +"AI: The Somnium Files Demo",0100C1700FB34000,nvdec;status-playable,playable,2021-02-10 12:52:33.000 +"Ailment",,status-playable,playable,2020-12-12 22:30:41.000 +"Air Conflicts: Pacific Carriers",,status-playable,playable,2021-01-04 10:52:50.000 +"Air Hockey",,status-playable,playable,2020-05-28 16:44:37.000 +"Air Missions: HIND",,status-playable,playable,2020-12-13 10:16:45.000 +"Aircraft Evolution",0100E95011FDC000,nvdec;status-playable,playable,2021-06-14 13:30:18.000 +"Airfield Mania Demo",010010A00DB72000,services;status-boots;demo,boots,2022-04-10 03:43:02.000 +"AIRHEART - Tales of Broken Wings",01003DD00BFEE000,status-playable,playable,2021-02-26 15:20:27.000 +"Akane",01007F100DE52000,status-playable;nvdec,playable,2022-07-21 00:12:18.000 +"Akash Path of the Five",,gpu;nvdec;status-ingame,ingame,2020-12-14 22:33:12.000 +"Akihabara - Feel the Rhythm Remixed",010053100B0EA000,status-playable,playable,2021-02-22 14:39:35.000 +"Akuarium",,slow;status-playable,playable,2020-12-12 23:43:36.000 +"Akuto",,status-playable,playable,2020-08-04 19:43:27.000 +"Alchemic Jousts",0100F5400AB6C000,gpu;status-ingame,ingame,2022-12-08 15:06:28.000 +"Alchemist's Castle",,status-playable,playable,2020-12-12 23:54:08.000 +"Alder's Blood",,status-playable,playable,2020-08-28 15:15:23.000 +"Alder's Blood Prologue",01004510110C4000,crash;status-ingame,ingame,2021-02-09 19:03:03.000 +"Aldred - Knight of Honor",01000E000EEF8000,services;status-playable,playable,2021-11-30 01:49:17.000 +"Alex Kidd in Miracle World DX",010025D01221A000,status-playable,playable,2022-11-14 15:01:34.000 +"Alien Cruise",,status-playable,playable,2020-08-12 13:56:05.000 +"Alien Escape",,status-playable,playable,2020-06-03 23:43:18.000 +"Alien: Isolation",010075D00E8BA000,status-playable;nvdec;vulkan-backend-bug,playable,2022-09-17 11:48:41.000 +"All Walls Must Fall",0100CBD012FB6000,status-playable;UE4,playable,2022-10-15 19:16:30.000 +"All-Star Fruit Racing",0100C1F00A9B8000,status-playable;nvdec;UE4,playable,2022-07-21 00:35:37.000 +"Alluris",0100AC501122A000,gpu;status-ingame;UE4,ingame,2023-08-02 23:13:50.000 +"Almightree the Last Dreamer",,slow;status-playable,playable,2020-12-15 13:59:03.000 +"Along the Edge",,status-playable,playable,2020-11-18 15:00:07.000 +"Alpaca Ball: Allstars",,nvdec;status-playable,playable,2020-12-11 12:26:29.000 +"ALPHA",,status-playable,playable,2020-12-13 12:17:45.000 +"Alphaset by POWGI",,status-playable,playable,2020-12-15 15:15:15.000 +"Alt-Frequencies",,status-playable,playable,2020-12-15 19:01:33.000 +"Alteric",,status-playable,playable,2020-11-08 13:53:22.000 +"Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz",,status-playable,playable,2020-08-31 14:17:42.000 +"Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz Trial version",0100A8A00D27E000,status-playable,playable,2021-02-10 13:33:59.000 +"Aluna: Sentinel of the Shards",010045201487C000,status-playable;nvdec,playable,2022-10-25 22:17:03.000 +"Alwa's Awakening",,status-playable,playable,2020-10-13 11:52:01.000 +"Alwa's Legacy",,status-playable,playable,2020-12-13 13:00:57.000 +"American Fugitive",,nvdec;status-playable,playable,2021-01-04 20:45:11.000 +"American Ninja Warrior: Challenge",010089D00A3FA000,nvdec;status-playable,playable,2021-06-09 13:11:17.000 +"Amnesia: Collection",01003CC00D0BE000,status-playable,playable,2022-10-04 13:36:15.000 +"Amoeba Battle - Microscopic RTS Action",010041D00DEB2000,status-playable,playable,2021-05-06 13:33:41.000 +"Among the Sleep - Enhanced Edition",010046500C8D2000,nvdec;status-playable,playable,2021-06-03 15:06:25.000 +"Among Us",0100B0C013912000,status-menus;online;ldn-broken,menus,2021-09-22 15:20:17.000 +"Anarcute",010050900E1C6000,status-playable,playable,2021-02-22 13:17:59.000 +"Ancestors Legacy",01009EE0111CC000,status-playable;nvdec;UE4,playable,2022-10-01 12:25:36.000 +"Ancient Rush 2",,UE4;crash;status-menus,menus,2020-07-14 14:58:47.000 +"Angels of Death",0100AE000AEBC000,nvdec;status-playable,playable,2021-02-22 14:17:15.000 +"AngerForce: Reloaded for Nintendo Switch",010001E00A5F6000,status-playable,playable,2022-07-21 10:37:17.000 +"Angry Bunnies: Colossal Carrot Crusade",0100F3500D05E000,status-playable;online-broken,playable,2022-09-04 14:53:26.000 +"Angry Video Game Nerd I & II Deluxe",,crash;status-ingame,ingame,2020-12-12 23:59:54.000 +"Anima Gate of Memories: The Nameless Chronicles",01007A400B3F8000,status-playable,playable,2021-06-14 14:33:06.000 +"Anima: Arcane Edition",010033F00B3FA000,nvdec;status-playable,playable,2021-01-26 16:55:51.000 +"Anima: Gate of Memories",0100706005B6A000,nvdec;status-playable,playable,2021-06-16 18:13:18.000 +"Animal Crossing New Horizons Island Transfer Tool",0100F38011CFE000,services;status-ingame;Needs Update;Incomplete,ingame,2022-12-07 13:51:19.000 +"Animal Crossing: New Horizons",01006F8002326000,gpu;status-ingame;crash;nvdec;online-broken;ldn-works;mac-bug,ingame,2024-09-23 13:31:49.000 +"Animal Fight Club",,gpu;status-ingame,ingame,2020-12-13 13:13:33.000 +"Animal Fun for Toddlers and Kids",,services;status-boots,boots,2020-12-15 16:45:29.000 +"Animal Hunter Z",,status-playable,playable,2020-12-13 12:50:35.000 +"Animal Pairs - Matching & Concentration Game for Toddlers & Kids",010033C0121DC000,services;status-boots,boots,2021-11-29 23:43:14.000 +"Animal Rivals Switch",010065B009B3A000,status-playable,playable,2021-02-22 14:02:42.000 +"Animal Super Squad",0100EFE009424000,UE4;status-playable,playable,2021-04-23 20:50:50.000 +"Animal Up",,status-playable,playable,2020-12-13 15:39:02.000 +"ANIMAL WELL",010020D01AD24000,status-playable,playable,2024-05-22 18:01:49.000 +"Animals for Toddlers",,services;status-boots,boots,2020-12-15 17:27:27.000 +"Animated Jigsaws Collection",,nvdec;status-playable,playable,2020-12-15 15:58:34.000 +"Animated Jigsaws: Beautiful Japanese Scenery DEMO",0100A1900B5B8000,nvdec;status-playable,playable,2021-02-10 13:49:56.000 +"Anime Studio Story",,status-playable,playable,2020-12-15 18:14:05.000 +"Anime Studio Story Demo",01002B300EB86000,status-playable,playable,2021-02-10 14:50:39.000 +"ANIMUS",,status-playable,playable,2020-12-13 15:11:47.000 +"Animus: Harbinger",0100E5A00FD38000,status-playable,playable,2022-09-13 22:09:20.000 +"Ankh Guardian - Treasure of the Demon's Temple",,status-playable,playable,2020-12-13 15:55:49.000 +"Anode",,status-playable,playable,2020-12-15 17:18:58.000 +"Another Code: Recollection",0100CB9018F5A000,gpu;status-ingame;crash,ingame,2024-09-06 05:58:52.000 +"Another Sight",,UE4;gpu;nvdec;status-ingame,ingame,2020-12-03 16:49:59.000 +"Another World",01003C300AAAE000,slow;status-playable,playable,2022-07-21 10:42:38.000 +"AnShi",01000FD00DF78000,status-playable;nvdec;UE4,playable,2022-10-21 19:37:01.000 +"Anthill",010054C00D842000,services;status-menus;nvdec,menus,2021-11-18 09:25:25.000 +"Anti-Hero Bundle",0100596011E20000,status-playable;nvdec,playable,2022-10-21 20:10:30.000 +"Antiquia Lost",,status-playable,playable,2020-05-28 11:57:32.000 +"Antventor",,nvdec;status-playable,playable,2020-12-15 20:09:27.000 +"Ao no Kanata no Four Rhythm",0100FA100620C000,status-playable,playable,2022-07-21 10:50:42.000 +"AO Tennis 2",010047000E9AA000,status-playable;online-broken,playable,2022-09-17 12:05:07.000 +"Aokana - Four Rhythms Across the Blue",0100990011866000,status-playable,playable,2022-10-04 13:50:26.000 +"Ape Out",01005B100C268000,status-playable,playable,2022-09-26 19:04:47.000 +"APE OUT DEMO",010054500E6D4000,status-playable,playable,2021-02-10 14:33:06.000 +"Aperion Cyberstorm",,status-playable,playable,2020-12-14 00:40:16.000 +"Aperion Cyberstorm Demo",01008CA00D71C000,status-playable,playable,2021-02-10 15:53:21.000 +"Apocalipsis",,deadlock;status-menus,menus,2020-05-27 12:56:37.000 +"Apocryph",,gpu;status-ingame,ingame,2020-12-13 23:24:10.000 +"Apparition",,nvdec;slow;status-ingame,ingame,2020-12-13 23:57:04.000 +"AQUA KITTY UDX",0100AC10085CE000,online;status-playable,playable,2021-04-12 15:34:11.000 +"Aqua Lungers",,crash;status-ingame,ingame,2020-12-14 11:25:57.000 +"Aqua Moto Racing Utopia",0100D0D00516A000,status-playable,playable,2021-02-21 21:21:00.000 +"Aragami: Shadow Edition",010071800BA74000,nvdec;status-playable,playable,2021-02-21 20:33:23.000 +"Arc of Alchemist",0100C7D00E6A0000,status-playable;nvdec,playable,2022-10-07 19:15:54.000 +"Arcade Archives 10-Yard Fight",0100BE80097FA000,online;status-playable,playable,2021-03-25 21:26:41.000 +"Arcade Archives ALPHA MISSION",01005DD00BE08000,online;status-playable,playable,2021-04-15 09:20:43.000 +"Arcade Archives ALPINE SKI",010083800DC70000,online;status-playable,playable,2021-04-15 09:28:46.000 +"Arcade Archives ARGUS",010014F001DE2000,online;status-playable,playable,2021-04-16 06:51:25.000 +"Arcade Archives Armed F",010014F001DE2000,online;status-playable,playable,2021-04-16 07:00:17.000 +"Arcade Archives ATHENA",0100BEC00C7A2000,online;status-playable,playable,2021-04-16 07:10:12.000 +"Arcade Archives Atomic Robo-Kid",0100426001DE4000,online;status-playable,playable,2021-04-16 07:20:29.000 +"Arcade Archives BOMB JACK",0100192009824000,online;status-playable,playable,2021-04-16 09:48:26.000 +"Arcade Archives City CONNECTION",010007A00980C000,online;status-playable,playable,2021-03-25 22:16:15.000 +"Arcade Archives CLU CLU LAND",0100EDC00E35A000,online;status-playable,playable,2021-04-16 10:00:42.000 +"Arcade Archives CRAZY CLIMBER",0100BB1001DD6000,online;status-playable,playable,2021-03-25 22:24:15.000 +"Arcade Archives DONKEY KONG",,Needs Update;crash;services;status-menus,menus,2021-03-24 18:18:43.000 +"Arcade Archives DOUBLE DRAGON",0100F25001DD0000,online;status-playable,playable,2021-03-25 22:44:34.000 +"Arcade Archives DOUBLE DRAGON II The Revenge",01009E3001DDE000,online;status-playable,playable,2021-04-12 16:05:29.000 +"Arcade Archives FRONT LINE",0100496006EC8000,online;status-playable,playable,2021-05-05 14:10:49.000 +"Arcade Archives HEROIC EPISODE",01009A4008A30000,online;status-playable,playable,2021-03-25 23:01:26.000 +"Arcade Archives ICE CLIMBER",01007D200D3FC000,online;status-playable,playable,2021-05-05 14:18:34.000 +"Arcade Archives IKARI WARRIORS",010049400C7A8000,online;status-playable,playable,2021-05-05 14:24:46.000 +"Arcade Archives Ikki",01000DB00980A000,online;status-playable,playable,2021-03-25 23:11:28.000 +"Arcade Archives IMAGE FIGHT",010008300C978000,online;status-playable,playable,2021-05-05 14:31:21.000 +"Arcade Archives Kid Niki Radical Ninja",010010B008A36000,audio;status-ingame;online,ingame,2022-07-21 11:02:04.000 +"Arcade Archives Kid's Horehore Daisakusen",0100E7C001DE0000,online;status-playable,playable,2021-04-12 16:21:29.000 +"Arcade Archives LIFE FORCE",,status-playable,playable,2020-09-04 13:26:25.000 +"Arcade Archives MARIO BROS.",0100755004608000,online;status-playable,playable,2021-03-26 11:31:32.000 +"Arcade Archives MOON CRESTA",01000BE001DD8000,online;status-playable,playable,2021-05-05 14:39:29.000 +"Arcade Archives MOON PATROL",01003000097FE000,online;status-playable,playable,2021-03-26 11:42:04.000 +"Arcade Archives NINJA GAIDEN",01003EF00D3B4000,audio;online;status-ingame,ingame,2021-04-12 16:27:53.000 +"Arcade Archives Ninja Spirit",01002F300D2C6000,online;status-playable,playable,2021-05-05 14:45:31.000 +"Arcade Archives Ninja-Kid",,online;status-playable,playable,2021-03-26 20:55:07.000 +"Arcade Archives OMEGA FIGHTER",,crash;services;status-menus,menus,2020-08-18 20:50:54.000 +"Arcade Archives PLUS ALPHA",,audio;status-ingame,ingame,2020-07-04 20:47:55.000 +"Arcade Archives POOYAN",0100A6E00D3F8000,online;status-playable,playable,2021-05-05 17:58:19.000 +"Arcade Archives PSYCHO SOLDIER",01000D200C7A4000,online;status-playable,playable,2021-05-05 18:02:19.000 +"Arcade Archives PUNCH-OUT!!",01001530097F8000,online;status-playable,playable,2021-03-25 22:10:55.000 +"Arcade Archives Renegade",010081E001DD2000,status-playable;online,playable,2022-07-21 11:45:40.000 +"Arcade Archives ROAD FIGHTER",0100FBA00E35C000,online;status-playable,playable,2021-05-05 18:09:17.000 +"Arcade Archives ROUTE 16",010060000BF7C000,online;status-playable,playable,2021-05-05 18:40:41.000 +"Arcade Archives RYGAR",0100C2D00981E000,online;status-playable,playable,2021-04-15 08:48:30.000 +"Arcade Archives Shusse Ozumo",01007A4009834000,online;status-playable,playable,2021-05-05 17:52:25.000 +"Arcade Archives Sky Skipper",010008F00B054000,online;status-playable,playable,2021-04-15 08:58:09.000 +"Arcade Archives Solomon's Key",01008C900982E000,online;status-playable,playable,2021-04-19 16:27:18.000 +"Arcade Archives STAR FORCE",010069F008A38000,online;status-playable,playable,2021-04-15 08:39:09.000 +"Arcade Archives TERRA CRESTA",,crash;services;status-menus,menus,2020-08-18 20:20:55.000 +"Arcade Archives TERRA FORCE",0100348001DE6000,online;status-playable,playable,2021-04-16 20:03:27.000 +"Arcade Archives TETRIS THE GRAND MASTER",0100DFD016B7A000,status-playable,playable,2024-06-23 01:50:29.000 +"Arcade Archives THE NINJA WARRIORS",0100DC000983A000,online;slow;status-ingame,ingame,2021-04-16 19:54:56.000 +"Arcade Archives TIME PILOT",0100AF300D2E8000,online;status-playable,playable,2021-04-16 19:22:31.000 +"Arcade Archives Traverse USA",010029D006ED8000,online;status-playable,playable,2021-04-15 08:11:06.000 +"Arcade Archives URBAN CHAMPION",010042200BE0C000,online;status-playable,playable,2021-04-16 10:20:03.000 +"Arcade Archives VS. GRADIUS",01004EC00E634000,online;status-playable,playable,2021-04-12 14:53:58.000 +"Arcade Archives VS. SUPER MARIO BROS.",,online;status-playable,playable,2021-04-08 14:48:11.000 +"Arcade Archives WILD WESTERN",01001B000D8B6000,online;status-playable,playable,2021-04-16 10:11:36.000 +"Arcade Classics Anniversary Collection",010050000D6C4000,status-playable,playable,2021-06-03 13:55:10.000 +"ARCADE FUZZ",,status-playable,playable,2020-08-15 12:37:36.000 +"Arcade Spirits",,status-playable,playable,2020-06-21 11:45:03.000 +"Arcaea",0100E680149DC000,status-playable,playable,2023-03-16 19:31:21.000 +"Arcanoid Breakout",0100E53013E1C000,status-playable,playable,2021-01-25 23:28:02.000 +"Archaica: Path of LightInd",,crash;status-nothing,nothing,2020-10-16 13:22:26.000 +"Area 86",,status-playable,playable,2020-12-16 16:45:52.000 +"ARIA CHRONICLE",0100691013C46000,status-playable,playable,2022-11-16 13:50:55.000 +"Ark: Survival Evolved",0100D4A00B284000,gpu;status-ingame;nvdec;online-broken;UE4;ldn-untested,ingame,2024-04-16 00:53:56.000 +"Arkanoid vs Space Invaders",,services;status-ingame,ingame,2021-01-21 12:50:30.000 +"Arkham Horror: Mother's Embrace",010069A010606000,nvdec;status-playable,playable,2021-04-19 15:40:55.000 +"Armed 7 DX",,status-playable,playable,2020-12-14 11:49:56.000 +"Armello",,nvdec;status-playable,playable,2021-01-07 11:43:26.000 +"ARMS",01009B500007C000,status-playable;ldn-works;LAN,playable,2024-08-28 07:49:24.000 +"ARMS Demo",,status-playable,playable,2021-02-10 16:30:13.000 +"Arrest of a stone Buddha",0100184011B32000,status-nothing;crash,nothing,2022-12-07 16:55:00.000 +"Arrog",,status-playable,playable,2020-12-16 17:20:50.000 +"Art of Balance",01008EC006BE2000,gpu;status-ingame;ldn-works,ingame,2022-07-21 17:13:57.000 +"Art of Balance DEMO",010062F00CAE2000,gpu;slow;status-ingame,ingame,2021-02-10 17:17:12.000 +"Art Sqool",01006AA013086000,status-playable;nvdec,playable,2022-10-16 20:42:37.000 +"Artifact Adventure Gaiden DX",,status-playable,playable,2020-12-16 17:49:25.000 +"Ary and the Secret of Seasons",0100C2500CAB6000,status-playable,playable,2022-10-07 20:45:09.000 +"ASCENDANCE",,status-playable,playable,2021-01-05 10:54:40.000 +"Asemblance",,UE4;gpu;status-ingame,ingame,2020-12-16 18:01:23.000 +"Ash of Gods: Redemption",,deadlock;status-nothing,nothing,2020-08-10 18:08:32.000 +"Ashen",010027B00E40E000,status-playable;nvdec;online-broken;UE4,playable,2022-09-17 12:19:14.000 +"Asphalt 9: Legends",01007B000C834000,services;status-menus;crash;online-broken,menus,2022-12-07 13:28:29.000 +"Assassin's Creed III Remastered",01007F600B134000,status-boots;nvdec,boots,2024-06-25 20:12:11.000 +"Assassin's Creed The Rebel Collection",010044700DEB0000,gpu;status-ingame,ingame,2024-05-19 07:58:56.000 +"Assault Android Cactus+",0100DF200B24C000,status-playable,playable,2021-06-03 13:23:55.000 +"Assault Chainguns KM",,crash;gpu;status-ingame,ingame,2020-12-14 12:48:34.000 +"Assault on Metaltron Demo",0100C5E00E540000,status-playable,playable,2021-02-10 19:48:06.000 +"Astebreed",010057A00C1F6000,status-playable,playable,2022-07-21 17:33:54.000 +"Asterix & Obelix XXL 2",010050400BD38000,deadlock;status-ingame;nvdec,ingame,2022-07-21 17:54:14.000 +"Asterix & Obelix XXL: Romastered",0100F46011B50000,gpu;status-ingame;nvdec;opengl,ingame,2023-08-16 21:22:06.000 +"Asterix & Obelix XXL3: The Crystal Menhir",010081500EA1E000,gpu;status-ingame;nvdec;regression,ingame,2022-11-28 14:19:23.000 +"Astral Chain",01007300020FA000,status-playable,playable,2024-07-17 18:02:19.000 +"Astro Bears Party",,status-playable,playable,2020-05-28 11:21:58.000 +"Astro Duel Deluxe",0100F0400351C000,32-bit;status-playable,playable,2021-06-03 11:21:48.000 +"Astrologaster",0100B80010C48000,cpu;status-nothing;32-bit;crash,nothing,2023-06-28 15:39:31.000 +"AstroWings SpaceWar",,status-playable,playable,2020-12-14 13:10:44.000 +"Atari 50 The Anniversary Celebration",010099801870E000,slow;status-playable,playable,2022-11-14 19:42:10.000 +"Atelier Ayesha: The Alchemist of Dusk DX",0100D9D00EE8C000,status-menus;crash;nvdec;Needs Update,menus,2021-11-24 07:29:54.000 +"Atelier Escha & Logy: Alchemists Of The Dusk Sky DX",0100E5600EE8E000,status-playable;nvdec,playable,2022-11-20 16:01:41.000 +"Atelier Firis: The Alchemist and the Mysterious Journey DX",010023201421E000,gpu;status-ingame;nvdec,ingame,2022-10-25 22:46:19.000 +"Atelier Lulua ~ The Scion of Arland ~",,nvdec;status-playable,playable,2020-12-16 14:29:19.000 +"Atelier Lydie & Suelle: The Alchemists and the Mysterious Paintings",010009900947A000,nvdec;status-playable,playable,2021-06-03 18:37:01.000 +"Atelier Meruru ~ The Apprentice of Arland ~ DX",,nvdec;status-playable,playable,2020-06-12 00:50:48.000 +"Atelier Rorona - The Alchemist of Arland - DX",010088600C66E000,nvdec;status-playable,playable,2021-04-08 15:33:15.000 +"Atelier Rorona Arland no Renkinjutsushi DX (JP)",01002D700B906000,status-playable;nvdec,playable,2022-12-02 17:26:54.000 +"Atelier Ryza 2: Lost Legends & the Secret Fairy",01009A9012022000,status-playable,playable,2022-10-16 21:06:06.000 +"Atelier Ryza: Ever Darkness & the Secret Hideout",0100D1900EC80000,status-playable,playable,2023-10-15 16:36:50.000 +"Atelier Shallie: Alchemists of the Dusk Sea DX",,nvdec;status-playable,playable,2020-11-25 20:54:12.000 +"Atelier Sophie 2: The Alchemist of the Mysterious Dream",010082A01538E000,status-ingame;crash,ingame,2022-12-01 04:34:03.000 +"Atelier Sophie: The Alchemist of the Mysterious Book DX",01001A5014220000,status-playable,playable,2022-10-25 23:06:20.000 +"Atelier Totori ~ The Adventurer of Arland ~ DX",,nvdec;status-playable,playable,2020-06-12 01:04:56.000 +"ATOM RPG",0100B9400FA38000,status-playable;nvdec,playable,2022-10-22 10:11:48.000 +"Atomic Heist",01005FE00EC4E000,status-playable,playable,2022-10-16 21:24:32.000 +"Atomicrops",0100AD30095A4000,status-playable,playable,2022-08-06 10:05:07.000 +"ATOMIK RunGunJumpGun",,status-playable,playable,2020-12-14 13:19:24.000 +"ATOMINE",,gpu;nvdec;slow;status-playable,playable,2020-12-14 18:56:50.000 +"Attack of the Toy Tanks",,slow;status-ingame,ingame,2020-12-14 12:59:12.000 +"Attack on Titan 2",,status-playable,playable,2021-01-04 11:40:01.000 +"ATV Drift & Tricks",01000F600B01E000,UE4;online;status-playable,playable,2021-04-08 17:29:17.000 +"Automachef",,status-playable,playable,2020-12-16 19:51:25.000 +"Automachef Demo",01006B700EA6A000,status-playable,playable,2021-02-10 20:35:37.000 +"Aviary Attorney: Definitive Edition",,status-playable,playable,2020-08-09 20:32:12.000 +"Avicii Invector",,status-playable,playable,2020-10-25 12:12:56.000 +"AVICII Invector Demo",0100E100128BA000,status-playable,playable,2021-02-10 21:04:58.000 +"AvoCuddle",,status-playable,playable,2020-09-02 14:50:13.000 +"Awakening of Cthulhu",0100085012D64000,UE4;status-playable,playable,2021-04-26 13:03:07.000 +"Away: Journey to the Unexpected",01002F1005F3C000,status-playable;nvdec;vulkan-backend-bug,playable,2022-11-06 15:31:04.000 +"Awesome Pea",,status-playable,playable,2020-10-11 12:39:23.000 +"Awesome Pea (Demo)",010023800D3F2000,status-playable,playable,2021-02-10 21:48:21.000 +"Awesome Pea 2",0100B7D01147E000,status-playable,playable,2022-10-01 12:34:19.000 +"Awesome Pea 2 (Demo) - 0100D2011E28000",,crash;status-nothing,nothing,2021-02-10 22:08:27.000 +"Axes",0100DA3011174000,status-playable,playable,2021-04-08 13:01:58.000 +"Axiom Verge",,status-playable,playable,2020-10-20 01:07:18.000 +"Ayakashi koi gikyoku Free Trial",010075400DEC6000,status-playable,playable,2021-02-10 22:22:11.000 +"Azur Lane: Crosswave",01006AF012FC8000,UE4;nvdec;status-playable,playable,2021-04-05 15:15:25.000 +"Azuran Tales: Trials",,status-playable,playable,2020-08-12 15:23:07.000 +"Azure Reflections",01006FB00990E000,nvdec;online;status-playable,playable,2021-04-08 13:18:25.000 +"Azure Striker GUNVOLT 3",01004E90149AA000,status-playable,playable,2022-08-10 13:46:49.000 +"Azure Striker Gunvolt: STRIKER PACK",0100192003FA4000,32-bit;status-playable,playable,2024-02-10 23:51:21.000 +"Azurebreak Heroes",,status-playable,playable,2020-12-16 21:26:17.000 +"B.ARK",01009B901145C000,status-playable;nvdec,playable,2022-11-17 13:35:02.000 +"Baba Is You",01002CD00A51C000,status-playable,playable,2022-07-17 05:36:54.000 +"Back to Bed",,nvdec;status-playable,playable,2020-12-16 20:52:04.000 +"Backworlds",0100FEA014316000,status-playable,playable,2022-10-25 23:20:34.000 +"BaconMan",0100EAF00E32E000,status-menus;crash;nvdec,menus,2021-11-20 02:36:21.000 +"Bad Dream: Coma",01000CB00D094000,deadlock;status-boots,boots,2023-08-03 00:54:18.000 +"Bad Dream: Fever",0100B3B00D81C000,status-playable,playable,2021-06-04 18:33:12.000 +"Bad Dudes",,status-playable,playable,2020-12-10 12:30:56.000 +"Bad North",0100E98006F22000,status-playable,playable,2022-07-17 13:44:25.000 +"Bad North Demo",,status-playable,playable,2021-02-10 22:48:38.000 +"BAFL",,status-playable,playable,2021-01-13 08:32:51.000 +"Baila Latino",010076B011EC8000,status-playable,playable,2021-04-14 16:40:24.000 +"Bakugan Champions of Vestroia",,status-playable,playable,2020-11-06 19:07:39.000 +"Bakumatsu Renka SHINSENGUMI",01008260138C4000,status-playable,playable,2022-10-25 23:37:31.000 +"Balan Wonderworld",0100438012EC8000,status-playable;nvdec;UE4,playable,2022-10-22 13:08:43.000 +"Balan Wonderworld Demo",0100E48013A34000,gpu;services;status-ingame;UE4;demo,ingame,2023-02-16 20:05:07.000 +"Balatro",0100CD801CE5E000,status-ingame,ingame,2024-04-21 02:01:53.000 +"Baldur's Gate and Baldur's Gate II: Enhanced Editions",010010A00DA48000,32-bit;status-playable,playable,2022-09-12 23:52:15.000 +"Balthazar's Dreams",0100BC400FB64000,status-playable,playable,2022-09-13 00:13:22.000 +"Bamerang",01008D30128E0000,status-playable,playable,2022-10-26 00:29:39.000 +"Bang Dream Girls Band Party for Nintendo Switch",,status-playable,playable,2021-09-19 03:06:58.000 +"Banner of the Maid",010013C010C5C000,status-playable,playable,2021-06-14 15:23:37.000 +"Banner Saga 2",,crash;status-boots,boots,2021-01-13 08:56:09.000 +"Banner Saga 3",,slow;status-boots,boots,2021-01-11 16:53:57.000 +"Banner Saga Trilogy",0100CE800B94A000,slow;status-playable,playable,2024-03-06 11:25:20.000 +"Baobabs Mauseoleum Ep 1: Ovnifagos Don't Eat Flamingos",,status-playable,playable,2020-07-15 05:06:29.000 +"Baobabs Mausoleum Ep.3: Un Pato en Muertoburgo",,nvdec;status-playable,playable,2020-12-17 11:43:10.000 +"Baobabs Mausoleum Ep2: 1313 Barnabas Dead Ends Drive",,status-playable,playable,2020-12-17 11:22:50.000 +"Baobabs Mausoleum: DEMO",0100D3000AEC2000,status-playable,playable,2021-02-10 22:59:25.000 +"Barbarous! Tavern of Emyr",01003350102E2000,status-playable,playable,2022-10-16 21:50:24.000 +"Barbearian",0100F7E01308C000,Needs Update;gpu;status-ingame,ingame,2021-06-28 16:27:50.000 +"Baron: Fur Is Gonna Fly",010039C0106C6000,status-boots;crash,boots,2022-02-06 02:05:43.000 +"Barry Bradford's Putt Panic Party",,nvdec;status-playable,playable,2020-06-17 01:08:34.000 +"Baseball Riot",01004860080A0000,status-playable,playable,2021-06-04 18:07:27.000 +"Bass Pro Shops: The Strike - Championship Edition",0100E3100450E000,gpu;status-boots;32-bit,boots,2022-12-09 15:58:16.000 +"Bastion",010038600B27E000,status-playable,playable,2022-02-15 14:15:24.000 +"Batbarian: Testament of the Primordials",,status-playable,playable,2020-12-17 12:00:59.000 +"Baten Kaitos I & II HD Remaster (Europe/USA)",0100C07018CA6000,services;status-boots;Needs Update,boots,2023-10-01 00:44:32.000 +"Baten Kaitos I & II HD Remaster (Japan)",0100F28018CA4000,services;status-boots;Needs Update,boots,2023-10-24 23:11:54.000 +"Batman - The Telltale Series",,nvdec;slow;status-playable,playable,2021-01-11 18:19:35.000 +"Batman: Arkham City",01003f00163ce000,status-playable,playable,2024-09-11 00:30:19.000 +"Batman: Arkham Knight",0100ACD0163D0000,gpu;status-ingame;mac-bug,ingame,2024-06-25 20:24:42.000 +"Batman: The Enemy Within",,crash;status-nothing,nothing,2020-10-16 05:49:27.000 +"Battle Axe",0100747011890000,status-playable,playable,2022-10-26 00:38:01.000 +"Battle Chasers: Nightwar",,nvdec;slow;status-playable,playable,2021-01-12 12:27:34.000 +"Battle Chef Brigade",,status-playable,playable,2021-01-11 14:16:28.000 +"Battle Chef Brigade Demo",0100DBB00CAEE000,status-playable,playable,2021-02-10 23:15:07.000 +"Battle Hunters",0100A3B011EDE000,gpu;status-ingame,ingame,2022-11-12 09:19:17.000 +"Battle of Kings",,slow;status-playable,playable,2020-12-17 12:45:23.000 +"Battle Planet - Judgement Day",,status-playable,playable,2020-12-17 14:06:20.000 +"Battle Princess Madelyn",,status-playable,playable,2021-01-11 13:47:23.000 +"Battle Princess Madelyn Royal Edition",0100A7500DF64000,status-playable,playable,2022-09-26 19:14:49.000 +"Battle Supremacy - Evolution",010099B00E898000,gpu;status-boots;nvdec,boots,2022-02-17 09:02:50.000 +"Battle Worlds: Kronos",0100DEB00D5A8000,nvdec;status-playable,playable,2021-06-04 17:48:02.000 +"Battleground",0100650010DD4000,status-ingame;crash,ingame,2021-09-06 11:53:23.000 +"BATTLESLOTHS",,status-playable,playable,2020-10-03 08:32:22.000 +"BATTLESTAR GALACTICA Deadlock",,nvdec;status-playable,playable,2020-06-27 17:35:44.000 +"Battlezone Gold Edition",01006D800A988000,gpu;ldn-untested;online;status-boots,boots,2021-06-04 18:36:05.000 +"BATTLLOON",,status-playable,playable,2020-12-17 15:48:23.000 +"bayala - the game",0100194010422000,status-playable,playable,2022-10-04 14:09:25.000 +"Bayonetta",010076F0049A2000,status-playable;audout,playable,2022-11-20 15:51:59.000 +"Bayonetta 2",01007960049A0000,status-playable;nvdec;ldn-works;LAN,playable,2022-11-26 03:46:09.000 +"Bayonetta 3",01004A4010FEA000,gpu;status-ingame;crash;nvdec;vulkan-backend-bug;opengl-backend-bug;amd-vendor-bug;ASTC,ingame,2024-09-28 14:34:33.000 +"Bayonetta Origins Cereza and the Lost Demon Demo",010002801A3FA000,gpu;status-ingame;demo,ingame,2024-02-17 06:06:28.000 +"Bayonetta Origins: Cereza and the Lost Demon",0100CF5010FEC000,gpu;status-ingame,ingame,2024-02-27 01:39:49.000 +"Be-A Walker",,slow;status-ingame,ingame,2020-09-02 15:00:31.000 +"Beach Buggy Racing",010095C00406C000,online;status-playable,playable,2021-04-13 23:16:50.000 +"Bear With Me - The Lost Robots",010020700DE04000,nvdec;status-playable,playable,2021-02-27 14:20:10.000 +"Bear With Me - The Lost Robots Demo",010024200E97E800,nvdec;status-playable,playable,2021-02-12 22:38:12.000 +"Bear's Restaurant - 0100CE014A4E000",,status-playable,playable,2024-08-11 21:26:59.000 +"BEAST Darling! ~Kemomimi Danshi to Himitsu no Ryou~",,crash;status-menus,menus,2020-10-04 06:12:08.000 +"Beat Cop",,status-playable,playable,2021-01-06 19:26:48.000 +"Beat Me!",01002D20129FC000,status-playable;online-broken,playable,2022-10-16 21:59:26.000 +"Beautiful Desolation",01006B0014590000,gpu;status-ingame;nvdec,ingame,2022-10-26 10:34:38.000 +"Bee Simulator",,UE4;crash;status-boots,boots,2020-07-15 12:13:13.000 +"BeeFense BeeMastered",010018F007786000,status-playable,playable,2022-11-17 15:38:12.000 +"Behold the Kickmen",,status-playable,playable,2020-06-27 12:49:45.000 +"Beholder",,status-playable,playable,2020-10-16 12:48:58.000 +"Ben 10",01006E1004404000,nvdec;status-playable,playable,2021-02-26 14:08:35.000 +"Ben 10: Power Trip",01009CD00E3AA000,status-playable;nvdec,playable,2022-10-09 10:52:12.000 +"Bendy and the Ink Machine",010074500BBC4000,status-playable,playable,2023-05-06 20:35:39.000 +"Bertram Fiddle Episode 2: A Bleaker Predicklement",010021F00C1C0000,nvdec;status-playable,playable,2021-02-22 14:56:37.000 +"Beyblade Burst Battle Zero",010068600AD16000,services;status-menus;crash;Needs Update,menus,2022-11-20 15:48:32.000 +"Beyond Enemy Lines: Covert Operations",010056500CAD8000,status-playable;UE4,playable,2022-10-01 13:11:50.000 +"Beyond Enemy Lines: Essentials",0100B8F00DACA000,status-playable;nvdec;UE4,playable,2022-09-26 19:48:16.000 +"Bibi & Tina - Adventures with Horses",,nvdec;slow;status-playable,playable,2021-01-13 08:58:09.000 +"Bibi & Tina at the horse farm",010062400E69C000,status-playable,playable,2021-04-06 16:31:39.000 +"Bibi Blocksberg - Big Broom Race 3",,status-playable,playable,2021-01-11 19:07:16.000 +"Big Buck Hunter Arcade",,nvdec;status-playable,playable,2021-01-12 20:31:39.000 +"Big Crown: Showdown",010088100C35E000,status-menus;nvdec;online;ldn-untested,menus,2022-07-17 18:25:32.000 +"Big Dipper",0100A42011B28000,status-playable,playable,2021-06-14 15:08:19.000 +"Big Drunk Satanic Massacre",01002FA00DE72000,status-playable,playable,2021-03-04 21:28:22.000 +"Big Pharma",,status-playable,playable,2020-07-14 15:27:30.000 +"BIG-Bobby-Car - The Big Race",,slow;status-playable,playable,2020-12-10 14:25:06.000 +"Billion Road",010057700FF7C000,status-playable,playable,2022-11-19 15:57:43.000 +"BINGO for Nintendo Switch",,status-playable,playable,2020-07-23 16:17:36.000 +"Biomutant",01004BA017CD6000,status-ingame;crash,ingame,2024-05-16 15:46:36.000 +"BioShock 2 Remastered",01002620102C6000,services;status-nothing,nothing,2022-10-29 14:39:22.000 +"BioShock Infinite: The Complete Edition",0100D560102C8000,services-horizon;status-nothing;crash,nothing,2024-08-11 21:35:01.000 +"BioShock Remastered",0100AD10102B2000,services-horizon;status-boots;crash;Needs Update,boots,2024-06-06 01:08:52.000 +"Biped",010053B0117F8000,status-playable;nvdec,playable,2022-10-01 13:32:58.000 +"Bird Game +",01001B700B278000,status-playable;online,playable,2022-07-17 18:41:57.000 +"Birds and Blocks Demo",0100B6B012FF4000,services;status-boots;demo,boots,2022-04-10 04:53:03.000 +"BIT.TRIP RUNNER",0100E62012D3C000,status-playable,playable,2022-10-17 14:23:24.000 +"BIT.TRIP VOID",01000AD012D3A000,status-playable,playable,2022-10-17 14:31:23.000 +"Bite the Bullet",,status-playable,playable,2020-10-14 23:10:11.000 +"Bitmaster",010026E0141C8000,status-playable,playable,2022-12-13 14:05:51.000 +"Biz Builder Delux",,slow;status-playable,playable,2020-12-15 21:36:25.000 +"Black Book",0100DD1014AB8000,status-playable;nvdec,playable,2022-12-13 16:38:53.000 +"Black Future '88",010049000B69E000,status-playable;nvdec,playable,2022-09-13 11:24:37.000 +"Black Hole Demo",01004BE00A682000,status-playable,playable,2021-02-12 23:02:17.000 +"Black Legend",0100C3200E7E6000,gpu;status-ingame;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-10-22 12:54:48.000 +"Blackjack Hands",,status-playable,playable,2020-11-30 14:04:51.000 +"Blackmoor2",0100A0A00E660000,status-playable;online-broken,playable,2022-09-26 20:26:34.000 +"Blacksad: Under the Skin",010032000EA2C000,status-playable,playable,2022-09-13 11:38:04.000 +"Blacksea Odyssey",01006B400C178000,status-playable;nvdec,playable,2022-10-16 22:14:34.000 +"Blacksmith of the Sand Kingdom",010068E013450000,status-playable,playable,2022-10-16 22:37:44.000 +"BLADE ARCUS Rebellion From Shining",0100C4400CB7C000,status-playable,playable,2022-07-17 18:52:28.000 +"Blade Assault",0100EA1018A2E000,audio;status-nothing,nothing,2024-04-29 14:32:50.000 +"Blade II The Return of Evil",01009CC00E224000,audio;status-ingame;crash;UE4,ingame,2021-11-14 02:49:59.000 +"Blade Strangers",01005950022EC000,status-playable;nvdec,playable,2022-07-17 19:02:43.000 +"Bladed Fury",0100DF0011A6A000,status-playable,playable,2022-10-26 11:36:26.000 +"Blades of Time",0100CFA00CC74000,deadlock;status-boots;online,boots,2022-07-17 19:19:58.000 +"Blair Witch",01006CC01182C000,status-playable;nvdec;UE4,playable,2022-10-01 14:06:16.000 +"Blanc",010039501405E000,gpu;slow;status-ingame,ingame,2023-02-22 14:00:13.000 +"Blasphemous",0100698009C6E000,nvdec;status-playable,playable,2021-03-01 12:15:31.000 +"Blasphemous Demo",0100302010338000,status-playable,playable,2021-02-12 23:49:56.000 +"Blaster Master Zero",0100225000FEE000,32-bit;status-playable,playable,2021-03-05 13:22:33.000 +"Blaster Master Zero 2",01005AA00D676000,status-playable,playable,2021-04-08 15:22:59.000 +"Blaster Master Zero DEMO",010025B002E92000,status-playable,playable,2021-02-12 23:59:06.000 +"BLAZBLUE CENTRALFICTION Special Edition",,nvdec;status-playable,playable,2020-12-15 23:50:04.000 +"BlazBlue: Cross Tag Battle",,nvdec;online;status-playable,playable,2021-01-05 20:29:37.000 +"Blazing Beaks",,status-playable,playable,2020-06-04 20:37:06.000 +"Blazing Chrome",,status-playable,playable,2020-11-16 04:56:54.000 +"Bleep Bloop DEMO",010091700EA2A000,nvdec;status-playable,playable,2021-02-13 00:20:53.000 +"Blind Men",010089D011310000,audout;status-playable,playable,2021-02-20 14:15:38.000 +"Blizzard Arcade Collection",0100743013D56000,status-playable;nvdec,playable,2022-08-03 19:37:26.000 +"BlobCat",0100F3500A20C000,status-playable,playable,2021-04-23 17:09:30.000 +"Block-a-Pix Deluxe Demo",0100E1C00DB6C000,status-playable,playable,2021-02-13 00:37:39.000 +"Bloo Kid",0100C6A01AD56000,status-playable,playable,2024-05-01 17:18:04.000 +"Bloo Kid 2",010055900FADA000,status-playable,playable,2024-05-01 17:16:57.000 +"Blood & Guts Bundle",,status-playable,playable,2020-06-27 12:57:35.000 +"Blood Waves",01007E700D17E000,gpu;status-ingame,ingame,2022-07-18 13:04:46.000 +"Blood will be Spilled",,nvdec;status-playable,playable,2020-12-17 03:02:03.000 +"Bloodstained: Curse of the Moon",,status-playable,playable,2020-09-04 10:42:17.000 +"Bloodstained: Curse of the Moon 2",,status-playable,playable,2020-09-04 10:56:27.000 +"Bloodstained: Ritual of the Night",010025A00DF2A000,status-playable;nvdec;UE4,playable,2022-07-18 14:27:35.000 +"Bloody Bunny : The Game",0100E510143EC000,status-playable;nvdec;UE4,playable,2022-10-22 13:18:55.000 +"Bloons TD 5",0100B8400A1C6000,Needs Update;audio;gpu;services;status-boots,boots,2021-04-18 23:02:46.000 +"Blossom Tales",0100C1000706C000,status-playable,playable,2022-07-18 16:43:07.000 +"Blossom Tales Demo",01000EB01023E000,status-playable,playable,2021-02-13 14:22:53.000 +"Blue Fire",010073B010F6E000,status-playable;UE4,playable,2022-10-22 14:46:11.000 +"Body of Evidence",0100721013510000,status-playable,playable,2021-04-25 22:22:11.000 +"Bohemian Killing",0100AD1010CCE000,status-playable;vulkan-backend-bug,playable,2022-09-26 22:41:37.000 +"Boku to Nurse no Kenshuu Nisshi",010093700ECEC000,status-playable,playable,2022-11-21 20:38:34.000 +"Bokujou Monogatari Saikai no Mineraru Taun (Story of Seasons: Friends of Mineral Town)",01001D900D9AC000,slow;status-ingame;crash;Needs Update,ingame,2022-04-24 22:46:04.000 +"Bomb Rush Cyberfunk",0100317014B7C000,status-playable,playable,2023-09-28 19:51:57.000 +"Bomber Crew",01007900080B6000,status-playable,playable,2021-06-03 14:21:28.000 +"Bomber Fox",0100A1F012948000,nvdec;status-playable,playable,2021-04-19 17:58:13.000 +"Bombslinger",010087300445A000,services;status-menus,menus,2022-07-19 12:53:15.000 +"Book of Demons",01007A200F452000,status-playable,playable,2022-09-29 12:03:43.000 +"Bookbound Brigade",,status-playable,playable,2020-10-09 14:30:29.000 +"Boom Blaster",,status-playable,playable,2021-03-24 10:55:56.000 +"Boomerang Fu",010081A00EE62000,status-playable,playable,2024-07-28 01:12:41.000 +"Boomerang Fu Demo Version",010069F0135C4000,demo;status-playable,playable,2021-02-13 14:38:13.000 +"Borderlands 2: Game of the Year Edition",010096F00FF22000,status-playable,playable,2022-04-22 18:35:07.000 +"Borderlands 3",01009970122E4000,gpu;status-ingame,ingame,2024-07-15 04:38:14.000 +"Borderlands: Game of the Year Edition",010064800F66A000,slow;status-ingame;online-broken;ldn-untested,ingame,2023-07-23 21:10:36.000 +"Borderlands: The Pre-Sequel Ultimate Edition",010007400FF24000,nvdec;status-playable,playable,2021-06-09 20:17:10.000 +"Boreal Blade",01008E500AFF6000,gpu;ldn-untested;online;status-ingame,ingame,2021-06-11 15:37:14.000 +"Boris The Rocket",010092C013FB8000,status-playable,playable,2022-10-26 13:23:09.000 +"Bossgard",010076F00EBE4000,status-playable;online-broken,playable,2022-10-04 14:21:13.000 +"Bot Vice Demo",010069B00EAC8000,crash;demo;status-ingame,ingame,2021-02-13 14:52:42.000 +"Bouncy Bob 2",,status-playable,playable,2020-07-14 16:51:53.000 +"Bounty Battle",0100E1200DC1A000,status-playable;nvdec,playable,2022-10-04 14:40:51.000 +"Bow to Blood: Last Captain Standing",,slow;status-playable,playable,2020-10-23 10:51:21.000 +"BOX Align",,crash;services;status-nothing,nothing,2020-04-03 17:26:56.000 +"BOXBOY! + BOXGIRL!",,status-playable,playable,2020-11-08 01:11:54.000 +"BOXBOY! + BOXGIRL! Demo",0100B7200E02E000,demo;status-playable,playable,2021-02-13 14:59:08.000 +"BQM BlockQuest Maker",,online;status-playable,playable,2020-07-31 20:56:50.000 +"Bramble The Mountain King",0100E87017D0E000,services-horizon;status-playable,playable,2024-03-06 09:32:17.000 +"Brave Dungeon + Dark Witch's Story: COMBAT",,status-playable,playable,2021-01-12 21:06:34.000 +"Bravely Default II",01006DC010326000,gpu;status-ingame;crash;Needs Update;UE4,ingame,2024-04-26 06:11:26.000 +"Bravely Default II Demo",0100B6801137E000,gpu;status-ingame;crash;UE4;demo,ingame,2022-09-27 05:39:47.000 +"BraveMatch",010081501371E000,status-playable;UE4,playable,2022-10-26 13:32:15.000 +"Bravery and Greed",0100F60017D4E000,gpu;deadlock;status-boots,boots,2022-12-04 02:23:47.000 +"Brawl",,nvdec;slow;status-playable,playable,2020-06-04 14:23:18.000 +"Brawl Chess",010068F00F444000,status-playable;nvdec,playable,2022-10-26 13:59:17.000 +"Brawlhalla",0100C6800B934000,online;opengl;status-playable,playable,2021-06-03 18:26:09.000 +"Brawlout",010060200A4BE000,ldn-untested;online;status-playable,playable,2021-06-04 17:35:35.000 +"Brawlout Demo",0100C1B00E1CA000,demo;status-playable,playable,2021-02-13 22:46:53.000 +"Breakout: Recharged",010022C016DC8000,slow;status-ingame,ingame,2022-11-06 15:32:57.000 +"Breathedge",01000AA013A5E000,UE4;nvdec;status-playable,playable,2021-05-06 15:44:28.000 +"Breathing Fear",,status-playable,playable,2020-07-14 15:12:29.000 +"Brick Breaker",,crash;status-ingame,ingame,2020-12-15 17:03:59.000 +"Brick Breaker",,nvdec;online;status-playable,playable,2020-12-15 18:26:23.000 +"Bridge 3",,status-playable,playable,2020-10-08 20:47:24.000 +"Bridge Constructor: The Walking Dead",,gpu;slow;status-ingame,ingame,2020-12-11 17:31:32.000 +"Brigandine: The Legend of Runersia",010011000EA7A000,status-playable,playable,2021-06-20 06:52:25.000 +"Brigandine: The Legend of Runersia Demo",0100703011258000,status-playable,playable,2021-02-14 14:44:10.000 +"Bring Them Home",01000BF00BE40000,UE4;status-playable,playable,2021-04-12 14:14:43.000 +"Broforce",010060A00B53C000,ldn-untested;online;status-playable,playable,2021-05-28 12:23:38.000 +"Broken Age",0100EDD0068A6000,status-playable,playable,2021-06-04 17:40:32.000 +"Broken Lines",,status-playable,playable,2020-10-16 00:01:37.000 +"Broken Sword 5 - the Serpent's Curse",01001E60085E6000,status-playable,playable,2021-06-04 17:28:59.000 +"Brotherhood United Demo",0100F19011226000,demo;status-playable,playable,2021-02-14 21:10:57.000 +"Brothers: A Tale of Two Sons",01000D500D08A000,status-playable;nvdec;UE4,playable,2022-07-19 14:02:22.000 +"Brunch Club",,status-playable,playable,2020-06-24 13:54:07.000 +"Bubble Bobble 4 Friends",010010900F7B4000,nvdec;status-playable,playable,2021-06-04 15:27:55.000 +"Bubsy: Paws on Fire!",0100DBE00C554000,slow;status-ingame,ingame,2023-08-24 02:44:51.000 +"Bucket Knight",,crash;status-ingame,ingame,2020-09-04 13:11:24.000 +"Bucket Knight demo",0100F1B010A90000,demo;status-playable,playable,2021-02-14 21:23:09.000 +"Bud Spencer & Terence Hill - Slaps and Beans",01000D200AC0C000,status-playable,playable,2022-07-17 12:37:00.000 +"Bug Fables",,status-playable,playable,2020-06-09 11:27:00.000 +"BULLETSTORM: DUKE OF SWITCH EDITION",01003DD00D658000,status-playable;nvdec,playable,2022-03-03 08:30:24.000 +"BurgerTime Party!",,slow;status-playable,playable,2020-11-21 14:11:53.000 +"BurgerTime Party! Demo",01005780106E8000,demo;status-playable,playable,2021-02-14 21:34:16.000 +"Buried Stars",,status-playable,playable,2020-09-07 14:11:58.000 +"Burnout Paradise Remastered",0100DBF01000A000,nvdec;online;status-playable,playable,2021-06-13 02:54:46.000 +"Bury me, my Love",,status-playable,playable,2020-11-07 12:47:37.000 +"Bus Driver Simulator",010030D012FF6000,status-playable,playable,2022-10-17 13:55:27.000 +"BUSTAFELLOWS",,nvdec;status-playable,playable,2020-10-17 20:04:41.000 +"BUTCHER",,status-playable,playable,2021-01-11 18:50:17.000 +"Cabela's: The Hunt - Championship Edition",0100E24004510000,status-menus;32-bit,menus,2022-07-21 20:21:25.000 +"Cadence of Hyrule Crypt of the NecroDancer Featuring The Legend of Zelda",01000B900D8B0000,slow;status-playable;nvdec,playable,2024-04-01 22:43:40.000 +"Cadence of Hyrule Crypt of the NecroDancer Featuring The Legend of Zelda Demo - 010065700EE0600",,demo;gpu;nvdec;status-ingame,ingame,2021-02-14 21:48:15.000 +"Café Enchanté",,status-playable,playable,2020-11-13 14:54:25.000 +"Cafeteria Nipponica Demo",010060400D21C000,demo;status-playable,playable,2021-02-14 22:11:35.000 +"Cake Bash Demo",0100699012F82000,crash;demo;status-ingame,ingame,2021-02-14 22:21:15.000 +"Caladrius Blaze",01004FD00D66A000,deadlock;status-nothing;nvdec,nothing,2022-12-07 16:44:37.000 +"Calculation Castle: Greco's Ghostly Challenge ""Addition",,32-bit;status-playable,playable,2020-11-01 23:40:11.000 +"Calculation Castle: Greco's Ghostly Challenge ""Division",,32-bit;status-playable,playable,2020-11-01 23:54:55.000 +"Calculation Castle: Greco's Ghostly Challenge ""Multiplication",,32-bit;status-playable,playable,2020-11-02 00:04:33.000 +"Calculation Castle: Greco's Ghostly Challenge ""Subtraction",,32-bit;status-playable,playable,2020-11-01 23:47:42.000 +"Calculator",010004701504A000,status-playable,playable,2021-06-11 13:27:20.000 +"Calico",010013A00E750000,status-playable,playable,2022-10-17 14:44:28.000 +"Call of Cthulhu",010046000EE40000,status-playable;nvdec;UE4,playable,2022-12-18 03:08:30.000 +"Call of Juarez: Gunslinger",0100B4700BFC6000,gpu;status-ingame;nvdec,ingame,2022-09-17 16:49:46.000 +"Can't Drive This",0100593008BDC000,status-playable,playable,2022-10-22 14:55:17.000 +"Candle - The Power of the Flame",,nvdec;status-playable,playable,2020-05-26 12:10:20.000 +"Capcom Arcade Stadium",01001E0013208000,status-playable,playable,2021-03-17 05:45:14.000 +"Capcom Beat 'Em Up Bundle",,status-playable,playable,2020-03-23 18:31:24.000 +"CAPCOM BELT ACTION COLLECTION",0100F6400A77E000,status-playable;online;ldn-untested,playable,2022-07-21 20:51:23.000 +"Captain Toad: Treasure Tracker",01009BF0072D4000,32-bit;status-playable,playable,2024-04-25 00:50:16.000 +"Captain Toad: Treasure Tracker Demo",01002C400B6B6000,32-bit;demo;status-playable,playable,2021-02-14 22:36:09.000 +"CAPTAIN TSUBASA: RISE OF NEW CHAMPIONS",0100EAE010560000,status-playable;online-broken;vulkan-backend-bug,playable,2022-10-09 11:20:50.000 +"CAPTAIN TSUBASA: RISE OF NEW CHAMPIONS DEMO VERSION",01002320137CC000,slow;status-playable,playable,2021-02-14 22:45:35.000 +"Car Mechanic Manager",,status-playable,playable,2020-07-23 18:50:17.000 +"Car Quest",01007BD00AE70000,deadlock;status-menus,menus,2021-11-18 08:59:18.000 +"Caretaker",0100DA70115E6000,status-playable,playable,2022-10-04 14:52:24.000 +"Cargo Crew Driver",0100DD6014870000,status-playable,playable,2021-04-19 12:54:22.000 +"Carnival Games",010088C0092FE000,status-playable;nvdec,playable,2022-07-21 21:01:22.000 +"Carnivores: Dinosaur Hunt",,status-playable,playable,2022-12-14 18:46:06.000 +"CARRION",,crash;status-nothing,nothing,2020-08-13 17:15:12.000 +"Cars 3 Driven to Win",01008D1001512000,gpu;status-ingame,ingame,2022-07-21 21:21:05.000 +"Carto",0100810012A1A000,status-playable,playable,2022-09-04 15:37:06.000 +"Cartoon Network Adventure Time: Pirates of the Enchiridion",0100C4E004406000,status-playable;nvdec,playable,2022-07-21 21:49:01.000 +"Cartoon Network Battle Crashers",0100085003A2A000,status-playable,playable,2022-07-21 21:55:40.000 +"CASE 2: Animatronics Survival",0100C4C0132F8000,status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-10-09 11:45:03.000 +"Cassette Beasts",010066F01A0E0000,status-playable,playable,2024-07-22 20:38:43.000 +"Castle Crashers Remastered",010001300D14A000,gpu;status-boots,boots,2024-08-10 09:21:20.000 +"Castle Crashers Remastered Demo",0100F6D01060E000,gpu;status-boots;demo,boots,2022-04-10 10:57:10.000 +"Castle of Heart",01003C100445C000,status-playable;nvdec,playable,2022-07-21 23:10:45.000 +"Castle of No Escape 2",0100F5500FA0E000,status-playable,playable,2022-09-13 13:51:42.000 +"Castle Pals",0100DA2011F18000,status-playable,playable,2021-03-04 21:00:33.000 +"Castlestorm",010097C00AB66000,status-playable;nvdec,playable,2022-07-21 22:49:14.000 +"CastleStorm 2",,UE4;crash;nvdec;status-boots,boots,2020-10-25 11:22:44.000 +"Castlevania Anniversary Collection",,audio;status-playable,playable,2020-05-23 11:40:29.000 +"Cat Girl Without Salad: Amuse-Bouche",010076000C86E000,status-playable,playable,2022-09-03 13:01:47.000 +"Cat Quest",,status-playable,playable,2020-04-02 23:09:32.000 +"Cat Quest II",,status-playable,playable,2020-07-06 23:52:09.000 +"Cat Quest II Demo",0100E86010220000,demo;status-playable,playable,2021-02-15 14:11:57.000 +"Catherine Full Body",0100BF00112C0000,status-playable;nvdec,playable,2023-04-02 11:00:37.000 +"Catherine Full Body for Nintendo Switch (JP)",0100BAE0077E4000,Needs Update;gpu;status-ingame,ingame,2021-02-21 18:06:11.000 +"Cattails",010004400B28A000,status-playable,playable,2021-06-03 14:36:57.000 +"Cave Story+",,status-playable,playable,2020-05-22 09:57:25.000 +"Caveblazers",01001A100C0E8000,slow;status-ingame,ingame,2021-06-09 17:57:28.000 +"Caveman Warriors",,status-playable,playable,2020-05-22 11:44:20.000 +"Caveman Warriors Demo",,demo;status-playable,playable,2021-02-15 14:44:08.000 +"Celeste",,status-playable,playable,2020-06-17 10:14:40.000 +"Cendrillon palikA",01006B000A666000,gpu;status-ingame;nvdec,ingame,2022-07-21 22:52:24.000 +"CHAOS CODE -NEW SIGN OF CATASTROPHE-",01007600115CE000,status-boots;crash;nvdec,boots,2022-04-04 12:24:21.000 +"CHAOS;HEAD NOAH",0100957016B90000,status-playable,playable,2022-06-02 22:57:19.000 +"Charge Kid",0100F52013A66000,gpu;status-boots;audout,boots,2024-02-11 01:17:47.000 +"Chasm",,status-playable,playable,2020-10-23 11:03:43.000 +"Chasm: The Rift",010034301A556000,gpu;status-ingame,ingame,2024-04-29 19:02:48.000 +"Chess Ultra",0100A5900472E000,status-playable;UE4,playable,2023-08-30 23:06:31.000 +"Chicken Assassin: Reloaded",0100E3C00A118000,status-playable,playable,2021-02-20 13:29:01.000 +"Chicken Police - Paint it RED!",,nvdec;status-playable,playable,2020-12-10 15:10:11.000 +"Chicken Range",0100F6C00A016000,status-playable,playable,2021-04-23 12:14:23.000 +"Chicken Rider",,status-playable,playable,2020-05-22 11:31:17.000 +"Chickens Madness DEMO",0100CAC011C3A000,UE4;demo;gpu;nvdec;status-ingame,ingame,2021-02-15 15:02:10.000 +"Child of Light",,nvdec;status-playable,playable,2020-12-16 10:23:10.000 +"Children of Morta",01002DE00C250000,gpu;status-ingame;nvdec,ingame,2022-09-13 17:48:47.000 +"Children of Zodiarcs",,status-playable,playable,2020-10-04 14:23:33.000 +"Chinese Parents",010046F012A04000,status-playable,playable,2021-04-08 12:56:41.000 +"Chocobo GP",01006A30124CA000,gpu;status-ingame;crash,ingame,2022-06-04 14:52:18.000 +"Chocobo's Mystery Dungeon Every Buddy!",,slow;status-playable,playable,2020-05-26 13:53:13.000 +"Choices That Matter: And The Sun Went Out",,status-playable,playable,2020-12-17 15:44:08.000 +"Chou no Doku Hana no Kusari: Taishou Irokoi Ibun",,gpu;nvdec;status-ingame,ingame,2020-09-28 17:58:04.000 +"ChromaGun",,status-playable,playable,2020-05-26 12:56:42.000 +"Chronos",,UE4;gpu;nvdec;status-ingame,ingame,2020-12-11 22:16:35.000 +"Circle of Sumo",,status-playable,playable,2020-05-22 12:45:21.000 +"Circuits",01008FA00D686000,status-playable,playable,2022-09-19 11:52:50.000 +"Cities: Skylines - Nintendo Switch Edition",,status-playable,playable,2020-12-16 10:34:57.000 +"Citizens of Space",0100E4200D84E000,gpu;status-boots,boots,2023-10-22 06:45:44.000 +"Citizens Unite!: Earth x Space",0100D9C012900000,gpu;status-ingame,ingame,2023-10-22 06:44:19.000 +"City Bus Driving Simulator",01005E501284E000,status-playable,playable,2021-06-15 21:25:59.000 +"CLANNAD",0100A3A00CC7E000,status-playable,playable,2021-06-03 17:01:02.000 +"CLANNAD Side Stories - 01007B01372C000",,status-playable,playable,2022-10-26 15:03:04.000 +"Clash Force",01005ED0107F4000,status-playable,playable,2022-10-01 23:45:48.000 +"Claybook",010009300AA6C000,slow;status-playable;nvdec;online;UE4,playable,2022-07-22 11:11:34.000 +"Clea",,crash;status-ingame,ingame,2020-12-15 16:22:56.000 +"Clea 2",010045E0142A4000,status-playable,playable,2021-04-18 14:25:18.000 +"Clock Zero ~Shuuen no Ichibyou~ Devote",01008C100C572000,status-playable;nvdec,playable,2022-12-04 22:19:14.000 +"Clocker",0100DF9013AD4000,status-playable,playable,2021-04-05 15:05:13.000 +"Close to the Sun",0100B7200DAC6000,status-boots;crash;nvdec;UE4,boots,2021-11-04 09:19:41.000 +"Clubhouse Games: 51 Worldwide Classics",010047700D540000,status-playable;ldn-works,playable,2024-05-21 16:12:57.000 +"Clue",,crash;online;status-menus,menus,2020-11-10 09:23:48.000 +"ClusterPuck 99",,status-playable,playable,2021-01-06 00:28:12.000 +"Clustertruck",010096900A4D2000,slow;status-ingame,ingame,2021-02-19 21:07:09.000 +"Cobra Kai The Karate Kid Saga Continues",01005790110F0000,status-playable,playable,2021-06-17 15:59:13.000 +"COCOON",01002E700C366000,gpu;status-ingame,ingame,2024-03-06 11:33:08.000 +"Code of Princess EX",010034E005C9C000,nvdec;online;status-playable,playable,2021-06-03 10:50:13.000 +"CODE SHIFTER",,status-playable,playable,2020-08-09 15:20:55.000 +"Code: Realize ~Future Blessings~",010002400F408000,status-playable;nvdec,playable,2023-03-31 16:57:47.000 +"Coffee Crisis",0100CF800C810000,status-playable,playable,2021-02-20 12:34:52.000 +"Coffee Talk",,status-playable,playable,2020-08-10 09:48:44.000 +"Coffin Dodgers",0100178009648000,status-playable,playable,2021-02-20 14:57:41.000 +"Cold Silence",010035B01706E000,cpu;status-nothing;crash,nothing,2024-07-11 17:06:14.000 +"Collar X Malice",010083E00F40E000,status-playable;nvdec,playable,2022-10-02 11:51:56.000 +"Collar X Malice -Unlimited-",0100E3B00F412000,status-playable;nvdec,playable,2022-10-04 15:30:40.000 +"Collection of Mana",,status-playable,playable,2020-10-19 19:29:45.000 +"COLLECTION of SaGA FINAL FANTASY LEGEND",,status-playable,playable,2020-12-30 19:11:16.000 +"Collidalot",010030800BC36000,status-playable;nvdec,playable,2022-09-13 14:09:27.000 +"Color Zen",,status-playable,playable,2020-05-22 10:56:17.000 +"Colorgrid",,status-playable,playable,2020-10-04 01:50:52.000 +"Coloring Book",0100A7000BD28000,status-playable,playable,2022-07-22 11:17:05.000 +"Colors Live",010020500BD86000,gpu;services;status-boots;crash,boots,2023-02-26 02:51:07.000 +"Colossus Down",0100E2F0128B4000,status-playable,playable,2021-02-04 20:49:50.000 +"Commander Keen in Keen Dreams",0100C4D00D16A000,gpu;status-ingame,ingame,2022-08-04 20:34:20.000 +"Commander Keen in Keen Dreams: Definitive Edition",0100E400129EC000,status-playable,playable,2021-05-11 19:33:54.000 +"Commandos 2 HD Remaster",010065A01158E000,gpu;status-ingame;nvdec,ingame,2022-08-10 21:52:27.000 +"CONARIUM",010015801308E000,UE4;nvdec;status-playable,playable,2021-04-26 17:57:53.000 +"Concept Destruction",0100971011224000,status-playable,playable,2022-09-29 12:28:56.000 +"Conduct TOGETHER!",010043700C9B0000,nvdec;status-playable,playable,2021-02-20 12:59:00.000 +"Conga Master Party!",,status-playable,playable,2020-05-22 13:22:24.000 +"Connection Haunted",,slow;status-playable,playable,2020-12-10 18:57:14.000 +"Construction Simulator 3 - Console Edition",0100A5600FAC0000,status-playable,playable,2023-02-06 09:31:23.000 +"Constructor Plus",,status-playable,playable,2020-05-26 12:37:40.000 +"Contra Anniversary Collection",0100DCA00DA7E000,status-playable,playable,2022-07-22 11:30:12.000 +"CONTRA: ROGUE CORPS",,crash;nvdec;regression;status-menus,menus,2021-01-07 13:23:35.000 +"CONTRA: ROGUE CORPS Demo",0100B8200ECA6000,gpu;status-ingame,ingame,2022-09-04 16:46:52.000 +"Contraptions",01007D701298A000,status-playable,playable,2021-02-08 18:40:50.000 +"Control Ultimate Edition - Cloud Version",0100041013360000,Needs Update;crash;services;status-nothing,nothing,2021-04-18 22:34:06.000 +"Convoy",,status-playable,playable,2020-10-15 14:43:50.000 +"Cook, Serve, Delicious! 3?!",0100B82010B6C000,status-playable,playable,2022-10-09 12:09:34.000 +"Cooking Mama: Cookstar",010060700EFBA000,status-menus;crash;loader-allocator,menus,2021-11-20 03:19:35.000 +"Cooking Simulator",01001E400FD58000,status-playable,playable,2021-04-18 13:25:23.000 +"Cooking Tycoons 2: 3 in 1 Bundle",,status-playable,playable,2020-11-16 22:19:33.000 +"Cooking Tycoons: 3 in 1 Bundle",,status-playable,playable,2020-11-16 22:44:26.000 +"Copperbell",,status-playable,playable,2020-10-04 15:54:36.000 +"Corpse Party: Blood Drive",010016400B1FE000,nvdec;status-playable,playable,2021-03-01 12:44:23.000 +"Cosmic Fantasy Collection",0100CCB01B1A0000,status-ingame,ingame,2024-05-21 17:56:37.000 +"Cosmic Star Heroine",010067C00A776000,status-playable,playable,2021-02-20 14:30:47.000 +"COTTOn Reboot! [ コットン リブート! ]",01003DD00F94A000,status-playable,playable,2022-05-24 16:29:24.000 +"Cotton/Guardian Saturn Tribute Games",,gpu;status-boots,boots,2022-11-27 21:00:51.000 +"Couch Co-Op Bundle Vol. 2",01000E301107A000,status-playable;nvdec,playable,2022-10-02 12:04:21.000 +"Country Tales",0100C1E012A42000,status-playable,playable,2021-06-17 16:45:39.000 +"Cozy Grove",01003370136EA000,gpu;status-ingame,ingame,2023-07-30 22:22:19.000 +"Crash Bandicoot 4: It's About Time",010073401175E000,status-playable;nvdec;UE4,playable,2024-03-17 07:13:45.000 +"Crash Bandicoot N. Sane Trilogy",0100D1B006744000,status-playable,playable,2024-02-11 11:38:14.000 +"Crash Drive 2",,online;status-playable,playable,2020-12-17 02:45:46.000 +"Crash Dummy",,nvdec;status-playable,playable,2020-05-23 11:12:43.000 +"Crash Team Racing Nitro-Fueled",0100F9F00C696000,gpu;status-ingame;nvdec;online-broken,ingame,2023-06-25 02:40:17.000 +"Crashbots",0100BF200CD74000,status-playable,playable,2022-07-22 13:50:52.000 +"Crashlands",010027100BD16000,status-playable,playable,2021-05-27 20:30:06.000 +"Crawl",,status-playable,playable,2020-05-22 10:16:05.000 +"Crayola Scoot",0100C66007E96000,status-playable;nvdec,playable,2022-07-22 14:01:55.000 +"Crayon Shin-chan Ora to Hakase no Natsuyasumi Owaranai Nanokakan no Tabi",01005BA00F486000,status-playable,playable,2021-07-21 10:41:33.000 +"Crayon Shin-chan The Storm Called Flaming Kasukabe Runner!",,services;status-menus,menus,2020-03-20 14:00:57.000 +"Crazy Strike Bowling EX",,UE4;gpu;nvdec;status-ingame,ingame,2020-08-07 18:15:59.000 +"Crazy Zen Mini Golf",,status-playable,playable,2020-08-05 14:00:00.000 +"Creaks",,status-playable,playable,2020-08-15 12:20:52.000 +"Creature in the Well",,UE4;gpu;status-ingame,ingame,2020-11-16 12:52:40.000 +"Creepy Tale",,status-playable,playable,2020-12-15 21:58:03.000 +"Cresteaju",,gpu;status-ingame,ingame,2021-03-24 10:46:06.000 +"Cricket 19",010022D00D4F0000,gpu;status-ingame,ingame,2021-06-14 14:56:07.000 +"Cricket 22",0100387017100000,status-boots;crash,boots,2023-10-18 08:01:57.000 +"Crimsonland",01005640080B0000,status-playable,playable,2021-05-27 20:50:54.000 +"Cris Tales",0100B0400EBC4000,crash;status-ingame,ingame,2021-07-29 15:10:53.000 +"CRISIS CORE –FINAL FANTASY VII– REUNION",01004BC0166CC000,status-playable,playable,2022-12-19 15:53:59.000 +"Croc's World",,status-playable,playable,2020-05-22 11:21:09.000 +"Croc's World 2",,status-playable,playable,2020-12-16 20:01:40.000 +"Croc's World 3",,status-playable,playable,2020-12-30 18:53:26.000 +"Croixleur Sigma",01000F0007D92000,status-playable;online,playable,2022-07-22 14:26:54.000 +"CrossCode",01003D90058FC000,status-playable,playable,2024-02-17 10:23:19.000 +"Crossing Souls",0100B1E00AA56000,nvdec;status-playable,playable,2021-02-20 15:42:54.000 +"Crown Trick",0100059012BAE000,status-playable,playable,2021-06-16 19:36:29.000 +"Cruis'n Blast",0100B41013C82000,gpu;status-ingame,ingame,2023-07-30 10:33:47.000 +"Crymachina Trial Edition ( Demo ) [ クライマキナ ]",01000CC01C108000,status-playable;demo,playable,2023-08-06 05:33:21.000 +"Crypt of the Necrodancer",0100CEA007D08000,status-playable;nvdec,playable,2022-11-01 09:52:06.000 +"Crysis 2 Remastered",0100582010AE0000,deadlock;status-menus,menus,2023-09-21 10:46:17.000 +"Crysis 3 Remastered",0100CD3010AE2000,deadlock;status-menus,menus,2023-09-10 16:03:50.000 +"Crysis Remastered",0100E66010ADE000,status-menus;nvdec,menus,2024-08-13 05:23:24.000 +"Crystal Crisis",0100972008234000,nvdec;status-playable,playable,2021-02-20 13:52:44.000 +"Cthulhu Saves Christmas",,status-playable,playable,2020-12-14 00:58:55.000 +"Cube Creator X",010001600D1E8000,status-menus;crash,menus,2021-11-25 08:53:28.000 +"Cubers: Arena",010082E00F1CE000,status-playable;nvdec;UE4,playable,2022-10-04 16:05:40.000 +"Cubicity",010040D011D04000,status-playable,playable,2021-06-14 14:19:51.000 +"Cuphead",0100A5C00D162000,status-playable,playable,2022-02-01 22:45:55.000 +"Cupid Parasite",0100F7E00DFC8000,gpu;status-ingame,ingame,2023-08-21 05:52:36.000 +"Curious Cases",,status-playable,playable,2020-08-10 09:30:48.000 +"Curse of the Dead Gods",0100D4A0118EA000,status-playable,playable,2022-08-30 12:25:38.000 +"Curved Space",0100CE5014026000,status-playable,playable,2023-01-14 22:03:50.000 +"Cyber Protocol",,nvdec;status-playable,playable,2020-09-28 14:47:40.000 +"Cyber Shadow",0100C1F0141AA000,status-playable,playable,2022-07-17 05:37:41.000 +"Cybxus Heart",01006B9013672000,gpu;slow;status-ingame,ingame,2022-01-15 05:00:49.000 +"Cytus α",010063100B2C2000,nvdec;status-playable,playable,2021-02-20 13:40:46.000 +"DAEMON X MACHINA",0100B6400CA56000,UE4;audout;ldn-untested;nvdec;status-playable,playable,2021-06-09 19:22:29.000 +"Dairoku: Ayakashimori",010061300DF48000,status-nothing;Needs Update;loader-allocator,nothing,2021-11-30 05:09:38.000 +"Damsel",0100BD2009A1C000,status-playable,playable,2022-09-06 11:54:39.000 +"Dandara",,status-playable,playable,2020-05-26 12:42:33.000 +"Dandy Dungeon: Legend of Brave Yamada",,status-playable,playable,2021-01-06 09:48:47.000 +"Danger Mouse",01003ED0099B0000,status-boots;crash;online,boots,2022-07-22 15:49:45.000 +"Danger Scavenger -",,nvdec;status-playable,playable,2021-04-17 15:53:04.000 +"Danmaku Unlimited 3",,status-playable,playable,2020-11-15 00:48:35.000 +"Darius Cozmic Collection",,status-playable,playable,2021-02-19 20:59:06.000 +"Darius Cozmic Collection Special Edition",010059C00BED4000,status-playable,playable,2022-07-22 16:26:50.000 +"Dariusburst - Another Chronicle EX+",010015800F93C000,online;status-playable,playable,2021-04-05 14:21:43.000 +"Dark Arcana: The Carnival",01003D301357A000,gpu;slow;status-ingame,ingame,2022-02-19 08:52:28.000 +"Dark Devotion",010083A00BF6C000,status-playable;nvdec,playable,2022-08-09 09:41:18.000 +"Dark Quest 2",,status-playable,playable,2020-11-16 21:34:52.000 +"DARK SOULS™: REMASTERED",01004AB00A260000,gpu;status-ingame;nvdec;online-broken,ingame,2024-04-09 19:47:58.000 +"Dark Witch Music Episode: Rudymical",,status-playable,playable,2020-05-22 09:44:44.000 +"Darkest Dungeon",01008F1008DA6000,status-playable;nvdec,playable,2022-07-22 18:49:18.000 +"Darksiders Genesis",0100F2300D4BA000,status-playable;nvdec;online-broken;UE4;ldn-broken,playable,2022-09-21 18:06:25.000 +"Darksiders II Deathinitive Edition",010071800BA98000,gpu;status-ingame;nvdec;online-broken,ingame,2024-06-26 00:37:25.000 +"Darksiders Warmastered Edition",0100E1400BA96000,status-playable;nvdec,playable,2023-03-02 18:08:09.000 +"Darkwood",,status-playable,playable,2021-01-08 21:24:06.000 +"DARQ Complete Edition",0100440012FFA000,audout;status-playable,playable,2021-04-07 15:26:21.000 +"Darts Up",0100BA500B660000,status-playable,playable,2021-04-14 17:22:22.000 +"Dawn of the Breakers",0100F0B0081DA000,status-menus;online-broken;vulkan-backend-bug,menus,2022-12-08 14:40:03.000 +"Day and Night",,status-playable,playable,2020-12-17 12:30:51.000 +"De Blob",,nvdec;status-playable,playable,2021-01-06 17:34:46.000 +"de Blob 2",,nvdec;status-playable,playable,2021-01-06 13:00:16.000 +"De Mambo",01008E900471E000,status-playable,playable,2021-04-10 12:39:40.000 +"Dead by Daylight",01004C400CF96000,status-boots;nvdec;online-broken;UE4,boots,2022-09-13 14:32:13.000 +"Dead Cells",0100646009FBE000,status-playable,playable,2021-09-22 22:18:49.000 +"Dead End Job",01004C500BD40000,status-playable;nvdec,playable,2022-09-19 12:48:44.000 +"DEAD OR ALIVE Xtreme 3 Scarlet",01009CC00C97C000,status-playable,playable,2022-07-23 17:05:06.000 +"DEAD OR SCHOOL",0100A5000F7AA000,status-playable;nvdec,playable,2022-09-06 12:04:09.000 +"Dead Z Meat",0100A24011F52000,UE4;services;status-ingame,ingame,2021-04-14 16:50:16.000 +"Deadly Days",,status-playable,playable,2020-11-27 13:38:55.000 +"Deadly Premonition 2",0100BAC011928000,status-playable,playable,2021-06-15 14:12:36.000 +"DEADLY PREMONITION Origins",0100EBE00F22E000,32-bit;status-playable;nvdec,playable,2024-03-25 12:47:46.000 +"Dear Magi - Mahou Shounen Gakka -",,status-playable,playable,2020-11-22 16:45:16.000 +"Death and Taxes",,status-playable,playable,2020-12-15 20:27:49.000 +"Death Come True",010012B011AB2000,nvdec;status-playable,playable,2021-06-10 22:30:49.000 +"Death Coming",0100F3B00CF32000,status-nothing;crash,nothing,2022-02-06 07:43:03.000 +"Death end re;Quest",0100AEC013DDA000,status-playable,playable,2023-07-09 12:19:54.000 +"Death Mark",,status-playable,playable,2020-12-13 10:56:25.000 +"Death Road to Canada",0100423009358000,gpu;audio;status-nothing;32-bit;crash,nothing,2023-06-28 15:39:26.000 +"Death Squared",,status-playable,playable,2020-12-04 13:00:15.000 +"Death Tales",,status-playable,playable,2020-12-17 10:55:52.000 +"Death's Hangover",0100492011A8A000,gpu;status-boots,boots,2023-08-01 22:38:06.000 +"Deathsmiles I・II",01009120119B4000,status-playable,playable,2024-04-08 19:29:00.000 +"Debris Infinity",010034F00BFC8000,nvdec;online;status-playable,playable,2021-05-28 12:14:39.000 +"Decay of Logos",010027700FD2E000,status-playable;nvdec,playable,2022-09-13 14:42:13.000 +"Deedlit in Wonder Labyrinth",0100EF0015A9A000,deadlock;status-ingame;Needs Update;Incomplete,ingame,2022-01-19 10:00:59.000 +"Deemo",01002CC0062B8000,status-playable,playable,2022-07-24 11:34:33.000 +"DEEMO -Reborn-",01008B10132A2000,status-playable;nvdec;online-broken,playable,2022-10-17 15:18:11.000 +"Deep Diving Adventures",010026800FA88000,status-playable,playable,2022-09-22 16:43:37.000 +"Deep Ones",,services;status-nothing,nothing,2020-04-03 02:54:19.000 +"Deep Sky Derelicts Definitive Edition",0100C3E00D68E000,status-playable,playable,2022-09-27 11:21:08.000 +"Deep Space Rush",,status-playable,playable,2020-07-07 23:30:33.000 +"DeepOne",0100961011BE6000,services-horizon;status-nothing;Needs Update,nothing,2024-01-18 15:01:05.000 +"Defenders of Ekron - Definitive Edition",01008BB00F824000,status-playable,playable,2021-06-11 16:31:03.000 +"Defentron",0100CDE0136E6000,status-playable,playable,2022-10-17 15:47:56.000 +"Defunct",,status-playable,playable,2021-01-08 21:33:46.000 +"Degrees of Separation",,status-playable,playable,2021-01-10 13:40:04.000 +"Dei Gratia no Rashinban",010071C00CBA4000,crash;status-nothing,nothing,2021-07-13 02:25:32.000 +"Deleveled",,slow;status-playable,playable,2020-12-15 21:02:29.000 +"DELTARUNE Chapter 1",010023800D64A000,status-playable,playable,2023-01-22 04:47:44.000 +"Dementium: The Ward (Dementium Remastered)",010038B01D2CA000,status-boots;crash,boots,2024-09-02 08:28:14.000 +"Demetrios - The BIG Cynical Adventure",0100AB600ACB4000,status-playable,playable,2021-06-04 12:01:01.000 +"Demolish & Build",010099D00D1A4000,status-playable,playable,2021-06-13 15:27:26.000 +"Demon Pit",010084600F51C000,status-playable;nvdec,playable,2022-09-19 13:35:15.000 +"Demon's Crystals",0100A2B00BD88000,status-nothing;crash;regression,nothing,2022-12-07 16:33:17.000 +"Demon's Rise",,status-playable,playable,2020-07-29 12:26:27.000 +"Demon's Rise - Lords of Chaos",0100E29013818000,status-playable,playable,2021-04-06 16:20:06.000 +"Demon's Tier+",0100161011458000,status-playable,playable,2021-06-09 17:25:36.000 +"DEMON'S TILT",0100BE800E6D8000,status-playable,playable,2022-09-19 13:22:46.000 +"Demong Hunter",,status-playable,playable,2020-12-12 15:27:08.000 +"Densha de go!! Hashirou Yamanote Sen",0100BC501355A000,status-playable;nvdec;UE4,playable,2023-11-09 07:47:58.000 +"Depixtion",,status-playable,playable,2020-10-10 18:52:37.000 +"Deployment",01000BF00B6BC000,slow;status-playable;online-broken,playable,2022-10-17 16:23:59.000 +"Deponia",010023600C704000,nvdec;status-playable,playable,2021-01-26 17:17:19.000 +"DERU - The Art of Cooperation",,status-playable,playable,2021-01-07 16:59:59.000 +"Descenders",,gpu;status-ingame,ingame,2020-12-10 15:22:36.000 +"Desire remaster ver.",,crash;status-boots,boots,2021-01-17 02:34:37.000 +"DESTINY CONNECT",,UE4;gpu;nvdec;status-ingame,ingame,2020-12-16 12:20:36.000 +"Destrobots",01008BB011ED6000,status-playable,playable,2021-03-06 14:37:05.000 +"Destroy All Humans!",01009E701356A000,gpu;status-ingame;nvdec;UE4,ingame,2023-01-14 22:23:53.000 +"Detective Dolittle",010030600E65A000,status-playable,playable,2021-03-02 14:03:59.000 +"Detective Gallo",01009C0009842000,status-playable;nvdec,playable,2022-07-24 11:51:04.000 +"Detective Jinguji Saburo Prism of Eyes",,status-playable,playable,2020-10-02 21:54:41.000 +"Detective Pikachu Returns",010007500F27C000,status-playable,playable,2023-10-07 10:24:59.000 +"Devil Engine",010031B00CF66000,status-playable,playable,2021-06-04 11:54:30.000 +"Devil Kingdom",01002F000E8F2000,status-playable,playable,2023-01-31 08:58:44.000 +"Devil May Cry",,nvdec;status-playable,playable,2021-01-04 19:43:08.000 +"Devil May Cry 2",01007CF00D5BA000,status-playable;nvdec,playable,2023-01-24 23:03:20.000 +"Devil May Cry 3 Special Edition",01007B600D5BC000,status-playable;nvdec,playable,2024-07-08 12:33:23.000 +"Devil Slayer - Raksasi",01003C900EFF6000,status-playable,playable,2022-10-26 19:42:32.000 +"Devious Dungeon",01009EA00A320000,status-playable,playable,2021-03-04 13:03:06.000 +"Dex",,nvdec;status-playable,playable,2020-08-12 16:48:12.000 +"Dexteritrip",,status-playable,playable,2021-01-06 12:51:12.000 +"Dezatopia",0100AFC00E06A000,online;status-playable,playable,2021-06-15 21:06:11.000 +"Diablo 2 Resurrected",0100726014352000,gpu;status-ingame;nvdec,ingame,2023-08-18 18:42:47.000 +"Diablo III: Eternal Collection",01001B300B9BE000,status-playable;online-broken;ldn-works,playable,2023-08-21 23:48:03.000 +"Diabolic",0100F73011456000,status-playable,playable,2021-06-11 14:45:08.000 +"DIABOLIK LOVERS CHAOS LINEAGE",010027400BD24000,gpu;status-ingame;Needs Update,ingame,2023-06-08 02:20:44.000 +"Dicey Dungeons",0100BBF011394000,gpu;audio;slow;status-ingame,ingame,2023-08-02 20:30:12.000 +"Die for Valhalla!",,status-playable,playable,2021-01-06 16:09:14.000 +"Dies irae Amantes amentes For Nintendo Switch",0100BB900B5B4000,status-nothing;32-bit;crash,nothing,2022-02-16 07:09:05.000 +"Dig Dog",0100A5A00DBB0000,gpu;status-ingame,ingame,2021-06-02 17:17:51.000 +"Digerati Presents: The Dungeon Crawl Vol. 1",010035D0121EC000,slow;status-ingame,ingame,2021-04-18 14:04:55.000 +"Digimon Story Cyber Sleuth: Complete Edition",010014E00DB56000,status-playable;nvdec;opengl,playable,2022-09-13 15:02:37.000 +"Digimon World: Next Order",0100F00014254000,status-playable,playable,2023-05-09 20:41:06.000 +"Ding Dong XL",,status-playable,playable,2020-07-14 16:13:19.000 +"Dininho Adventures",,status-playable,playable,2020-10-03 17:25:51.000 +"Dininho Space Adventure",010027E0158A6000,status-playable,playable,2023-01-14 22:43:04.000 +"Dirt Bike Insanity",0100A8A013DA4000,status-playable,playable,2021-01-31 13:27:38.000 +"Dirt Trackin Sprint Cars",01004CB01378A000,status-playable;nvdec;online-broken,playable,2022-10-17 16:34:56.000 +"Disagaea 6: Defiance of Destiny Demo",0100918014B02000,status-playable;demo,playable,2022-10-26 20:02:04.000 +"Disaster Report 4: Summer Memories",010020700E2A2000,status-playable;nvdec;UE4,playable,2022-09-27 19:41:31.000 +"Disc Jam",0100510004D2C000,UE4;ldn-untested;nvdec;online;status-playable,playable,2021-04-08 16:40:35.000 +"Disco Dodgeball Remix",,online;status-playable,playable,2020-09-28 23:24:49.000 +"Disgaea 1 Complete",01004B100AF18000,status-playable,playable,2023-01-30 21:45:23.000 +"Disgaea 4 Complete Plus",,gpu;slow;status-playable,playable,2020-02-18 10:54:28.000 +"Disgaea 4 Complete+ Demo",010068C00F324000,status-playable;nvdec,playable,2022-09-13 15:21:59.000 +"Disgaea 5 Complete",01005700031AE000,nvdec;status-playable,playable,2021-03-04 15:32:54.000 +"Disgaea 6: Defiance of Destiny",0100ABC013136000,deadlock;status-ingame,ingame,2023-04-15 00:50:32.000 +"Disgaea 6: Defiance of Destiny [ FG ] [ 魔界戦記ディスガイア6 ]",0100307011D80000,status-playable,playable,2021-06-08 13:20:33.000 +"Disgaea 6: Defiance of Destiny Demo [ 魔界戦記ディスガイア6 ]",01005EE013888000,gpu;status-ingame;demo,ingame,2022-12-06 15:27:59.000 +"Disjunction",01000B70122A2000,gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug,ingame,2024-04-28 23:55:24.000 +"Disney Classic Games: Aladdin and The Lion King",0100A2F00EEFC000,status-playable;online-broken,playable,2022-09-13 15:44:17.000 +"Disney Epic Mickey: Rebrushed",0100DA201EBF8000,status-ingame;crash,ingame,2024-09-26 22:11:51.000 +"Disney SpeedStorm",0100F0401435E000,services;status-boots,boots,2023-11-27 02:15:32.000 +"Disney Tsum Tsum Festival",,crash;status-menus,menus,2020-07-14 14:05:28.000 +"DISTRAINT 2",,status-playable,playable,2020-09-03 16:08:12.000 +"DISTRAINT: Deluxe Edition",,status-playable,playable,2020-06-15 23:42:24.000 +"Divinity Original Sin 2",010027400CDC6000,services;status-menus;crash;online-broken;regression,menus,2023-08-13 17:20:03.000 +"Dodo Peak",01001770115C8000,status-playable;nvdec;UE4,playable,2022-10-04 16:13:05.000 +"DoDonPachi Resurrection - 怒首領蜂大復活",01005A001489A000,status-ingame;32-bit;crash,ingame,2024-01-25 14:37:32.000 +"Dogurai",,status-playable,playable,2020-10-04 02:40:16.000 +"Dokapon Up! Mugen no Roulette",010048100D51A000,gpu;status-menus;Needs Update,menus,2022-12-08 19:39:10.000 +"Dokuro",,nvdec;status-playable,playable,2020-12-17 14:47:09.000 +"Don't Die Mr. Robot DX",010007200AC0E000,status-playable;nvdec,playable,2022-09-02 18:34:38.000 +"Don't Knock Twice",0100E470067A8000,status-playable,playable,2024-05-08 22:37:58.000 +"Don't Sink",0100C4D00B608000,gpu;status-ingame,ingame,2021-02-26 15:41:11.000 +"Don't Starve",0100751007ADA000,status-playable;nvdec,playable,2022-02-05 20:43:34.000 +"Dongo Adventure",010088B010DD2000,status-playable,playable,2022-10-04 16:22:26.000 +"Donkey Kong Country Tropical Freeze",0100C1F0051B6000,status-playable,playable,2024-08-05 16:46:10.000 +"Doodle Derby",,status-boots,boots,2020-12-04 22:51:48.000 +"DOOM",0100416004C00000,gpu;slow;status-ingame;nvdec;online-broken,ingame,2024-09-23 15:40:07.000 +"DOOM (1993)",010018900DD00000,status-menus;nvdec;online-broken,menus,2022-09-06 13:32:19.000 +"DOOM + DOOM II",01008CB01E52E000,status-playable;opengl;ldn-untested;LAN,playable,2024-09-12 07:06:01.000 +"DOOM 2",0100D4F00DD02000,nvdec;online;status-playable,playable,2021-06-03 20:10:01.000 +"DOOM 3",010029D00E740000,status-menus;crash,menus,2024-08-03 05:25:47.000 +"DOOM 64",,nvdec;status-playable;vulkan,playable,2020-10-13 23:47:28.000 +"DOOM Eternal",0100B1A00D8CE000,gpu;slow;status-ingame;nvdec;online-broken,ingame,2024-08-28 15:57:17.000 +"Door Kickers: Action Squad",01005ED00CD70000,status-playable;online-broken;ldn-broken,playable,2022-09-13 16:28:53.000 +"DORAEMON STORY OF SEASONS",,nvdec;status-playable,playable,2020-07-13 20:28:11.000 +"Double Cross",,status-playable,playable,2021-01-07 15:34:22.000 +"Double Dragon & Kunio-Kun: Retro Brawler Bundle",,status-playable,playable,2020-09-01 12:48:46.000 +"DOUBLE DRAGON Ⅲ: The Sacred Stones",01001AD00E49A000,online;status-playable,playable,2021-06-11 15:41:44.000 +"Double Dragon Neon",01005B10132B2000,gpu;audio;status-ingame;32-bit,ingame,2022-09-20 18:00:20.000 +"Double Kick Heroes",,gpu;status-ingame,ingame,2020-10-03 14:33:59.000 +"Double Pug Switch",0100A5D00C7C0000,status-playable;nvdec,playable,2022-10-10 10:59:35.000 +"Double Switch - 25th Anniversary Edition",0100FC000EE10000,status-playable;nvdec,playable,2022-09-19 13:41:50.000 +"Down to Hell",0100B6600FE06000,gpu;status-ingame;nvdec,ingame,2022-09-19 14:01:26.000 +"Downwell",010093D00C726000,status-playable,playable,2021-04-25 20:05:24.000 +"Dr Kawashima's Brain Training",0100ED000D390000,services;status-ingame,ingame,2023-06-04 00:06:46.000 +"Dracula's Legacy",,nvdec;status-playable,playable,2020-12-10 13:24:25.000 +"DragoDino",,gpu;nvdec;status-ingame,ingame,2020-08-03 20:49:16.000 +"Dragon Audit",0100DBC00BD5A000,crash;status-ingame,ingame,2021-05-16 14:24:46.000 +"DRAGON BALL FighterZ",0100A250097F0000,UE4;ldn-broken;nvdec;online;status-playable,playable,2021-06-11 16:19:04.000 +"Dragon Ball Xenoverse 2",010078D000F88000,gpu;status-ingame;nvdec;online;ldn-untested,ingame,2022-07-24 12:31:01.000 +"DRAGON BALL Z: KAKAROT + A NEW POWER AWAKENS SET",010051C0134F8000,status-playable;vulkan-backend-bug,playable,2024-08-28 00:03:50.000 +"Dragon Marked for Death: Frontline Fighters (Empress & Warrior)",010089700150E000,status-playable;ldn-untested;audout,playable,2022-03-10 06:44:34.000 +"Dragon Quest",0100EFC00EFB2000,gpu;status-boots,boots,2021-11-09 03:31:32.000 +"Dragon Quest Builders",010008900705C000,gpu;status-ingame;nvdec,ingame,2023-08-14 09:54:36.000 +"Dragon Quest Builders 2",010042000A986000,status-playable,playable,2024-04-19 16:36:38.000 +"Dragon Quest Heroes I + II (JP)",0100CD3000BDC000,nvdec;status-playable,playable,2021-04-08 14:27:16.000 +"Dragon Quest II: Luminaries of the Legendary Line",010062200EFB4000,status-playable,playable,2022-09-13 16:44:11.000 +"Dragon Quest III HD-2D Remake",01003E601E324000,status-ingame;vulkan-backend-bug;UE4;audout;mac-bug,ingame,2025-01-07 04:10:27.000 +"Dragon Quest III: The Seeds of Salvation",010015600EFB6000,gpu;status-boots,boots,2021-11-09 03:38:34.000 +"DRAGON QUEST MONSTERS: The Dark Prince",0100A77018EA0000,status-playable,playable,2023-12-29 16:10:05.000 +"Dragon Quest Treasures",0100217014266000,gpu;status-ingame;UE4,ingame,2023-05-09 11:16:52.000 +"Dragon Quest X Awakening Five Races Offline",0100E2E0152E4000,status-playable;nvdec;UE4,playable,2024-08-20 10:04:24.000 +"Dragon Quest XI S: Echoes of an Elusive Age - Definitive Edition",01006C300E9F0000,status-playable;UE4,playable,2021-11-27 12:27:11.000 +"Dragon's Dogma: Dark Arisen",010032C00AC58000,status-playable,playable,2022-07-24 12:58:33.000 +"Dragon's Lair Trilogy",,nvdec;status-playable,playable,2021-01-13 22:12:07.000 +"DragonBlaze for Nintendo Switch",,32-bit;status-playable,playable,2020-10-14 11:11:28.000 +"DragonFangZ",,status-playable,playable,2020-09-28 21:35:18.000 +"Dragons Dawn of New Riders",,nvdec;status-playable,playable,2021-01-27 20:05:26.000 +"Drawful 2",0100F7800A434000,status-ingame,ingame,2022-07-24 13:50:21.000 +"Drawngeon: Dungeons of Ink and Paper",0100B7E0102E4000,gpu;status-ingame,ingame,2022-09-19 15:41:25.000 +"Dream",,status-playable,playable,2020-12-15 19:55:07.000 +"Dream Alone - 0100AA0093DC000",,nvdec;status-playable,playable,2021-01-27 19:41:50.000 +"DreamBall",,UE4;crash;gpu;status-ingame,ingame,2020-08-05 14:45:25.000 +"Dreaming Canvas",010058B00F3C0000,UE4;gpu;status-ingame,ingame,2021-06-13 22:50:07.000 +"Dreamo",0100D24013466000,status-playable;UE4,playable,2022-10-17 18:25:28.000 +"DreamWorks Spirit Lucky's Big Adventure",0100236011B4C000,status-playable,playable,2022-10-27 13:30:52.000 +"Drone Fight",010058C00A916000,status-playable,playable,2022-07-24 14:31:56.000 +"Drowning",010052000A574000,status-playable,playable,2022-07-25 14:28:26.000 +"Drums",,status-playable,playable,2020-12-17 17:21:51.000 +"Duck Life Adventure",01005BC012C66000,status-playable,playable,2022-10-10 11:27:03.000 +"Duke Nukem 3D: 20th Anniversary World Tour",01007EF00CB88000,32-bit;status-playable;ldn-untested,playable,2022-08-19 22:22:40.000 +"Dull Grey",010068D0141F2000,status-playable,playable,2022-10-27 13:40:38.000 +"Dungeon Nightmares 1 + 2 Collection",0100926013600000,status-playable,playable,2022-10-17 18:54:22.000 +"Dungeon of the Endless",010034300F0E2000,nvdec;status-playable,playable,2021-05-27 19:16:26.000 +"Dungeon Stars",,status-playable,playable,2021-01-18 14:28:37.000 +"Dungeons & Bombs",,status-playable,playable,2021-04-06 12:46:22.000 +"Dunk Lords",0100EC30140B6000,status-playable,playable,2024-06-26 00:07:26.000 +"Dusk Diver",010011C00E636000,status-boots;crash;UE4,boots,2021-11-06 09:01:30.000 +"Dust: An Elysian Tail",0100B6E00A420000,status-playable,playable,2022-07-25 15:28:12.000 +"Dustoff Z",,status-playable,playable,2020-12-04 23:22:29.000 +"Dying Light: Platinum Edition",01008c8012920000,services-horizon;status-boots,boots,2024-03-11 10:43:32.000 +"Dyna Bomb",,status-playable,playable,2020-06-07 13:26:55.000 +"DYNASTY WARRIORS 8: Xtreme Legends Definitive Edition",0100E9A00CB30000,status-playable;nvdec,playable,2024-06-26 00:16:30.000 +"DYSMANTLE",010008900BC5A000,gpu;status-ingame,ingame,2024-07-15 16:24:12.000 +"EA Sports FC 24",0100BDB01A0E6000,status-boots,boots,2023-10-04 18:32:59.000 +"EA SPORTS FC 25",010054E01D878000,status-ingame;crash,ingame,2024-09-25 21:07:50.000 +"EA SPORTS FIFA 23 Nintendo Switch™ Legacy Edition",01001C8016B4E000,gpu;status-ingame;crash,ingame,2024-06-10 23:33:05.000 +"Eagle Island",010037400C7DA000,status-playable,playable,2021-04-10 13:15:42.000 +"Earth Defense Force World Brothers ( ま~るい地球が四角くなった!? デジボク地球防衛軍 )",0100B9E012992000,status-playable;UE4,playable,2022-12-07 12:59:16.000 +"Earth Defense Force: World Brothers",0100298014030000,status-playable;UE4,playable,2022-10-27 14:13:31.000 +"EARTH WARS",01009B7006C88000,status-playable,playable,2021-06-05 11:18:33.000 +"Earthfall: Alien Horde",0100DFC00E472000,status-playable;nvdec;UE4;ldn-untested,playable,2022-09-13 17:32:37.000 +"Earthlock",01006E50042EA000,status-playable,playable,2021-06-05 11:51:02.000 +"EarthNight",0100A2E00BB0C000,status-playable,playable,2022-09-19 21:02:20.000 +"Earthworms",0100DCE00B756000,status-playable,playable,2022-07-25 16:28:55.000 +"Earthworms Demo",,status-playable,playable,2021-01-05 16:57:11.000 +"Easy Come Easy Golf",0100ECF01800C000,status-playable;online-broken;regression,playable,2024-04-04 16:15:00.000 +"EAT BEAT DEADSPIKE-san",0100A9B009678000,audio;status-playable;Needs Update,playable,2022-12-02 19:25:29.000 +"eBaseball Powerful Pro Yakyuu 2022",0100BCA016636000,gpu;services-horizon;status-nothing;crash,nothing,2024-05-26 23:07:19.000 +"Eclipse: Edge of Light",,status-playable,playable,2020-08-11 23:06:29.000 +"eCrossminton",,status-playable,playable,2020-07-11 18:24:27.000 +"Edna & Harvey: Harvey's New Eyes",0100ABE00DB4E000,nvdec;status-playable,playable,2021-01-26 14:36:08.000 +"Edna & Harvey: The Breakout - Anniversary Edition",01004F000B716000,status-ingame;crash;nvdec,ingame,2022-08-01 16:59:56.000 +"Effie",01002550129F0000,status-playable,playable,2022-10-27 14:36:39.000 +"Ego Protocol",,nvdec;status-playable,playable,2020-12-16 20:16:35.000 +"Eiga Sumikko Gurashi Tobidasu Ehon to Himitsu no Ko Game de Asobo Ehon no Sekai",,status-playable,playable,2020-11-12 00:11:50.000 +"Eight Dragons",01003AD013BD2000,status-playable;nvdec,playable,2022-10-27 14:47:28.000 +"El Hijo - A Wild West Tale",010020A01209C000,nvdec;status-playable,playable,2021-04-19 17:44:08.000 +"Elden: Path of the Forgotten",,status-playable,playable,2020-12-15 00:33:19.000 +"ELEA: Paradigm Shift",,UE4;crash;status-nothing,nothing,2020-10-04 19:07:43.000 +"Element",0100A6700AF10000,status-playable,playable,2022-07-25 17:17:16.000 +"Elliot Quest",0100128003A24000,status-playable,playable,2022-07-25 17:46:14.000 +"Elrador Creatures",,slow;status-playable,playable,2020-12-12 12:35:35.000 +"Ember",010041A00FEC6000,status-playable;nvdec,playable,2022-09-19 21:16:11.000 +"Embracelet",,status-playable,playable,2020-12-04 23:45:00.000 +"Emma: Lost in Memories",010017b0102a8000,nvdec;status-playable,playable,2021-01-28 16:19:10.000 +"Enchanted in the Moonlight - Kiryu, Chikage & Yukinojo",010068300E08E000,gpu;status-ingame;nvdec,ingame,2022-11-20 16:18:45.000 +"Enchanting Mahjong Match",,gpu;status-ingame,ingame,2020-04-17 22:01:31.000 +"Endless Fables: Dark Moor",01004F3011F92000,gpu;nvdec;status-ingame,ingame,2021-03-07 15:31:03.000 +"Endless Ocean Luminous",010067B017588000,services-horizon;status-ingame;crash,ingame,2024-05-30 02:05:57.000 +"Energy Cycle Edge",0100B8700BD14000,services;status-ingame,ingame,2021-11-30 05:02:31.000 +"Energy Invasion",,status-playable,playable,2021-01-14 21:32:26.000 +"Enigmatis 2: The Mists of Ravenwood",0100C6200A0AA000,crash;regression;status-boots,boots,2021-06-06 15:15:30.000 +"Enter the Gungeon",01009D60076F6000,status-playable,playable,2022-07-25 20:28:33.000 +"Epic Loon",0100262009626000,status-playable;nvdec,playable,2022-07-25 22:06:13.000 +"EQI",01000FA0149B6000,status-playable;nvdec;UE4,playable,2022-10-27 16:42:32.000 +"EQQO",0100E95010058000,UE4;nvdec;status-playable,playable,2021-06-13 23:10:51.000 +"Escape First",,status-playable,playable,2020-10-20 22:46:53.000 +"Escape First 2",010021201296A000,status-playable,playable,2021-03-24 11:59:41.000 +"Escape from Chernobyl",0100FEF00F0AA000,status-boots;crash,boots,2022-09-19 21:36:58.000 +"Escape from Life Inc",010023E013244000,status-playable,playable,2021-04-19 17:34:09.000 +"Escape from Tethys",,status-playable,playable,2020-10-14 22:38:25.000 +"Escape Game Fort Boyard",,status-playable,playable,2020-07-12 12:45:43.000 +"ESP Ra.De. Psi",0100F9600E746000,audio;slow;status-ingame,ingame,2024-03-07 15:05:08.000 +"Esports powerful pro yakyuu 2020",010073000FE18000,gpu;status-ingame;crash;Needs More Attention,ingame,2024-04-29 05:34:14.000 +"Estranged: The Departure",01004F9012FD8000,status-playable;nvdec;UE4,playable,2022-10-24 10:37:58.000 +"Eternum Ex",,status-playable,playable,2021-01-13 20:28:32.000 +"Europa (Demo)",010092501EB2C000,gpu;status-ingame;crash;UE4,ingame,2024-04-23 10:47:12.000 +"EVE ghost enemies",01007BE0160D6000,gpu;status-ingame,ingame,2023-01-14 03:13:30.000 +"even if TEMPEST",010095E01581C000,gpu;status-ingame,ingame,2023-06-22 23:50:25.000 +"Event Horizon: Space Defense",,status-playable,playable,2020-07-31 20:31:24.000 +"EVERSPACE",0100DCF0093EC000,status-playable;UE4,playable,2022-08-14 01:16:24.000 +"Everybody 1-2-Switch!",01006F900BF8E000,services;deadlock;status-nothing,nothing,2023-07-01 05:52:55.000 +"Evil Defenders",,nvdec;status-playable,playable,2020-09-28 17:11:00.000 +"Evolution Board Game",01006A800FA22000,online;status-playable,playable,2021-01-20 22:37:56.000 +"Exception",0100F2D00C7DE000,status-playable;online-broken,playable,2022-09-20 12:47:10.000 +"Exit the Gungeon",0100DD30110CC000,status-playable,playable,2022-09-22 17:04:43.000 +"Exodemon",0100A82013976000,status-playable,playable,2022-10-27 20:17:52.000 +"Exorder",0100FA800A1F4000,nvdec;status-playable,playable,2021-04-15 14:17:20.000 +"Explosive Jake",01009B7010B42000,status-boots;crash,boots,2021-11-03 07:48:32.000 +"Eyes: The Horror Game",0100EFE00A3C2000,status-playable,playable,2021-01-20 21:59:46.000 +"Fable of Fairy Stones",0100E3D0103CE000,status-playable,playable,2021-05-05 21:04:54.000 +"Factorio",01004200189F4000,deadlock;status-boots,boots,2024-06-11 19:26:16.000 +"Fae Farm",010073F0189B6000,status-playable,playable,2024-08-25 15:12:12.000 +"Faeria",010069100DB08000,status-menus;nvdec;online-broken,menus,2022-10-04 16:44:41.000 +"Fairune Collection",01008A6009758000,status-playable,playable,2021-06-06 15:29:56.000 +"Fairy Fencer F™: Advent Dark Force",0100F6D00B8F2000,status-ingame;32-bit;crash;nvdec,ingame,2023-04-16 03:53:48.000 +"Fairy Tail",0100CF900FA3E000,status-playable;nvdec,playable,2022-10-04 23:00:32.000 +"Fall Of Light - Darkest Edition",01005A600BE60000,slow;status-ingame;nvdec,ingame,2024-07-24 04:19:26.000 +"Fallen Legion Revenants",0100AA801258C000,status-menus;crash,menus,2021-11-25 08:53:20.000 +"Famicom Detective Club: The Girl Who Stands Behind",0100D670126F6000,status-playable;nvdec,playable,2022-10-27 20:41:40.000 +"Famicom Detective Club: The Missing Heir",010033F0126F4000,status-playable;nvdec,playable,2022-10-27 20:56:23.000 +"Family Feud 2021",010060200FC44000,status-playable;online-broken,playable,2022-10-10 11:42:21.000 +"Family Mysteries: Poisonous Promises",0100034012606000,audio;status-menus;crash,menus,2021-11-26 12:35:06.000 +"Fantasy Friends",010017C012726000,status-playable,playable,2022-10-17 19:42:39.000 +"Fantasy Hero Unsigned Legacy",0100767008502000,status-playable,playable,2022-07-26 12:28:52.000 +"Fantasy Strike",0100944003820000,online;status-playable,playable,2021-02-27 01:59:18.000 +"Fantasy Tavern Sextet -Vol.1 New World Days-",01000E2012F6E000,gpu;status-ingame;crash;Needs Update,ingame,2022-12-05 16:48:00.000 +"Fantasy Tavern Sextet -Vol.2 Adventurer's Days-",,gpu;slow;status-ingame;crash,ingame,2021-11-06 02:57:29.000 +"FAR: Lone Sails",010022700E7D6000,status-playable,playable,2022-09-06 16:33:05.000 +"Farabel",,status-playable,playable,2020-08-03 17:47:28.000 +"Farm Expert 2019 for Nintendo Switch",,status-playable,playable,2020-07-09 21:42:57.000 +"Farm Mystery",01000E400ED98000,status-playable;nvdec,playable,2022-09-06 16:46:47.000 +"Farm Together",,status-playable,playable,2021-01-19 20:01:19.000 +"Farming Simulator 20",0100EB600E914000,nvdec;status-playable,playable,2021-06-13 10:52:44.000 +"Farming Simulator Nintendo Switch Edition",,nvdec;status-playable,playable,2021-01-19 14:46:44.000 +"Fashion Dreamer",0100E99019B3A000,status-playable,playable,2023-11-12 06:42:52.000 +"Fast RMX",01009510001CA000,slow;status-ingame;crash;ldn-partial,ingame,2024-06-22 20:48:58.000 +"Fatal Frame: Maiden of Black Water",0100BEB015604000,status-playable,playable,2023-07-05 16:01:40.000 +"Fatal Frame: Mask of the Lunar Eclipse",0100DAE019110000,status-playable;Incomplete,playable,2024-04-11 06:01:30.000 +"Fate/EXTELLA",010053E002EA2000,gpu;status-ingame;nvdec;online-broken;vulkan-backend-bug;opengl-backend-bug,ingame,2023-04-24 23:37:55.000 +"Fate/EXTELLA LINK",010051400B17A000,ldn-untested;nvdec;status-playable,playable,2021-01-27 00:45:50.000 +"fault - milestone one",,nvdec;status-playable,playable,2021-03-24 10:41:49.000 +"Fear Effect Sedna",,nvdec;status-playable,playable,2021-01-19 13:10:33.000 +"Fearmonium",0100F5501CE12000,status-boots;crash,boots,2024-03-06 11:26:11.000 +"Feather",0100E4300CB3E000,status-playable,playable,2021-06-03 14:11:27.000 +"Felix the Reaper",,nvdec;status-playable,playable,2020-10-20 23:43:03.000 +"Feudal Alloy",,status-playable,playable,2021-01-14 08:48:14.000 +"FEZ",01008D900B984000,gpu;status-ingame,ingame,2021-04-18 17:10:16.000 +"FIA European Truck Racing Championship",01007510040E8000,status-playable;nvdec,playable,2022-09-06 17:51:59.000 +"FIFA 18",0100F7B002340000,gpu;status-ingame;online-broken;ldn-untested,ingame,2022-07-26 12:43:59.000 +"FIFA 19",0100FFA0093E8000,gpu;status-ingame;nvdec;online-broken;ldn-untested,ingame,2022-07-26 13:07:07.000 +"FIFA 20 Legacy Edition",01005DE00D05C000,gpu;status-ingame;nvdec;online-broken;ldn-untested,ingame,2022-09-13 17:57:20.000 +"FIFA 21 Legacy Edition",01000A001171A000,gpu;status-ingame;online-broken,ingame,2023-12-11 22:10:19.000 +"FIFA 22 Legacy Edition",0100216014472000,gpu;status-ingame,ingame,2024-03-02 14:13:48.000 +"Fight Crab",01006980127F0000,status-playable;online-broken;ldn-untested,playable,2022-10-05 10:24:04.000 +"Fight of Animals",,online;status-playable,playable,2020-10-15 15:08:28.000 +"Fight'N Rage",,status-playable,playable,2020-06-16 23:35:19.000 +"Fighting EX Layer Another Dash",0100D02014048000,status-playable;online-broken;UE4,playable,2024-04-07 10:22:33.000 +"Figment",0100118009C68000,nvdec;status-playable,playable,2021-01-27 19:36:05.000 +"Fill-a-Pix: Phil's Epic Adventure",,status-playable,playable,2020-12-22 13:48:22.000 +"Fimbul",0100C3A00BB76000,status-playable;nvdec,playable,2022-07-26 13:31:47.000 +"Fin and the Ancient Mystery",,nvdec;status-playable,playable,2020-12-17 16:40:39.000 +"FINAL FANTASY CRYSTAL CHRONICLES Remastered Edition",0100CE4010AAC000,status-playable,playable,2023-04-02 23:39:12.000 +"FINAL FANTASY I",01000EA014150000,status-nothing;crash,nothing,2024-09-05 20:55:30.000 +"FINAL FANTASY II",01006B7014156000,status-nothing;crash,nothing,2024-04-13 19:18:04.000 +"FINAL FANTASY IX",01006F000B056000,audout;nvdec;status-playable,playable,2021-06-05 11:35:00.000 +"FINAL FANTASY V",0100AA201415C000,status-playable,playable,2023-04-26 01:11:55.000 +"Final Fantasy VII",0100A5B00BDC6000,status-playable,playable,2022-12-09 17:03:30.000 +"FINAL FANTASY VIII REMASTERED",01008B900DC0A000,status-playable;nvdec,playable,2023-02-15 10:57:48.000 +"FINAL FANTASY X/X-2 HD REMASTER",0100BC300CB48000,gpu;status-ingame,ingame,2022-08-16 20:29:26.000 +"FINAL FANTASY XII THE ZODIAC AGE",0100EB100AB42000,status-playable;opengl;vulkan-backend-bug,playable,2024-08-11 07:01:54.000 +"FINAL FANTASY XV POCKET EDITION HD",,status-playable,playable,2021-01-05 17:52:08.000 +"Final Light, The Prison",,status-playable,playable,2020-07-31 21:48:44.000 +"Finding Teddy 2 : Definitive Edition",0100FF100FB68000,gpu;status-ingame,ingame,2024-04-19 16:51:33.000 +"Fire & Water",,status-playable,playable,2020-12-15 15:43:20.000 +"Fire Emblem Warriors",0100F15003E64000,status-playable;nvdec,playable,2023-05-10 01:53:10.000 +"Fire Emblem Warriors: Three Hopes",010071F0143EA000,gpu;status-ingame;nvdec,ingame,2024-05-01 07:07:42.000 +"Fire Emblem: Engage",0100A6301214E000,status-playable;amd-vendor-bug;mac-bug,playable,2024-09-01 23:37:26.000 +"Fire Emblem: Shadow Dragon and the Blade of Light",0100A12011CC8000,status-playable,playable,2022-10-17 19:49:14.000 +"Fire Emblem: Three Houses",010055D009F78000,status-playable;online-broken,playable,2024-09-14 23:53:50.000 +"Fire: Ungh's Quest",010025C014798000,status-playable;nvdec,playable,2022-10-27 21:41:26.000 +"Firefighters - The Simulation",0100434003C58000,status-playable,playable,2021-02-19 13:32:05.000 +"Firefighters: Airport Fire Department",,status-playable,playable,2021-02-15 19:17:00.000 +"Firewatch",0100AC300919A000,status-playable,playable,2021-06-03 10:56:38.000 +"Firework",,status-playable,playable,2020-12-04 20:20:09.000 +"Fishing Star World Tour",0100DEB00ACE2000,status-playable,playable,2022-09-13 19:08:51.000 +"Fishing Universe Simulator",010069800D292000,status-playable,playable,2021-04-15 14:00:43.000 +"Fit Boxing",0100807008868000,status-playable,playable,2022-07-26 19:24:55.000 +"Fitness Boxing",,services;status-ingame,ingame,2020-05-17 14:00:48.000 +"Fitness Boxing",0100E7300AAD4000,status-playable,playable,2021-04-14 20:33:33.000 +"Fitness Boxing 2: Rhythm & Exercise",0100073011382000,crash;status-ingame,ingame,2021-04-14 20:40:48.000 +"Five Dates",,nvdec;status-playable,playable,2020-12-11 15:17:11.000 +"Five Nights at Freddy's",0100B6200D8D2000,status-playable,playable,2022-09-13 19:26:36.000 +"Five Nights at Freddy's 2",01004EB00E43A000,status-playable,playable,2023-02-08 15:48:24.000 +"Five Nights at Freddy's 3",010056100E43C000,status-playable,playable,2022-09-13 20:58:07.000 +"Five Nights at Freddy's 4",010083800E43E000,status-playable,playable,2023-08-19 07:28:03.000 +"Five Nights at Freddy's: Help Wanted",0100F7901118C000,status-playable;UE4,playable,2022-09-29 12:40:09.000 +"Five Nights at Freddy's: Sister Location",01003B200E440000,status-playable,playable,2023-10-06 09:00:58.000 +"Five Nights At Freddy’s Security Breach",01009060193C4000,gpu;status-ingame;crash;mac-bug,ingame,2023-04-23 22:33:28.000 +"Flan",010038200E088000,status-ingame;crash;regression,ingame,2021-11-17 07:39:28.000 +"Flashback",,nvdec;status-playable,playable,2020-05-14 13:57:29.000 +"Flat Heroes",0100C53004C52000,gpu;status-ingame,ingame,2022-07-26 19:37:37.000 +"Flatland: Prologue",,status-playable,playable,2020-12-11 20:41:12.000 +"Flinthook",,online;status-playable,playable,2021-03-25 20:42:29.000 +"Flip Wars",010095A004040000,services;status-ingame;ldn-untested,ingame,2022-05-02 15:39:18.000 +"Flipping Death",01009FB002B2E000,status-playable,playable,2021-02-17 16:12:30.000 +"Flood of Light",,status-playable,playable,2020-05-15 14:15:25.000 +"Floor Kids",0100DF9005E7A000,status-playable;nvdec,playable,2024-08-18 19:38:49.000 +"Florence",,status-playable,playable,2020-09-05 01:22:30.000 +"Flowlines VS",,status-playable,playable,2020-12-17 17:01:53.000 +"Flux8",,nvdec;status-playable,playable,2020-06-19 20:55:11.000 +"Fly O'Clock VS",,status-playable,playable,2020-05-17 13:39:52.000 +"Fly Punch Boom!",,online;status-playable,playable,2020-06-21 12:06:11.000 +"Flying Hero X",0100419013A8A000,status-menus;crash,menus,2021-11-17 07:46:58.000 +"Fobia",,status-playable,playable,2020-12-14 21:05:23.000 +"Food Truck Tycoon",0100F3900D0F0000,status-playable,playable,2022-10-17 20:15:55.000 +"Football Manager 2021 Touch",01007CF013152000,gpu;status-ingame,ingame,2022-10-17 20:08:23.000 +"FOOTBALL MANAGER 2023 TOUCH",0100EDC01990E000,gpu;status-ingame,ingame,2023-08-01 03:40:53.000 +"Football Manager Touch 2018",010097F0099B4000,status-playable,playable,2022-07-26 20:17:56.000 +"For The King",010069400B6BE000,nvdec;status-playable,playable,2021-02-15 18:51:44.000 +"Forager",01001D200BCC4000,status-menus;crash,menus,2021-11-24 07:10:17.000 +"Foreclosed",0100AE001256E000,status-ingame;crash;Needs More Attention;nvdec,ingame,2022-12-06 14:41:12.000 +"Foregone",,deadlock;status-ingame,ingame,2020-12-17 15:26:53.000 +"Forgotton Anne",010059E00B93C000,nvdec;status-playable,playable,2021-02-15 18:28:07.000 +"FORMA.8",,nvdec;status-playable,playable,2020-11-15 01:04:32.000 +"Fort Boyard",,nvdec;slow;status-playable,playable,2020-05-15 13:22:53.000 +"Fortnite",010025400AECE000,services-horizon;status-nothing,nothing,2024-04-06 18:23:25.000 +"Fossil Hunters",0100CA500756C000,status-playable;nvdec,playable,2022-07-27 11:37:20.000 +"FOX n FORESTS",01008A100A028000,status-playable,playable,2021-02-16 14:27:49.000 +"FoxyLand",,status-playable,playable,2020-07-29 20:55:20.000 +"FoxyLand 2",,status-playable,playable,2020-08-06 14:41:30.000 +"Fractured Minds",01004200099F2000,status-playable,playable,2022-09-13 21:21:40.000 +"FRAMED COLLECTION",0100F1A00A5DC000,status-playable;nvdec,playable,2022-07-27 11:48:15.000 +"Fred3ric",0100AC40108D8000,status-playable,playable,2021-04-15 13:30:31.000 +"Frederic 2",,status-playable,playable,2020-07-23 16:44:37.000 +"Frederic: Resurrection of Music",,nvdec;status-playable,playable,2020-07-23 16:59:53.000 +"Freedom Finger",010082B00EE50000,nvdec;status-playable,playable,2021-06-09 19:31:30.000 +"Freedom Planet",,status-playable,playable,2020-05-14 12:23:06.000 +"Friday the 13th: Killer Puzzle",010003F00BD48000,status-playable,playable,2021-01-28 01:33:38.000 +"Friday the 13th: The Game",010092A00C4B6000,status-playable;nvdec;online-broken;UE4,playable,2022-09-06 17:33:27.000 +"Front Mission 1st Remake",0100F200178F4000,status-playable,playable,2023-06-09 07:44:24.000 +"Frontline Zed",,status-playable,playable,2020-10-03 12:55:59.000 +"Frost",0100B5300B49A000,status-playable,playable,2022-07-27 12:00:36.000 +"Fruitfall Crush",,status-playable,playable,2020-10-20 11:33:33.000 +"FullBlast",,status-playable,playable,2020-05-19 10:34:13.000 +"FUN! FUN! Animal Park",010002F00CC20000,status-playable,playable,2021-04-14 17:08:52.000 +"FunBox Party",,status-playable,playable,2020-05-15 12:07:02.000 +"Funghi Puzzle Funghi Explosion",,status-playable,playable,2020-11-23 14:17:41.000 +"Funimation",01008E10130F8000,gpu;status-boots,boots,2021-04-08 13:08:17.000 +"Funny Bunny Adventures",,status-playable,playable,2020-08-05 13:46:56.000 +"Furi",01000EC00AF98000,status-playable,playable,2022-07-27 12:21:20.000 +"Furi Definitive Edition",01000EC00AF98000,status-playable,playable,2022-07-27 12:35:08.000 +"Furwind",0100A6B00D4EC000,status-playable,playable,2021-02-19 19:44:08.000 +"Fury Unleashed",,crash;services;status-ingame,ingame,2020-10-18 11:52:40.000 +"Fury Unleashed Demo",,status-playable,playable,2020-10-08 20:09:21.000 +"FUSER",0100E1F013674000,status-playable;nvdec;UE4,playable,2022-10-17 20:58:32.000 +"Fushigi no Gensokyo Lotus Labyrinth",,Needs Update;audio;gpu;nvdec;status-ingame,ingame,2021-01-20 15:30:02.000 +"Futari de! Nyanko Daisensou",01003C300B274000,status-playable,playable,2024-01-05 22:26:52.000 +"FUZE Player",010055801134E000,status-ingame;online-broken;vulkan-backend-bug,ingame,2022-10-18 12:23:53.000 +"FUZE4",0100EAD007E98000,status-playable;vulkan-backend-bug,playable,2022-09-06 19:25:01.000 +"FuzzBall",010067600F1A0000,crash;status-nothing,nothing,2021-03-29 20:13:21.000 +"G-MODE Archives 06 The strongest ever Julia Miyamoto",,status-playable,playable,2020-10-15 13:06:26.000 +"G.I. Joe Operation Blackout",,UE4;crash;status-boots,boots,2020-11-21 12:37:44.000 +"Gal Metal - 01B8000C2EA000",,status-playable,playable,2022-07-27 20:57:48.000 +"Gal*Gun 2",010024700901A000,status-playable;nvdec;UE4,playable,2022-07-27 12:45:37.000 +"Gal*Gun Returns [ ぎゃる☆がん りたーんず ]",0100047013378000,status-playable;nvdec,playable,2022-10-17 23:50:46.000 +"GALAK-Z: Variant S",0100C9800A454000,status-boots;online-broken,boots,2022-07-29 11:59:12.000 +"Game Boy - Nintendo Switch Online",0100C62011050000,status-playable,playable,2023-03-21 12:43:48.000 +"Game Boy Advance - Nintendo Switch Online",010012F017576000,status-playable,playable,2023-02-16 20:38:15.000 +"Game Builder Garage",0100FA5010788000,status-ingame,ingame,2024-04-20 21:46:22.000 +"Game Dev Story",,status-playable,playable,2020-05-20 00:00:38.000 +"Game Doraemon Nobita no Shin Kyoryu",01006BD00F8C0000,gpu;status-ingame,ingame,2023-02-27 02:03:28.000 +"Garage",,status-playable,playable,2020-05-19 20:59:53.000 +"Garfield Kart Furious Racing",010061E00E8BE000,status-playable;ldn-works;loader-allocator,playable,2022-09-13 21:40:25.000 +"Gates of Hell",,slow;status-playable,playable,2020-10-22 12:44:26.000 +"Gato Roboto",010025500C098000,status-playable,playable,2023-01-20 15:04:11.000 +"Gear.Club Unlimited",010065E003FD8000,status-playable,playable,2021-06-08 13:03:19.000 +"Gear.Club Unlimited 2",010072900AFF0000,status-playable;nvdec;online-broken,playable,2022-07-29 12:52:16.000 +"Geki Yaba Runner Anniversary Edition",01000F000D9F0000,status-playable,playable,2021-02-19 18:59:07.000 +"Gekido Kintaro's Revenge",,status-playable,playable,2020-10-27 12:44:05.000 +"Gelly Break",01009D000AF3A000,UE4;status-playable,playable,2021-03-03 16:04:02.000 +"Gem Smashers",01001A4008192000,nvdec;status-playable,playable,2021-06-08 13:40:51.000 +"Genetic Disaster",,status-playable,playable,2020-06-19 21:41:12.000 +"Genkai Tokki Moero Crystal H- 極限凸起 萌情水晶 H - 한계돌파 모에로크리스탈 H",0100D7E0110B2000,32-bit;status-playable,playable,2022-06-06 00:42:09.000 +"Gensokyo Defenders",010000300C79C000,status-playable;online-broken;UE4,playable,2022-07-29 13:48:12.000 +"Gensou Rougoku no Kaleidscope",0100AC600EB4C000,status-menus;crash,menus,2021-11-24 08:45:07.000 +"Georifters",,UE4;crash;nvdec;status-menus,menus,2020-12-04 22:30:50.000 +"Gerrrms",,status-playable,playable,2020-08-15 11:32:52.000 +"Get 10 Quest",,status-playable,playable,2020-08-03 12:48:39.000 +"Get Over Here",0100B5B00E77C000,status-playable,playable,2022-10-28 11:53:52.000 +"Ghost 1.0",0100EEB005ACC000,status-playable,playable,2021-02-19 20:48:47.000 +"Ghost Blade HD",010063200C588000,status-playable;online-broken,playable,2022-09-13 21:51:21.000 +"Ghost Grab 3000",,status-playable,playable,2020-07-11 18:09:52.000 +"Ghost Parade",,status-playable,playable,2020-07-14 00:43:54.000 +"Ghost Sweeper",01004B301108C000,status-playable,playable,2022-10-10 12:45:36.000 +"Ghost Trick Phantom Detective",010029B018432000,status-playable,playable,2023-08-23 14:50:12.000 +"Ghostbusters: The Video Game Remastered",010008A00F632000,status-playable;nvdec,playable,2021-09-17 07:26:57.000 +"Ghostrunner",,UE4;crash;gpu;nvdec;status-ingame,ingame,2020-12-17 13:01:59.000 +"Ghosts 'n Goblins Resurrection",0100D6200F2BA000,status-playable,playable,2023-05-09 12:40:41.000 +"Giana Sisters: Twisted Dreams - Owltimate Edition",01003830092B8000,status-playable,playable,2022-07-29 14:06:12.000 +"Gibbous - A Cthulhu Adventure",0100D95012C0A000,status-playable;nvdec,playable,2022-10-10 12:57:17.000 +"GIGA WRECKER Alt.",010045F00BFC2000,status-playable,playable,2022-07-29 14:13:54.000 +"Gigantosaurus The Game",01002C400E526000,status-playable;UE4,playable,2022-09-27 21:20:00.000 +"Ginger: Beyond the Crystal",0100C50007070000,status-playable,playable,2021-02-17 16:27:00.000 +"Girabox",,status-playable,playable,2020-12-12 13:55:05.000 +"Giraffe and Annika",,UE4;crash;status-ingame,ingame,2020-12-04 22:41:57.000 +"Girls und Panzer Dream Tank Match DX",01006DD00CC96000,status-playable;ldn-untested,playable,2022-09-12 16:07:11.000 +"Glaive: Brick Breaker",,status-playable,playable,2020-05-20 12:15:59.000 +"Glitch's Trip",,status-playable,playable,2020-12-17 16:00:57.000 +"Glyph",0100EB501130E000,status-playable,playable,2021-02-08 19:56:51.000 +"Gnome More War",,status-playable,playable,2020-12-17 16:33:07.000 +"Gnomes Garden 2",,status-playable,playable,2021-02-19 20:08:13.000 +"Gnomes Garden: Lost King",010036C00D0D6000,deadlock;status-menus,menus,2021-11-18 11:14:03.000 +"Gnosia",01008EF013A7C000,status-playable,playable,2021-04-05 17:20:30.000 +"Go All Out",01000C800FADC000,status-playable;online-broken,playable,2022-09-21 19:16:34.000 +"Go Rally",010055A0161F4000,gpu;status-ingame,ingame,2023-08-16 21:18:23.000 +"GO VACATION",0100C1800A9B6000,status-playable;nvdec;ldn-works,playable,2024-05-13 19:28:53.000 +"Go! Fish Go!",,status-playable,playable,2020-07-27 13:52:28.000 +"Goat Simulator",010032600C8CE000,32-bit;status-playable,playable,2022-07-29 21:02:33.000 +"GOD EATER 3",01001C700873E000,gpu;status-ingame;nvdec,ingame,2022-07-29 21:33:21.000 +"GOD WARS THE COMPLETE LEGEND",,nvdec;status-playable,playable,2020-05-19 14:37:50.000 +"Gods Will Fall",0100CFA0111C8000,status-playable,playable,2021-02-08 16:49:59.000 +"Goetia",,status-playable,playable,2020-05-19 12:55:39.000 +"Going Under",,deadlock;nvdec;status-ingame,ingame,2020-12-11 22:29:46.000 +"Goken",,status-playable,playable,2020-08-05 20:22:38.000 +"Golazo - 010013800F0A4000",010013800F0A4000,status-playable,playable,2022-09-13 21:58:37.000 +"Golem Gates",01003C000D84C000,status-ingame;crash;nvdec;online-broken;UE4,ingame,2022-07-30 11:35:11.000 +"Golf Story",,status-playable,playable,2020-05-14 14:56:17.000 +"Golf With Your Friends",01006FB00EBE0000,status-playable;online-broken,playable,2022-09-29 12:55:11.000 +"Gone Home",0100EEC00AA6E000,status-playable,playable,2022-08-01 11:14:20.000 +"Gonner",,status-playable,playable,2020-05-19 12:05:02.000 +"Good Job!",,status-playable,playable,2021-03-02 13:15:55.000 +"Good Night, Knight",01003AD0123A2000,status-nothing;crash,nothing,2023-07-30 23:38:13.000 +"Good Pizza, Great Pizza",,status-playable,playable,2020-12-04 22:59:18.000 +"Goosebumps Dead of Night",,gpu;nvdec;status-ingame,ingame,2020-12-10 20:02:16.000 +"Goosebumps: The Game",,status-playable,playable,2020-05-19 11:56:52.000 +"Gorogoa",0100F2A005C98000,status-playable,playable,2022-08-01 11:55:08.000 +"GORSD",,status-playable,playable,2020-12-04 22:15:21.000 +"Gotcha Racing 2nd",,status-playable,playable,2020-07-23 17:14:04.000 +"Gothic Murder: Adventure That Changes Destiny",,deadlock;status-ingame;crash,ingame,2022-09-30 23:16:53.000 +"Grab the Bottle",,status-playable,playable,2020-07-14 17:06:41.000 +"Graceful Explosion Machine",,status-playable,playable,2020-05-19 20:36:55.000 +"Grand Brix Shooter",,slow;status-playable,playable,2020-06-24 13:23:54.000 +"Grand Guilds",010038100D436000,UE4;nvdec;status-playable,playable,2021-04-26 12:49:05.000 +"Grand Prix Story",0100BE600D07A000,status-playable,playable,2022-08-01 12:42:23.000 +"Grand Theft Auto 3",05B1D2ABD3D30000,services;status-nothing;crash;homebrew,nothing,2023-05-01 22:01:58.000 +"Grandia HD Collection",0100E0600BBC8000,status-boots;crash,boots,2024-08-19 04:29:48.000 +"Grass Cutter",,slow;status-ingame,ingame,2020-05-19 18:27:42.000 +"Grave Danger",,status-playable,playable,2020-05-18 17:41:28.000 +"GraviFire",010054A013E0C000,status-playable,playable,2021-04-05 17:13:32.000 +"Gravity Rider Zero",01002C2011828000,gpu;status-ingame;vulkan-backend-bug,ingame,2022-09-29 13:56:13.000 +"Greedroid",,status-playable,playable,2020-12-14 11:14:32.000 +"GREEN",010068D00AE68000,status-playable,playable,2022-08-01 12:54:15.000 +"Green Game",0100CBB0070EE000,nvdec;status-playable,playable,2021-02-19 18:51:55.000 +"GREEN The Life Algorithm",0100DFE00F002000,status-playable,playable,2022-09-27 21:37:13.000 +"Grey Skies: A War of the Worlds Story",0100DA7013792000,status-playable;UE4,playable,2022-10-24 11:13:59.000 +"GRID Autosport",0100DC800A602000,status-playable;nvdec;online-broken;ldn-untested,playable,2023-03-02 20:14:45.000 +"Grid Mania",,status-playable,playable,2020-05-19 14:11:05.000 +"Gridd: Retroenhanced",,status-playable,playable,2020-05-20 11:32:40.000 +"Grim Fandango Remastered",0100B7900B024000,status-playable;nvdec,playable,2022-08-01 13:55:58.000 +"Grim Legends 2: Song Of The Dark Swan",010078E012D80000,status-playable;nvdec,playable,2022-10-18 12:58:45.000 +"Grim Legends: The Forsaken Bride",010009F011F90000,status-playable;nvdec,playable,2022-10-18 13:14:06.000 +"Grimshade",01001E200F2F8000,status-playable,playable,2022-10-02 12:44:20.000 +"Grindstone",0100538012496000,status-playable,playable,2023-02-08 15:54:06.000 +"GRIP",0100459009A2A000,status-playable;nvdec;online-broken;UE4,playable,2022-08-01 15:00:22.000 +"GRIS",0100E1700C31C000,nvdec;status-playable,playable,2021-06-03 13:33:44.000 +"GRISAIA PHANTOM TRIGGER 01&02",01009D7011B02000,status-playable;nvdec,playable,2022-12-04 21:16:06.000 +"Grisaia Phantom Trigger 03",01005250123B8000,audout;status-playable,playable,2021-01-31 12:30:47.000 +"GRISAIA PHANTOM TRIGGER 04 -0100D970123BA000",0100D970123BA000,audout;status-playable,playable,2021-01-31 12:40:37.000 +"GRISAIA PHANTOM TRIGGER 05",01002330123BC000,audout;nvdec;status-playable,playable,2021-01-31 12:49:59.000 +"GRISAIA PHANTOM TRIGGER 5.5",0100CAF013AE6000,audout;nvdec;status-playable,playable,2021-01-31 12:59:44.000 +"Grizzland",010091300FFA0000,gpu;status-ingame,ingame,2024-07-11 16:28:34.000 +"Groove Coaster: Wai Wai Party!!!!",0100EB500D92E000,status-playable;nvdec;ldn-broken,playable,2021-11-06 14:54:27.000 +"Guacamelee! 2",,status-playable,playable,2020-05-15 14:56:59.000 +"Guacamelee! Super Turbo Championship Edition",,status-playable,playable,2020-05-13 23:44:18.000 +"Guess the Character",,status-playable,playable,2020-05-20 13:14:19.000 +"Guess The Word",,status-playable,playable,2020-07-26 21:34:25.000 +"GUILTY GEAR XX ACCENT CORE PLUS R",,nvdec;status-playable,playable,2021-01-13 09:28:33.000 +"GUNBIRD for Nintendo Switch",01003C6008940000,32-bit;status-playable,playable,2021-06-04 19:16:01.000 +"GUNBIRD2 for Nintendo Switch",,status-playable,playable,2020-10-10 14:41:16.000 +"Gunka o haita neko",,gpu;nvdec;status-ingame,ingame,2020-08-25 12:37:56.000 +"Gunman Clive HD Collection",,status-playable,playable,2020-10-09 12:17:35.000 +"Guns Gore and Cannoli 2",,online;status-playable,playable,2021-01-06 18:43:59.000 +"Gunvolt Chronicles: Luminous Avenger iX",,status-playable,playable,2020-06-16 22:47:07.000 +"Gunvolt Chronicles: Luminous Avenger iX 2",0100763015C2E000,status-nothing;crash;Needs Update,nothing,2022-04-29 15:34:34.000 +"Gurimugurimoa OnceMore Demo",01002C8018554000,status-playable,playable,2022-07-29 22:07:31.000 +"Gylt",0100AC601DCA8000,status-ingame;crash,ingame,2024-03-18 20:16:51.000 +"HAAK",0100822012D76000,gpu;status-ingame,ingame,2023-02-19 14:31:05.000 +"Habroxia",,status-playable,playable,2020-06-16 23:04:42.000 +"Hades",0100535012974000,status-playable;vulkan,playable,2022-10-05 10:45:21.000 +"Hakoniwa Explorer Plus",,slow;status-ingame,ingame,2021-02-19 16:56:19.000 +"Halloween Pinball",,status-playable,playable,2021-01-12 16:00:46.000 +"Hamidashi Creative",01006FF014152000,gpu;status-ingame,ingame,2021-12-19 15:30:51.000 +"Hammerwatch",01003B9007E86000,status-playable;online-broken;ldn-broken,playable,2022-08-01 16:28:46.000 +"Hand of Fate 2",01003620068EA000,status-playable,playable,2022-08-01 15:44:16.000 +"Hang the Kings",,status-playable,playable,2020-07-28 22:56:59.000 +"Happy Animals Mini Golf",010066C018E50000,gpu;status-ingame,ingame,2022-12-04 19:24:28.000 +"Hard West",0100ECE00D13E000,status-nothing;regression,nothing,2022-02-09 07:45:56.000 +"HARDCORE Maze Cube",,status-playable,playable,2020-12-04 20:01:24.000 +"HARDCORE MECHA",,slow;status-playable,playable,2020-11-01 15:06:33.000 +"HardCube",01000C90117FA000,status-playable,playable,2021-05-05 18:33:03.000 +"Hardway Party",,status-playable,playable,2020-07-26 12:35:07.000 +"Harvest Life",0100D0500AD30000,status-playable,playable,2022-08-01 16:51:45.000 +"Harvest Moon One World - 010016B010FDE00",,status-playable,playable,2023-05-26 09:17:19.000 +"Harvestella",0100A280187BC000,status-playable;UE4;vulkan-backend-bug;mac-bug,playable,2024-02-13 07:04:11.000 +"Has-Been Heroes",,status-playable,playable,2021-01-13 13:31:48.000 +"Hatsune Miku: Project DIVA Mega Mix",01001CC00FA1A000,audio;status-playable;online-broken,playable,2024-01-07 23:12:57.000 +"Haunted Dawn: The Zombie Apocalypse",01009E6014F18000,status-playable,playable,2022-10-28 12:31:51.000 +"Haunted Dungeons: Hyakki Castle",,status-playable,playable,2020-08-12 14:21:48.000 +"Haven",0100E2600DBAA000,status-playable,playable,2021-03-24 11:52:41.000 +"Hayfever",0100EA900FB2C000,status-playable;loader-allocator,playable,2022-09-22 17:35:41.000 +"Headliner: NoviNews",0100EFE00E1DC000,online;status-playable,playable,2021-03-01 11:36:00.000 +"Headsnatchers",,UE4;crash;status-menus,menus,2020-07-14 13:29:14.000 +"Headspun",,status-playable,playable,2020-07-31 19:46:47.000 +"Heart and Slash",,status-playable,playable,2021-01-13 20:56:32.000 +"Heaven Dust",,status-playable,playable,2020-05-17 14:02:41.000 +"Heaven's Vault",0100FD901000C000,crash;status-ingame,ingame,2021-02-08 18:22:01.000 +"Helheim Hassle",,status-playable,playable,2020-10-14 11:38:36.000 +"Hell is Other Demons",,status-playable,playable,2021-01-13 13:23:02.000 +"Hell Pie0",01000938017E5C00,status-playable;nvdec;UE4,playable,2022-11-03 16:48:46.000 +"Hell Warders",0100A4600E27A000,online;status-playable,playable,2021-02-27 02:31:03.000 +"Hellblade: Senua's Sacrifice",010044500CF8E000,gpu;status-ingame;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-01 19:36:50.000 +"Hello Kitty Kruisers With Sanrio Friends",010087D0084A8000,nvdec;status-playable,playable,2021-06-04 19:08:46.000 +"Hello Neighbor",0100FAA00B168000,status-playable;UE4,playable,2022-08-01 21:32:23.000 +"Hello Neighbor: Hide And Seek",,UE4;gpu;slow;status-ingame,ingame,2020-10-24 10:59:57.000 +"Hellpoint",010024600C794000,status-menus,menus,2021-11-26 13:24:20.000 +"Hero Express",,nvdec;status-playable,playable,2020-08-06 13:23:43.000 +"Hero-U: Rogue to Redemption",010077D01094C000,nvdec;status-playable,playable,2021-03-24 11:40:01.000 +"Heroes of Hammerwatch",0100D2B00BC54000,status-playable,playable,2022-08-01 18:30:21.000 +"Heroine Anthem Zero episode 1",01001B70080F0000,status-playable;vulkan-backend-bug,playable,2022-08-01 22:02:36.000 +"Heroki",010057300B0DC000,gpu;status-ingame,ingame,2023-07-30 19:30:01.000 +"Heroland",,status-playable,playable,2020-08-05 15:35:39.000 +"Hexagravity",01007AC00E012000,status-playable,playable,2021-05-28 13:47:48.000 +"Hidden",01004E800F03C000,slow;status-ingame,ingame,2022-10-05 10:56:53.000 +"Higurashi no Naku Koro ni Hō",0100F6A00A684000,audio;status-ingame,ingame,2021-09-18 14:40:28.000 +"Himehibi 1 gakki - Princess Days",0100F8D0129F4000,status-nothing;crash,nothing,2021-11-03 08:34:19.000 +"Hiragana Pixel Party",,status-playable,playable,2021-01-14 08:36:50.000 +"Hitman 3 - Cloud Version",01004990132AC000,Needs Update;crash;services;status-nothing,nothing,2021-04-18 22:35:07.000 +"Hitman: Blood Money - Reprisal",010083A018262000,deadlock;status-ingame,ingame,2024-09-28 16:28:50.000 +"Hob: The Definitive Edition",,status-playable,playable,2021-01-13 09:39:19.000 +"Hoggy 2",0100F7300ED2C000,status-playable,playable,2022-10-10 13:53:35.000 +"Hogwarts Legacy 0100F7E00C70E000",0100F7E00C70E000,status-ingame;slow,ingame,2024-09-03 19:53:58.000 +"Hollow Knight",0100633007D48000,status-playable;nvdec,playable,2023-01-16 15:44:56.000 +"Hollow0",0100F2100061E800,UE4;gpu;status-ingame,ingame,2021-03-03 23:42:56.000 +"Holy Potatoes! What the Hell?!",,status-playable,playable,2020-07-03 10:48:56.000 +"HoPiKo",,status-playable,playable,2021-01-13 20:12:38.000 +"Hopping girl KOHANE Jumping Kingdom: Princess of the Black Rabbit",010087800EE5A000,status-boots;crash,boots,2023-02-19 00:51:21.000 +"Horace",010086D011EB8000,status-playable,playable,2022-10-10 14:03:50.000 +"Horizon Chase 2",0100001019F6E000,deadlock;slow;status-ingame;crash;UE4,ingame,2024-08-19 04:24:06.000 +"Horizon Chase Turbo",01009EA00B714000,status-playable,playable,2021-02-19 19:40:56.000 +"Horror Pinball Bundle",0100E4200FA82000,status-menus;crash,menus,2022-09-13 22:15:34.000 +"Hotel Transylvania 3: Monsters Overboard",0100017007980000,nvdec;status-playable,playable,2021-01-27 18:55:31.000 +"Hotline Miami Collection",0100D0E00E51E000,status-playable;nvdec,playable,2022-09-09 16:41:19.000 +"Hotshot Racing",0100BDE008218000,gpu;status-ingame;nvdec;online-broken;ldn-untested;vulkan-backend-bug,ingame,2024-02-04 21:31:17.000 +"House Flipper",0100CAE00EB02000,status-playable,playable,2021-06-16 18:28:32.000 +"Hover",0100F6800910A000,status-playable;online-broken,playable,2022-09-20 12:54:46.000 +"Hulu",0100A66003384000,status-boots;online-broken,boots,2022-12-09 10:05:00.000 +"Human Resource Machine",,32-bit;status-playable,playable,2020-12-17 21:47:09.000 +"Human: Fall Flat",,status-playable,playable,2021-01-13 18:36:05.000 +"Hungry Shark World",,status-playable,playable,2021-01-13 18:26:08.000 +"Huntdown",0100EBA004726000,status-playable,playable,2021-04-05 16:59:54.000 +"Hunter's Legacy: Purrfect Edition",010068000CAC0000,status-playable,playable,2022-08-02 10:33:31.000 +"Hunting Simulator",0100C460040EA000,status-playable;UE4,playable,2022-08-02 10:54:08.000 +"Hunting Simulator 2",010061F010C3A000,status-playable;UE4,playable,2022-10-10 14:25:51.000 +"Hyper Jam",,UE4;crash;status-boots,boots,2020-12-15 22:52:11.000 +"Hyper Light Drifter - Special Edition",01003B200B372000,status-playable;vulkan-backend-bug,playable,2023-01-13 15:44:48.000 +"HyperBrawl Tournament",,crash;services;status-boots,boots,2020-12-04 23:03:27.000 +"HYPERCHARGE: Unboxed",0100A8B00F0B4000,status-playable;nvdec;online-broken;UE4;ldn-untested,playable,2022-09-27 21:52:39.000 +"HyperParasite",010061400ED90000,status-playable;nvdec;UE4,playable,2022-09-27 22:05:44.000 +"Hypnospace Outlaw",0100959010466000,status-ingame;nvdec,ingame,2023-08-02 22:46:49.000 +"Hyrule Warriors: Age of Calamity",01002B00111A2000,gpu;deadlock;slow;status-ingame;crash;nvdec;amd-vendor-bug,ingame,2024-02-28 00:47:00.000 +"Hyrule Warriors: Age of Calamity - Demo Version",0100A2C01320E000,slow;status-playable,playable,2022-10-10 17:37:41.000 +"Hyrule Warriors: Definitive Edition",0100AE00096EA000,services-horizon;status-ingame;nvdec,ingame,2024-06-16 10:34:05.000 +"I AM SETSUNA",0100849000BDA000,status-playable,playable,2021-11-28 11:06:11.000 +"I Saw Black Clouds",01001860140B0000,nvdec;status-playable,playable,2021-04-19 17:22:16.000 +"I, Zombie",,status-playable,playable,2021-01-13 14:53:44.000 +"Ice Age Scrat's Nutty Adventure",01004E5007E92000,status-playable;nvdec,playable,2022-09-13 22:22:29.000 +"Ice Cream Surfer",,status-playable,playable,2020-07-29 12:04:07.000 +"Ice Station Z",0100954014718000,status-menus;crash,menus,2021-11-21 20:02:15.000 +"ICEY",,status-playable,playable,2021-01-14 16:16:04.000 +"Iconoclasts",0100BC60099FE000,status-playable,playable,2021-08-30 21:11:04.000 +"Idle Champions of the Forgotten Realms",,online;status-boots,boots,2020-12-17 18:24:57.000 +"Idol Days - 愛怒流でいす",01002EC014BCA000,gpu;status-ingame;crash,ingame,2021-12-19 15:31:28.000 +"If Found...",,status-playable,playable,2020-12-11 13:43:14.000 +"If My Heart Had Wings",01001AC00ED72000,status-playable,playable,2022-09-29 14:54:57.000 +"Ikaruga",01009F20086A0000,status-playable,playable,2023-04-06 15:00:02.000 +"Ikenfell",010040900AF46000,status-playable,playable,2021-06-16 17:18:44.000 +"Immortal Planet",01007BC00E55A000,status-playable,playable,2022-09-20 13:40:43.000 +"Immortal Realms: Vampire Wars",010079501025C000,nvdec;status-playable,playable,2021-06-17 17:41:46.000 +"Immortal Redneck - 0100F400435A000",,nvdec;status-playable,playable,2021-01-27 18:36:28.000 +"Immortals Fenyx Rising",01004A600EC0A000,gpu;status-menus;crash,menus,2023-02-24 16:19:55.000 +"IMPLOSION",0100737003190000,status-playable;nvdec,playable,2021-12-12 03:52:13.000 +"In rays of the Light",0100A760129A0000,status-playable,playable,2021-04-07 15:18:07.000 +"Indie Darling Bundle Vol. 3",01004DE011076000,status-playable,playable,2022-10-02 13:01:57.000 +"Indie Puzzle Bundle Vol 1",0100A2101107C000,status-playable,playable,2022-09-27 22:23:21.000 +"Indiecalypse",,nvdec;status-playable,playable,2020-06-11 20:19:09.000 +"Indivisible",01001D3003FDE000,status-playable;nvdec,playable,2022-09-29 15:20:57.000 +"Inertial Drift",01002BD00F626000,status-playable;online-broken,playable,2022-10-11 12:22:19.000 +"Infernium",,UE4;regression;status-nothing,nothing,2021-01-13 16:36:07.000 +"Infinite Minigolf",,online;status-playable,playable,2020-09-29 12:26:25.000 +"Infliction",01001CB00EFD6000,status-playable;nvdec;UE4,playable,2022-10-02 13:15:55.000 +"INMOST",0100F1401161E000,status-playable,playable,2022-10-05 11:27:40.000 +"InnerSpace",,status-playable,playable,2021-01-13 19:36:14.000 +"INSIDE",0100D2D009028000,status-playable,playable,2021-12-25 20:24:56.000 +"Inside Grass: A little adventure",,status-playable,playable,2020-10-15 15:26:27.000 +"INSTANT SPORTS",010099700D750000,status-playable,playable,2022-09-09 12:59:40.000 +"Instant Sports Summer Games",,gpu;status-menus,menus,2020-09-02 13:39:28.000 +"Instant Sports Tennis",010031B0145B8000,status-playable,playable,2022-10-28 16:42:17.000 +"Interrogation: You will be deceived",010041501005E000,status-playable,playable,2022-10-05 11:40:10.000 +"Into the Dead 2",01000F700DECE000,status-playable;nvdec,playable,2022-09-14 12:36:14.000 +"INVERSUS Deluxe",01001D0003B96000,status-playable;online-broken,playable,2022-08-02 14:35:36.000 +"Invisible Fist",,status-playable,playable,2020-08-08 13:25:52.000 +"Invisible, Inc.",,crash;status-nothing,nothing,2021-01-29 16:28:13.000 +"Invisigun Reloaded",01005F400E644000,gpu;online;status-ingame,ingame,2021-06-10 12:13:24.000 +"Ion Fury",010041C00D086000,status-ingame;vulkan-backend-bug,ingame,2022-08-07 08:27:51.000 +"Iridium",010095C016C14000,status-playable,playable,2022-08-05 23:19:53.000 +"Iris Fall",0100945012168000,status-playable;nvdec,playable,2022-10-18 13:40:22.000 +"Iris School of Wizardry - Vinculum Hearts -",0100AD300B786000,status-playable,playable,2022-12-05 13:11:15.000 +"Iron Wings",01005270118D6000,slow;status-ingame,ingame,2022-08-07 08:32:57.000 +"Ironcast",,status-playable,playable,2021-01-13 13:54:29.000 +"Irony Curtain: From Matryoshka with Love",0100E5700CD56000,status-playable,playable,2021-06-04 20:12:37.000 +"Is It Wrong to Try to Pick Up Girls in a Dungeon? Infinite Combate",,status-playable,playable,2020-08-31 13:52:21.000 +"ISLAND",0100F06013710000,status-playable,playable,2021-05-06 15:11:47.000 +"Island Flight Simulator",010077900440A000,status-playable,playable,2021-06-04 19:42:46.000 +"Island Saver",,nvdec;status-playable,playable,2020-10-23 22:07:02.000 +"Isoland",,status-playable,playable,2020-07-26 13:48:16.000 +"Isoland 2: Ashes of Time",,status-playable,playable,2020-07-26 14:29:05.000 +"Isolomus",010001F0145A8000,services;status-boots,boots,2021-11-03 07:48:21.000 +"ITTA",010068700C70A000,status-playable,playable,2021-06-07 03:15:52.000 +"Ittle Dew 2+",,status-playable,playable,2020-11-17 11:44:32.000 +"IxSHE Tell",0100DEB00F12A000,status-playable;nvdec,playable,2022-12-02 18:00:42.000 +"Izneo",0100D8E00C874000,status-menus;online-broken,menus,2022-08-06 15:56:23.000 +"James Pond Operation Robocod",,status-playable,playable,2021-01-13 09:48:45.000 +"Japanese Rail Sim: Journey to Kyoto",,nvdec;status-playable,playable,2020-07-29 17:14:21.000 +"JDM Racing",,status-playable,playable,2020-08-03 17:02:37.000 +"Jenny LeClue - Detectivu",,crash;status-nothing,nothing,2020-12-15 21:07:07.000 +"Jeopardy!",01006E400AE2A000,audout;nvdec;online;status-playable,playable,2021-02-22 13:53:46.000 +"Jet Kave Adventure",0100E4900D266000,status-playable;nvdec,playable,2022-09-09 14:50:39.000 +"Jet Lancer",0100F3500C70C000,gpu;status-ingame,ingame,2021-02-15 18:15:47.000 +"Jettomero: Hero of the Universe",0100A5A00AF26000,status-playable,playable,2022-08-02 14:46:43.000 +"Jiffy",01008330134DA000,gpu;status-ingame;opengl,ingame,2024-02-03 23:11:24.000 +"Jim Is Moving Out!",,deadlock;status-ingame,ingame,2020-06-03 22:05:19.000 +"Jinrui no Ninasama he",0100F4D00D8BE000,status-ingame;crash,ingame,2023-03-07 02:04:17.000 +"Jisei: The First Case HD",010038D011F08000,audio;status-playable,playable,2022-10-05 11:43:33.000 +"Job the Leprechaun",,status-playable,playable,2020-06-05 12:10:06.000 +"John Wick Hex",01007090104EC000,status-playable,playable,2022-08-07 08:29:12.000 +"Johnny Turbo's Arcade Gate of Doom",010069B002CDE000,status-playable,playable,2022-07-29 12:17:50.000 +"Johnny Turbo's Arcade Two Crude Dudes",010080D002CC6000,status-playable,playable,2022-08-02 20:29:50.000 +"Johnny Turbo's Arcade Wizard Fire",0100D230069CC000,status-playable,playable,2022-08-02 20:39:15.000 +"JoJos Bizarre Adventure All-Star Battle R",01008120128C2000,status-playable,playable,2022-12-03 10:45:10.000 +"Journey to the Savage Planet",01008B60117EC000,status-playable;nvdec;UE4;ldn-untested,playable,2022-10-02 18:48:12.000 +"Juicy Realm - 0100C7600F654000",0100C7600F654000,status-playable,playable,2023-02-21 19:16:20.000 +"Jumanji",,UE4;crash;status-boots,boots,2020-07-12 13:52:25.000 +"JUMP FORCE Deluxe Edition",0100183010F12000,status-playable;nvdec;online-broken;UE4,playable,2023-10-01 15:56:05.000 +"Jump King",,status-playable,playable,2020-06-09 10:12:39.000 +"Jump Rope Challenge",0100B9C012706000,services;status-boots;crash;Needs Update,boots,2023-02-27 01:24:28.000 +"Jumping Joe & Friends",,status-playable,playable,2021-01-13 17:09:42.000 +"JunkPlanet",,status-playable,playable,2020-11-09 12:38:33.000 +"Jurassic Pinball",0100CE100A826000,status-playable,playable,2021-06-04 19:02:37.000 +"Jurassic World Evolution Complete Edition",010050A011344000,cpu;status-menus;crash,menus,2023-08-04 18:06:54.000 +"Just Dance 2017",0100BCE000598000,online;status-playable,playable,2021-03-05 09:46:01.000 +"Just Dance 2019",,gpu;online;status-ingame,ingame,2021-02-27 17:21:27.000 +"JUST DANCE 2020",0100DDB00DB38000,status-playable,playable,2022-01-24 13:31:57.000 +"Just Dance 2022",0100EA6014BB8000,gpu;services;status-ingame;crash;Needs Update,ingame,2022-10-28 11:01:53.000 +"Just Dance 2023",0100BEE017FC0000,status-nothing,nothing,2023-06-05 16:44:54.000 +"Just Die Already",0100AC600CF0A000,status-playable;UE4,playable,2022-12-13 13:37:50.000 +"Just Glide",,status-playable,playable,2020-08-07 17:38:10.000 +"Just Shapes & Beats",,ldn-untested;nvdec;status-playable,playable,2021-02-09 12:18:36.000 +"JYDGE",010035A0044E8000,status-playable,playable,2022-08-02 21:20:13.000 +"Kagamihara/Justice",0100D58012FC2000,crash;status-nothing,nothing,2021-06-21 16:41:29.000 +"Kairobotica",0100D5F00EC52000,status-playable,playable,2021-05-06 12:17:56.000 +"KAMEN RIDER CLIMAX SCRAMBLE",0100BDC00A664000,status-playable;nvdec;ldn-untested,playable,2024-07-03 08:51:11.000 +"KAMEN RIDER memory of heroez / Premium Sound Edition",0100A9801180E000,status-playable,playable,2022-12-06 03:14:26.000 +"KAMIKO",,status-playable,playable,2020-05-13 12:48:57.000 +"Kangokuto Mary Skelter Finale",,audio;crash;status-ingame,ingame,2021-01-09 22:39:28.000 +"Katakoi Contrast - collection of branch -",01007FD00DB20000,status-playable;nvdec,playable,2022-12-09 09:41:26.000 +"Katamari Damacy REROLL",0100D7000C2C6000,status-playable,playable,2022-08-02 21:35:05.000 +"KATANA KAMI: A Way of the Samurai Story",0100F9800EDFA000,slow;status-playable,playable,2022-04-09 10:40:16.000 +"Katana ZERO",010029600D56A000,status-playable,playable,2022-08-26 08:09:09.000 +"Kaze and the Wild Masks",010038B00F142000,status-playable,playable,2021-04-19 17:11:03.000 +"Keen: One Girl Army",,status-playable,playable,2020-12-14 23:19:52.000 +"Keep Talking and Nobody Explodes",01008D400A584000,status-playable,playable,2021-02-15 18:05:21.000 +"Kemono Friends Picross",01004B100BDA2000,status-playable,playable,2023-02-08 15:54:34.000 +"Kentucky Robo Chicken",,status-playable,playable,2020-05-12 20:54:17.000 +"Kentucky Route Zero [0100327005C94000]",0100327005C94000,status-playable,playable,2024-04-09 23:22:46.000 +"KeroBlaster",,status-playable,playable,2020-05-12 20:42:52.000 +"Kholat",0100F680116A2000,UE4;nvdec;status-playable,playable,2021-06-17 11:52:48.000 +"Kid Tripp",,crash;status-nothing,nothing,2020-10-15 07:41:23.000 +"Kill la Kill - IF",,status-playable,playable,2020-06-09 14:47:08.000 +"Kill The Bad Guy",,status-playable,playable,2020-05-12 22:16:10.000 +"Killer Queen Black",0100F2900B3E2000,ldn-untested;online;status-playable,playable,2021-04-08 12:46:18.000 +"Kin'iro no Corda Octave",,status-playable,playable,2020-09-22 13:23:12.000 +"Kine",010089000F0E8000,status-playable;UE4,playable,2022-09-14 14:28:37.000 +"King Lucas",0100E6B00FFBA000,status-playable,playable,2022-09-21 19:43:23.000 +"King Oddball",,status-playable,playable,2020-05-13 13:47:57.000 +"King of Seas",01008D80148C8000,status-playable;nvdec;UE4,playable,2022-10-28 18:29:41.000 +"King of Seas Demo",0100515014A94000,status-playable;nvdec;UE4,playable,2022-10-28 18:09:31.000 +"KINGDOM HEARTS Melody of Memory",,crash;nvdec;status-ingame,ingame,2021-03-03 17:34:12.000 +"Kingdom Rush",0100A280121F6000,status-nothing;32-bit;crash;Needs More Attention,nothing,2022-10-05 12:34:00.000 +"Kingdom: New Lands",0100BD9004AB6000,status-playable,playable,2022-08-02 21:48:50.000 +"Kingdom: Two Crowns",,status-playable,playable,2020-05-16 19:36:21.000 +"Kingdoms of Amalur: Re-Reckoning",0100EF50132BE000,status-playable,playable,2023-08-10 13:05:08.000 +"Kirby and the Forgotten Land",01004D300C5AE000,gpu;status-ingame,ingame,2024-03-11 17:11:21.000 +"Kirby and the Forgotten Land (Demo version)",010091201605A000,status-playable;demo,playable,2022-08-21 21:03:01.000 +"Kirby Fighters 2",0100227010460000,ldn-works;online;status-playable,playable,2021-06-17 13:06:39.000 +"Kirby Star Allies",01007E3006DDA000,status-playable;nvdec,playable,2023-11-15 17:06:19.000 +"Kirby’s Dream Buffet",0100A8E016236000,status-ingame;crash;online-broken;Needs Update;ldn-works,ingame,2024-03-03 17:04:44.000 +"Kirby’s Return to Dream Land Deluxe",01006B601380E000,status-playable,playable,2024-05-16 19:58:04.000 +"Kirby’s Return to Dream Land Deluxe - Demo",010091D01A57E000,status-playable;demo,playable,2023-02-18 17:21:55.000 +"Kissed by the Baddest Bidder",0100F3A00F4CA000,gpu;status-ingame;nvdec,ingame,2022-12-04 20:57:11.000 +"Kitten Squad",01000C900A136000,status-playable;nvdec,playable,2022-08-03 12:01:59.000 +"Klondike Solitaire",,status-playable,playable,2020-12-13 16:17:27.000 +"Knight Squad",,status-playable,playable,2020-08-09 16:54:51.000 +"Knight Squad 2",010024B00E1D6000,status-playable;nvdec;online-broken,playable,2022-10-28 18:38:09.000 +"Knight Terrors",,status-playable,playable,2020-05-13 13:09:22.000 +"Knightin'+",,status-playable,playable,2020-08-31 18:18:21.000 +"Knights of Pen and Paper +1 Deluxier Edition",,status-playable,playable,2020-05-11 21:46:32.000 +"Knights of Pen and Paper 2 Deluxiest Edition",,status-playable,playable,2020-05-13 14:07:00.000 +"Knock-Knock",010001A00A1F6000,nvdec;status-playable,playable,2021-02-01 20:03:19.000 +"Knockout City",01009EF00DDB4000,services;status-boots;online-broken,boots,2022-12-09 09:48:58.000 +"Koa and the Five Pirates of Mara",0100C57019BA2000,gpu;status-ingame,ingame,2024-07-11 16:14:44.000 +"Koi DX",,status-playable,playable,2020-05-11 21:37:51.000 +"Koi no Hanasaku Hyakkaen",,32-bit;gpu;nvdec;status-ingame,ingame,2020-10-03 14:17:10.000 +"Koloro",01005D200C9AA000,status-playable,playable,2022-08-03 12:34:02.000 +"Kona",0100464009294000,status-playable,playable,2022-08-03 12:48:19.000 +"Kono Subarashii Sekai ni Shukufuku o Kono Yokubo no Isho ni Choai o",010016C011AAA000,status-playable,playable,2023-04-26 09:51:08.000 +"Koral",,UE4;crash;gpu;status-menus,menus,2020-11-16 12:41:26.000 +"KORG Gadget",,status-playable,playable,2020-05-13 13:57:24.000 +"Kotodama: The 7 Mysteries of Fujisawa",010046600CCA4000,audout;status-playable,playable,2021-02-01 20:28:37.000 +"KukkoroDays",010022801242C000,status-menus;crash,menus,2021-11-25 08:52:56.000 +"KUNAI",010035A00DF62000,status-playable;nvdec,playable,2022-09-20 13:48:34.000 +"Kunio-Kun: The World Classics Collection",010060400ADD2000,online;status-playable,playable,2021-01-29 20:21:46.000 +"KUUKIYOMI 2: Consider It More! - New Era",010037500F282000,status-nothing;crash;Needs Update,nothing,2021-11-02 09:34:40.000 +"Kwaidan ~Azuma manor story~",0100894011F62000,status-playable,playable,2022-10-05 12:50:44.000 +"L.A. Noire",0100830004FB6000,status-playable,playable,2022-08-03 16:49:35.000 +"L.F.O. - Lost Future Omega -",,UE4;deadlock;status-boots,boots,2020-10-16 12:16:44.000 +"L.O.L. Surprise! Remix: We Rule the World",0100F2B0123AE000,status-playable,playable,2022-10-11 22:48:03.000 +"La Mulana 2",010038000F644000,status-playable,playable,2022-09-03 13:45:57.000 +"LA-MULANA",010026000F662800,gpu;status-ingame,ingame,2022-08-12 01:06:21.000 +"LA-MULANA 1 & 2",0100E5D00F4AE000,status-playable,playable,2022-09-22 17:56:36.000 +"Labyrinth of Refrain: Coven of Dusk",010058500B3E0000,status-playable,playable,2021-02-15 17:38:48.000 +"Labyrinth of the Witch",,status-playable,playable,2020-11-01 14:42:37.000 +"Langrisser I and II",0100BAB00E8C0000,status-playable,playable,2021-02-19 15:46:10.000 +"Lanota",,status-playable,playable,2019-09-04 01:58:14.000 +"Lapis x Labyrinth",01005E000D3D8000,status-playable,playable,2021-02-01 18:58:08.000 +"Laraan",,status-playable,playable,2020-12-16 12:45:48.000 +"Last Day of June",0100DA700879C000,nvdec;status-playable,playable,2021-06-08 11:35:32.000 +"LAST FIGHT",01009E100BDD6000,status-playable,playable,2022-09-20 13:54:55.000 +"Late Shift",0100055007B86000,nvdec;status-playable,playable,2021-02-01 18:43:58.000 +"Later Daters",,status-playable,playable,2020-07-29 16:35:45.000 +"Layers of Fear 2",01001730144DA000,status-playable;nvdec;UE4,playable,2022-10-28 18:49:52.000 +"Layers of Fear: Legacy",,nvdec;status-playable,playable,2021-02-15 16:30:41.000 +"Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy - Deluxe Edition",0100CE500D226000,status-playable;nvdec;opengl,playable,2022-09-14 15:01:57.000 +"Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy DX+0",0100FDB00AA80000,gpu;status-ingame;nvdec;opengl,ingame,2022-09-14 15:15:55.000 +"League of Evil",01009C100390E000,online;status-playable,playable,2021-06-08 11:23:27.000 +"Left-Right: The Mansion",,status-playable,playable,2020-05-13 13:02:12.000 +"Legacy of Kain™ Soul Reaver 1&2 Remastered",010079901C898000,status-playable,playable,2025-01-07 05:50:01.000 +"Legend of Kay Anniversary",01002DB007A96000,nvdec;status-playable,playable,2021-01-29 18:38:29.000 +"Legend of the Skyfish",,status-playable,playable,2020-06-24 13:04:22.000 +"Legend of the Tetrarchs",,deadlock;status-ingame,ingame,2020-07-10 07:54:03.000 +"Legendary Eleven",0100A73006E74000,status-playable,playable,2021-06-08 12:09:03.000 +"Legendary Fishing",0100A7700B46C000,online;status-playable,playable,2021-04-14 15:08:46.000 +"LEGO 2K Drive",0100739018020000,gpu;status-ingame;ldn-works,ingame,2024-04-09 02:05:12.000 +"Lego City Undercover",01003A30012C0000,status-playable;nvdec,playable,2024-09-30 08:44:27.000 +"LEGO DC Super-Villains",010070D009FEC000,status-playable,playable,2021-05-27 18:10:37.000 +"LEGO Harry Potter Collection",010052A00B5D2000,status-ingame;crash,ingame,2024-01-31 10:28:07.000 +"LEGO Horizon Adventures",010073C01AF34000,status-ingame;vulkan-backend-bug;opengl-backend-bug;UE4,ingame,2025-01-07 04:24:56.000 +"LEGO Jurassic World",01001C100E772000,status-playable,playable,2021-05-27 17:00:20.000 +"LEGO Marvel Super Heroes",01006F600FFC8000,status-playable,playable,2024-09-10 19:02:19.000 +"LEGO Marvel Super Heroes 2",0100D3A00409E000,status-nothing;crash,nothing,2023-03-02 17:12:33.000 +"LEGO Star Wars: The Skywalker Saga",010042D00D900000,gpu;slow;status-ingame,ingame,2024-04-13 20:08:46.000 +"LEGO The Incredibles",0100A01006E00000,status-nothing;crash,nothing,2022-08-03 18:36:59.000 +"LEGO Worlds",,crash;slow;status-ingame,ingame,2020-07-17 13:35:39.000 +"Legrand Legacy: Tale of the Fatebounds",,nvdec;status-playable,playable,2020-07-26 12:27:36.000 +"Leisure Suit Larry - Wet Dreams Dry Twice",010031A0135CA000,status-playable,playable,2022-10-28 19:00:57.000 +"Leisure Suit Larry: Wet Dreams Don't Dry",0100A8E00CAA0000,status-playable,playable,2022-08-03 19:51:44.000 +"Lethal League Blaze",01003AB00983C000,online;status-playable,playable,2021-01-29 20:13:31.000 +"Letter Quest Remastered",,status-playable,playable,2020-05-11 21:30:34.000 +"Letters - a written adventure",0100CE301678E800,gpu;status-ingame,ingame,2023-02-21 20:12:38.000 +"Levelhead",,online;status-ingame,ingame,2020-10-18 11:44:51.000 +"Levels+",,status-playable,playable,2020-05-12 13:51:39.000 +"Liberated",0100C8000F146000,gpu;status-ingame;nvdec,ingame,2024-07-04 04:58:24.000 +"Liberated: Enhanced Edition",01003A90133A6000,gpu;status-ingame;nvdec,ingame,2024-07-04 04:48:48.000 +"Lichtspeer: Double Speer Edition",,status-playable,playable,2020-05-12 16:43:09.000 +"Liege Dragon",010041F0128AE000,status-playable,playable,2022-10-12 10:27:03.000 +"Life Goes On",010006300AFFE000,status-playable,playable,2021-01-29 19:01:20.000 +"Life is Strange 2",0100FD101186C000,status-playable;UE4,playable,2024-07-04 05:05:58.000 +"Life is Strange Remastered",0100DC301186A000,status-playable;UE4,playable,2022-10-03 16:54:44.000 +"Life is Strange: Before the Storm Remastered",010008501186E000,status-playable,playable,2023-09-28 17:15:44.000 +"Life is Strange: True Colors [0100500012AB4000]",0100500012AB4000,gpu;status-ingame;UE4,ingame,2024-04-08 16:11:52.000 +"Life of Boris: Super Slav",,status-ingame,ingame,2020-12-17 11:40:05.000 +"Life of Fly",0100B3A0135D6000,status-playable,playable,2021-01-25 23:41:07.000 +"Life of Fly 2",010069A01506E000,slow;status-playable,playable,2022-10-28 19:26:52.000 +"Lifeless Planet",01005B6008132000,status-playable,playable,2022-08-03 21:25:13.000 +"Light Fall",,nvdec;status-playable,playable,2021-01-18 14:55:36.000 +"Light Tracer",010087700D07C000,nvdec;status-playable,playable,2021-05-05 19:15:43.000 +"LIMBO",01009C8009026000,cpu;status-boots;32-bit,boots,2023-06-28 15:39:19.000 +"Linelight",,status-playable,playable,2020-12-17 12:18:07.000 +"Lines X",,status-playable,playable,2020-05-11 15:28:30.000 +"Lines XL",,status-playable,playable,2020-08-31 17:48:23.000 +"Little Busters! Converted Edition",0100943010310000,status-playable;nvdec,playable,2022-09-29 15:34:56.000 +"Little Dragons Cafe",,status-playable,playable,2020-05-12 00:00:52.000 +"LITTLE FRIENDS -DOGS & CATS-",,status-playable,playable,2020-11-12 12:45:51.000 +"Little Inferno",,32-bit;gpu;nvdec;status-ingame,ingame,2020-12-17 21:43:56.000 +"Little Misfortune",0100E7000E826000,nvdec;status-playable,playable,2021-02-23 20:39:44.000 +"Little Mouse's Encyclopedia",0100FE0014200000,status-playable,playable,2022-10-28 19:38:58.000 +"Little Nightmares",01002FC00412C000,status-playable;nvdec;UE4,playable,2022-08-03 21:45:35.000 +"Little Nightmares II",010097100EDD6000,status-playable;UE4,playable,2023-02-10 18:24:44.000 +"Little Nightmares II DEMO",010093A0135D6000,status-playable;UE4;demo;vulkan-backend-bug,playable,2024-05-16 18:47:20.000 +"Little Noah: Scion of Paradise",0100535014D76000,status-playable;opengl-backend-bug,playable,2022-09-14 04:17:13.000 +"Little Racer",0100E6D00E81C000,status-playable,playable,2022-10-18 16:41:13.000 +"Little Shopping",,status-playable,playable,2020-10-03 16:34:35.000 +"Little Town Hero",,status-playable,playable,2020-10-15 23:28:48.000 +"Little Triangle",,status-playable,playable,2020-06-17 14:46:26.000 +"LIVE A LIVE",0100CF801776C000,status-playable;UE4;amd-vendor-bug,playable,2023-02-05 15:12:07.000 +"LOCO-SPORTS",0100BA000FC9C000,status-playable,playable,2022-09-20 14:09:30.000 +"Lode Runner Legacy",,status-playable,playable,2021-01-10 14:10:28.000 +"Lofi Ping Pong",,crash;status-ingame,ingame,2020-12-15 20:09:22.000 +"Lone Ruin",0100B6D016EE6000,status-ingame;crash;nvdec,ingame,2023-01-17 06:41:19.000 +"Lonely Mountains Downhill",0100A0C00E0DE000,status-playable;online-broken,playable,2024-07-04 05:08:11.000 +"LOOPERS",010062A0178A8000,gpu;slow;status-ingame;crash,ingame,2022-06-17 19:21:45.000 +"Lost Horizon",,status-playable,playable,2020-09-01 13:41:22.000 +"Lost Horizon 2",,nvdec;status-playable,playable,2020-06-16 12:02:12.000 +"Lost in Random",01005FE01291A000,gpu;status-ingame,ingame,2022-12-18 07:09:28.000 +"Lost Lands 3: The Golden Curse",0100156014C6A000,status-playable;nvdec,playable,2022-10-24 16:30:00.000 +"Lost Lands: Dark Overlord",0100BDD010AC8000,status-playable,playable,2022-10-03 11:52:58.000 +"Lost Lands: The Four Horsemen",0100133014510000,status-playable;nvdec,playable,2022-10-24 16:41:00.000 +"LOST ORBIT: Terminal Velocity",010054600AC74000,status-playable,playable,2021-06-14 12:21:12.000 +"Lost Phone Stories",,services;status-ingame,ingame,2020-04-05 23:17:33.000 +"Lost Ruins",01008AD013A86800,gpu;status-ingame,ingame,2023-02-19 14:09:00.000 +"LOST SPHEAR",,status-playable,playable,2021-01-10 06:01:21.000 +"Lost Words: Beyond the Page",0100018013124000,status-playable,playable,2022-10-24 17:03:21.000 +"Love Letter from Thief X",0100D36011AD4000,gpu;status-ingame;nvdec,ingame,2023-11-14 03:55:31.000 +"Ludo Mania",,crash;services;status-nothing,nothing,2020-04-03 00:33:47.000 +"Luigi's Mansion 2 HD",010048701995E000,status-ingame;ldn-broken;amd-vendor-bug,ingame,2024-09-05 23:47:27.000 +"Luigi's Mansion 3",0100DCA0064A6000,gpu;slow;status-ingame;Needs Update;ldn-works,ingame,2024-09-27 22:17:36.000 +"Lumini",,status-playable,playable,2020-08-09 20:45:09.000 +"Lumo",0100FF00042EE000,status-playable;nvdec,playable,2022-02-11 18:20:30.000 +"Lust for Darkness",,nvdec;status-playable,playable,2020-07-26 12:09:15.000 +"Lust for Darkness: Dawn Edition",0100F0B00F68E000,nvdec;status-playable,playable,2021-06-16 13:47:46.000 +"LUXAR",0100EC2011A80000,status-playable,playable,2021-03-04 21:11:57.000 +"Machi Knights Blood bagos",0100F2400D434000,status-playable;nvdec;UE4,playable,2022-09-14 15:08:04.000 +"Mad Carnage",,status-playable,playable,2021-01-10 13:00:07.000 +"Mad Father",,status-playable,playable,2020-11-12 13:22:10.000 +"Mad Games Tycoon",010061E00EB1E000,status-playable,playable,2022-09-20 14:23:14.000 +"Magazine Mogul",01004A200E722000,status-playable;loader-allocator,playable,2022-10-03 12:05:34.000 +"MagiCat",,status-playable,playable,2020-12-11 15:22:07.000 +"Magicolors",,status-playable,playable,2020-08-12 18:39:11.000 +"Mahjong Solitaire Refresh",01008C300B624000,status-boots;crash,boots,2022-12-09 12:02:55.000 +"Mahluk dark demon",010099A0145E8000,status-playable,playable,2021-04-15 13:14:24.000 +"Mainlining",,status-playable,playable,2020-06-05 01:02:00.000 +"Maitetsu: Pure Station",0100D9900F220000,status-playable,playable,2022-09-20 15:12:49.000 +"Makai Senki Disgaea 7",0100A78017BD6000,status-playable,playable,2023-10-05 00:22:18.000 +"Mana Spark",,status-playable,playable,2020-12-10 13:41:01.000 +"Maneater",010093D00CB22000,status-playable;nvdec;UE4,playable,2024-05-21 16:11:57.000 +"Manifold Garden",,status-playable,playable,2020-10-13 20:27:13.000 +"Manticore - Galaxy on Fire",0100C9A00952A000,status-boots;crash;nvdec,boots,2024-02-04 04:37:24.000 +"Mantis Burn Racing",0100E98002F6E000,status-playable;online-broken;ldn-broken,playable,2024-09-02 02:13:04.000 +"Marble Power Blast",01008E800D1FE000,status-playable,playable,2021-06-04 16:00:02.000 +"Märchen Forest - 0100B201D5E000",,status-playable,playable,2021-02-04 21:33:34.000 +"Marco & The Galaxy Dragon Demo",0100DA7017C9E000,gpu;status-ingame;demo,ingame,2023-06-03 13:05:33.000 +"Mario & Luigi: Brothership",01006D0017F7A000,status-ingame;crash;slow;UE4;mac-bug,ingame,2025-01-07 04:00:00.000 +"MARIO & SONIC AT THE OLYMPIC GAMES TOKYO 2020",010002C00C270000,status-ingame;crash;online-broken;ldn-works,ingame,2024-08-23 16:12:55.000 +"Mario + Rabbids Kingdom Battle",010067300059A000,slow;status-playable;opengl-backend-bug,playable,2024-05-06 10:16:54.000 +"Mario + Rabbids® Sparks of Hope",0100317013770000,gpu;status-ingame;Needs Update,ingame,2024-06-20 19:56:19.000 +"Mario Golf: Super Rush",0100C9C00E25C000,gpu;status-ingame,ingame,2024-08-18 21:31:48.000 +"Mario Kart 8 Deluxe",0100152000022000,32-bit;status-playable;ldn-works;LAN;amd-vendor-bug,playable,2024-09-19 11:55:17.000 +"Mario Kart Live: Home Circuit",0100ED100BA3A000,services;status-nothing;crash;Needs More Attention,nothing,2022-12-07 22:36:52.000 +"Mario Party Superstars",01006FE013472000,gpu;status-ingame;ldn-works;mac-bug,ingame,2024-05-16 11:23:34.000 +"Mario Strikers: Battle League Football",010019401051C000,status-boots;crash;nvdec,boots,2024-05-07 06:23:56.000 +"Mario Tennis Aces",0100BDE00862A000,gpu;status-ingame;nvdec;ldn-works;LAN,ingame,2024-09-28 15:54:40.000 +"Mario vs. Donkey Kong",0100B99019412000,status-playable,playable,2024-05-04 21:22:39.000 +"Mario vs. Donkey Kong™ Demo",0100D9E01DBB0000,status-playable,playable,2024-02-18 10:40:06.000 +"Mark of the Ninja Remastered",01009A700A538000,status-playable,playable,2022-08-04 15:48:30.000 +"Marooners",010044600FDF0000,status-playable;nvdec;online-broken,playable,2022-10-18 21:35:26.000 +"Marvel Ultimate Alliance 3: The Black Order",010060700AC50000,status-playable;nvdec;ldn-untested,playable,2024-02-14 19:51:51.000 +"Mary Skelter 2",01003DE00C95E000,status-ingame;crash;regression,ingame,2023-09-12 07:37:28.000 +"Masquerada: Songs and Shadows",0100113008262000,status-playable,playable,2022-09-20 15:18:54.000 +"Master Detective Archives: Rain Code",01004800197F0000,gpu;status-ingame,ingame,2024-04-19 20:11:09.000 +"Masters of Anima",0100CC7009196000,status-playable;nvdec,playable,2022-08-04 16:00:09.000 +"Mathland",,status-playable,playable,2020-09-01 15:40:06.000 +"Max & The Book of Chaos",,status-playable,playable,2020-09-02 12:24:43.000 +"Max: The Curse Of Brotherhood",01001C9007614000,status-playable;nvdec,playable,2022-08-04 16:33:04.000 +"Maze",,status-playable,playable,2020-12-17 16:13:58.000 +"MEANDERS",0100EEF00CBC0000,UE4;gpu;status-ingame,ingame,2021-06-11 19:19:33.000 +"Mech Rage",,status-playable,playable,2020-11-18 12:30:16.000 +"Mecho Tales",0100C4F005EB4000,status-playable,playable,2022-08-04 17:03:19.000 +"Mechstermination Force",0100E4600D31A000,status-playable,playable,2024-07-04 05:39:15.000 +"Medarot Classics Plus Kabuto Ver",,status-playable,playable,2020-11-21 11:31:18.000 +"Medarot Classics Plus Kuwagata Ver",,status-playable,playable,2020-11-21 11:30:40.000 +"Mega Mall Story",0100BBC00CB9A000,slow;status-playable,playable,2022-08-04 17:10:58.000 +"Mega Man 11",0100B0C0086B0000,status-playable,playable,2021-04-26 12:07:53.000 +"Mega Man Battle Network Legacy Collection Vol. 2",0100734016266000,status-playable,playable,2023-08-03 18:04:32.000 +"Mega Man Legacy Collection Vol.1",01002D4007AE0000,gpu;status-ingame,ingame,2021-06-03 18:17:17.000 +"Mega Man X Legacy Collection",,audio;crash;services;status-menus,menus,2020-12-04 04:30:17.000 +"Megabyte Punch",,status-playable,playable,2020-10-16 14:07:18.000 +"Megadimension Neptunia VII",,32-bit;nvdec;status-playable,playable,2020-12-17 20:56:03.000 +"Megaman Battle Network Legacy Collection Vol 1",010038E016264000,status-playable,playable,2023-04-25 03:55:57.000 +"Megaman Legacy Collection 2",,status-playable,playable,2021-01-06 08:47:59.000 +"MEGAMAN ZERO/ZX LEGACY COLLECTION",010025C00D410000,status-playable,playable,2021-06-14 16:17:32.000 +"Megaquarium",010082B00E8B8000,status-playable,playable,2022-09-14 16:50:00.000 +"Megaton Rainfall",010005A00B312000,gpu;status-boots;opengl,boots,2022-08-04 18:29:43.000 +"Meiji Katsugeki Haikara Ryuuseigumi - Seibai Shimaseu, Yonaoshi Kagyou",0100EA100DF92000,32-bit;status-playable;nvdec,playable,2022-12-05 13:19:12.000 +"Mekorama",0100B360068B2000,gpu;status-boots,boots,2021-06-17 16:37:21.000 +"Melbits World",01000FA010340000,status-menus;nvdec;online,menus,2021-11-26 13:51:22.000 +"Melon Journey",0100F68019636000,status-playable,playable,2023-04-23 21:20:01.000 +"Memories Off -Innocent Fille- for Dearest",,status-playable,playable,2020-08-04 07:31:22.000 +"Memory Lane",010062F011E7C000,status-playable;UE4,playable,2022-10-05 14:31:03.000 +"Meow Motors",,UE4;gpu;status-ingame,ingame,2020-12-18 00:24:01.000 +"Mercenaries Saga Chronicles",,status-playable,playable,2021-01-10 12:48:19.000 +"Mercenaries Wings The False Phoenix",,crash;services;status-nothing,nothing,2020-05-08 22:42:12.000 +"Mercenary Kings",,online;status-playable,playable,2020-10-16 13:05:58.000 +"Merchants of Kaidan",0100E5000D3CA000,status-playable,playable,2021-04-15 11:44:28.000 +"METAGAL",,status-playable,playable,2020-06-05 00:05:48.000 +"Metal Gear Solid Master Collection Vol. 1: Metal Gear Solid 3",010047F01AA10000,services-horizon;status-menus,menus,2024-07-24 06:34:06.000 +"METAL MAX Xeno Reborn",0100E8F00F6BE000,status-playable,playable,2022-12-05 15:33:53.000 +"Metaloid: Origin",,status-playable,playable,2020-06-04 20:26:35.000 +"Metamorphosis",010055200E87E000,UE4;audout;gpu;nvdec;status-ingame,ingame,2021-06-16 16:18:11.000 +"Metro 2033 Redux",0100D4900E82C000,gpu;status-ingame,ingame,2022-11-09 10:53:13.000 +"Metro: Last Light Redux",0100F0400E850000,slow;status-ingame;nvdec;vulkan-backend-bug,ingame,2023-11-01 11:53:52.000 +"Metroid Dread",010093801237C000,status-playable,playable,2023-11-13 04:02:36.000 +"Metroid Prime Remastered",010012101468C000,gpu;status-ingame;Needs Update;vulkan-backend-bug;opengl-backend-bug,ingame,2024-05-07 22:48:15.000 +"Midnight Evil",0100A1200F20C000,status-playable,playable,2022-10-18 22:55:19.000 +"Mighty Fight Federation",0100C1E0135E0000,online;status-playable,playable,2021-04-06 18:39:56.000 +"Mighty Goose",0100AD701344C000,status-playable;nvdec,playable,2022-10-28 20:25:38.000 +"Mighty Gunvolt Burst",,status-playable,playable,2020-10-19 16:05:49.000 +"Mighty Switch Force! Collection",010060D00AE36000,status-playable,playable,2022-10-28 20:40:32.000 +"Miitopia",01003DA010E8A000,gpu;services-horizon;status-ingame,ingame,2024-09-06 10:39:13.000 +"Miitopia Demo",01007DA0140E8000,services;status-menus;crash;demo,menus,2023-02-24 11:50:58.000 +"Miles & Kilo",,status-playable,playable,2020-10-22 11:39:49.000 +"Millie",0100976008FBE000,status-playable,playable,2021-01-26 20:47:19.000 +"MIND Path to Thalamus",0100F5700C9A8000,UE4;status-playable,playable,2021-06-16 17:37:25.000 +"Minecraft",0100D71004694000,status-ingame;crash;ldn-broken,ingame,2024-09-29 12:08:59.000 +"Minecraft - Nintendo Switch Edition",01006BD001E06000,status-playable;ldn-broken,playable,2023-10-15 01:47:08.000 +"Minecraft Dungeons",01006C100EC08000,status-playable;nvdec;online-broken;UE4,playable,2024-06-26 22:10:43.000 +"Minecraft Legends",01007C6012CC8000,gpu;status-ingame;crash,ingame,2024-03-04 00:32:24.000 +"Minecraft: Story Mode - Season Two",01003EF007ABA000,status-playable;online-broken,playable,2023-03-04 00:30:50.000 +"Minecraft: Story Mode - The Complete Adventure",010059C002AC2000,status-boots;crash;online-broken,boots,2022-08-04 18:56:58.000 +"Minefield",0100B7500F756000,status-playable,playable,2022-10-05 15:03:29.000 +"Mini Motor Racing X",01003560119A6000,status-playable,playable,2021-04-13 17:54:49.000 +"Mini Trains",,status-playable,playable,2020-07-29 23:06:20.000 +"Miniature - The Story Puzzle",010039200EC66000,status-playable;UE4,playable,2022-09-14 17:18:50.000 +"Ministry of Broadcast",010069200EB80000,status-playable,playable,2022-08-10 00:31:16.000 +"Minna de Wai Wai! Spelunker",0100C3F000BD8000,status-nothing;crash,nothing,2021-11-03 07:17:11.000 +"Minoria",0100FAE010864000,status-playable,playable,2022-08-06 18:50:50.000 +"Miss Kobayashi's Dragonmaid Burst Forth!! Choro-gon☆Breath",01005AB015994000,gpu;status-playable,playable,2022-03-28 02:22:24.000 +"Missile Dancer",0100CFA0138C8000,status-playable,playable,2021-01-31 12:22:03.000 +"Missing Features 2D",0100E3601495C000,status-playable,playable,2022-10-28 20:52:54.000 +"Mist Hunter",010059200CC40000,status-playable,playable,2021-06-16 13:58:58.000 +"Mittelborg: City of Mages",,status-playable,playable,2020-08-12 19:58:06.000 +"MLB The Show 22 Tech Test",0100A9F01776A000,services;status-nothing;crash;Needs Update;demo,nothing,2022-12-09 10:28:34.000 +"MLB The Show 24",0100E2E01C32E000,services-horizon;status-nothing,nothing,2024-03-31 04:54:11.000 +"MLB® The Show™ 22",0100876015D74000,gpu;slow;status-ingame,ingame,2023-04-25 06:28:43.000 +"MLB® The Show™ 23",0100913019170000,gpu;status-ingame,ingame,2024-07-26 00:56:50.000 +"MO:Astray",,crash;status-ingame,ingame,2020-12-11 21:45:44.000 +"Moai VI: Unexpected Guests",,slow;status-playable,playable,2020-10-27 16:40:20.000 +"Modern Combat Blackout",0100D8700B712000,crash;status-nothing,nothing,2021-03-29 19:47:15.000 +"Modern Tales: Age of Invention",010004900D772000,slow;status-playable,playable,2022-10-12 11:20:19.000 +"Moero Chronicle Hyper",0100B8500D570000,32-bit;status-playable,playable,2022-08-11 07:21:56.000 +"Moero Crystal H",01004EB0119AC000,32-bit;status-playable;nvdec;vulkan-backend-bug,playable,2023-07-05 12:04:22.000 +"MOFUMOFU Sensen",0100B46017500000,gpu;status-menus,menus,2024-09-21 21:51:08.000 +"Momodora: Revere Under the Moonlight",01004A400C320000,deadlock;status-nothing,nothing,2022-02-06 03:47:43.000 +"Momonga Pinball Adventures",01002CC00BC4C000,status-playable,playable,2022-09-20 16:00:40.000 +"Momotaro Dentetsu Showa, Heisei, Reiwa mo Teiban!",010093100DA04000,gpu;status-ingame,ingame,2023-09-22 10:21:46.000 +"MONKEY BARRELS",0100FBD00ED24000,status-playable,playable,2022-09-14 17:28:52.000 +"Monkey King: Master of the Clouds",,status-playable,playable,2020-09-28 22:35:48.000 +"Monomals",01003030161DC000,gpu;status-ingame,ingame,2024-08-06 22:02:51.000 +"Mononoke Slashdown",0100F3A00FB78000,status-menus;crash,menus,2022-05-04 20:55:47.000 +"Monopoly for Nintendo Switch",01007430037F6000,status-playable;nvdec;online-broken,playable,2024-02-06 23:13:01.000 +"Monopoly Madness",01005FF013DC2000,status-playable,playable,2022-01-29 21:13:52.000 +"Monster Blast",0100E2D0128E6000,gpu;status-ingame,ingame,2023-09-02 20:02:32.000 +"Monster Boy and the Cursed Kingdom",01006F7001D10000,status-playable;nvdec,playable,2022-08-04 20:06:32.000 +"Monster Bugs Eat People",,status-playable,playable,2020-07-26 02:05:34.000 +"Monster Energy Supercross - The Official Videogame",0100742007266000,status-playable;nvdec;UE4,playable,2022-08-04 20:25:00.000 +"Monster Energy Supercross - The Official Videogame 2",0100F8100B982000,status-playable;nvdec;UE4;ldn-untested,playable,2022-08-04 21:21:24.000 +"Monster Energy Supercross - The Official Videogame 3",010097800EA20000,UE4;audout;nvdec;online;status-playable,playable,2021-06-14 12:37:54.000 +"Monster Farm",0100E9900ED74000,32-bit;nvdec;status-playable,playable,2021-05-05 19:29:13.000 +"Monster Hunter Generation Ultimate",0100770008DD8000,32-bit;status-playable;online-broken;ldn-works,playable,2024-03-18 14:35:36.000 +"Monster Hunter Rise",0100B04011742000,gpu;slow;status-ingame;crash;nvdec;online-broken;Needs Update;ldn-works,ingame,2024-08-24 11:04:59.000 +"Monster Hunter Rise Demo",010093A01305C000,status-playable;online-broken;ldn-works;demo,playable,2022-10-18 23:04:17.000 +"Monster Hunter Stories 2: Wings of Ruin ID 0100E2101144600",,services;status-ingame,ingame,2022-07-10 19:27:30.000 +"MONSTER HUNTER STORIES 2: WINGS OF RUIN Trial Version",010042501329E000,status-playable;demo,playable,2022-11-13 22:20:26.000 +"Monster Hunter XX Demo",,32-bit;cpu;status-nothing,nothing,2020-03-22 10:12:28.000 +"Monster Hunter XX Nintendo Switch Ver ( Double Cross )",0100C3800049C000,status-playable,playable,2024-07-21 14:08:09.000 +"MONSTER JAM CRUSH IT!™",010088400366E000,UE4;nvdec;online;status-playable,playable,2021-04-08 19:29:27.000 +"Monster Jam Steel Titans",010095C00F354000,status-menus;crash;nvdec;UE4,menus,2021-11-14 09:45:38.000 +"Monster Jam Steel Titans 2",010051B0131F0000,status-playable;nvdec;UE4,playable,2022-10-24 17:17:59.000 +"Monster Puzzle",,status-playable,playable,2020-09-28 22:23:10.000 +"Monster Sanctuary",,crash;status-ingame,ingame,2021-04-04 05:06:41.000 +"Monster Truck Championship",0100D30010C42000,slow;status-playable;nvdec;online-broken;UE4,playable,2022-10-18 23:16:51.000 +"Monster wo taoshite tsuyoi ken ya yoroi wo te ni shinasai. Shinde mo akiramezu ni tsuyoku nari nasai. Yuushatai ga maoh wo taosu sono hi wo shinzite imasu. - モンスターを倒して強い剣や鎧を手にしなさい。死んでも諦めずに強くなりなさい。勇者隊が魔王を倒すその日を信じています。",01004E10142FE000,crash;status-ingame,ingame,2021-07-23 10:56:44.000 +"Monstrum",010039F00EF70000,status-playable,playable,2021-01-31 11:07:26.000 +"Moonfall Ultimate",,nvdec;status-playable,playable,2021-01-17 14:01:25.000 +"Moorhuhn Jump and Run Traps and Treasures",0100E3D014ABC000,status-playable,playable,2024-03-08 15:10:02.000 +"Moorkuhn Kart 2",010045C00F274000,status-playable;online-broken,playable,2022-10-28 21:10:35.000 +"Morbid: The Seven Acolytes",010040E00F642000,status-playable,playable,2022-08-09 17:21:58.000 +"More Dark",,status-playable,playable,2020-12-15 16:01:06.000 +"Morphies Law",,UE4;crash;ldn-untested;nvdec;online;status-menus,menus,2020-11-22 17:05:29.000 +"Morphite",,status-playable,playable,2021-01-05 19:40:55.000 +"Mortal Kombat 1",01006560184E6000,gpu;status-ingame,ingame,2024-09-04 15:45:47.000 +"Mortal Kombat 11",0100F2200C984000,slow;status-ingame;nvdec;online-broken;ldn-broken,ingame,2024-06-19 02:22:17.000 +"Mosaic",,status-playable,playable,2020-08-11 13:07:35.000 +"Moto GP 24",010040401D564000,gpu;status-ingame,ingame,2024-05-10 23:41:00.000 +"Moto Racer 4",01002ED00B01C000,UE4;nvdec;online;status-playable,playable,2021-04-08 19:09:11.000 +"Moto Rush GT",01003F200D0F2000,status-playable,playable,2022-08-05 11:23:55.000 +"MotoGP 18",0100361007268000,status-playable;nvdec;UE4;ldn-untested,playable,2022-08-05 11:41:45.000 +"MotoGP 19",01004B800D0E8000,status-playable;nvdec;online-broken;UE4,playable,2022-08-05 11:54:14.000 +"MotoGP 20",01001FA00FBBC000,status-playable;ldn-untested,playable,2022-09-29 17:58:01.000 +"MotoGP 21",01000F5013820000,gpu;status-ingame;nvdec;online-broken;UE4;ldn-untested,ingame,2022-10-28 21:35:08.000 +"Motorsport Manager for Nintendo Switch",01002A900D6D6000,status-playable;nvdec,playable,2022-08-05 12:48:14.000 +"Mountain Rescue Simulator",01009DB00D6E0000,status-playable,playable,2022-09-20 16:36:48.000 +"Moving Out",0100C4C00E73E000,nvdec;status-playable,playable,2021-06-07 21:17:24.000 +"Mr Blaster",0100D3300F110000,status-playable,playable,2022-09-14 17:56:24.000 +"Mr. DRILLER DrillLand",,nvdec;status-playable,playable,2020-07-24 13:56:48.000 +"Mr. Shifty",,slow;status-playable,playable,2020-05-08 15:28:16.000 +"Ms. Splosion Man",,online;status-playable,playable,2020-05-09 20:45:43.000 +"Muddledash",,services;status-ingame,ingame,2020-05-08 16:46:14.000 +"MudRunner - American Wilds",01009D200952E000,gpu;status-ingame;ldn-untested;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-16 11:40:52.000 +"Mugsters",010073E008E6E000,status-playable,playable,2021-01-28 17:57:17.000 +"MUJO",,status-playable,playable,2020-05-08 16:31:04.000 +"Mulaka",0100211005E94000,status-playable,playable,2021-01-28 18:07:20.000 +"Mummy Pinball",010038B00B9AE000,status-playable,playable,2022-08-05 16:08:11.000 +"Muse Dash",,status-playable,playable,2020-06-06 14:41:29.000 +"Mushroom Quest",,status-playable,playable,2020-05-17 13:07:08.000 +"Mushroom Wars 2",,nvdec;status-playable,playable,2020-09-28 15:26:08.000 +"Music Racer",,status-playable,playable,2020-08-10 08:51:23.000 +"MUSNYX",,status-playable,playable,2020-05-08 14:24:43.000 +"Musou Orochi 2 Ultimate",,crash;nvdec;status-boots,boots,2021-04-09 19:39:16.000 +"Must Dash Amigos",0100F6000EAA8000,status-playable,playable,2022-09-20 16:45:56.000 +"Mutant Football League Dynasty Edition",0100C3E00ACAA000,status-playable;online-broken,playable,2022-08-05 17:01:51.000 +"Mutant Mudds Collection",01004BE004A86000,status-playable,playable,2022-08-05 17:11:38.000 +"Mutant Year Zero: Road to Eden",0100E6B00DEA4000,status-playable;nvdec;UE4,playable,2022-09-10 13:31:10.000 +"MX Nitro",0100161009E5C000,status-playable,playable,2022-09-27 22:34:33.000 +"MX vs ATV All Out",0100218011E7E000,status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-10-25 19:51:46.000 +"MXGP3 - The Official Motocross Videogame",,UE4;gpu;nvdec;status-ingame,ingame,2020-12-16 14:00:20.000 +"My Aunt is a Witch",01002C6012334000,status-playable,playable,2022-10-19 09:21:17.000 +"My Butler",,status-playable,playable,2020-06-27 13:46:23.000 +"My Friend Pedro: Blood Bullets Bananas",010031200B94C000,nvdec;status-playable,playable,2021-05-28 11:19:17.000 +"My Girlfriend is a Mermaid!?",,nvdec;status-playable,playable,2020-05-08 13:32:55.000 +"MY HERO ONE'S JUSTICE",,UE4;crash;gpu;online;status-menus,menus,2020-12-10 13:11:04.000 +"MY HERO ONE'S JUSTICE 2",,UE4;gpu;nvdec;status-ingame,ingame,2020-12-18 14:08:47.000 +"My Hidden Things",0100E4701373E000,status-playable,playable,2021-04-15 11:26:06.000 +"My Little Dog Adventure",,gpu;status-ingame,ingame,2020-12-10 17:47:37.000 +"My Little Riding Champion",,slow;status-playable,playable,2020-05-08 17:00:53.000 +"My Lovely Daughter",010086B00C784000,status-playable,playable,2022-11-24 17:25:32.000 +"My Memory of Us",0100E7700C284000,status-playable,playable,2022-08-20 11:03:14.000 +"My Riding Stables - Life with Horses",010028F00ABAE000,status-playable,playable,2022-08-05 21:39:07.000 +"My Riding Stables 2: A New Adventure",010042A00FBF0000,status-playable,playable,2021-05-16 14:14:59.000 +"My Time At Portia",0100E25008E68000,status-playable,playable,2021-05-28 12:42:55.000 +"My Universe - Cooking Star Restaurant",0100CD5011A02000,status-playable,playable,2022-10-19 10:00:44.000 +"My Universe - Fashion Boutique",0100F71011A0A000,status-playable;nvdec,playable,2022-10-12 14:54:19.000 +"My Universe - Pet Clinic Cats & Dogs",0100CD5011A02000,status-boots;crash;nvdec,boots,2022-02-06 02:05:53.000 +"My Universe - School Teacher",01006C301199C000,nvdec;status-playable,playable,2021-01-21 16:02:52.000 +"n Verlore Verstand",,slow;status-ingame,ingame,2020-12-10 18:00:28.000 +"n Verlore Verstand - Demo",01009A500E3DA000,status-playable,playable,2021-02-09 00:13:32.000 +"N++",01000D5005974000,status-playable,playable,2022-08-05 21:54:58.000 +"NAIRI: Tower of Shirin",,nvdec;status-playable,playable,2020-08-09 19:49:12.000 +"NAMCO MUSEUM",010002F001220000,status-playable;ldn-untested,playable,2024-08-13 07:52:21.000 +"NAMCO MUSEUM ARCADE PAC",0100DAA00AEE6000,status-playable,playable,2021-06-07 21:44:50.000 +"NAMCOT COLLECTION",,audio;status-playable,playable,2020-06-25 13:35:22.000 +"Narcos: Rise of the Cartels",010072B00BDDE000,UE4;crash;nvdec;status-boots,boots,2021-03-22 13:18:47.000 +"NARUTO SHIPPUDEN: ULTIMATE NINJA STORM 4 ROAD TO BORUTO",010084D00CF5E000,status-playable,playable,2024-06-29 13:04:22.000 +"NARUTO SHIPPUDEN™: Ultimate Ninja Storm 3 Full Burst",01006BB00800A000,status-playable;nvdec,playable,2024-06-16 14:58:05.000 +"NARUTO X BARUTO Ultimate Ninja STORM CONNECTIONS",0100D2D0190A4000,services-horizon;status-nothing,nothing,2024-07-25 05:16:48.000 +"NARUTO™: Ultimate Ninja® STORM",0100715007354000,status-playable;nvdec,playable,2022-08-06 14:10:31.000 +"NASCAR Rivals",0100545016D5E000,status-ingame;crash;Incomplete,ingame,2023-04-21 01:17:47.000 +"Naught",0100103011894000,UE4;status-playable,playable,2021-04-26 13:31:45.000 +"NBA 2K Playgrounds 2",01001AE00C1B2000,status-playable;nvdec;online-broken;UE4;vulkan-backend-bug,playable,2022-08-06 14:40:38.000 +"NBA 2K18",0100760002048000,gpu;status-ingame;ldn-untested,ingame,2022-08-06 14:17:51.000 +"NBA 2K19",01001FF00B544000,crash;ldn-untested;services;status-nothing,nothing,2021-04-16 13:07:21.000 +"NBA 2K21",0100E24011D1E000,gpu;status-boots,boots,2022-10-05 15:31:51.000 +"NBA 2K23",0100ACA017E4E800,status-boots,boots,2023-10-10 23:07:14.000 +"NBA 2K24",010006501A8D8000,cpu;gpu;status-boots,boots,2024-08-11 18:23:08.000 +"NBA Playgrounds",0100F5A008126000,status-playable;nvdec;online-broken;UE4,playable,2022-08-06 16:13:44.000 +"NBA Playgrounds",010002900294A000,status-playable;nvdec;online-broken;UE4,playable,2022-08-06 17:06:59.000 +"Need a Packet?",,status-playable,playable,2020-08-12 16:09:01.000 +"Need for Speed Hot Pursuit Remastered",010029B0118E8000,status-playable;online-broken,playable,2024-03-20 21:58:02.000 +"Need For Speed Hot Pursuit Remastered",,audio;online;slow;status-ingame,ingame,2020-10-27 17:46:58.000 +"Nefarious",,status-playable,playable,2020-12-17 03:20:33.000 +"Negative",01008390136FC000,nvdec;status-playable,playable,2021-03-24 11:29:41.000 +"Neighbours back From Hell",010065F00F55A000,status-playable;nvdec,playable,2022-10-12 15:36:48.000 +"Nekopara Vol.1",0100B4900AD3E000,status-playable;nvdec,playable,2022-08-06 18:25:54.000 +"Nekopara Vol.2",,status-playable,playable,2020-12-16 11:04:47.000 +"Nekopara Vol.3",010045000E418000,status-playable,playable,2022-10-03 12:49:04.000 +"Nekopara Vol.4",,crash;status-ingame,ingame,2021-01-17 01:47:18.000 +"Nelke & the Legendary Alchemists ~Ateliers of the New World~",01006ED00BC76000,status-playable,playable,2021-01-28 19:39:42.000 +"Nelly Cootalot",,status-playable,playable,2020-06-11 20:55:42.000 +"Neo : The World Ends with You (DEMO)- 新すばらしきこのせかい (体験版)",01001AB0141A8000,crash;status-ingame,ingame,2021-07-18 07:29:18.000 +"Neo Cab",0100EBB00D2F4000,status-playable,playable,2021-04-24 00:27:58.000 +"Neo Cab Demo",,crash;status-boots,boots,2020-06-16 00:14:00.000 +"NEOGEO POCKET COLOR SELECTION Vol.1",010006D0128B4000,status-playable,playable,2023-07-08 20:55:36.000 +"Neon Abyss",0100BAB01113A000,status-playable,playable,2022-10-05 15:59:44.000 +"Neon Chrome",010075E0047F8000,status-playable,playable,2022-08-06 18:38:34.000 +"Neon Drive",010032000EAC6000,status-playable,playable,2022-09-10 13:45:48.000 +"Neon White",0100B9201406A000,status-ingame;crash,ingame,2023-02-02 22:25:06.000 +"Neonwall",0100743008694000,status-playable;nvdec,playable,2022-08-06 18:49:52.000 +"Neoverse Trinity Edition - 01001A20133E000",,status-playable,playable,2022-10-19 10:28:03.000 +"Nerdook Bundle Vol. 1",,gpu;slow;status-ingame,ingame,2020-10-07 14:27:10.000 +"Nerved",01008B0010160000,status-playable;UE4,playable,2022-09-20 17:14:03.000 +"NeuroVoider",,status-playable,playable,2020-06-04 18:20:05.000 +"Nevaeh",0100C20012A54000,gpu;nvdec;status-ingame,ingame,2021-06-16 17:29:03.000 +"Never Breakup",010039801093A000,status-playable,playable,2022-10-05 16:12:12.000 +"Neverending Nightmares",0100F79012600000,crash;gpu;status-boots,boots,2021-04-24 01:43:35.000 +"Neverlast",,slow;status-ingame,ingame,2020-07-13 23:55:19.000 +"Neverwinter Nights: Enhanced Edition",010013700DA4A000,gpu;status-menus;nvdec,menus,2024-09-30 02:59:19.000 +"New Frontier Days -Founding Pioneers-",,status-playable,playable,2020-12-10 12:45:07.000 +"New Pokémon Snap",0100F4300BF2C000,status-playable,playable,2023-01-15 23:26:57.000 +"New Super Lucky's Tale",010017700B6C2000,status-playable,playable,2024-03-11 14:14:10.000 +"New Super Mario Bros. U Deluxe",0100EA80032EA000,32-bit;status-playable,playable,2023-10-08 02:06:37.000 +"Newt One",,status-playable,playable,2020-10-17 21:21:48.000 +"Nexomon: Extinction",,status-playable,playable,2020-11-30 15:02:22.000 +"Nexoria: Dungeon Rogue Heroes",0100B69012EC6000,gpu;status-ingame,ingame,2021-10-04 18:41:29.000 +"Next Up Hero",,online;status-playable,playable,2021-01-04 22:39:36.000 +"Ni No Kuni Wrath of the White Witch",0100E5600D446000,status-boots;32-bit;nvdec,boots,2024-07-12 04:52:59.000 +"Nice Slice",,nvdec;status-playable,playable,2020-06-17 15:13:27.000 +"Niche - a genetics survival game",,nvdec;status-playable,playable,2020-11-27 14:01:11.000 +"Nickelodeon All-Star Brawl 2",010010701AFB2000,status-playable,playable,2024-06-03 14:15:01.000 +"Nickelodeon Kart Racers",,status-playable,playable,2021-01-07 12:16:49.000 +"Nickelodeon Paw Patrol: On a Roll",0100CEC003A4A000,nvdec;status-playable,playable,2021-01-28 21:14:49.000 +"Nicky: The Home Alone Golf Ball",,status-playable,playable,2020-08-08 13:45:39.000 +"Nicole",0100A95012668000,status-playable;audout,playable,2022-10-05 16:41:44.000 +"NieR:Automata The End of YoRHa Edition",0100B8E016F76000,slow;status-ingame;crash,ingame,2024-05-17 01:06:34.000 +"Night Call",0100F3A0095A6000,status-playable;nvdec,playable,2022-10-03 12:57:00.000 +"Night in the Woods",0100921006A04000,status-playable,playable,2022-12-03 20:17:54.000 +"Night Trap - 25th Anniversary Edition",0100D8500A692000,status-playable;nvdec,playable,2022-08-08 13:16:14.000 +"Nightmare Boy",,status-playable,playable,2021-01-05 15:52:29.000 +"Nightmares from the Deep 2: The Siren's Call",01006E700B702000,status-playable;nvdec,playable,2022-10-19 10:58:53.000 +"Nights of Azure 2: Bride of the New Moon",0100628004BCE000,status-menus;crash;nvdec;regression,menus,2022-11-24 16:00:39.000 +"Nightshade",,nvdec;status-playable,playable,2020-05-10 19:43:31.000 +"Nihilumbra",,status-playable,playable,2020-05-10 16:00:12.000 +"Nine Parchments",0100D03003F0E000,status-playable;ldn-untested,playable,2022-08-07 12:32:08.000 +"NINJA GAIDEN 3: Razor's Edge",01002AF014F4C000,status-playable;nvdec,playable,2023-08-11 08:25:31.000 +"Ninja Gaiden Sigma",0100E2F014F46000,status-playable;nvdec,playable,2022-11-13 16:27:02.000 +"Ninja Gaiden Sigma 2 - 0100696014FA000",,status-playable;nvdec,playable,2024-07-31 21:53:48.000 +"Ninja Shodown",,status-playable,playable,2020-05-11 12:31:21.000 +"Ninja Striker",,status-playable,playable,2020-12-08 19:33:29.000 +"Ninjala",0100CCD0073EA000,status-boots;online-broken;UE4,boots,2024-07-03 20:04:49.000 +"Ninjin: Clash of Carrots",010003C00B868000,status-playable;online-broken,playable,2024-07-10 05:12:26.000 +"NinNinDays",0100746010E4C000,status-playable,playable,2022-11-20 15:17:29.000 +"Nintendo 64 - Nintendo Switch Online",0100C9A00ECE6000,gpu;status-ingame;vulkan,ingame,2024-04-23 20:21:07.000 +"Nintendo Entertainment System - Nintendo Switch Online",0100D870045B6000,status-playable;online,playable,2022-07-01 15:45:06.000 +"Nintendo Labo - Toy-Con 01: Variety Kit",0100C4B0034B2000,gpu;status-ingame,ingame,2022-08-07 12:56:07.000 +"Nintendo Labo Toy-Con 02: Robot Kit",01009AB0034E0000,gpu;status-ingame,ingame,2022-08-07 13:03:19.000 +"Nintendo Labo Toy-Con 03: Vehicle Kit",01001E9003502000,services;status-menus;crash,menus,2022-08-03 17:20:11.000 +"Nintendo Labo Toy-Con 04: VR Kit",0100165003504000,services;status-boots;crash,boots,2023-01-17 22:30:24.000 +"Nintendo Switch Sports",0100D2F00D5C0000,deadlock;status-boots,boots,2024-09-10 14:20:24.000 +"Nintendo Switch Sports Online Play Test",01000EE017182000,gpu;status-ingame,ingame,2022-03-16 07:44:12.000 +"Nippon Marathon",010037200C72A000,nvdec;status-playable,playable,2021-01-28 20:32:46.000 +"Nirvana Pilot Yume",010020901088A000,status-playable,playable,2022-10-29 11:49:49.000 +"No Heroes Here",,online;status-playable,playable,2020-05-10 02:41:57.000 +"No Man’s Sky",0100853015E86000,gpu;status-ingame,ingame,2024-07-25 05:18:17.000 +"No More Heroes",0100F0400F202000,32-bit;status-playable,playable,2022-09-13 07:44:27.000 +"No More Heroes 2 Desperate Struggle",010071400F204000,32-bit;status-playable;nvdec,playable,2022-11-19 01:38:13.000 +"No More Heroes 3",01007C600EB42000,gpu;status-ingame;UE4,ingame,2024-03-11 17:06:19.000 +"No Straight Roads",01009F3011004000,status-playable;nvdec,playable,2022-10-05 17:01:38.000 +"NO THING",,status-playable,playable,2021-01-04 19:06:01.000 +"Nongunz: Doppelganger Edition",0100542012884000,status-playable,playable,2022-10-29 12:00:39.000 +"Norman's Great Illusion",,status-playable,playable,2020-12-15 19:28:24.000 +"Norn9 ~Norn + Nonette~ LOFN",01001A500AD6A000,status-playable;nvdec;vulkan-backend-bug,playable,2022-12-09 09:29:16.000 +"NORTH",,nvdec;status-playable,playable,2021-01-05 16:17:44.000 +"Northgard",0100A9E00D97A000,status-menus;crash,menus,2022-02-06 02:05:35.000 +"nOS new Operating System",01008AE019614000,status-playable,playable,2023-03-22 16:49:08.000 +"NOT A HERO",0100CB800B07E000,status-playable,playable,2021-01-28 19:31:24.000 +"Not Not a Brain Buster",,status-playable,playable,2020-05-10 02:05:26.000 +"Not Tonight",0100DAF00D0E2000,status-playable;nvdec,playable,2022-10-19 11:48:47.000 +"Nubarron: The adventure of an unlucky gnome",,status-playable,playable,2020-12-17 16:45:17.000 +"Nuclien",,status-playable,playable,2020-05-10 05:32:55.000 +"Numbala",,status-playable,playable,2020-05-11 12:01:07.000 +"Number Place 10000",010020500C8C8000,gpu;status-menus,menus,2021-11-24 09:14:23.000 +"Nurse Love Syndrome",010003701002C000,status-playable,playable,2022-10-13 10:05:22.000 +"nx-hbmenu",0000000000000000,status-boots;Needs Update;homebrew,boots,2024-04-06 22:05:32.000 +"nxquake2",,services;status-nothing;crash;homebrew,nothing,2022-08-04 23:14:04.000 +"Nyan Cat: Lost in Space",010049F00EC30000,online;status-playable,playable,2021-06-12 13:22:03.000 +"O---O",01002E6014FC4000,status-playable,playable,2022-10-29 12:12:14.000 +"OBAKEIDORO!",,nvdec;online;status-playable,playable,2020-10-16 16:57:34.000 +"Observer",01002A000C478000,UE4;gpu;nvdec;status-ingame,ingame,2021-03-03 20:19:45.000 +"Oceanhorn",,status-playable,playable,2021-01-05 13:55:22.000 +"Oceanhorn 2 Knights of the Lost Realm",01006CB010840000,status-playable,playable,2021-05-21 18:26:10.000 +"Octocopter: Double or Squids",,status-playable,playable,2021-01-06 01:30:16.000 +"Octodad Dadliest Catch",0100CAB006F54000,crash;status-boots,boots,2021-04-23 15:26:12.000 +"Octopath Traveler",,UE4;crash;gpu;status-ingame,ingame,2020-08-31 02:34:36.000 +"Octopath Traveler II",0100A3501946E000,gpu;status-ingame;amd-vendor-bug,ingame,2024-09-22 11:39:20.000 +"Odallus",010084300C816000,status-playable,playable,2022-08-08 12:37:58.000 +"Oddworld: Munch's Oddysee",0100BB500EE3C000,gpu;nvdec;status-ingame,ingame,2021-06-17 12:11:50.000 +"Oddworld: New 'n' Tasty",01005E700ABB8000,nvdec;status-playable,playable,2021-06-17 17:51:32.000 +"Oddworld: Soulstorm",0100D210177C6000,services-horizon;status-boots;crash,boots,2024-08-18 13:13:26.000 +"Oddworld: Stranger's Wrath HD",01002EA00ABBA000,status-menus;crash;nvdec;loader-allocator,menus,2021-11-23 09:23:21.000 +"Odium to the Core",,gpu;status-ingame,ingame,2021-01-08 14:03:52.000 +"Off And On Again",01006F5013202000,status-playable,playable,2022-10-29 19:46:26.000 +"Offroad Racing",01003CD00E8BC000,status-playable;online-broken;UE4,playable,2022-09-14 18:53:22.000 +"Oh My Godheads: Party Edition",01003B900AE12000,status-playable,playable,2021-04-15 11:04:11.000 +"Oh...Sir! The Hollywood Roast",,status-ingame,ingame,2020-12-06 00:42:30.000 +"OK K.O.! Let's Play Heroes",,nvdec;status-playable,playable,2021-01-11 18:41:02.000 +"OKAMI HD",0100276009872000,status-playable;nvdec,playable,2024-04-05 06:24:58.000 +"OkunoKA",01006AB00BD82000,status-playable;online-broken,playable,2022-08-08 14:41:51.000 +"Old Man's Journey",0100CE2007A86000,nvdec;status-playable,playable,2021-01-28 19:16:52.000 +"Old School Musical",,status-playable,playable,2020-12-10 12:51:12.000 +"Old School Racer 2",,status-playable,playable,2020-10-19 12:11:26.000 +"OlliOlli: Switch Stance",0100E0200B980000,gpu;status-boots,boots,2024-04-25 08:36:37.000 +"Olympia Soiree",0100F9D00C186000,status-playable,playable,2022-12-04 21:07:12.000 +"OLYMPIC GAMES TOKYO 2020",,ldn-untested;nvdec;online;status-playable,playable,2021-01-06 01:20:24.000 +"Omega Labyrinth Life",01001D600E51A000,status-playable,playable,2021-02-23 21:03:03.000 +"Omega Vampire",,nvdec;status-playable,playable,2020-10-17 19:15:35.000 +"Omensight: Definitive Edition",,UE4;crash;nvdec;status-ingame,ingame,2020-07-26 01:45:14.000 +"OMG Zombies!",01006DB00D970000,32-bit;status-playable,playable,2021-04-12 18:04:45.000 +"OMORI",010014E017B14000,status-playable,playable,2023-01-07 20:21:02.000 +"Once Upon A Coma",,nvdec;status-playable,playable,2020-08-01 12:09:39.000 +"One More Dungeon",,status-playable,playable,2021-01-06 09:10:58.000 +"One Person Story",,status-playable,playable,2020-07-14 11:51:02.000 +"One Piece Pirate Warriors 3",,nvdec;status-playable,playable,2020-05-10 06:23:52.000 +"One Piece Unlimited World Red Deluxe Edition",,status-playable,playable,2020-05-10 22:26:32.000 +"ONE PIECE: PIRATE WARRIORS 4",01008FE00E2F6000,status-playable;online-broken;ldn-untested,playable,2022-09-27 22:55:46.000 +"Oneiros",0100463013246000,status-playable,playable,2022-10-13 10:17:22.000 +"OneWayTicket",,UE4;status-playable,playable,2020-06-20 17:20:49.000 +"Oniken",010057C00D374000,status-playable,playable,2022-09-10 14:22:38.000 +"Oniken: Unstoppable Edition",010037900C814000,status-playable,playable,2022-08-08 14:52:06.000 +"Onimusha: Warlords",,nvdec;status-playable,playable,2020-07-31 13:08:39.000 +"OniNaki",0100CF4011B2A000,nvdec;status-playable,playable,2021-02-27 21:52:42.000 +"oOo: Ascension",010074000BE8E000,status-playable,playable,2021-01-25 14:13:34.000 +"Operación Triunfo 2017",0100D5400BD90000,services;status-ingame;nvdec,ingame,2022-08-08 15:06:42.000 +"Operencia The Stolen Sun",01006CF00CFA4000,UE4;nvdec;status-playable,playable,2021-06-08 13:51:07.000 +"OPUS Collection",01004A200BE82000,status-playable,playable,2021-01-25 15:24:04.000 +"OPUS: The Day We Found Earth",010049C0075F0000,nvdec;status-playable,playable,2021-01-21 18:29:31.000 +"Ord.",,status-playable,playable,2020-12-14 11:59:06.000 +"Ori and the Blind Forest: Definitive Edition",010061D00DB74000,status-playable;nvdec;online-broken,playable,2022-09-14 19:58:13.000 +"Ori and the Blind Forest: Definitive Edition Demo",010005800F46E000,status-playable,playable,2022-09-10 14:40:12.000 +"Ori and the Will of the Wisps",01008DD013200000,status-playable,playable,2023-03-07 00:47:13.000 +"Orn: The Tiny Forest Sprite",,UE4;gpu;status-ingame,ingame,2020-08-07 14:25:30.000 +"Othercide",0100E5900F49A000,status-playable;nvdec,playable,2022-10-05 19:04:38.000 +"OTOKOMIZU",,status-playable,playable,2020-07-13 21:00:44.000 +"Otti house keeper",01006AF013A9E000,status-playable,playable,2021-01-31 12:11:24.000 +"OTTTD",,slow;status-ingame,ingame,2020-10-10 19:31:07.000 +"Our two Bedroom Story",010097F010FE6000,gpu;status-ingame;nvdec,ingame,2023-10-10 17:41:20.000 +"Our World Is Ended.",,nvdec;status-playable,playable,2021-01-19 22:46:57.000 +"Out Of The Box",01005A700A166000,status-playable,playable,2021-01-28 01:34:27.000 +"Outbreak: Endless Nightmares",0100A0D013464000,status-playable,playable,2022-10-29 12:35:49.000 +"Outbreak: Epidemic",0100C850130FE000,status-playable,playable,2022-10-13 10:27:31.000 +"Outbreak: Lost Hope",0100D9F013102000,crash;status-boots,boots,2021-04-26 18:01:23.000 +"Outbreak: The New Nightmare",0100B450130FC000,status-playable,playable,2022-10-19 15:42:07.000 +"Outbreak: The Nightmare Chronicles",01006EE013100000,status-playable,playable,2022-10-13 10:41:57.000 +"Outbuddies DX",0100B8900EFA6000,gpu;status-ingame,ingame,2022-08-04 22:39:24.000 +"Outlast",01008D4007A1E000,status-playable;nvdec;loader-allocator;vulkan-backend-bug,playable,2024-01-27 04:44:26.000 +"Outlast 2",0100DE70085E8000,status-ingame;crash;nvdec,ingame,2022-01-22 22:28:05.000 +"Overcooked! 2",01006FD0080B2000,status-playable;ldn-untested,playable,2022-08-08 16:48:10.000 +"Overcooked! All You Can Eat",0100F28011892000,ldn-untested;online;status-playable,playable,2021-04-15 10:33:52.000 +"Overcooked! Special Edition",01009B900401E000,status-playable,playable,2022-08-08 20:48:52.000 +"Overlanders",0100D7F00EC64000,status-playable;nvdec;UE4,playable,2022-09-14 20:15:06.000 +"Overpass",01008EA00E816000,status-playable;online-broken;UE4;ldn-untested,playable,2022-10-17 15:29:47.000 +"Override 2 Super Mech League",0100647012F62000,status-playable;online-broken;UE4,playable,2022-10-19 15:56:04.000 +"Override: Mech City Brawl - Super Charged Mega Edition",01008A700F7EE000,status-playable;nvdec;online-broken;UE4,playable,2022-09-20 17:33:32.000 +"Overwatch®: Legendary Edition",0100F8600E21E000,deadlock;status-boots,boots,2022-09-14 20:22:22.000 +"OVERWHELM",01005F000CC18000,status-playable,playable,2021-01-21 18:37:18.000 +"Owlboy",,status-playable,playable,2020-10-19 14:24:45.000 +"PAC-MAN 99",0100AD9012510000,gpu;status-ingame;online-broken,ingame,2024-04-23 00:48:25.000 +"PAC-MAN CHAMPIONSHIP EDITION 2 PLUS",,status-playable,playable,2021-01-19 22:06:18.000 +"Paladins",011123900AEE0000,online;status-menus,menus,2021-01-21 19:21:37.000 +"PAN-PAN A tiny big adventure",0100F0D004CAE000,audout;status-playable,playable,2021-01-25 14:42:00.000 +"Pang Adventures",010083700B730000,status-playable,playable,2021-04-10 12:16:59.000 +"Pantsu Hunter",,status-playable,playable,2021-02-19 15:12:27.000 +"Panzer Dragoon: Remake",,status-playable,playable,2020-10-04 04:03:55.000 +"Panzer Paladin",01004AE0108E0000,status-playable,playable,2021-05-05 18:26:00.000 +"Paper Dolls Original",,UE4;crash;status-boots,boots,2020-07-13 20:26:21.000 +"Paper Mario The Origami King",0100A3900C3E2000,audio;status-playable;Needs Update,playable,2024-08-09 18:27:40.000 +"Paper Mario: The Thousand-Year Door",0100ECD018EBE000,gpu;status-ingame;intel-vendor-bug;slow,ingame,2025-01-07 04:27:35.000 +"Paperbound Brawlers",01006AD00B82C000,status-playable,playable,2021-01-25 14:32:15.000 +"Paradigm Paradox",0100DC70174E0000,status-playable;vulkan-backend-bug,playable,2022-12-03 22:28:13.000 +"Paradise Killer",01007FB010DC8000,status-playable;UE4,playable,2022-10-05 19:33:05.000 +"Paranautical Activity",010063400B2EC000,status-playable,playable,2021-01-25 13:49:19.000 +"Part Time UFO",01006B5012B32000,status-ingame;crash,ingame,2023-03-03 03:13:05.000 +"Party Arcade",01007FC00A040000,status-playable;online-broken;UE4;ldn-untested,playable,2022-08-09 12:32:53.000 +"Party Golf",0100B8E00359E000,status-playable;nvdec,playable,2022-08-09 12:38:30.000 +"Party Hard 2",010022801217E000,status-playable;nvdec,playable,2022-10-05 20:31:48.000 +"Party Treats",,status-playable,playable,2020-07-02 00:05:00.000 +"Path of Sin: Greed",01001E500EA16000,status-menus;crash,menus,2021-11-24 08:00:00.000 +"Pato Box",010031F006E76000,status-playable,playable,2021-01-25 15:17:52.000 +"PAW Patrol: Grand Prix",0100360016800000,gpu;status-ingame,ingame,2024-05-03 16:16:11.000 +"Paw Patrol: Might Pups Save Adventure Bay!",01001F201121E000,status-playable,playable,2022-10-13 12:17:55.000 +"Pawapoke R",01000c4015030000,services-horizon;status-nothing,nothing,2024-05-14 14:28:32.000 +"Pawarumi",0100A56006CEE000,status-playable;online-broken,playable,2022-09-10 15:19:33.000 +"PAYDAY 2",0100274004052000,status-playable;nvdec;online-broken;ldn-untested,playable,2022-08-09 12:56:39.000 +"PBA Pro Bowling",010085700ABC8000,status-playable;nvdec;online-broken;UE4,playable,2022-09-14 23:00:49.000 +"PBA Pro Bowling 2021",0100F95013772000,status-playable;online-broken;UE4,playable,2022-10-19 16:46:40.000 +"PC Building Simulator",,status-playable,playable,2020-06-12 00:31:58.000 +"Peaky Blinders: Mastermind",010002100CDCC000,status-playable,playable,2022-10-19 16:56:35.000 +"Peasant Knight",,status-playable,playable,2020-12-22 09:30:50.000 +"Penny-Punching Princess",0100C510049E0000,status-playable,playable,2022-08-09 13:37:05.000 +"Penny's Big Breakaway",0100CA901AA9C000,status-playable;amd-vendor-bug,playable,2024-05-27 07:58:51.000 +"Perception",,UE4;crash;nvdec;status-menus,menus,2020-12-18 11:49:23.000 +"Perchang",010011700D1B2000,status-playable,playable,2021-01-25 14:19:52.000 +"Perfect Angle",010089F00A3B4000,status-playable,playable,2021-01-21 18:48:45.000 +"Perky Little Things",01005CD012DC0000,status-boots;crash;vulkan,boots,2024-08-04 07:22:46.000 +"Persephone",,status-playable,playable,2021-03-23 22:39:19.000 +"Perseverance",,status-playable,playable,2020-07-13 18:48:27.000 +"Persona 4 Golden",010062B01525C000,status-playable,playable,2024-08-07 17:48:07.000 +"Persona 5 Royal",01005CA01580E000,gpu;status-ingame,ingame,2024-08-17 21:45:15.000 +"Persona 5 Tactica",010087701B092000,status-playable,playable,2024-04-01 22:21:03.000 +"Persona 5: Scramble",,deadlock;status-boots,boots,2020-10-04 03:22:29.000 +"Persona 5: Strikers (US)",0100801011C3E000,status-playable;nvdec;mac-bug,playable,2023-09-26 09:36:01.000 +"Petoons Party",010044400EEAE000,nvdec;status-playable,playable,2021-03-02 21:07:58.000 +"PGA TOUR 2K21",010053401147C000,deadlock;status-ingame;nvdec,ingame,2022-10-05 21:53:50.000 +"Phantaruk",0100DDD00C0EA000,status-playable,playable,2021-06-11 18:09:54.000 +"PHANTOM BREAKER: BATTLE GROUNDS OVER DRIVE",0100063005C86000,audio;status-playable;nvdec,playable,2024-02-29 14:20:35.000 +"Phantom Doctrine",010096F00E5B0000,status-playable;UE4,playable,2022-09-15 10:51:50.000 +"Phantom Trigger",0100C31005A50000,status-playable,playable,2022-08-09 14:27:30.000 +"Phoenix Wright: Ace Attorney Trilogy",0100CB000A142000,status-playable,playable,2023-09-15 22:03:12.000 +"PHOGS!",,online;status-playable,playable,2021-01-18 15:18:37.000 +"Physical Contact: 2048",,slow;status-playable,playable,2021-01-25 15:18:32.000 +"Physical Contact: Speed",01008110036FE000,status-playable,playable,2022-08-09 14:40:46.000 +"Pianista: The Legendary Virtuoso",010077300A86C000,status-playable;online-broken,playable,2022-08-09 14:52:56.000 +"Picross Lord Of The Nazarick",010012100E8DC000,status-playable,playable,2023-02-08 15:54:56.000 +"Picross S2",,status-playable,playable,2020-10-15 12:01:40.000 +"Picross S3",,status-playable,playable,2020-10-15 11:55:27.000 +"Picross S4",,status-playable,playable,2020-10-15 12:33:46.000 +"Picross S5",0100AC30133EC000,status-playable,playable,2022-10-17 18:51:42.000 +"Picross S6",010025901432A000,status-playable,playable,2022-10-29 17:52:19.000 +"Picross S7",,status-playable,playable,2022-02-16 12:51:25.000 +"PictoQuest",010043B00E1CE000,status-playable,playable,2021-02-27 15:03:16.000 +"Piczle Lines DX",,UE4;crash;nvdec;status-menus,menus,2020-11-16 04:21:31.000 +"Piczle Lines DX 500 More Puzzles!",,UE4;status-playable,playable,2020-12-15 23:42:51.000 +"Pig Eat Ball",01000FD00D5CC000,services;status-ingame,ingame,2021-11-30 01:57:45.000 +"Pikmin 1",0100AA80194B0000,audio;status-ingame,ingame,2024-05-28 18:56:11.000 +"Pikmin 2",0100D680194B2000,gpu;status-ingame,ingame,2023-07-31 08:53:41.000 +"Pikmin 3 Deluxe",0100F4C009322000,gpu;status-ingame;32-bit;nvdec;Needs Update,ingame,2024-09-03 00:28:26.000 +"Pikmin 3 Deluxe Demo",01001CB0106F8000,32-bit;crash;demo;gpu;status-ingame,ingame,2021-06-16 18:38:07.000 +"Pikmin 4",0100B7C00933A000,gpu;status-ingame;crash;UE4,ingame,2024-08-26 03:39:08.000 +"Pikmin 4 Demo",0100E0B019974000,gpu;status-ingame;nvdec;UE4;demo;amd-vendor-bug,ingame,2023-09-22 21:41:08.000 +"Pillars of Eternity",0100D6200E130000,status-playable,playable,2021-02-27 00:24:21.000 +"Pilot Sports",01007A500B0B2000,status-playable,playable,2021-01-20 15:04:17.000 +"Pinball FX",0100DA70186D4000,status-playable,playable,2024-05-03 17:09:11.000 +"Pinball FX3",0100DB7003828000,status-playable;online-broken,playable,2022-11-11 23:49:07.000 +"Pine",,slow;status-ingame,ingame,2020-07-29 16:57:39.000 +"Pinstripe",,status-playable,playable,2020-11-26 10:40:40.000 +"Piofiore: Episodio 1926",01002B20174EE000,status-playable,playable,2022-11-23 18:36:05.000 +"Piofiore: Fated Memories",,nvdec;status-playable,playable,2020-11-30 14:27:50.000 +"Pixel Game Maker Series Puzzle Pedestrians",0100EA2013BCC000,status-playable,playable,2022-10-24 20:15:50.000 +"Pixel Game Maker Series Werewolf Princess Kaguya",0100859013CE6000,crash;services;status-nothing,nothing,2021-03-26 00:23:07.000 +"Pixel Gladiator",,status-playable,playable,2020-07-08 02:41:26.000 +"Pixel Puzzle Makeout League",010000E00E612000,status-playable,playable,2022-10-13 12:34:00.000 +"PixelJunk Eden 2",,crash;status-ingame,ingame,2020-12-17 11:55:52.000 +"Pixeljunk Monsters 2",0100E4D00A690000,status-playable,playable,2021-06-07 03:40:01.000 +"Pizza Titan Ultra",01004A900C352000,nvdec;status-playable,playable,2021-01-20 15:58:42.000 +"Pizza Tower",05000FD261232000,status-ingame;crash,ingame,2024-09-16 00:21:56.000 +"Plague Road",0100FF8005EB2000,status-playable,playable,2022-08-09 15:27:14.000 +"Planescape: Torment and Icewind Dale: Enhanced Editions",010030B00C316000,cpu;status-boots;32-bit;crash;Needs Update,boots,2022-09-10 03:58:26.000 +"PLANET ALPHA",,UE4;gpu;status-ingame,ingame,2020-12-16 14:42:20.000 +"Planet Cube Edge",01007EA019CFC000,status-playable,playable,2023-03-22 17:10:12.000 +"planetarian HD ~the reverie of a little planet~",,status-playable,playable,2020-10-17 20:26:20.000 +"Plantera",010087000428E000,status-playable,playable,2022-08-09 15:36:28.000 +"Plants vs. Zombies: Battle for Neighborville Complete Edition",0100C56010FD8000,gpu;audio;status-boots;crash,boots,2024-09-02 12:58:14.000 +"Ploid Saga",0100E5B011F48000,status-playable,playable,2021-04-19 16:58:45.000 +"Pode",01009440095FE000,nvdec;status-playable,playable,2021-01-25 12:58:35.000 +"Poi: Explorer Edition",010086F0064CE000,nvdec;status-playable,playable,2021-01-21 19:32:00.000 +"Poison Control",0100EB6012FD2000,status-playable,playable,2021-05-16 14:01:54.000 +"Pokémon Brilliant Diamond",0100000011D90000,gpu;status-ingame;ldn-works,ingame,2024-08-28 13:26:35.000 +"Pokémon Café Mix",010072400E04A000,status-playable,playable,2021-08-17 20:00:04.000 +"Pokémon HOME",,Needs Update;crash;services;status-menus,menus,2020-12-06 06:01:51.000 +"Pokémon Legends: Arceus",01001F5010DFA000,gpu;status-ingame;Needs Update;ldn-works,ingame,2024-09-19 10:02:02.000 +"Pokémon Mystery Dungeon Rescue Team DX",01003D200BAA2000,status-playable;mac-bug,playable,2024-01-21 00:16:32.000 +"Pokemon Quest",01005D100807A000,status-playable,playable,2022-02-22 16:12:32.000 +"Pokémon Scarlet",0100A3D008C5C000,gpu;status-ingame;nvdec;ldn-works;amd-vendor-bug,ingame,2023-12-14 13:18:29.000 +"Pokémon Shield",01008DB008C2C000,deadlock;status-ingame;crash;online-broken;ldn-works;LAN,ingame,2024-08-12 07:20:22.000 +"Pokémon Sword",0100ABF008968000,deadlock;status-ingame;crash;online-broken;ldn-works;LAN,ingame,2024-08-26 15:40:37.000 +"Pokémon Violet",01008F6008C5E000,gpu;status-ingame;nvdec;ldn-works;amd-vendor-bug;mac-bug,ingame,2024-07-30 02:51:48.000 +"Pokémon: Let's Go, Eevee!",0100187003A36000,status-ingame;crash;nvdec;online-broken;ldn-broken,ingame,2024-06-01 15:03:04.000 +"Pokémon: Let's Go, Pikachu!",010003F003A34000,status-ingame;crash;nvdec;online-broken;ldn-broken,ingame,2024-03-15 07:55:41.000 +"Pokémon: Let's Go, Pikachu! demo",01009AD008C4C000,slow;status-playable;demo,playable,2023-11-26 11:23:20.000 +"Pokkén Tournament DX",0100B3F000BE2000,status-playable;nvdec;ldn-works;opengl-backend-bug;LAN;amd-vendor-bug;intel-vendor-bug,playable,2024-07-18 23:11:08.000 +"Pokken Tournament DX Demo",010030D005AE6000,status-playable;demo;opengl-backend-bug,playable,2022-08-10 12:03:19.000 +"Polandball: Can Into Space!",,status-playable,playable,2020-06-25 15:13:26.000 +"Poly Bridge",,services;status-playable,playable,2020-06-08 23:32:41.000 +"Polygod",010017600B180000,slow;status-ingame;regression,ingame,2022-08-10 14:38:14.000 +"Polyroll",010074B00ED32000,gpu;status-boots,boots,2021-07-01 16:16:50.000 +"Ponpu",,status-playable,playable,2020-12-16 19:09:34.000 +"Pooplers",,status-playable,playable,2020-11-02 11:52:10.000 +"Port Royale 4",01007EF013CA0000,status-menus;crash;nvdec,menus,2022-10-30 14:34:06.000 +"Portal",01007BB017812000,status-playable,playable,2024-06-12 03:48:29.000 +"Portal 2",0100ABD01785C000,gpu;status-ingame,ingame,2023-02-20 22:44:15.000 +"Portal Dogs",,status-playable,playable,2020-09-04 12:55:46.000 +"Portal Knights",0100437004170000,ldn-untested;online;status-playable,playable,2021-05-27 19:29:04.000 +"Potata: Fairy Flower",,nvdec;status-playable,playable,2020-06-17 09:51:34.000 +"Potion Party",01000A4014596000,status-playable,playable,2021-05-06 14:26:54.000 +"Power Rangers: Battle for the Grid",,status-playable,playable,2020-06-21 16:52:42.000 +"Powerful Pro Baseball 2024-2025",0100D1C01C194000,gpu;status-ingame,ingame,2024-08-25 06:40:48.000 +"PowerSlave Exhumed",01008E100E416000,gpu;status-ingame,ingame,2023-07-31 23:19:10.000 +"Prehistoric Dude",,gpu;status-ingame,ingame,2020-10-12 12:38:48.000 +"Pretty Princess Magical Coordinate",,status-playable,playable,2020-10-15 11:43:41.000 +"Pretty Princess Party",01007F00128CC000,status-playable,playable,2022-10-19 17:23:58.000 +"Preventive Strike",010009300D278000,status-playable;nvdec,playable,2022-10-06 10:55:51.000 +"Prince of Persia: The Lost Crown",0100210019428000,status-ingame;crash,ingame,2024-06-08 21:31:58.000 +"Princess Peach: Showtime!",01007A3009184000,status-playable;UE4,playable,2024-09-21 13:39:45.000 +"Princess Peach: Showtime! Demo",010024701DC2E000,status-playable;UE4;demo,playable,2024-03-10 17:46:45.000 +"Prinny 2: Dawn of Operation Panties, Dood!",01008FA01187A000,32-bit;status-playable,playable,2022-10-13 12:42:58.000 +"Prinny Presents NIS Classics Volume 1",0100A6E01681C000,status-boots;crash;Needs Update,boots,2023-02-02 07:23:09.000 +"Prinny: Can I Really Be the Hero?",01007A0011878000,32-bit;status-playable;nvdec,playable,2023-10-22 09:25:25.000 +"PriPara: All Idol Perfect Stage",010007F00879E000,status-playable,playable,2022-11-22 16:35:52.000 +"Prison Architect",010029200AB1C000,status-playable,playable,2021-04-10 12:27:58.000 +"Prison City",0100C1801B914000,gpu;status-ingame,ingame,2024-03-01 08:19:33.000 +"Prison Princess",0100F4800F872000,status-playable,playable,2022-11-20 15:00:25.000 +"Professional Construction - The Simulation",0100A9800A1B6000,slow;status-playable,playable,2022-08-10 15:15:45.000 +"Professional Farmer: Nintendo Switch Edition",,slow;status-playable,playable,2020-12-16 13:38:19.000 +"Professor Lupo and his Horrible Pets",,status-playable,playable,2020-06-12 00:08:45.000 +"Professor Lupo: Ocean",0100D1F0132F6000,status-playable,playable,2021-04-14 16:33:33.000 +"Project Highrise: Architect's Edition",0100BBD00976C000,status-playable,playable,2022-08-10 17:19:12.000 +"Project Nimbus: Complete Edition",0100ACE00DAB6000,status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-08-10 17:35:43.000 +"Project TRIANGLE STRATEGY Debut Demo",01002980140F6000,status-playable;UE4;demo,playable,2022-10-24 21:40:27.000 +"Project Warlock",,status-playable,playable,2020-06-16 10:50:41.000 +"Psikyo Collection Vol 1",,32-bit;status-playable,playable,2020-10-11 13:18:47.000 +"Psikyo Collection Vol. 3",0100A2300DB78000,status-ingame,ingame,2021-06-07 02:46:23.000 +"Psikyo Collection Vol.2",01009D400C4A8000,32-bit;status-playable,playable,2021-06-07 03:22:07.000 +"Psikyo Shooting Stars Alpha",01007A200F2E2000,32-bit;status-playable,playable,2021-04-13 12:03:43.000 +"Psikyo Shooting Stars Bravo",0100D7400F2E4000,32-bit;status-playable,playable,2021-06-14 12:09:07.000 +"PSYVARIAR DELTA",0100EC100A790000,nvdec;status-playable,playable,2021-01-20 13:01:46.000 +"Puchitto kurasutā",,Need-Update;crash;services;status-menus,menus,2020-07-04 16:44:28.000 +"Pulstario",0100861012474000,status-playable,playable,2022-10-06 11:02:01.000 +"Pumped BMX Pro",01009AE00B788000,status-playable;nvdec;online-broken,playable,2022-09-20 17:40:50.000 +"Pumpkin Jack",01006C10131F6000,status-playable;nvdec;UE4,playable,2022-10-13 12:52:32.000 +"PUSH THE CRATE",010016400F07E000,status-playable;nvdec;UE4,playable,2022-09-15 13:28:41.000 +"Push the Crate 2",0100B60010432000,UE4;gpu;nvdec;status-ingame,ingame,2021-06-10 14:20:01.000 +"Pushy and Pully in Blockland",,status-playable,playable,2020-07-04 11:44:41.000 +"Puyo Puyo Champions",,online;status-playable,playable,2020-06-19 11:35:08.000 +"Puyo Puyo Tetris 2",010038E011940000,status-playable;ldn-untested,playable,2023-09-26 11:35:25.000 +"Puzzle and Dragons GOLD",,slow;status-playable,playable,2020-05-13 15:09:34.000 +"Puzzle Bobble Everybubble!",010079E01A1E0000,audio;status-playable;ldn-works,playable,2023-06-10 03:53:40.000 +"Puzzle Book",,status-playable,playable,2020-09-28 13:26:01.000 +"Puzzle Box Maker",0100476004A9E000,status-playable;nvdec;online-broken,playable,2022-08-10 18:00:52.000 +"Pyramid Quest",0100A4E017372000,gpu;status-ingame,ingame,2023-08-16 21:14:52.000 +"Q-YO Blaster",,gpu;status-ingame,ingame,2020-06-07 22:36:53.000 +"Q.U.B.E. 2",010023600AA34000,UE4;status-playable,playable,2021-03-03 21:38:57.000 +"Qbics Paint",0100A8D003BAE000,gpu;services;status-ingame,ingame,2021-06-07 10:54:09.000 +"Quake",0100BA5012E54000,gpu;status-menus;crash,menus,2022-08-08 12:40:34.000 +"Quake II",010048F0195E8000,status-playable,playable,2023-08-15 03:42:14.000 +"QuakespasmNX",,status-nothing;crash;homebrew,nothing,2022-07-23 19:28:07.000 +"Quantum Replica",010045101288A000,status-playable;nvdec;UE4,playable,2022-10-30 21:17:22.000 +"Quarantine Circular",0100F1400BA88000,status-playable,playable,2021-01-20 15:24:15.000 +"Queen's Quest 4: Sacred Truce",0100DCF00F13A000,status-playable;nvdec,playable,2022-10-13 12:59:21.000 +"Quell Zen",0100492012378000,gpu;status-ingame,ingame,2021-06-11 15:59:53.000 +"Quest of Dungeons",01001DE005012000,status-playable,playable,2021-06-07 10:29:22.000 +"QuietMansion2",,status-playable,playable,2020-09-03 14:59:35.000 +"Quiplash 2 InterLASHional",0100AF100EE76000,status-playable;online-working,playable,2022-10-19 17:43:45.000 +"R-Type Dimensions EX",,status-playable,playable,2020-10-09 12:04:43.000 +"R-TYPE FINAL 2",0100F930136B6000,slow;status-ingame;nvdec;UE4,ingame,2022-10-30 21:46:29.000 +"R-TYPE FINAL 2 Demo",01007B0014300000,slow;status-ingame;nvdec;UE4;demo,ingame,2022-10-24 21:57:42.000 +"R.B.I. Baseball 17",0100B5A004302000,status-playable;online-working,playable,2022-08-11 11:55:47.000 +"R.B.I. Baseball 18",01005CC007616000,status-playable;nvdec;online-working,playable,2022-08-11 11:27:52.000 +"R.B.I. Baseball 19",0100FCB00BF40000,status-playable;nvdec;online-working,playable,2022-08-11 11:43:52.000 +"R.B.I. Baseball 20",010061400E7D4000,status-playable,playable,2021-06-15 21:16:29.000 +"R.B.I. Baseball 21",0100B4A0115CA000,status-playable;online-working,playable,2022-10-24 22:31:45.000 +"Rabi-Ribi",01005BF00E4DE000,status-playable,playable,2022-08-06 17:02:44.000 +"Race With Ryan",,UE4;gpu;nvdec;slow;status-ingame,ingame,2020-11-16 04:35:33.000 +"Rack N Ruin",,status-playable,playable,2020-09-04 15:20:26.000 +"RAD",010024400C516000,gpu;status-menus;crash;UE4,menus,2021-11-29 02:01:56.000 +"Rad Rodgers Radical Edition",010000600CD54000,status-playable;nvdec;online-broken,playable,2022-08-10 19:57:23.000 +"Radiation City",0100DA400E07E000,status-ingame;crash,ingame,2022-09-30 11:15:04.000 +"Radiation Island",01009E40095EE000,status-ingame;opengl;vulkan-backend-bug,ingame,2022-08-11 10:51:04.000 +"Radical Rabbit Stew",,status-playable,playable,2020-08-03 12:02:56.000 +"Radio Commander",0100BAD013B6E000,nvdec;status-playable,playable,2021-03-24 11:20:46.000 +"RADIO HAMMER STATION",01008FA00ACEC000,audout;status-playable,playable,2021-02-26 20:20:06.000 +"Raging Justice",01003D00099EC000,status-playable,playable,2021-06-03 14:06:50.000 +"Raiden IV x Mikado Remix [ 雷電Ⅳ×MIKADO remix ]",01005CD013116000,status-playable,playable,2022-07-29 15:50:13.000 +"Raiden V: Director's Cut",01002B000D97E000,deadlock;status-boots;nvdec,boots,2024-07-12 07:31:46.000 +"Railway Empire",01002EE00DC02000,status-playable;nvdec,playable,2022-10-03 13:53:50.000 +"Rain City",,status-playable,playable,2020-10-08 16:59:03.000 +"Rain on Your Parade",0100BDD014232000,status-playable,playable,2021-05-06 19:32:04.000 +"Rain World",010047600BF72000,status-playable,playable,2023-05-10 23:34:08.000 +"Rainbows, toilets & unicorns",,nvdec;status-playable,playable,2020-10-03 18:08:18.000 +"Raji An Ancient Epic",,UE4;gpu;nvdec;status-ingame,ingame,2020-12-16 10:05:25.000 +"Rapala Fishing: Pro Series",,nvdec;status-playable,playable,2020-12-16 13:26:53.000 +"Rascal Fight",,status-playable,playable,2020-10-08 13:23:30.000 +"Rawr-Off",,crash;nvdec;status-menus,menus,2020-07-02 00:14:44.000 +"Rayman Legends: Definitive Edition",01005FF002E2A000,status-playable;nvdec;ldn-works,playable,2023-05-27 18:33:07.000 +"Re:Turn - One Way Trip",0100F03011616000,status-playable,playable,2022-08-29 22:42:53.000 +"Re:ZERO -Starting Life in Another World- The Prophecy of the Throne",,gpu;status-boots;crash;nvdec;vulkan,boots,2023-03-07 21:27:24.000 +"Real Drift Racing",,status-playable,playable,2020-07-25 14:31:31.000 +"Real Heroes: Firefighter",010048600CC16000,status-playable,playable,2022-09-20 18:18:44.000 +"realMyst: Masterpiece Edition",,nvdec;status-playable,playable,2020-11-30 15:25:42.000 +"Reaper: Tale of a Pale Swordsman",,status-playable,playable,2020-12-12 15:12:23.000 +"Rebel Cops",0100D9B00E22C000,status-playable,playable,2022-09-11 10:02:53.000 +"Rebel Galaxy: Outlaw",0100CAA01084A000,status-playable;nvdec,playable,2022-12-01 07:44:56.000 +"Red Bow",0100CF600FF7A000,services;status-ingame,ingame,2021-11-29 03:51:34.000 +"Red Colony",0100351013A06000,status-playable,playable,2021-01-25 20:44:41.000 +"Red Dead Redemption",01007820196A6000,status-playable;amd-vendor-bug,playable,2024-09-13 13:26:13.000 +"Red Death",,status-playable,playable,2020-08-30 13:07:37.000 +"Red Faction Guerrilla Re-Mars-tered",010075000C608000,ldn-untested;nvdec;online;status-playable,playable,2021-06-07 03:02:13.000 +"Red Game Without a Great Name",,status-playable,playable,2021-01-19 21:42:35.000 +"Red Siren : Space Defense",010045400D73E000,UE4;status-playable,playable,2021-04-25 21:21:29.000 +"Red Wings - Aces of the Sky",,status-playable,playable,2020-06-12 01:19:53.000 +"Redeemer: Enhanced Edition",01000D100DCF8000,status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-09-11 10:20:24.000 +"Redout: Space Assault",0100326010B98000,status-playable;UE4,playable,2022-10-19 23:04:35.000 +"Reel Fishing: Road Trip Adventure",010007C00E558000,status-playable,playable,2021-03-02 16:06:43.000 +"Reflection of Mine",,audio;status-playable,playable,2020-12-17 15:06:37.000 +"Refreshing Sideways Puzzle Ghost Hammer",,status-playable,playable,2020-10-18 12:08:54.000 +"Refunct",,UE4;status-playable,playable,2020-12-15 22:46:21.000 +"Regalia: Of Men and Monarchs - Royal Edition",0100FDF0083A6000,status-playable,playable,2022-08-11 12:24:01.000 +"Regions of Ruin",,status-playable,playable,2020-08-05 11:38:58.000 +"Reine des Fleurs",,cpu;crash;status-boots,boots,2020-09-27 18:50:39.000 +"REKT",,online;status-playable,playable,2020-09-28 12:33:56.000 +"Relicta",01002AD013C52000,status-playable;nvdec;UE4,playable,2022-10-31 12:48:33.000 +"Remi Lore",010095900B436000,status-playable,playable,2021-06-03 18:58:15.000 +"Remothered: Broken Porcelain",0100FBD00F5F6000,UE4;gpu;nvdec;status-ingame,ingame,2021-06-17 15:13:11.000 +"Remothered: Tormented Fathers",01001F100E8AE000,status-playable;nvdec;UE4,playable,2022-10-19 23:26:50.000 +"Rento Fortune Monolit",,ldn-untested;online;status-playable,playable,2021-01-19 19:52:21.000 +"Renzo Racer",01007CC0130C6000,status-playable,playable,2021-03-23 22:28:05.000 +"Rescue Tale",01003C400AD42000,status-playable,playable,2022-09-20 18:40:18.000 +"Resident Evil 4",010099A00BC1E000,status-playable;nvdec,playable,2022-11-16 21:16:04.000 +"Resident Evil 5",010018100CD46000,status-playable;nvdec,playable,2024-02-18 17:15:29.000 +"RESIDENT EVIL 6",01002A000CD48000,status-playable;nvdec,playable,2022-09-15 14:31:47.000 +"Resident Evil Revelations",0100643002136000,status-playable;nvdec;ldn-untested,playable,2022-08-11 12:44:19.000 +"RESIDENT EVIL REVELATIONS 2",010095300212A000,status-playable;online-broken;ldn-untested,playable,2022-08-11 12:57:50.000 +"Resolutiion",0100E7F00FFB8000,crash;status-boots,boots,2021-04-25 21:57:56.000 +"Restless Night [0100FF201568E000]",0100FF201568E000,status-nothing;crash,nothing,2022-02-09 10:54:49.000 +"Retail Interactive Display Menu (DevQuestMenu)- 0100069000078000",0100069000078000,services;status-nothing;crash,nothing,2022-08-11 13:19:41.000 +"Retimed",010086E00BCB2000,status-playable,playable,2022-08-11 13:32:39.000 +"Retro City Rampage DX",,status-playable,playable,2021-01-05 17:04:17.000 +"Retrograde Arena",01000ED014A2C000,status-playable;online-broken,playable,2022-10-31 13:38:58.000 +"Return of the Obra Dinn",010032E00E6E2000,status-playable,playable,2022-09-15 19:56:45.000 +"Revenge of Justice",010027400F708000,status-playable;nvdec,playable,2022-11-20 15:43:23.000 +"Reventure",0100E2E00EA42000,status-playable,playable,2022-09-15 20:07:06.000 +"REZ PLZ",,status-playable,playable,2020-10-24 13:26:12.000 +"Rhythm Fighter",0100729012D18000,crash;status-nothing,nothing,2021-02-16 18:51:30.000 +"Rhythm of the Gods",,UE4;crash;status-nothing,nothing,2020-10-03 17:39:59.000 +"RICO",01009D5009234000,status-playable;nvdec;online-broken,playable,2022-08-11 20:16:40.000 +"Riddled Corpses EX",01002C700C326000,status-playable,playable,2021-06-06 16:02:44.000 +"Rift Keeper",0100AC600D898000,status-playable,playable,2022-09-20 19:48:20.000 +"RiME",,UE4;crash;gpu;status-boots,boots,2020-07-20 15:52:38.000 +"Rimelands",01006AC00EE6E000,status-playable,playable,2022-10-13 13:32:56.000 +"Ring Fit Adventure",01002FF008C24000,crash;services;status-nothing,nothing,2021-04-14 19:00:01.000 +"RIOT: Civil Unrest",010088E00B816000,status-playable,playable,2022-08-11 20:27:56.000 +"Riptide GP: Renegade",01002A6006AA4000,online;status-playable,playable,2021-04-13 23:33:02.000 +"Rise and Shine",,status-playable,playable,2020-12-12 15:56:43.000 +"Rise of Insanity",,status-playable,playable,2020-08-30 15:42:14.000 +"Rise: Race the Future",01006BA00E652000,status-playable,playable,2021-02-27 13:29:06.000 +"Rising Hell",010020C012F48000,status-playable,playable,2022-10-31 13:54:02.000 +"Risk",0100E8300A67A000,status-playable;nvdec;online-broken,playable,2022-08-01 18:53:28.000 +"Risk of Rain 2",010076D00E4BA000,status-playable;online-broken,playable,2024-03-04 17:01:05.000 +"Ritual",0100BD300F0EC000,status-playable,playable,2021-03-02 13:51:19.000 +"Ritual: Crown of Horns",010042500FABA000,status-playable,playable,2021-01-26 16:01:47.000 +"Rival Megagun",,nvdec;online;status-playable,playable,2021-01-19 14:01:46.000 +"RIVE: Ultimate Edition",,status-playable,playable,2021-03-24 18:45:55.000 +"River City Girls",,nvdec;status-playable,playable,2020-06-10 23:44:09.000 +"River City Girls 2",01002E80168F4000,status-playable,playable,2022-12-07 00:46:27.000 +"River City Melee Mach!!",0100B2100767C000,status-playable;online-broken,playable,2022-09-20 20:51:57.000 +"RMX Real Motocross",,status-playable,playable,2020-10-08 21:06:15.000 +"Road Redemption",010053000B986000,status-playable;online-broken,playable,2022-08-12 11:26:20.000 +"Road to Ballhalla",010002F009A7A000,UE4;status-playable,playable,2021-06-07 02:22:36.000 +"Road to Guangdong",,slow;status-playable,playable,2020-10-12 12:15:32.000 +"Roarr!",010068200C5BE000,status-playable,playable,2022-10-19 23:57:45.000 +"Robonauts",0100618004096000,status-playable;nvdec,playable,2022-08-12 11:33:23.000 +"ROBOTICS;NOTES DaSH",,status-playable,playable,2020-11-16 23:09:54.000 +"ROBOTICS;NOTES ELITE",,status-playable,playable,2020-11-26 10:28:20.000 +"Robozarro",,status-playable,playable,2020-09-03 13:33:40.000 +"Rock 'N Racing Off Road DX",,status-playable,playable,2021-01-10 15:27:15.000 +"Rock N' Racing Grand Prix",,status-playable,playable,2021-01-06 20:23:57.000 +"Rock of Ages 3: Make & Break",0100A1B00DB36000,status-playable;UE4,playable,2022-10-06 12:18:29.000 +"Rocket League",01005EE0036EC000,gpu;status-ingame;online-broken;ldn-untested,ingame,2024-02-08 19:51:36.000 +"Rocket Wars",,status-playable,playable,2020-07-24 14:27:39.000 +"Rogue Aces",0100EC7009348000,gpu;services;status-ingame;nvdec,ingame,2021-11-30 02:18:30.000 +"Rogue Heroes: Ruins of Tasos",01009FA010848000,online;status-playable,playable,2021-04-01 15:41:25.000 +"Rogue Legacy",,status-playable,playable,2020-08-10 19:17:28.000 +"Rogue Robots",,status-playable,playable,2020-06-16 12:16:11.000 +"Rogue Trooper Redux",01001CC00416C000,status-playable;nvdec;online-broken,playable,2022-08-12 11:53:01.000 +"RogueCube",0100C7300C0EC000,status-playable,playable,2021-06-16 12:16:42.000 +"Roll'd",,status-playable,playable,2020-07-04 20:24:01.000 +"RollerCoaster Tycoon 3: Complete Edition",01004900113F8000,32-bit;status-playable,playable,2022-10-17 14:18:01.000 +"RollerCoaster Tycoon Adventures",,nvdec;status-playable,playable,2021-01-05 18:14:18.000 +"Rolling Gunner",010076200CA16000,status-playable,playable,2021-05-26 12:54:18.000 +"Rolling Sky 2",0100579011B40000,status-playable,playable,2022-11-03 10:21:12.000 +"Romancing SaGa 2",01001F600829A000,status-playable,playable,2022-08-12 12:02:24.000 +"Romancing SaGa 3",,audio;gpu;status-ingame,ingame,2020-06-27 20:26:18.000 +"Roof Rage",010088100DD42000,status-boots;crash;regression,boots,2023-11-12 03:47:18.000 +"Roombo: First Blood",,nvdec;status-playable,playable,2020-08-05 12:11:37.000 +"Root Double -Before Crime * After Days- Xtend Edition",0100936011556000,status-nothing;crash,nothing,2022-02-05 02:03:49.000 +"Root Letter: Last Answer",010030A00DA3A000,status-playable;vulkan-backend-bug,playable,2022-09-17 10:25:57.000 +"Royal Roads",,status-playable,playable,2020-11-17 12:54:38.000 +"RPG Maker MV",,nvdec;status-playable,playable,2021-01-05 20:12:01.000 +"rRootage Reloaded [01005CD015986000]",01005CD015986000,status-playable,playable,2022-08-05 23:20:18.000 +"RSDKv5u",0000000000000000,status-ingame;homebrew,ingame,2024-04-01 16:25:34.000 +"Rugby Challenge 4",010009B00D33C000,slow;status-playable;online-broken;UE4,playable,2022-10-06 12:45:53.000 +"Ruiner",01006EC00F2CC000,status-playable;UE4,playable,2022-10-03 14:11:33.000 +"Run the Fan",010074F00DE4A000,status-playable,playable,2021-02-27 13:36:28.000 +"Runbow",,online;status-playable,playable,2021-01-08 22:47:44.000 +"Runbow Deluxe Edition",0100D37009B8A000,status-playable;online-broken,playable,2022-08-12 12:20:25.000 +"Rune Factory 3 Special",010081C0191D8000,status-playable,playable,2023-10-15 08:32:49.000 +"Rune Factory 4 Special",010051D00E3A4000,status-ingame;32-bit;crash;nvdec,ingame,2023-05-06 08:49:17.000 +"Rune Factory 5 (JP)",010014D01216E000,gpu;status-ingame,ingame,2021-06-01 12:00:36.000 +"RWBY: Grimm Eclipse",0100E21013908000,status-playable;online-broken,playable,2022-11-03 10:44:01.000 +"RXN -Raijin-",,nvdec;status-playable,playable,2021-01-10 16:05:43.000 +"S.N.I.P.E.R. Hunter Scope",0100B8B012ECA000,status-playable,playable,2021-04-19 15:58:09.000 +"Saboteur II: Avenging Angel",,Needs Update;cpu;crash;status-nothing,nothing,2021-01-26 14:47:37.000 +"Saboteur SiO",,slow;status-ingame,ingame,2020-12-17 16:59:49.000 +"Safety First!",,status-playable,playable,2021-01-06 09:05:23.000 +"SaGa Frontier Remastered",0100A51013530000,status-playable;nvdec,playable,2022-11-03 13:54:56.000 +"SaGa SCARLET GRACE: AMBITIONS",010003A00D0B4000,status-playable,playable,2022-10-06 13:20:31.000 +"Saints Row IV",01008D100D43E000,status-playable;ldn-untested;LAN,playable,2023-12-04 18:33:37.000 +"Saints Row: The Third - The Full Package",0100DE600BEEE000,slow;status-playable;LAN,playable,2023-08-24 02:40:58.000 +"Sakai and...",01007F000EB36000,status-playable;nvdec,playable,2022-12-15 13:53:19.000 +"Sakuna: Of Rice and Ruin",0100B1400E8FE000,status-playable,playable,2023-07-24 13:47:13.000 +"Sally Face",0100BBF0122B4000,status-playable,playable,2022-06-06 18:41:24.000 +"Salt And Sanctuary",,status-playable,playable,2020-10-22 11:52:19.000 +"Sam & Max Save the World",,status-playable,playable,2020-12-12 13:11:51.000 +"Samsara",,status-playable,playable,2021-01-11 15:14:12.000 +"Samurai Jack Battle Through Time",01006C600E46E000,status-playable;nvdec;UE4,playable,2022-10-06 13:33:59.000 +"SAMURAI SHODOWN",,UE4;crash;nvdec;status-menus,menus,2020-09-06 02:17:00.000 +"SAMURAI SHOWDOWN NEOGEO COLLECTION",0100F6800F48E000,nvdec;status-playable,playable,2021-06-14 17:12:56.000 +"Samurai Warrior",0100B6501A360000,status-playable,playable,2023-02-27 18:42:38.000 +"SamuraiAces for Nintendo Switch",,32-bit;status-playable,playable,2020-11-24 20:26:55.000 +"Sangoku Rensenki ~Otome no Heihou!~",,gpu;nvdec;status-ingame,ingame,2020-10-17 19:13:14.000 +"Satsujin Tantei Jack the Ripper",0100A4700BC98000,status-playable,playable,2021-06-21 16:32:54.000 +"Saturday Morning RPG",0100F0000869C000,status-playable;nvdec,playable,2022-08-12 12:41:50.000 +"Sausage Sports Club",,gpu;status-ingame,ingame,2021-01-10 05:37:17.000 +"Save Koch",0100C8300FA90000,status-playable,playable,2022-09-26 17:06:56.000 +"Save the Ninja Clan",,status-playable,playable,2021-01-11 13:56:37.000 +"Save Your Nuts",010091000F72C000,status-playable;nvdec;online-broken;UE4,playable,2022-09-27 23:12:02.000 +"Saviors of Sapphire Wings & Stranger of Sword City Revisited",0100AA00128BA000,status-menus;crash,menus,2022-10-24 23:00:46.000 +"Say No! More",01001C3012912000,status-playable,playable,2021-05-06 13:43:34.000 +"Sayonara Wild Hearts",010010A00A95E000,status-playable,playable,2023-10-23 03:20:01.000 +"Schlag den Star",0100ACB004006000,slow;status-playable;nvdec,playable,2022-08-12 14:28:22.000 +"Scott Pilgrim vs The World: The Game",0100394011C30000,services-horizon;status-nothing;crash,nothing,2024-07-12 08:13:03.000 +"Scribblenauts Mega Pack",,nvdec;status-playable,playable,2020-12-17 22:56:14.000 +"Scribblenauts Showdown",,gpu;nvdec;status-ingame,ingame,2020-12-17 23:05:53.000 +"SD GUNDAM BATTLE ALLIANCE Demo",0100829018568000,audio;status-ingame;crash;demo,ingame,2022-08-01 23:01:20.000 +"SD GUNDAM G GENERATION CROSS RAYS",010055700CEA8000,status-playable;nvdec,playable,2022-09-15 20:58:44.000 +"SD GUNDAM G GENERATION CROSS RAYS PREMIUM G SOUND EDITION - 010022900D3EC00",,status-playable;nvdec,playable,2022-09-15 20:45:57.000 +"Sea King",0100E4A00D066000,UE4;nvdec;status-playable,playable,2021-06-04 15:49:22.000 +"Sea of Solitude The Director's Cut",0100AFE012BA2000,gpu;status-ingame,ingame,2024-07-12 18:29:29.000 +"Sea of Stars",01008C0016544000,status-playable,playable,2024-03-15 20:27:12.000 +"Sea of Stars Demo",010036F0182C4000,status-playable;demo,playable,2023-02-12 15:33:56.000 +"SeaBed",,status-playable,playable,2020-05-17 13:25:37.000 +"Season Match Bundle - Part 1 and 2",,status-playable,playable,2021-01-11 13:28:23.000 +"Season Match Full Bundle - Parts 1, 2 and 3",,status-playable,playable,2020-10-27 16:15:22.000 +"Secret Files 3",,nvdec;status-playable,playable,2020-10-24 15:32:39.000 +"Seek Hearts",010075D0101FA000,status-playable,playable,2022-11-22 15:06:26.000 +"Seers Isle",,status-playable,playable,2020-11-17 12:28:50.000 +"SEGA AGES Alex Kidd in Miracle World",0100A8900AF04000,online;status-playable,playable,2021-05-05 16:35:47.000 +"SEGA AGES Gain Ground",01001E600AF08000,online;status-playable,playable,2021-05-05 16:16:27.000 +"SEGA AGES OUTRUN",,status-playable,playable,2021-01-11 13:13:59.000 +"SEGA AGES PHANTASY STAR",,status-playable,playable,2021-01-11 12:49:48.000 +"SEGA AGES Puyo Puyo",01005F600CB0E000,online;status-playable,playable,2021-05-05 16:09:28.000 +"SEGA AGES SONIC THE HEDGEHOG 2",01000D200C614000,status-playable,playable,2022-09-21 20:26:35.000 +"SEGA AGES SPACE HARRIER",,status-playable,playable,2021-01-11 12:57:40.000 +"SEGA AGES Wonder Boy: Monster Land",01001E700AC60000,online;status-playable,playable,2021-05-05 16:28:25.000 +"SEGA Ages: Sonic The Hedgehog",010051F00AC5E000,slow;status-playable,playable,2023-03-05 20:16:31.000 +"SEGA Ages: Virtua Racing",010054400D2E6000,status-playable;online-broken,playable,2023-01-29 17:08:39.000 +"SEGA Genesis - Nintendo Switch Online",0100B3C014BDA000,status-nothing;crash;regression,nothing,2022-04-11 07:27:21.000 +"SEGA Mega Drive Classics",,online;status-playable,playable,2021-01-05 11:08:00.000 +"Semispheres",,status-playable,playable,2021-01-06 23:08:31.000 +"SENRAN KAGURA Peach Ball",0100D1800D902000,status-playable,playable,2021-06-03 15:12:10.000 +"SENRAN KAGURA Reflexions",,status-playable,playable,2020-03-23 19:15:23.000 +"Sentinels of Freedom",01009E500D29C000,status-playable,playable,2021-06-14 16:42:19.000 +"SENTRY",,status-playable,playable,2020-12-13 12:00:24.000 +"Sephirothic Stories",010059700D4A0000,services;status-menus,menus,2021-11-25 08:52:17.000 +"Serious Sam Collection",010007D00D43A000,status-boots;vulkan-backend-bug,boots,2022-10-13 13:53:34.000 +"Served! A gourmet race",0100B2C00E4DA000,status-playable;nvdec,playable,2022-09-28 12:46:00.000 +"Seven Knights -Time Wanderer-",010018400C24E000,status-playable;vulkan-backend-bug,playable,2022-10-13 22:08:54.000 +"Seven Pirates H",0100D6F016676000,status-playable,playable,2024-06-03 14:54:12.000 +"Severed",,status-playable,playable,2020-12-15 21:48:48.000 +"Shadow Blade Reload",0100D5500DA94000,nvdec;status-playable,playable,2021-06-11 18:40:43.000 +"Shadow Gangs",0100BE501382A000,cpu;gpu;status-ingame;crash;regression,ingame,2024-04-29 00:07:26.000 +"Shadow Man Remastered",0100C3A013840000,gpu;status-ingame,ingame,2024-05-20 06:01:39.000 +"Shadowgate",,status-playable,playable,2021-04-24 07:32:57.000 +"Shadowrun Returns",0100371013B3E000,gpu;status-ingame;Needs Update,ingame,2022-10-04 21:32:31.000 +"Shadowrun: Dragonfall - Director's Cut",01008310154C4000,gpu;status-ingame;Needs Update,ingame,2022-10-04 20:52:18.000 +"Shadowrun: Hong Kong - Extended Edition",0100C610154CA000,gpu;status-ingame;Needs Update,ingame,2022-10-04 20:53:09.000 +"Shadows 2: Perfidia",,status-playable,playable,2020-08-07 12:43:46.000 +"Shadows of Adam",,status-playable,playable,2021-01-11 13:35:58.000 +"Shadowverse Champions Battle",01002A800C064000,status-playable,playable,2022-10-02 22:59:29.000 +"Shadowverse: Champion’s Battle",01003B90136DA000,status-nothing;crash,nothing,2023-03-06 00:31:50.000 +"Shady Part of Me",0100820013612000,status-playable,playable,2022-10-20 11:31:55.000 +"Shakedown: Hawaii",,status-playable,playable,2021-01-07 09:44:36.000 +"Shakes on a Plane",01008DA012EC0000,status-menus;crash,menus,2021-11-25 08:52:25.000 +"Shalnor Legends: Sacred Lands",0100B4900E008000,status-playable,playable,2021-06-11 14:57:11.000 +"Shanky: The Vegan's Nightmare - 01000C00CC10000",,status-playable,playable,2021-01-26 15:03:55.000 +"Shantae",0100430013120000,status-playable,playable,2021-05-21 04:53:26.000 +"Shantae and the Pirate's Curse",0100EFD00A4FA000,status-playable,playable,2024-04-29 17:21:57.000 +"Shantae and the Seven Sirens",,nvdec;status-playable,playable,2020-06-19 12:23:40.000 +"Shantae: Half-Genie Hero Ultimate Edition",,status-playable,playable,2020-06-04 20:14:20.000 +"Shantae: Risky's Revenge - Director's Cut",0100ADA012370000,status-playable,playable,2022-10-06 20:47:39.000 +"Shaolin vs Wutang : Eastern Heroes",01003AB01062C000,deadlock;status-nothing,nothing,2021-03-29 20:38:54.000 +"Shape Of The World0",0100B250009B9600,UE4;status-playable,playable,2021-03-05 16:42:28.000 +"She Remembered Caterpillars",01004F50085F2000,status-playable,playable,2022-08-12 17:45:14.000 +"She Sees Red",01000320110C2000,status-playable;nvdec,playable,2022-09-30 11:30:15.000 +"Shelter Generations",01009EB004CB0000,status-playable,playable,2021-06-04 16:52:39.000 +"Sherlock Holmes: The Devil's Daughter",010020F014DBE000,gpu;status-ingame,ingame,2022-07-11 00:07:26.000 +"Shift Happens",,status-playable,playable,2021-01-05 21:24:18.000 +"SHIFT QUANTUM",,UE4;crash;status-ingame,ingame,2020-11-06 21:54:08.000 +"Shiftlings",01000750084B2000,nvdec;status-playable,playable,2021-03-04 13:49:54.000 +"Shin Megami Tensei III Nocturne HD Remaster",01003B0012DC2000,status-playable,playable,2022-11-03 22:53:27.000 +"Shin Megami Tensei III NOCTURNE HD REMASTER",010045800ED1E000,gpu;status-ingame;Needs Update,ingame,2022-11-03 19:57:01.000 +"Shin Megami Tensei V",010063B012DC6000,status-playable;UE4,playable,2024-02-21 06:30:07.000 +"Shin Megami Tensei V: Vengeance",010069C01AB82000,gpu;status-ingame;vulkan-backend-bug,ingame,2024-07-14 11:28:24.000 +"Shing! (サムライフォース:斬!)",01009050133B4000,status-playable;nvdec,playable,2022-10-22 00:48:54.000 +"Shining Resonance Refrain",01009A5009A9E000,status-playable;nvdec,playable,2022-08-12 18:03:01.000 +"Shinsekai Into the Depths",01004EE0104F6000,status-playable,playable,2022-09-28 14:07:51.000 +"Shio",0100C2F00A568000,status-playable,playable,2021-02-22 16:25:09.000 +"Shipped",,status-playable,playable,2020-11-21 14:22:32.000 +"Ships",01000E800FCB4000,status-playable,playable,2021-06-11 16:14:37.000 +"Shiren the Wanderer: The Tower of Fortune and the Dice of Fate",01007430122D0000,status-playable;nvdec,playable,2022-10-20 11:44:36.000 +"Shiritsu Berubara Gakuen ~Versailles no Bara Re*imagination~",,cpu;crash;status-boots,boots,2020-09-27 19:01:25.000 +"Shiro0",01000244016BAE00,gpu;status-ingame,ingame,2024-01-13 08:54:39.000 +"Shoot 1UP DX",,status-playable,playable,2020-12-13 12:32:47.000 +"Shovel Knight: Specter of Torment",,status-playable,playable,2020-05-30 08:34:17.000 +"Shovel Knight: Treasure Trove",,status-playable,playable,2021-02-14 18:24:39.000 +"Shred!2 - Freeride MTB",,status-playable,playable,2020-05-30 14:34:09.000 +"Shu",,nvdec;status-playable,playable,2020-05-30 09:08:59.000 +"Shut Eye",,status-playable,playable,2020-07-23 18:08:35.000 +"Sid Meier's Civilization VI",010044500C182000,status-playable;ldn-untested,playable,2024-04-08 16:03:40.000 +"Sigi - A Fart for Melusina",01007FC00B674000,status-playable,playable,2021-02-22 16:46:58.000 +"Silence",0100F1400B0D6000,nvdec;status-playable,playable,2021-06-03 14:46:17.000 +"Silent World",,status-playable,playable,2020-08-28 13:45:13.000 +"Silk",010045500DFE2000,nvdec;status-playable,playable,2021-06-10 15:34:37.000 +"SilverStarChess",010016D00A964000,status-playable,playable,2021-05-06 15:25:57.000 +"Simona's Requiem",0100E8C019B36000,gpu;status-ingame,ingame,2023-02-21 18:29:19.000 +"Sin Slayers",01006FE010438000,status-playable,playable,2022-10-20 11:53:52.000 +"Sine Mora EX",01002820036A8000,gpu;status-ingame;online-broken,ingame,2022-08-12 19:36:18.000 +"Singled Out",,online;status-playable,playable,2020-08-03 13:06:18.000 +"Sinless",,nvdec;status-playable,playable,2020-08-09 20:18:55.000 +"SINNER: Sacrifice for Redemption",0100B16009C10000,status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-08-12 20:37:33.000 +"Sir Lovelot",0100E9201410E000,status-playable,playable,2021-04-05 16:21:46.000 +"Skate City",0100134011E32000,status-playable,playable,2022-11-04 11:37:39.000 +"Skee-Ball",,status-playable,playable,2020-11-16 04:44:07.000 +"Skelattack",01001A900F862000,status-playable,playable,2021-06-09 15:26:26.000 +"Skelittle: A Giant Party!!",01008E700F952000,status-playable,playable,2021-06-09 19:08:34.000 +"Skelly Selest",,status-playable,playable,2020-05-30 15:38:18.000 +"Skies of Fury",,status-playable,playable,2020-05-30 16:40:54.000 +"Skullgirls: 2nd Encore",010046B00DE62000,status-playable,playable,2022-09-15 21:21:25.000 +"Skulls of the Shogun: Bone-a-fide Edition",,status-playable,playable,2020-08-31 18:58:12.000 +"Skully",0100D7B011654000,status-playable;nvdec;UE4,playable,2022-10-06 13:52:59.000 +"Sky Force Anniversary",010083100B5CA000,status-playable;online-broken,playable,2022-08-12 20:50:07.000 +"Sky Force Reloaded",,status-playable,playable,2021-01-04 20:06:57.000 +"Sky Gamblers - Afterburner",010003F00CC98000,gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-12 21:04:55.000 +"Sky Gamblers: Storm Raiders",010093D00AC38000,gpu;audio;status-ingame;32-bit,ingame,2022-08-12 21:13:36.000 +"Sky Gamblers: Storm Raiders 2",010068200E96E000,gpu;status-ingame,ingame,2022-09-13 12:24:04.000 +"Sky Racket",,status-playable,playable,2020-09-07 12:22:24.000 +"Sky Ride",0100DDB004F30000,status-playable,playable,2021-02-22 16:53:07.000 +"Sky Rogue",,status-playable,playable,2020-05-30 08:26:28.000 +"Sky: Children of the Light",0100C52011460000,cpu;status-nothing;online-broken,nothing,2023-02-23 10:57:10.000 +"Skybolt Zack",010041C01014E000,status-playable,playable,2021-04-12 18:28:00.000 +"SKYHILL",0100A0A00D1AA000,status-playable,playable,2021-03-05 15:19:11.000 +"Skylanders Imaginators",,crash;services;status-boots,boots,2020-05-30 18:49:18.000 +"SKYPEACE",,status-playable,playable,2020-05-29 14:14:30.000 +"SkyScrappers",,status-playable,playable,2020-05-28 22:11:25.000 +"SkyTime",,slow;status-ingame,ingame,2020-05-30 09:24:51.000 +"SlabWell",01003AD00DEAE000,status-playable,playable,2021-02-22 17:02:51.000 +"Slain",,status-playable,playable,2020-05-29 14:26:16.000 +"Slain Back from Hell",0100BB100AF4C000,status-playable,playable,2022-08-12 23:36:19.000 +"Slay the Spire",010026300BA4A000,status-playable,playable,2023-01-20 15:09:26.000 +"Slayaway Camp: Butcher's Cut",0100501006494000,status-playable;opengl-backend-bug,playable,2022-08-12 23:44:05.000 +"Slayin 2",01004E900EDDA000,gpu;status-ingame,ingame,2024-04-19 16:15:26.000 +"Sleep Tight",01004AC0081DC000,gpu;status-ingame;UE4,ingame,2022-08-13 00:17:32.000 +"Slice Dice & Rice",0100F4500AA4E000,online;status-playable,playable,2021-02-22 17:44:23.000 +"Slide Stars",010010D011E1C000,status-menus;crash,menus,2021-11-25 08:53:43.000 +"Slime-san",,status-playable,playable,2020-05-30 16:15:12.000 +"Slime-san Superslime Edition",,status-playable,playable,2020-05-30 19:08:08.000 +"SMASHING THE BATTLE",01002AA00C974000,status-playable,playable,2021-06-11 15:53:57.000 +"SmileBASIC 4",0100C9100B06A000,gpu;status-menus,menus,2021-07-29 17:35:59.000 +"Smoke and Sacrifice",0100207007EB2000,status-playable,playable,2022-08-14 12:38:27.000 +"Smurfs Kart",01009790186FE000,status-playable,playable,2023-10-18 00:55:00.000 +"Snack World The Dungeon Crawl Gold",0100F2800D46E000,gpu;slow;status-ingame;nvdec;audout,ingame,2022-05-01 21:12:44.000 +"Snake Pass",0100C0F0020E8000,status-playable;nvdec;UE4,playable,2022-01-03 04:31:52.000 +"Sniper Elite 3 Ultimate Edition",010075A00BA14000,status-playable;ldn-untested,playable,2024-04-18 07:47:49.000 +"Sniper Elite 4",010007B010FCC000,gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug,ingame,2024-06-18 17:53:15.000 +"Sniper Elite V2 Remastered",0100BB000A3AA000,slow;status-ingame;nvdec;online-broken;ldn-untested,ingame,2022-08-14 13:23:13.000 +"Snipperclips",0100704000B3A000,status-playable,playable,2022-12-05 12:44:55.000 +"Snipperclips Plus",01008E20047DC000,status-playable,playable,2023-02-14 20:20:13.000 +"SNK 40th Anniversary Collection",01004AB00AEF8000,status-playable,playable,2022-08-14 13:33:15.000 +"SNK HEROINES Tag Team Frenzy",010027F00AD6C000,status-playable;nvdec;online-broken;ldn-untested,playable,2022-08-14 14:19:25.000 +"Snooker 19",01008DA00CBBA000,status-playable;nvdec;online-broken;UE4,playable,2022-09-11 17:43:22.000 +"Snow Moto Racing Freedom",010045300516E000,gpu;status-ingame;vulkan-backend-bug,ingame,2022-08-15 16:05:14.000 +"Snowboarding the Next Phase",0100BE200C34A000,nvdec;status-playable,playable,2021-02-23 12:56:58.000 +"SnowRunner - 0100FBD13AB6000",,services;status-boots;crash,boots,2023-10-07 00:01:16.000 +"Soccer Club Life: Playing Manager",010017B012AFC000,gpu;status-ingame,ingame,2022-10-25 11:59:22.000 +"Soccer Pinball",0100B5000E05C000,UE4;gpu;status-ingame,ingame,2021-06-15 20:56:51.000 +"Soccer Slammers",,status-playable,playable,2020-05-30 07:48:14.000 +"Soccer, Tactics & Glory",010095C00F9DE000,gpu;status-ingame,ingame,2022-09-26 17:15:58.000 +"SOLDAM Drop, Connect, Erase",,status-playable,playable,2020-05-30 09:18:54.000 +"SolDivide for Nintendo Switch",0100590009C38000,32-bit;status-playable,playable,2021-06-09 14:13:03.000 +"Solo: Islands of the Heart",010008600D1AC000,gpu;status-ingame;nvdec,ingame,2022-09-11 17:54:43.000 +"Some Distant Memory",01009EE00E91E000,status-playable,playable,2022-09-15 21:48:19.000 +"Song of Nunu: A League of Legends Story",01004F401BEBE000,status-ingame,ingame,2024-07-12 18:53:44.000 +"Songbird Symphony",0100E5400BF94000,status-playable,playable,2021-02-27 02:44:04.000 +"Songbringer",,status-playable,playable,2020-06-22 10:42:02.000 +"Sonic 1 (2013)",0000000000000000,status-ingame;crash;homebrew,ingame,2024-04-06 18:31:20.000 +"Sonic 2 (2013)",0000000000000000,status-ingame;crash;homebrew,ingame,2024-04-01 16:25:30.000 +"Sonic A.I.R",0000000000000000,status-ingame;homebrew,ingame,2024-04-01 16:25:32.000 +"Sonic CD",0000000000000000,status-ingame;crash;homebrew,ingame,2024-04-01 16:25:31.000 +"Sonic Colors Ultimate [010040E0116B8000]",010040E0116B8000,status-playable,playable,2022-11-12 21:24:26.000 +"Sonic Forces",01001270012B6000,status-playable,playable,2024-07-28 13:11:21.000 +"Sonic Frontiers",01004AD014BF0000,gpu;deadlock;status-ingame;amd-vendor-bug;intel-vendor-bug,ingame,2024-09-05 09:18:53.000 +"Sonic Mania",01009AA000FAA000,status-playable,playable,2020-06-08 17:30:57.000 +"Sonic Mania Plus",01009AA000FAA000,status-playable,playable,2022-01-16 04:09:11.000 +"Sonic Superstars",01008F701C074000,gpu;status-ingame;nvdec,ingame,2023-10-28 17:48:07.000 +"Sonic Superstars Digital Art Book with Mini Digital Soundtrack",010088801C150000,status-playable,playable,2024-08-20 13:26:56.000 +"SONIC X SHADOW GENERATIONS",01005EA01C0FC000,status-ingame;crash,ingame,2025-01-07 04:20:45.000 +"Soul Axiom Rebooted",,nvdec;slow;status-ingame,ingame,2020-09-04 12:41:01.000 +"Soul Searching",,status-playable,playable,2020-07-09 18:39:07.000 +"South Park: The Fractured But Whole",01008F2005154000,slow;status-playable;online-broken,playable,2024-07-08 17:47:28.000 +"Space Blaze",,status-playable,playable,2020-08-30 16:18:05.000 +"Space Cows",,UE4;crash;status-menus,menus,2020-06-15 11:33:20.000 +"SPACE ELITE FORCE",,status-playable,playable,2020-11-27 15:21:05.000 +"Space Pioneer",010047B010260000,status-playable,playable,2022-10-20 12:24:37.000 +"Space Ribbon",010010A009830000,status-playable,playable,2022-08-15 17:17:10.000 +"SpaceCadetPinball",0000000000000000,status-ingame;homebrew,ingame,2024-04-18 19:30:04.000 +"Spacecats with Lasers",0100D9B0041CE000,status-playable,playable,2022-08-15 17:22:44.000 +"Spaceland",,status-playable,playable,2020-11-01 14:31:56.000 +"Sparkle 2",,status-playable,playable,2020-10-19 11:51:39.000 +"Sparkle Unleashed",01000DC007E90000,status-playable,playable,2021-06-03 14:52:15.000 +"Sparkle ZERO",,gpu;slow;status-ingame,ingame,2020-03-23 18:19:18.000 +"Sparklite",01007ED00C032000,status-playable,playable,2022-08-06 11:35:41.000 +"Spartan",0100E6A009A26000,UE4;nvdec;status-playable,playable,2021-03-05 15:53:19.000 +"Speaking Simulator",,status-playable,playable,2020-10-08 13:00:39.000 +"Spectrum",01008B000A5AE000,status-playable,playable,2022-08-16 11:15:59.000 +"Speed 3: Grand Prix",0100F18010BA0000,status-playable;UE4,playable,2022-10-20 12:32:31.000 +"Speed Brawl",,slow;status-playable,playable,2020-09-18 22:08:16.000 +"Speed Limit",01000540139F6000,gpu;status-ingame,ingame,2022-09-02 18:37:40.000 +"Speed Truck Racing",010061F013A0E000,status-playable,playable,2022-10-20 12:57:04.000 +"Spellspire",0100E74007EAC000,status-playable,playable,2022-08-16 11:21:21.000 +"Spelunker Party!",010021F004270000,services;status-boots,boots,2022-08-16 11:25:49.000 +"Spelunky",0100710013ABA000,status-playable,playable,2021-11-20 17:45:03.000 +"Sphinx and the Cursed Mummy™",0100BD500BA94000,gpu;status-ingame;32-bit;opengl,ingame,2024-05-20 06:00:51.000 +"Spider Solitaire",,status-playable,playable,2020-12-16 16:19:30.000 +"Spinch",010076D0122A8000,status-playable,playable,2024-07-12 19:02:10.000 +"Spinny's journey",01001E40136FE000,status-ingame;crash,ingame,2021-11-30 03:39:44.000 +"Spiral Splatter",,status-playable,playable,2020-06-04 14:03:57.000 +"Spirit Hunter: NG",,32-bit;status-playable,playable,2020-12-17 20:38:47.000 +"Spirit of the North",01005E101122E000,status-playable;UE4,playable,2022-09-30 11:40:47.000 +"Spirit Roots",,nvdec;status-playable,playable,2020-07-10 13:33:32.000 +"Spiritfarer",0100BD400DC52000,gpu;status-ingame,ingame,2022-10-06 16:31:38.000 +"SpiritSphere DX",01009D60080B4000,status-playable,playable,2021-07-03 23:37:49.000 +"Spitlings",010042700E3FC000,status-playable;online-broken,playable,2022-10-06 16:42:39.000 +"Splatoon 2",01003BC0000A0000,status-playable;ldn-works;LAN,playable,2024-07-12 19:11:15.000 +"Splatoon 3",0100C2500FC20000,status-playable;ldn-works;opengl-backend-bug;LAN;amd-vendor-bug,playable,2024-08-04 23:49:11.000 +"Splatoon 3: Splatfest World Premiere",0100BA0018500000,gpu;status-ingame;online-broken;demo,ingame,2022-09-19 03:17:12.000 +"SpongeBob SquarePants The Cosmic Shake",01009FB0172F4000,gpu;status-ingame;UE4,ingame,2023-08-01 19:29:53.000 +"SpongeBob SquarePants: Battle for Bikini Bottom - Rehydrated",010062800D39C000,status-playable;online-broken;UE4;ldn-broken;vulkan-backend-bug,playable,2023-08-01 19:29:34.000 +"Spooky Chase",010097C01336A000,status-playable,playable,2022-11-04 12:17:44.000 +"Spooky Ghosts Dot Com",0100C6100D75E000,status-playable,playable,2021-06-15 15:16:11.000 +"Sports Party",0100DE9005170000,nvdec;status-playable,playable,2021-03-05 13:40:42.000 +"Spot The Difference",0100E04009BD4000,status-playable,playable,2022-08-16 11:49:52.000 +"Spot the Differences: Party!",010052100D1B4000,status-playable,playable,2022-08-16 11:55:26.000 +"Spy Alarm",01000E6015350000,services;status-ingame,ingame,2022-12-09 10:12:51.000 +"SpyHack",01005D701264A000,status-playable,playable,2021-04-15 10:53:51.000 +"Spyro Reignited Trilogy",,Needs More Attention;UE4;crash;gpu;nvdec;status-menus,menus,2021-01-22 13:01:56.000 +"Spyro Reignited Trilogy",010077B00E046000,status-playable;nvdec;UE4,playable,2022-09-11 18:38:33.000 +"Squeakers",,status-playable,playable,2020-12-13 12:13:05.000 +"Squidgies Takeover",,status-playable,playable,2020-07-20 22:28:08.000 +"Squidlit",,status-playable,playable,2020-08-06 12:38:32.000 +"STAR OCEAN First Departure R",0100EBF00E702000,nvdec;status-playable,playable,2021-07-05 19:29:16.000 +"STAR OCEAN The Second Story R",010065301A2E0000,status-ingame;crash,ingame,2024-06-01 02:39:59.000 +"Star Renegades",,nvdec;status-playable,playable,2020-12-11 12:19:23.000 +"Star Story: The Horizon Escape",,status-playable,playable,2020-08-11 22:31:38.000 +"Star Trek Prodigy: Supernova",01009DF015776000,status-playable;nvdec;UE4;opengl-backend-bug,playable,2022-10-14 10:18:50.000 +"Star Wars - Knights Of The Old Republic",0100854015868000,gpu;deadlock;status-boots,boots,2024-02-12 10:13:51.000 +"STAR WARS Battlefront Classic Collection",010040701B948000,gpu;status-ingame;vulkan,ingame,2024-07-12 19:24:21.000 +"STAR WARS Episode I: Racer",0100BD100FFBE000,slow;status-playable;nvdec,playable,2022-10-03 16:08:36.000 +"STAR WARS Jedi Knight II Jedi Outcast",0100BB500EACA000,gpu;status-ingame,ingame,2022-09-15 22:51:00.000 +"Star Wars Jedi Knight: Jedi Academy",01008CA00FAE8000,gpu;status-boots,boots,2021-06-16 12:35:30.000 +"Star Wars: Republic Commando",0100FA10115F8000,gpu;status-ingame;32-bit,ingame,2023-10-31 15:57:17.000 +"STAR WARS: The Force Unleashed",0100153014544000,status-playable,playable,2024-05-01 17:41:28.000 +"Star Wars™ Pinball",01006DA00DEAC000,status-playable;online-broken,playable,2022-09-11 18:53:31.000 +"Star-Crossed Myth - The Department of Wishes",01005EB00EA10000,gpu;status-ingame,ingame,2021-06-04 19:34:36.000 +"Star99",0100E6B0115FC000,status-menus;online,menus,2021-11-26 14:18:51.000 +"Stardash",01002100137BA000,status-playable,playable,2021-01-21 16:31:19.000 +"Stardew Valley",0100E65002BB8000,status-playable;online-broken;ldn-untested,playable,2024-02-14 03:11:19.000 +"Starlink: Battle for Atlas",01002CC003FE6000,services-horizon;status-nothing;crash;Needs Update,nothing,2024-05-05 17:25:11.000 +"Starlit Adventures Golden Stars",,status-playable,playable,2020-11-21 12:14:43.000 +"Starship Avenger Operation: Take Back Earth",,status-playable,playable,2021-01-12 15:52:55.000 +"State of Anarchy: Master of Mayhem",,nvdec;status-playable,playable,2021-01-12 19:00:05.000 +"State of Mind",,UE4;crash;status-boots,boots,2020-06-22 22:17:50.000 +"STAY",0100616009082000,crash;services;status-boots,boots,2021-04-23 14:24:52.000 +"STAY COOL, KOBAYASHI-SAN! A RIVER RANSOM STORY",0100B61009C60000,status-playable,playable,2021-01-26 17:37:28.000 +"Steam Prison",01008010118CC000,nvdec;status-playable,playable,2021-04-01 15:34:11.000 +"Steam Tactics",0100AE100DAFA000,status-playable,playable,2022-10-06 16:53:45.000 +"Steamburg",,status-playable,playable,2021-01-13 08:42:01.000 +"SteamWorld Dig",01009320084A4000,status-playable,playable,2024-08-19 12:12:23.000 +"SteamWorld Dig 2",0100CA9002322000,status-playable,playable,2022-12-21 19:25:42.000 +"SteamWorld Quest",,nvdec;status-playable,playable,2020-11-09 13:10:04.000 +"Steel Assault",01001C6014772000,status-playable,playable,2022-12-06 14:48:30.000 +"Steins;Gate Elite",,status-playable,playable,2020-08-04 07:33:32.000 +"STEINS;GATE: My Darling's Embrace",0100CB400E9BC000,status-playable;nvdec,playable,2022-11-20 16:48:34.000 +"Stela",01002DE01043E000,UE4;status-playable,playable,2021-06-15 13:28:34.000 +"Stellar Interface",01005A700C954000,status-playable,playable,2022-10-20 13:44:33.000 +"STELLATUM",0100BC800EDA2000,gpu;status-playable,playable,2021-03-07 16:30:23.000 +"Steredenn",,status-playable,playable,2021-01-13 09:19:42.000 +"Stern Pinball Arcade",0100AE0006474000,status-playable,playable,2022-08-16 14:24:41.000 +"Stikbold! A Dodgeball Adventure DELUXE",,status-playable,playable,2021-01-11 20:12:54.000 +"Stitchy in Tooki Trouble",010077B014518000,status-playable,playable,2021-05-06 16:25:53.000 +"STONE",010070D00F640000,status-playable;UE4,playable,2022-09-30 11:53:32.000 +"Stories Untold",010074400F6A8000,status-playable;nvdec,playable,2022-12-22 01:08:46.000 +"Storm Boy",010040D00BCF4000,status-playable,playable,2022-10-20 14:15:06.000 +"Storm in a Teacup",0100B2300B932000,gpu;status-ingame,ingame,2021-11-06 02:03:19.000 +"Story of a Gladiator",,status-playable,playable,2020-07-29 15:08:18.000 +"STORY OF SEASONS Pioneers of Olive [ 牧場物語 オリーブタウンと希望の大地 ]",010017301007E000,status-playable,playable,2021-03-18 11:42:19.000 +"Story of Seasons: Friends of Mineral Town",0100ED400EEC2000,status-playable,playable,2022-10-03 16:40:31.000 +"Stranded Sails: Explorers of the Cursed Islands - 010078D00E8F4000",010078D00E8F4000,slow;status-playable;nvdec;UE4,playable,2022-09-16 11:58:38.000 +"Strange Field Football",01000A6013F86000,status-playable,playable,2022-11-04 12:25:57.000 +"Stranger Things 3: The Game",,status-playable,playable,2021-01-11 17:44:09.000 +"Strawberry Vinegar",0100D7E011C64000,status-playable;nvdec,playable,2022-12-05 16:25:40.000 +"Stray",010075101EF84000,status-ingame;crash,ingame,2025-01-07 04:03:00.000 +"Street Fighter 30th Anniversary Collection",0100024008310000,status-playable;online-broken;ldn-partial,playable,2022-08-20 16:50:47.000 +"Street Outlaws: The List",010012400D202000,nvdec;status-playable,playable,2021-06-11 12:15:32.000 +"Street Power Soccer",,UE4;crash;status-boots,boots,2020-11-21 12:28:57.000 +"Streets of Rage 4",,nvdec;online;status-playable,playable,2020-07-07 21:21:22.000 +"Strife: Veteran Edition",0100BDE012928000,gpu;status-ingame,ingame,2022-01-15 05:10:42.000 +"Strike Force - War on Terror",010039100DACC000,status-menus;crash;Needs Update,menus,2021-11-24 08:08:20.000 +"Strike Suit Zero: Director's Cut",010072500D52E000,crash;status-boots,boots,2021-04-23 17:15:14.000 +"StrikeForce Kitty",,nvdec;status-playable,playable,2020-07-29 16:22:15.000 +"STRIKERS1945 for Nintendo Switch",0100FF5005B76000,32-bit;status-playable,playable,2021-06-03 19:35:04.000 +"STRIKERS1945II for Nintendo Switch",0100720008ED2000,32-bit;status-playable,playable,2021-06-03 19:43:00.000 +"Struggling",,status-playable,playable,2020-10-15 20:37:03.000 +"Stunt Kite Party",0100AF000B4AE000,nvdec;status-playable,playable,2021-01-25 17:16:56.000 +"STURMWIND EX",0100C5500E7AE000,audio;32-bit;status-playable,playable,2022-09-16 12:01:39.000 +"Sub Level Zero: Redux",0100E6400BCE8000,status-playable,playable,2022-09-16 12:30:03.000 +"Subarashiki Kono Sekai -Final Remix-",,services;slow;status-ingame,ingame,2020-02-10 16:21:51.000 +"Subdivision Infinity DX",010001400E474000,UE4;crash;status-boots,boots,2021-03-03 14:26:46.000 +"Submerged",0100EDA00D866000,status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-08-16 15:17:01.000 +"Subnautica",0100429011144000,status-playable;vulkan-backend-bug,playable,2022-11-04 13:07:29.000 +"Subnautica Below Zero",010014C011146000,status-playable,playable,2022-12-23 14:15:13.000 +"Suguru Nature",0100BF9012AC6000,crash;status-ingame,ingame,2021-07-29 11:36:27.000 +"Suicide Guy",01005CD00A2A2000,status-playable,playable,2021-01-26 13:13:54.000 +"Suicide Guy: Sleepin' Deeply",0100DE000C2E4000,status-ingame;Needs More Attention,ingame,2022-09-20 23:45:25.000 +"Sumire",01003D50126A4000,status-playable,playable,2022-11-12 13:40:43.000 +"Summer in Mara",0100A130109B2000,nvdec;status-playable,playable,2021-03-06 14:10:38.000 +"Summer Sweetheart",01004E500DB9E000,status-playable;nvdec,playable,2022-09-16 12:51:46.000 +"Sunblaze",0100BFE014476000,status-playable,playable,2022-11-12 13:59:23.000 +"Sundered: Eldritch Edition",01002D3007962000,gpu;status-ingame,ingame,2021-06-07 11:46:00.000 +"Super Beat Sports",0100F7000464A000,status-playable;ldn-untested,playable,2022-08-16 16:05:50.000 +"Super Blood Hockey",,status-playable,playable,2020-12-11 20:01:41.000 +"Super Bomberman R",01007AD00013E000,status-playable;nvdec;online-broken;ldn-works,playable,2022-08-16 19:19:14.000 +"SUPER BOMBERMAN R 2",0100B87017D94000,deadlock;status-boots,boots,2023-09-29 13:19:51.000 +"Super Cane Magic ZERO",0100D9B00DB5E000,status-playable,playable,2022-09-12 15:33:46.000 +"Super Chariot",010065F004E5E000,status-playable,playable,2021-06-03 13:19:01.000 +"SUPER DRAGON BALL HEROES WORLD MISSION",0100E5E00C464000,status-playable;nvdec;online-broken,playable,2022-08-17 12:56:30.000 +"Super Dungeon Tactics",010023100B19A000,status-playable,playable,2022-10-06 17:40:40.000 +"Super Inefficient Golf",010056800B534000,status-playable;UE4,playable,2022-08-17 15:53:45.000 +"Super Jumpy Ball",,status-playable,playable,2020-07-04 18:40:36.000 +"Super Kickers League",0100196009998000,status-playable,playable,2021-01-26 13:36:48.000 +"Super Kirby Clash",01003FB00C5A8000,status-playable;ldn-works,playable,2024-07-30 18:21:55.000 +"Super Korotama",010000D00F81A000,status-playable,playable,2021-06-06 19:06:22.000 +"Super Loop Drive",01003E300FCAE000,status-playable;nvdec;UE4,playable,2022-09-22 10:58:05.000 +"Super Mario 3D All-Stars",010049900F546000,services-horizon;slow;status-ingame;vulkan;amd-vendor-bug,ingame,2024-05-07 02:38:16.000 +"Super Mario 3D World + Bowser's Fury",010028600EBDA000,status-playable;ldn-works,playable,2024-07-31 10:45:37.000 +"Super Mario 64",054507E0B7552000,status-ingame;homebrew,ingame,2024-03-20 16:57:27.000 +"Super Mario Bros. 35",0100277011F1A000,status-menus;online-broken,menus,2022-08-07 16:27:25.000 +"Super Mario Bros. Wonder",010015100B514000,status-playable;amd-vendor-bug,playable,2024-09-06 13:21:21.000 +"Super Mario Maker 2",01009B90006DC000,status-playable;online-broken;ldn-broken,playable,2024-08-25 11:05:19.000 +"Super Mario Odyssey",0100000000010000,status-playable;nvdec;intel-vendor-bug;mac-bug,playable,2024-08-25 01:32:34.000 +"Super Mario Party",010036B0034E4000,gpu;status-ingame;Needs Update;ldn-works,ingame,2024-06-21 05:10:16.000 +"Super Mario RPG",0100BC0018138000,gpu;audio;status-ingame;nvdec,ingame,2024-06-19 17:43:42.000 +"Super Mario World",0000000000000000,status-boots;homebrew,boots,2024-06-13 01:40:31.000 +"Super Meat Boy",,services;status-playable,playable,2020-04-02 23:10:07.000 +"Super Meat Boy Forever",01009C200D60E000,gpu;status-boots,boots,2021-04-26 14:25:39.000 +"Super Mega Space Blaster Special Turbo",,online;status-playable,playable,2020-08-06 12:13:25.000 +"Super Monkey Ball Banana Rumble",010031F019294000,status-playable,playable,2024-06-28 10:39:18.000 +"Super Monkey Ball: Banana Blitz HD",0100B2A00E1E0000,status-playable;online-broken,playable,2022-09-16 13:16:25.000 +"Super Mutant Alien Assault",,status-playable,playable,2020-06-07 23:32:45.000 +"Super Neptunia RPG",01004D600AC14000,status-playable;nvdec,playable,2022-08-17 16:38:52.000 +"Super Nintendo Entertainment System - Nintendo Switch Online",,status-playable,playable,2021-01-05 00:29:48.000 +"Super One More Jump",0100284007D6C000,status-playable,playable,2022-08-17 16:47:47.000 +"Super Punch Patrol",01001F90122B2000,status-playable,playable,2024-07-12 19:49:02.000 +"Super Putty Squad",0100331005E8E000,gpu;status-ingame;32-bit,ingame,2024-04-29 15:51:54.000 +"SUPER ROBOT WARS T",,online;status-playable,playable,2021-03-25 11:00:40.000 +"SUPER ROBOT WARS V",,online;status-playable,playable,2020-06-23 12:56:37.000 +"SUPER ROBOT WARS X",,online;status-playable,playable,2020-08-05 19:18:51.000 +"Super Saurio Fly",,nvdec;status-playable,playable,2020-08-06 13:12:14.000 +"Super Skelemania",,status-playable,playable,2020-06-07 22:59:50.000 +"Super Smash Bros. Ultimate",01006A800016E000,gpu;status-ingame;crash;nvdec;ldn-works;intel-vendor-bug,ingame,2024-09-14 23:05:21.000 +"Super Soccer Blast",0100D61012270000,gpu;status-ingame,ingame,2022-02-16 08:39:12.000 +"Super Sportmatchen",0100A9300A4AE000,status-playable,playable,2022-08-19 12:34:40.000 +"Super Street: Racer",0100FB400F54E000,status-playable;UE4,playable,2022-09-16 13:43:14.000 +"Super Tennis Blast - 01000500DB50000",,status-playable,playable,2022-08-19 16:20:48.000 +"Super Toy Cars 2",0100C6800D770000,gpu;regression;status-ingame,ingame,2021-03-02 20:15:15.000 +"Super Volley Blast",010035B00B3F0000,status-playable,playable,2022-08-19 18:14:40.000 +"Superbeat: Xonic EX",0100FF60051E2000,status-ingame;crash;nvdec,ingame,2022-08-19 18:54:40.000 +"SuperEpic: The Entertainment War",0100630010252000,status-playable,playable,2022-10-13 23:02:48.000 +"Superhot",01001A500E8B4000,status-playable,playable,2021-05-05 19:51:30.000 +"Superliminal",,status-playable,playable,2020-09-03 13:20:50.000 +"Supermarket Shriek",0100C01012654000,status-playable,playable,2022-10-13 23:19:20.000 +"Supraland",0100A6E01201C000,status-playable;nvdec;UE4;opengl-backend-bug,playable,2022-10-14 09:49:11.000 +"Survive! Mr. Cube",010029A00AEB0000,status-playable,playable,2022-10-20 14:44:47.000 +"SUSHI REVERSI",01005AB01119C000,status-playable,playable,2021-06-11 19:26:58.000 +"Sushi Striker: The Way of Sushido",,nvdec;status-playable,playable,2020-06-26 20:49:11.000 +"Sweet Witches",0100D6D00EC2C000,status-playable;nvdec,playable,2022-10-20 14:56:37.000 +"Swimsanity!",010049D00C8B0000,status-menus;online,menus,2021-11-26 14:27:16.000 +"SWORD ART ONLINE: FATAL BULLET COMPLETE EDITION",01005DF00DC26000,UE4;gpu;online;status-ingame,ingame,2021-06-09 16:58:50.000 +"SWORD ART ONLINE: Hollow Realization Deluxe Edition",01001B600D1D6000,status-playable;nvdec,playable,2022-08-19 19:19:15.000 +"Sword of the Guardian",,status-playable,playable,2020-07-16 12:24:39.000 +"Sword of the Necromancer",0100E4701355C000,status-ingame;crash,ingame,2022-12-10 01:28:39.000 +"Syberia 1 & 2",01004BB00421E000,status-playable,playable,2021-12-24 12:06:25.000 +"Syberia 2",010028C003FD6000,gpu;status-ingame,ingame,2022-08-24 12:43:03.000 +"Syberia 3",0100CBE004E6C000,nvdec;status-playable,playable,2021-01-25 16:15:12.000 +"Sydney Hunter and the Curse of the Mayan",,status-playable,playable,2020-06-15 12:15:57.000 +"SYNAPTIC DRIVE",,online;status-playable,playable,2020-09-07 13:44:05.000 +"Synergia",01009E700F448000,status-playable,playable,2021-04-06 17:58:04.000 +"SYNTHETIK: Ultimate",01009BF00E7D2000,gpu;status-ingame;crash,ingame,2022-08-30 03:19:25.000 +"Table Top Racing World Tour Nitro Edition",,status-playable,playable,2020-04-05 23:21:30.000 +"Tactical Mind",01000F20083A8000,status-playable,playable,2021-01-25 18:05:00.000 +"Tactical Mind 2",,status-playable,playable,2020-07-01 23:11:07.000 +"Tactics Ogre Reborn",0100E12013C1A000,status-playable;vulkan-backend-bug,playable,2024-04-09 06:21:35.000 +"Tactics V: ""Obsidian Brigade",01007C7006AEE000,status-playable,playable,2021-02-28 15:09:42.000 +"Taiko no Tatsujin Rhythmic Adventure Pack",,status-playable,playable,2020-12-03 07:28:26.000 +"Taiko no Tatsujin: Drum 'n' Fun!",01002C000B552000,status-playable;online-broken;ldn-broken,playable,2023-05-20 15:10:12.000 +"Taiko no Tatsujin: Rhythm Festival",0100BCA0135A0000,status-playable,playable,2023-11-13 13:16:34.000 +"Taiko Risshiden V DX",0100346017304000,status-nothing;crash,nothing,2022-06-06 16:25:31.000 +"Taimumari: Complete Edition",010040A00EA26000,status-playable,playable,2022-12-06 13:34:49.000 +"Tales from the Borderlands",0100F0C011A68000,status-playable;nvdec,playable,2022-10-25 18:44:14.000 +"Tales of the Tiny Planet",0100408007078000,status-playable,playable,2021-01-25 15:47:41.000 +"Tales of Vesperia: Definitive Edition",01002C0008E52000,status-playable,playable,2024-09-28 03:20:47.000 +"Tamashii",010012800EE3E000,status-playable,playable,2021-06-10 15:26:20.000 +"Tamiku",010008A0128C4000,gpu;status-ingame,ingame,2021-06-15 20:06:55.000 +"Tangledeep",,crash;status-boots,boots,2021-01-05 04:08:41.000 +"TaniNani",01007DB010D2C000,crash;kernel;status-nothing,nothing,2021-04-08 03:06:44.000 +"Tank Mechanic Simulator",,status-playable,playable,2020-12-11 15:10:45.000 +"Tanuki Justice",01007A601318C000,status-playable;opengl,playable,2023-02-21 18:28:10.000 +"Tanzia",01004DF007564000,status-playable,playable,2021-06-07 11:10:25.000 +"Task Force Kampas",,status-playable,playable,2020-11-30 14:44:15.000 +"Taxi Chaos",0100B76011DAA000,slow;status-playable;online-broken;UE4,playable,2022-10-25 19:13:00.000 +"Tcheco in the Castle of Lucio",,status-playable,playable,2020-06-27 13:35:43.000 +"Team Sonic Racing",010092B0091D0000,status-playable;online-broken;ldn-works,playable,2024-02-05 15:05:27.000 +"Teenage Mutant Ninja Turtles: Shredder's Revenge",0100FE701475A000,deadlock;status-boots;crash,boots,2024-09-28 09:31:39.000 +"Teenage Mutant Ninja Turtles: Splintered Fate",01005CF01E784000,status-playable,playable,2024-08-03 13:50:42.000 +"Teenage Mutant Ninja Turtles: The Cowabunga Collection",0100FDB0154E4000,status-playable,playable,2024-01-22 19:39:04.000 +"Telling Lies",,status-playable,playable,2020-10-23 21:14:51.000 +"Temtem",0100C8B012DEA000,status-menus;online-broken,menus,2022-12-17 17:36:11.000 +"TENGAI for Nintendo Switch",,32-bit;status-playable,playable,2020-11-25 19:52:26.000 +"Tennis",,status-playable,playable,2020-06-01 20:50:36.000 +"Tennis in the Face",01002970080AA000,status-playable,playable,2022-08-22 14:10:54.000 +"Tennis World Tour",0100092006814000,status-playable;online-broken,playable,2022-08-22 14:27:10.000 +"Tennis World Tour 2",0100950012F66000,status-playable;online-broken,playable,2022-10-14 10:43:16.000 +"Terraria",0100E46006708000,status-playable;online-broken,playable,2022-09-12 16:14:57.000 +"TERROR SQUID",010070C00FB56000,status-playable;online-broken,playable,2023-10-30 22:29:29.000 +"TERRORHYTHM (TRRT)",010043700EB68000,status-playable,playable,2021-02-27 13:18:14.000 +"Tesla vs Lovecraft",0100FBC007EAE000,status-playable,playable,2023-11-21 06:19:36.000 +"Teslagrad",01005C8005F34000,status-playable,playable,2021-02-23 14:41:02.000 +"Tested on Humans: Escape Room",01006F701507A000,status-playable,playable,2022-11-12 14:42:52.000 +"Testra's Escape",,status-playable,playable,2020-06-03 18:21:14.000 +"TETRA for Nintendo Switch",,status-playable,playable,2020-06-26 20:49:55.000 +"TETRIS 99",010040600C5CE000,gpu;status-ingame;online-broken;ldn-untested,ingame,2024-05-02 16:36:41.000 +"Tetsumo Party",,status-playable,playable,2020-06-09 22:39:55.000 +"The Adventure Pals",01008ED0087A4000,status-playable,playable,2022-08-22 14:48:52.000 +"The Adventures of 00 Dilly",,status-playable,playable,2020-12-30 19:32:29.000 +"The Adventures of Elena Temple",,status-playable,playable,2020-06-03 23:15:35.000 +"The Alliance Alive HD Remastered",010045A00E038000,nvdec;status-playable,playable,2021-03-07 15:43:45.000 +"The Almost Gone",,status-playable,playable,2020-07-05 12:33:07.000 +"The Bard's Tale ARPG: Remastered and Resnarkled",0100CD500DDAE000,gpu;status-ingame;nvdec;online-working,ingame,2024-07-18 12:52:01.000 +"The Battle Cats Unite!",01001E50141BC000,deadlock;status-ingame,ingame,2021-12-14 21:38:34.000 +"The Big Journey",010089600E66A000,status-playable,playable,2022-09-16 14:03:08.000 +"The Binding of Isaac: Afterbirth+",010021C000B6A000,status-playable,playable,2021-04-26 14:11:56.000 +"The Bluecoats: North & South",,nvdec;status-playable,playable,2020-12-10 21:22:29.000 +"The Book of Unwritten Tales 2",010062500BFC0000,status-playable,playable,2021-06-09 14:42:53.000 +"The Bridge",,status-playable,playable,2020-06-03 13:53:26.000 +"The Bug Butcher",,status-playable,playable,2020-06-03 12:02:04.000 +"The Bunker",01001B40086E2000,status-playable;nvdec,playable,2022-09-16 14:24:05.000 +"The Caligula Effect: Overdose",,UE4;gpu;status-ingame,ingame,2021-01-04 11:07:50.000 +"The Childs Sight",010066800E9F8000,status-playable,playable,2021-06-11 19:04:56.000 +"The Coma 2: Vicious Sisters",,gpu;status-ingame,ingame,2020-06-20 12:51:51.000 +"The Coma: Recut",,status-playable,playable,2020-06-03 15:11:23.000 +"The Complex",01004170113D4000,status-playable;nvdec,playable,2022-09-28 14:35:41.000 +"The Copper Canyon Dixie Dash",01000F20102AC000,status-playable;UE4,playable,2022-09-29 11:42:29.000 +"The Count Lucanor",01000850037C0000,status-playable;nvdec,playable,2022-08-22 15:26:37.000 +"The Cruel King and the Great Hero",0100EBA01548E000,gpu;services;status-ingame,ingame,2022-12-02 07:02:08.000 +"The Dark Crystal",,status-playable,playable,2020-08-11 13:43:41.000 +"The Darkside Detective",,status-playable,playable,2020-06-03 22:16:18.000 +"The Elder Scrolls V: Skyrim",01000A10041EA000,gpu;status-ingame;crash,ingame,2024-07-14 03:21:31.000 +"The End is Nigh",,status-playable,playable,2020-06-01 11:26:45.000 +"The Escapists 2",,nvdec;status-playable,playable,2020-09-24 12:31:31.000 +"The Escapists: Complete Edition",01001B700BA7C000,status-playable,playable,2021-02-24 17:50:31.000 +"The Executioner",0100C2E0129A6000,nvdec;status-playable,playable,2021-01-23 00:31:28.000 +"The Experiment: Escape Room",01006050114D4000,gpu;status-ingame,ingame,2022-09-30 13:20:35.000 +"The Eyes of Ara",0100B5900DFB2000,status-playable,playable,2022-09-16 14:44:06.000 +"The Fall",,gpu;status-ingame,ingame,2020-05-31 23:31:16.000 +"The Fall Part 2: Unbound",,status-playable,playable,2021-11-06 02:18:08.000 +"The Final Station",0100CDC00789E000,status-playable;nvdec,playable,2022-08-22 15:54:39.000 +"The First Tree",010098800A1E4000,status-playable,playable,2021-02-24 15:51:05.000 +"The Flame in the Flood: Complete Edition",0100C38004DCC000,gpu;status-ingame;nvdec;UE4,ingame,2022-08-22 16:23:49.000 +"The Forbidden Arts - 01007700D4AC000",,status-playable,playable,2021-01-26 16:26:24.000 +"The friends of Ringo Ishikawa",010030700CBBC000,status-playable,playable,2022-08-22 16:33:17.000 +"The Gardener and the Wild Vines",01006350148DA000,gpu;status-ingame,ingame,2024-04-29 16:32:10.000 +"The Gardens Between",0100B13007A6A000,status-playable,playable,2021-01-29 16:16:53.000 +"The Great Ace Attorney Chronicles",010036E00FB20000,status-playable,playable,2023-06-22 21:26:29.000 +"The Great Perhaps",,status-playable,playable,2020-09-02 15:57:04.000 +"THE GRISAIA TRILOGY",01003b300e4aa000,status-playable,playable,2021-01-31 15:53:59.000 +"The Hong Kong Massacre",,crash;status-ingame,ingame,2021-01-21 12:06:56.000 +"The House of Da Vinci",,status-playable,playable,2021-01-05 14:17:19.000 +"The House of Da Vinci 2",,status-playable,playable,2020-10-23 20:47:17.000 +"The Infectious Madness of Doctor Dekker",01008940086E0000,status-playable;nvdec,playable,2022-08-22 16:45:01.000 +"The Inner World",,nvdec;status-playable,playable,2020-06-03 21:22:29.000 +"The Inner World - The Last Wind Monk",,nvdec;status-playable,playable,2020-11-16 13:09:40.000 +"The Jackbox Party Pack",0100AE5003EE6000,status-playable;online-working,playable,2023-05-28 09:28:40.000 +"The Jackbox Party Pack 2",010015D003EE4000,status-playable;online-working,playable,2022-08-22 18:23:40.000 +"The Jackbox Party Pack 3",0100CC80013D6000,slow;status-playable;online-working,playable,2022-08-22 18:41:06.000 +"The Jackbox Party Pack 4",0100E1F003EE8000,status-playable;online-working,playable,2022-08-22 18:56:34.000 +"The Journey Down: Chapter One",010052C00B184000,nvdec;status-playable,playable,2021-02-24 13:32:41.000 +"The Journey Down: Chapter Three",01006BC00B188000,nvdec;status-playable,playable,2021-02-24 13:45:27.000 +"The Journey Down: Chapter Two",,nvdec;status-playable,playable,2021-02-24 13:32:13.000 +"The King's Bird",010020500BD98000,status-playable,playable,2022-08-22 19:07:46.000 +"The Knight & the Dragon",010031B00DB34000,gpu;status-ingame,ingame,2023-08-14 10:31:43.000 +"The Language of Love",,Needs Update;crash;status-nothing,nothing,2020-12-03 17:54:00.000 +"The Lara Croft Collection",010079C017F5E000,services-horizon;deadlock;status-nothing,nothing,2024-07-12 22:45:51.000 +"The Last Campfire",0100449011506000,status-playable,playable,2022-10-20 16:44:19.000 +"The Last Dead End",0100AAD011592000,gpu;status-ingame;UE4,ingame,2022-10-20 16:59:44.000 +"THE LAST REMNANT Remastered",0100AC800D022000,status-playable;nvdec;UE4,playable,2023-02-09 17:24:44.000 +"The Legend of Dark Witch",,status-playable,playable,2020-07-12 15:18:33.000 +"The Legend of Heroes: Trails from Zero",01001920156C2000,gpu;status-ingame;mac-bug,ingame,2024-09-14 21:41:41.000 +"The Legend of Heroes: Trails of Cold Steel III",,status-playable,playable,2020-12-16 10:59:18.000 +"The Legend of Heroes: Trails of Cold Steel III Demo",01009B101044C000,demo;nvdec;status-playable,playable,2021-04-23 01:07:32.000 +"The Legend of Heroes: Trails of Cold Steel IV",0100D3C010DE8000,nvdec;status-playable,playable,2021-04-23 14:01:05.000 +"THE LEGEND OF HEROES: ZERO NO KISEKI KAI [英雄傳說 零之軌跡:改]",01005E5013862000,status-nothing;crash,nothing,2021-09-30 14:41:07.000 +"The Legend of Zelda Echoes of Wisdom",01008CF01BAAC000,status-playable;nvdec;ASTC;intel-vendor-bug,playable,2024-10-01 14:11:01.000 +"The Legend of Zelda: Breath of the Wild",01007EF00011E000,gpu;status-ingame;amd-vendor-bug;mac-bug,ingame,2024-09-23 19:35:46.000 +"The Legend of Zelda: Breath of the Wild Demo",0100509005AF2000,status-ingame;demo,ingame,2022-12-24 05:02:58.000 +"The Legend of Zelda: Link's Awakening",01006BB00C6F0000,gpu;status-ingame;nvdec;mac-bug,ingame,2023-08-09 17:37:40.000 +"The Legend of Zelda: Skyward Sword HD",01002DA013484000,gpu;status-ingame,ingame,2024-06-14 16:48:29.000 +"The Legend of Zelda: Tears of the Kingdom",0100F2C0115B6000,gpu;status-ingame;amd-vendor-bug;intel-vendor-bug;mac-bug,ingame,2024-08-24 12:38:30.000 +"The LEGO Movie 2 - Videogame",0100A4400BE74000,status-playable,playable,2023-03-01 11:23:37.000 +"The LEGO NINJAGO Movie Video Game",01007FC00206E000,status-nothing;crash,nothing,2022-08-22 19:12:53.000 +"The Liar Princess and the Blind Prince",010064B00B95C000,audio;slow;status-playable,playable,2020-06-08 21:23:28.000 +"The Lion's Song",0100735004898000,status-playable,playable,2021-06-09 15:07:16.000 +"The Little Acre",0100A5000D590000,nvdec;status-playable,playable,2021-03-02 20:22:27.000 +"The Long Dark",01007A700A87C000,status-playable,playable,2021-02-21 14:19:52.000 +"The Long Reach",010052B003A38000,nvdec;status-playable,playable,2021-02-24 14:09:48.000 +"The Long Return",,slow;status-playable,playable,2020-12-10 21:05:10.000 +"The Longest Five Minutes",0100CE1004E72000,gpu;status-boots,boots,2023-02-19 18:33:11.000 +"The Longing",0100F3D0122C2000,gpu;status-ingame,ingame,2022-11-12 15:00:58.000 +"The Lord of the Rings: Adventure Card Game",010085A00C5E8000,status-menus;online-broken,menus,2022-09-16 15:19:32.000 +"The Lost Child",01008A000A404000,nvdec;status-playable,playable,2021-02-23 15:44:20.000 +"The Low Road",0100BAB00A116000,status-playable,playable,2021-02-26 13:23:22.000 +"The Mahjong",,Needs Update;crash;services;status-nothing,nothing,2021-04-01 22:06:22.000 +"The Messenger",,status-playable,playable,2020-03-22 13:51:37.000 +"The Midnight Sanctuary",0100DEC00B2BC000,status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-10-03 17:17:32.000 +"The MISSING: J.J. Macfield and the Island of Memories",0100F1B00B456000,status-playable,playable,2022-08-22 19:36:18.000 +"The Mooseman",010033300AC1A000,status-playable,playable,2021-02-24 12:58:57.000 +"The movie The Quintessential Bride -Five Memories Spent with You-",01005E9016BDE000,status-playable,playable,2023-12-14 14:43:43.000 +"The Mummy Demastered",0100496004194000,status-playable,playable,2021-02-23 13:11:27.000 +"The Mystery of the Hudson Case",,status-playable,playable,2020-06-01 11:03:36.000 +"The Next Penelope",01000CF0084BC000,status-playable,playable,2021-01-29 16:26:11.000 +"THE NINJA SAVIORS Return of the Warriors",01001FB00E386000,online;status-playable,playable,2021-03-25 23:48:07.000 +"The Oregon Trail",0100B080184BC000,gpu;status-ingame,ingame,2022-11-25 16:11:49.000 +"The Otterman Empire",0100B0101265C000,UE4;gpu;status-ingame,ingame,2021-06-17 12:27:15.000 +"The Outbound Ghost",01000BC01801A000,status-nothing,nothing,2024-03-02 17:10:58.000 +"The Outer Worlds",0100626011656000,gpu;status-ingame;nvdec;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-10-03 17:55:32.000 +"The Park",,UE4;crash;gpu;status-ingame,ingame,2020-12-18 12:50:07.000 +"The Persistence",010050101127C000,nvdec;status-playable,playable,2021-06-06 19:15:40.000 +"The Pinball Arcade",0100CD300880E000,status-playable;online-broken,playable,2022-08-22 19:49:46.000 +"The Plucky Squire",01006BD018B54000,status-ingame;crash,ingame,2024-09-27 22:32:33.000 +"The Princess Guide",0100E6A00B960000,status-playable,playable,2021-02-24 14:23:34.000 +"The Raven Remastered",010058A00BF1C000,status-playable;nvdec,playable,2022-08-22 20:02:47.000 +"The Red Strings Club",,status-playable,playable,2020-06-01 10:51:18.000 +"The Room",010079400BEE0000,status-playable,playable,2021-04-14 18:57:05.000 +"The Ryuo's Work is Never Done!",010033100EE12000,status-playable,playable,2022-03-29 00:35:37.000 +"The Savior's Gang",01002BA00C7CE000,gpu;status-ingame;nvdec;UE4,ingame,2022-09-21 12:37:48.000 +"The Settlers: New Allies",0100F3200E7CA000,deadlock;status-nothing,nothing,2023-10-25 00:18:05.000 +"The Sexy Brutale",,status-playable,playable,2021-01-06 17:48:28.000 +"The Shapeshifting Detective",,nvdec;status-playable,playable,2021-01-10 13:10:49.000 +"The Sinking City",010028D00BA1A000,status-playable;nvdec;UE4,playable,2022-09-12 16:41:55.000 +"The Spectrum Retreat",010041C00A68C000,status-playable,playable,2022-10-03 18:52:40.000 +"The Stanley Parable: Ultra Deluxe",010029300E5C4000,gpu;status-ingame,ingame,2024-07-12 23:18:26.000 +"The Station",010007F00AF56000,status-playable,playable,2022-09-28 18:15:27.000 +"the StoryTale",0100858010DC4000,status-playable,playable,2022-09-03 13:00:25.000 +"The Stretchers",0100AA400A238000,status-playable;nvdec;UE4,playable,2022-09-16 15:40:58.000 +"The Survivalists",,status-playable,playable,2020-10-27 15:51:13.000 +"The Swindle",010040D00B7CE000,status-playable;nvdec,playable,2022-08-22 20:53:52.000 +"The Swords of Ditto",,slow;status-ingame,ingame,2020-12-06 00:13:12.000 +"The Tiny Bang Story",01009B300D76A000,status-playable,playable,2021-03-05 15:39:05.000 +"The Touryst",0100C3300D8C4000,status-ingame;crash,ingame,2023-08-22 01:32:38.000 +"The Tower of Beatrice",010047300EBA6000,status-playable,playable,2022-09-12 16:51:42.000 +"The Town of Light",010058000A576000,gpu;status-playable,playable,2022-09-21 12:51:34.000 +"The Trail: Frontier Challenge",0100B0E0086F6000,slow;status-playable,playable,2022-08-23 15:10:51.000 +"The Turing Test",0100EA100F516000,status-playable;nvdec,playable,2022-09-21 13:24:07.000 +"The Unicorn Princess",010064E00ECBC000,status-playable,playable,2022-09-16 16:20:56.000 +"The Vanishing of Ethan Carter",0100BCF00E970000,UE4;status-playable,playable,2021-06-09 17:14:47.000 +"The VideoKid",,nvdec;status-playable,playable,2021-01-06 09:28:24.000 +"The Voice",,services;status-menus,menus,2020-07-28 20:48:49.000 +"The Walking Dead",010029200B6AA000,status-playable,playable,2021-06-04 13:10:56.000 +"The Walking Dead: A New Frontier",010056E00B4F4000,status-playable,playable,2022-09-21 13:40:48.000 +"The Walking Dead: Season Two",,status-playable,playable,2020-08-09 12:57:06.000 +"The Walking Dead: The Final Season",010060F00AA70000,status-playable;online-broken,playable,2022-08-23 17:22:32.000 +"The Wanderer: Frankenstein's Creature",,status-playable,playable,2020-07-11 12:49:51.000 +"The Wardrobe: Even Better Edition",01008B200FC6C000,status-playable,playable,2022-09-16 19:14:55.000 +"The Witcher 3: Wild Hunt",01003D100E9C6000,status-playable;nvdec;vulkan-backend-bug;amd-vendor-bug,playable,2024-02-22 12:21:51.000 +"The Wonderful 101: Remastered",0100B1300FF08000,slow;status-playable;nvdec,playable,2022-09-30 13:49:28.000 +"The World Ends With You -Final Remix-",0100C1500B82E000,status-playable;ldn-untested,playable,2022-07-09 01:11:21.000 +"The World Next Door",0100E6200D56E000,status-playable,playable,2022-09-21 14:15:23.000 +"Thea: The Awakening",,status-playable,playable,2021-01-18 15:08:47.000 +"THEATRHYTHM FINAL BAR LINE",010024201834A000,status-playable,playable,2023-02-19 19:58:57.000 +"THEATRHYTHM FINAL BAR LINE",010081B01777C000,status-ingame;Incomplete,ingame,2024-08-05 14:24:55.000 +"They Bleed Pixels",01001C2010D08000,gpu;status-ingame,ingame,2024-08-09 05:52:18.000 +"They Came From the Sky",,status-playable,playable,2020-06-12 16:38:19.000 +"Thief of Thieves",0100CE700F62A000,status-nothing;crash;loader-allocator,nothing,2021-11-03 07:16:30.000 +"Thief Simulator",0100CE400E34E000,status-playable,playable,2023-04-22 04:39:11.000 +"Thimbleweed Park",01009BD003B36000,status-playable,playable,2022-08-24 11:15:31.000 +"Think of the Children",0100F2300A5DA000,deadlock;status-menus,menus,2021-11-23 09:04:45.000 +"This Is the Police",0100066004D68000,status-playable,playable,2022-08-24 11:37:05.000 +"This Is the Police 2",01004C100A04C000,status-playable,playable,2022-08-24 11:49:17.000 +"This Strange Realm of Mine",,status-playable,playable,2020-08-28 12:07:24.000 +"This War of Mine: Complete Edition",0100A8700BC2A000,gpu;status-ingame;32-bit;nvdec,ingame,2022-08-24 12:00:44.000 +"THOTH",,status-playable,playable,2020-08-05 18:35:28.000 +"Thronebreaker: The Witcher Tales",0100E910103B4000,nvdec;status-playable,playable,2021-06-03 16:40:15.000 +"Thumper",01006F6002840000,gpu;status-ingame,ingame,2024-08-12 02:41:07.000 +"Thy Sword",01000AC011588000,status-ingame;crash,ingame,2022-09-30 16:43:14.000 +"Tick Tock: A Tale for Two",,status-menus,menus,2020-07-14 14:49:38.000 +"Tied Together",0100B6D00C2DE000,nvdec;status-playable,playable,2021-04-10 14:03:46.000 +"Timber Tennis Versus",,online;status-playable,playable,2020-10-03 17:07:15.000 +"Time Carnage",01004C500B698000,status-playable,playable,2021-06-16 17:57:28.000 +"Time Recoil",0100F770045CA000,status-playable,playable,2022-08-24 12:44:03.000 +"Timespinner",0100DD300CF3A000,gpu;status-ingame,ingame,2022-08-09 09:39:11.000 +"Timothy and the Mysterious Forest",0100393013A10000,gpu;slow;status-ingame,ingame,2021-06-02 00:42:11.000 +"Tin & Kuna",,status-playable,playable,2020-11-17 12:16:12.000 +"Tiny Gladiators",,status-playable,playable,2020-12-14 00:09:43.000 +"Tiny Hands Adventure",010061A00AE64000,status-playable,playable,2022-08-24 16:07:48.000 +"TINY METAL",010074800741A000,UE4;gpu;nvdec;status-ingame,ingame,2021-03-05 17:11:57.000 +"Tiny Racer",01005D0011A40000,status-playable,playable,2022-10-07 11:13:03.000 +"Tiny Thor",010002401AE94000,gpu;status-ingame,ingame,2024-07-26 08:37:35.000 +"Tinykin",0100A73016576000,gpu;status-ingame,ingame,2023-06-18 12:12:24.000 +"Titan Glory",0100FE801185E000,status-boots,boots,2022-10-07 11:36:40.000 +"Titan Quest",0100605008268000,status-playable;nvdec;online-broken,playable,2022-08-19 21:54:15.000 +"Titans Pinball",,slow;status-playable,playable,2020-06-09 16:53:52.000 +"Tlicolity Eyes - twinkle showtime -",010019500DB1E000,gpu;status-boots,boots,2021-05-29 19:43:44.000 +"To the Moon",,status-playable,playable,2021-03-20 15:33:38.000 +"Toast Time: Smash Up!",,crash;services;status-menus,menus,2020-04-03 12:26:59.000 +"Toby: The Secret Mine",,nvdec;status-playable,playable,2021-01-06 09:22:33.000 +"ToeJam & Earl: Back in the Groove",,status-playable,playable,2021-01-06 22:56:58.000 +"TOHU",0100B5E011920000,slow;status-playable,playable,2021-02-08 15:40:44.000 +"Toki",,nvdec;status-playable,playable,2021-01-06 19:59:23.000 +"TOKYO DARK - REMEMBRANCE -",01003E500F962000,nvdec;status-playable,playable,2021-06-10 20:09:49.000 +"Tokyo Mirage Sessions #FE Encore",0100A9400C9C2000,32-bit;status-playable;nvdec,playable,2022-07-07 09:41:07.000 +"Tokyo School Life",0100E2E00CB14000,status-playable,playable,2022-09-16 20:25:54.000 +"Tomb Raider I-III Remastered",010024601BB16000,gpu;status-ingame;opengl,ingame,2024-09-27 12:32:04.000 +"Tomba! Special Edition",0100D7F01E49C000,services-horizon;status-nothing,nothing,2024-09-15 21:59:54.000 +"Tonight we Riot",0100D400100F8000,status-playable,playable,2021-02-26 15:55:09.000 +"TONY HAWK'S™ PRO SKATER™ 1 + 2",0100CC00102B4000,gpu;status-ingame;Needs Update,ingame,2024-09-24 08:18:14.000 +"Tools Up!",,crash;status-ingame,ingame,2020-07-21 12:58:17.000 +"Toon War",01009EA00E2B8000,status-playable,playable,2021-06-11 16:41:53.000 +"Torchlight 2",,status-playable,playable,2020-07-27 14:18:37.000 +"Torchlight III",010075400DDB8000,status-playable;nvdec;online-broken;UE4,playable,2022-10-14 22:20:17.000 +"TORICKY-S",01007AF011732000,deadlock;status-menus,menus,2021-11-25 08:53:36.000 +"Torn Tales - Rebound Edition",,status-playable,playable,2020-11-01 14:11:59.000 +"Total Arcade Racing",0100A64010D48000,status-playable,playable,2022-11-12 15:12:48.000 +"Totally Reliable Delivery Service",0100512010728000,status-playable;online-broken,playable,2024-09-27 19:32:22.000 +"Touhou Genso Wanderer RELOADED",01004E900B082000,gpu;status-ingame;nvdec,ingame,2022-08-25 11:57:36.000 +"Touhou Kobuto V: Burst Battle",,status-playable,playable,2021-01-11 15:28:58.000 +"Touhou Spell Bubble",,status-playable,playable,2020-10-18 11:43:43.000 +"Tower of Babel",,status-playable,playable,2021-01-06 17:05:15.000 +"Tower of Time",,gpu;nvdec;status-ingame,ingame,2020-07-03 11:11:12.000 +"TowerFall",,status-playable,playable,2020-05-16 18:58:07.000 +"Towertale",,status-playable,playable,2020-10-15 13:56:58.000 +"Townsmen - A Kingdom Rebuilt",010049E00BA34000,status-playable;nvdec,playable,2022-10-14 22:48:59.000 +"Toy Stunt Bike: Tiptop's Trials",01009FF00A160000,UE4;status-playable,playable,2021-04-10 13:56:34.000 +"Tracks - Toybox Edition",0100192010F5A000,UE4;crash;status-nothing,nothing,2021-02-08 15:19:18.000 +"Trailblazers",0100BCA00843A000,status-playable,playable,2021-03-02 20:40:49.000 +"Transcripted",010009F004E66000,status-playable,playable,2022-08-25 12:13:11.000 +"TRANSFORMERS: BATTLEGROUNDS",01005E500E528000,online;status-playable,playable,2021-06-17 18:08:19.000 +"Transistor",,status-playable,playable,2020-10-22 11:28:02.000 +"Travel Mosaics 2: Roman Holiday",0100A8D010BFA000,status-playable,playable,2021-05-26 12:33:16.000 +"Travel Mosaics 3: Tokyo Animated",0100102010BFC000,status-playable,playable,2021-05-26 12:06:27.000 +"Travel Mosaics 4: Adventures in Rio",010096D010BFE000,status-playable,playable,2021-05-26 11:54:58.000 +"Travel Mosaics 5: Waltzing Vienna",01004C4010C00000,status-playable,playable,2021-05-26 11:49:35.000 +"Travel Mosaics 6: Christmas Around the World",0100D520119D6000,status-playable,playable,2021-05-26 00:52:47.000 +"Travel Mosaics 7: Fantastic Berlin -",,status-playable,playable,2021-05-22 18:37:34.000 +"Travel Mosaics: A Paris Tour",01007DB00A226000,status-playable,playable,2021-05-26 12:42:26.000 +"Travis Strikes Again: No More Heroes",010011600C946000,status-playable;nvdec;UE4,playable,2022-08-25 12:36:38.000 +"Treadnauts",,status-playable,playable,2021-01-10 14:57:41.000 +"Trials of Mana",0100D7800E9E0000,status-playable;UE4,playable,2022-09-30 21:50:37.000 +"Trials of Mana Demo",0100E1D00FBDE000,status-playable;nvdec;UE4;demo;vulkan-backend-bug,playable,2022-09-26 18:00:02.000 +"Trials Rising",01003E800A102000,status-playable,playable,2024-02-11 01:36:39.000 +"TRIANGLE STRATEGY",0100CC80140F8000,gpu;status-ingame;Needs Update;UE4;vulkan-backend-bug,ingame,2024-09-25 20:48:37.000 +"Trine",0100D9000A930000,ldn-untested;nvdec;status-playable,playable,2021-06-03 11:28:15.000 +"Trine 2",010064E00A932000,nvdec;status-playable,playable,2021-06-03 11:45:20.000 +"Trine 3: The Artifacts of Power",0100DEC00A934000,ldn-untested;online;status-playable,playable,2021-06-03 12:01:24.000 +"Trine 4: The Nightmare Prince",010055E00CA68000,gpu;status-nothing,nothing,2025-01-07 05:47:46.000 +"Trinity Trigger",01002D7010A54000,status-ingame;crash,ingame,2023-03-03 03:09:09.000 +"Trivial Pursuit Live! 2",0100868013FFC000,status-boots,boots,2022-12-19 00:04:33.000 +"Troll and I",0100F78002040000,gpu;nvdec;status-ingame,ingame,2021-06-04 16:58:50.000 +"Trollhunters: Defenders of Arcadia",,gpu;nvdec;status-ingame,ingame,2020-11-30 13:27:09.000 +"Tropico 6",0100FBE0113CC000,status-playable;nvdec;UE4,playable,2022-10-14 23:21:03.000 +"Trouble Witches Final! Episode 01: Daughters of Amalgam",0100D06018DCA000,status-playable,playable,2024-04-08 15:08:11.000 +"Troubleshooter",,UE4;crash;status-nothing,nothing,2020-10-04 13:46:50.000 +"Trover Saves the Universe",,UE4;crash;status-nothing,nothing,2020-10-03 10:25:27.000 +"Truberbrook",0100E6300D448000,status-playable,playable,2021-06-04 17:08:00.000 +"Truck & Logistics Simulator",0100F2100AA5C000,status-playable,playable,2021-06-11 13:29:08.000 +"Truck Driver",0100CB50107BA000,status-playable;online-broken,playable,2022-10-20 17:42:33.000 +"True Fear: Forsaken Souls - Part 1",,nvdec;status-playable,playable,2020-12-15 21:39:52.000 +"TT Isle of Man",,nvdec;status-playable,playable,2020-06-22 12:25:13.000 +"TT Isle of Man 2",010000400F582000,gpu;status-ingame;nvdec;online-broken,ingame,2022-09-30 22:13:05.000 +"TTV2",,status-playable,playable,2020-11-27 13:21:36.000 +"Tumblestone",,status-playable,playable,2021-01-07 17:49:20.000 +"Turok",010085500D5F6000,gpu;status-ingame,ingame,2021-06-04 13:16:24.000 +"Turok 2: Seeds of Evil",0100CDC00D8D6000,gpu;status-ingame;vulkan,ingame,2022-09-12 17:50:05.000 +"Turrican Flashback - 01004B0130C8000",,status-playable;audout,playable,2021-08-30 10:07:56.000 +"TurtlePop: Journey to Freedom",,status-playable,playable,2020-06-12 17:45:39.000 +"Twin Robots: Ultimate Edition",0100047009742000,status-playable;nvdec,playable,2022-08-25 14:24:03.000 +"Two Point Hospital",010031200E044000,status-ingame;crash;nvdec,ingame,2022-09-22 11:22:23.000 +"TY the Tasmanian Tiger",,32-bit;crash;nvdec;status-menus,menus,2020-12-17 21:15:00.000 +"Tyd wag vir Niemand",010073A00C4B2000,status-playable,playable,2021-03-02 13:39:53.000 +"Type:Rider",,status-playable,playable,2021-01-06 13:12:55.000 +"UBERMOSH:SANTICIDE",,status-playable,playable,2020-11-27 15:05:01.000 +"Ubongo - Deluxe Edition",,status-playable,playable,2021-02-04 21:15:01.000 +"UglyDolls: An Imperfect Adventure",010079000B56C000,status-playable;nvdec;UE4,playable,2022-08-25 14:42:16.000 +"Ultimate Fishing Simulator",010048901295C000,status-playable,playable,2021-06-16 18:38:23.000 +"Ultimate Racing 2D",,status-playable,playable,2020-08-05 17:27:09.000 +"Ultimate Runner",010045200A1C2000,status-playable,playable,2022-08-29 12:52:40.000 +"Ultimate Ski Jumping 2020",01006B601117E000,online;status-playable,playable,2021-03-02 20:54:11.000 +"Ultra Hat Dimension",01002D4012222000,services;audio;status-menus,menus,2021-11-18 09:05:20.000 +"Ultra Hyperball",,status-playable,playable,2021-01-06 10:09:55.000 +"Ultra Street Fighter II: The Final Challengers",01007330027EE000,status-playable;ldn-untested,playable,2021-11-25 07:54:58.000 +"Umineko no Naku Koro ni Saku - うみねこのなく頃に咲 ~猫箱と夢想の交響曲~",01006A300BA2C000,status-playable;audout,playable,2023-05-04 17:25:23.000 +"Unbox: Newbie's Adventure",0100592005164000,status-playable;UE4,playable,2022-08-29 13:12:56.000 +"Uncanny Valley",01002D900C5E4000,nvdec;status-playable,playable,2021-06-04 13:28:45.000 +"Undead and Beyond",010076F011F54000,status-playable;nvdec,playable,2022-10-04 09:11:18.000 +"Under Leaves",01008F3013E4E000,status-playable,playable,2021-05-22 18:13:58.000 +"Undertale",010080B00AD66000,status-playable,playable,2022-08-31 17:31:46.000 +"Unepic",01008F80049C6000,status-playable,playable,2024-01-15 17:03:00.000 +"UnExplored - Unlocked Edition",,status-playable,playable,2021-01-06 10:02:16.000 +"Unhatched",,status-playable,playable,2020-12-11 12:11:09.000 +"Unicorn Overlord",010069401ADB8000,status-playable,playable,2024-09-27 14:04:32.000 +"Unit 4",,status-playable,playable,2020-12-16 18:54:13.000 +"Unknown Fate",,slow;status-ingame,ingame,2020-10-15 12:27:42.000 +"Unlock the King",,status-playable,playable,2020-09-01 13:58:27.000 +"Unlock the King 2",0100A3E011CB0000,status-playable,playable,2021-06-15 20:43:55.000 +"UNO",01005AA00372A000,status-playable;nvdec;ldn-untested,playable,2022-07-28 14:49:47.000 +"Unravel TWO",0100E5D00CC0C000,status-playable;nvdec,playable,2024-05-23 15:45:05.000 +"Unruly Heroes",,status-playable,playable,2021-01-07 18:09:31.000 +"Unspottable",0100B410138C0000,status-playable,playable,2022-10-25 19:28:49.000 +"Untitled Goose Game",,status-playable,playable,2020-09-26 13:18:06.000 +"Unto The End",0100E49013190000,gpu;status-ingame,ingame,2022-10-21 11:13:29.000 +"Urban Flow",,services;status-playable,playable,2020-07-05 12:51:47.000 +"Urban Street Fighting",010054F014016000,status-playable,playable,2021-02-20 19:16:36.000 +"Urban Trial Playground",01001B10068EC000,UE4;nvdec;online;status-playable,playable,2021-03-25 20:56:51.000 +"Urban Trial Tricky",0100A2500EB92000,status-playable;nvdec;UE4,playable,2022-12-06 13:07:56.000 +"Use Your Words",01007C0003AEC000,status-menus;nvdec;online-broken,menus,2022-08-29 17:22:10.000 +"Uta no Prince-sama Amazing Aria & Sweet Serenade LOVE",0100D4300EBF8000,status-nothing;crash;Needs More Attention;Needs Update,nothing,2022-02-09 08:57:44.000 +"Uta no☆Prince-sama♪ Repeat Love",010024200E00A000,status-playable;nvdec,playable,2022-12-09 09:21:51.000 +"Utopia 9 - A Volatile Vacation",,nvdec;status-playable,playable,2020-12-16 17:06:42.000 +"V-Rally 4",010064400B138000,gpu;nvdec;status-ingame,ingame,2021-06-07 19:37:31.000 +"VA-11 HALL-A",0100A6700D66E000,status-playable,playable,2021-02-26 15:05:34.000 +"Vaccine",,nvdec;status-playable,playable,2021-01-06 01:02:07.000 +"Valfaris",010089700F30C000,status-playable,playable,2022-09-16 21:37:24.000 +"Valkyria Chronicles",0100CAF00B744000,status-ingame;32-bit;crash;nvdec,ingame,2022-11-23 20:03:32.000 +"Valkyria Chronicles 4",01005C600AC68000,audout;nvdec;status-playable,playable,2021-06-03 18:12:25.000 +"Valkyria Chronicles 4 Demo",0100FBD00B91E000,slow;status-ingame;demo,ingame,2022-08-29 20:39:07.000 +"Valley",0100E0E00B108000,status-playable;nvdec,playable,2022-09-28 19:27:58.000 +"Vampire Survivors",010089A0197E4000,status-ingame,ingame,2024-06-17 09:57:38.000 +"Vampyr",01000BD00CE64000,status-playable;nvdec;UE4,playable,2022-09-16 22:15:51.000 +"Vandals",01007C500D650000,status-playable,playable,2021-01-27 21:45:46.000 +"Vaporum",010030F00CA1E000,nvdec;status-playable,playable,2021-05-28 14:25:33.000 +"VARIABLE BARRICADE NS",010045C0109F2000,status-playable;nvdec,playable,2022-02-26 15:50:13.000 +"VASARA Collection",0100FE200AF48000,nvdec;status-playable,playable,2021-02-28 15:26:10.000 +"Vasilis",,status-playable,playable,2020-09-01 15:05:35.000 +"Vegas Party",01009CD003A0A000,status-playable,playable,2021-04-14 19:21:41.000 +"Vektor Wars",010098400E39E000,status-playable;online-broken;vulkan-backend-bug,playable,2022-10-04 09:23:46.000 +"Vengeful Guardian: Moonrider",01003A8018E60000,deadlock;status-boots,boots,2024-03-17 23:35:37.000 +"Venture Kid",010095B00DBC8000,crash;gpu;status-ingame,ingame,2021-04-18 16:33:17.000 +"Vera Blanc: Full Moon",,audio;status-playable,playable,2020-12-17 12:09:30.000 +"Very Very Valet",0100379013A62000,status-playable;nvdec,playable,2022-11-12 15:25:51.000 +"Very Very Valet Demo - 01006C8014DDA000",01006C8014DDA000,status-boots;crash;Needs Update;demo,boots,2022-11-12 15:26:13.000 +"Vesta",010057B00712C000,status-playable;nvdec,playable,2022-08-29 21:03:39.000 +"Victor Vran Overkill Edition",0100E81007A06000,gpu;deadlock;status-ingame;nvdec;opengl,ingame,2022-08-30 11:46:56.000 +"Violett",01005880063AA000,nvdec;status-playable,playable,2021-01-28 13:09:36.000 +"Viviette",010037900CB1C000,status-playable,playable,2021-06-11 15:33:40.000 +"Void Bastards",0100D010113A8000,status-playable,playable,2022-10-15 00:04:19.000 +"void* tRrLM(); //Void Terrarium",0100FF7010E7E000,gpu;status-ingame;Needs Update;regression,ingame,2023-02-10 01:13:25.000 +"void* tRrLM2(); //Void Terrarium 2",010078D0175EE000,status-playable,playable,2023-12-21 11:00:41.000 +"Volgarr the Viking",,status-playable,playable,2020-12-18 15:25:50.000 +"Volta-X",0100A7900E79C000,status-playable;online-broken,playable,2022-10-07 12:20:51.000 +"Vostok, Inc.",01004D8007368000,status-playable,playable,2021-01-27 17:43:59.000 +"Voxel Galaxy",0100B1E0100A4000,status-playable,playable,2022-09-28 22:45:02.000 +"Voxel Pirates",0100AFA011068000,status-playable,playable,2022-09-28 22:55:02.000 +"Voxel Sword",0100BFB00D1F4000,status-playable,playable,2022-08-30 14:57:27.000 +"Vroom in the Night Sky",01004E90028A2000,status-playable;Needs Update;vulkan-backend-bug,playable,2023-02-20 02:32:29.000 +"VSR: Void Space Racing",0100C7C00AE6C000,status-playable,playable,2021-01-27 14:08:59.000 +"VtM Coteries of New York",,status-playable,playable,2020-10-04 14:55:22.000 +"Waifu Uncovered",0100B130119D0000,status-ingame;crash,ingame,2023-02-27 01:17:46.000 +"Wanba Warriors",,status-playable,playable,2020-10-04 17:56:22.000 +"Wanderjahr TryAgainOrWalkAway",,status-playable,playable,2020-12-16 09:46:04.000 +"Wanderlust Travel Stories",0100B27010436000,status-playable,playable,2021-04-07 16:09:12.000 +"Wandersong",0100F8A00853C000,nvdec;status-playable,playable,2021-06-04 15:33:34.000 +"Wanna Survive",0100D67013910000,status-playable,playable,2022-11-12 21:15:43.000 +"War Of Stealth - assassin",01004FA01391A000,status-playable,playable,2021-05-22 17:34:38.000 +"War Tech Fighters",010049500DE56000,status-playable;nvdec,playable,2022-09-16 22:29:31.000 +"War Theatre",010084D00A134000,gpu;status-ingame,ingame,2021-06-07 19:42:45.000 +"War Truck Simulator",0100B6B013B8A000,status-playable,playable,2021-01-31 11:22:54.000 +"War-Torn Dreams",,crash;status-nothing,nothing,2020-10-21 11:36:16.000 +"WARBORN",,status-playable,playable,2020-06-25 12:36:47.000 +"Wardogs: Red's Return",010056901285A000,status-playable,playable,2022-11-13 15:29:01.000 +"WarGroove",01000F0002BB6000,status-playable;online-broken,playable,2022-08-31 10:30:45.000 +"Warhammer 40,000: Mechanicus",0100C6000EEA8000,nvdec;status-playable,playable,2021-06-13 10:46:38.000 +"Warhammer 40,000: Space Wolf",0100E5600D7B2000,status-playable;online-broken,playable,2022-09-20 21:11:20.000 +"Warhammer Age of Sigmar: Storm Ground",010031201307A000,status-playable;nvdec;online-broken;UE4,playable,2022-11-13 15:46:14.000 +"Warhammer Quest 2",,status-playable,playable,2020-08-04 15:28:03.000 +"WarioWare: Get It Together!",0100563010E0C000,gpu;status-ingame;opengl-backend-bug,ingame,2024-04-23 01:04:56.000 +"Warioware: Move IT!",010045B018EC2000,status-playable,playable,2023-11-14 00:23:51.000 +"Warlocks 2: God Slayers",,status-playable,playable,2020-12-16 17:36:50.000 +"Warp Shift",,nvdec;status-playable,playable,2020-12-15 14:48:48.000 +"Warparty",,nvdec;status-playable,playable,2021-01-27 18:26:32.000 +"WarriOrb",010032700EAC4000,UE4;status-playable,playable,2021-06-17 15:45:14.000 +"WARRIORS OROCHI 4 ULTIMATE",0100E8500AD58000,status-playable;nvdec;online-broken,playable,2024-08-07 01:50:37.000 +"Wartile Complete Edition",,UE4;crash;gpu;status-menus,menus,2020-12-11 21:56:10.000 +"Wasteland 2: Director's Cut",010039A00BC64000,nvdec;status-playable,playable,2021-01-27 13:34:11.000 +"Water Balloon Mania",,status-playable,playable,2020-10-23 20:20:59.000 +"Way of the Passive Fist",0100BA200C378000,gpu;status-ingame,ingame,2021-02-26 21:07:06.000 +"We should talk.",,crash;status-nothing,nothing,2020-08-03 12:32:36.000 +"Welcome to Hanwell",,UE4;crash;status-boots,boots,2020-08-03 11:54:57.000 +"Welcome to Primrose Lake",0100D7F010B94000,status-playable,playable,2022-10-21 11:30:57.000 +"Wenjia",,status-playable,playable,2020-06-08 11:38:30.000 +"West of Loathing",010031B00A4E8000,status-playable,playable,2021-01-28 12:35:19.000 +"What Remains of Edith Finch",010038900DFE0000,slow;status-playable;UE4,playable,2022-08-31 19:57:59.000 +"Wheel of Fortune [010033600ADE6000]",010033600ADE6000,status-boots;crash;Needs More Attention;nvdec,boots,2023-11-12 20:29:24.000 +"Wheels of Aurelia",0100DFC00405E000,status-playable,playable,2021-01-27 21:59:25.000 +"Where Angels Cry",010027D011C9C000,gpu;status-ingame;nvdec,ingame,2022-09-30 22:24:47.000 +"Where Are My Friends?",0100FDB0092B4000,status-playable,playable,2022-09-21 14:39:26.000 +"Where the Bees Make Honey",,status-playable,playable,2020-07-15 12:40:49.000 +"Whipsey and the Lost Atlas",,status-playable,playable,2020-06-23 20:24:14.000 +"Whispering Willows",010015A00AF1E000,status-playable;nvdec,playable,2022-09-30 22:33:05.000 +"Who Wants to Be a Millionaire?",,crash;status-nothing,nothing,2020-12-11 20:22:42.000 +"Widget Satchel",0100C7800CA06000,status-playable,playable,2022-09-16 22:41:07.000 +"WILD GUNS Reloaded",0100CFC00A1D8000,status-playable,playable,2021-01-28 12:29:05.000 +"Wilmot's Warehouse",010071F00D65A000,audio;gpu;status-ingame,ingame,2021-06-02 17:24:32.000 +"WINDJAMMERS",,online;status-playable,playable,2020-10-13 11:24:25.000 +"Windscape",010059900BA3C000,status-playable,playable,2022-10-21 11:49:42.000 +"Windstorm",,UE4;gpu;nvdec;status-ingame,ingame,2020-12-22 13:17:48.000 +"Windstorm - Ari's Arrival",0100D6800CEAC000,UE4;status-playable,playable,2021-06-07 19:33:19.000 +"Wing of Darkness - 010035B012F2000",,status-playable;UE4,playable,2022-11-13 16:03:51.000 +"Winter Games 2023",0100A4A015FF0000,deadlock;status-menus,menus,2023-11-07 20:47:36.000 +"Witch On The Holy Night",010012A017F18800,status-playable,playable,2023-03-06 23:28:11.000 +"Witch Spring 3 Re:Fine -The Story of the Marionette Witch Eirudy-",0100454012E32000,status-ingame;crash,ingame,2021-08-08 11:56:18.000 +"Witch Thief",01002FC00C6D0000,status-playable,playable,2021-01-27 18:16:07.000 +"Witch's Garden",010061501904E000,gpu;status-ingame;crash;vulkan-backend-bug;opengl-backend-bug,ingame,2023-01-11 02:11:24.000 +"Witcheye",,status-playable,playable,2020-12-14 22:56:08.000 +"Wizard of Legend",0100522007AAA000,status-playable,playable,2021-06-07 12:20:46.000 +"Wizards of Brandel",,status-nothing,nothing,2020-10-14 15:52:33.000 +"Wizards: Wand of Epicosity",0100C7600E77E000,status-playable,playable,2022-10-07 12:32:06.000 +"Wolfenstein II The New Colossus",01009040091E0000,gpu;status-ingame,ingame,2024-04-05 05:39:46.000 +"Wolfenstein: Youngblood",01003BD00CAAE000,status-boots;online-broken,boots,2024-07-12 23:49:20.000 +"Wonder Blade",,status-playable,playable,2020-12-11 17:55:31.000 +"Wonder Boy Anniversary Collection",0100B49016FF0000,deadlock;status-nothing,nothing,2023-04-20 16:01:48.000 +"Wonder Boy Asha in Monster World [ ワンダーボーイ アーシャ・イン・モンスターワールド ]",0100EB2012E36000,status-nothing;crash,nothing,2021-11-03 08:45:06.000 +"Wonder Boy: The Dragon's Trap",0100A6300150C000,status-playable,playable,2021-06-25 04:53:21.000 +"Wondershot",0100F5D00C812000,status-playable,playable,2022-08-31 21:05:31.000 +"Woodle Tree 2",,gpu;slow;status-ingame,ingame,2020-06-04 18:44:00.000 +"Woodsalt",0100288012966000,status-playable,playable,2021-04-06 17:01:48.000 +"Wordify",,status-playable,playable,2020-10-03 09:01:07.000 +"World Conqueror X",,status-playable,playable,2020-12-22 16:10:29.000 +"World Neverland",01008E9007064000,status-playable,playable,2021-01-28 17:44:23.000 +"World of Final Fantasy Maxima",,status-playable,playable,2020-06-07 13:57:23.000 +"World of Goo",010009E001D90000,gpu;status-boots;32-bit;crash;regression,boots,2024-04-12 05:52:14.000 +"World of Goo 2",010061F01DB7C800,status-boots,boots,2024-08-08 22:52:49.000 +"World Soccer Pinball",,status-playable,playable,2021-01-06 00:37:02.000 +"Worldend Syndrome",,status-playable,playable,2021-01-03 14:16:32.000 +"Worlds of Magic: Planar Conquest",010000301025A000,status-playable,playable,2021-06-12 12:51:28.000 +"Worm Jazz",01009CD012CC0000,gpu;services;status-ingame;UE4;regression,ingame,2021-11-10 10:33:04.000 +"Worms W.M.D",01001AE005166000,gpu;status-boots;crash;nvdec;ldn-untested,boots,2023-09-16 21:42:59.000 +"Worse Than Death",010037500C4DE000,status-playable,playable,2021-06-11 16:05:40.000 +"Woven",01006F100EB16000,nvdec;status-playable,playable,2021-06-02 13:41:08.000 +"WRC 8 FIA World Rally Championship",010087800DCEA000,status-playable;nvdec,playable,2022-09-16 23:03:36.000 +"WRC 9 The Official Game",01001A0011798000,gpu;slow;status-ingame;nvdec,ingame,2022-10-25 19:47:39.000 +"Wreckfest",0100DC0012E48000,status-playable,playable,2023-02-12 16:13:00.000 +"Wreckin' Ball Adventure",0100C5D00EDB8000,status-playable;UE4,playable,2022-09-12 18:56:28.000 +"Wulverblade",010033700418A000,nvdec;status-playable,playable,2021-01-27 22:29:05.000 +"Wunderling",01001C400482C000,audio;status-ingame;crash,ingame,2022-09-10 13:20:12.000 +"Wurroom",,status-playable,playable,2020-10-07 22:46:21.000 +"WWE 2K Battlegrounds",010081700EDF4000,status-playable;nvdec;online-broken;UE4,playable,2022-10-07 12:44:40.000 +"WWE 2K18",010009800203E000,status-playable;nvdec,playable,2023-10-21 17:22:01.000 +"X-Morph: Defense",,status-playable,playable,2020-06-22 11:05:31.000 +"XCOM 2 Collection",0100D0B00FB74000,gpu;status-ingame;crash,ingame,2022-10-04 09:38:30.000 +"XEL",0100CC9015360000,gpu;status-ingame,ingame,2022-10-03 10:19:39.000 +"Xenoblade Chronicles 2",0100E95004038000,deadlock;status-ingame;amd-vendor-bug,ingame,2024-03-28 14:31:41.000 +"Xenoblade Chronicles 2: Torna - The Golden Country",0100C9F009F7A000,slow;status-playable;nvdec,playable,2023-01-28 16:47:28.000 +"Xenoblade Chronicles 3",010074F013262000,gpu;status-ingame;crash;nvdec;vulkan-backend-bug;amd-vendor-bug,ingame,2024-08-06 19:56:44.000 +"Xenoblade Chronicles Definitive Edition",0100FF500E34A000,status-playable;nvdec,playable,2024-05-04 20:12:41.000 +"Xenon Racer",010028600BA16000,status-playable;nvdec;UE4,playable,2022-08-31 22:05:30.000 +"Xenon Valkyrie+",010064200C324000,status-playable,playable,2021-06-07 20:25:53.000 +"Xenoraid",0100928005BD2000,status-playable,playable,2022-09-03 13:01:10.000 +"Xeodrifter",01005B5009364000,status-playable,playable,2022-09-03 13:18:39.000 +"Yaga",01006FB00DB02000,status-playable;nvdec,playable,2022-09-16 23:17:17.000 +"YesterMorrow",,crash;status-ingame,ingame,2020-12-17 17:15:25.000 +"Yet Another Zombie Defense HD",,status-playable,playable,2021-01-06 00:18:39.000 +"YGGDRA UNION We’ll Never Fight Alone",,status-playable,playable,2020-04-03 02:20:47.000 +"YIIK: A Postmodern RPG",0100634008266000,status-playable,playable,2021-01-28 13:38:37.000 +"Yo kai watch 1 for Nintendo Switch",0100C0000CEEA000,gpu;status-ingame;opengl,ingame,2024-05-28 11:11:49.000 +"Yo-Kai Watch 4++",010086C00AF7C000,status-playable,playable,2024-06-18 20:21:44.000 +"Yoku's Island Express",010002D00632E000,status-playable;nvdec,playable,2022-09-03 13:59:02.000 +"Yomawari 3",0100F47016F26000,status-playable,playable,2022-05-10 08:26:51.000 +"Yomawari: The Long Night Collection",010012F00B6F2000,status-playable,playable,2022-09-03 14:36:59.000 +"Yonder: The Cloud Catcher Chronicles",0100CC600ABB2000,status-playable,playable,2021-01-28 14:06:25.000 +"Yono and the Celestial Elephants",0100BE50042F6000,status-playable,playable,2021-01-28 18:23:58.000 +"Yooka-Laylee",0100F110029C8000,status-playable,playable,2021-01-28 14:21:45.000 +"Yooka-Laylee and the Impossible Lair",010022F00DA66000,status-playable,playable,2021-03-05 17:32:21.000 +"Yoshi's Crafted World",01006000040C2000,gpu;status-ingame;audout,ingame,2021-08-30 13:25:51.000 +"Yoshi's Crafted World Demo Version",,gpu;status-boots;status-ingame,boots,2020-12-16 14:57:40.000 +"Yoshiwara Higanbana Kuon no Chigiri",,nvdec;status-playable,playable,2020-10-17 19:14:46.000 +"YouTube",01003A400C3DA800,status-playable,playable,2024-06-08 05:24:10.000 +"Youtubers Life00",00100A7700CCAA40,status-playable;nvdec,playable,2022-09-03 14:56:19.000 +"Ys IX: Monstrum Nox",0100E390124D8000,status-playable,playable,2022-06-12 04:14:42.000 +"Ys Origin",0100F90010882000,status-playable;nvdec,playable,2024-04-17 05:07:33.000 +"Ys VIII: Lacrimosa of Dana",01007F200B0C0000,status-playable;nvdec,playable,2023-08-05 09:26:41.000 +"Yu-Gi-Oh! Legacy of the Duelist: Link Evolution!",010022400BE5A000,status-playable,playable,2024-09-27 21:48:43.000 +"Yu-Gi-Oh! Rush Duel: Dawn of the Battle Royale!! Let's Go! Go Rush!!",01002D60188DE000,status-ingame;crash,ingame,2023-03-17 01:54:01.000 +"YU-NO: A GIRL WHO CHANTS LOVE AT THE BOUND OF THIS WORLD.",010037D00DBDC000,nvdec;status-playable,playable,2021-01-26 17:03:52.000 +"Yumeutsutsu Re:After",0100B56011502000,status-playable,playable,2022-11-20 16:09:06.000 +"Yunohana Spring! - Mellow Times -",,audio;crash;status-menus,menus,2020-09-27 19:27:40.000 +"Yuppie Psycho: Executive Edition",,crash;status-ingame,ingame,2020-12-11 10:37:06.000 +"Yuri",0100FC900963E000,status-playable,playable,2021-06-11 13:08:50.000 +"Zaccaria Pinball",010092400A678000,status-playable;online-broken,playable,2022-09-03 15:44:28.000 +"Zarvot - 0100E7900C40000",,status-playable,playable,2021-01-28 13:51:36.000 +"ZenChess",,status-playable,playable,2020-07-01 22:28:27.000 +"Zenge",,status-playable,playable,2020-10-22 13:23:57.000 +"Zengeon",0100057011E50000,services-horizon;status-boots;crash,boots,2024-04-29 15:43:07.000 +"Zenith",0100AAC00E692000,status-playable,playable,2022-09-17 09:57:02.000 +"ZERO GUNNER 2",,status-playable,playable,2021-01-04 20:17:14.000 +"Zero Strain",01004B001058C000,services;status-menus;UE4,menus,2021-11-10 07:48:32.000 +"Zettai kaikyu gakuen",,gpu;nvdec;status-ingame,ingame,2020-08-25 15:15:54.000 +"Ziggy The Chaser",0100D7B013DD0000,status-playable,playable,2021-02-04 20:34:27.000 +"ZikSquare",010086700EF16000,gpu;status-ingame,ingame,2021-11-06 02:02:48.000 +"Zoids Wild Blast Unleashed",010069C0123D8000,status-playable;nvdec,playable,2022-10-15 11:26:59.000 +"Zombie Army Trilogy",,ldn-untested;online;status-playable,playable,2020-12-16 12:02:28.000 +"Zombie Driver",,nvdec;status-playable,playable,2020-12-14 23:15:10.000 +"ZOMBIE GOLD RUSH",,online;status-playable,playable,2020-09-24 12:56:08.000 +"Zombie's Cool",,status-playable,playable,2020-12-17 12:41:26.000 +"Zombieland: Double Tap - Road Trip0",01000E5800D32C00,status-playable,playable,2022-09-17 10:08:45.000 +"Zombillie",,status-playable,playable,2020-07-23 17:42:23.000 +"Zotrix: Solar Division",01001EE00A6B0000,status-playable,playable,2021-06-07 20:34:05.000 +"この世の果てで恋を唄う少女YU-NO",,audio;status-ingame,ingame,2021-01-22 07:00:16.000 +"スーパーファミコン Nintendo Switch Online",,slow;status-ingame,ingame,2020-03-14 05:48:38.000 +"トラブル・マギア ~訳アリ少女は未来を勝ち取るために異国の魔法学校へ留学します~(Trouble Magia ~Wakeari Shoujo wa Mirai o Kachitoru Tame ni Ikoku no Mahou Gakkou e Ryuugaku Shimasu~)",01000BB01CB8A000,status-nothing,nothing,2024-09-28 07:03:14.000 +"メモリーズオフ - Innocent Fille",010065500B218000,status-playable,playable,2022-12-02 17:36:48.000 +"二ノ国 白き聖灰の女王",010032400E700000,services;status-menus;32-bit,menus,2023-04-16 17:11:06.000 +"初音ミク Project DIVA MEGA39's",0100F3100DA46000,audio;status-playable;loader-allocator,playable,2022-07-29 11:45:52.000 +"御伽活劇 豆狸のバケル ~オラクル祭太郎の祭難!!~ (Otogi Katsugeki Mameda no Bakeru Oracle Saitarou no Sainan!!)",0100BF401AF9C000,slow;status-playable,playable,2023-12-31 14:37:17.000 +"死神と少女/Shinigami to Shoujo",0100AFA01750C000,gpu;status-ingame;Incomplete,ingame,2024-03-22 01:06:45.000 +"燃えよ! 乙女道士 ~華遊恋語~ (Moeyo! Otome Doushi Kayu Koigatari)",01001BA01EBFC000,services-horizon;status-nothing,nothing,2024-09-28 12:22:55.000 +"牧場物語 Welcome!ワンダフルライフ",0100936018EB4000,status-ingame;crash,ingame,2023-04-25 19:43:52.000 +"索尼克:起源 / Sonic Origins",01009FB016286000,status-ingame;crash,ingame,2024-06-02 07:20:15.000 +"超探偵事件簿 レインコード (Master Detective Archives: Rain Code)",0100F4401940A000,status-ingame;crash,ingame,2024-02-12 20:58:31.000 +"超次元ゲイム ネプテューヌ GameMaker R:Evolution",010064801a01c000,status-nothing;crash,nothing,2023-10-30 22:37:40.000 +"逆转检察官1&2 御剑精选集 (Ace Attorney Investigations Collection)",010005501E68C000,status-playable,playable,2024-09-19 16:38:05.000 +"逆转裁判四五六 王泥喜精选集 (Apollo Justice: Ace Attorney Trilogy)",010020D01B890000,status-playable,playable,2024-06-21 21:54:27.000 +"鬼滅之刃:火之神血風譚 / Demon Slayer -Kimetsu no Yaiba- The Hinokami Chronicles",0100309016E7A000,status-playable;UE4,playable,2024-08-08 04:51:49.000 From 1343fabe415742d95fc3142322ed818cf0b56d00 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Wed, 8 Jan 2025 12:20:20 -0600 Subject: [PATCH 36/69] docs: compat: some more missing title ids --- docs/compatibility.csv | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/docs/compatibility.csv b/docs/compatibility.csv index 9976c3bd5..c84e858fa 100644 --- a/docs/compatibility.csv +++ b/docs/compatibility.csv @@ -1,40 +1,40 @@ "issue_title","extracted_game_id","issue_labels","extracted_status","last_event_date" -"-KLAUS-",,nvdec;status-playable,playable,2020-06-27 13:27:30.000 +"-KLAUS-",010099F00EF3E000,nvdec;status-playable,playable,2020-06-27 13:27:30.000 ".hack//G.U. Last Recode",0100BA9014A02000,deadlock;status-boots,boots,2022-03-12 19:15:47.000 -"#Funtime",,status-playable,playable,2020-12-10 16:54:35.000 -"#Halloween, Super Puzzles Dream",,nvdec;status-playable,playable,2020-12-10 20:43:58.000 -"#KillAllZombies",,slow;status-playable,playable,2020-12-16 01:50:25.000 -"#NoLimitFantasy, Super Puzzles Dream",,nvdec;status-playable,playable,2020-12-12 17:21:32.000 -"#RaceDieRun",,status-playable,playable,2020-07-04 20:23:16.000 -"#womenUp, Super Puzzles Dream",,status-playable,playable,2020-12-12 16:57:25.000 +"#Funtime",01001E500F7FC000,status-playable,playable,2020-12-10 16:54:35.000 +"#Halloween, Super Puzzles Dream",01000E50134A4000,nvdec;status-playable,playable,2020-12-10 20:43:58.000 +"#KillAllZombies",01004D100C510000,slow;status-playable,playable,2020-12-16 01:50:25.000 +"#NoLimitFantasy, Super Puzzles Dream",0100325012C12000,nvdec;status-playable,playable,2020-12-12 17:21:32.000 +"#RaceDieRun",01005D400E5C8000,status-playable,playable,2020-07-04 20:23:16.000 +"#womenUp, Super Puzzles Dream",01003DB011AE8000,status-playable,playable,2020-12-12 16:57:25.000 "#womenUp, Super Puzzles Dream Demo",0100D87012A14000,nvdec;status-playable,playable,2021-02-09 00:03:31.000 "1-2-Switch",01000320000CC000,services;status-playable,playable,2022-02-18 14:44:03.000 "10 Second Run Returns",01004D1007926000,gpu;status-ingame,ingame,2022-07-17 13:06:18.000 "10 Second Run RETURNS Demo",0100DC000A472000,gpu;status-ingame,ingame,2021-02-09 00:17:18.000 "112 Operator",0100D82015774000,status-playable;nvdec,playable,2022-11-13 22:42:50.000 -"112th Seed",,status-playable,playable,2020-10-03 10:32:38.000 +"112th Seed",010051E012302000,status-playable,playable,2020-10-03 10:32:38.000 "12 is Better Than 6",01007F600D1B8000,status-playable,playable,2021-02-22 16:10:12.000 "12 Labours of Hercules II: The Cretan Bull",0100B1A010014000,cpu;status-nothing;32-bit;crash,nothing,2022-12-07 13:43:10.000 -"12 orbits",,status-playable,playable,2020-05-28 16:13:26.000 +"12 orbits",0100A840047C2000,status-playable,playable,2020-05-28 16:13:26.000 "13 Sentinels Aegis Rim",01003FC01670C000,slow;status-ingame,ingame,2024-06-10 20:33:38.000 "13 Sentinels Aegis Rim Demo",0100C54015002000,status-playable;demo,playable,2022-04-13 14:15:48.000 -"140",,status-playable,playable,2020-08-05 20:01:33.000 +"140",01007E600EEE6000,status-playable,playable,2020-08-05 20:01:33.000 "16-Bit Soccer Demo",0100B94013D28000,status-playable,playable,2021-02-09 00:23:07.000 -"1917 - The Alien Invasion DX",,status-playable,playable,2021-01-08 22:11:16.000 +"1917 - The Alien Invasion DX",01005CA0099AA000,status-playable,playable,2021-01-08 22:11:16.000 "1971 PROJECT HELIOS",0100829010F4A000,status-playable,playable,2021-04-14 13:50:19.000 "1979 Revolution: Black Friday",0100D1000B18C000,nvdec;status-playable,playable,2021-02-21 21:03:43.000 -"198X",,status-playable,playable,2020-08-07 13:24:38.000 -"1993 Shenandoah",,status-playable,playable,2020-10-24 13:55:42.000 +"198X",01007BB00FC8A000,status-playable,playable,2020-08-07 13:24:38.000 +"1993 Shenandoah",010075601150A000,status-playable,playable,2020-10-24 13:55:42.000 "1993 Shenandoah Demo",0100148012550000,status-playable,playable,2021-02-09 00:43:43.000 -"2048 Battles",,status-playable,playable,2020-12-12 14:21:25.000 -"2064: Read Only Memories",,deadlock;status-menus,menus,2020-05-28 16:53:58.000 +"2048 Battles",010096500EA94000,status-playable,playable,2020-12-12 14:21:25.000 +"2064: Read Only Memories INTEGRAL",010024C0067C4000,deadlock;status-menus,menus,2020-05-28 16:53:58.000 "20XX",0100749009844000,gpu;status-ingame,ingame,2023-08-14 09:41:44.000 "2urvive",01007550131EE000,status-playable,playable,2022-11-17 13:49:37.000 "2weistein – The Curse of the Red Dragon",0100E20012886000,status-playable;nvdec;UE4,playable,2022-11-18 14:47:07.000 "30 in 1 game collection vol. 2",0100DAC013D0A000,status-playable;online-broken,playable,2022-10-15 17:22:27.000 "30-in-1 Game Collection",010056D00E234000,status-playable;online-broken,playable,2022-10-15 17:47:09.000 "3000th Duel",0100FB5010D2E000,status-playable,playable,2022-09-21 17:12:08.000 -"36 Fragments of Midnight",,status-playable,playable,2020-05-28 15:12:59.000 +"36 Fragments of Midnight",01003670066DE000,status-playable,playable,2020-05-28 15:12:59.000 "39 Days to Mars",0100AF400C4CE000,status-playable,playable,2021-02-21 22:12:46.000 "3D Arcade Fishing",010010C013F2A000,status-playable,playable,2022-10-25 21:50:51.000 "3D MiniGolf",,status-playable,playable,2021-01-06 09:22:11.000 From 384416953df017cb5b1abc083a9ea71e2f55126c Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Wed, 8 Jan 2025 12:30:13 -0600 Subject: [PATCH 37/69] docs: compat: list title ID column first --- docs/compatibility.csv | 6866 ++++++++--------- .../Utilities/Compat/CompatibilityCsv.cs | 16 +- 2 files changed, 3439 insertions(+), 3443 deletions(-) diff --git a/docs/compatibility.csv b/docs/compatibility.csv index c84e858fa..600f00097 100644 --- a/docs/compatibility.csv +++ b/docs/compatibility.csv @@ -1,3433 +1,3433 @@ -"issue_title","extracted_game_id","issue_labels","extracted_status","last_event_date" -"-KLAUS-",010099F00EF3E000,nvdec;status-playable,playable,2020-06-27 13:27:30.000 -".hack//G.U. Last Recode",0100BA9014A02000,deadlock;status-boots,boots,2022-03-12 19:15:47.000 -"#Funtime",01001E500F7FC000,status-playable,playable,2020-12-10 16:54:35.000 -"#Halloween, Super Puzzles Dream",01000E50134A4000,nvdec;status-playable,playable,2020-12-10 20:43:58.000 -"#KillAllZombies",01004D100C510000,slow;status-playable,playable,2020-12-16 01:50:25.000 -"#NoLimitFantasy, Super Puzzles Dream",0100325012C12000,nvdec;status-playable,playable,2020-12-12 17:21:32.000 -"#RaceDieRun",01005D400E5C8000,status-playable,playable,2020-07-04 20:23:16.000 -"#womenUp, Super Puzzles Dream",01003DB011AE8000,status-playable,playable,2020-12-12 16:57:25.000 -"#womenUp, Super Puzzles Dream Demo",0100D87012A14000,nvdec;status-playable,playable,2021-02-09 00:03:31.000 -"1-2-Switch",01000320000CC000,services;status-playable,playable,2022-02-18 14:44:03.000 -"10 Second Run Returns",01004D1007926000,gpu;status-ingame,ingame,2022-07-17 13:06:18.000 -"10 Second Run RETURNS Demo",0100DC000A472000,gpu;status-ingame,ingame,2021-02-09 00:17:18.000 -"112 Operator",0100D82015774000,status-playable;nvdec,playable,2022-11-13 22:42:50.000 -"112th Seed",010051E012302000,status-playable,playable,2020-10-03 10:32:38.000 -"12 is Better Than 6",01007F600D1B8000,status-playable,playable,2021-02-22 16:10:12.000 -"12 Labours of Hercules II: The Cretan Bull",0100B1A010014000,cpu;status-nothing;32-bit;crash,nothing,2022-12-07 13:43:10.000 -"12 orbits",0100A840047C2000,status-playable,playable,2020-05-28 16:13:26.000 -"13 Sentinels Aegis Rim",01003FC01670C000,slow;status-ingame,ingame,2024-06-10 20:33:38.000 -"13 Sentinels Aegis Rim Demo",0100C54015002000,status-playable;demo,playable,2022-04-13 14:15:48.000 -"140",01007E600EEE6000,status-playable,playable,2020-08-05 20:01:33.000 -"16-Bit Soccer Demo",0100B94013D28000,status-playable,playable,2021-02-09 00:23:07.000 -"1917 - The Alien Invasion DX",01005CA0099AA000,status-playable,playable,2021-01-08 22:11:16.000 -"1971 PROJECT HELIOS",0100829010F4A000,status-playable,playable,2021-04-14 13:50:19.000 -"1979 Revolution: Black Friday",0100D1000B18C000,nvdec;status-playable,playable,2021-02-21 21:03:43.000 -"198X",01007BB00FC8A000,status-playable,playable,2020-08-07 13:24:38.000 -"1993 Shenandoah",010075601150A000,status-playable,playable,2020-10-24 13:55:42.000 -"1993 Shenandoah Demo",0100148012550000,status-playable,playable,2021-02-09 00:43:43.000 -"2048 Battles",010096500EA94000,status-playable,playable,2020-12-12 14:21:25.000 -"2064: Read Only Memories INTEGRAL",010024C0067C4000,deadlock;status-menus,menus,2020-05-28 16:53:58.000 -"20XX",0100749009844000,gpu;status-ingame,ingame,2023-08-14 09:41:44.000 -"2urvive",01007550131EE000,status-playable,playable,2022-11-17 13:49:37.000 -"2weistein – The Curse of the Red Dragon",0100E20012886000,status-playable;nvdec;UE4,playable,2022-11-18 14:47:07.000 -"30 in 1 game collection vol. 2",0100DAC013D0A000,status-playable;online-broken,playable,2022-10-15 17:22:27.000 -"30-in-1 Game Collection",010056D00E234000,status-playable;online-broken,playable,2022-10-15 17:47:09.000 -"3000th Duel",0100FB5010D2E000,status-playable,playable,2022-09-21 17:12:08.000 -"36 Fragments of Midnight",01003670066DE000,status-playable,playable,2020-05-28 15:12:59.000 -"39 Days to Mars",0100AF400C4CE000,status-playable,playable,2021-02-21 22:12:46.000 -"3D Arcade Fishing",010010C013F2A000,status-playable,playable,2022-10-25 21:50:51.000 -"3D MiniGolf",,status-playable,playable,2021-01-06 09:22:11.000 -"4x4 Dirt Track",,status-playable,playable,2020-12-12 21:41:42.000 -"60 Parsecs!",010010100FF14000,status-playable,playable,2022-09-17 11:01:17.000 -"60 Seconds!",0100969005E98000,services;status-ingame,ingame,2021-11-30 01:04:14.000 -"6180 the moon",,status-playable,playable,2020-05-28 15:39:24.000 -"64",,status-playable,playable,2020-12-12 21:31:58.000 -"7 Billion Humans",,32-bit;status-playable,playable,2020-12-17 21:04:58.000 -"7th Sector",,nvdec;status-playable,playable,2020-08-10 14:22:14.000 -"8-BIT ADVENTURE STEINS;GATE",,audio;status-ingame,ingame,2020-01-12 15:05:06.000 -"80 Days",,status-playable,playable,2020-06-22 21:43:01.000 -"80's OVERDRIVE",,status-playable,playable,2020-10-16 14:33:32.000 -"88 Heroes",,status-playable,playable,2020-05-28 14:13:02.000 -"9 Monkeys of Shaolin",,UE4;gpu;slow;status-ingame,ingame,2020-11-17 11:58:43.000 -"9 Monkeys of Shaolin Demo",0100C5F012E3E000,UE4;gpu;nvdec;status-ingame,ingame,2021-02-09 01:03:30.000 -"911 Operator Deluxe Edition",,status-playable,playable,2020-07-14 13:57:44.000 -"99Vidas",,online;status-playable,playable,2020-10-29 13:00:40.000 -"99Vidas Demo",010023500C2F0000,status-playable,playable,2021-02-09 12:51:31.000 -"9th Dawn III",,status-playable,playable,2020-12-12 22:27:27.000 -"A Ch'ti Bundle",010096A00CC80000,status-playable;nvdec,playable,2022-10-04 12:48:44.000 -"A Dark Room",,gpu;status-ingame,ingame,2020-12-14 16:14:28.000 -"A Duel Hand Disaster Trackher: DEMO",0100582012B90000,crash;demo;nvdec;status-ingame,ingame,2021-03-24 18:45:27.000 -"A Duel Hand Disaster: Trackher",010026B006802000,status-playable;nvdec;online-working,playable,2022-09-04 14:24:55.000 -"A Frog Game",,status-playable,playable,2020-12-14 16:09:53.000 -"A Hat In Time",010056E00853A000,status-playable,playable,2024-06-25 19:52:44.000 -"A HERO AND A GARDEN",01009E1011EC4000,status-playable,playable,2022-12-05 16:37:47.000 -"A Knight's Quest",01005EF00CFDA000,status-playable;UE4,playable,2022-09-12 20:44:20.000 -"A magical high school girl",01008DD006C52000,status-playable,playable,2022-07-19 14:40:50.000 -"A Short Hike",,status-playable,playable,2020-10-15 00:19:58.000 -"A Sound Plan",,crash;status-boots,boots,2020-12-14 16:46:21.000 -"A Summer with the Shiba Inu",01007DD011C4A000,status-playable,playable,2021-06-10 20:51:16.000 -"A-Train: All Aboard! Tourism",0100A3E010E56000,nvdec;status-playable,playable,2021-04-06 17:48:19.000 -"Aaero",010097A00CC0A000,status-playable;nvdec,playable,2022-07-19 14:49:55.000 -"Aborigenus",,status-playable,playable,2020-08-05 19:47:24.000 -"Absolute Drift",,status-playable,playable,2020-12-10 14:02:44.000 -"Abyss of The Sacrifice",010047F012BE2000,status-playable;nvdec,playable,2022-10-21 13:56:28.000 -"ABZU",0100C1300BBC6000,status-playable;UE4,playable,2022-07-19 15:02:52.000 -"ACA NEOGEO 2020 SUPER BASEBALL",01003C400871E000,online;status-playable,playable,2021-04-12 13:23:51.000 -"ACA NEOGEO 3 COUNT BOUT",0100FC000AFC6000,online;status-playable,playable,2021-04-12 13:16:42.000 -"ACA NEOGEO AERO FIGHTERS 2",0100AC40038F4000,online;status-playable,playable,2021-04-08 15:44:09.000 -"ACA NEOGEO AERO FIGHTERS 3",0100B91008780000,online;status-playable,playable,2021-04-12 13:11:17.000 -"ACA NEOGEO AGGRESSORS OF DARK KOMBAT",0100B4800AFBA000,online;status-playable,playable,2021-04-01 22:48:01.000 -"ACA NEOGEO BASEBALL STARS PROFESSIONAL",01003FE00A2F6000,online;status-playable,playable,2021-04-01 21:23:05.000 -"ACA NEOGEO BLAZING STAR",,crash;services;status-menus,menus,2020-05-26 17:29:02.000 -"ACA NEOGEO CROSSED SWORDS",0100D2400AFB0000,online;status-playable,playable,2021-04-01 20:42:59.000 -"ACA NEOGEO FATAL FURY",0100EE6002B48000,online;status-playable,playable,2021-04-01 20:36:23.000 -"ACA NEOGEO FOOTBALL FRENZY",,status-playable,playable,2021-03-29 20:12:12.000 -"ACA NEOGEO GAROU: MARK OF THE WOLVES",0100CB2001DB8000,online;status-playable,playable,2021-04-01 20:31:10.000 -"ACA NEOGEO GHOST PILOTS",01005D700A2F8000,online;status-playable,playable,2021-04-01 20:26:45.000 -"ACA NEOGEO LAST RESORT",01000D10038E6000,online;status-playable,playable,2021-04-01 19:51:22.000 -"ACA NEOGEO LEAGUE BOWLING",,crash;services;status-menus,menus,2020-05-26 17:11:04.000 -"ACA NEOGEO MAGICAL DROP II",,crash;services;status-menus,menus,2020-05-26 16:48:24.000 -"ACA NEOGEO MAGICIAN LORD",01007920038F6000,online;status-playable,playable,2021-04-01 19:33:26.000 -"ACA NEOGEO METAL SLUG",0100EBE002B3E000,status-playable,playable,2021-02-21 13:56:48.000 -"ACA NEOGEO METAL SLUG 2",010086300486E000,online;status-playable,playable,2021-04-01 19:25:52.000 -"ACA NEOGEO METAL SLUG 3",,crash;services;status-menus,menus,2020-05-26 16:32:45.000 -"ACA NEOGEO METAL SLUG 4",01009CE00AFAE000,online;status-playable,playable,2021-04-01 18:12:18.000 -"ACA NEOGEO Metal Slug X",,crash;services;status-menus,menus,2020-05-26 14:07:20.000 -"ACA NEOGEO Money Puzzle Exchanger",010038F00AFA0000,online;status-playable,playable,2021-04-01 17:59:56.000 -"ACA NEOGEO NEO TURF MASTERS",01002E70032E8000,status-playable,playable,2021-02-21 15:12:01.000 -"ACA NEOGEO NINJA COMBAT",010052A00A306000,status-playable,playable,2021-03-29 21:17:28.000 -"ACA NEOGEO NINJA COMMANDO",01007E800AFB6000,online;status-playable,playable,2021-04-01 17:28:18.000 -"ACA NEOGEO OVER TOP",01003A5001DBA000,status-playable,playable,2021-02-21 13:16:25.000 -"ACA NEOGEO REAL BOUT FATAL FURY SPECIAL",010088500878C000,online;status-playable,playable,2021-04-01 17:18:27.000 -"ACA NEOGEO SAMURAI SHODOWN",01005C9002B42000,online;status-playable,playable,2021-04-01 17:11:35.000 -"ACA NEOGEO SAMURAI SHODOWN IV",010047F001DBC000,online;status-playable,playable,2021-04-12 12:58:54.000 -"ACA NEOGEO SAMURAI SHODOWN SPECIAL V",010049F00AFE8000,online;status-playable,playable,2021-04-10 18:07:13.000 -"ACA NEOGEO SENGOKU 2",01009B300872A000,online;status-playable,playable,2021-04-10 17:36:44.000 -"ACA NEOGEO SENGOKU 3",01008D000877C000,online;status-playable,playable,2021-04-10 16:11:53.000 -"ACA NEOGEO SHOCK TROOPERS",,crash;services;status-menus,menus,2020-05-26 15:29:34.000 -"ACA NEOGEO SPIN MASTER",01007D1004DBA000,online;status-playable,playable,2021-04-10 15:50:19.000 -"ACA NEOGEO SUPER SIDEKICKS 2",010055A00A300000,online;status-playable,playable,2021-04-10 16:05:58.000 -"ACA NEOGEO SUPER SIDEKICKS 3: THE NEXT GLORY",0100A4D00A308000,online;status-playable,playable,2021-04-10 15:39:22.000 -"ACA NEOGEO THE KING OF FIGHTERS '94",,crash;services;status-menus,menus,2020-05-26 15:03:44.000 -"ACA NEOGEO THE KING OF FIGHTERS '95",01009DC001DB6000,status-playable,playable,2021-03-29 20:27:35.000 -"ACA NEOGEO THE KING OF FIGHTERS '96",01006F0004FB4000,online;status-playable,playable,2021-04-10 14:49:10.000 -"ACA NEOGEO THE KING OF FIGHTERS '97",0100170008728000,online;status-playable,playable,2021-04-10 14:43:27.000 -"ACA NEOGEO THE KING OF FIGHTERS '98",,crash;services;status-menus,menus,2020-05-26 14:54:20.000 -"ACA NEOGEO THE KING OF FIGHTERS '99",0100583001DCA000,online;status-playable,playable,2021-04-10 14:36:56.000 -"ACA NEOGEO THE KING OF FIGHTERS 2000",0100B97002B44000,online;status-playable,playable,2021-04-10 15:24:35.000 -"ACA NEOGEO THE KING OF FIGHTERS 2001",010048200AFC2000,online;status-playable,playable,2021-04-10 15:16:23.000 -"ACA NEOGEO THE KING OF FIGHTERS 2002",0100CFD00AFDE000,online;status-playable,playable,2021-04-10 15:01:55.000 -"ACA NEOGEO THE KING OF FIGHTERS 2003",0100EF100AFE6000,online;status-playable,playable,2021-04-10 14:54:31.000 -"ACA NEOGEO THE LAST BLADE 2",0100699008792000,online;status-playable,playable,2021-04-10 14:31:54.000 -"ACA NEOGEO THE SUPER SPY",0100F7F00AFA2000,online;status-playable,playable,2021-04-10 14:26:33.000 -"ACA NEOGEO WAKU WAKU 7",0100CEF001DC0000,online;status-playable,playable,2021-04-10 14:20:52.000 -"ACA NEOGEO WORLD HEROES PERFECT",,crash;services;status-menus,menus,2020-05-26 14:14:36.000 -"ACA NEOGEO ZUPAPA!",,online;status-playable,playable,2021-03-25 20:07:33.000 -"Access Denied",0100A9900CB5C000,status-playable,playable,2022-07-19 15:25:10.000 -"Ace Angler: Fishing Spirits",01007C50132C8000,status-menus;crash,menus,2023-03-03 03:21:39.000 -"Ace Attorney Investigations Collection DEMO",010033401E68E000,status-playable,playable,2024-09-07 06:16:42.000 -"Ace Combat 7 - Skies Unknown Deluxe Edition",010039301B7E0000,gpu;status-ingame;UE4,ingame,2024-09-27 14:31:43.000 -"Ace of Seafood",0100FF1004D56000,status-playable,playable,2022-07-19 15:32:25.000 -"Aces of the Luftwaffe Squadron",,nvdec;slow;status-playable,playable,2020-05-27 12:29:42.000 -"Aces of the Luftwaffe Squadron Demo",010054300D822000,nvdec;status-playable,playable,2021-02-09 13:12:28.000 -"ACORN Tactics",0100DBC0081A4000,status-playable,playable,2021-02-22 12:57:40.000 -"Across the Grooves",,status-playable,playable,2020-06-27 12:29:51.000 -"Acthung! Cthulhu Tactics",,status-playable,playable,2020-12-14 18:40:27.000 -"Active Neurons",010039A010DA0000,status-playable,playable,2021-01-27 21:31:21.000 -"Active Neurons 2",01000D1011EF0000,status-playable,playable,2022-10-07 16:21:42.000 -"Active Neurons 2 Demo",010031C0122B0000,status-playable,playable,2021-02-09 13:40:21.000 -"Active Neurons 3",0100EE1013E12000,status-playable,playable,2021-03-24 12:20:20.000 -"Actual Sunlight",,gpu;status-ingame,ingame,2020-12-14 17:18:41.000 -"Adam's Venture: Origins",0100C0C0040E4000,status-playable,playable,2021-03-04 18:43:57.000 -"Adrenaline Rush - Miami Drive",,status-playable,playable,2020-12-12 22:49:50.000 -"Advance Wars 1+2: Re-Boot Camp",0100300012F2A000,status-playable,playable,2024-01-30 18:19:44.000 -"Adventure Llama",,status-playable,playable,2020-12-14 19:32:24.000 -"Adventure Pinball Bundle",,slow;status-playable,playable,2020-12-14 20:31:53.000 -"Adventures of Bertram Fiddle: Episode 1: A Dreadly Business",01003B400A00A000,status-playable;nvdec,playable,2022-09-17 11:07:56.000 -"Adventures of Chris",,status-playable,playable,2020-12-12 23:00:02.000 -"Adventures of Chris Demo",0100A0A0136E8000,status-playable,playable,2021-02-09 13:49:21.000 -"Adventures of Pip",,nvdec;status-playable,playable,2020-12-12 22:11:55.000 -"ADVERSE",01008C901266E000,UE4;status-playable,playable,2021-04-26 14:32:51.000 -"Aegis Defenders Demo",010064500AF72000,status-playable,playable,2021-02-09 14:04:17.000 -"Aegis Defenders0",01008E6006502000,status-playable,playable,2021-02-22 13:29:33.000 -"Aeolis Tournament",,online;status-playable,playable,2020-12-12 22:02:14.000 -"Aeolis Tournament Demo",01006710122CE000,nvdec;status-playable,playable,2021-02-09 14:22:30.000 -"AER - Memories of Old",0100A0400DDE0000,nvdec;status-playable,playable,2021-03-05 18:43:43.000 -"Aerial Knight's Never Yield",0100E9B013D4A000,status-playable,playable,2022-10-25 22:05:00.000 -"Aery",0100875011D0C000,status-playable,playable,2021-03-07 15:25:51.000 -"Aery - Sky Castle",010018E012914000,status-playable,playable,2022-10-21 17:58:49.000 -"Aery - A Journey Beyond Time",0100DF8014056000,status-playable,playable,2021-04-05 15:52:25.000 -"Aery - Broken Memories",0100087012810000,status-playable,playable,2022-10-04 13:11:52.000 -"Aery - Calm Mind - 0100A801539000",,status-playable,playable,2022-11-14 14:26:58.000 -"AeternoBlade Demo Version",0100B1C00949A000,nvdec;status-playable,playable,2021-02-09 14:39:26.000 -"AeternoBlade I",,nvdec;status-playable,playable,2020-12-14 20:06:48.000 -"AeternoBlade II",01009D100EA28000,status-playable;online-broken;UE4;vulkan-backend-bug,playable,2022-09-12 21:11:18.000 -"AeternoBlade II Demo Version",,gpu;nvdec;status-ingame,ingame,2021-02-09 15:10:19.000 -"AFL Evolution 2",01001B400D334000,slow;status-playable;online-broken;UE4,playable,2022-12-07 12:45:56.000 -"Afterparty",0100DB100BBCE000,status-playable,playable,2022-09-22 12:23:19.000 -"Agatha Christie - The ABC Murders",,status-playable,playable,2020-10-27 17:08:23.000 -"Agatha Knife",,status-playable,playable,2020-05-28 12:37:58.000 -"Agent A: A puzzle in disguise",,status-playable,playable,2020-11-16 22:53:27.000 -"Agent A: A puzzle in disguise (Demo)",01008E8012C02000,status-playable,playable,2021-02-09 18:30:41.000 -"Ages of Mages: the Last Keeper",0100E4700E040000,status-playable;vulkan-backend-bug,playable,2022-10-04 11:44:05.000 -"Aggelos",010004D00A9C0000,gpu;status-ingame,ingame,2023-02-19 13:24:23.000 -"Agony",,UE4;crash;status-boots,boots,2020-07-10 16:21:18.000 -"Ai: the Somnium Files",010089B00D09C000,status-playable;nvdec,playable,2022-09-04 14:45:06.000 -"AI: The Somnium Files Demo",0100C1700FB34000,nvdec;status-playable,playable,2021-02-10 12:52:33.000 -"Ailment",,status-playable,playable,2020-12-12 22:30:41.000 -"Air Conflicts: Pacific Carriers",,status-playable,playable,2021-01-04 10:52:50.000 -"Air Hockey",,status-playable,playable,2020-05-28 16:44:37.000 -"Air Missions: HIND",,status-playable,playable,2020-12-13 10:16:45.000 -"Aircraft Evolution",0100E95011FDC000,nvdec;status-playable,playable,2021-06-14 13:30:18.000 -"Airfield Mania Demo",010010A00DB72000,services;status-boots;demo,boots,2022-04-10 03:43:02.000 -"AIRHEART - Tales of Broken Wings",01003DD00BFEE000,status-playable,playable,2021-02-26 15:20:27.000 -"Akane",01007F100DE52000,status-playable;nvdec,playable,2022-07-21 00:12:18.000 -"Akash Path of the Five",,gpu;nvdec;status-ingame,ingame,2020-12-14 22:33:12.000 -"Akihabara - Feel the Rhythm Remixed",010053100B0EA000,status-playable,playable,2021-02-22 14:39:35.000 -"Akuarium",,slow;status-playable,playable,2020-12-12 23:43:36.000 -"Akuto",,status-playable,playable,2020-08-04 19:43:27.000 -"Alchemic Jousts",0100F5400AB6C000,gpu;status-ingame,ingame,2022-12-08 15:06:28.000 -"Alchemist's Castle",,status-playable,playable,2020-12-12 23:54:08.000 -"Alder's Blood",,status-playable,playable,2020-08-28 15:15:23.000 -"Alder's Blood Prologue",01004510110C4000,crash;status-ingame,ingame,2021-02-09 19:03:03.000 -"Aldred - Knight of Honor",01000E000EEF8000,services;status-playable,playable,2021-11-30 01:49:17.000 -"Alex Kidd in Miracle World DX",010025D01221A000,status-playable,playable,2022-11-14 15:01:34.000 -"Alien Cruise",,status-playable,playable,2020-08-12 13:56:05.000 -"Alien Escape",,status-playable,playable,2020-06-03 23:43:18.000 -"Alien: Isolation",010075D00E8BA000,status-playable;nvdec;vulkan-backend-bug,playable,2022-09-17 11:48:41.000 -"All Walls Must Fall",0100CBD012FB6000,status-playable;UE4,playable,2022-10-15 19:16:30.000 -"All-Star Fruit Racing",0100C1F00A9B8000,status-playable;nvdec;UE4,playable,2022-07-21 00:35:37.000 -"Alluris",0100AC501122A000,gpu;status-ingame;UE4,ingame,2023-08-02 23:13:50.000 -"Almightree the Last Dreamer",,slow;status-playable,playable,2020-12-15 13:59:03.000 -"Along the Edge",,status-playable,playable,2020-11-18 15:00:07.000 -"Alpaca Ball: Allstars",,nvdec;status-playable,playable,2020-12-11 12:26:29.000 -"ALPHA",,status-playable,playable,2020-12-13 12:17:45.000 -"Alphaset by POWGI",,status-playable,playable,2020-12-15 15:15:15.000 -"Alt-Frequencies",,status-playable,playable,2020-12-15 19:01:33.000 -"Alteric",,status-playable,playable,2020-11-08 13:53:22.000 -"Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz",,status-playable,playable,2020-08-31 14:17:42.000 -"Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz Trial version",0100A8A00D27E000,status-playable,playable,2021-02-10 13:33:59.000 -"Aluna: Sentinel of the Shards",010045201487C000,status-playable;nvdec,playable,2022-10-25 22:17:03.000 -"Alwa's Awakening",,status-playable,playable,2020-10-13 11:52:01.000 -"Alwa's Legacy",,status-playable,playable,2020-12-13 13:00:57.000 -"American Fugitive",,nvdec;status-playable,playable,2021-01-04 20:45:11.000 -"American Ninja Warrior: Challenge",010089D00A3FA000,nvdec;status-playable,playable,2021-06-09 13:11:17.000 -"Amnesia: Collection",01003CC00D0BE000,status-playable,playable,2022-10-04 13:36:15.000 -"Amoeba Battle - Microscopic RTS Action",010041D00DEB2000,status-playable,playable,2021-05-06 13:33:41.000 -"Among the Sleep - Enhanced Edition",010046500C8D2000,nvdec;status-playable,playable,2021-06-03 15:06:25.000 -"Among Us",0100B0C013912000,status-menus;online;ldn-broken,menus,2021-09-22 15:20:17.000 -"Anarcute",010050900E1C6000,status-playable,playable,2021-02-22 13:17:59.000 -"Ancestors Legacy",01009EE0111CC000,status-playable;nvdec;UE4,playable,2022-10-01 12:25:36.000 -"Ancient Rush 2",,UE4;crash;status-menus,menus,2020-07-14 14:58:47.000 -"Angels of Death",0100AE000AEBC000,nvdec;status-playable,playable,2021-02-22 14:17:15.000 -"AngerForce: Reloaded for Nintendo Switch",010001E00A5F6000,status-playable,playable,2022-07-21 10:37:17.000 -"Angry Bunnies: Colossal Carrot Crusade",0100F3500D05E000,status-playable;online-broken,playable,2022-09-04 14:53:26.000 -"Angry Video Game Nerd I & II Deluxe",,crash;status-ingame,ingame,2020-12-12 23:59:54.000 -"Anima Gate of Memories: The Nameless Chronicles",01007A400B3F8000,status-playable,playable,2021-06-14 14:33:06.000 -"Anima: Arcane Edition",010033F00B3FA000,nvdec;status-playable,playable,2021-01-26 16:55:51.000 -"Anima: Gate of Memories",0100706005B6A000,nvdec;status-playable,playable,2021-06-16 18:13:18.000 -"Animal Crossing New Horizons Island Transfer Tool",0100F38011CFE000,services;status-ingame;Needs Update;Incomplete,ingame,2022-12-07 13:51:19.000 -"Animal Crossing: New Horizons",01006F8002326000,gpu;status-ingame;crash;nvdec;online-broken;ldn-works;mac-bug,ingame,2024-09-23 13:31:49.000 -"Animal Fight Club",,gpu;status-ingame,ingame,2020-12-13 13:13:33.000 -"Animal Fun for Toddlers and Kids",,services;status-boots,boots,2020-12-15 16:45:29.000 -"Animal Hunter Z",,status-playable,playable,2020-12-13 12:50:35.000 -"Animal Pairs - Matching & Concentration Game for Toddlers & Kids",010033C0121DC000,services;status-boots,boots,2021-11-29 23:43:14.000 -"Animal Rivals Switch",010065B009B3A000,status-playable,playable,2021-02-22 14:02:42.000 -"Animal Super Squad",0100EFE009424000,UE4;status-playable,playable,2021-04-23 20:50:50.000 -"Animal Up",,status-playable,playable,2020-12-13 15:39:02.000 -"ANIMAL WELL",010020D01AD24000,status-playable,playable,2024-05-22 18:01:49.000 -"Animals for Toddlers",,services;status-boots,boots,2020-12-15 17:27:27.000 -"Animated Jigsaws Collection",,nvdec;status-playable,playable,2020-12-15 15:58:34.000 -"Animated Jigsaws: Beautiful Japanese Scenery DEMO",0100A1900B5B8000,nvdec;status-playable,playable,2021-02-10 13:49:56.000 -"Anime Studio Story",,status-playable,playable,2020-12-15 18:14:05.000 -"Anime Studio Story Demo",01002B300EB86000,status-playable,playable,2021-02-10 14:50:39.000 -"ANIMUS",,status-playable,playable,2020-12-13 15:11:47.000 -"Animus: Harbinger",0100E5A00FD38000,status-playable,playable,2022-09-13 22:09:20.000 -"Ankh Guardian - Treasure of the Demon's Temple",,status-playable,playable,2020-12-13 15:55:49.000 -"Anode",,status-playable,playable,2020-12-15 17:18:58.000 -"Another Code: Recollection",0100CB9018F5A000,gpu;status-ingame;crash,ingame,2024-09-06 05:58:52.000 -"Another Sight",,UE4;gpu;nvdec;status-ingame,ingame,2020-12-03 16:49:59.000 -"Another World",01003C300AAAE000,slow;status-playable,playable,2022-07-21 10:42:38.000 -"AnShi",01000FD00DF78000,status-playable;nvdec;UE4,playable,2022-10-21 19:37:01.000 -"Anthill",010054C00D842000,services;status-menus;nvdec,menus,2021-11-18 09:25:25.000 -"Anti-Hero Bundle",0100596011E20000,status-playable;nvdec,playable,2022-10-21 20:10:30.000 -"Antiquia Lost",,status-playable,playable,2020-05-28 11:57:32.000 -"Antventor",,nvdec;status-playable,playable,2020-12-15 20:09:27.000 -"Ao no Kanata no Four Rhythm",0100FA100620C000,status-playable,playable,2022-07-21 10:50:42.000 -"AO Tennis 2",010047000E9AA000,status-playable;online-broken,playable,2022-09-17 12:05:07.000 -"Aokana - Four Rhythms Across the Blue",0100990011866000,status-playable,playable,2022-10-04 13:50:26.000 -"Ape Out",01005B100C268000,status-playable,playable,2022-09-26 19:04:47.000 -"APE OUT DEMO",010054500E6D4000,status-playable,playable,2021-02-10 14:33:06.000 -"Aperion Cyberstorm",,status-playable,playable,2020-12-14 00:40:16.000 -"Aperion Cyberstorm Demo",01008CA00D71C000,status-playable,playable,2021-02-10 15:53:21.000 -"Apocalipsis",,deadlock;status-menus,menus,2020-05-27 12:56:37.000 -"Apocryph",,gpu;status-ingame,ingame,2020-12-13 23:24:10.000 -"Apparition",,nvdec;slow;status-ingame,ingame,2020-12-13 23:57:04.000 -"AQUA KITTY UDX",0100AC10085CE000,online;status-playable,playable,2021-04-12 15:34:11.000 -"Aqua Lungers",,crash;status-ingame,ingame,2020-12-14 11:25:57.000 -"Aqua Moto Racing Utopia",0100D0D00516A000,status-playable,playable,2021-02-21 21:21:00.000 -"Aragami: Shadow Edition",010071800BA74000,nvdec;status-playable,playable,2021-02-21 20:33:23.000 -"Arc of Alchemist",0100C7D00E6A0000,status-playable;nvdec,playable,2022-10-07 19:15:54.000 -"Arcade Archives 10-Yard Fight",0100BE80097FA000,online;status-playable,playable,2021-03-25 21:26:41.000 -"Arcade Archives ALPHA MISSION",01005DD00BE08000,online;status-playable,playable,2021-04-15 09:20:43.000 -"Arcade Archives ALPINE SKI",010083800DC70000,online;status-playable,playable,2021-04-15 09:28:46.000 -"Arcade Archives ARGUS",010014F001DE2000,online;status-playable,playable,2021-04-16 06:51:25.000 -"Arcade Archives Armed F",010014F001DE2000,online;status-playable,playable,2021-04-16 07:00:17.000 -"Arcade Archives ATHENA",0100BEC00C7A2000,online;status-playable,playable,2021-04-16 07:10:12.000 -"Arcade Archives Atomic Robo-Kid",0100426001DE4000,online;status-playable,playable,2021-04-16 07:20:29.000 -"Arcade Archives BOMB JACK",0100192009824000,online;status-playable,playable,2021-04-16 09:48:26.000 -"Arcade Archives City CONNECTION",010007A00980C000,online;status-playable,playable,2021-03-25 22:16:15.000 -"Arcade Archives CLU CLU LAND",0100EDC00E35A000,online;status-playable,playable,2021-04-16 10:00:42.000 -"Arcade Archives CRAZY CLIMBER",0100BB1001DD6000,online;status-playable,playable,2021-03-25 22:24:15.000 -"Arcade Archives DONKEY KONG",,Needs Update;crash;services;status-menus,menus,2021-03-24 18:18:43.000 -"Arcade Archives DOUBLE DRAGON",0100F25001DD0000,online;status-playable,playable,2021-03-25 22:44:34.000 -"Arcade Archives DOUBLE DRAGON II The Revenge",01009E3001DDE000,online;status-playable,playable,2021-04-12 16:05:29.000 -"Arcade Archives FRONT LINE",0100496006EC8000,online;status-playable,playable,2021-05-05 14:10:49.000 -"Arcade Archives HEROIC EPISODE",01009A4008A30000,online;status-playable,playable,2021-03-25 23:01:26.000 -"Arcade Archives ICE CLIMBER",01007D200D3FC000,online;status-playable,playable,2021-05-05 14:18:34.000 -"Arcade Archives IKARI WARRIORS",010049400C7A8000,online;status-playable,playable,2021-05-05 14:24:46.000 -"Arcade Archives Ikki",01000DB00980A000,online;status-playable,playable,2021-03-25 23:11:28.000 -"Arcade Archives IMAGE FIGHT",010008300C978000,online;status-playable,playable,2021-05-05 14:31:21.000 -"Arcade Archives Kid Niki Radical Ninja",010010B008A36000,audio;status-ingame;online,ingame,2022-07-21 11:02:04.000 -"Arcade Archives Kid's Horehore Daisakusen",0100E7C001DE0000,online;status-playable,playable,2021-04-12 16:21:29.000 -"Arcade Archives LIFE FORCE",,status-playable,playable,2020-09-04 13:26:25.000 -"Arcade Archives MARIO BROS.",0100755004608000,online;status-playable,playable,2021-03-26 11:31:32.000 -"Arcade Archives MOON CRESTA",01000BE001DD8000,online;status-playable,playable,2021-05-05 14:39:29.000 -"Arcade Archives MOON PATROL",01003000097FE000,online;status-playable,playable,2021-03-26 11:42:04.000 -"Arcade Archives NINJA GAIDEN",01003EF00D3B4000,audio;online;status-ingame,ingame,2021-04-12 16:27:53.000 -"Arcade Archives Ninja Spirit",01002F300D2C6000,online;status-playable,playable,2021-05-05 14:45:31.000 -"Arcade Archives Ninja-Kid",,online;status-playable,playable,2021-03-26 20:55:07.000 -"Arcade Archives OMEGA FIGHTER",,crash;services;status-menus,menus,2020-08-18 20:50:54.000 -"Arcade Archives PLUS ALPHA",,audio;status-ingame,ingame,2020-07-04 20:47:55.000 -"Arcade Archives POOYAN",0100A6E00D3F8000,online;status-playable,playable,2021-05-05 17:58:19.000 -"Arcade Archives PSYCHO SOLDIER",01000D200C7A4000,online;status-playable,playable,2021-05-05 18:02:19.000 -"Arcade Archives PUNCH-OUT!!",01001530097F8000,online;status-playable,playable,2021-03-25 22:10:55.000 -"Arcade Archives Renegade",010081E001DD2000,status-playable;online,playable,2022-07-21 11:45:40.000 -"Arcade Archives ROAD FIGHTER",0100FBA00E35C000,online;status-playable,playable,2021-05-05 18:09:17.000 -"Arcade Archives ROUTE 16",010060000BF7C000,online;status-playable,playable,2021-05-05 18:40:41.000 -"Arcade Archives RYGAR",0100C2D00981E000,online;status-playable,playable,2021-04-15 08:48:30.000 -"Arcade Archives Shusse Ozumo",01007A4009834000,online;status-playable,playable,2021-05-05 17:52:25.000 -"Arcade Archives Sky Skipper",010008F00B054000,online;status-playable,playable,2021-04-15 08:58:09.000 -"Arcade Archives Solomon's Key",01008C900982E000,online;status-playable,playable,2021-04-19 16:27:18.000 -"Arcade Archives STAR FORCE",010069F008A38000,online;status-playable,playable,2021-04-15 08:39:09.000 -"Arcade Archives TERRA CRESTA",,crash;services;status-menus,menus,2020-08-18 20:20:55.000 -"Arcade Archives TERRA FORCE",0100348001DE6000,online;status-playable,playable,2021-04-16 20:03:27.000 -"Arcade Archives TETRIS THE GRAND MASTER",0100DFD016B7A000,status-playable,playable,2024-06-23 01:50:29.000 -"Arcade Archives THE NINJA WARRIORS",0100DC000983A000,online;slow;status-ingame,ingame,2021-04-16 19:54:56.000 -"Arcade Archives TIME PILOT",0100AF300D2E8000,online;status-playable,playable,2021-04-16 19:22:31.000 -"Arcade Archives Traverse USA",010029D006ED8000,online;status-playable,playable,2021-04-15 08:11:06.000 -"Arcade Archives URBAN CHAMPION",010042200BE0C000,online;status-playable,playable,2021-04-16 10:20:03.000 -"Arcade Archives VS. GRADIUS",01004EC00E634000,online;status-playable,playable,2021-04-12 14:53:58.000 -"Arcade Archives VS. SUPER MARIO BROS.",,online;status-playable,playable,2021-04-08 14:48:11.000 -"Arcade Archives WILD WESTERN",01001B000D8B6000,online;status-playable,playable,2021-04-16 10:11:36.000 -"Arcade Classics Anniversary Collection",010050000D6C4000,status-playable,playable,2021-06-03 13:55:10.000 -"ARCADE FUZZ",,status-playable,playable,2020-08-15 12:37:36.000 -"Arcade Spirits",,status-playable,playable,2020-06-21 11:45:03.000 -"Arcaea",0100E680149DC000,status-playable,playable,2023-03-16 19:31:21.000 -"Arcanoid Breakout",0100E53013E1C000,status-playable,playable,2021-01-25 23:28:02.000 -"Archaica: Path of LightInd",,crash;status-nothing,nothing,2020-10-16 13:22:26.000 -"Area 86",,status-playable,playable,2020-12-16 16:45:52.000 -"ARIA CHRONICLE",0100691013C46000,status-playable,playable,2022-11-16 13:50:55.000 -"Ark: Survival Evolved",0100D4A00B284000,gpu;status-ingame;nvdec;online-broken;UE4;ldn-untested,ingame,2024-04-16 00:53:56.000 -"Arkanoid vs Space Invaders",,services;status-ingame,ingame,2021-01-21 12:50:30.000 -"Arkham Horror: Mother's Embrace",010069A010606000,nvdec;status-playable,playable,2021-04-19 15:40:55.000 -"Armed 7 DX",,status-playable,playable,2020-12-14 11:49:56.000 -"Armello",,nvdec;status-playable,playable,2021-01-07 11:43:26.000 -"ARMS",01009B500007C000,status-playable;ldn-works;LAN,playable,2024-08-28 07:49:24.000 -"ARMS Demo",,status-playable,playable,2021-02-10 16:30:13.000 -"Arrest of a stone Buddha",0100184011B32000,status-nothing;crash,nothing,2022-12-07 16:55:00.000 -"Arrog",,status-playable,playable,2020-12-16 17:20:50.000 -"Art of Balance",01008EC006BE2000,gpu;status-ingame;ldn-works,ingame,2022-07-21 17:13:57.000 -"Art of Balance DEMO",010062F00CAE2000,gpu;slow;status-ingame,ingame,2021-02-10 17:17:12.000 -"Art Sqool",01006AA013086000,status-playable;nvdec,playable,2022-10-16 20:42:37.000 -"Artifact Adventure Gaiden DX",,status-playable,playable,2020-12-16 17:49:25.000 -"Ary and the Secret of Seasons",0100C2500CAB6000,status-playable,playable,2022-10-07 20:45:09.000 -"ASCENDANCE",,status-playable,playable,2021-01-05 10:54:40.000 -"Asemblance",,UE4;gpu;status-ingame,ingame,2020-12-16 18:01:23.000 -"Ash of Gods: Redemption",,deadlock;status-nothing,nothing,2020-08-10 18:08:32.000 -"Ashen",010027B00E40E000,status-playable;nvdec;online-broken;UE4,playable,2022-09-17 12:19:14.000 -"Asphalt 9: Legends",01007B000C834000,services;status-menus;crash;online-broken,menus,2022-12-07 13:28:29.000 -"Assassin's Creed III Remastered",01007F600B134000,status-boots;nvdec,boots,2024-06-25 20:12:11.000 -"Assassin's Creed The Rebel Collection",010044700DEB0000,gpu;status-ingame,ingame,2024-05-19 07:58:56.000 -"Assault Android Cactus+",0100DF200B24C000,status-playable,playable,2021-06-03 13:23:55.000 -"Assault Chainguns KM",,crash;gpu;status-ingame,ingame,2020-12-14 12:48:34.000 -"Assault on Metaltron Demo",0100C5E00E540000,status-playable,playable,2021-02-10 19:48:06.000 -"Astebreed",010057A00C1F6000,status-playable,playable,2022-07-21 17:33:54.000 -"Asterix & Obelix XXL 2",010050400BD38000,deadlock;status-ingame;nvdec,ingame,2022-07-21 17:54:14.000 -"Asterix & Obelix XXL: Romastered",0100F46011B50000,gpu;status-ingame;nvdec;opengl,ingame,2023-08-16 21:22:06.000 -"Asterix & Obelix XXL3: The Crystal Menhir",010081500EA1E000,gpu;status-ingame;nvdec;regression,ingame,2022-11-28 14:19:23.000 -"Astral Chain",01007300020FA000,status-playable,playable,2024-07-17 18:02:19.000 -"Astro Bears Party",,status-playable,playable,2020-05-28 11:21:58.000 -"Astro Duel Deluxe",0100F0400351C000,32-bit;status-playable,playable,2021-06-03 11:21:48.000 -"Astrologaster",0100B80010C48000,cpu;status-nothing;32-bit;crash,nothing,2023-06-28 15:39:31.000 -"AstroWings SpaceWar",,status-playable,playable,2020-12-14 13:10:44.000 -"Atari 50 The Anniversary Celebration",010099801870E000,slow;status-playable,playable,2022-11-14 19:42:10.000 -"Atelier Ayesha: The Alchemist of Dusk DX",0100D9D00EE8C000,status-menus;crash;nvdec;Needs Update,menus,2021-11-24 07:29:54.000 -"Atelier Escha & Logy: Alchemists Of The Dusk Sky DX",0100E5600EE8E000,status-playable;nvdec,playable,2022-11-20 16:01:41.000 -"Atelier Firis: The Alchemist and the Mysterious Journey DX",010023201421E000,gpu;status-ingame;nvdec,ingame,2022-10-25 22:46:19.000 -"Atelier Lulua ~ The Scion of Arland ~",,nvdec;status-playable,playable,2020-12-16 14:29:19.000 -"Atelier Lydie & Suelle: The Alchemists and the Mysterious Paintings",010009900947A000,nvdec;status-playable,playable,2021-06-03 18:37:01.000 -"Atelier Meruru ~ The Apprentice of Arland ~ DX",,nvdec;status-playable,playable,2020-06-12 00:50:48.000 -"Atelier Rorona - The Alchemist of Arland - DX",010088600C66E000,nvdec;status-playable,playable,2021-04-08 15:33:15.000 -"Atelier Rorona Arland no Renkinjutsushi DX (JP)",01002D700B906000,status-playable;nvdec,playable,2022-12-02 17:26:54.000 -"Atelier Ryza 2: Lost Legends & the Secret Fairy",01009A9012022000,status-playable,playable,2022-10-16 21:06:06.000 -"Atelier Ryza: Ever Darkness & the Secret Hideout",0100D1900EC80000,status-playable,playable,2023-10-15 16:36:50.000 -"Atelier Shallie: Alchemists of the Dusk Sea DX",,nvdec;status-playable,playable,2020-11-25 20:54:12.000 -"Atelier Sophie 2: The Alchemist of the Mysterious Dream",010082A01538E000,status-ingame;crash,ingame,2022-12-01 04:34:03.000 -"Atelier Sophie: The Alchemist of the Mysterious Book DX",01001A5014220000,status-playable,playable,2022-10-25 23:06:20.000 -"Atelier Totori ~ The Adventurer of Arland ~ DX",,nvdec;status-playable,playable,2020-06-12 01:04:56.000 -"ATOM RPG",0100B9400FA38000,status-playable;nvdec,playable,2022-10-22 10:11:48.000 -"Atomic Heist",01005FE00EC4E000,status-playable,playable,2022-10-16 21:24:32.000 -"Atomicrops",0100AD30095A4000,status-playable,playable,2022-08-06 10:05:07.000 -"ATOMIK RunGunJumpGun",,status-playable,playable,2020-12-14 13:19:24.000 -"ATOMINE",,gpu;nvdec;slow;status-playable,playable,2020-12-14 18:56:50.000 -"Attack of the Toy Tanks",,slow;status-ingame,ingame,2020-12-14 12:59:12.000 -"Attack on Titan 2",,status-playable,playable,2021-01-04 11:40:01.000 -"ATV Drift & Tricks",01000F600B01E000,UE4;online;status-playable,playable,2021-04-08 17:29:17.000 -"Automachef",,status-playable,playable,2020-12-16 19:51:25.000 -"Automachef Demo",01006B700EA6A000,status-playable,playable,2021-02-10 20:35:37.000 -"Aviary Attorney: Definitive Edition",,status-playable,playable,2020-08-09 20:32:12.000 -"Avicii Invector",,status-playable,playable,2020-10-25 12:12:56.000 -"AVICII Invector Demo",0100E100128BA000,status-playable,playable,2021-02-10 21:04:58.000 -"AvoCuddle",,status-playable,playable,2020-09-02 14:50:13.000 -"Awakening of Cthulhu",0100085012D64000,UE4;status-playable,playable,2021-04-26 13:03:07.000 -"Away: Journey to the Unexpected",01002F1005F3C000,status-playable;nvdec;vulkan-backend-bug,playable,2022-11-06 15:31:04.000 -"Awesome Pea",,status-playable,playable,2020-10-11 12:39:23.000 -"Awesome Pea (Demo)",010023800D3F2000,status-playable,playable,2021-02-10 21:48:21.000 -"Awesome Pea 2",0100B7D01147E000,status-playable,playable,2022-10-01 12:34:19.000 -"Awesome Pea 2 (Demo) - 0100D2011E28000",,crash;status-nothing,nothing,2021-02-10 22:08:27.000 -"Axes",0100DA3011174000,status-playable,playable,2021-04-08 13:01:58.000 -"Axiom Verge",,status-playable,playable,2020-10-20 01:07:18.000 -"Ayakashi koi gikyoku Free Trial",010075400DEC6000,status-playable,playable,2021-02-10 22:22:11.000 -"Azur Lane: Crosswave",01006AF012FC8000,UE4;nvdec;status-playable,playable,2021-04-05 15:15:25.000 -"Azuran Tales: Trials",,status-playable,playable,2020-08-12 15:23:07.000 -"Azure Reflections",01006FB00990E000,nvdec;online;status-playable,playable,2021-04-08 13:18:25.000 -"Azure Striker GUNVOLT 3",01004E90149AA000,status-playable,playable,2022-08-10 13:46:49.000 -"Azure Striker Gunvolt: STRIKER PACK",0100192003FA4000,32-bit;status-playable,playable,2024-02-10 23:51:21.000 -"Azurebreak Heroes",,status-playable,playable,2020-12-16 21:26:17.000 -"B.ARK",01009B901145C000,status-playable;nvdec,playable,2022-11-17 13:35:02.000 -"Baba Is You",01002CD00A51C000,status-playable,playable,2022-07-17 05:36:54.000 -"Back to Bed",,nvdec;status-playable,playable,2020-12-16 20:52:04.000 -"Backworlds",0100FEA014316000,status-playable,playable,2022-10-25 23:20:34.000 -"BaconMan",0100EAF00E32E000,status-menus;crash;nvdec,menus,2021-11-20 02:36:21.000 -"Bad Dream: Coma",01000CB00D094000,deadlock;status-boots,boots,2023-08-03 00:54:18.000 -"Bad Dream: Fever",0100B3B00D81C000,status-playable,playable,2021-06-04 18:33:12.000 -"Bad Dudes",,status-playable,playable,2020-12-10 12:30:56.000 -"Bad North",0100E98006F22000,status-playable,playable,2022-07-17 13:44:25.000 -"Bad North Demo",,status-playable,playable,2021-02-10 22:48:38.000 -"BAFL",,status-playable,playable,2021-01-13 08:32:51.000 -"Baila Latino",010076B011EC8000,status-playable,playable,2021-04-14 16:40:24.000 -"Bakugan Champions of Vestroia",,status-playable,playable,2020-11-06 19:07:39.000 -"Bakumatsu Renka SHINSENGUMI",01008260138C4000,status-playable,playable,2022-10-25 23:37:31.000 -"Balan Wonderworld",0100438012EC8000,status-playable;nvdec;UE4,playable,2022-10-22 13:08:43.000 -"Balan Wonderworld Demo",0100E48013A34000,gpu;services;status-ingame;UE4;demo,ingame,2023-02-16 20:05:07.000 -"Balatro",0100CD801CE5E000,status-ingame,ingame,2024-04-21 02:01:53.000 -"Baldur's Gate and Baldur's Gate II: Enhanced Editions",010010A00DA48000,32-bit;status-playable,playable,2022-09-12 23:52:15.000 -"Balthazar's Dreams",0100BC400FB64000,status-playable,playable,2022-09-13 00:13:22.000 -"Bamerang",01008D30128E0000,status-playable,playable,2022-10-26 00:29:39.000 -"Bang Dream Girls Band Party for Nintendo Switch",,status-playable,playable,2021-09-19 03:06:58.000 -"Banner of the Maid",010013C010C5C000,status-playable,playable,2021-06-14 15:23:37.000 -"Banner Saga 2",,crash;status-boots,boots,2021-01-13 08:56:09.000 -"Banner Saga 3",,slow;status-boots,boots,2021-01-11 16:53:57.000 -"Banner Saga Trilogy",0100CE800B94A000,slow;status-playable,playable,2024-03-06 11:25:20.000 -"Baobabs Mauseoleum Ep 1: Ovnifagos Don't Eat Flamingos",,status-playable,playable,2020-07-15 05:06:29.000 -"Baobabs Mausoleum Ep.3: Un Pato en Muertoburgo",,nvdec;status-playable,playable,2020-12-17 11:43:10.000 -"Baobabs Mausoleum Ep2: 1313 Barnabas Dead Ends Drive",,status-playable,playable,2020-12-17 11:22:50.000 -"Baobabs Mausoleum: DEMO",0100D3000AEC2000,status-playable,playable,2021-02-10 22:59:25.000 -"Barbarous! Tavern of Emyr",01003350102E2000,status-playable,playable,2022-10-16 21:50:24.000 -"Barbearian",0100F7E01308C000,Needs Update;gpu;status-ingame,ingame,2021-06-28 16:27:50.000 -"Baron: Fur Is Gonna Fly",010039C0106C6000,status-boots;crash,boots,2022-02-06 02:05:43.000 -"Barry Bradford's Putt Panic Party",,nvdec;status-playable,playable,2020-06-17 01:08:34.000 -"Baseball Riot",01004860080A0000,status-playable,playable,2021-06-04 18:07:27.000 -"Bass Pro Shops: The Strike - Championship Edition",0100E3100450E000,gpu;status-boots;32-bit,boots,2022-12-09 15:58:16.000 -"Bastion",010038600B27E000,status-playable,playable,2022-02-15 14:15:24.000 -"Batbarian: Testament of the Primordials",,status-playable,playable,2020-12-17 12:00:59.000 -"Baten Kaitos I & II HD Remaster (Europe/USA)",0100C07018CA6000,services;status-boots;Needs Update,boots,2023-10-01 00:44:32.000 -"Baten Kaitos I & II HD Remaster (Japan)",0100F28018CA4000,services;status-boots;Needs Update,boots,2023-10-24 23:11:54.000 -"Batman - The Telltale Series",,nvdec;slow;status-playable,playable,2021-01-11 18:19:35.000 -"Batman: Arkham City",01003f00163ce000,status-playable,playable,2024-09-11 00:30:19.000 -"Batman: Arkham Knight",0100ACD0163D0000,gpu;status-ingame;mac-bug,ingame,2024-06-25 20:24:42.000 -"Batman: The Enemy Within",,crash;status-nothing,nothing,2020-10-16 05:49:27.000 -"Battle Axe",0100747011890000,status-playable,playable,2022-10-26 00:38:01.000 -"Battle Chasers: Nightwar",,nvdec;slow;status-playable,playable,2021-01-12 12:27:34.000 -"Battle Chef Brigade",,status-playable,playable,2021-01-11 14:16:28.000 -"Battle Chef Brigade Demo",0100DBB00CAEE000,status-playable,playable,2021-02-10 23:15:07.000 -"Battle Hunters",0100A3B011EDE000,gpu;status-ingame,ingame,2022-11-12 09:19:17.000 -"Battle of Kings",,slow;status-playable,playable,2020-12-17 12:45:23.000 -"Battle Planet - Judgement Day",,status-playable,playable,2020-12-17 14:06:20.000 -"Battle Princess Madelyn",,status-playable,playable,2021-01-11 13:47:23.000 -"Battle Princess Madelyn Royal Edition",0100A7500DF64000,status-playable,playable,2022-09-26 19:14:49.000 -"Battle Supremacy - Evolution",010099B00E898000,gpu;status-boots;nvdec,boots,2022-02-17 09:02:50.000 -"Battle Worlds: Kronos",0100DEB00D5A8000,nvdec;status-playable,playable,2021-06-04 17:48:02.000 -"Battleground",0100650010DD4000,status-ingame;crash,ingame,2021-09-06 11:53:23.000 -"BATTLESLOTHS",,status-playable,playable,2020-10-03 08:32:22.000 -"BATTLESTAR GALACTICA Deadlock",,nvdec;status-playable,playable,2020-06-27 17:35:44.000 -"Battlezone Gold Edition",01006D800A988000,gpu;ldn-untested;online;status-boots,boots,2021-06-04 18:36:05.000 -"BATTLLOON",,status-playable,playable,2020-12-17 15:48:23.000 -"bayala - the game",0100194010422000,status-playable,playable,2022-10-04 14:09:25.000 -"Bayonetta",010076F0049A2000,status-playable;audout,playable,2022-11-20 15:51:59.000 -"Bayonetta 2",01007960049A0000,status-playable;nvdec;ldn-works;LAN,playable,2022-11-26 03:46:09.000 -"Bayonetta 3",01004A4010FEA000,gpu;status-ingame;crash;nvdec;vulkan-backend-bug;opengl-backend-bug;amd-vendor-bug;ASTC,ingame,2024-09-28 14:34:33.000 -"Bayonetta Origins Cereza and the Lost Demon Demo",010002801A3FA000,gpu;status-ingame;demo,ingame,2024-02-17 06:06:28.000 -"Bayonetta Origins: Cereza and the Lost Demon",0100CF5010FEC000,gpu;status-ingame,ingame,2024-02-27 01:39:49.000 -"Be-A Walker",,slow;status-ingame,ingame,2020-09-02 15:00:31.000 -"Beach Buggy Racing",010095C00406C000,online;status-playable,playable,2021-04-13 23:16:50.000 -"Bear With Me - The Lost Robots",010020700DE04000,nvdec;status-playable,playable,2021-02-27 14:20:10.000 -"Bear With Me - The Lost Robots Demo",010024200E97E800,nvdec;status-playable,playable,2021-02-12 22:38:12.000 -"Bear's Restaurant - 0100CE014A4E000",,status-playable,playable,2024-08-11 21:26:59.000 -"BEAST Darling! ~Kemomimi Danshi to Himitsu no Ryou~",,crash;status-menus,menus,2020-10-04 06:12:08.000 -"Beat Cop",,status-playable,playable,2021-01-06 19:26:48.000 -"Beat Me!",01002D20129FC000,status-playable;online-broken,playable,2022-10-16 21:59:26.000 -"Beautiful Desolation",01006B0014590000,gpu;status-ingame;nvdec,ingame,2022-10-26 10:34:38.000 -"Bee Simulator",,UE4;crash;status-boots,boots,2020-07-15 12:13:13.000 -"BeeFense BeeMastered",010018F007786000,status-playable,playable,2022-11-17 15:38:12.000 -"Behold the Kickmen",,status-playable,playable,2020-06-27 12:49:45.000 -"Beholder",,status-playable,playable,2020-10-16 12:48:58.000 -"Ben 10",01006E1004404000,nvdec;status-playable,playable,2021-02-26 14:08:35.000 -"Ben 10: Power Trip",01009CD00E3AA000,status-playable;nvdec,playable,2022-10-09 10:52:12.000 -"Bendy and the Ink Machine",010074500BBC4000,status-playable,playable,2023-05-06 20:35:39.000 -"Bertram Fiddle Episode 2: A Bleaker Predicklement",010021F00C1C0000,nvdec;status-playable,playable,2021-02-22 14:56:37.000 -"Beyblade Burst Battle Zero",010068600AD16000,services;status-menus;crash;Needs Update,menus,2022-11-20 15:48:32.000 -"Beyond Enemy Lines: Covert Operations",010056500CAD8000,status-playable;UE4,playable,2022-10-01 13:11:50.000 -"Beyond Enemy Lines: Essentials",0100B8F00DACA000,status-playable;nvdec;UE4,playable,2022-09-26 19:48:16.000 -"Bibi & Tina - Adventures with Horses",,nvdec;slow;status-playable,playable,2021-01-13 08:58:09.000 -"Bibi & Tina at the horse farm",010062400E69C000,status-playable,playable,2021-04-06 16:31:39.000 -"Bibi Blocksberg - Big Broom Race 3",,status-playable,playable,2021-01-11 19:07:16.000 -"Big Buck Hunter Arcade",,nvdec;status-playable,playable,2021-01-12 20:31:39.000 -"Big Crown: Showdown",010088100C35E000,status-menus;nvdec;online;ldn-untested,menus,2022-07-17 18:25:32.000 -"Big Dipper",0100A42011B28000,status-playable,playable,2021-06-14 15:08:19.000 -"Big Drunk Satanic Massacre",01002FA00DE72000,status-playable,playable,2021-03-04 21:28:22.000 -"Big Pharma",,status-playable,playable,2020-07-14 15:27:30.000 -"BIG-Bobby-Car - The Big Race",,slow;status-playable,playable,2020-12-10 14:25:06.000 -"Billion Road",010057700FF7C000,status-playable,playable,2022-11-19 15:57:43.000 -"BINGO for Nintendo Switch",,status-playable,playable,2020-07-23 16:17:36.000 -"Biomutant",01004BA017CD6000,status-ingame;crash,ingame,2024-05-16 15:46:36.000 -"BioShock 2 Remastered",01002620102C6000,services;status-nothing,nothing,2022-10-29 14:39:22.000 -"BioShock Infinite: The Complete Edition",0100D560102C8000,services-horizon;status-nothing;crash,nothing,2024-08-11 21:35:01.000 -"BioShock Remastered",0100AD10102B2000,services-horizon;status-boots;crash;Needs Update,boots,2024-06-06 01:08:52.000 -"Biped",010053B0117F8000,status-playable;nvdec,playable,2022-10-01 13:32:58.000 -"Bird Game +",01001B700B278000,status-playable;online,playable,2022-07-17 18:41:57.000 -"Birds and Blocks Demo",0100B6B012FF4000,services;status-boots;demo,boots,2022-04-10 04:53:03.000 -"BIT.TRIP RUNNER",0100E62012D3C000,status-playable,playable,2022-10-17 14:23:24.000 -"BIT.TRIP VOID",01000AD012D3A000,status-playable,playable,2022-10-17 14:31:23.000 -"Bite the Bullet",,status-playable,playable,2020-10-14 23:10:11.000 -"Bitmaster",010026E0141C8000,status-playable,playable,2022-12-13 14:05:51.000 -"Biz Builder Delux",,slow;status-playable,playable,2020-12-15 21:36:25.000 -"Black Book",0100DD1014AB8000,status-playable;nvdec,playable,2022-12-13 16:38:53.000 -"Black Future '88",010049000B69E000,status-playable;nvdec,playable,2022-09-13 11:24:37.000 -"Black Hole Demo",01004BE00A682000,status-playable,playable,2021-02-12 23:02:17.000 -"Black Legend",0100C3200E7E6000,gpu;status-ingame;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-10-22 12:54:48.000 -"Blackjack Hands",,status-playable,playable,2020-11-30 14:04:51.000 -"Blackmoor2",0100A0A00E660000,status-playable;online-broken,playable,2022-09-26 20:26:34.000 -"Blacksad: Under the Skin",010032000EA2C000,status-playable,playable,2022-09-13 11:38:04.000 -"Blacksea Odyssey",01006B400C178000,status-playable;nvdec,playable,2022-10-16 22:14:34.000 -"Blacksmith of the Sand Kingdom",010068E013450000,status-playable,playable,2022-10-16 22:37:44.000 -"BLADE ARCUS Rebellion From Shining",0100C4400CB7C000,status-playable,playable,2022-07-17 18:52:28.000 -"Blade Assault",0100EA1018A2E000,audio;status-nothing,nothing,2024-04-29 14:32:50.000 -"Blade II The Return of Evil",01009CC00E224000,audio;status-ingame;crash;UE4,ingame,2021-11-14 02:49:59.000 -"Blade Strangers",01005950022EC000,status-playable;nvdec,playable,2022-07-17 19:02:43.000 -"Bladed Fury",0100DF0011A6A000,status-playable,playable,2022-10-26 11:36:26.000 -"Blades of Time",0100CFA00CC74000,deadlock;status-boots;online,boots,2022-07-17 19:19:58.000 -"Blair Witch",01006CC01182C000,status-playable;nvdec;UE4,playable,2022-10-01 14:06:16.000 -"Blanc",010039501405E000,gpu;slow;status-ingame,ingame,2023-02-22 14:00:13.000 -"Blasphemous",0100698009C6E000,nvdec;status-playable,playable,2021-03-01 12:15:31.000 -"Blasphemous Demo",0100302010338000,status-playable,playable,2021-02-12 23:49:56.000 -"Blaster Master Zero",0100225000FEE000,32-bit;status-playable,playable,2021-03-05 13:22:33.000 -"Blaster Master Zero 2",01005AA00D676000,status-playable,playable,2021-04-08 15:22:59.000 -"Blaster Master Zero DEMO",010025B002E92000,status-playable,playable,2021-02-12 23:59:06.000 -"BLAZBLUE CENTRALFICTION Special Edition",,nvdec;status-playable,playable,2020-12-15 23:50:04.000 -"BlazBlue: Cross Tag Battle",,nvdec;online;status-playable,playable,2021-01-05 20:29:37.000 -"Blazing Beaks",,status-playable,playable,2020-06-04 20:37:06.000 -"Blazing Chrome",,status-playable,playable,2020-11-16 04:56:54.000 -"Bleep Bloop DEMO",010091700EA2A000,nvdec;status-playable,playable,2021-02-13 00:20:53.000 -"Blind Men",010089D011310000,audout;status-playable,playable,2021-02-20 14:15:38.000 -"Blizzard Arcade Collection",0100743013D56000,status-playable;nvdec,playable,2022-08-03 19:37:26.000 -"BlobCat",0100F3500A20C000,status-playable,playable,2021-04-23 17:09:30.000 -"Block-a-Pix Deluxe Demo",0100E1C00DB6C000,status-playable,playable,2021-02-13 00:37:39.000 -"Bloo Kid",0100C6A01AD56000,status-playable,playable,2024-05-01 17:18:04.000 -"Bloo Kid 2",010055900FADA000,status-playable,playable,2024-05-01 17:16:57.000 -"Blood & Guts Bundle",,status-playable,playable,2020-06-27 12:57:35.000 -"Blood Waves",01007E700D17E000,gpu;status-ingame,ingame,2022-07-18 13:04:46.000 -"Blood will be Spilled",,nvdec;status-playable,playable,2020-12-17 03:02:03.000 -"Bloodstained: Curse of the Moon",,status-playable,playable,2020-09-04 10:42:17.000 -"Bloodstained: Curse of the Moon 2",,status-playable,playable,2020-09-04 10:56:27.000 -"Bloodstained: Ritual of the Night",010025A00DF2A000,status-playable;nvdec;UE4,playable,2022-07-18 14:27:35.000 -"Bloody Bunny : The Game",0100E510143EC000,status-playable;nvdec;UE4,playable,2022-10-22 13:18:55.000 -"Bloons TD 5",0100B8400A1C6000,Needs Update;audio;gpu;services;status-boots,boots,2021-04-18 23:02:46.000 -"Blossom Tales",0100C1000706C000,status-playable,playable,2022-07-18 16:43:07.000 -"Blossom Tales Demo",01000EB01023E000,status-playable,playable,2021-02-13 14:22:53.000 -"Blue Fire",010073B010F6E000,status-playable;UE4,playable,2022-10-22 14:46:11.000 -"Body of Evidence",0100721013510000,status-playable,playable,2021-04-25 22:22:11.000 -"Bohemian Killing",0100AD1010CCE000,status-playable;vulkan-backend-bug,playable,2022-09-26 22:41:37.000 -"Boku to Nurse no Kenshuu Nisshi",010093700ECEC000,status-playable,playable,2022-11-21 20:38:34.000 -"Bokujou Monogatari Saikai no Mineraru Taun (Story of Seasons: Friends of Mineral Town)",01001D900D9AC000,slow;status-ingame;crash;Needs Update,ingame,2022-04-24 22:46:04.000 -"Bomb Rush Cyberfunk",0100317014B7C000,status-playable,playable,2023-09-28 19:51:57.000 -"Bomber Crew",01007900080B6000,status-playable,playable,2021-06-03 14:21:28.000 -"Bomber Fox",0100A1F012948000,nvdec;status-playable,playable,2021-04-19 17:58:13.000 -"Bombslinger",010087300445A000,services;status-menus,menus,2022-07-19 12:53:15.000 -"Book of Demons",01007A200F452000,status-playable,playable,2022-09-29 12:03:43.000 -"Bookbound Brigade",,status-playable,playable,2020-10-09 14:30:29.000 -"Boom Blaster",,status-playable,playable,2021-03-24 10:55:56.000 -"Boomerang Fu",010081A00EE62000,status-playable,playable,2024-07-28 01:12:41.000 -"Boomerang Fu Demo Version",010069F0135C4000,demo;status-playable,playable,2021-02-13 14:38:13.000 -"Borderlands 2: Game of the Year Edition",010096F00FF22000,status-playable,playable,2022-04-22 18:35:07.000 -"Borderlands 3",01009970122E4000,gpu;status-ingame,ingame,2024-07-15 04:38:14.000 -"Borderlands: Game of the Year Edition",010064800F66A000,slow;status-ingame;online-broken;ldn-untested,ingame,2023-07-23 21:10:36.000 -"Borderlands: The Pre-Sequel Ultimate Edition",010007400FF24000,nvdec;status-playable,playable,2021-06-09 20:17:10.000 -"Boreal Blade",01008E500AFF6000,gpu;ldn-untested;online;status-ingame,ingame,2021-06-11 15:37:14.000 -"Boris The Rocket",010092C013FB8000,status-playable,playable,2022-10-26 13:23:09.000 -"Bossgard",010076F00EBE4000,status-playable;online-broken,playable,2022-10-04 14:21:13.000 -"Bot Vice Demo",010069B00EAC8000,crash;demo;status-ingame,ingame,2021-02-13 14:52:42.000 -"Bouncy Bob 2",,status-playable,playable,2020-07-14 16:51:53.000 -"Bounty Battle",0100E1200DC1A000,status-playable;nvdec,playable,2022-10-04 14:40:51.000 -"Bow to Blood: Last Captain Standing",,slow;status-playable,playable,2020-10-23 10:51:21.000 -"BOX Align",,crash;services;status-nothing,nothing,2020-04-03 17:26:56.000 -"BOXBOY! + BOXGIRL!",,status-playable,playable,2020-11-08 01:11:54.000 -"BOXBOY! + BOXGIRL! Demo",0100B7200E02E000,demo;status-playable,playable,2021-02-13 14:59:08.000 -"BQM BlockQuest Maker",,online;status-playable,playable,2020-07-31 20:56:50.000 -"Bramble The Mountain King",0100E87017D0E000,services-horizon;status-playable,playable,2024-03-06 09:32:17.000 -"Brave Dungeon + Dark Witch's Story: COMBAT",,status-playable,playable,2021-01-12 21:06:34.000 -"Bravely Default II",01006DC010326000,gpu;status-ingame;crash;Needs Update;UE4,ingame,2024-04-26 06:11:26.000 -"Bravely Default II Demo",0100B6801137E000,gpu;status-ingame;crash;UE4;demo,ingame,2022-09-27 05:39:47.000 -"BraveMatch",010081501371E000,status-playable;UE4,playable,2022-10-26 13:32:15.000 -"Bravery and Greed",0100F60017D4E000,gpu;deadlock;status-boots,boots,2022-12-04 02:23:47.000 -"Brawl",,nvdec;slow;status-playable,playable,2020-06-04 14:23:18.000 -"Brawl Chess",010068F00F444000,status-playable;nvdec,playable,2022-10-26 13:59:17.000 -"Brawlhalla",0100C6800B934000,online;opengl;status-playable,playable,2021-06-03 18:26:09.000 -"Brawlout",010060200A4BE000,ldn-untested;online;status-playable,playable,2021-06-04 17:35:35.000 -"Brawlout Demo",0100C1B00E1CA000,demo;status-playable,playable,2021-02-13 22:46:53.000 -"Breakout: Recharged",010022C016DC8000,slow;status-ingame,ingame,2022-11-06 15:32:57.000 -"Breathedge",01000AA013A5E000,UE4;nvdec;status-playable,playable,2021-05-06 15:44:28.000 -"Breathing Fear",,status-playable,playable,2020-07-14 15:12:29.000 -"Brick Breaker",,crash;status-ingame,ingame,2020-12-15 17:03:59.000 -"Brick Breaker",,nvdec;online;status-playable,playable,2020-12-15 18:26:23.000 -"Bridge 3",,status-playable,playable,2020-10-08 20:47:24.000 -"Bridge Constructor: The Walking Dead",,gpu;slow;status-ingame,ingame,2020-12-11 17:31:32.000 -"Brigandine: The Legend of Runersia",010011000EA7A000,status-playable,playable,2021-06-20 06:52:25.000 -"Brigandine: The Legend of Runersia Demo",0100703011258000,status-playable,playable,2021-02-14 14:44:10.000 -"Bring Them Home",01000BF00BE40000,UE4;status-playable,playable,2021-04-12 14:14:43.000 -"Broforce",010060A00B53C000,ldn-untested;online;status-playable,playable,2021-05-28 12:23:38.000 -"Broken Age",0100EDD0068A6000,status-playable,playable,2021-06-04 17:40:32.000 -"Broken Lines",,status-playable,playable,2020-10-16 00:01:37.000 -"Broken Sword 5 - the Serpent's Curse",01001E60085E6000,status-playable,playable,2021-06-04 17:28:59.000 -"Brotherhood United Demo",0100F19011226000,demo;status-playable,playable,2021-02-14 21:10:57.000 -"Brothers: A Tale of Two Sons",01000D500D08A000,status-playable;nvdec;UE4,playable,2022-07-19 14:02:22.000 -"Brunch Club",,status-playable,playable,2020-06-24 13:54:07.000 -"Bubble Bobble 4 Friends",010010900F7B4000,nvdec;status-playable,playable,2021-06-04 15:27:55.000 -"Bubsy: Paws on Fire!",0100DBE00C554000,slow;status-ingame,ingame,2023-08-24 02:44:51.000 -"Bucket Knight",,crash;status-ingame,ingame,2020-09-04 13:11:24.000 -"Bucket Knight demo",0100F1B010A90000,demo;status-playable,playable,2021-02-14 21:23:09.000 -"Bud Spencer & Terence Hill - Slaps and Beans",01000D200AC0C000,status-playable,playable,2022-07-17 12:37:00.000 -"Bug Fables",,status-playable,playable,2020-06-09 11:27:00.000 -"BULLETSTORM: DUKE OF SWITCH EDITION",01003DD00D658000,status-playable;nvdec,playable,2022-03-03 08:30:24.000 -"BurgerTime Party!",,slow;status-playable,playable,2020-11-21 14:11:53.000 -"BurgerTime Party! Demo",01005780106E8000,demo;status-playable,playable,2021-02-14 21:34:16.000 -"Buried Stars",,status-playable,playable,2020-09-07 14:11:58.000 -"Burnout Paradise Remastered",0100DBF01000A000,nvdec;online;status-playable,playable,2021-06-13 02:54:46.000 -"Bury me, my Love",,status-playable,playable,2020-11-07 12:47:37.000 -"Bus Driver Simulator",010030D012FF6000,status-playable,playable,2022-10-17 13:55:27.000 -"BUSTAFELLOWS",,nvdec;status-playable,playable,2020-10-17 20:04:41.000 -"BUTCHER",,status-playable,playable,2021-01-11 18:50:17.000 -"Cabela's: The Hunt - Championship Edition",0100E24004510000,status-menus;32-bit,menus,2022-07-21 20:21:25.000 -"Cadence of Hyrule Crypt of the NecroDancer Featuring The Legend of Zelda",01000B900D8B0000,slow;status-playable;nvdec,playable,2024-04-01 22:43:40.000 -"Cadence of Hyrule Crypt of the NecroDancer Featuring The Legend of Zelda Demo - 010065700EE0600",,demo;gpu;nvdec;status-ingame,ingame,2021-02-14 21:48:15.000 -"Café Enchanté",,status-playable,playable,2020-11-13 14:54:25.000 -"Cafeteria Nipponica Demo",010060400D21C000,demo;status-playable,playable,2021-02-14 22:11:35.000 -"Cake Bash Demo",0100699012F82000,crash;demo;status-ingame,ingame,2021-02-14 22:21:15.000 -"Caladrius Blaze",01004FD00D66A000,deadlock;status-nothing;nvdec,nothing,2022-12-07 16:44:37.000 -"Calculation Castle: Greco's Ghostly Challenge ""Addition",,32-bit;status-playable,playable,2020-11-01 23:40:11.000 -"Calculation Castle: Greco's Ghostly Challenge ""Division",,32-bit;status-playable,playable,2020-11-01 23:54:55.000 -"Calculation Castle: Greco's Ghostly Challenge ""Multiplication",,32-bit;status-playable,playable,2020-11-02 00:04:33.000 -"Calculation Castle: Greco's Ghostly Challenge ""Subtraction",,32-bit;status-playable,playable,2020-11-01 23:47:42.000 -"Calculator",010004701504A000,status-playable,playable,2021-06-11 13:27:20.000 -"Calico",010013A00E750000,status-playable,playable,2022-10-17 14:44:28.000 -"Call of Cthulhu",010046000EE40000,status-playable;nvdec;UE4,playable,2022-12-18 03:08:30.000 -"Call of Juarez: Gunslinger",0100B4700BFC6000,gpu;status-ingame;nvdec,ingame,2022-09-17 16:49:46.000 -"Can't Drive This",0100593008BDC000,status-playable,playable,2022-10-22 14:55:17.000 -"Candle - The Power of the Flame",,nvdec;status-playable,playable,2020-05-26 12:10:20.000 -"Capcom Arcade Stadium",01001E0013208000,status-playable,playable,2021-03-17 05:45:14.000 -"Capcom Beat 'Em Up Bundle",,status-playable,playable,2020-03-23 18:31:24.000 -"CAPCOM BELT ACTION COLLECTION",0100F6400A77E000,status-playable;online;ldn-untested,playable,2022-07-21 20:51:23.000 -"Captain Toad: Treasure Tracker",01009BF0072D4000,32-bit;status-playable,playable,2024-04-25 00:50:16.000 -"Captain Toad: Treasure Tracker Demo",01002C400B6B6000,32-bit;demo;status-playable,playable,2021-02-14 22:36:09.000 -"CAPTAIN TSUBASA: RISE OF NEW CHAMPIONS",0100EAE010560000,status-playable;online-broken;vulkan-backend-bug,playable,2022-10-09 11:20:50.000 -"CAPTAIN TSUBASA: RISE OF NEW CHAMPIONS DEMO VERSION",01002320137CC000,slow;status-playable,playable,2021-02-14 22:45:35.000 -"Car Mechanic Manager",,status-playable,playable,2020-07-23 18:50:17.000 -"Car Quest",01007BD00AE70000,deadlock;status-menus,menus,2021-11-18 08:59:18.000 -"Caretaker",0100DA70115E6000,status-playable,playable,2022-10-04 14:52:24.000 -"Cargo Crew Driver",0100DD6014870000,status-playable,playable,2021-04-19 12:54:22.000 -"Carnival Games",010088C0092FE000,status-playable;nvdec,playable,2022-07-21 21:01:22.000 -"Carnivores: Dinosaur Hunt",,status-playable,playable,2022-12-14 18:46:06.000 -"CARRION",,crash;status-nothing,nothing,2020-08-13 17:15:12.000 -"Cars 3 Driven to Win",01008D1001512000,gpu;status-ingame,ingame,2022-07-21 21:21:05.000 -"Carto",0100810012A1A000,status-playable,playable,2022-09-04 15:37:06.000 -"Cartoon Network Adventure Time: Pirates of the Enchiridion",0100C4E004406000,status-playable;nvdec,playable,2022-07-21 21:49:01.000 -"Cartoon Network Battle Crashers",0100085003A2A000,status-playable,playable,2022-07-21 21:55:40.000 -"CASE 2: Animatronics Survival",0100C4C0132F8000,status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-10-09 11:45:03.000 -"Cassette Beasts",010066F01A0E0000,status-playable,playable,2024-07-22 20:38:43.000 -"Castle Crashers Remastered",010001300D14A000,gpu;status-boots,boots,2024-08-10 09:21:20.000 -"Castle Crashers Remastered Demo",0100F6D01060E000,gpu;status-boots;demo,boots,2022-04-10 10:57:10.000 -"Castle of Heart",01003C100445C000,status-playable;nvdec,playable,2022-07-21 23:10:45.000 -"Castle of No Escape 2",0100F5500FA0E000,status-playable,playable,2022-09-13 13:51:42.000 -"Castle Pals",0100DA2011F18000,status-playable,playable,2021-03-04 21:00:33.000 -"Castlestorm",010097C00AB66000,status-playable;nvdec,playable,2022-07-21 22:49:14.000 -"CastleStorm 2",,UE4;crash;nvdec;status-boots,boots,2020-10-25 11:22:44.000 -"Castlevania Anniversary Collection",,audio;status-playable,playable,2020-05-23 11:40:29.000 -"Cat Girl Without Salad: Amuse-Bouche",010076000C86E000,status-playable,playable,2022-09-03 13:01:47.000 -"Cat Quest",,status-playable,playable,2020-04-02 23:09:32.000 -"Cat Quest II",,status-playable,playable,2020-07-06 23:52:09.000 -"Cat Quest II Demo",0100E86010220000,demo;status-playable,playable,2021-02-15 14:11:57.000 -"Catherine Full Body",0100BF00112C0000,status-playable;nvdec,playable,2023-04-02 11:00:37.000 -"Catherine Full Body for Nintendo Switch (JP)",0100BAE0077E4000,Needs Update;gpu;status-ingame,ingame,2021-02-21 18:06:11.000 -"Cattails",010004400B28A000,status-playable,playable,2021-06-03 14:36:57.000 -"Cave Story+",,status-playable,playable,2020-05-22 09:57:25.000 -"Caveblazers",01001A100C0E8000,slow;status-ingame,ingame,2021-06-09 17:57:28.000 -"Caveman Warriors",,status-playable,playable,2020-05-22 11:44:20.000 -"Caveman Warriors Demo",,demo;status-playable,playable,2021-02-15 14:44:08.000 -"Celeste",,status-playable,playable,2020-06-17 10:14:40.000 -"Cendrillon palikA",01006B000A666000,gpu;status-ingame;nvdec,ingame,2022-07-21 22:52:24.000 -"CHAOS CODE -NEW SIGN OF CATASTROPHE-",01007600115CE000,status-boots;crash;nvdec,boots,2022-04-04 12:24:21.000 -"CHAOS;HEAD NOAH",0100957016B90000,status-playable,playable,2022-06-02 22:57:19.000 -"Charge Kid",0100F52013A66000,gpu;status-boots;audout,boots,2024-02-11 01:17:47.000 -"Chasm",,status-playable,playable,2020-10-23 11:03:43.000 -"Chasm: The Rift",010034301A556000,gpu;status-ingame,ingame,2024-04-29 19:02:48.000 -"Chess Ultra",0100A5900472E000,status-playable;UE4,playable,2023-08-30 23:06:31.000 -"Chicken Assassin: Reloaded",0100E3C00A118000,status-playable,playable,2021-02-20 13:29:01.000 -"Chicken Police - Paint it RED!",,nvdec;status-playable,playable,2020-12-10 15:10:11.000 -"Chicken Range",0100F6C00A016000,status-playable,playable,2021-04-23 12:14:23.000 -"Chicken Rider",,status-playable,playable,2020-05-22 11:31:17.000 -"Chickens Madness DEMO",0100CAC011C3A000,UE4;demo;gpu;nvdec;status-ingame,ingame,2021-02-15 15:02:10.000 -"Child of Light",,nvdec;status-playable,playable,2020-12-16 10:23:10.000 -"Children of Morta",01002DE00C250000,gpu;status-ingame;nvdec,ingame,2022-09-13 17:48:47.000 -"Children of Zodiarcs",,status-playable,playable,2020-10-04 14:23:33.000 -"Chinese Parents",010046F012A04000,status-playable,playable,2021-04-08 12:56:41.000 -"Chocobo GP",01006A30124CA000,gpu;status-ingame;crash,ingame,2022-06-04 14:52:18.000 -"Chocobo's Mystery Dungeon Every Buddy!",,slow;status-playable,playable,2020-05-26 13:53:13.000 -"Choices That Matter: And The Sun Went Out",,status-playable,playable,2020-12-17 15:44:08.000 -"Chou no Doku Hana no Kusari: Taishou Irokoi Ibun",,gpu;nvdec;status-ingame,ingame,2020-09-28 17:58:04.000 -"ChromaGun",,status-playable,playable,2020-05-26 12:56:42.000 -"Chronos",,UE4;gpu;nvdec;status-ingame,ingame,2020-12-11 22:16:35.000 -"Circle of Sumo",,status-playable,playable,2020-05-22 12:45:21.000 -"Circuits",01008FA00D686000,status-playable,playable,2022-09-19 11:52:50.000 -"Cities: Skylines - Nintendo Switch Edition",,status-playable,playable,2020-12-16 10:34:57.000 -"Citizens of Space",0100E4200D84E000,gpu;status-boots,boots,2023-10-22 06:45:44.000 -"Citizens Unite!: Earth x Space",0100D9C012900000,gpu;status-ingame,ingame,2023-10-22 06:44:19.000 -"City Bus Driving Simulator",01005E501284E000,status-playable,playable,2021-06-15 21:25:59.000 -"CLANNAD",0100A3A00CC7E000,status-playable,playable,2021-06-03 17:01:02.000 -"CLANNAD Side Stories - 01007B01372C000",,status-playable,playable,2022-10-26 15:03:04.000 -"Clash Force",01005ED0107F4000,status-playable,playable,2022-10-01 23:45:48.000 -"Claybook",010009300AA6C000,slow;status-playable;nvdec;online;UE4,playable,2022-07-22 11:11:34.000 -"Clea",,crash;status-ingame,ingame,2020-12-15 16:22:56.000 -"Clea 2",010045E0142A4000,status-playable,playable,2021-04-18 14:25:18.000 -"Clock Zero ~Shuuen no Ichibyou~ Devote",01008C100C572000,status-playable;nvdec,playable,2022-12-04 22:19:14.000 -"Clocker",0100DF9013AD4000,status-playable,playable,2021-04-05 15:05:13.000 -"Close to the Sun",0100B7200DAC6000,status-boots;crash;nvdec;UE4,boots,2021-11-04 09:19:41.000 -"Clubhouse Games: 51 Worldwide Classics",010047700D540000,status-playable;ldn-works,playable,2024-05-21 16:12:57.000 -"Clue",,crash;online;status-menus,menus,2020-11-10 09:23:48.000 -"ClusterPuck 99",,status-playable,playable,2021-01-06 00:28:12.000 -"Clustertruck",010096900A4D2000,slow;status-ingame,ingame,2021-02-19 21:07:09.000 -"Cobra Kai The Karate Kid Saga Continues",01005790110F0000,status-playable,playable,2021-06-17 15:59:13.000 -"COCOON",01002E700C366000,gpu;status-ingame,ingame,2024-03-06 11:33:08.000 -"Code of Princess EX",010034E005C9C000,nvdec;online;status-playable,playable,2021-06-03 10:50:13.000 -"CODE SHIFTER",,status-playable,playable,2020-08-09 15:20:55.000 -"Code: Realize ~Future Blessings~",010002400F408000,status-playable;nvdec,playable,2023-03-31 16:57:47.000 -"Coffee Crisis",0100CF800C810000,status-playable,playable,2021-02-20 12:34:52.000 -"Coffee Talk",,status-playable,playable,2020-08-10 09:48:44.000 -"Coffin Dodgers",0100178009648000,status-playable,playable,2021-02-20 14:57:41.000 -"Cold Silence",010035B01706E000,cpu;status-nothing;crash,nothing,2024-07-11 17:06:14.000 -"Collar X Malice",010083E00F40E000,status-playable;nvdec,playable,2022-10-02 11:51:56.000 -"Collar X Malice -Unlimited-",0100E3B00F412000,status-playable;nvdec,playable,2022-10-04 15:30:40.000 -"Collection of Mana",,status-playable,playable,2020-10-19 19:29:45.000 -"COLLECTION of SaGA FINAL FANTASY LEGEND",,status-playable,playable,2020-12-30 19:11:16.000 -"Collidalot",010030800BC36000,status-playable;nvdec,playable,2022-09-13 14:09:27.000 -"Color Zen",,status-playable,playable,2020-05-22 10:56:17.000 -"Colorgrid",,status-playable,playable,2020-10-04 01:50:52.000 -"Coloring Book",0100A7000BD28000,status-playable,playable,2022-07-22 11:17:05.000 -"Colors Live",010020500BD86000,gpu;services;status-boots;crash,boots,2023-02-26 02:51:07.000 -"Colossus Down",0100E2F0128B4000,status-playable,playable,2021-02-04 20:49:50.000 -"Commander Keen in Keen Dreams",0100C4D00D16A000,gpu;status-ingame,ingame,2022-08-04 20:34:20.000 -"Commander Keen in Keen Dreams: Definitive Edition",0100E400129EC000,status-playable,playable,2021-05-11 19:33:54.000 -"Commandos 2 HD Remaster",010065A01158E000,gpu;status-ingame;nvdec,ingame,2022-08-10 21:52:27.000 -"CONARIUM",010015801308E000,UE4;nvdec;status-playable,playable,2021-04-26 17:57:53.000 -"Concept Destruction",0100971011224000,status-playable,playable,2022-09-29 12:28:56.000 -"Conduct TOGETHER!",010043700C9B0000,nvdec;status-playable,playable,2021-02-20 12:59:00.000 -"Conga Master Party!",,status-playable,playable,2020-05-22 13:22:24.000 -"Connection Haunted",,slow;status-playable,playable,2020-12-10 18:57:14.000 -"Construction Simulator 3 - Console Edition",0100A5600FAC0000,status-playable,playable,2023-02-06 09:31:23.000 -"Constructor Plus",,status-playable,playable,2020-05-26 12:37:40.000 -"Contra Anniversary Collection",0100DCA00DA7E000,status-playable,playable,2022-07-22 11:30:12.000 -"CONTRA: ROGUE CORPS",,crash;nvdec;regression;status-menus,menus,2021-01-07 13:23:35.000 -"CONTRA: ROGUE CORPS Demo",0100B8200ECA6000,gpu;status-ingame,ingame,2022-09-04 16:46:52.000 -"Contraptions",01007D701298A000,status-playable,playable,2021-02-08 18:40:50.000 -"Control Ultimate Edition - Cloud Version",0100041013360000,Needs Update;crash;services;status-nothing,nothing,2021-04-18 22:34:06.000 -"Convoy",,status-playable,playable,2020-10-15 14:43:50.000 -"Cook, Serve, Delicious! 3?!",0100B82010B6C000,status-playable,playable,2022-10-09 12:09:34.000 -"Cooking Mama: Cookstar",010060700EFBA000,status-menus;crash;loader-allocator,menus,2021-11-20 03:19:35.000 -"Cooking Simulator",01001E400FD58000,status-playable,playable,2021-04-18 13:25:23.000 -"Cooking Tycoons 2: 3 in 1 Bundle",,status-playable,playable,2020-11-16 22:19:33.000 -"Cooking Tycoons: 3 in 1 Bundle",,status-playable,playable,2020-11-16 22:44:26.000 -"Copperbell",,status-playable,playable,2020-10-04 15:54:36.000 -"Corpse Party: Blood Drive",010016400B1FE000,nvdec;status-playable,playable,2021-03-01 12:44:23.000 -"Cosmic Fantasy Collection",0100CCB01B1A0000,status-ingame,ingame,2024-05-21 17:56:37.000 -"Cosmic Star Heroine",010067C00A776000,status-playable,playable,2021-02-20 14:30:47.000 -"COTTOn Reboot! [ コットン リブート! ]",01003DD00F94A000,status-playable,playable,2022-05-24 16:29:24.000 -"Cotton/Guardian Saturn Tribute Games",,gpu;status-boots,boots,2022-11-27 21:00:51.000 -"Couch Co-Op Bundle Vol. 2",01000E301107A000,status-playable;nvdec,playable,2022-10-02 12:04:21.000 -"Country Tales",0100C1E012A42000,status-playable,playable,2021-06-17 16:45:39.000 -"Cozy Grove",01003370136EA000,gpu;status-ingame,ingame,2023-07-30 22:22:19.000 -"Crash Bandicoot 4: It's About Time",010073401175E000,status-playable;nvdec;UE4,playable,2024-03-17 07:13:45.000 -"Crash Bandicoot N. Sane Trilogy",0100D1B006744000,status-playable,playable,2024-02-11 11:38:14.000 -"Crash Drive 2",,online;status-playable,playable,2020-12-17 02:45:46.000 -"Crash Dummy",,nvdec;status-playable,playable,2020-05-23 11:12:43.000 -"Crash Team Racing Nitro-Fueled",0100F9F00C696000,gpu;status-ingame;nvdec;online-broken,ingame,2023-06-25 02:40:17.000 -"Crashbots",0100BF200CD74000,status-playable,playable,2022-07-22 13:50:52.000 -"Crashlands",010027100BD16000,status-playable,playable,2021-05-27 20:30:06.000 -"Crawl",,status-playable,playable,2020-05-22 10:16:05.000 -"Crayola Scoot",0100C66007E96000,status-playable;nvdec,playable,2022-07-22 14:01:55.000 -"Crayon Shin-chan Ora to Hakase no Natsuyasumi Owaranai Nanokakan no Tabi",01005BA00F486000,status-playable,playable,2021-07-21 10:41:33.000 -"Crayon Shin-chan The Storm Called Flaming Kasukabe Runner!",,services;status-menus,menus,2020-03-20 14:00:57.000 -"Crazy Strike Bowling EX",,UE4;gpu;nvdec;status-ingame,ingame,2020-08-07 18:15:59.000 -"Crazy Zen Mini Golf",,status-playable,playable,2020-08-05 14:00:00.000 -"Creaks",,status-playable,playable,2020-08-15 12:20:52.000 -"Creature in the Well",,UE4;gpu;status-ingame,ingame,2020-11-16 12:52:40.000 -"Creepy Tale",,status-playable,playable,2020-12-15 21:58:03.000 -"Cresteaju",,gpu;status-ingame,ingame,2021-03-24 10:46:06.000 -"Cricket 19",010022D00D4F0000,gpu;status-ingame,ingame,2021-06-14 14:56:07.000 -"Cricket 22",0100387017100000,status-boots;crash,boots,2023-10-18 08:01:57.000 -"Crimsonland",01005640080B0000,status-playable,playable,2021-05-27 20:50:54.000 -"Cris Tales",0100B0400EBC4000,crash;status-ingame,ingame,2021-07-29 15:10:53.000 -"CRISIS CORE –FINAL FANTASY VII– REUNION",01004BC0166CC000,status-playable,playable,2022-12-19 15:53:59.000 -"Croc's World",,status-playable,playable,2020-05-22 11:21:09.000 -"Croc's World 2",,status-playable,playable,2020-12-16 20:01:40.000 -"Croc's World 3",,status-playable,playable,2020-12-30 18:53:26.000 -"Croixleur Sigma",01000F0007D92000,status-playable;online,playable,2022-07-22 14:26:54.000 -"CrossCode",01003D90058FC000,status-playable,playable,2024-02-17 10:23:19.000 -"Crossing Souls",0100B1E00AA56000,nvdec;status-playable,playable,2021-02-20 15:42:54.000 -"Crown Trick",0100059012BAE000,status-playable,playable,2021-06-16 19:36:29.000 -"Cruis'n Blast",0100B41013C82000,gpu;status-ingame,ingame,2023-07-30 10:33:47.000 -"Crymachina Trial Edition ( Demo ) [ クライマキナ ]",01000CC01C108000,status-playable;demo,playable,2023-08-06 05:33:21.000 -"Crypt of the Necrodancer",0100CEA007D08000,status-playable;nvdec,playable,2022-11-01 09:52:06.000 -"Crysis 2 Remastered",0100582010AE0000,deadlock;status-menus,menus,2023-09-21 10:46:17.000 -"Crysis 3 Remastered",0100CD3010AE2000,deadlock;status-menus,menus,2023-09-10 16:03:50.000 -"Crysis Remastered",0100E66010ADE000,status-menus;nvdec,menus,2024-08-13 05:23:24.000 -"Crystal Crisis",0100972008234000,nvdec;status-playable,playable,2021-02-20 13:52:44.000 -"Cthulhu Saves Christmas",,status-playable,playable,2020-12-14 00:58:55.000 -"Cube Creator X",010001600D1E8000,status-menus;crash,menus,2021-11-25 08:53:28.000 -"Cubers: Arena",010082E00F1CE000,status-playable;nvdec;UE4,playable,2022-10-04 16:05:40.000 -"Cubicity",010040D011D04000,status-playable,playable,2021-06-14 14:19:51.000 -"Cuphead",0100A5C00D162000,status-playable,playable,2022-02-01 22:45:55.000 -"Cupid Parasite",0100F7E00DFC8000,gpu;status-ingame,ingame,2023-08-21 05:52:36.000 -"Curious Cases",,status-playable,playable,2020-08-10 09:30:48.000 -"Curse of the Dead Gods",0100D4A0118EA000,status-playable,playable,2022-08-30 12:25:38.000 -"Curved Space",0100CE5014026000,status-playable,playable,2023-01-14 22:03:50.000 -"Cyber Protocol",,nvdec;status-playable,playable,2020-09-28 14:47:40.000 -"Cyber Shadow",0100C1F0141AA000,status-playable,playable,2022-07-17 05:37:41.000 -"Cybxus Heart",01006B9013672000,gpu;slow;status-ingame,ingame,2022-01-15 05:00:49.000 -"Cytus α",010063100B2C2000,nvdec;status-playable,playable,2021-02-20 13:40:46.000 -"DAEMON X MACHINA",0100B6400CA56000,UE4;audout;ldn-untested;nvdec;status-playable,playable,2021-06-09 19:22:29.000 -"Dairoku: Ayakashimori",010061300DF48000,status-nothing;Needs Update;loader-allocator,nothing,2021-11-30 05:09:38.000 -"Damsel",0100BD2009A1C000,status-playable,playable,2022-09-06 11:54:39.000 -"Dandara",,status-playable,playable,2020-05-26 12:42:33.000 -"Dandy Dungeon: Legend of Brave Yamada",,status-playable,playable,2021-01-06 09:48:47.000 -"Danger Mouse",01003ED0099B0000,status-boots;crash;online,boots,2022-07-22 15:49:45.000 -"Danger Scavenger -",,nvdec;status-playable,playable,2021-04-17 15:53:04.000 -"Danmaku Unlimited 3",,status-playable,playable,2020-11-15 00:48:35.000 -"Darius Cozmic Collection",,status-playable,playable,2021-02-19 20:59:06.000 -"Darius Cozmic Collection Special Edition",010059C00BED4000,status-playable,playable,2022-07-22 16:26:50.000 -"Dariusburst - Another Chronicle EX+",010015800F93C000,online;status-playable,playable,2021-04-05 14:21:43.000 -"Dark Arcana: The Carnival",01003D301357A000,gpu;slow;status-ingame,ingame,2022-02-19 08:52:28.000 -"Dark Devotion",010083A00BF6C000,status-playable;nvdec,playable,2022-08-09 09:41:18.000 -"Dark Quest 2",,status-playable,playable,2020-11-16 21:34:52.000 -"DARK SOULS™: REMASTERED",01004AB00A260000,gpu;status-ingame;nvdec;online-broken,ingame,2024-04-09 19:47:58.000 -"Dark Witch Music Episode: Rudymical",,status-playable,playable,2020-05-22 09:44:44.000 -"Darkest Dungeon",01008F1008DA6000,status-playable;nvdec,playable,2022-07-22 18:49:18.000 -"Darksiders Genesis",0100F2300D4BA000,status-playable;nvdec;online-broken;UE4;ldn-broken,playable,2022-09-21 18:06:25.000 -"Darksiders II Deathinitive Edition",010071800BA98000,gpu;status-ingame;nvdec;online-broken,ingame,2024-06-26 00:37:25.000 -"Darksiders Warmastered Edition",0100E1400BA96000,status-playable;nvdec,playable,2023-03-02 18:08:09.000 -"Darkwood",,status-playable,playable,2021-01-08 21:24:06.000 -"DARQ Complete Edition",0100440012FFA000,audout;status-playable,playable,2021-04-07 15:26:21.000 -"Darts Up",0100BA500B660000,status-playable,playable,2021-04-14 17:22:22.000 -"Dawn of the Breakers",0100F0B0081DA000,status-menus;online-broken;vulkan-backend-bug,menus,2022-12-08 14:40:03.000 -"Day and Night",,status-playable,playable,2020-12-17 12:30:51.000 -"De Blob",,nvdec;status-playable,playable,2021-01-06 17:34:46.000 -"de Blob 2",,nvdec;status-playable,playable,2021-01-06 13:00:16.000 -"De Mambo",01008E900471E000,status-playable,playable,2021-04-10 12:39:40.000 -"Dead by Daylight",01004C400CF96000,status-boots;nvdec;online-broken;UE4,boots,2022-09-13 14:32:13.000 -"Dead Cells",0100646009FBE000,status-playable,playable,2021-09-22 22:18:49.000 -"Dead End Job",01004C500BD40000,status-playable;nvdec,playable,2022-09-19 12:48:44.000 -"DEAD OR ALIVE Xtreme 3 Scarlet",01009CC00C97C000,status-playable,playable,2022-07-23 17:05:06.000 -"DEAD OR SCHOOL",0100A5000F7AA000,status-playable;nvdec,playable,2022-09-06 12:04:09.000 -"Dead Z Meat",0100A24011F52000,UE4;services;status-ingame,ingame,2021-04-14 16:50:16.000 -"Deadly Days",,status-playable,playable,2020-11-27 13:38:55.000 -"Deadly Premonition 2",0100BAC011928000,status-playable,playable,2021-06-15 14:12:36.000 -"DEADLY PREMONITION Origins",0100EBE00F22E000,32-bit;status-playable;nvdec,playable,2024-03-25 12:47:46.000 -"Dear Magi - Mahou Shounen Gakka -",,status-playable,playable,2020-11-22 16:45:16.000 -"Death and Taxes",,status-playable,playable,2020-12-15 20:27:49.000 -"Death Come True",010012B011AB2000,nvdec;status-playable,playable,2021-06-10 22:30:49.000 -"Death Coming",0100F3B00CF32000,status-nothing;crash,nothing,2022-02-06 07:43:03.000 -"Death end re;Quest",0100AEC013DDA000,status-playable,playable,2023-07-09 12:19:54.000 -"Death Mark",,status-playable,playable,2020-12-13 10:56:25.000 -"Death Road to Canada",0100423009358000,gpu;audio;status-nothing;32-bit;crash,nothing,2023-06-28 15:39:26.000 -"Death Squared",,status-playable,playable,2020-12-04 13:00:15.000 -"Death Tales",,status-playable,playable,2020-12-17 10:55:52.000 -"Death's Hangover",0100492011A8A000,gpu;status-boots,boots,2023-08-01 22:38:06.000 -"Deathsmiles I・II",01009120119B4000,status-playable,playable,2024-04-08 19:29:00.000 -"Debris Infinity",010034F00BFC8000,nvdec;online;status-playable,playable,2021-05-28 12:14:39.000 -"Decay of Logos",010027700FD2E000,status-playable;nvdec,playable,2022-09-13 14:42:13.000 -"Deedlit in Wonder Labyrinth",0100EF0015A9A000,deadlock;status-ingame;Needs Update;Incomplete,ingame,2022-01-19 10:00:59.000 -"Deemo",01002CC0062B8000,status-playable,playable,2022-07-24 11:34:33.000 -"DEEMO -Reborn-",01008B10132A2000,status-playable;nvdec;online-broken,playable,2022-10-17 15:18:11.000 -"Deep Diving Adventures",010026800FA88000,status-playable,playable,2022-09-22 16:43:37.000 -"Deep Ones",,services;status-nothing,nothing,2020-04-03 02:54:19.000 -"Deep Sky Derelicts Definitive Edition",0100C3E00D68E000,status-playable,playable,2022-09-27 11:21:08.000 -"Deep Space Rush",,status-playable,playable,2020-07-07 23:30:33.000 -"DeepOne",0100961011BE6000,services-horizon;status-nothing;Needs Update,nothing,2024-01-18 15:01:05.000 -"Defenders of Ekron - Definitive Edition",01008BB00F824000,status-playable,playable,2021-06-11 16:31:03.000 -"Defentron",0100CDE0136E6000,status-playable,playable,2022-10-17 15:47:56.000 -"Defunct",,status-playable,playable,2021-01-08 21:33:46.000 -"Degrees of Separation",,status-playable,playable,2021-01-10 13:40:04.000 -"Dei Gratia no Rashinban",010071C00CBA4000,crash;status-nothing,nothing,2021-07-13 02:25:32.000 -"Deleveled",,slow;status-playable,playable,2020-12-15 21:02:29.000 -"DELTARUNE Chapter 1",010023800D64A000,status-playable,playable,2023-01-22 04:47:44.000 -"Dementium: The Ward (Dementium Remastered)",010038B01D2CA000,status-boots;crash,boots,2024-09-02 08:28:14.000 -"Demetrios - The BIG Cynical Adventure",0100AB600ACB4000,status-playable,playable,2021-06-04 12:01:01.000 -"Demolish & Build",010099D00D1A4000,status-playable,playable,2021-06-13 15:27:26.000 -"Demon Pit",010084600F51C000,status-playable;nvdec,playable,2022-09-19 13:35:15.000 -"Demon's Crystals",0100A2B00BD88000,status-nothing;crash;regression,nothing,2022-12-07 16:33:17.000 -"Demon's Rise",,status-playable,playable,2020-07-29 12:26:27.000 -"Demon's Rise - Lords of Chaos",0100E29013818000,status-playable,playable,2021-04-06 16:20:06.000 -"Demon's Tier+",0100161011458000,status-playable,playable,2021-06-09 17:25:36.000 -"DEMON'S TILT",0100BE800E6D8000,status-playable,playable,2022-09-19 13:22:46.000 -"Demong Hunter",,status-playable,playable,2020-12-12 15:27:08.000 -"Densha de go!! Hashirou Yamanote Sen",0100BC501355A000,status-playable;nvdec;UE4,playable,2023-11-09 07:47:58.000 -"Depixtion",,status-playable,playable,2020-10-10 18:52:37.000 -"Deployment",01000BF00B6BC000,slow;status-playable;online-broken,playable,2022-10-17 16:23:59.000 -"Deponia",010023600C704000,nvdec;status-playable,playable,2021-01-26 17:17:19.000 -"DERU - The Art of Cooperation",,status-playable,playable,2021-01-07 16:59:59.000 -"Descenders",,gpu;status-ingame,ingame,2020-12-10 15:22:36.000 -"Desire remaster ver.",,crash;status-boots,boots,2021-01-17 02:34:37.000 -"DESTINY CONNECT",,UE4;gpu;nvdec;status-ingame,ingame,2020-12-16 12:20:36.000 -"Destrobots",01008BB011ED6000,status-playable,playable,2021-03-06 14:37:05.000 -"Destroy All Humans!",01009E701356A000,gpu;status-ingame;nvdec;UE4,ingame,2023-01-14 22:23:53.000 -"Detective Dolittle",010030600E65A000,status-playable,playable,2021-03-02 14:03:59.000 -"Detective Gallo",01009C0009842000,status-playable;nvdec,playable,2022-07-24 11:51:04.000 -"Detective Jinguji Saburo Prism of Eyes",,status-playable,playable,2020-10-02 21:54:41.000 -"Detective Pikachu Returns",010007500F27C000,status-playable,playable,2023-10-07 10:24:59.000 -"Devil Engine",010031B00CF66000,status-playable,playable,2021-06-04 11:54:30.000 -"Devil Kingdom",01002F000E8F2000,status-playable,playable,2023-01-31 08:58:44.000 -"Devil May Cry",,nvdec;status-playable,playable,2021-01-04 19:43:08.000 -"Devil May Cry 2",01007CF00D5BA000,status-playable;nvdec,playable,2023-01-24 23:03:20.000 -"Devil May Cry 3 Special Edition",01007B600D5BC000,status-playable;nvdec,playable,2024-07-08 12:33:23.000 -"Devil Slayer - Raksasi",01003C900EFF6000,status-playable,playable,2022-10-26 19:42:32.000 -"Devious Dungeon",01009EA00A320000,status-playable,playable,2021-03-04 13:03:06.000 -"Dex",,nvdec;status-playable,playable,2020-08-12 16:48:12.000 -"Dexteritrip",,status-playable,playable,2021-01-06 12:51:12.000 -"Dezatopia",0100AFC00E06A000,online;status-playable,playable,2021-06-15 21:06:11.000 -"Diablo 2 Resurrected",0100726014352000,gpu;status-ingame;nvdec,ingame,2023-08-18 18:42:47.000 -"Diablo III: Eternal Collection",01001B300B9BE000,status-playable;online-broken;ldn-works,playable,2023-08-21 23:48:03.000 -"Diabolic",0100F73011456000,status-playable,playable,2021-06-11 14:45:08.000 -"DIABOLIK LOVERS CHAOS LINEAGE",010027400BD24000,gpu;status-ingame;Needs Update,ingame,2023-06-08 02:20:44.000 -"Dicey Dungeons",0100BBF011394000,gpu;audio;slow;status-ingame,ingame,2023-08-02 20:30:12.000 -"Die for Valhalla!",,status-playable,playable,2021-01-06 16:09:14.000 -"Dies irae Amantes amentes For Nintendo Switch",0100BB900B5B4000,status-nothing;32-bit;crash,nothing,2022-02-16 07:09:05.000 -"Dig Dog",0100A5A00DBB0000,gpu;status-ingame,ingame,2021-06-02 17:17:51.000 -"Digerati Presents: The Dungeon Crawl Vol. 1",010035D0121EC000,slow;status-ingame,ingame,2021-04-18 14:04:55.000 -"Digimon Story Cyber Sleuth: Complete Edition",010014E00DB56000,status-playable;nvdec;opengl,playable,2022-09-13 15:02:37.000 -"Digimon World: Next Order",0100F00014254000,status-playable,playable,2023-05-09 20:41:06.000 -"Ding Dong XL",,status-playable,playable,2020-07-14 16:13:19.000 -"Dininho Adventures",,status-playable,playable,2020-10-03 17:25:51.000 -"Dininho Space Adventure",010027E0158A6000,status-playable,playable,2023-01-14 22:43:04.000 -"Dirt Bike Insanity",0100A8A013DA4000,status-playable,playable,2021-01-31 13:27:38.000 -"Dirt Trackin Sprint Cars",01004CB01378A000,status-playable;nvdec;online-broken,playable,2022-10-17 16:34:56.000 -"Disagaea 6: Defiance of Destiny Demo",0100918014B02000,status-playable;demo,playable,2022-10-26 20:02:04.000 -"Disaster Report 4: Summer Memories",010020700E2A2000,status-playable;nvdec;UE4,playable,2022-09-27 19:41:31.000 -"Disc Jam",0100510004D2C000,UE4;ldn-untested;nvdec;online;status-playable,playable,2021-04-08 16:40:35.000 -"Disco Dodgeball Remix",,online;status-playable,playable,2020-09-28 23:24:49.000 -"Disgaea 1 Complete",01004B100AF18000,status-playable,playable,2023-01-30 21:45:23.000 -"Disgaea 4 Complete Plus",,gpu;slow;status-playable,playable,2020-02-18 10:54:28.000 -"Disgaea 4 Complete+ Demo",010068C00F324000,status-playable;nvdec,playable,2022-09-13 15:21:59.000 -"Disgaea 5 Complete",01005700031AE000,nvdec;status-playable,playable,2021-03-04 15:32:54.000 -"Disgaea 6: Defiance of Destiny",0100ABC013136000,deadlock;status-ingame,ingame,2023-04-15 00:50:32.000 -"Disgaea 6: Defiance of Destiny [ FG ] [ 魔界戦記ディスガイア6 ]",0100307011D80000,status-playable,playable,2021-06-08 13:20:33.000 -"Disgaea 6: Defiance of Destiny Demo [ 魔界戦記ディスガイア6 ]",01005EE013888000,gpu;status-ingame;demo,ingame,2022-12-06 15:27:59.000 -"Disjunction",01000B70122A2000,gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug,ingame,2024-04-28 23:55:24.000 -"Disney Classic Games: Aladdin and The Lion King",0100A2F00EEFC000,status-playable;online-broken,playable,2022-09-13 15:44:17.000 -"Disney Epic Mickey: Rebrushed",0100DA201EBF8000,status-ingame;crash,ingame,2024-09-26 22:11:51.000 -"Disney SpeedStorm",0100F0401435E000,services;status-boots,boots,2023-11-27 02:15:32.000 -"Disney Tsum Tsum Festival",,crash;status-menus,menus,2020-07-14 14:05:28.000 -"DISTRAINT 2",,status-playable,playable,2020-09-03 16:08:12.000 -"DISTRAINT: Deluxe Edition",,status-playable,playable,2020-06-15 23:42:24.000 -"Divinity Original Sin 2",010027400CDC6000,services;status-menus;crash;online-broken;regression,menus,2023-08-13 17:20:03.000 -"Dodo Peak",01001770115C8000,status-playable;nvdec;UE4,playable,2022-10-04 16:13:05.000 -"DoDonPachi Resurrection - 怒首領蜂大復活",01005A001489A000,status-ingame;32-bit;crash,ingame,2024-01-25 14:37:32.000 -"Dogurai",,status-playable,playable,2020-10-04 02:40:16.000 -"Dokapon Up! Mugen no Roulette",010048100D51A000,gpu;status-menus;Needs Update,menus,2022-12-08 19:39:10.000 -"Dokuro",,nvdec;status-playable,playable,2020-12-17 14:47:09.000 -"Don't Die Mr. Robot DX",010007200AC0E000,status-playable;nvdec,playable,2022-09-02 18:34:38.000 -"Don't Knock Twice",0100E470067A8000,status-playable,playable,2024-05-08 22:37:58.000 -"Don't Sink",0100C4D00B608000,gpu;status-ingame,ingame,2021-02-26 15:41:11.000 -"Don't Starve",0100751007ADA000,status-playable;nvdec,playable,2022-02-05 20:43:34.000 -"Dongo Adventure",010088B010DD2000,status-playable,playable,2022-10-04 16:22:26.000 -"Donkey Kong Country Tropical Freeze",0100C1F0051B6000,status-playable,playable,2024-08-05 16:46:10.000 -"Doodle Derby",,status-boots,boots,2020-12-04 22:51:48.000 -"DOOM",0100416004C00000,gpu;slow;status-ingame;nvdec;online-broken,ingame,2024-09-23 15:40:07.000 -"DOOM (1993)",010018900DD00000,status-menus;nvdec;online-broken,menus,2022-09-06 13:32:19.000 -"DOOM + DOOM II",01008CB01E52E000,status-playable;opengl;ldn-untested;LAN,playable,2024-09-12 07:06:01.000 -"DOOM 2",0100D4F00DD02000,nvdec;online;status-playable,playable,2021-06-03 20:10:01.000 -"DOOM 3",010029D00E740000,status-menus;crash,menus,2024-08-03 05:25:47.000 -"DOOM 64",,nvdec;status-playable;vulkan,playable,2020-10-13 23:47:28.000 -"DOOM Eternal",0100B1A00D8CE000,gpu;slow;status-ingame;nvdec;online-broken,ingame,2024-08-28 15:57:17.000 -"Door Kickers: Action Squad",01005ED00CD70000,status-playable;online-broken;ldn-broken,playable,2022-09-13 16:28:53.000 -"DORAEMON STORY OF SEASONS",,nvdec;status-playable,playable,2020-07-13 20:28:11.000 -"Double Cross",,status-playable,playable,2021-01-07 15:34:22.000 -"Double Dragon & Kunio-Kun: Retro Brawler Bundle",,status-playable,playable,2020-09-01 12:48:46.000 -"DOUBLE DRAGON Ⅲ: The Sacred Stones",01001AD00E49A000,online;status-playable,playable,2021-06-11 15:41:44.000 -"Double Dragon Neon",01005B10132B2000,gpu;audio;status-ingame;32-bit,ingame,2022-09-20 18:00:20.000 -"Double Kick Heroes",,gpu;status-ingame,ingame,2020-10-03 14:33:59.000 -"Double Pug Switch",0100A5D00C7C0000,status-playable;nvdec,playable,2022-10-10 10:59:35.000 -"Double Switch - 25th Anniversary Edition",0100FC000EE10000,status-playable;nvdec,playable,2022-09-19 13:41:50.000 -"Down to Hell",0100B6600FE06000,gpu;status-ingame;nvdec,ingame,2022-09-19 14:01:26.000 -"Downwell",010093D00C726000,status-playable,playable,2021-04-25 20:05:24.000 -"Dr Kawashima's Brain Training",0100ED000D390000,services;status-ingame,ingame,2023-06-04 00:06:46.000 -"Dracula's Legacy",,nvdec;status-playable,playable,2020-12-10 13:24:25.000 -"DragoDino",,gpu;nvdec;status-ingame,ingame,2020-08-03 20:49:16.000 -"Dragon Audit",0100DBC00BD5A000,crash;status-ingame,ingame,2021-05-16 14:24:46.000 -"DRAGON BALL FighterZ",0100A250097F0000,UE4;ldn-broken;nvdec;online;status-playable,playable,2021-06-11 16:19:04.000 -"Dragon Ball Xenoverse 2",010078D000F88000,gpu;status-ingame;nvdec;online;ldn-untested,ingame,2022-07-24 12:31:01.000 -"DRAGON BALL Z: KAKAROT + A NEW POWER AWAKENS SET",010051C0134F8000,status-playable;vulkan-backend-bug,playable,2024-08-28 00:03:50.000 -"Dragon Marked for Death: Frontline Fighters (Empress & Warrior)",010089700150E000,status-playable;ldn-untested;audout,playable,2022-03-10 06:44:34.000 -"Dragon Quest",0100EFC00EFB2000,gpu;status-boots,boots,2021-11-09 03:31:32.000 -"Dragon Quest Builders",010008900705C000,gpu;status-ingame;nvdec,ingame,2023-08-14 09:54:36.000 -"Dragon Quest Builders 2",010042000A986000,status-playable,playable,2024-04-19 16:36:38.000 -"Dragon Quest Heroes I + II (JP)",0100CD3000BDC000,nvdec;status-playable,playable,2021-04-08 14:27:16.000 -"Dragon Quest II: Luminaries of the Legendary Line",010062200EFB4000,status-playable,playable,2022-09-13 16:44:11.000 -"Dragon Quest III HD-2D Remake",01003E601E324000,status-ingame;vulkan-backend-bug;UE4;audout;mac-bug,ingame,2025-01-07 04:10:27.000 -"Dragon Quest III: The Seeds of Salvation",010015600EFB6000,gpu;status-boots,boots,2021-11-09 03:38:34.000 -"DRAGON QUEST MONSTERS: The Dark Prince",0100A77018EA0000,status-playable,playable,2023-12-29 16:10:05.000 -"Dragon Quest Treasures",0100217014266000,gpu;status-ingame;UE4,ingame,2023-05-09 11:16:52.000 -"Dragon Quest X Awakening Five Races Offline",0100E2E0152E4000,status-playable;nvdec;UE4,playable,2024-08-20 10:04:24.000 -"Dragon Quest XI S: Echoes of an Elusive Age - Definitive Edition",01006C300E9F0000,status-playable;UE4,playable,2021-11-27 12:27:11.000 -"Dragon's Dogma: Dark Arisen",010032C00AC58000,status-playable,playable,2022-07-24 12:58:33.000 -"Dragon's Lair Trilogy",,nvdec;status-playable,playable,2021-01-13 22:12:07.000 -"DragonBlaze for Nintendo Switch",,32-bit;status-playable,playable,2020-10-14 11:11:28.000 -"DragonFangZ",,status-playable,playable,2020-09-28 21:35:18.000 -"Dragons Dawn of New Riders",,nvdec;status-playable,playable,2021-01-27 20:05:26.000 -"Drawful 2",0100F7800A434000,status-ingame,ingame,2022-07-24 13:50:21.000 -"Drawngeon: Dungeons of Ink and Paper",0100B7E0102E4000,gpu;status-ingame,ingame,2022-09-19 15:41:25.000 -"Dream",,status-playable,playable,2020-12-15 19:55:07.000 -"Dream Alone - 0100AA0093DC000",,nvdec;status-playable,playable,2021-01-27 19:41:50.000 -"DreamBall",,UE4;crash;gpu;status-ingame,ingame,2020-08-05 14:45:25.000 -"Dreaming Canvas",010058B00F3C0000,UE4;gpu;status-ingame,ingame,2021-06-13 22:50:07.000 -"Dreamo",0100D24013466000,status-playable;UE4,playable,2022-10-17 18:25:28.000 -"DreamWorks Spirit Lucky's Big Adventure",0100236011B4C000,status-playable,playable,2022-10-27 13:30:52.000 -"Drone Fight",010058C00A916000,status-playable,playable,2022-07-24 14:31:56.000 -"Drowning",010052000A574000,status-playable,playable,2022-07-25 14:28:26.000 -"Drums",,status-playable,playable,2020-12-17 17:21:51.000 -"Duck Life Adventure",01005BC012C66000,status-playable,playable,2022-10-10 11:27:03.000 -"Duke Nukem 3D: 20th Anniversary World Tour",01007EF00CB88000,32-bit;status-playable;ldn-untested,playable,2022-08-19 22:22:40.000 -"Dull Grey",010068D0141F2000,status-playable,playable,2022-10-27 13:40:38.000 -"Dungeon Nightmares 1 + 2 Collection",0100926013600000,status-playable,playable,2022-10-17 18:54:22.000 -"Dungeon of the Endless",010034300F0E2000,nvdec;status-playable,playable,2021-05-27 19:16:26.000 -"Dungeon Stars",,status-playable,playable,2021-01-18 14:28:37.000 -"Dungeons & Bombs",,status-playable,playable,2021-04-06 12:46:22.000 -"Dunk Lords",0100EC30140B6000,status-playable,playable,2024-06-26 00:07:26.000 -"Dusk Diver",010011C00E636000,status-boots;crash;UE4,boots,2021-11-06 09:01:30.000 -"Dust: An Elysian Tail",0100B6E00A420000,status-playable,playable,2022-07-25 15:28:12.000 -"Dustoff Z",,status-playable,playable,2020-12-04 23:22:29.000 -"Dying Light: Platinum Edition",01008c8012920000,services-horizon;status-boots,boots,2024-03-11 10:43:32.000 -"Dyna Bomb",,status-playable,playable,2020-06-07 13:26:55.000 -"DYNASTY WARRIORS 8: Xtreme Legends Definitive Edition",0100E9A00CB30000,status-playable;nvdec,playable,2024-06-26 00:16:30.000 -"DYSMANTLE",010008900BC5A000,gpu;status-ingame,ingame,2024-07-15 16:24:12.000 -"EA Sports FC 24",0100BDB01A0E6000,status-boots,boots,2023-10-04 18:32:59.000 -"EA SPORTS FC 25",010054E01D878000,status-ingame;crash,ingame,2024-09-25 21:07:50.000 -"EA SPORTS FIFA 23 Nintendo Switch™ Legacy Edition",01001C8016B4E000,gpu;status-ingame;crash,ingame,2024-06-10 23:33:05.000 -"Eagle Island",010037400C7DA000,status-playable,playable,2021-04-10 13:15:42.000 -"Earth Defense Force World Brothers ( ま~るい地球が四角くなった!? デジボク地球防衛軍 )",0100B9E012992000,status-playable;UE4,playable,2022-12-07 12:59:16.000 -"Earth Defense Force: World Brothers",0100298014030000,status-playable;UE4,playable,2022-10-27 14:13:31.000 -"EARTH WARS",01009B7006C88000,status-playable,playable,2021-06-05 11:18:33.000 -"Earthfall: Alien Horde",0100DFC00E472000,status-playable;nvdec;UE4;ldn-untested,playable,2022-09-13 17:32:37.000 -"Earthlock",01006E50042EA000,status-playable,playable,2021-06-05 11:51:02.000 -"EarthNight",0100A2E00BB0C000,status-playable,playable,2022-09-19 21:02:20.000 -"Earthworms",0100DCE00B756000,status-playable,playable,2022-07-25 16:28:55.000 -"Earthworms Demo",,status-playable,playable,2021-01-05 16:57:11.000 -"Easy Come Easy Golf",0100ECF01800C000,status-playable;online-broken;regression,playable,2024-04-04 16:15:00.000 -"EAT BEAT DEADSPIKE-san",0100A9B009678000,audio;status-playable;Needs Update,playable,2022-12-02 19:25:29.000 -"eBaseball Powerful Pro Yakyuu 2022",0100BCA016636000,gpu;services-horizon;status-nothing;crash,nothing,2024-05-26 23:07:19.000 -"Eclipse: Edge of Light",,status-playable,playable,2020-08-11 23:06:29.000 -"eCrossminton",,status-playable,playable,2020-07-11 18:24:27.000 -"Edna & Harvey: Harvey's New Eyes",0100ABE00DB4E000,nvdec;status-playable,playable,2021-01-26 14:36:08.000 -"Edna & Harvey: The Breakout - Anniversary Edition",01004F000B716000,status-ingame;crash;nvdec,ingame,2022-08-01 16:59:56.000 -"Effie",01002550129F0000,status-playable,playable,2022-10-27 14:36:39.000 -"Ego Protocol",,nvdec;status-playable,playable,2020-12-16 20:16:35.000 -"Eiga Sumikko Gurashi Tobidasu Ehon to Himitsu no Ko Game de Asobo Ehon no Sekai",,status-playable,playable,2020-11-12 00:11:50.000 -"Eight Dragons",01003AD013BD2000,status-playable;nvdec,playable,2022-10-27 14:47:28.000 -"El Hijo - A Wild West Tale",010020A01209C000,nvdec;status-playable,playable,2021-04-19 17:44:08.000 -"Elden: Path of the Forgotten",,status-playable,playable,2020-12-15 00:33:19.000 -"ELEA: Paradigm Shift",,UE4;crash;status-nothing,nothing,2020-10-04 19:07:43.000 -"Element",0100A6700AF10000,status-playable,playable,2022-07-25 17:17:16.000 -"Elliot Quest",0100128003A24000,status-playable,playable,2022-07-25 17:46:14.000 -"Elrador Creatures",,slow;status-playable,playable,2020-12-12 12:35:35.000 -"Ember",010041A00FEC6000,status-playable;nvdec,playable,2022-09-19 21:16:11.000 -"Embracelet",,status-playable,playable,2020-12-04 23:45:00.000 -"Emma: Lost in Memories",010017b0102a8000,nvdec;status-playable,playable,2021-01-28 16:19:10.000 -"Enchanted in the Moonlight - Kiryu, Chikage & Yukinojo",010068300E08E000,gpu;status-ingame;nvdec,ingame,2022-11-20 16:18:45.000 -"Enchanting Mahjong Match",,gpu;status-ingame,ingame,2020-04-17 22:01:31.000 -"Endless Fables: Dark Moor",01004F3011F92000,gpu;nvdec;status-ingame,ingame,2021-03-07 15:31:03.000 -"Endless Ocean Luminous",010067B017588000,services-horizon;status-ingame;crash,ingame,2024-05-30 02:05:57.000 -"Energy Cycle Edge",0100B8700BD14000,services;status-ingame,ingame,2021-11-30 05:02:31.000 -"Energy Invasion",,status-playable,playable,2021-01-14 21:32:26.000 -"Enigmatis 2: The Mists of Ravenwood",0100C6200A0AA000,crash;regression;status-boots,boots,2021-06-06 15:15:30.000 -"Enter the Gungeon",01009D60076F6000,status-playable,playable,2022-07-25 20:28:33.000 -"Epic Loon",0100262009626000,status-playable;nvdec,playable,2022-07-25 22:06:13.000 -"EQI",01000FA0149B6000,status-playable;nvdec;UE4,playable,2022-10-27 16:42:32.000 -"EQQO",0100E95010058000,UE4;nvdec;status-playable,playable,2021-06-13 23:10:51.000 -"Escape First",,status-playable,playable,2020-10-20 22:46:53.000 -"Escape First 2",010021201296A000,status-playable,playable,2021-03-24 11:59:41.000 -"Escape from Chernobyl",0100FEF00F0AA000,status-boots;crash,boots,2022-09-19 21:36:58.000 -"Escape from Life Inc",010023E013244000,status-playable,playable,2021-04-19 17:34:09.000 -"Escape from Tethys",,status-playable,playable,2020-10-14 22:38:25.000 -"Escape Game Fort Boyard",,status-playable,playable,2020-07-12 12:45:43.000 -"ESP Ra.De. Psi",0100F9600E746000,audio;slow;status-ingame,ingame,2024-03-07 15:05:08.000 -"Esports powerful pro yakyuu 2020",010073000FE18000,gpu;status-ingame;crash;Needs More Attention,ingame,2024-04-29 05:34:14.000 -"Estranged: The Departure",01004F9012FD8000,status-playable;nvdec;UE4,playable,2022-10-24 10:37:58.000 -"Eternum Ex",,status-playable,playable,2021-01-13 20:28:32.000 -"Europa (Demo)",010092501EB2C000,gpu;status-ingame;crash;UE4,ingame,2024-04-23 10:47:12.000 -"EVE ghost enemies",01007BE0160D6000,gpu;status-ingame,ingame,2023-01-14 03:13:30.000 -"even if TEMPEST",010095E01581C000,gpu;status-ingame,ingame,2023-06-22 23:50:25.000 -"Event Horizon: Space Defense",,status-playable,playable,2020-07-31 20:31:24.000 -"EVERSPACE",0100DCF0093EC000,status-playable;UE4,playable,2022-08-14 01:16:24.000 -"Everybody 1-2-Switch!",01006F900BF8E000,services;deadlock;status-nothing,nothing,2023-07-01 05:52:55.000 -"Evil Defenders",,nvdec;status-playable,playable,2020-09-28 17:11:00.000 -"Evolution Board Game",01006A800FA22000,online;status-playable,playable,2021-01-20 22:37:56.000 -"Exception",0100F2D00C7DE000,status-playable;online-broken,playable,2022-09-20 12:47:10.000 -"Exit the Gungeon",0100DD30110CC000,status-playable,playable,2022-09-22 17:04:43.000 -"Exodemon",0100A82013976000,status-playable,playable,2022-10-27 20:17:52.000 -"Exorder",0100FA800A1F4000,nvdec;status-playable,playable,2021-04-15 14:17:20.000 -"Explosive Jake",01009B7010B42000,status-boots;crash,boots,2021-11-03 07:48:32.000 -"Eyes: The Horror Game",0100EFE00A3C2000,status-playable,playable,2021-01-20 21:59:46.000 -"Fable of Fairy Stones",0100E3D0103CE000,status-playable,playable,2021-05-05 21:04:54.000 -"Factorio",01004200189F4000,deadlock;status-boots,boots,2024-06-11 19:26:16.000 -"Fae Farm",010073F0189B6000,status-playable,playable,2024-08-25 15:12:12.000 -"Faeria",010069100DB08000,status-menus;nvdec;online-broken,menus,2022-10-04 16:44:41.000 -"Fairune Collection",01008A6009758000,status-playable,playable,2021-06-06 15:29:56.000 -"Fairy Fencer F™: Advent Dark Force",0100F6D00B8F2000,status-ingame;32-bit;crash;nvdec,ingame,2023-04-16 03:53:48.000 -"Fairy Tail",0100CF900FA3E000,status-playable;nvdec,playable,2022-10-04 23:00:32.000 -"Fall Of Light - Darkest Edition",01005A600BE60000,slow;status-ingame;nvdec,ingame,2024-07-24 04:19:26.000 -"Fallen Legion Revenants",0100AA801258C000,status-menus;crash,menus,2021-11-25 08:53:20.000 -"Famicom Detective Club: The Girl Who Stands Behind",0100D670126F6000,status-playable;nvdec,playable,2022-10-27 20:41:40.000 -"Famicom Detective Club: The Missing Heir",010033F0126F4000,status-playable;nvdec,playable,2022-10-27 20:56:23.000 -"Family Feud 2021",010060200FC44000,status-playable;online-broken,playable,2022-10-10 11:42:21.000 -"Family Mysteries: Poisonous Promises",0100034012606000,audio;status-menus;crash,menus,2021-11-26 12:35:06.000 -"Fantasy Friends",010017C012726000,status-playable,playable,2022-10-17 19:42:39.000 -"Fantasy Hero Unsigned Legacy",0100767008502000,status-playable,playable,2022-07-26 12:28:52.000 -"Fantasy Strike",0100944003820000,online;status-playable,playable,2021-02-27 01:59:18.000 -"Fantasy Tavern Sextet -Vol.1 New World Days-",01000E2012F6E000,gpu;status-ingame;crash;Needs Update,ingame,2022-12-05 16:48:00.000 -"Fantasy Tavern Sextet -Vol.2 Adventurer's Days-",,gpu;slow;status-ingame;crash,ingame,2021-11-06 02:57:29.000 -"FAR: Lone Sails",010022700E7D6000,status-playable,playable,2022-09-06 16:33:05.000 -"Farabel",,status-playable,playable,2020-08-03 17:47:28.000 -"Farm Expert 2019 for Nintendo Switch",,status-playable,playable,2020-07-09 21:42:57.000 -"Farm Mystery",01000E400ED98000,status-playable;nvdec,playable,2022-09-06 16:46:47.000 -"Farm Together",,status-playable,playable,2021-01-19 20:01:19.000 -"Farming Simulator 20",0100EB600E914000,nvdec;status-playable,playable,2021-06-13 10:52:44.000 -"Farming Simulator Nintendo Switch Edition",,nvdec;status-playable,playable,2021-01-19 14:46:44.000 -"Fashion Dreamer",0100E99019B3A000,status-playable,playable,2023-11-12 06:42:52.000 -"Fast RMX",01009510001CA000,slow;status-ingame;crash;ldn-partial,ingame,2024-06-22 20:48:58.000 -"Fatal Frame: Maiden of Black Water",0100BEB015604000,status-playable,playable,2023-07-05 16:01:40.000 -"Fatal Frame: Mask of the Lunar Eclipse",0100DAE019110000,status-playable;Incomplete,playable,2024-04-11 06:01:30.000 -"Fate/EXTELLA",010053E002EA2000,gpu;status-ingame;nvdec;online-broken;vulkan-backend-bug;opengl-backend-bug,ingame,2023-04-24 23:37:55.000 -"Fate/EXTELLA LINK",010051400B17A000,ldn-untested;nvdec;status-playable,playable,2021-01-27 00:45:50.000 -"fault - milestone one",,nvdec;status-playable,playable,2021-03-24 10:41:49.000 -"Fear Effect Sedna",,nvdec;status-playable,playable,2021-01-19 13:10:33.000 -"Fearmonium",0100F5501CE12000,status-boots;crash,boots,2024-03-06 11:26:11.000 -"Feather",0100E4300CB3E000,status-playable,playable,2021-06-03 14:11:27.000 -"Felix the Reaper",,nvdec;status-playable,playable,2020-10-20 23:43:03.000 -"Feudal Alloy",,status-playable,playable,2021-01-14 08:48:14.000 -"FEZ",01008D900B984000,gpu;status-ingame,ingame,2021-04-18 17:10:16.000 -"FIA European Truck Racing Championship",01007510040E8000,status-playable;nvdec,playable,2022-09-06 17:51:59.000 -"FIFA 18",0100F7B002340000,gpu;status-ingame;online-broken;ldn-untested,ingame,2022-07-26 12:43:59.000 -"FIFA 19",0100FFA0093E8000,gpu;status-ingame;nvdec;online-broken;ldn-untested,ingame,2022-07-26 13:07:07.000 -"FIFA 20 Legacy Edition",01005DE00D05C000,gpu;status-ingame;nvdec;online-broken;ldn-untested,ingame,2022-09-13 17:57:20.000 -"FIFA 21 Legacy Edition",01000A001171A000,gpu;status-ingame;online-broken,ingame,2023-12-11 22:10:19.000 -"FIFA 22 Legacy Edition",0100216014472000,gpu;status-ingame,ingame,2024-03-02 14:13:48.000 -"Fight Crab",01006980127F0000,status-playable;online-broken;ldn-untested,playable,2022-10-05 10:24:04.000 -"Fight of Animals",,online;status-playable,playable,2020-10-15 15:08:28.000 -"Fight'N Rage",,status-playable,playable,2020-06-16 23:35:19.000 -"Fighting EX Layer Another Dash",0100D02014048000,status-playable;online-broken;UE4,playable,2024-04-07 10:22:33.000 -"Figment",0100118009C68000,nvdec;status-playable,playable,2021-01-27 19:36:05.000 -"Fill-a-Pix: Phil's Epic Adventure",,status-playable,playable,2020-12-22 13:48:22.000 -"Fimbul",0100C3A00BB76000,status-playable;nvdec,playable,2022-07-26 13:31:47.000 -"Fin and the Ancient Mystery",,nvdec;status-playable,playable,2020-12-17 16:40:39.000 -"FINAL FANTASY CRYSTAL CHRONICLES Remastered Edition",0100CE4010AAC000,status-playable,playable,2023-04-02 23:39:12.000 -"FINAL FANTASY I",01000EA014150000,status-nothing;crash,nothing,2024-09-05 20:55:30.000 -"FINAL FANTASY II",01006B7014156000,status-nothing;crash,nothing,2024-04-13 19:18:04.000 -"FINAL FANTASY IX",01006F000B056000,audout;nvdec;status-playable,playable,2021-06-05 11:35:00.000 -"FINAL FANTASY V",0100AA201415C000,status-playable,playable,2023-04-26 01:11:55.000 -"Final Fantasy VII",0100A5B00BDC6000,status-playable,playable,2022-12-09 17:03:30.000 -"FINAL FANTASY VIII REMASTERED",01008B900DC0A000,status-playable;nvdec,playable,2023-02-15 10:57:48.000 -"FINAL FANTASY X/X-2 HD REMASTER",0100BC300CB48000,gpu;status-ingame,ingame,2022-08-16 20:29:26.000 -"FINAL FANTASY XII THE ZODIAC AGE",0100EB100AB42000,status-playable;opengl;vulkan-backend-bug,playable,2024-08-11 07:01:54.000 -"FINAL FANTASY XV POCKET EDITION HD",,status-playable,playable,2021-01-05 17:52:08.000 -"Final Light, The Prison",,status-playable,playable,2020-07-31 21:48:44.000 -"Finding Teddy 2 : Definitive Edition",0100FF100FB68000,gpu;status-ingame,ingame,2024-04-19 16:51:33.000 -"Fire & Water",,status-playable,playable,2020-12-15 15:43:20.000 -"Fire Emblem Warriors",0100F15003E64000,status-playable;nvdec,playable,2023-05-10 01:53:10.000 -"Fire Emblem Warriors: Three Hopes",010071F0143EA000,gpu;status-ingame;nvdec,ingame,2024-05-01 07:07:42.000 -"Fire Emblem: Engage",0100A6301214E000,status-playable;amd-vendor-bug;mac-bug,playable,2024-09-01 23:37:26.000 -"Fire Emblem: Shadow Dragon and the Blade of Light",0100A12011CC8000,status-playable,playable,2022-10-17 19:49:14.000 -"Fire Emblem: Three Houses",010055D009F78000,status-playable;online-broken,playable,2024-09-14 23:53:50.000 -"Fire: Ungh's Quest",010025C014798000,status-playable;nvdec,playable,2022-10-27 21:41:26.000 -"Firefighters - The Simulation",0100434003C58000,status-playable,playable,2021-02-19 13:32:05.000 -"Firefighters: Airport Fire Department",,status-playable,playable,2021-02-15 19:17:00.000 -"Firewatch",0100AC300919A000,status-playable,playable,2021-06-03 10:56:38.000 -"Firework",,status-playable,playable,2020-12-04 20:20:09.000 -"Fishing Star World Tour",0100DEB00ACE2000,status-playable,playable,2022-09-13 19:08:51.000 -"Fishing Universe Simulator",010069800D292000,status-playable,playable,2021-04-15 14:00:43.000 -"Fit Boxing",0100807008868000,status-playable,playable,2022-07-26 19:24:55.000 -"Fitness Boxing",,services;status-ingame,ingame,2020-05-17 14:00:48.000 -"Fitness Boxing",0100E7300AAD4000,status-playable,playable,2021-04-14 20:33:33.000 -"Fitness Boxing 2: Rhythm & Exercise",0100073011382000,crash;status-ingame,ingame,2021-04-14 20:40:48.000 -"Five Dates",,nvdec;status-playable,playable,2020-12-11 15:17:11.000 -"Five Nights at Freddy's",0100B6200D8D2000,status-playable,playable,2022-09-13 19:26:36.000 -"Five Nights at Freddy's 2",01004EB00E43A000,status-playable,playable,2023-02-08 15:48:24.000 -"Five Nights at Freddy's 3",010056100E43C000,status-playable,playable,2022-09-13 20:58:07.000 -"Five Nights at Freddy's 4",010083800E43E000,status-playable,playable,2023-08-19 07:28:03.000 -"Five Nights at Freddy's: Help Wanted",0100F7901118C000,status-playable;UE4,playable,2022-09-29 12:40:09.000 -"Five Nights at Freddy's: Sister Location",01003B200E440000,status-playable,playable,2023-10-06 09:00:58.000 -"Five Nights At Freddy’s Security Breach",01009060193C4000,gpu;status-ingame;crash;mac-bug,ingame,2023-04-23 22:33:28.000 -"Flan",010038200E088000,status-ingame;crash;regression,ingame,2021-11-17 07:39:28.000 -"Flashback",,nvdec;status-playable,playable,2020-05-14 13:57:29.000 -"Flat Heroes",0100C53004C52000,gpu;status-ingame,ingame,2022-07-26 19:37:37.000 -"Flatland: Prologue",,status-playable,playable,2020-12-11 20:41:12.000 -"Flinthook",,online;status-playable,playable,2021-03-25 20:42:29.000 -"Flip Wars",010095A004040000,services;status-ingame;ldn-untested,ingame,2022-05-02 15:39:18.000 -"Flipping Death",01009FB002B2E000,status-playable,playable,2021-02-17 16:12:30.000 -"Flood of Light",,status-playable,playable,2020-05-15 14:15:25.000 -"Floor Kids",0100DF9005E7A000,status-playable;nvdec,playable,2024-08-18 19:38:49.000 -"Florence",,status-playable,playable,2020-09-05 01:22:30.000 -"Flowlines VS",,status-playable,playable,2020-12-17 17:01:53.000 -"Flux8",,nvdec;status-playable,playable,2020-06-19 20:55:11.000 -"Fly O'Clock VS",,status-playable,playable,2020-05-17 13:39:52.000 -"Fly Punch Boom!",,online;status-playable,playable,2020-06-21 12:06:11.000 -"Flying Hero X",0100419013A8A000,status-menus;crash,menus,2021-11-17 07:46:58.000 -"Fobia",,status-playable,playable,2020-12-14 21:05:23.000 -"Food Truck Tycoon",0100F3900D0F0000,status-playable,playable,2022-10-17 20:15:55.000 -"Football Manager 2021 Touch",01007CF013152000,gpu;status-ingame,ingame,2022-10-17 20:08:23.000 -"FOOTBALL MANAGER 2023 TOUCH",0100EDC01990E000,gpu;status-ingame,ingame,2023-08-01 03:40:53.000 -"Football Manager Touch 2018",010097F0099B4000,status-playable,playable,2022-07-26 20:17:56.000 -"For The King",010069400B6BE000,nvdec;status-playable,playable,2021-02-15 18:51:44.000 -"Forager",01001D200BCC4000,status-menus;crash,menus,2021-11-24 07:10:17.000 -"Foreclosed",0100AE001256E000,status-ingame;crash;Needs More Attention;nvdec,ingame,2022-12-06 14:41:12.000 -"Foregone",,deadlock;status-ingame,ingame,2020-12-17 15:26:53.000 -"Forgotton Anne",010059E00B93C000,nvdec;status-playable,playable,2021-02-15 18:28:07.000 -"FORMA.8",,nvdec;status-playable,playable,2020-11-15 01:04:32.000 -"Fort Boyard",,nvdec;slow;status-playable,playable,2020-05-15 13:22:53.000 -"Fortnite",010025400AECE000,services-horizon;status-nothing,nothing,2024-04-06 18:23:25.000 -"Fossil Hunters",0100CA500756C000,status-playable;nvdec,playable,2022-07-27 11:37:20.000 -"FOX n FORESTS",01008A100A028000,status-playable,playable,2021-02-16 14:27:49.000 -"FoxyLand",,status-playable,playable,2020-07-29 20:55:20.000 -"FoxyLand 2",,status-playable,playable,2020-08-06 14:41:30.000 -"Fractured Minds",01004200099F2000,status-playable,playable,2022-09-13 21:21:40.000 -"FRAMED COLLECTION",0100F1A00A5DC000,status-playable;nvdec,playable,2022-07-27 11:48:15.000 -"Fred3ric",0100AC40108D8000,status-playable,playable,2021-04-15 13:30:31.000 -"Frederic 2",,status-playable,playable,2020-07-23 16:44:37.000 -"Frederic: Resurrection of Music",,nvdec;status-playable,playable,2020-07-23 16:59:53.000 -"Freedom Finger",010082B00EE50000,nvdec;status-playable,playable,2021-06-09 19:31:30.000 -"Freedom Planet",,status-playable,playable,2020-05-14 12:23:06.000 -"Friday the 13th: Killer Puzzle",010003F00BD48000,status-playable,playable,2021-01-28 01:33:38.000 -"Friday the 13th: The Game",010092A00C4B6000,status-playable;nvdec;online-broken;UE4,playable,2022-09-06 17:33:27.000 -"Front Mission 1st Remake",0100F200178F4000,status-playable,playable,2023-06-09 07:44:24.000 -"Frontline Zed",,status-playable,playable,2020-10-03 12:55:59.000 -"Frost",0100B5300B49A000,status-playable,playable,2022-07-27 12:00:36.000 -"Fruitfall Crush",,status-playable,playable,2020-10-20 11:33:33.000 -"FullBlast",,status-playable,playable,2020-05-19 10:34:13.000 -"FUN! FUN! Animal Park",010002F00CC20000,status-playable,playable,2021-04-14 17:08:52.000 -"FunBox Party",,status-playable,playable,2020-05-15 12:07:02.000 -"Funghi Puzzle Funghi Explosion",,status-playable,playable,2020-11-23 14:17:41.000 -"Funimation",01008E10130F8000,gpu;status-boots,boots,2021-04-08 13:08:17.000 -"Funny Bunny Adventures",,status-playable,playable,2020-08-05 13:46:56.000 -"Furi",01000EC00AF98000,status-playable,playable,2022-07-27 12:21:20.000 -"Furi Definitive Edition",01000EC00AF98000,status-playable,playable,2022-07-27 12:35:08.000 -"Furwind",0100A6B00D4EC000,status-playable,playable,2021-02-19 19:44:08.000 -"Fury Unleashed",,crash;services;status-ingame,ingame,2020-10-18 11:52:40.000 -"Fury Unleashed Demo",,status-playable,playable,2020-10-08 20:09:21.000 -"FUSER",0100E1F013674000,status-playable;nvdec;UE4,playable,2022-10-17 20:58:32.000 -"Fushigi no Gensokyo Lotus Labyrinth",,Needs Update;audio;gpu;nvdec;status-ingame,ingame,2021-01-20 15:30:02.000 -"Futari de! Nyanko Daisensou",01003C300B274000,status-playable,playable,2024-01-05 22:26:52.000 -"FUZE Player",010055801134E000,status-ingame;online-broken;vulkan-backend-bug,ingame,2022-10-18 12:23:53.000 -"FUZE4",0100EAD007E98000,status-playable;vulkan-backend-bug,playable,2022-09-06 19:25:01.000 -"FuzzBall",010067600F1A0000,crash;status-nothing,nothing,2021-03-29 20:13:21.000 -"G-MODE Archives 06 The strongest ever Julia Miyamoto",,status-playable,playable,2020-10-15 13:06:26.000 -"G.I. Joe Operation Blackout",,UE4;crash;status-boots,boots,2020-11-21 12:37:44.000 -"Gal Metal - 01B8000C2EA000",,status-playable,playable,2022-07-27 20:57:48.000 -"Gal*Gun 2",010024700901A000,status-playable;nvdec;UE4,playable,2022-07-27 12:45:37.000 -"Gal*Gun Returns [ ぎゃる☆がん りたーんず ]",0100047013378000,status-playable;nvdec,playable,2022-10-17 23:50:46.000 -"GALAK-Z: Variant S",0100C9800A454000,status-boots;online-broken,boots,2022-07-29 11:59:12.000 -"Game Boy - Nintendo Switch Online",0100C62011050000,status-playable,playable,2023-03-21 12:43:48.000 -"Game Boy Advance - Nintendo Switch Online",010012F017576000,status-playable,playable,2023-02-16 20:38:15.000 -"Game Builder Garage",0100FA5010788000,status-ingame,ingame,2024-04-20 21:46:22.000 -"Game Dev Story",,status-playable,playable,2020-05-20 00:00:38.000 -"Game Doraemon Nobita no Shin Kyoryu",01006BD00F8C0000,gpu;status-ingame,ingame,2023-02-27 02:03:28.000 -"Garage",,status-playable,playable,2020-05-19 20:59:53.000 -"Garfield Kart Furious Racing",010061E00E8BE000,status-playable;ldn-works;loader-allocator,playable,2022-09-13 21:40:25.000 -"Gates of Hell",,slow;status-playable,playable,2020-10-22 12:44:26.000 -"Gato Roboto",010025500C098000,status-playable,playable,2023-01-20 15:04:11.000 -"Gear.Club Unlimited",010065E003FD8000,status-playable,playable,2021-06-08 13:03:19.000 -"Gear.Club Unlimited 2",010072900AFF0000,status-playable;nvdec;online-broken,playable,2022-07-29 12:52:16.000 -"Geki Yaba Runner Anniversary Edition",01000F000D9F0000,status-playable,playable,2021-02-19 18:59:07.000 -"Gekido Kintaro's Revenge",,status-playable,playable,2020-10-27 12:44:05.000 -"Gelly Break",01009D000AF3A000,UE4;status-playable,playable,2021-03-03 16:04:02.000 -"Gem Smashers",01001A4008192000,nvdec;status-playable,playable,2021-06-08 13:40:51.000 -"Genetic Disaster",,status-playable,playable,2020-06-19 21:41:12.000 -"Genkai Tokki Moero Crystal H- 極限凸起 萌情水晶 H - 한계돌파 모에로크리스탈 H",0100D7E0110B2000,32-bit;status-playable,playable,2022-06-06 00:42:09.000 -"Gensokyo Defenders",010000300C79C000,status-playable;online-broken;UE4,playable,2022-07-29 13:48:12.000 -"Gensou Rougoku no Kaleidscope",0100AC600EB4C000,status-menus;crash,menus,2021-11-24 08:45:07.000 -"Georifters",,UE4;crash;nvdec;status-menus,menus,2020-12-04 22:30:50.000 -"Gerrrms",,status-playable,playable,2020-08-15 11:32:52.000 -"Get 10 Quest",,status-playable,playable,2020-08-03 12:48:39.000 -"Get Over Here",0100B5B00E77C000,status-playable,playable,2022-10-28 11:53:52.000 -"Ghost 1.0",0100EEB005ACC000,status-playable,playable,2021-02-19 20:48:47.000 -"Ghost Blade HD",010063200C588000,status-playable;online-broken,playable,2022-09-13 21:51:21.000 -"Ghost Grab 3000",,status-playable,playable,2020-07-11 18:09:52.000 -"Ghost Parade",,status-playable,playable,2020-07-14 00:43:54.000 -"Ghost Sweeper",01004B301108C000,status-playable,playable,2022-10-10 12:45:36.000 -"Ghost Trick Phantom Detective",010029B018432000,status-playable,playable,2023-08-23 14:50:12.000 -"Ghostbusters: The Video Game Remastered",010008A00F632000,status-playable;nvdec,playable,2021-09-17 07:26:57.000 -"Ghostrunner",,UE4;crash;gpu;nvdec;status-ingame,ingame,2020-12-17 13:01:59.000 -"Ghosts 'n Goblins Resurrection",0100D6200F2BA000,status-playable,playable,2023-05-09 12:40:41.000 -"Giana Sisters: Twisted Dreams - Owltimate Edition",01003830092B8000,status-playable,playable,2022-07-29 14:06:12.000 -"Gibbous - A Cthulhu Adventure",0100D95012C0A000,status-playable;nvdec,playable,2022-10-10 12:57:17.000 -"GIGA WRECKER Alt.",010045F00BFC2000,status-playable,playable,2022-07-29 14:13:54.000 -"Gigantosaurus The Game",01002C400E526000,status-playable;UE4,playable,2022-09-27 21:20:00.000 -"Ginger: Beyond the Crystal",0100C50007070000,status-playable,playable,2021-02-17 16:27:00.000 -"Girabox",,status-playable,playable,2020-12-12 13:55:05.000 -"Giraffe and Annika",,UE4;crash;status-ingame,ingame,2020-12-04 22:41:57.000 -"Girls und Panzer Dream Tank Match DX",01006DD00CC96000,status-playable;ldn-untested,playable,2022-09-12 16:07:11.000 -"Glaive: Brick Breaker",,status-playable,playable,2020-05-20 12:15:59.000 -"Glitch's Trip",,status-playable,playable,2020-12-17 16:00:57.000 -"Glyph",0100EB501130E000,status-playable,playable,2021-02-08 19:56:51.000 -"Gnome More War",,status-playable,playable,2020-12-17 16:33:07.000 -"Gnomes Garden 2",,status-playable,playable,2021-02-19 20:08:13.000 -"Gnomes Garden: Lost King",010036C00D0D6000,deadlock;status-menus,menus,2021-11-18 11:14:03.000 -"Gnosia",01008EF013A7C000,status-playable,playable,2021-04-05 17:20:30.000 -"Go All Out",01000C800FADC000,status-playable;online-broken,playable,2022-09-21 19:16:34.000 -"Go Rally",010055A0161F4000,gpu;status-ingame,ingame,2023-08-16 21:18:23.000 -"GO VACATION",0100C1800A9B6000,status-playable;nvdec;ldn-works,playable,2024-05-13 19:28:53.000 -"Go! Fish Go!",,status-playable,playable,2020-07-27 13:52:28.000 -"Goat Simulator",010032600C8CE000,32-bit;status-playable,playable,2022-07-29 21:02:33.000 -"GOD EATER 3",01001C700873E000,gpu;status-ingame;nvdec,ingame,2022-07-29 21:33:21.000 -"GOD WARS THE COMPLETE LEGEND",,nvdec;status-playable,playable,2020-05-19 14:37:50.000 -"Gods Will Fall",0100CFA0111C8000,status-playable,playable,2021-02-08 16:49:59.000 -"Goetia",,status-playable,playable,2020-05-19 12:55:39.000 -"Going Under",,deadlock;nvdec;status-ingame,ingame,2020-12-11 22:29:46.000 -"Goken",,status-playable,playable,2020-08-05 20:22:38.000 -"Golazo - 010013800F0A4000",010013800F0A4000,status-playable,playable,2022-09-13 21:58:37.000 -"Golem Gates",01003C000D84C000,status-ingame;crash;nvdec;online-broken;UE4,ingame,2022-07-30 11:35:11.000 -"Golf Story",,status-playable,playable,2020-05-14 14:56:17.000 -"Golf With Your Friends",01006FB00EBE0000,status-playable;online-broken,playable,2022-09-29 12:55:11.000 -"Gone Home",0100EEC00AA6E000,status-playable,playable,2022-08-01 11:14:20.000 -"Gonner",,status-playable,playable,2020-05-19 12:05:02.000 -"Good Job!",,status-playable,playable,2021-03-02 13:15:55.000 -"Good Night, Knight",01003AD0123A2000,status-nothing;crash,nothing,2023-07-30 23:38:13.000 -"Good Pizza, Great Pizza",,status-playable,playable,2020-12-04 22:59:18.000 -"Goosebumps Dead of Night",,gpu;nvdec;status-ingame,ingame,2020-12-10 20:02:16.000 -"Goosebumps: The Game",,status-playable,playable,2020-05-19 11:56:52.000 -"Gorogoa",0100F2A005C98000,status-playable,playable,2022-08-01 11:55:08.000 -"GORSD",,status-playable,playable,2020-12-04 22:15:21.000 -"Gotcha Racing 2nd",,status-playable,playable,2020-07-23 17:14:04.000 -"Gothic Murder: Adventure That Changes Destiny",,deadlock;status-ingame;crash,ingame,2022-09-30 23:16:53.000 -"Grab the Bottle",,status-playable,playable,2020-07-14 17:06:41.000 -"Graceful Explosion Machine",,status-playable,playable,2020-05-19 20:36:55.000 -"Grand Brix Shooter",,slow;status-playable,playable,2020-06-24 13:23:54.000 -"Grand Guilds",010038100D436000,UE4;nvdec;status-playable,playable,2021-04-26 12:49:05.000 -"Grand Prix Story",0100BE600D07A000,status-playable,playable,2022-08-01 12:42:23.000 -"Grand Theft Auto 3",05B1D2ABD3D30000,services;status-nothing;crash;homebrew,nothing,2023-05-01 22:01:58.000 -"Grandia HD Collection",0100E0600BBC8000,status-boots;crash,boots,2024-08-19 04:29:48.000 -"Grass Cutter",,slow;status-ingame,ingame,2020-05-19 18:27:42.000 -"Grave Danger",,status-playable,playable,2020-05-18 17:41:28.000 -"GraviFire",010054A013E0C000,status-playable,playable,2021-04-05 17:13:32.000 -"Gravity Rider Zero",01002C2011828000,gpu;status-ingame;vulkan-backend-bug,ingame,2022-09-29 13:56:13.000 -"Greedroid",,status-playable,playable,2020-12-14 11:14:32.000 -"GREEN",010068D00AE68000,status-playable,playable,2022-08-01 12:54:15.000 -"Green Game",0100CBB0070EE000,nvdec;status-playable,playable,2021-02-19 18:51:55.000 -"GREEN The Life Algorithm",0100DFE00F002000,status-playable,playable,2022-09-27 21:37:13.000 -"Grey Skies: A War of the Worlds Story",0100DA7013792000,status-playable;UE4,playable,2022-10-24 11:13:59.000 -"GRID Autosport",0100DC800A602000,status-playable;nvdec;online-broken;ldn-untested,playable,2023-03-02 20:14:45.000 -"Grid Mania",,status-playable,playable,2020-05-19 14:11:05.000 -"Gridd: Retroenhanced",,status-playable,playable,2020-05-20 11:32:40.000 -"Grim Fandango Remastered",0100B7900B024000,status-playable;nvdec,playable,2022-08-01 13:55:58.000 -"Grim Legends 2: Song Of The Dark Swan",010078E012D80000,status-playable;nvdec,playable,2022-10-18 12:58:45.000 -"Grim Legends: The Forsaken Bride",010009F011F90000,status-playable;nvdec,playable,2022-10-18 13:14:06.000 -"Grimshade",01001E200F2F8000,status-playable,playable,2022-10-02 12:44:20.000 -"Grindstone",0100538012496000,status-playable,playable,2023-02-08 15:54:06.000 -"GRIP",0100459009A2A000,status-playable;nvdec;online-broken;UE4,playable,2022-08-01 15:00:22.000 -"GRIS",0100E1700C31C000,nvdec;status-playable,playable,2021-06-03 13:33:44.000 -"GRISAIA PHANTOM TRIGGER 01&02",01009D7011B02000,status-playable;nvdec,playable,2022-12-04 21:16:06.000 -"Grisaia Phantom Trigger 03",01005250123B8000,audout;status-playable,playable,2021-01-31 12:30:47.000 -"GRISAIA PHANTOM TRIGGER 04 -0100D970123BA000",0100D970123BA000,audout;status-playable,playable,2021-01-31 12:40:37.000 -"GRISAIA PHANTOM TRIGGER 05",01002330123BC000,audout;nvdec;status-playable,playable,2021-01-31 12:49:59.000 -"GRISAIA PHANTOM TRIGGER 5.5",0100CAF013AE6000,audout;nvdec;status-playable,playable,2021-01-31 12:59:44.000 -"Grizzland",010091300FFA0000,gpu;status-ingame,ingame,2024-07-11 16:28:34.000 -"Groove Coaster: Wai Wai Party!!!!",0100EB500D92E000,status-playable;nvdec;ldn-broken,playable,2021-11-06 14:54:27.000 -"Guacamelee! 2",,status-playable,playable,2020-05-15 14:56:59.000 -"Guacamelee! Super Turbo Championship Edition",,status-playable,playable,2020-05-13 23:44:18.000 -"Guess the Character",,status-playable,playable,2020-05-20 13:14:19.000 -"Guess The Word",,status-playable,playable,2020-07-26 21:34:25.000 -"GUILTY GEAR XX ACCENT CORE PLUS R",,nvdec;status-playable,playable,2021-01-13 09:28:33.000 -"GUNBIRD for Nintendo Switch",01003C6008940000,32-bit;status-playable,playable,2021-06-04 19:16:01.000 -"GUNBIRD2 for Nintendo Switch",,status-playable,playable,2020-10-10 14:41:16.000 -"Gunka o haita neko",,gpu;nvdec;status-ingame,ingame,2020-08-25 12:37:56.000 -"Gunman Clive HD Collection",,status-playable,playable,2020-10-09 12:17:35.000 -"Guns Gore and Cannoli 2",,online;status-playable,playable,2021-01-06 18:43:59.000 -"Gunvolt Chronicles: Luminous Avenger iX",,status-playable,playable,2020-06-16 22:47:07.000 -"Gunvolt Chronicles: Luminous Avenger iX 2",0100763015C2E000,status-nothing;crash;Needs Update,nothing,2022-04-29 15:34:34.000 -"Gurimugurimoa OnceMore Demo",01002C8018554000,status-playable,playable,2022-07-29 22:07:31.000 -"Gylt",0100AC601DCA8000,status-ingame;crash,ingame,2024-03-18 20:16:51.000 -"HAAK",0100822012D76000,gpu;status-ingame,ingame,2023-02-19 14:31:05.000 -"Habroxia",,status-playable,playable,2020-06-16 23:04:42.000 -"Hades",0100535012974000,status-playable;vulkan,playable,2022-10-05 10:45:21.000 -"Hakoniwa Explorer Plus",,slow;status-ingame,ingame,2021-02-19 16:56:19.000 -"Halloween Pinball",,status-playable,playable,2021-01-12 16:00:46.000 -"Hamidashi Creative",01006FF014152000,gpu;status-ingame,ingame,2021-12-19 15:30:51.000 -"Hammerwatch",01003B9007E86000,status-playable;online-broken;ldn-broken,playable,2022-08-01 16:28:46.000 -"Hand of Fate 2",01003620068EA000,status-playable,playable,2022-08-01 15:44:16.000 -"Hang the Kings",,status-playable,playable,2020-07-28 22:56:59.000 -"Happy Animals Mini Golf",010066C018E50000,gpu;status-ingame,ingame,2022-12-04 19:24:28.000 -"Hard West",0100ECE00D13E000,status-nothing;regression,nothing,2022-02-09 07:45:56.000 -"HARDCORE Maze Cube",,status-playable,playable,2020-12-04 20:01:24.000 -"HARDCORE MECHA",,slow;status-playable,playable,2020-11-01 15:06:33.000 -"HardCube",01000C90117FA000,status-playable,playable,2021-05-05 18:33:03.000 -"Hardway Party",,status-playable,playable,2020-07-26 12:35:07.000 -"Harvest Life",0100D0500AD30000,status-playable,playable,2022-08-01 16:51:45.000 -"Harvest Moon One World - 010016B010FDE00",,status-playable,playable,2023-05-26 09:17:19.000 -"Harvestella",0100A280187BC000,status-playable;UE4;vulkan-backend-bug;mac-bug,playable,2024-02-13 07:04:11.000 -"Has-Been Heroes",,status-playable,playable,2021-01-13 13:31:48.000 -"Hatsune Miku: Project DIVA Mega Mix",01001CC00FA1A000,audio;status-playable;online-broken,playable,2024-01-07 23:12:57.000 -"Haunted Dawn: The Zombie Apocalypse",01009E6014F18000,status-playable,playable,2022-10-28 12:31:51.000 -"Haunted Dungeons: Hyakki Castle",,status-playable,playable,2020-08-12 14:21:48.000 -"Haven",0100E2600DBAA000,status-playable,playable,2021-03-24 11:52:41.000 -"Hayfever",0100EA900FB2C000,status-playable;loader-allocator,playable,2022-09-22 17:35:41.000 -"Headliner: NoviNews",0100EFE00E1DC000,online;status-playable,playable,2021-03-01 11:36:00.000 -"Headsnatchers",,UE4;crash;status-menus,menus,2020-07-14 13:29:14.000 -"Headspun",,status-playable,playable,2020-07-31 19:46:47.000 -"Heart and Slash",,status-playable,playable,2021-01-13 20:56:32.000 -"Heaven Dust",,status-playable,playable,2020-05-17 14:02:41.000 -"Heaven's Vault",0100FD901000C000,crash;status-ingame,ingame,2021-02-08 18:22:01.000 -"Helheim Hassle",,status-playable,playable,2020-10-14 11:38:36.000 -"Hell is Other Demons",,status-playable,playable,2021-01-13 13:23:02.000 -"Hell Pie0",01000938017E5C00,status-playable;nvdec;UE4,playable,2022-11-03 16:48:46.000 -"Hell Warders",0100A4600E27A000,online;status-playable,playable,2021-02-27 02:31:03.000 -"Hellblade: Senua's Sacrifice",010044500CF8E000,gpu;status-ingame;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-01 19:36:50.000 -"Hello Kitty Kruisers With Sanrio Friends",010087D0084A8000,nvdec;status-playable,playable,2021-06-04 19:08:46.000 -"Hello Neighbor",0100FAA00B168000,status-playable;UE4,playable,2022-08-01 21:32:23.000 -"Hello Neighbor: Hide And Seek",,UE4;gpu;slow;status-ingame,ingame,2020-10-24 10:59:57.000 -"Hellpoint",010024600C794000,status-menus,menus,2021-11-26 13:24:20.000 -"Hero Express",,nvdec;status-playable,playable,2020-08-06 13:23:43.000 -"Hero-U: Rogue to Redemption",010077D01094C000,nvdec;status-playable,playable,2021-03-24 11:40:01.000 -"Heroes of Hammerwatch",0100D2B00BC54000,status-playable,playable,2022-08-01 18:30:21.000 -"Heroine Anthem Zero episode 1",01001B70080F0000,status-playable;vulkan-backend-bug,playable,2022-08-01 22:02:36.000 -"Heroki",010057300B0DC000,gpu;status-ingame,ingame,2023-07-30 19:30:01.000 -"Heroland",,status-playable,playable,2020-08-05 15:35:39.000 -"Hexagravity",01007AC00E012000,status-playable,playable,2021-05-28 13:47:48.000 -"Hidden",01004E800F03C000,slow;status-ingame,ingame,2022-10-05 10:56:53.000 -"Higurashi no Naku Koro ni Hō",0100F6A00A684000,audio;status-ingame,ingame,2021-09-18 14:40:28.000 -"Himehibi 1 gakki - Princess Days",0100F8D0129F4000,status-nothing;crash,nothing,2021-11-03 08:34:19.000 -"Hiragana Pixel Party",,status-playable,playable,2021-01-14 08:36:50.000 -"Hitman 3 - Cloud Version",01004990132AC000,Needs Update;crash;services;status-nothing,nothing,2021-04-18 22:35:07.000 -"Hitman: Blood Money - Reprisal",010083A018262000,deadlock;status-ingame,ingame,2024-09-28 16:28:50.000 -"Hob: The Definitive Edition",,status-playable,playable,2021-01-13 09:39:19.000 -"Hoggy 2",0100F7300ED2C000,status-playable,playable,2022-10-10 13:53:35.000 -"Hogwarts Legacy 0100F7E00C70E000",0100F7E00C70E000,status-ingame;slow,ingame,2024-09-03 19:53:58.000 -"Hollow Knight",0100633007D48000,status-playable;nvdec,playable,2023-01-16 15:44:56.000 -"Hollow0",0100F2100061E800,UE4;gpu;status-ingame,ingame,2021-03-03 23:42:56.000 -"Holy Potatoes! What the Hell?!",,status-playable,playable,2020-07-03 10:48:56.000 -"HoPiKo",,status-playable,playable,2021-01-13 20:12:38.000 -"Hopping girl KOHANE Jumping Kingdom: Princess of the Black Rabbit",010087800EE5A000,status-boots;crash,boots,2023-02-19 00:51:21.000 -"Horace",010086D011EB8000,status-playable,playable,2022-10-10 14:03:50.000 -"Horizon Chase 2",0100001019F6E000,deadlock;slow;status-ingame;crash;UE4,ingame,2024-08-19 04:24:06.000 -"Horizon Chase Turbo",01009EA00B714000,status-playable,playable,2021-02-19 19:40:56.000 -"Horror Pinball Bundle",0100E4200FA82000,status-menus;crash,menus,2022-09-13 22:15:34.000 -"Hotel Transylvania 3: Monsters Overboard",0100017007980000,nvdec;status-playable,playable,2021-01-27 18:55:31.000 -"Hotline Miami Collection",0100D0E00E51E000,status-playable;nvdec,playable,2022-09-09 16:41:19.000 -"Hotshot Racing",0100BDE008218000,gpu;status-ingame;nvdec;online-broken;ldn-untested;vulkan-backend-bug,ingame,2024-02-04 21:31:17.000 -"House Flipper",0100CAE00EB02000,status-playable,playable,2021-06-16 18:28:32.000 -"Hover",0100F6800910A000,status-playable;online-broken,playable,2022-09-20 12:54:46.000 -"Hulu",0100A66003384000,status-boots;online-broken,boots,2022-12-09 10:05:00.000 -"Human Resource Machine",,32-bit;status-playable,playable,2020-12-17 21:47:09.000 -"Human: Fall Flat",,status-playable,playable,2021-01-13 18:36:05.000 -"Hungry Shark World",,status-playable,playable,2021-01-13 18:26:08.000 -"Huntdown",0100EBA004726000,status-playable,playable,2021-04-05 16:59:54.000 -"Hunter's Legacy: Purrfect Edition",010068000CAC0000,status-playable,playable,2022-08-02 10:33:31.000 -"Hunting Simulator",0100C460040EA000,status-playable;UE4,playable,2022-08-02 10:54:08.000 -"Hunting Simulator 2",010061F010C3A000,status-playable;UE4,playable,2022-10-10 14:25:51.000 -"Hyper Jam",,UE4;crash;status-boots,boots,2020-12-15 22:52:11.000 -"Hyper Light Drifter - Special Edition",01003B200B372000,status-playable;vulkan-backend-bug,playable,2023-01-13 15:44:48.000 -"HyperBrawl Tournament",,crash;services;status-boots,boots,2020-12-04 23:03:27.000 -"HYPERCHARGE: Unboxed",0100A8B00F0B4000,status-playable;nvdec;online-broken;UE4;ldn-untested,playable,2022-09-27 21:52:39.000 -"HyperParasite",010061400ED90000,status-playable;nvdec;UE4,playable,2022-09-27 22:05:44.000 -"Hypnospace Outlaw",0100959010466000,status-ingame;nvdec,ingame,2023-08-02 22:46:49.000 -"Hyrule Warriors: Age of Calamity",01002B00111A2000,gpu;deadlock;slow;status-ingame;crash;nvdec;amd-vendor-bug,ingame,2024-02-28 00:47:00.000 -"Hyrule Warriors: Age of Calamity - Demo Version",0100A2C01320E000,slow;status-playable,playable,2022-10-10 17:37:41.000 -"Hyrule Warriors: Definitive Edition",0100AE00096EA000,services-horizon;status-ingame;nvdec,ingame,2024-06-16 10:34:05.000 -"I AM SETSUNA",0100849000BDA000,status-playable,playable,2021-11-28 11:06:11.000 -"I Saw Black Clouds",01001860140B0000,nvdec;status-playable,playable,2021-04-19 17:22:16.000 -"I, Zombie",,status-playable,playable,2021-01-13 14:53:44.000 -"Ice Age Scrat's Nutty Adventure",01004E5007E92000,status-playable;nvdec,playable,2022-09-13 22:22:29.000 -"Ice Cream Surfer",,status-playable,playable,2020-07-29 12:04:07.000 -"Ice Station Z",0100954014718000,status-menus;crash,menus,2021-11-21 20:02:15.000 -"ICEY",,status-playable,playable,2021-01-14 16:16:04.000 -"Iconoclasts",0100BC60099FE000,status-playable,playable,2021-08-30 21:11:04.000 -"Idle Champions of the Forgotten Realms",,online;status-boots,boots,2020-12-17 18:24:57.000 -"Idol Days - 愛怒流でいす",01002EC014BCA000,gpu;status-ingame;crash,ingame,2021-12-19 15:31:28.000 -"If Found...",,status-playable,playable,2020-12-11 13:43:14.000 -"If My Heart Had Wings",01001AC00ED72000,status-playable,playable,2022-09-29 14:54:57.000 -"Ikaruga",01009F20086A0000,status-playable,playable,2023-04-06 15:00:02.000 -"Ikenfell",010040900AF46000,status-playable,playable,2021-06-16 17:18:44.000 -"Immortal Planet",01007BC00E55A000,status-playable,playable,2022-09-20 13:40:43.000 -"Immortal Realms: Vampire Wars",010079501025C000,nvdec;status-playable,playable,2021-06-17 17:41:46.000 -"Immortal Redneck - 0100F400435A000",,nvdec;status-playable,playable,2021-01-27 18:36:28.000 -"Immortals Fenyx Rising",01004A600EC0A000,gpu;status-menus;crash,menus,2023-02-24 16:19:55.000 -"IMPLOSION",0100737003190000,status-playable;nvdec,playable,2021-12-12 03:52:13.000 -"In rays of the Light",0100A760129A0000,status-playable,playable,2021-04-07 15:18:07.000 -"Indie Darling Bundle Vol. 3",01004DE011076000,status-playable,playable,2022-10-02 13:01:57.000 -"Indie Puzzle Bundle Vol 1",0100A2101107C000,status-playable,playable,2022-09-27 22:23:21.000 -"Indiecalypse",,nvdec;status-playable,playable,2020-06-11 20:19:09.000 -"Indivisible",01001D3003FDE000,status-playable;nvdec,playable,2022-09-29 15:20:57.000 -"Inertial Drift",01002BD00F626000,status-playable;online-broken,playable,2022-10-11 12:22:19.000 -"Infernium",,UE4;regression;status-nothing,nothing,2021-01-13 16:36:07.000 -"Infinite Minigolf",,online;status-playable,playable,2020-09-29 12:26:25.000 -"Infliction",01001CB00EFD6000,status-playable;nvdec;UE4,playable,2022-10-02 13:15:55.000 -"INMOST",0100F1401161E000,status-playable,playable,2022-10-05 11:27:40.000 -"InnerSpace",,status-playable,playable,2021-01-13 19:36:14.000 -"INSIDE",0100D2D009028000,status-playable,playable,2021-12-25 20:24:56.000 -"Inside Grass: A little adventure",,status-playable,playable,2020-10-15 15:26:27.000 -"INSTANT SPORTS",010099700D750000,status-playable,playable,2022-09-09 12:59:40.000 -"Instant Sports Summer Games",,gpu;status-menus,menus,2020-09-02 13:39:28.000 -"Instant Sports Tennis",010031B0145B8000,status-playable,playable,2022-10-28 16:42:17.000 -"Interrogation: You will be deceived",010041501005E000,status-playable,playable,2022-10-05 11:40:10.000 -"Into the Dead 2",01000F700DECE000,status-playable;nvdec,playable,2022-09-14 12:36:14.000 -"INVERSUS Deluxe",01001D0003B96000,status-playable;online-broken,playable,2022-08-02 14:35:36.000 -"Invisible Fist",,status-playable,playable,2020-08-08 13:25:52.000 -"Invisible, Inc.",,crash;status-nothing,nothing,2021-01-29 16:28:13.000 -"Invisigun Reloaded",01005F400E644000,gpu;online;status-ingame,ingame,2021-06-10 12:13:24.000 -"Ion Fury",010041C00D086000,status-ingame;vulkan-backend-bug,ingame,2022-08-07 08:27:51.000 -"Iridium",010095C016C14000,status-playable,playable,2022-08-05 23:19:53.000 -"Iris Fall",0100945012168000,status-playable;nvdec,playable,2022-10-18 13:40:22.000 -"Iris School of Wizardry - Vinculum Hearts -",0100AD300B786000,status-playable,playable,2022-12-05 13:11:15.000 -"Iron Wings",01005270118D6000,slow;status-ingame,ingame,2022-08-07 08:32:57.000 -"Ironcast",,status-playable,playable,2021-01-13 13:54:29.000 -"Irony Curtain: From Matryoshka with Love",0100E5700CD56000,status-playable,playable,2021-06-04 20:12:37.000 -"Is It Wrong to Try to Pick Up Girls in a Dungeon? Infinite Combate",,status-playable,playable,2020-08-31 13:52:21.000 -"ISLAND",0100F06013710000,status-playable,playable,2021-05-06 15:11:47.000 -"Island Flight Simulator",010077900440A000,status-playable,playable,2021-06-04 19:42:46.000 -"Island Saver",,nvdec;status-playable,playable,2020-10-23 22:07:02.000 -"Isoland",,status-playable,playable,2020-07-26 13:48:16.000 -"Isoland 2: Ashes of Time",,status-playable,playable,2020-07-26 14:29:05.000 -"Isolomus",010001F0145A8000,services;status-boots,boots,2021-11-03 07:48:21.000 -"ITTA",010068700C70A000,status-playable,playable,2021-06-07 03:15:52.000 -"Ittle Dew 2+",,status-playable,playable,2020-11-17 11:44:32.000 -"IxSHE Tell",0100DEB00F12A000,status-playable;nvdec,playable,2022-12-02 18:00:42.000 -"Izneo",0100D8E00C874000,status-menus;online-broken,menus,2022-08-06 15:56:23.000 -"James Pond Operation Robocod",,status-playable,playable,2021-01-13 09:48:45.000 -"Japanese Rail Sim: Journey to Kyoto",,nvdec;status-playable,playable,2020-07-29 17:14:21.000 -"JDM Racing",,status-playable,playable,2020-08-03 17:02:37.000 -"Jenny LeClue - Detectivu",,crash;status-nothing,nothing,2020-12-15 21:07:07.000 -"Jeopardy!",01006E400AE2A000,audout;nvdec;online;status-playable,playable,2021-02-22 13:53:46.000 -"Jet Kave Adventure",0100E4900D266000,status-playable;nvdec,playable,2022-09-09 14:50:39.000 -"Jet Lancer",0100F3500C70C000,gpu;status-ingame,ingame,2021-02-15 18:15:47.000 -"Jettomero: Hero of the Universe",0100A5A00AF26000,status-playable,playable,2022-08-02 14:46:43.000 -"Jiffy",01008330134DA000,gpu;status-ingame;opengl,ingame,2024-02-03 23:11:24.000 -"Jim Is Moving Out!",,deadlock;status-ingame,ingame,2020-06-03 22:05:19.000 -"Jinrui no Ninasama he",0100F4D00D8BE000,status-ingame;crash,ingame,2023-03-07 02:04:17.000 -"Jisei: The First Case HD",010038D011F08000,audio;status-playable,playable,2022-10-05 11:43:33.000 -"Job the Leprechaun",,status-playable,playable,2020-06-05 12:10:06.000 -"John Wick Hex",01007090104EC000,status-playable,playable,2022-08-07 08:29:12.000 -"Johnny Turbo's Arcade Gate of Doom",010069B002CDE000,status-playable,playable,2022-07-29 12:17:50.000 -"Johnny Turbo's Arcade Two Crude Dudes",010080D002CC6000,status-playable,playable,2022-08-02 20:29:50.000 -"Johnny Turbo's Arcade Wizard Fire",0100D230069CC000,status-playable,playable,2022-08-02 20:39:15.000 -"JoJos Bizarre Adventure All-Star Battle R",01008120128C2000,status-playable,playable,2022-12-03 10:45:10.000 -"Journey to the Savage Planet",01008B60117EC000,status-playable;nvdec;UE4;ldn-untested,playable,2022-10-02 18:48:12.000 -"Juicy Realm - 0100C7600F654000",0100C7600F654000,status-playable,playable,2023-02-21 19:16:20.000 -"Jumanji",,UE4;crash;status-boots,boots,2020-07-12 13:52:25.000 -"JUMP FORCE Deluxe Edition",0100183010F12000,status-playable;nvdec;online-broken;UE4,playable,2023-10-01 15:56:05.000 -"Jump King",,status-playable,playable,2020-06-09 10:12:39.000 -"Jump Rope Challenge",0100B9C012706000,services;status-boots;crash;Needs Update,boots,2023-02-27 01:24:28.000 -"Jumping Joe & Friends",,status-playable,playable,2021-01-13 17:09:42.000 -"JunkPlanet",,status-playable,playable,2020-11-09 12:38:33.000 -"Jurassic Pinball",0100CE100A826000,status-playable,playable,2021-06-04 19:02:37.000 -"Jurassic World Evolution Complete Edition",010050A011344000,cpu;status-menus;crash,menus,2023-08-04 18:06:54.000 -"Just Dance 2017",0100BCE000598000,online;status-playable,playable,2021-03-05 09:46:01.000 -"Just Dance 2019",,gpu;online;status-ingame,ingame,2021-02-27 17:21:27.000 -"JUST DANCE 2020",0100DDB00DB38000,status-playable,playable,2022-01-24 13:31:57.000 -"Just Dance 2022",0100EA6014BB8000,gpu;services;status-ingame;crash;Needs Update,ingame,2022-10-28 11:01:53.000 -"Just Dance 2023",0100BEE017FC0000,status-nothing,nothing,2023-06-05 16:44:54.000 -"Just Die Already",0100AC600CF0A000,status-playable;UE4,playable,2022-12-13 13:37:50.000 -"Just Glide",,status-playable,playable,2020-08-07 17:38:10.000 -"Just Shapes & Beats",,ldn-untested;nvdec;status-playable,playable,2021-02-09 12:18:36.000 -"JYDGE",010035A0044E8000,status-playable,playable,2022-08-02 21:20:13.000 -"Kagamihara/Justice",0100D58012FC2000,crash;status-nothing,nothing,2021-06-21 16:41:29.000 -"Kairobotica",0100D5F00EC52000,status-playable,playable,2021-05-06 12:17:56.000 -"KAMEN RIDER CLIMAX SCRAMBLE",0100BDC00A664000,status-playable;nvdec;ldn-untested,playable,2024-07-03 08:51:11.000 -"KAMEN RIDER memory of heroez / Premium Sound Edition",0100A9801180E000,status-playable,playable,2022-12-06 03:14:26.000 -"KAMIKO",,status-playable,playable,2020-05-13 12:48:57.000 -"Kangokuto Mary Skelter Finale",,audio;crash;status-ingame,ingame,2021-01-09 22:39:28.000 -"Katakoi Contrast - collection of branch -",01007FD00DB20000,status-playable;nvdec,playable,2022-12-09 09:41:26.000 -"Katamari Damacy REROLL",0100D7000C2C6000,status-playable,playable,2022-08-02 21:35:05.000 -"KATANA KAMI: A Way of the Samurai Story",0100F9800EDFA000,slow;status-playable,playable,2022-04-09 10:40:16.000 -"Katana ZERO",010029600D56A000,status-playable,playable,2022-08-26 08:09:09.000 -"Kaze and the Wild Masks",010038B00F142000,status-playable,playable,2021-04-19 17:11:03.000 -"Keen: One Girl Army",,status-playable,playable,2020-12-14 23:19:52.000 -"Keep Talking and Nobody Explodes",01008D400A584000,status-playable,playable,2021-02-15 18:05:21.000 -"Kemono Friends Picross",01004B100BDA2000,status-playable,playable,2023-02-08 15:54:34.000 -"Kentucky Robo Chicken",,status-playable,playable,2020-05-12 20:54:17.000 -"Kentucky Route Zero [0100327005C94000]",0100327005C94000,status-playable,playable,2024-04-09 23:22:46.000 -"KeroBlaster",,status-playable,playable,2020-05-12 20:42:52.000 -"Kholat",0100F680116A2000,UE4;nvdec;status-playable,playable,2021-06-17 11:52:48.000 -"Kid Tripp",,crash;status-nothing,nothing,2020-10-15 07:41:23.000 -"Kill la Kill - IF",,status-playable,playable,2020-06-09 14:47:08.000 -"Kill The Bad Guy",,status-playable,playable,2020-05-12 22:16:10.000 -"Killer Queen Black",0100F2900B3E2000,ldn-untested;online;status-playable,playable,2021-04-08 12:46:18.000 -"Kin'iro no Corda Octave",,status-playable,playable,2020-09-22 13:23:12.000 -"Kine",010089000F0E8000,status-playable;UE4,playable,2022-09-14 14:28:37.000 -"King Lucas",0100E6B00FFBA000,status-playable,playable,2022-09-21 19:43:23.000 -"King Oddball",,status-playable,playable,2020-05-13 13:47:57.000 -"King of Seas",01008D80148C8000,status-playable;nvdec;UE4,playable,2022-10-28 18:29:41.000 -"King of Seas Demo",0100515014A94000,status-playable;nvdec;UE4,playable,2022-10-28 18:09:31.000 -"KINGDOM HEARTS Melody of Memory",,crash;nvdec;status-ingame,ingame,2021-03-03 17:34:12.000 -"Kingdom Rush",0100A280121F6000,status-nothing;32-bit;crash;Needs More Attention,nothing,2022-10-05 12:34:00.000 -"Kingdom: New Lands",0100BD9004AB6000,status-playable,playable,2022-08-02 21:48:50.000 -"Kingdom: Two Crowns",,status-playable,playable,2020-05-16 19:36:21.000 -"Kingdoms of Amalur: Re-Reckoning",0100EF50132BE000,status-playable,playable,2023-08-10 13:05:08.000 -"Kirby and the Forgotten Land",01004D300C5AE000,gpu;status-ingame,ingame,2024-03-11 17:11:21.000 -"Kirby and the Forgotten Land (Demo version)",010091201605A000,status-playable;demo,playable,2022-08-21 21:03:01.000 -"Kirby Fighters 2",0100227010460000,ldn-works;online;status-playable,playable,2021-06-17 13:06:39.000 -"Kirby Star Allies",01007E3006DDA000,status-playable;nvdec,playable,2023-11-15 17:06:19.000 -"Kirby’s Dream Buffet",0100A8E016236000,status-ingame;crash;online-broken;Needs Update;ldn-works,ingame,2024-03-03 17:04:44.000 -"Kirby’s Return to Dream Land Deluxe",01006B601380E000,status-playable,playable,2024-05-16 19:58:04.000 -"Kirby’s Return to Dream Land Deluxe - Demo",010091D01A57E000,status-playable;demo,playable,2023-02-18 17:21:55.000 -"Kissed by the Baddest Bidder",0100F3A00F4CA000,gpu;status-ingame;nvdec,ingame,2022-12-04 20:57:11.000 -"Kitten Squad",01000C900A136000,status-playable;nvdec,playable,2022-08-03 12:01:59.000 -"Klondike Solitaire",,status-playable,playable,2020-12-13 16:17:27.000 -"Knight Squad",,status-playable,playable,2020-08-09 16:54:51.000 -"Knight Squad 2",010024B00E1D6000,status-playable;nvdec;online-broken,playable,2022-10-28 18:38:09.000 -"Knight Terrors",,status-playable,playable,2020-05-13 13:09:22.000 -"Knightin'+",,status-playable,playable,2020-08-31 18:18:21.000 -"Knights of Pen and Paper +1 Deluxier Edition",,status-playable,playable,2020-05-11 21:46:32.000 -"Knights of Pen and Paper 2 Deluxiest Edition",,status-playable,playable,2020-05-13 14:07:00.000 -"Knock-Knock",010001A00A1F6000,nvdec;status-playable,playable,2021-02-01 20:03:19.000 -"Knockout City",01009EF00DDB4000,services;status-boots;online-broken,boots,2022-12-09 09:48:58.000 -"Koa and the Five Pirates of Mara",0100C57019BA2000,gpu;status-ingame,ingame,2024-07-11 16:14:44.000 -"Koi DX",,status-playable,playable,2020-05-11 21:37:51.000 -"Koi no Hanasaku Hyakkaen",,32-bit;gpu;nvdec;status-ingame,ingame,2020-10-03 14:17:10.000 -"Koloro",01005D200C9AA000,status-playable,playable,2022-08-03 12:34:02.000 -"Kona",0100464009294000,status-playable,playable,2022-08-03 12:48:19.000 -"Kono Subarashii Sekai ni Shukufuku o Kono Yokubo no Isho ni Choai o",010016C011AAA000,status-playable,playable,2023-04-26 09:51:08.000 -"Koral",,UE4;crash;gpu;status-menus,menus,2020-11-16 12:41:26.000 -"KORG Gadget",,status-playable,playable,2020-05-13 13:57:24.000 -"Kotodama: The 7 Mysteries of Fujisawa",010046600CCA4000,audout;status-playable,playable,2021-02-01 20:28:37.000 -"KukkoroDays",010022801242C000,status-menus;crash,menus,2021-11-25 08:52:56.000 -"KUNAI",010035A00DF62000,status-playable;nvdec,playable,2022-09-20 13:48:34.000 -"Kunio-Kun: The World Classics Collection",010060400ADD2000,online;status-playable,playable,2021-01-29 20:21:46.000 -"KUUKIYOMI 2: Consider It More! - New Era",010037500F282000,status-nothing;crash;Needs Update,nothing,2021-11-02 09:34:40.000 -"Kwaidan ~Azuma manor story~",0100894011F62000,status-playable,playable,2022-10-05 12:50:44.000 -"L.A. Noire",0100830004FB6000,status-playable,playable,2022-08-03 16:49:35.000 -"L.F.O. - Lost Future Omega -",,UE4;deadlock;status-boots,boots,2020-10-16 12:16:44.000 -"L.O.L. Surprise! Remix: We Rule the World",0100F2B0123AE000,status-playable,playable,2022-10-11 22:48:03.000 -"La Mulana 2",010038000F644000,status-playable,playable,2022-09-03 13:45:57.000 -"LA-MULANA",010026000F662800,gpu;status-ingame,ingame,2022-08-12 01:06:21.000 -"LA-MULANA 1 & 2",0100E5D00F4AE000,status-playable,playable,2022-09-22 17:56:36.000 -"Labyrinth of Refrain: Coven of Dusk",010058500B3E0000,status-playable,playable,2021-02-15 17:38:48.000 -"Labyrinth of the Witch",,status-playable,playable,2020-11-01 14:42:37.000 -"Langrisser I and II",0100BAB00E8C0000,status-playable,playable,2021-02-19 15:46:10.000 -"Lanota",,status-playable,playable,2019-09-04 01:58:14.000 -"Lapis x Labyrinth",01005E000D3D8000,status-playable,playable,2021-02-01 18:58:08.000 -"Laraan",,status-playable,playable,2020-12-16 12:45:48.000 -"Last Day of June",0100DA700879C000,nvdec;status-playable,playable,2021-06-08 11:35:32.000 -"LAST FIGHT",01009E100BDD6000,status-playable,playable,2022-09-20 13:54:55.000 -"Late Shift",0100055007B86000,nvdec;status-playable,playable,2021-02-01 18:43:58.000 -"Later Daters",,status-playable,playable,2020-07-29 16:35:45.000 -"Layers of Fear 2",01001730144DA000,status-playable;nvdec;UE4,playable,2022-10-28 18:49:52.000 -"Layers of Fear: Legacy",,nvdec;status-playable,playable,2021-02-15 16:30:41.000 -"Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy - Deluxe Edition",0100CE500D226000,status-playable;nvdec;opengl,playable,2022-09-14 15:01:57.000 -"Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy DX+0",0100FDB00AA80000,gpu;status-ingame;nvdec;opengl,ingame,2022-09-14 15:15:55.000 -"League of Evil",01009C100390E000,online;status-playable,playable,2021-06-08 11:23:27.000 -"Left-Right: The Mansion",,status-playable,playable,2020-05-13 13:02:12.000 -"Legacy of Kain™ Soul Reaver 1&2 Remastered",010079901C898000,status-playable,playable,2025-01-07 05:50:01.000 -"Legend of Kay Anniversary",01002DB007A96000,nvdec;status-playable,playable,2021-01-29 18:38:29.000 -"Legend of the Skyfish",,status-playable,playable,2020-06-24 13:04:22.000 -"Legend of the Tetrarchs",,deadlock;status-ingame,ingame,2020-07-10 07:54:03.000 -"Legendary Eleven",0100A73006E74000,status-playable,playable,2021-06-08 12:09:03.000 -"Legendary Fishing",0100A7700B46C000,online;status-playable,playable,2021-04-14 15:08:46.000 -"LEGO 2K Drive",0100739018020000,gpu;status-ingame;ldn-works,ingame,2024-04-09 02:05:12.000 -"Lego City Undercover",01003A30012C0000,status-playable;nvdec,playable,2024-09-30 08:44:27.000 -"LEGO DC Super-Villains",010070D009FEC000,status-playable,playable,2021-05-27 18:10:37.000 -"LEGO Harry Potter Collection",010052A00B5D2000,status-ingame;crash,ingame,2024-01-31 10:28:07.000 -"LEGO Horizon Adventures",010073C01AF34000,status-ingame;vulkan-backend-bug;opengl-backend-bug;UE4,ingame,2025-01-07 04:24:56.000 -"LEGO Jurassic World",01001C100E772000,status-playable,playable,2021-05-27 17:00:20.000 -"LEGO Marvel Super Heroes",01006F600FFC8000,status-playable,playable,2024-09-10 19:02:19.000 -"LEGO Marvel Super Heroes 2",0100D3A00409E000,status-nothing;crash,nothing,2023-03-02 17:12:33.000 -"LEGO Star Wars: The Skywalker Saga",010042D00D900000,gpu;slow;status-ingame,ingame,2024-04-13 20:08:46.000 -"LEGO The Incredibles",0100A01006E00000,status-nothing;crash,nothing,2022-08-03 18:36:59.000 -"LEGO Worlds",,crash;slow;status-ingame,ingame,2020-07-17 13:35:39.000 -"Legrand Legacy: Tale of the Fatebounds",,nvdec;status-playable,playable,2020-07-26 12:27:36.000 -"Leisure Suit Larry - Wet Dreams Dry Twice",010031A0135CA000,status-playable,playable,2022-10-28 19:00:57.000 -"Leisure Suit Larry: Wet Dreams Don't Dry",0100A8E00CAA0000,status-playable,playable,2022-08-03 19:51:44.000 -"Lethal League Blaze",01003AB00983C000,online;status-playable,playable,2021-01-29 20:13:31.000 -"Letter Quest Remastered",,status-playable,playable,2020-05-11 21:30:34.000 -"Letters - a written adventure",0100CE301678E800,gpu;status-ingame,ingame,2023-02-21 20:12:38.000 -"Levelhead",,online;status-ingame,ingame,2020-10-18 11:44:51.000 -"Levels+",,status-playable,playable,2020-05-12 13:51:39.000 -"Liberated",0100C8000F146000,gpu;status-ingame;nvdec,ingame,2024-07-04 04:58:24.000 -"Liberated: Enhanced Edition",01003A90133A6000,gpu;status-ingame;nvdec,ingame,2024-07-04 04:48:48.000 -"Lichtspeer: Double Speer Edition",,status-playable,playable,2020-05-12 16:43:09.000 -"Liege Dragon",010041F0128AE000,status-playable,playable,2022-10-12 10:27:03.000 -"Life Goes On",010006300AFFE000,status-playable,playable,2021-01-29 19:01:20.000 -"Life is Strange 2",0100FD101186C000,status-playable;UE4,playable,2024-07-04 05:05:58.000 -"Life is Strange Remastered",0100DC301186A000,status-playable;UE4,playable,2022-10-03 16:54:44.000 -"Life is Strange: Before the Storm Remastered",010008501186E000,status-playable,playable,2023-09-28 17:15:44.000 -"Life is Strange: True Colors [0100500012AB4000]",0100500012AB4000,gpu;status-ingame;UE4,ingame,2024-04-08 16:11:52.000 -"Life of Boris: Super Slav",,status-ingame,ingame,2020-12-17 11:40:05.000 -"Life of Fly",0100B3A0135D6000,status-playable,playable,2021-01-25 23:41:07.000 -"Life of Fly 2",010069A01506E000,slow;status-playable,playable,2022-10-28 19:26:52.000 -"Lifeless Planet",01005B6008132000,status-playable,playable,2022-08-03 21:25:13.000 -"Light Fall",,nvdec;status-playable,playable,2021-01-18 14:55:36.000 -"Light Tracer",010087700D07C000,nvdec;status-playable,playable,2021-05-05 19:15:43.000 -"LIMBO",01009C8009026000,cpu;status-boots;32-bit,boots,2023-06-28 15:39:19.000 -"Linelight",,status-playable,playable,2020-12-17 12:18:07.000 -"Lines X",,status-playable,playable,2020-05-11 15:28:30.000 -"Lines XL",,status-playable,playable,2020-08-31 17:48:23.000 -"Little Busters! Converted Edition",0100943010310000,status-playable;nvdec,playable,2022-09-29 15:34:56.000 -"Little Dragons Cafe",,status-playable,playable,2020-05-12 00:00:52.000 -"LITTLE FRIENDS -DOGS & CATS-",,status-playable,playable,2020-11-12 12:45:51.000 -"Little Inferno",,32-bit;gpu;nvdec;status-ingame,ingame,2020-12-17 21:43:56.000 -"Little Misfortune",0100E7000E826000,nvdec;status-playable,playable,2021-02-23 20:39:44.000 -"Little Mouse's Encyclopedia",0100FE0014200000,status-playable,playable,2022-10-28 19:38:58.000 -"Little Nightmares",01002FC00412C000,status-playable;nvdec;UE4,playable,2022-08-03 21:45:35.000 -"Little Nightmares II",010097100EDD6000,status-playable;UE4,playable,2023-02-10 18:24:44.000 -"Little Nightmares II DEMO",010093A0135D6000,status-playable;UE4;demo;vulkan-backend-bug,playable,2024-05-16 18:47:20.000 -"Little Noah: Scion of Paradise",0100535014D76000,status-playable;opengl-backend-bug,playable,2022-09-14 04:17:13.000 -"Little Racer",0100E6D00E81C000,status-playable,playable,2022-10-18 16:41:13.000 -"Little Shopping",,status-playable,playable,2020-10-03 16:34:35.000 -"Little Town Hero",,status-playable,playable,2020-10-15 23:28:48.000 -"Little Triangle",,status-playable,playable,2020-06-17 14:46:26.000 -"LIVE A LIVE",0100CF801776C000,status-playable;UE4;amd-vendor-bug,playable,2023-02-05 15:12:07.000 -"LOCO-SPORTS",0100BA000FC9C000,status-playable,playable,2022-09-20 14:09:30.000 -"Lode Runner Legacy",,status-playable,playable,2021-01-10 14:10:28.000 -"Lofi Ping Pong",,crash;status-ingame,ingame,2020-12-15 20:09:22.000 -"Lone Ruin",0100B6D016EE6000,status-ingame;crash;nvdec,ingame,2023-01-17 06:41:19.000 -"Lonely Mountains Downhill",0100A0C00E0DE000,status-playable;online-broken,playable,2024-07-04 05:08:11.000 -"LOOPERS",010062A0178A8000,gpu;slow;status-ingame;crash,ingame,2022-06-17 19:21:45.000 -"Lost Horizon",,status-playable,playable,2020-09-01 13:41:22.000 -"Lost Horizon 2",,nvdec;status-playable,playable,2020-06-16 12:02:12.000 -"Lost in Random",01005FE01291A000,gpu;status-ingame,ingame,2022-12-18 07:09:28.000 -"Lost Lands 3: The Golden Curse",0100156014C6A000,status-playable;nvdec,playable,2022-10-24 16:30:00.000 -"Lost Lands: Dark Overlord",0100BDD010AC8000,status-playable,playable,2022-10-03 11:52:58.000 -"Lost Lands: The Four Horsemen",0100133014510000,status-playable;nvdec,playable,2022-10-24 16:41:00.000 -"LOST ORBIT: Terminal Velocity",010054600AC74000,status-playable,playable,2021-06-14 12:21:12.000 -"Lost Phone Stories",,services;status-ingame,ingame,2020-04-05 23:17:33.000 -"Lost Ruins",01008AD013A86800,gpu;status-ingame,ingame,2023-02-19 14:09:00.000 -"LOST SPHEAR",,status-playable,playable,2021-01-10 06:01:21.000 -"Lost Words: Beyond the Page",0100018013124000,status-playable,playable,2022-10-24 17:03:21.000 -"Love Letter from Thief X",0100D36011AD4000,gpu;status-ingame;nvdec,ingame,2023-11-14 03:55:31.000 -"Ludo Mania",,crash;services;status-nothing,nothing,2020-04-03 00:33:47.000 -"Luigi's Mansion 2 HD",010048701995E000,status-ingame;ldn-broken;amd-vendor-bug,ingame,2024-09-05 23:47:27.000 -"Luigi's Mansion 3",0100DCA0064A6000,gpu;slow;status-ingame;Needs Update;ldn-works,ingame,2024-09-27 22:17:36.000 -"Lumini",,status-playable,playable,2020-08-09 20:45:09.000 -"Lumo",0100FF00042EE000,status-playable;nvdec,playable,2022-02-11 18:20:30.000 -"Lust for Darkness",,nvdec;status-playable,playable,2020-07-26 12:09:15.000 -"Lust for Darkness: Dawn Edition",0100F0B00F68E000,nvdec;status-playable,playable,2021-06-16 13:47:46.000 -"LUXAR",0100EC2011A80000,status-playable,playable,2021-03-04 21:11:57.000 -"Machi Knights Blood bagos",0100F2400D434000,status-playable;nvdec;UE4,playable,2022-09-14 15:08:04.000 -"Mad Carnage",,status-playable,playable,2021-01-10 13:00:07.000 -"Mad Father",,status-playable,playable,2020-11-12 13:22:10.000 -"Mad Games Tycoon",010061E00EB1E000,status-playable,playable,2022-09-20 14:23:14.000 -"Magazine Mogul",01004A200E722000,status-playable;loader-allocator,playable,2022-10-03 12:05:34.000 -"MagiCat",,status-playable,playable,2020-12-11 15:22:07.000 -"Magicolors",,status-playable,playable,2020-08-12 18:39:11.000 -"Mahjong Solitaire Refresh",01008C300B624000,status-boots;crash,boots,2022-12-09 12:02:55.000 -"Mahluk dark demon",010099A0145E8000,status-playable,playable,2021-04-15 13:14:24.000 -"Mainlining",,status-playable,playable,2020-06-05 01:02:00.000 -"Maitetsu: Pure Station",0100D9900F220000,status-playable,playable,2022-09-20 15:12:49.000 -"Makai Senki Disgaea 7",0100A78017BD6000,status-playable,playable,2023-10-05 00:22:18.000 -"Mana Spark",,status-playable,playable,2020-12-10 13:41:01.000 -"Maneater",010093D00CB22000,status-playable;nvdec;UE4,playable,2024-05-21 16:11:57.000 -"Manifold Garden",,status-playable,playable,2020-10-13 20:27:13.000 -"Manticore - Galaxy on Fire",0100C9A00952A000,status-boots;crash;nvdec,boots,2024-02-04 04:37:24.000 -"Mantis Burn Racing",0100E98002F6E000,status-playable;online-broken;ldn-broken,playable,2024-09-02 02:13:04.000 -"Marble Power Blast",01008E800D1FE000,status-playable,playable,2021-06-04 16:00:02.000 -"Märchen Forest - 0100B201D5E000",,status-playable,playable,2021-02-04 21:33:34.000 -"Marco & The Galaxy Dragon Demo",0100DA7017C9E000,gpu;status-ingame;demo,ingame,2023-06-03 13:05:33.000 -"Mario & Luigi: Brothership",01006D0017F7A000,status-ingame;crash;slow;UE4;mac-bug,ingame,2025-01-07 04:00:00.000 -"MARIO & SONIC AT THE OLYMPIC GAMES TOKYO 2020",010002C00C270000,status-ingame;crash;online-broken;ldn-works,ingame,2024-08-23 16:12:55.000 -"Mario + Rabbids Kingdom Battle",010067300059A000,slow;status-playable;opengl-backend-bug,playable,2024-05-06 10:16:54.000 -"Mario + Rabbids® Sparks of Hope",0100317013770000,gpu;status-ingame;Needs Update,ingame,2024-06-20 19:56:19.000 -"Mario Golf: Super Rush",0100C9C00E25C000,gpu;status-ingame,ingame,2024-08-18 21:31:48.000 -"Mario Kart 8 Deluxe",0100152000022000,32-bit;status-playable;ldn-works;LAN;amd-vendor-bug,playable,2024-09-19 11:55:17.000 -"Mario Kart Live: Home Circuit",0100ED100BA3A000,services;status-nothing;crash;Needs More Attention,nothing,2022-12-07 22:36:52.000 -"Mario Party Superstars",01006FE013472000,gpu;status-ingame;ldn-works;mac-bug,ingame,2024-05-16 11:23:34.000 -"Mario Strikers: Battle League Football",010019401051C000,status-boots;crash;nvdec,boots,2024-05-07 06:23:56.000 -"Mario Tennis Aces",0100BDE00862A000,gpu;status-ingame;nvdec;ldn-works;LAN,ingame,2024-09-28 15:54:40.000 -"Mario vs. Donkey Kong",0100B99019412000,status-playable,playable,2024-05-04 21:22:39.000 -"Mario vs. Donkey Kong™ Demo",0100D9E01DBB0000,status-playable,playable,2024-02-18 10:40:06.000 -"Mark of the Ninja Remastered",01009A700A538000,status-playable,playable,2022-08-04 15:48:30.000 -"Marooners",010044600FDF0000,status-playable;nvdec;online-broken,playable,2022-10-18 21:35:26.000 -"Marvel Ultimate Alliance 3: The Black Order",010060700AC50000,status-playable;nvdec;ldn-untested,playable,2024-02-14 19:51:51.000 -"Mary Skelter 2",01003DE00C95E000,status-ingame;crash;regression,ingame,2023-09-12 07:37:28.000 -"Masquerada: Songs and Shadows",0100113008262000,status-playable,playable,2022-09-20 15:18:54.000 -"Master Detective Archives: Rain Code",01004800197F0000,gpu;status-ingame,ingame,2024-04-19 20:11:09.000 -"Masters of Anima",0100CC7009196000,status-playable;nvdec,playable,2022-08-04 16:00:09.000 -"Mathland",,status-playable,playable,2020-09-01 15:40:06.000 -"Max & The Book of Chaos",,status-playable,playable,2020-09-02 12:24:43.000 -"Max: The Curse Of Brotherhood",01001C9007614000,status-playable;nvdec,playable,2022-08-04 16:33:04.000 -"Maze",,status-playable,playable,2020-12-17 16:13:58.000 -"MEANDERS",0100EEF00CBC0000,UE4;gpu;status-ingame,ingame,2021-06-11 19:19:33.000 -"Mech Rage",,status-playable,playable,2020-11-18 12:30:16.000 -"Mecho Tales",0100C4F005EB4000,status-playable,playable,2022-08-04 17:03:19.000 -"Mechstermination Force",0100E4600D31A000,status-playable,playable,2024-07-04 05:39:15.000 -"Medarot Classics Plus Kabuto Ver",,status-playable,playable,2020-11-21 11:31:18.000 -"Medarot Classics Plus Kuwagata Ver",,status-playable,playable,2020-11-21 11:30:40.000 -"Mega Mall Story",0100BBC00CB9A000,slow;status-playable,playable,2022-08-04 17:10:58.000 -"Mega Man 11",0100B0C0086B0000,status-playable,playable,2021-04-26 12:07:53.000 -"Mega Man Battle Network Legacy Collection Vol. 2",0100734016266000,status-playable,playable,2023-08-03 18:04:32.000 -"Mega Man Legacy Collection Vol.1",01002D4007AE0000,gpu;status-ingame,ingame,2021-06-03 18:17:17.000 -"Mega Man X Legacy Collection",,audio;crash;services;status-menus,menus,2020-12-04 04:30:17.000 -"Megabyte Punch",,status-playable,playable,2020-10-16 14:07:18.000 -"Megadimension Neptunia VII",,32-bit;nvdec;status-playable,playable,2020-12-17 20:56:03.000 -"Megaman Battle Network Legacy Collection Vol 1",010038E016264000,status-playable,playable,2023-04-25 03:55:57.000 -"Megaman Legacy Collection 2",,status-playable,playable,2021-01-06 08:47:59.000 -"MEGAMAN ZERO/ZX LEGACY COLLECTION",010025C00D410000,status-playable,playable,2021-06-14 16:17:32.000 -"Megaquarium",010082B00E8B8000,status-playable,playable,2022-09-14 16:50:00.000 -"Megaton Rainfall",010005A00B312000,gpu;status-boots;opengl,boots,2022-08-04 18:29:43.000 -"Meiji Katsugeki Haikara Ryuuseigumi - Seibai Shimaseu, Yonaoshi Kagyou",0100EA100DF92000,32-bit;status-playable;nvdec,playable,2022-12-05 13:19:12.000 -"Mekorama",0100B360068B2000,gpu;status-boots,boots,2021-06-17 16:37:21.000 -"Melbits World",01000FA010340000,status-menus;nvdec;online,menus,2021-11-26 13:51:22.000 -"Melon Journey",0100F68019636000,status-playable,playable,2023-04-23 21:20:01.000 -"Memories Off -Innocent Fille- for Dearest",,status-playable,playable,2020-08-04 07:31:22.000 -"Memory Lane",010062F011E7C000,status-playable;UE4,playable,2022-10-05 14:31:03.000 -"Meow Motors",,UE4;gpu;status-ingame,ingame,2020-12-18 00:24:01.000 -"Mercenaries Saga Chronicles",,status-playable,playable,2021-01-10 12:48:19.000 -"Mercenaries Wings The False Phoenix",,crash;services;status-nothing,nothing,2020-05-08 22:42:12.000 -"Mercenary Kings",,online;status-playable,playable,2020-10-16 13:05:58.000 -"Merchants of Kaidan",0100E5000D3CA000,status-playable,playable,2021-04-15 11:44:28.000 -"METAGAL",,status-playable,playable,2020-06-05 00:05:48.000 -"Metal Gear Solid Master Collection Vol. 1: Metal Gear Solid 3",010047F01AA10000,services-horizon;status-menus,menus,2024-07-24 06:34:06.000 -"METAL MAX Xeno Reborn",0100E8F00F6BE000,status-playable,playable,2022-12-05 15:33:53.000 -"Metaloid: Origin",,status-playable,playable,2020-06-04 20:26:35.000 -"Metamorphosis",010055200E87E000,UE4;audout;gpu;nvdec;status-ingame,ingame,2021-06-16 16:18:11.000 -"Metro 2033 Redux",0100D4900E82C000,gpu;status-ingame,ingame,2022-11-09 10:53:13.000 -"Metro: Last Light Redux",0100F0400E850000,slow;status-ingame;nvdec;vulkan-backend-bug,ingame,2023-11-01 11:53:52.000 -"Metroid Dread",010093801237C000,status-playable,playable,2023-11-13 04:02:36.000 -"Metroid Prime Remastered",010012101468C000,gpu;status-ingame;Needs Update;vulkan-backend-bug;opengl-backend-bug,ingame,2024-05-07 22:48:15.000 -"Midnight Evil",0100A1200F20C000,status-playable,playable,2022-10-18 22:55:19.000 -"Mighty Fight Federation",0100C1E0135E0000,online;status-playable,playable,2021-04-06 18:39:56.000 -"Mighty Goose",0100AD701344C000,status-playable;nvdec,playable,2022-10-28 20:25:38.000 -"Mighty Gunvolt Burst",,status-playable,playable,2020-10-19 16:05:49.000 -"Mighty Switch Force! Collection",010060D00AE36000,status-playable,playable,2022-10-28 20:40:32.000 -"Miitopia",01003DA010E8A000,gpu;services-horizon;status-ingame,ingame,2024-09-06 10:39:13.000 -"Miitopia Demo",01007DA0140E8000,services;status-menus;crash;demo,menus,2023-02-24 11:50:58.000 -"Miles & Kilo",,status-playable,playable,2020-10-22 11:39:49.000 -"Millie",0100976008FBE000,status-playable,playable,2021-01-26 20:47:19.000 -"MIND Path to Thalamus",0100F5700C9A8000,UE4;status-playable,playable,2021-06-16 17:37:25.000 -"Minecraft",0100D71004694000,status-ingame;crash;ldn-broken,ingame,2024-09-29 12:08:59.000 -"Minecraft - Nintendo Switch Edition",01006BD001E06000,status-playable;ldn-broken,playable,2023-10-15 01:47:08.000 -"Minecraft Dungeons",01006C100EC08000,status-playable;nvdec;online-broken;UE4,playable,2024-06-26 22:10:43.000 -"Minecraft Legends",01007C6012CC8000,gpu;status-ingame;crash,ingame,2024-03-04 00:32:24.000 -"Minecraft: Story Mode - Season Two",01003EF007ABA000,status-playable;online-broken,playable,2023-03-04 00:30:50.000 -"Minecraft: Story Mode - The Complete Adventure",010059C002AC2000,status-boots;crash;online-broken,boots,2022-08-04 18:56:58.000 -"Minefield",0100B7500F756000,status-playable,playable,2022-10-05 15:03:29.000 -"Mini Motor Racing X",01003560119A6000,status-playable,playable,2021-04-13 17:54:49.000 -"Mini Trains",,status-playable,playable,2020-07-29 23:06:20.000 -"Miniature - The Story Puzzle",010039200EC66000,status-playable;UE4,playable,2022-09-14 17:18:50.000 -"Ministry of Broadcast",010069200EB80000,status-playable,playable,2022-08-10 00:31:16.000 -"Minna de Wai Wai! Spelunker",0100C3F000BD8000,status-nothing;crash,nothing,2021-11-03 07:17:11.000 -"Minoria",0100FAE010864000,status-playable,playable,2022-08-06 18:50:50.000 -"Miss Kobayashi's Dragonmaid Burst Forth!! Choro-gon☆Breath",01005AB015994000,gpu;status-playable,playable,2022-03-28 02:22:24.000 -"Missile Dancer",0100CFA0138C8000,status-playable,playable,2021-01-31 12:22:03.000 -"Missing Features 2D",0100E3601495C000,status-playable,playable,2022-10-28 20:52:54.000 -"Mist Hunter",010059200CC40000,status-playable,playable,2021-06-16 13:58:58.000 -"Mittelborg: City of Mages",,status-playable,playable,2020-08-12 19:58:06.000 -"MLB The Show 22 Tech Test",0100A9F01776A000,services;status-nothing;crash;Needs Update;demo,nothing,2022-12-09 10:28:34.000 -"MLB The Show 24",0100E2E01C32E000,services-horizon;status-nothing,nothing,2024-03-31 04:54:11.000 -"MLB® The Show™ 22",0100876015D74000,gpu;slow;status-ingame,ingame,2023-04-25 06:28:43.000 -"MLB® The Show™ 23",0100913019170000,gpu;status-ingame,ingame,2024-07-26 00:56:50.000 -"MO:Astray",,crash;status-ingame,ingame,2020-12-11 21:45:44.000 -"Moai VI: Unexpected Guests",,slow;status-playable,playable,2020-10-27 16:40:20.000 -"Modern Combat Blackout",0100D8700B712000,crash;status-nothing,nothing,2021-03-29 19:47:15.000 -"Modern Tales: Age of Invention",010004900D772000,slow;status-playable,playable,2022-10-12 11:20:19.000 -"Moero Chronicle Hyper",0100B8500D570000,32-bit;status-playable,playable,2022-08-11 07:21:56.000 -"Moero Crystal H",01004EB0119AC000,32-bit;status-playable;nvdec;vulkan-backend-bug,playable,2023-07-05 12:04:22.000 -"MOFUMOFU Sensen",0100B46017500000,gpu;status-menus,menus,2024-09-21 21:51:08.000 -"Momodora: Revere Under the Moonlight",01004A400C320000,deadlock;status-nothing,nothing,2022-02-06 03:47:43.000 -"Momonga Pinball Adventures",01002CC00BC4C000,status-playable,playable,2022-09-20 16:00:40.000 -"Momotaro Dentetsu Showa, Heisei, Reiwa mo Teiban!",010093100DA04000,gpu;status-ingame,ingame,2023-09-22 10:21:46.000 -"MONKEY BARRELS",0100FBD00ED24000,status-playable,playable,2022-09-14 17:28:52.000 -"Monkey King: Master of the Clouds",,status-playable,playable,2020-09-28 22:35:48.000 -"Monomals",01003030161DC000,gpu;status-ingame,ingame,2024-08-06 22:02:51.000 -"Mononoke Slashdown",0100F3A00FB78000,status-menus;crash,menus,2022-05-04 20:55:47.000 -"Monopoly for Nintendo Switch",01007430037F6000,status-playable;nvdec;online-broken,playable,2024-02-06 23:13:01.000 -"Monopoly Madness",01005FF013DC2000,status-playable,playable,2022-01-29 21:13:52.000 -"Monster Blast",0100E2D0128E6000,gpu;status-ingame,ingame,2023-09-02 20:02:32.000 -"Monster Boy and the Cursed Kingdom",01006F7001D10000,status-playable;nvdec,playable,2022-08-04 20:06:32.000 -"Monster Bugs Eat People",,status-playable,playable,2020-07-26 02:05:34.000 -"Monster Energy Supercross - The Official Videogame",0100742007266000,status-playable;nvdec;UE4,playable,2022-08-04 20:25:00.000 -"Monster Energy Supercross - The Official Videogame 2",0100F8100B982000,status-playable;nvdec;UE4;ldn-untested,playable,2022-08-04 21:21:24.000 -"Monster Energy Supercross - The Official Videogame 3",010097800EA20000,UE4;audout;nvdec;online;status-playable,playable,2021-06-14 12:37:54.000 -"Monster Farm",0100E9900ED74000,32-bit;nvdec;status-playable,playable,2021-05-05 19:29:13.000 -"Monster Hunter Generation Ultimate",0100770008DD8000,32-bit;status-playable;online-broken;ldn-works,playable,2024-03-18 14:35:36.000 -"Monster Hunter Rise",0100B04011742000,gpu;slow;status-ingame;crash;nvdec;online-broken;Needs Update;ldn-works,ingame,2024-08-24 11:04:59.000 -"Monster Hunter Rise Demo",010093A01305C000,status-playable;online-broken;ldn-works;demo,playable,2022-10-18 23:04:17.000 -"Monster Hunter Stories 2: Wings of Ruin ID 0100E2101144600",,services;status-ingame,ingame,2022-07-10 19:27:30.000 -"MONSTER HUNTER STORIES 2: WINGS OF RUIN Trial Version",010042501329E000,status-playable;demo,playable,2022-11-13 22:20:26.000 -"Monster Hunter XX Demo",,32-bit;cpu;status-nothing,nothing,2020-03-22 10:12:28.000 -"Monster Hunter XX Nintendo Switch Ver ( Double Cross )",0100C3800049C000,status-playable,playable,2024-07-21 14:08:09.000 -"MONSTER JAM CRUSH IT!™",010088400366E000,UE4;nvdec;online;status-playable,playable,2021-04-08 19:29:27.000 -"Monster Jam Steel Titans",010095C00F354000,status-menus;crash;nvdec;UE4,menus,2021-11-14 09:45:38.000 -"Monster Jam Steel Titans 2",010051B0131F0000,status-playable;nvdec;UE4,playable,2022-10-24 17:17:59.000 -"Monster Puzzle",,status-playable,playable,2020-09-28 22:23:10.000 -"Monster Sanctuary",,crash;status-ingame,ingame,2021-04-04 05:06:41.000 -"Monster Truck Championship",0100D30010C42000,slow;status-playable;nvdec;online-broken;UE4,playable,2022-10-18 23:16:51.000 -"Monster wo taoshite tsuyoi ken ya yoroi wo te ni shinasai. Shinde mo akiramezu ni tsuyoku nari nasai. Yuushatai ga maoh wo taosu sono hi wo shinzite imasu. - モンスターを倒して強い剣や鎧を手にしなさい。死んでも諦めずに強くなりなさい。勇者隊が魔王を倒すその日を信じています。",01004E10142FE000,crash;status-ingame,ingame,2021-07-23 10:56:44.000 -"Monstrum",010039F00EF70000,status-playable,playable,2021-01-31 11:07:26.000 -"Moonfall Ultimate",,nvdec;status-playable,playable,2021-01-17 14:01:25.000 -"Moorhuhn Jump and Run Traps and Treasures",0100E3D014ABC000,status-playable,playable,2024-03-08 15:10:02.000 -"Moorkuhn Kart 2",010045C00F274000,status-playable;online-broken,playable,2022-10-28 21:10:35.000 -"Morbid: The Seven Acolytes",010040E00F642000,status-playable,playable,2022-08-09 17:21:58.000 -"More Dark",,status-playable,playable,2020-12-15 16:01:06.000 -"Morphies Law",,UE4;crash;ldn-untested;nvdec;online;status-menus,menus,2020-11-22 17:05:29.000 -"Morphite",,status-playable,playable,2021-01-05 19:40:55.000 -"Mortal Kombat 1",01006560184E6000,gpu;status-ingame,ingame,2024-09-04 15:45:47.000 -"Mortal Kombat 11",0100F2200C984000,slow;status-ingame;nvdec;online-broken;ldn-broken,ingame,2024-06-19 02:22:17.000 -"Mosaic",,status-playable,playable,2020-08-11 13:07:35.000 -"Moto GP 24",010040401D564000,gpu;status-ingame,ingame,2024-05-10 23:41:00.000 -"Moto Racer 4",01002ED00B01C000,UE4;nvdec;online;status-playable,playable,2021-04-08 19:09:11.000 -"Moto Rush GT",01003F200D0F2000,status-playable,playable,2022-08-05 11:23:55.000 -"MotoGP 18",0100361007268000,status-playable;nvdec;UE4;ldn-untested,playable,2022-08-05 11:41:45.000 -"MotoGP 19",01004B800D0E8000,status-playable;nvdec;online-broken;UE4,playable,2022-08-05 11:54:14.000 -"MotoGP 20",01001FA00FBBC000,status-playable;ldn-untested,playable,2022-09-29 17:58:01.000 -"MotoGP 21",01000F5013820000,gpu;status-ingame;nvdec;online-broken;UE4;ldn-untested,ingame,2022-10-28 21:35:08.000 -"Motorsport Manager for Nintendo Switch",01002A900D6D6000,status-playable;nvdec,playable,2022-08-05 12:48:14.000 -"Mountain Rescue Simulator",01009DB00D6E0000,status-playable,playable,2022-09-20 16:36:48.000 -"Moving Out",0100C4C00E73E000,nvdec;status-playable,playable,2021-06-07 21:17:24.000 -"Mr Blaster",0100D3300F110000,status-playable,playable,2022-09-14 17:56:24.000 -"Mr. DRILLER DrillLand",,nvdec;status-playable,playable,2020-07-24 13:56:48.000 -"Mr. Shifty",,slow;status-playable,playable,2020-05-08 15:28:16.000 -"Ms. Splosion Man",,online;status-playable,playable,2020-05-09 20:45:43.000 -"Muddledash",,services;status-ingame,ingame,2020-05-08 16:46:14.000 -"MudRunner - American Wilds",01009D200952E000,gpu;status-ingame;ldn-untested;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-16 11:40:52.000 -"Mugsters",010073E008E6E000,status-playable,playable,2021-01-28 17:57:17.000 -"MUJO",,status-playable,playable,2020-05-08 16:31:04.000 -"Mulaka",0100211005E94000,status-playable,playable,2021-01-28 18:07:20.000 -"Mummy Pinball",010038B00B9AE000,status-playable,playable,2022-08-05 16:08:11.000 -"Muse Dash",,status-playable,playable,2020-06-06 14:41:29.000 -"Mushroom Quest",,status-playable,playable,2020-05-17 13:07:08.000 -"Mushroom Wars 2",,nvdec;status-playable,playable,2020-09-28 15:26:08.000 -"Music Racer",,status-playable,playable,2020-08-10 08:51:23.000 -"MUSNYX",,status-playable,playable,2020-05-08 14:24:43.000 -"Musou Orochi 2 Ultimate",,crash;nvdec;status-boots,boots,2021-04-09 19:39:16.000 -"Must Dash Amigos",0100F6000EAA8000,status-playable,playable,2022-09-20 16:45:56.000 -"Mutant Football League Dynasty Edition",0100C3E00ACAA000,status-playable;online-broken,playable,2022-08-05 17:01:51.000 -"Mutant Mudds Collection",01004BE004A86000,status-playable,playable,2022-08-05 17:11:38.000 -"Mutant Year Zero: Road to Eden",0100E6B00DEA4000,status-playable;nvdec;UE4,playable,2022-09-10 13:31:10.000 -"MX Nitro",0100161009E5C000,status-playable,playable,2022-09-27 22:34:33.000 -"MX vs ATV All Out",0100218011E7E000,status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-10-25 19:51:46.000 -"MXGP3 - The Official Motocross Videogame",,UE4;gpu;nvdec;status-ingame,ingame,2020-12-16 14:00:20.000 -"My Aunt is a Witch",01002C6012334000,status-playable,playable,2022-10-19 09:21:17.000 -"My Butler",,status-playable,playable,2020-06-27 13:46:23.000 -"My Friend Pedro: Blood Bullets Bananas",010031200B94C000,nvdec;status-playable,playable,2021-05-28 11:19:17.000 -"My Girlfriend is a Mermaid!?",,nvdec;status-playable,playable,2020-05-08 13:32:55.000 -"MY HERO ONE'S JUSTICE",,UE4;crash;gpu;online;status-menus,menus,2020-12-10 13:11:04.000 -"MY HERO ONE'S JUSTICE 2",,UE4;gpu;nvdec;status-ingame,ingame,2020-12-18 14:08:47.000 -"My Hidden Things",0100E4701373E000,status-playable,playable,2021-04-15 11:26:06.000 -"My Little Dog Adventure",,gpu;status-ingame,ingame,2020-12-10 17:47:37.000 -"My Little Riding Champion",,slow;status-playable,playable,2020-05-08 17:00:53.000 -"My Lovely Daughter",010086B00C784000,status-playable,playable,2022-11-24 17:25:32.000 -"My Memory of Us",0100E7700C284000,status-playable,playable,2022-08-20 11:03:14.000 -"My Riding Stables - Life with Horses",010028F00ABAE000,status-playable,playable,2022-08-05 21:39:07.000 -"My Riding Stables 2: A New Adventure",010042A00FBF0000,status-playable,playable,2021-05-16 14:14:59.000 -"My Time At Portia",0100E25008E68000,status-playable,playable,2021-05-28 12:42:55.000 -"My Universe - Cooking Star Restaurant",0100CD5011A02000,status-playable,playable,2022-10-19 10:00:44.000 -"My Universe - Fashion Boutique",0100F71011A0A000,status-playable;nvdec,playable,2022-10-12 14:54:19.000 -"My Universe - Pet Clinic Cats & Dogs",0100CD5011A02000,status-boots;crash;nvdec,boots,2022-02-06 02:05:53.000 -"My Universe - School Teacher",01006C301199C000,nvdec;status-playable,playable,2021-01-21 16:02:52.000 -"n Verlore Verstand",,slow;status-ingame,ingame,2020-12-10 18:00:28.000 -"n Verlore Verstand - Demo",01009A500E3DA000,status-playable,playable,2021-02-09 00:13:32.000 -"N++",01000D5005974000,status-playable,playable,2022-08-05 21:54:58.000 -"NAIRI: Tower of Shirin",,nvdec;status-playable,playable,2020-08-09 19:49:12.000 -"NAMCO MUSEUM",010002F001220000,status-playable;ldn-untested,playable,2024-08-13 07:52:21.000 -"NAMCO MUSEUM ARCADE PAC",0100DAA00AEE6000,status-playable,playable,2021-06-07 21:44:50.000 -"NAMCOT COLLECTION",,audio;status-playable,playable,2020-06-25 13:35:22.000 -"Narcos: Rise of the Cartels",010072B00BDDE000,UE4;crash;nvdec;status-boots,boots,2021-03-22 13:18:47.000 -"NARUTO SHIPPUDEN: ULTIMATE NINJA STORM 4 ROAD TO BORUTO",010084D00CF5E000,status-playable,playable,2024-06-29 13:04:22.000 -"NARUTO SHIPPUDEN™: Ultimate Ninja Storm 3 Full Burst",01006BB00800A000,status-playable;nvdec,playable,2024-06-16 14:58:05.000 -"NARUTO X BARUTO Ultimate Ninja STORM CONNECTIONS",0100D2D0190A4000,services-horizon;status-nothing,nothing,2024-07-25 05:16:48.000 -"NARUTO™: Ultimate Ninja® STORM",0100715007354000,status-playable;nvdec,playable,2022-08-06 14:10:31.000 -"NASCAR Rivals",0100545016D5E000,status-ingame;crash;Incomplete,ingame,2023-04-21 01:17:47.000 -"Naught",0100103011894000,UE4;status-playable,playable,2021-04-26 13:31:45.000 -"NBA 2K Playgrounds 2",01001AE00C1B2000,status-playable;nvdec;online-broken;UE4;vulkan-backend-bug,playable,2022-08-06 14:40:38.000 -"NBA 2K18",0100760002048000,gpu;status-ingame;ldn-untested,ingame,2022-08-06 14:17:51.000 -"NBA 2K19",01001FF00B544000,crash;ldn-untested;services;status-nothing,nothing,2021-04-16 13:07:21.000 -"NBA 2K21",0100E24011D1E000,gpu;status-boots,boots,2022-10-05 15:31:51.000 -"NBA 2K23",0100ACA017E4E800,status-boots,boots,2023-10-10 23:07:14.000 -"NBA 2K24",010006501A8D8000,cpu;gpu;status-boots,boots,2024-08-11 18:23:08.000 -"NBA Playgrounds",0100F5A008126000,status-playable;nvdec;online-broken;UE4,playable,2022-08-06 16:13:44.000 -"NBA Playgrounds",010002900294A000,status-playable;nvdec;online-broken;UE4,playable,2022-08-06 17:06:59.000 -"Need a Packet?",,status-playable,playable,2020-08-12 16:09:01.000 -"Need for Speed Hot Pursuit Remastered",010029B0118E8000,status-playable;online-broken,playable,2024-03-20 21:58:02.000 -"Need For Speed Hot Pursuit Remastered",,audio;online;slow;status-ingame,ingame,2020-10-27 17:46:58.000 -"Nefarious",,status-playable,playable,2020-12-17 03:20:33.000 -"Negative",01008390136FC000,nvdec;status-playable,playable,2021-03-24 11:29:41.000 -"Neighbours back From Hell",010065F00F55A000,status-playable;nvdec,playable,2022-10-12 15:36:48.000 -"Nekopara Vol.1",0100B4900AD3E000,status-playable;nvdec,playable,2022-08-06 18:25:54.000 -"Nekopara Vol.2",,status-playable,playable,2020-12-16 11:04:47.000 -"Nekopara Vol.3",010045000E418000,status-playable,playable,2022-10-03 12:49:04.000 -"Nekopara Vol.4",,crash;status-ingame,ingame,2021-01-17 01:47:18.000 -"Nelke & the Legendary Alchemists ~Ateliers of the New World~",01006ED00BC76000,status-playable,playable,2021-01-28 19:39:42.000 -"Nelly Cootalot",,status-playable,playable,2020-06-11 20:55:42.000 -"Neo : The World Ends with You (DEMO)- 新すばらしきこのせかい (体験版)",01001AB0141A8000,crash;status-ingame,ingame,2021-07-18 07:29:18.000 -"Neo Cab",0100EBB00D2F4000,status-playable,playable,2021-04-24 00:27:58.000 -"Neo Cab Demo",,crash;status-boots,boots,2020-06-16 00:14:00.000 -"NEOGEO POCKET COLOR SELECTION Vol.1",010006D0128B4000,status-playable,playable,2023-07-08 20:55:36.000 -"Neon Abyss",0100BAB01113A000,status-playable,playable,2022-10-05 15:59:44.000 -"Neon Chrome",010075E0047F8000,status-playable,playable,2022-08-06 18:38:34.000 -"Neon Drive",010032000EAC6000,status-playable,playable,2022-09-10 13:45:48.000 -"Neon White",0100B9201406A000,status-ingame;crash,ingame,2023-02-02 22:25:06.000 -"Neonwall",0100743008694000,status-playable;nvdec,playable,2022-08-06 18:49:52.000 -"Neoverse Trinity Edition - 01001A20133E000",,status-playable,playable,2022-10-19 10:28:03.000 -"Nerdook Bundle Vol. 1",,gpu;slow;status-ingame,ingame,2020-10-07 14:27:10.000 -"Nerved",01008B0010160000,status-playable;UE4,playable,2022-09-20 17:14:03.000 -"NeuroVoider",,status-playable,playable,2020-06-04 18:20:05.000 -"Nevaeh",0100C20012A54000,gpu;nvdec;status-ingame,ingame,2021-06-16 17:29:03.000 -"Never Breakup",010039801093A000,status-playable,playable,2022-10-05 16:12:12.000 -"Neverending Nightmares",0100F79012600000,crash;gpu;status-boots,boots,2021-04-24 01:43:35.000 -"Neverlast",,slow;status-ingame,ingame,2020-07-13 23:55:19.000 -"Neverwinter Nights: Enhanced Edition",010013700DA4A000,gpu;status-menus;nvdec,menus,2024-09-30 02:59:19.000 -"New Frontier Days -Founding Pioneers-",,status-playable,playable,2020-12-10 12:45:07.000 -"New Pokémon Snap",0100F4300BF2C000,status-playable,playable,2023-01-15 23:26:57.000 -"New Super Lucky's Tale",010017700B6C2000,status-playable,playable,2024-03-11 14:14:10.000 -"New Super Mario Bros. U Deluxe",0100EA80032EA000,32-bit;status-playable,playable,2023-10-08 02:06:37.000 -"Newt One",,status-playable,playable,2020-10-17 21:21:48.000 -"Nexomon: Extinction",,status-playable,playable,2020-11-30 15:02:22.000 -"Nexoria: Dungeon Rogue Heroes",0100B69012EC6000,gpu;status-ingame,ingame,2021-10-04 18:41:29.000 -"Next Up Hero",,online;status-playable,playable,2021-01-04 22:39:36.000 -"Ni No Kuni Wrath of the White Witch",0100E5600D446000,status-boots;32-bit;nvdec,boots,2024-07-12 04:52:59.000 -"Nice Slice",,nvdec;status-playable,playable,2020-06-17 15:13:27.000 -"Niche - a genetics survival game",,nvdec;status-playable,playable,2020-11-27 14:01:11.000 -"Nickelodeon All-Star Brawl 2",010010701AFB2000,status-playable,playable,2024-06-03 14:15:01.000 -"Nickelodeon Kart Racers",,status-playable,playable,2021-01-07 12:16:49.000 -"Nickelodeon Paw Patrol: On a Roll",0100CEC003A4A000,nvdec;status-playable,playable,2021-01-28 21:14:49.000 -"Nicky: The Home Alone Golf Ball",,status-playable,playable,2020-08-08 13:45:39.000 -"Nicole",0100A95012668000,status-playable;audout,playable,2022-10-05 16:41:44.000 -"NieR:Automata The End of YoRHa Edition",0100B8E016F76000,slow;status-ingame;crash,ingame,2024-05-17 01:06:34.000 -"Night Call",0100F3A0095A6000,status-playable;nvdec,playable,2022-10-03 12:57:00.000 -"Night in the Woods",0100921006A04000,status-playable,playable,2022-12-03 20:17:54.000 -"Night Trap - 25th Anniversary Edition",0100D8500A692000,status-playable;nvdec,playable,2022-08-08 13:16:14.000 -"Nightmare Boy",,status-playable,playable,2021-01-05 15:52:29.000 -"Nightmares from the Deep 2: The Siren's Call",01006E700B702000,status-playable;nvdec,playable,2022-10-19 10:58:53.000 -"Nights of Azure 2: Bride of the New Moon",0100628004BCE000,status-menus;crash;nvdec;regression,menus,2022-11-24 16:00:39.000 -"Nightshade",,nvdec;status-playable,playable,2020-05-10 19:43:31.000 -"Nihilumbra",,status-playable,playable,2020-05-10 16:00:12.000 -"Nine Parchments",0100D03003F0E000,status-playable;ldn-untested,playable,2022-08-07 12:32:08.000 -"NINJA GAIDEN 3: Razor's Edge",01002AF014F4C000,status-playable;nvdec,playable,2023-08-11 08:25:31.000 -"Ninja Gaiden Sigma",0100E2F014F46000,status-playable;nvdec,playable,2022-11-13 16:27:02.000 -"Ninja Gaiden Sigma 2 - 0100696014FA000",,status-playable;nvdec,playable,2024-07-31 21:53:48.000 -"Ninja Shodown",,status-playable,playable,2020-05-11 12:31:21.000 -"Ninja Striker",,status-playable,playable,2020-12-08 19:33:29.000 -"Ninjala",0100CCD0073EA000,status-boots;online-broken;UE4,boots,2024-07-03 20:04:49.000 -"Ninjin: Clash of Carrots",010003C00B868000,status-playable;online-broken,playable,2024-07-10 05:12:26.000 -"NinNinDays",0100746010E4C000,status-playable,playable,2022-11-20 15:17:29.000 -"Nintendo 64 - Nintendo Switch Online",0100C9A00ECE6000,gpu;status-ingame;vulkan,ingame,2024-04-23 20:21:07.000 -"Nintendo Entertainment System - Nintendo Switch Online",0100D870045B6000,status-playable;online,playable,2022-07-01 15:45:06.000 -"Nintendo Labo - Toy-Con 01: Variety Kit",0100C4B0034B2000,gpu;status-ingame,ingame,2022-08-07 12:56:07.000 -"Nintendo Labo Toy-Con 02: Robot Kit",01009AB0034E0000,gpu;status-ingame,ingame,2022-08-07 13:03:19.000 -"Nintendo Labo Toy-Con 03: Vehicle Kit",01001E9003502000,services;status-menus;crash,menus,2022-08-03 17:20:11.000 -"Nintendo Labo Toy-Con 04: VR Kit",0100165003504000,services;status-boots;crash,boots,2023-01-17 22:30:24.000 -"Nintendo Switch Sports",0100D2F00D5C0000,deadlock;status-boots,boots,2024-09-10 14:20:24.000 -"Nintendo Switch Sports Online Play Test",01000EE017182000,gpu;status-ingame,ingame,2022-03-16 07:44:12.000 -"Nippon Marathon",010037200C72A000,nvdec;status-playable,playable,2021-01-28 20:32:46.000 -"Nirvana Pilot Yume",010020901088A000,status-playable,playable,2022-10-29 11:49:49.000 -"No Heroes Here",,online;status-playable,playable,2020-05-10 02:41:57.000 -"No Man’s Sky",0100853015E86000,gpu;status-ingame,ingame,2024-07-25 05:18:17.000 -"No More Heroes",0100F0400F202000,32-bit;status-playable,playable,2022-09-13 07:44:27.000 -"No More Heroes 2 Desperate Struggle",010071400F204000,32-bit;status-playable;nvdec,playable,2022-11-19 01:38:13.000 -"No More Heroes 3",01007C600EB42000,gpu;status-ingame;UE4,ingame,2024-03-11 17:06:19.000 -"No Straight Roads",01009F3011004000,status-playable;nvdec,playable,2022-10-05 17:01:38.000 -"NO THING",,status-playable,playable,2021-01-04 19:06:01.000 -"Nongunz: Doppelganger Edition",0100542012884000,status-playable,playable,2022-10-29 12:00:39.000 -"Norman's Great Illusion",,status-playable,playable,2020-12-15 19:28:24.000 -"Norn9 ~Norn + Nonette~ LOFN",01001A500AD6A000,status-playable;nvdec;vulkan-backend-bug,playable,2022-12-09 09:29:16.000 -"NORTH",,nvdec;status-playable,playable,2021-01-05 16:17:44.000 -"Northgard",0100A9E00D97A000,status-menus;crash,menus,2022-02-06 02:05:35.000 -"nOS new Operating System",01008AE019614000,status-playable,playable,2023-03-22 16:49:08.000 -"NOT A HERO",0100CB800B07E000,status-playable,playable,2021-01-28 19:31:24.000 -"Not Not a Brain Buster",,status-playable,playable,2020-05-10 02:05:26.000 -"Not Tonight",0100DAF00D0E2000,status-playable;nvdec,playable,2022-10-19 11:48:47.000 -"Nubarron: The adventure of an unlucky gnome",,status-playable,playable,2020-12-17 16:45:17.000 -"Nuclien",,status-playable,playable,2020-05-10 05:32:55.000 -"Numbala",,status-playable,playable,2020-05-11 12:01:07.000 -"Number Place 10000",010020500C8C8000,gpu;status-menus,menus,2021-11-24 09:14:23.000 -"Nurse Love Syndrome",010003701002C000,status-playable,playable,2022-10-13 10:05:22.000 -"nx-hbmenu",0000000000000000,status-boots;Needs Update;homebrew,boots,2024-04-06 22:05:32.000 -"nxquake2",,services;status-nothing;crash;homebrew,nothing,2022-08-04 23:14:04.000 -"Nyan Cat: Lost in Space",010049F00EC30000,online;status-playable,playable,2021-06-12 13:22:03.000 -"O---O",01002E6014FC4000,status-playable,playable,2022-10-29 12:12:14.000 -"OBAKEIDORO!",,nvdec;online;status-playable,playable,2020-10-16 16:57:34.000 -"Observer",01002A000C478000,UE4;gpu;nvdec;status-ingame,ingame,2021-03-03 20:19:45.000 -"Oceanhorn",,status-playable,playable,2021-01-05 13:55:22.000 -"Oceanhorn 2 Knights of the Lost Realm",01006CB010840000,status-playable,playable,2021-05-21 18:26:10.000 -"Octocopter: Double or Squids",,status-playable,playable,2021-01-06 01:30:16.000 -"Octodad Dadliest Catch",0100CAB006F54000,crash;status-boots,boots,2021-04-23 15:26:12.000 -"Octopath Traveler",,UE4;crash;gpu;status-ingame,ingame,2020-08-31 02:34:36.000 -"Octopath Traveler II",0100A3501946E000,gpu;status-ingame;amd-vendor-bug,ingame,2024-09-22 11:39:20.000 -"Odallus",010084300C816000,status-playable,playable,2022-08-08 12:37:58.000 -"Oddworld: Munch's Oddysee",0100BB500EE3C000,gpu;nvdec;status-ingame,ingame,2021-06-17 12:11:50.000 -"Oddworld: New 'n' Tasty",01005E700ABB8000,nvdec;status-playable,playable,2021-06-17 17:51:32.000 -"Oddworld: Soulstorm",0100D210177C6000,services-horizon;status-boots;crash,boots,2024-08-18 13:13:26.000 -"Oddworld: Stranger's Wrath HD",01002EA00ABBA000,status-menus;crash;nvdec;loader-allocator,menus,2021-11-23 09:23:21.000 -"Odium to the Core",,gpu;status-ingame,ingame,2021-01-08 14:03:52.000 -"Off And On Again",01006F5013202000,status-playable,playable,2022-10-29 19:46:26.000 -"Offroad Racing",01003CD00E8BC000,status-playable;online-broken;UE4,playable,2022-09-14 18:53:22.000 -"Oh My Godheads: Party Edition",01003B900AE12000,status-playable,playable,2021-04-15 11:04:11.000 -"Oh...Sir! The Hollywood Roast",,status-ingame,ingame,2020-12-06 00:42:30.000 -"OK K.O.! Let's Play Heroes",,nvdec;status-playable,playable,2021-01-11 18:41:02.000 -"OKAMI HD",0100276009872000,status-playable;nvdec,playable,2024-04-05 06:24:58.000 -"OkunoKA",01006AB00BD82000,status-playable;online-broken,playable,2022-08-08 14:41:51.000 -"Old Man's Journey",0100CE2007A86000,nvdec;status-playable,playable,2021-01-28 19:16:52.000 -"Old School Musical",,status-playable,playable,2020-12-10 12:51:12.000 -"Old School Racer 2",,status-playable,playable,2020-10-19 12:11:26.000 -"OlliOlli: Switch Stance",0100E0200B980000,gpu;status-boots,boots,2024-04-25 08:36:37.000 -"Olympia Soiree",0100F9D00C186000,status-playable,playable,2022-12-04 21:07:12.000 -"OLYMPIC GAMES TOKYO 2020",,ldn-untested;nvdec;online;status-playable,playable,2021-01-06 01:20:24.000 -"Omega Labyrinth Life",01001D600E51A000,status-playable,playable,2021-02-23 21:03:03.000 -"Omega Vampire",,nvdec;status-playable,playable,2020-10-17 19:15:35.000 -"Omensight: Definitive Edition",,UE4;crash;nvdec;status-ingame,ingame,2020-07-26 01:45:14.000 -"OMG Zombies!",01006DB00D970000,32-bit;status-playable,playable,2021-04-12 18:04:45.000 -"OMORI",010014E017B14000,status-playable,playable,2023-01-07 20:21:02.000 -"Once Upon A Coma",,nvdec;status-playable,playable,2020-08-01 12:09:39.000 -"One More Dungeon",,status-playable,playable,2021-01-06 09:10:58.000 -"One Person Story",,status-playable,playable,2020-07-14 11:51:02.000 -"One Piece Pirate Warriors 3",,nvdec;status-playable,playable,2020-05-10 06:23:52.000 -"One Piece Unlimited World Red Deluxe Edition",,status-playable,playable,2020-05-10 22:26:32.000 -"ONE PIECE: PIRATE WARRIORS 4",01008FE00E2F6000,status-playable;online-broken;ldn-untested,playable,2022-09-27 22:55:46.000 -"Oneiros",0100463013246000,status-playable,playable,2022-10-13 10:17:22.000 -"OneWayTicket",,UE4;status-playable,playable,2020-06-20 17:20:49.000 -"Oniken",010057C00D374000,status-playable,playable,2022-09-10 14:22:38.000 -"Oniken: Unstoppable Edition",010037900C814000,status-playable,playable,2022-08-08 14:52:06.000 -"Onimusha: Warlords",,nvdec;status-playable,playable,2020-07-31 13:08:39.000 -"OniNaki",0100CF4011B2A000,nvdec;status-playable,playable,2021-02-27 21:52:42.000 -"oOo: Ascension",010074000BE8E000,status-playable,playable,2021-01-25 14:13:34.000 -"Operación Triunfo 2017",0100D5400BD90000,services;status-ingame;nvdec,ingame,2022-08-08 15:06:42.000 -"Operencia The Stolen Sun",01006CF00CFA4000,UE4;nvdec;status-playable,playable,2021-06-08 13:51:07.000 -"OPUS Collection",01004A200BE82000,status-playable,playable,2021-01-25 15:24:04.000 -"OPUS: The Day We Found Earth",010049C0075F0000,nvdec;status-playable,playable,2021-01-21 18:29:31.000 -"Ord.",,status-playable,playable,2020-12-14 11:59:06.000 -"Ori and the Blind Forest: Definitive Edition",010061D00DB74000,status-playable;nvdec;online-broken,playable,2022-09-14 19:58:13.000 -"Ori and the Blind Forest: Definitive Edition Demo",010005800F46E000,status-playable,playable,2022-09-10 14:40:12.000 -"Ori and the Will of the Wisps",01008DD013200000,status-playable,playable,2023-03-07 00:47:13.000 -"Orn: The Tiny Forest Sprite",,UE4;gpu;status-ingame,ingame,2020-08-07 14:25:30.000 -"Othercide",0100E5900F49A000,status-playable;nvdec,playable,2022-10-05 19:04:38.000 -"OTOKOMIZU",,status-playable,playable,2020-07-13 21:00:44.000 -"Otti house keeper",01006AF013A9E000,status-playable,playable,2021-01-31 12:11:24.000 -"OTTTD",,slow;status-ingame,ingame,2020-10-10 19:31:07.000 -"Our two Bedroom Story",010097F010FE6000,gpu;status-ingame;nvdec,ingame,2023-10-10 17:41:20.000 -"Our World Is Ended.",,nvdec;status-playable,playable,2021-01-19 22:46:57.000 -"Out Of The Box",01005A700A166000,status-playable,playable,2021-01-28 01:34:27.000 -"Outbreak: Endless Nightmares",0100A0D013464000,status-playable,playable,2022-10-29 12:35:49.000 -"Outbreak: Epidemic",0100C850130FE000,status-playable,playable,2022-10-13 10:27:31.000 -"Outbreak: Lost Hope",0100D9F013102000,crash;status-boots,boots,2021-04-26 18:01:23.000 -"Outbreak: The New Nightmare",0100B450130FC000,status-playable,playable,2022-10-19 15:42:07.000 -"Outbreak: The Nightmare Chronicles",01006EE013100000,status-playable,playable,2022-10-13 10:41:57.000 -"Outbuddies DX",0100B8900EFA6000,gpu;status-ingame,ingame,2022-08-04 22:39:24.000 -"Outlast",01008D4007A1E000,status-playable;nvdec;loader-allocator;vulkan-backend-bug,playable,2024-01-27 04:44:26.000 -"Outlast 2",0100DE70085E8000,status-ingame;crash;nvdec,ingame,2022-01-22 22:28:05.000 -"Overcooked! 2",01006FD0080B2000,status-playable;ldn-untested,playable,2022-08-08 16:48:10.000 -"Overcooked! All You Can Eat",0100F28011892000,ldn-untested;online;status-playable,playable,2021-04-15 10:33:52.000 -"Overcooked! Special Edition",01009B900401E000,status-playable,playable,2022-08-08 20:48:52.000 -"Overlanders",0100D7F00EC64000,status-playable;nvdec;UE4,playable,2022-09-14 20:15:06.000 -"Overpass",01008EA00E816000,status-playable;online-broken;UE4;ldn-untested,playable,2022-10-17 15:29:47.000 -"Override 2 Super Mech League",0100647012F62000,status-playable;online-broken;UE4,playable,2022-10-19 15:56:04.000 -"Override: Mech City Brawl - Super Charged Mega Edition",01008A700F7EE000,status-playable;nvdec;online-broken;UE4,playable,2022-09-20 17:33:32.000 -"Overwatch®: Legendary Edition",0100F8600E21E000,deadlock;status-boots,boots,2022-09-14 20:22:22.000 -"OVERWHELM",01005F000CC18000,status-playable,playable,2021-01-21 18:37:18.000 -"Owlboy",,status-playable,playable,2020-10-19 14:24:45.000 -"PAC-MAN 99",0100AD9012510000,gpu;status-ingame;online-broken,ingame,2024-04-23 00:48:25.000 -"PAC-MAN CHAMPIONSHIP EDITION 2 PLUS",,status-playable,playable,2021-01-19 22:06:18.000 -"Paladins",011123900AEE0000,online;status-menus,menus,2021-01-21 19:21:37.000 -"PAN-PAN A tiny big adventure",0100F0D004CAE000,audout;status-playable,playable,2021-01-25 14:42:00.000 -"Pang Adventures",010083700B730000,status-playable,playable,2021-04-10 12:16:59.000 -"Pantsu Hunter",,status-playable,playable,2021-02-19 15:12:27.000 -"Panzer Dragoon: Remake",,status-playable,playable,2020-10-04 04:03:55.000 -"Panzer Paladin",01004AE0108E0000,status-playable,playable,2021-05-05 18:26:00.000 -"Paper Dolls Original",,UE4;crash;status-boots,boots,2020-07-13 20:26:21.000 -"Paper Mario The Origami King",0100A3900C3E2000,audio;status-playable;Needs Update,playable,2024-08-09 18:27:40.000 -"Paper Mario: The Thousand-Year Door",0100ECD018EBE000,gpu;status-ingame;intel-vendor-bug;slow,ingame,2025-01-07 04:27:35.000 -"Paperbound Brawlers",01006AD00B82C000,status-playable,playable,2021-01-25 14:32:15.000 -"Paradigm Paradox",0100DC70174E0000,status-playable;vulkan-backend-bug,playable,2022-12-03 22:28:13.000 -"Paradise Killer",01007FB010DC8000,status-playable;UE4,playable,2022-10-05 19:33:05.000 -"Paranautical Activity",010063400B2EC000,status-playable,playable,2021-01-25 13:49:19.000 -"Part Time UFO",01006B5012B32000,status-ingame;crash,ingame,2023-03-03 03:13:05.000 -"Party Arcade",01007FC00A040000,status-playable;online-broken;UE4;ldn-untested,playable,2022-08-09 12:32:53.000 -"Party Golf",0100B8E00359E000,status-playable;nvdec,playable,2022-08-09 12:38:30.000 -"Party Hard 2",010022801217E000,status-playable;nvdec,playable,2022-10-05 20:31:48.000 -"Party Treats",,status-playable,playable,2020-07-02 00:05:00.000 -"Path of Sin: Greed",01001E500EA16000,status-menus;crash,menus,2021-11-24 08:00:00.000 -"Pato Box",010031F006E76000,status-playable,playable,2021-01-25 15:17:52.000 -"PAW Patrol: Grand Prix",0100360016800000,gpu;status-ingame,ingame,2024-05-03 16:16:11.000 -"Paw Patrol: Might Pups Save Adventure Bay!",01001F201121E000,status-playable,playable,2022-10-13 12:17:55.000 -"Pawapoke R",01000c4015030000,services-horizon;status-nothing,nothing,2024-05-14 14:28:32.000 -"Pawarumi",0100A56006CEE000,status-playable;online-broken,playable,2022-09-10 15:19:33.000 -"PAYDAY 2",0100274004052000,status-playable;nvdec;online-broken;ldn-untested,playable,2022-08-09 12:56:39.000 -"PBA Pro Bowling",010085700ABC8000,status-playable;nvdec;online-broken;UE4,playable,2022-09-14 23:00:49.000 -"PBA Pro Bowling 2021",0100F95013772000,status-playable;online-broken;UE4,playable,2022-10-19 16:46:40.000 -"PC Building Simulator",,status-playable,playable,2020-06-12 00:31:58.000 -"Peaky Blinders: Mastermind",010002100CDCC000,status-playable,playable,2022-10-19 16:56:35.000 -"Peasant Knight",,status-playable,playable,2020-12-22 09:30:50.000 -"Penny-Punching Princess",0100C510049E0000,status-playable,playable,2022-08-09 13:37:05.000 -"Penny's Big Breakaway",0100CA901AA9C000,status-playable;amd-vendor-bug,playable,2024-05-27 07:58:51.000 -"Perception",,UE4;crash;nvdec;status-menus,menus,2020-12-18 11:49:23.000 -"Perchang",010011700D1B2000,status-playable,playable,2021-01-25 14:19:52.000 -"Perfect Angle",010089F00A3B4000,status-playable,playable,2021-01-21 18:48:45.000 -"Perky Little Things",01005CD012DC0000,status-boots;crash;vulkan,boots,2024-08-04 07:22:46.000 -"Persephone",,status-playable,playable,2021-03-23 22:39:19.000 -"Perseverance",,status-playable,playable,2020-07-13 18:48:27.000 -"Persona 4 Golden",010062B01525C000,status-playable,playable,2024-08-07 17:48:07.000 -"Persona 5 Royal",01005CA01580E000,gpu;status-ingame,ingame,2024-08-17 21:45:15.000 -"Persona 5 Tactica",010087701B092000,status-playable,playable,2024-04-01 22:21:03.000 -"Persona 5: Scramble",,deadlock;status-boots,boots,2020-10-04 03:22:29.000 -"Persona 5: Strikers (US)",0100801011C3E000,status-playable;nvdec;mac-bug,playable,2023-09-26 09:36:01.000 -"Petoons Party",010044400EEAE000,nvdec;status-playable,playable,2021-03-02 21:07:58.000 -"PGA TOUR 2K21",010053401147C000,deadlock;status-ingame;nvdec,ingame,2022-10-05 21:53:50.000 -"Phantaruk",0100DDD00C0EA000,status-playable,playable,2021-06-11 18:09:54.000 -"PHANTOM BREAKER: BATTLE GROUNDS OVER DRIVE",0100063005C86000,audio;status-playable;nvdec,playable,2024-02-29 14:20:35.000 -"Phantom Doctrine",010096F00E5B0000,status-playable;UE4,playable,2022-09-15 10:51:50.000 -"Phantom Trigger",0100C31005A50000,status-playable,playable,2022-08-09 14:27:30.000 -"Phoenix Wright: Ace Attorney Trilogy",0100CB000A142000,status-playable,playable,2023-09-15 22:03:12.000 -"PHOGS!",,online;status-playable,playable,2021-01-18 15:18:37.000 -"Physical Contact: 2048",,slow;status-playable,playable,2021-01-25 15:18:32.000 -"Physical Contact: Speed",01008110036FE000,status-playable,playable,2022-08-09 14:40:46.000 -"Pianista: The Legendary Virtuoso",010077300A86C000,status-playable;online-broken,playable,2022-08-09 14:52:56.000 -"Picross Lord Of The Nazarick",010012100E8DC000,status-playable,playable,2023-02-08 15:54:56.000 -"Picross S2",,status-playable,playable,2020-10-15 12:01:40.000 -"Picross S3",,status-playable,playable,2020-10-15 11:55:27.000 -"Picross S4",,status-playable,playable,2020-10-15 12:33:46.000 -"Picross S5",0100AC30133EC000,status-playable,playable,2022-10-17 18:51:42.000 -"Picross S6",010025901432A000,status-playable,playable,2022-10-29 17:52:19.000 -"Picross S7",,status-playable,playable,2022-02-16 12:51:25.000 -"PictoQuest",010043B00E1CE000,status-playable,playable,2021-02-27 15:03:16.000 -"Piczle Lines DX",,UE4;crash;nvdec;status-menus,menus,2020-11-16 04:21:31.000 -"Piczle Lines DX 500 More Puzzles!",,UE4;status-playable,playable,2020-12-15 23:42:51.000 -"Pig Eat Ball",01000FD00D5CC000,services;status-ingame,ingame,2021-11-30 01:57:45.000 -"Pikmin 1",0100AA80194B0000,audio;status-ingame,ingame,2024-05-28 18:56:11.000 -"Pikmin 2",0100D680194B2000,gpu;status-ingame,ingame,2023-07-31 08:53:41.000 -"Pikmin 3 Deluxe",0100F4C009322000,gpu;status-ingame;32-bit;nvdec;Needs Update,ingame,2024-09-03 00:28:26.000 -"Pikmin 3 Deluxe Demo",01001CB0106F8000,32-bit;crash;demo;gpu;status-ingame,ingame,2021-06-16 18:38:07.000 -"Pikmin 4",0100B7C00933A000,gpu;status-ingame;crash;UE4,ingame,2024-08-26 03:39:08.000 -"Pikmin 4 Demo",0100E0B019974000,gpu;status-ingame;nvdec;UE4;demo;amd-vendor-bug,ingame,2023-09-22 21:41:08.000 -"Pillars of Eternity",0100D6200E130000,status-playable,playable,2021-02-27 00:24:21.000 -"Pilot Sports",01007A500B0B2000,status-playable,playable,2021-01-20 15:04:17.000 -"Pinball FX",0100DA70186D4000,status-playable,playable,2024-05-03 17:09:11.000 -"Pinball FX3",0100DB7003828000,status-playable;online-broken,playable,2022-11-11 23:49:07.000 -"Pine",,slow;status-ingame,ingame,2020-07-29 16:57:39.000 -"Pinstripe",,status-playable,playable,2020-11-26 10:40:40.000 -"Piofiore: Episodio 1926",01002B20174EE000,status-playable,playable,2022-11-23 18:36:05.000 -"Piofiore: Fated Memories",,nvdec;status-playable,playable,2020-11-30 14:27:50.000 -"Pixel Game Maker Series Puzzle Pedestrians",0100EA2013BCC000,status-playable,playable,2022-10-24 20:15:50.000 -"Pixel Game Maker Series Werewolf Princess Kaguya",0100859013CE6000,crash;services;status-nothing,nothing,2021-03-26 00:23:07.000 -"Pixel Gladiator",,status-playable,playable,2020-07-08 02:41:26.000 -"Pixel Puzzle Makeout League",010000E00E612000,status-playable,playable,2022-10-13 12:34:00.000 -"PixelJunk Eden 2",,crash;status-ingame,ingame,2020-12-17 11:55:52.000 -"Pixeljunk Monsters 2",0100E4D00A690000,status-playable,playable,2021-06-07 03:40:01.000 -"Pizza Titan Ultra",01004A900C352000,nvdec;status-playable,playable,2021-01-20 15:58:42.000 -"Pizza Tower",05000FD261232000,status-ingame;crash,ingame,2024-09-16 00:21:56.000 -"Plague Road",0100FF8005EB2000,status-playable,playable,2022-08-09 15:27:14.000 -"Planescape: Torment and Icewind Dale: Enhanced Editions",010030B00C316000,cpu;status-boots;32-bit;crash;Needs Update,boots,2022-09-10 03:58:26.000 -"PLANET ALPHA",,UE4;gpu;status-ingame,ingame,2020-12-16 14:42:20.000 -"Planet Cube Edge",01007EA019CFC000,status-playable,playable,2023-03-22 17:10:12.000 -"planetarian HD ~the reverie of a little planet~",,status-playable,playable,2020-10-17 20:26:20.000 -"Plantera",010087000428E000,status-playable,playable,2022-08-09 15:36:28.000 -"Plants vs. Zombies: Battle for Neighborville Complete Edition",0100C56010FD8000,gpu;audio;status-boots;crash,boots,2024-09-02 12:58:14.000 -"Ploid Saga",0100E5B011F48000,status-playable,playable,2021-04-19 16:58:45.000 -"Pode",01009440095FE000,nvdec;status-playable,playable,2021-01-25 12:58:35.000 -"Poi: Explorer Edition",010086F0064CE000,nvdec;status-playable,playable,2021-01-21 19:32:00.000 -"Poison Control",0100EB6012FD2000,status-playable,playable,2021-05-16 14:01:54.000 -"Pokémon Brilliant Diamond",0100000011D90000,gpu;status-ingame;ldn-works,ingame,2024-08-28 13:26:35.000 -"Pokémon Café Mix",010072400E04A000,status-playable,playable,2021-08-17 20:00:04.000 -"Pokémon HOME",,Needs Update;crash;services;status-menus,menus,2020-12-06 06:01:51.000 -"Pokémon Legends: Arceus",01001F5010DFA000,gpu;status-ingame;Needs Update;ldn-works,ingame,2024-09-19 10:02:02.000 -"Pokémon Mystery Dungeon Rescue Team DX",01003D200BAA2000,status-playable;mac-bug,playable,2024-01-21 00:16:32.000 -"Pokemon Quest",01005D100807A000,status-playable,playable,2022-02-22 16:12:32.000 -"Pokémon Scarlet",0100A3D008C5C000,gpu;status-ingame;nvdec;ldn-works;amd-vendor-bug,ingame,2023-12-14 13:18:29.000 -"Pokémon Shield",01008DB008C2C000,deadlock;status-ingame;crash;online-broken;ldn-works;LAN,ingame,2024-08-12 07:20:22.000 -"Pokémon Sword",0100ABF008968000,deadlock;status-ingame;crash;online-broken;ldn-works;LAN,ingame,2024-08-26 15:40:37.000 -"Pokémon Violet",01008F6008C5E000,gpu;status-ingame;nvdec;ldn-works;amd-vendor-bug;mac-bug,ingame,2024-07-30 02:51:48.000 -"Pokémon: Let's Go, Eevee!",0100187003A36000,status-ingame;crash;nvdec;online-broken;ldn-broken,ingame,2024-06-01 15:03:04.000 -"Pokémon: Let's Go, Pikachu!",010003F003A34000,status-ingame;crash;nvdec;online-broken;ldn-broken,ingame,2024-03-15 07:55:41.000 -"Pokémon: Let's Go, Pikachu! demo",01009AD008C4C000,slow;status-playable;demo,playable,2023-11-26 11:23:20.000 -"Pokkén Tournament DX",0100B3F000BE2000,status-playable;nvdec;ldn-works;opengl-backend-bug;LAN;amd-vendor-bug;intel-vendor-bug,playable,2024-07-18 23:11:08.000 -"Pokken Tournament DX Demo",010030D005AE6000,status-playable;demo;opengl-backend-bug,playable,2022-08-10 12:03:19.000 -"Polandball: Can Into Space!",,status-playable,playable,2020-06-25 15:13:26.000 -"Poly Bridge",,services;status-playable,playable,2020-06-08 23:32:41.000 -"Polygod",010017600B180000,slow;status-ingame;regression,ingame,2022-08-10 14:38:14.000 -"Polyroll",010074B00ED32000,gpu;status-boots,boots,2021-07-01 16:16:50.000 -"Ponpu",,status-playable,playable,2020-12-16 19:09:34.000 -"Pooplers",,status-playable,playable,2020-11-02 11:52:10.000 -"Port Royale 4",01007EF013CA0000,status-menus;crash;nvdec,menus,2022-10-30 14:34:06.000 -"Portal",01007BB017812000,status-playable,playable,2024-06-12 03:48:29.000 -"Portal 2",0100ABD01785C000,gpu;status-ingame,ingame,2023-02-20 22:44:15.000 -"Portal Dogs",,status-playable,playable,2020-09-04 12:55:46.000 -"Portal Knights",0100437004170000,ldn-untested;online;status-playable,playable,2021-05-27 19:29:04.000 -"Potata: Fairy Flower",,nvdec;status-playable,playable,2020-06-17 09:51:34.000 -"Potion Party",01000A4014596000,status-playable,playable,2021-05-06 14:26:54.000 -"Power Rangers: Battle for the Grid",,status-playable,playable,2020-06-21 16:52:42.000 -"Powerful Pro Baseball 2024-2025",0100D1C01C194000,gpu;status-ingame,ingame,2024-08-25 06:40:48.000 -"PowerSlave Exhumed",01008E100E416000,gpu;status-ingame,ingame,2023-07-31 23:19:10.000 -"Prehistoric Dude",,gpu;status-ingame,ingame,2020-10-12 12:38:48.000 -"Pretty Princess Magical Coordinate",,status-playable,playable,2020-10-15 11:43:41.000 -"Pretty Princess Party",01007F00128CC000,status-playable,playable,2022-10-19 17:23:58.000 -"Preventive Strike",010009300D278000,status-playable;nvdec,playable,2022-10-06 10:55:51.000 -"Prince of Persia: The Lost Crown",0100210019428000,status-ingame;crash,ingame,2024-06-08 21:31:58.000 -"Princess Peach: Showtime!",01007A3009184000,status-playable;UE4,playable,2024-09-21 13:39:45.000 -"Princess Peach: Showtime! Demo",010024701DC2E000,status-playable;UE4;demo,playable,2024-03-10 17:46:45.000 -"Prinny 2: Dawn of Operation Panties, Dood!",01008FA01187A000,32-bit;status-playable,playable,2022-10-13 12:42:58.000 -"Prinny Presents NIS Classics Volume 1",0100A6E01681C000,status-boots;crash;Needs Update,boots,2023-02-02 07:23:09.000 -"Prinny: Can I Really Be the Hero?",01007A0011878000,32-bit;status-playable;nvdec,playable,2023-10-22 09:25:25.000 -"PriPara: All Idol Perfect Stage",010007F00879E000,status-playable,playable,2022-11-22 16:35:52.000 -"Prison Architect",010029200AB1C000,status-playable,playable,2021-04-10 12:27:58.000 -"Prison City",0100C1801B914000,gpu;status-ingame,ingame,2024-03-01 08:19:33.000 -"Prison Princess",0100F4800F872000,status-playable,playable,2022-11-20 15:00:25.000 -"Professional Construction - The Simulation",0100A9800A1B6000,slow;status-playable,playable,2022-08-10 15:15:45.000 -"Professional Farmer: Nintendo Switch Edition",,slow;status-playable,playable,2020-12-16 13:38:19.000 -"Professor Lupo and his Horrible Pets",,status-playable,playable,2020-06-12 00:08:45.000 -"Professor Lupo: Ocean",0100D1F0132F6000,status-playable,playable,2021-04-14 16:33:33.000 -"Project Highrise: Architect's Edition",0100BBD00976C000,status-playable,playable,2022-08-10 17:19:12.000 -"Project Nimbus: Complete Edition",0100ACE00DAB6000,status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-08-10 17:35:43.000 -"Project TRIANGLE STRATEGY Debut Demo",01002980140F6000,status-playable;UE4;demo,playable,2022-10-24 21:40:27.000 -"Project Warlock",,status-playable,playable,2020-06-16 10:50:41.000 -"Psikyo Collection Vol 1",,32-bit;status-playable,playable,2020-10-11 13:18:47.000 -"Psikyo Collection Vol. 3",0100A2300DB78000,status-ingame,ingame,2021-06-07 02:46:23.000 -"Psikyo Collection Vol.2",01009D400C4A8000,32-bit;status-playable,playable,2021-06-07 03:22:07.000 -"Psikyo Shooting Stars Alpha",01007A200F2E2000,32-bit;status-playable,playable,2021-04-13 12:03:43.000 -"Psikyo Shooting Stars Bravo",0100D7400F2E4000,32-bit;status-playable,playable,2021-06-14 12:09:07.000 -"PSYVARIAR DELTA",0100EC100A790000,nvdec;status-playable,playable,2021-01-20 13:01:46.000 -"Puchitto kurasutā",,Need-Update;crash;services;status-menus,menus,2020-07-04 16:44:28.000 -"Pulstario",0100861012474000,status-playable,playable,2022-10-06 11:02:01.000 -"Pumped BMX Pro",01009AE00B788000,status-playable;nvdec;online-broken,playable,2022-09-20 17:40:50.000 -"Pumpkin Jack",01006C10131F6000,status-playable;nvdec;UE4,playable,2022-10-13 12:52:32.000 -"PUSH THE CRATE",010016400F07E000,status-playable;nvdec;UE4,playable,2022-09-15 13:28:41.000 -"Push the Crate 2",0100B60010432000,UE4;gpu;nvdec;status-ingame,ingame,2021-06-10 14:20:01.000 -"Pushy and Pully in Blockland",,status-playable,playable,2020-07-04 11:44:41.000 -"Puyo Puyo Champions",,online;status-playable,playable,2020-06-19 11:35:08.000 -"Puyo Puyo Tetris 2",010038E011940000,status-playable;ldn-untested,playable,2023-09-26 11:35:25.000 -"Puzzle and Dragons GOLD",,slow;status-playable,playable,2020-05-13 15:09:34.000 -"Puzzle Bobble Everybubble!",010079E01A1E0000,audio;status-playable;ldn-works,playable,2023-06-10 03:53:40.000 -"Puzzle Book",,status-playable,playable,2020-09-28 13:26:01.000 -"Puzzle Box Maker",0100476004A9E000,status-playable;nvdec;online-broken,playable,2022-08-10 18:00:52.000 -"Pyramid Quest",0100A4E017372000,gpu;status-ingame,ingame,2023-08-16 21:14:52.000 -"Q-YO Blaster",,gpu;status-ingame,ingame,2020-06-07 22:36:53.000 -"Q.U.B.E. 2",010023600AA34000,UE4;status-playable,playable,2021-03-03 21:38:57.000 -"Qbics Paint",0100A8D003BAE000,gpu;services;status-ingame,ingame,2021-06-07 10:54:09.000 -"Quake",0100BA5012E54000,gpu;status-menus;crash,menus,2022-08-08 12:40:34.000 -"Quake II",010048F0195E8000,status-playable,playable,2023-08-15 03:42:14.000 -"QuakespasmNX",,status-nothing;crash;homebrew,nothing,2022-07-23 19:28:07.000 -"Quantum Replica",010045101288A000,status-playable;nvdec;UE4,playable,2022-10-30 21:17:22.000 -"Quarantine Circular",0100F1400BA88000,status-playable,playable,2021-01-20 15:24:15.000 -"Queen's Quest 4: Sacred Truce",0100DCF00F13A000,status-playable;nvdec,playable,2022-10-13 12:59:21.000 -"Quell Zen",0100492012378000,gpu;status-ingame,ingame,2021-06-11 15:59:53.000 -"Quest of Dungeons",01001DE005012000,status-playable,playable,2021-06-07 10:29:22.000 -"QuietMansion2",,status-playable,playable,2020-09-03 14:59:35.000 -"Quiplash 2 InterLASHional",0100AF100EE76000,status-playable;online-working,playable,2022-10-19 17:43:45.000 -"R-Type Dimensions EX",,status-playable,playable,2020-10-09 12:04:43.000 -"R-TYPE FINAL 2",0100F930136B6000,slow;status-ingame;nvdec;UE4,ingame,2022-10-30 21:46:29.000 -"R-TYPE FINAL 2 Demo",01007B0014300000,slow;status-ingame;nvdec;UE4;demo,ingame,2022-10-24 21:57:42.000 -"R.B.I. Baseball 17",0100B5A004302000,status-playable;online-working,playable,2022-08-11 11:55:47.000 -"R.B.I. Baseball 18",01005CC007616000,status-playable;nvdec;online-working,playable,2022-08-11 11:27:52.000 -"R.B.I. Baseball 19",0100FCB00BF40000,status-playable;nvdec;online-working,playable,2022-08-11 11:43:52.000 -"R.B.I. Baseball 20",010061400E7D4000,status-playable,playable,2021-06-15 21:16:29.000 -"R.B.I. Baseball 21",0100B4A0115CA000,status-playable;online-working,playable,2022-10-24 22:31:45.000 -"Rabi-Ribi",01005BF00E4DE000,status-playable,playable,2022-08-06 17:02:44.000 -"Race With Ryan",,UE4;gpu;nvdec;slow;status-ingame,ingame,2020-11-16 04:35:33.000 -"Rack N Ruin",,status-playable,playable,2020-09-04 15:20:26.000 -"RAD",010024400C516000,gpu;status-menus;crash;UE4,menus,2021-11-29 02:01:56.000 -"Rad Rodgers Radical Edition",010000600CD54000,status-playable;nvdec;online-broken,playable,2022-08-10 19:57:23.000 -"Radiation City",0100DA400E07E000,status-ingame;crash,ingame,2022-09-30 11:15:04.000 -"Radiation Island",01009E40095EE000,status-ingame;opengl;vulkan-backend-bug,ingame,2022-08-11 10:51:04.000 -"Radical Rabbit Stew",,status-playable,playable,2020-08-03 12:02:56.000 -"Radio Commander",0100BAD013B6E000,nvdec;status-playable,playable,2021-03-24 11:20:46.000 -"RADIO HAMMER STATION",01008FA00ACEC000,audout;status-playable,playable,2021-02-26 20:20:06.000 -"Raging Justice",01003D00099EC000,status-playable,playable,2021-06-03 14:06:50.000 -"Raiden IV x Mikado Remix [ 雷電Ⅳ×MIKADO remix ]",01005CD013116000,status-playable,playable,2022-07-29 15:50:13.000 -"Raiden V: Director's Cut",01002B000D97E000,deadlock;status-boots;nvdec,boots,2024-07-12 07:31:46.000 -"Railway Empire",01002EE00DC02000,status-playable;nvdec,playable,2022-10-03 13:53:50.000 -"Rain City",,status-playable,playable,2020-10-08 16:59:03.000 -"Rain on Your Parade",0100BDD014232000,status-playable,playable,2021-05-06 19:32:04.000 -"Rain World",010047600BF72000,status-playable,playable,2023-05-10 23:34:08.000 -"Rainbows, toilets & unicorns",,nvdec;status-playable,playable,2020-10-03 18:08:18.000 -"Raji An Ancient Epic",,UE4;gpu;nvdec;status-ingame,ingame,2020-12-16 10:05:25.000 -"Rapala Fishing: Pro Series",,nvdec;status-playable,playable,2020-12-16 13:26:53.000 -"Rascal Fight",,status-playable,playable,2020-10-08 13:23:30.000 -"Rawr-Off",,crash;nvdec;status-menus,menus,2020-07-02 00:14:44.000 -"Rayman Legends: Definitive Edition",01005FF002E2A000,status-playable;nvdec;ldn-works,playable,2023-05-27 18:33:07.000 -"Re:Turn - One Way Trip",0100F03011616000,status-playable,playable,2022-08-29 22:42:53.000 -"Re:ZERO -Starting Life in Another World- The Prophecy of the Throne",,gpu;status-boots;crash;nvdec;vulkan,boots,2023-03-07 21:27:24.000 -"Real Drift Racing",,status-playable,playable,2020-07-25 14:31:31.000 -"Real Heroes: Firefighter",010048600CC16000,status-playable,playable,2022-09-20 18:18:44.000 -"realMyst: Masterpiece Edition",,nvdec;status-playable,playable,2020-11-30 15:25:42.000 -"Reaper: Tale of a Pale Swordsman",,status-playable,playable,2020-12-12 15:12:23.000 -"Rebel Cops",0100D9B00E22C000,status-playable,playable,2022-09-11 10:02:53.000 -"Rebel Galaxy: Outlaw",0100CAA01084A000,status-playable;nvdec,playable,2022-12-01 07:44:56.000 -"Red Bow",0100CF600FF7A000,services;status-ingame,ingame,2021-11-29 03:51:34.000 -"Red Colony",0100351013A06000,status-playable,playable,2021-01-25 20:44:41.000 -"Red Dead Redemption",01007820196A6000,status-playable;amd-vendor-bug,playable,2024-09-13 13:26:13.000 -"Red Death",,status-playable,playable,2020-08-30 13:07:37.000 -"Red Faction Guerrilla Re-Mars-tered",010075000C608000,ldn-untested;nvdec;online;status-playable,playable,2021-06-07 03:02:13.000 -"Red Game Without a Great Name",,status-playable,playable,2021-01-19 21:42:35.000 -"Red Siren : Space Defense",010045400D73E000,UE4;status-playable,playable,2021-04-25 21:21:29.000 -"Red Wings - Aces of the Sky",,status-playable,playable,2020-06-12 01:19:53.000 -"Redeemer: Enhanced Edition",01000D100DCF8000,status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-09-11 10:20:24.000 -"Redout: Space Assault",0100326010B98000,status-playable;UE4,playable,2022-10-19 23:04:35.000 -"Reel Fishing: Road Trip Adventure",010007C00E558000,status-playable,playable,2021-03-02 16:06:43.000 -"Reflection of Mine",,audio;status-playable,playable,2020-12-17 15:06:37.000 -"Refreshing Sideways Puzzle Ghost Hammer",,status-playable,playable,2020-10-18 12:08:54.000 -"Refunct",,UE4;status-playable,playable,2020-12-15 22:46:21.000 -"Regalia: Of Men and Monarchs - Royal Edition",0100FDF0083A6000,status-playable,playable,2022-08-11 12:24:01.000 -"Regions of Ruin",,status-playable,playable,2020-08-05 11:38:58.000 -"Reine des Fleurs",,cpu;crash;status-boots,boots,2020-09-27 18:50:39.000 -"REKT",,online;status-playable,playable,2020-09-28 12:33:56.000 -"Relicta",01002AD013C52000,status-playable;nvdec;UE4,playable,2022-10-31 12:48:33.000 -"Remi Lore",010095900B436000,status-playable,playable,2021-06-03 18:58:15.000 -"Remothered: Broken Porcelain",0100FBD00F5F6000,UE4;gpu;nvdec;status-ingame,ingame,2021-06-17 15:13:11.000 -"Remothered: Tormented Fathers",01001F100E8AE000,status-playable;nvdec;UE4,playable,2022-10-19 23:26:50.000 -"Rento Fortune Monolit",,ldn-untested;online;status-playable,playable,2021-01-19 19:52:21.000 -"Renzo Racer",01007CC0130C6000,status-playable,playable,2021-03-23 22:28:05.000 -"Rescue Tale",01003C400AD42000,status-playable,playable,2022-09-20 18:40:18.000 -"Resident Evil 4",010099A00BC1E000,status-playable;nvdec,playable,2022-11-16 21:16:04.000 -"Resident Evil 5",010018100CD46000,status-playable;nvdec,playable,2024-02-18 17:15:29.000 -"RESIDENT EVIL 6",01002A000CD48000,status-playable;nvdec,playable,2022-09-15 14:31:47.000 -"Resident Evil Revelations",0100643002136000,status-playable;nvdec;ldn-untested,playable,2022-08-11 12:44:19.000 -"RESIDENT EVIL REVELATIONS 2",010095300212A000,status-playable;online-broken;ldn-untested,playable,2022-08-11 12:57:50.000 -"Resolutiion",0100E7F00FFB8000,crash;status-boots,boots,2021-04-25 21:57:56.000 -"Restless Night [0100FF201568E000]",0100FF201568E000,status-nothing;crash,nothing,2022-02-09 10:54:49.000 -"Retail Interactive Display Menu (DevQuestMenu)- 0100069000078000",0100069000078000,services;status-nothing;crash,nothing,2022-08-11 13:19:41.000 -"Retimed",010086E00BCB2000,status-playable,playable,2022-08-11 13:32:39.000 -"Retro City Rampage DX",,status-playable,playable,2021-01-05 17:04:17.000 -"Retrograde Arena",01000ED014A2C000,status-playable;online-broken,playable,2022-10-31 13:38:58.000 -"Return of the Obra Dinn",010032E00E6E2000,status-playable,playable,2022-09-15 19:56:45.000 -"Revenge of Justice",010027400F708000,status-playable;nvdec,playable,2022-11-20 15:43:23.000 -"Reventure",0100E2E00EA42000,status-playable,playable,2022-09-15 20:07:06.000 -"REZ PLZ",,status-playable,playable,2020-10-24 13:26:12.000 -"Rhythm Fighter",0100729012D18000,crash;status-nothing,nothing,2021-02-16 18:51:30.000 -"Rhythm of the Gods",,UE4;crash;status-nothing,nothing,2020-10-03 17:39:59.000 -"RICO",01009D5009234000,status-playable;nvdec;online-broken,playable,2022-08-11 20:16:40.000 -"Riddled Corpses EX",01002C700C326000,status-playable,playable,2021-06-06 16:02:44.000 -"Rift Keeper",0100AC600D898000,status-playable,playable,2022-09-20 19:48:20.000 -"RiME",,UE4;crash;gpu;status-boots,boots,2020-07-20 15:52:38.000 -"Rimelands",01006AC00EE6E000,status-playable,playable,2022-10-13 13:32:56.000 -"Ring Fit Adventure",01002FF008C24000,crash;services;status-nothing,nothing,2021-04-14 19:00:01.000 -"RIOT: Civil Unrest",010088E00B816000,status-playable,playable,2022-08-11 20:27:56.000 -"Riptide GP: Renegade",01002A6006AA4000,online;status-playable,playable,2021-04-13 23:33:02.000 -"Rise and Shine",,status-playable,playable,2020-12-12 15:56:43.000 -"Rise of Insanity",,status-playable,playable,2020-08-30 15:42:14.000 -"Rise: Race the Future",01006BA00E652000,status-playable,playable,2021-02-27 13:29:06.000 -"Rising Hell",010020C012F48000,status-playable,playable,2022-10-31 13:54:02.000 -"Risk",0100E8300A67A000,status-playable;nvdec;online-broken,playable,2022-08-01 18:53:28.000 -"Risk of Rain 2",010076D00E4BA000,status-playable;online-broken,playable,2024-03-04 17:01:05.000 -"Ritual",0100BD300F0EC000,status-playable,playable,2021-03-02 13:51:19.000 -"Ritual: Crown of Horns",010042500FABA000,status-playable,playable,2021-01-26 16:01:47.000 -"Rival Megagun",,nvdec;online;status-playable,playable,2021-01-19 14:01:46.000 -"RIVE: Ultimate Edition",,status-playable,playable,2021-03-24 18:45:55.000 -"River City Girls",,nvdec;status-playable,playable,2020-06-10 23:44:09.000 -"River City Girls 2",01002E80168F4000,status-playable,playable,2022-12-07 00:46:27.000 -"River City Melee Mach!!",0100B2100767C000,status-playable;online-broken,playable,2022-09-20 20:51:57.000 -"RMX Real Motocross",,status-playable,playable,2020-10-08 21:06:15.000 -"Road Redemption",010053000B986000,status-playable;online-broken,playable,2022-08-12 11:26:20.000 -"Road to Ballhalla",010002F009A7A000,UE4;status-playable,playable,2021-06-07 02:22:36.000 -"Road to Guangdong",,slow;status-playable,playable,2020-10-12 12:15:32.000 -"Roarr!",010068200C5BE000,status-playable,playable,2022-10-19 23:57:45.000 -"Robonauts",0100618004096000,status-playable;nvdec,playable,2022-08-12 11:33:23.000 -"ROBOTICS;NOTES DaSH",,status-playable,playable,2020-11-16 23:09:54.000 -"ROBOTICS;NOTES ELITE",,status-playable,playable,2020-11-26 10:28:20.000 -"Robozarro",,status-playable,playable,2020-09-03 13:33:40.000 -"Rock 'N Racing Off Road DX",,status-playable,playable,2021-01-10 15:27:15.000 -"Rock N' Racing Grand Prix",,status-playable,playable,2021-01-06 20:23:57.000 -"Rock of Ages 3: Make & Break",0100A1B00DB36000,status-playable;UE4,playable,2022-10-06 12:18:29.000 -"Rocket League",01005EE0036EC000,gpu;status-ingame;online-broken;ldn-untested,ingame,2024-02-08 19:51:36.000 -"Rocket Wars",,status-playable,playable,2020-07-24 14:27:39.000 -"Rogue Aces",0100EC7009348000,gpu;services;status-ingame;nvdec,ingame,2021-11-30 02:18:30.000 -"Rogue Heroes: Ruins of Tasos",01009FA010848000,online;status-playable,playable,2021-04-01 15:41:25.000 -"Rogue Legacy",,status-playable,playable,2020-08-10 19:17:28.000 -"Rogue Robots",,status-playable,playable,2020-06-16 12:16:11.000 -"Rogue Trooper Redux",01001CC00416C000,status-playable;nvdec;online-broken,playable,2022-08-12 11:53:01.000 -"RogueCube",0100C7300C0EC000,status-playable,playable,2021-06-16 12:16:42.000 -"Roll'd",,status-playable,playable,2020-07-04 20:24:01.000 -"RollerCoaster Tycoon 3: Complete Edition",01004900113F8000,32-bit;status-playable,playable,2022-10-17 14:18:01.000 -"RollerCoaster Tycoon Adventures",,nvdec;status-playable,playable,2021-01-05 18:14:18.000 -"Rolling Gunner",010076200CA16000,status-playable,playable,2021-05-26 12:54:18.000 -"Rolling Sky 2",0100579011B40000,status-playable,playable,2022-11-03 10:21:12.000 -"Romancing SaGa 2",01001F600829A000,status-playable,playable,2022-08-12 12:02:24.000 -"Romancing SaGa 3",,audio;gpu;status-ingame,ingame,2020-06-27 20:26:18.000 -"Roof Rage",010088100DD42000,status-boots;crash;regression,boots,2023-11-12 03:47:18.000 -"Roombo: First Blood",,nvdec;status-playable,playable,2020-08-05 12:11:37.000 -"Root Double -Before Crime * After Days- Xtend Edition",0100936011556000,status-nothing;crash,nothing,2022-02-05 02:03:49.000 -"Root Letter: Last Answer",010030A00DA3A000,status-playable;vulkan-backend-bug,playable,2022-09-17 10:25:57.000 -"Royal Roads",,status-playable,playable,2020-11-17 12:54:38.000 -"RPG Maker MV",,nvdec;status-playable,playable,2021-01-05 20:12:01.000 -"rRootage Reloaded [01005CD015986000]",01005CD015986000,status-playable,playable,2022-08-05 23:20:18.000 -"RSDKv5u",0000000000000000,status-ingame;homebrew,ingame,2024-04-01 16:25:34.000 -"Rugby Challenge 4",010009B00D33C000,slow;status-playable;online-broken;UE4,playable,2022-10-06 12:45:53.000 -"Ruiner",01006EC00F2CC000,status-playable;UE4,playable,2022-10-03 14:11:33.000 -"Run the Fan",010074F00DE4A000,status-playable,playable,2021-02-27 13:36:28.000 -"Runbow",,online;status-playable,playable,2021-01-08 22:47:44.000 -"Runbow Deluxe Edition",0100D37009B8A000,status-playable;online-broken,playable,2022-08-12 12:20:25.000 -"Rune Factory 3 Special",010081C0191D8000,status-playable,playable,2023-10-15 08:32:49.000 -"Rune Factory 4 Special",010051D00E3A4000,status-ingame;32-bit;crash;nvdec,ingame,2023-05-06 08:49:17.000 -"Rune Factory 5 (JP)",010014D01216E000,gpu;status-ingame,ingame,2021-06-01 12:00:36.000 -"RWBY: Grimm Eclipse",0100E21013908000,status-playable;online-broken,playable,2022-11-03 10:44:01.000 -"RXN -Raijin-",,nvdec;status-playable,playable,2021-01-10 16:05:43.000 -"S.N.I.P.E.R. Hunter Scope",0100B8B012ECA000,status-playable,playable,2021-04-19 15:58:09.000 -"Saboteur II: Avenging Angel",,Needs Update;cpu;crash;status-nothing,nothing,2021-01-26 14:47:37.000 -"Saboteur SiO",,slow;status-ingame,ingame,2020-12-17 16:59:49.000 -"Safety First!",,status-playable,playable,2021-01-06 09:05:23.000 -"SaGa Frontier Remastered",0100A51013530000,status-playable;nvdec,playable,2022-11-03 13:54:56.000 -"SaGa SCARLET GRACE: AMBITIONS",010003A00D0B4000,status-playable,playable,2022-10-06 13:20:31.000 -"Saints Row IV",01008D100D43E000,status-playable;ldn-untested;LAN,playable,2023-12-04 18:33:37.000 -"Saints Row: The Third - The Full Package",0100DE600BEEE000,slow;status-playable;LAN,playable,2023-08-24 02:40:58.000 -"Sakai and...",01007F000EB36000,status-playable;nvdec,playable,2022-12-15 13:53:19.000 -"Sakuna: Of Rice and Ruin",0100B1400E8FE000,status-playable,playable,2023-07-24 13:47:13.000 -"Sally Face",0100BBF0122B4000,status-playable,playable,2022-06-06 18:41:24.000 -"Salt And Sanctuary",,status-playable,playable,2020-10-22 11:52:19.000 -"Sam & Max Save the World",,status-playable,playable,2020-12-12 13:11:51.000 -"Samsara",,status-playable,playable,2021-01-11 15:14:12.000 -"Samurai Jack Battle Through Time",01006C600E46E000,status-playable;nvdec;UE4,playable,2022-10-06 13:33:59.000 -"SAMURAI SHODOWN",,UE4;crash;nvdec;status-menus,menus,2020-09-06 02:17:00.000 -"SAMURAI SHOWDOWN NEOGEO COLLECTION",0100F6800F48E000,nvdec;status-playable,playable,2021-06-14 17:12:56.000 -"Samurai Warrior",0100B6501A360000,status-playable,playable,2023-02-27 18:42:38.000 -"SamuraiAces for Nintendo Switch",,32-bit;status-playable,playable,2020-11-24 20:26:55.000 -"Sangoku Rensenki ~Otome no Heihou!~",,gpu;nvdec;status-ingame,ingame,2020-10-17 19:13:14.000 -"Satsujin Tantei Jack the Ripper",0100A4700BC98000,status-playable,playable,2021-06-21 16:32:54.000 -"Saturday Morning RPG",0100F0000869C000,status-playable;nvdec,playable,2022-08-12 12:41:50.000 -"Sausage Sports Club",,gpu;status-ingame,ingame,2021-01-10 05:37:17.000 -"Save Koch",0100C8300FA90000,status-playable,playable,2022-09-26 17:06:56.000 -"Save the Ninja Clan",,status-playable,playable,2021-01-11 13:56:37.000 -"Save Your Nuts",010091000F72C000,status-playable;nvdec;online-broken;UE4,playable,2022-09-27 23:12:02.000 -"Saviors of Sapphire Wings & Stranger of Sword City Revisited",0100AA00128BA000,status-menus;crash,menus,2022-10-24 23:00:46.000 -"Say No! More",01001C3012912000,status-playable,playable,2021-05-06 13:43:34.000 -"Sayonara Wild Hearts",010010A00A95E000,status-playable,playable,2023-10-23 03:20:01.000 -"Schlag den Star",0100ACB004006000,slow;status-playable;nvdec,playable,2022-08-12 14:28:22.000 -"Scott Pilgrim vs The World: The Game",0100394011C30000,services-horizon;status-nothing;crash,nothing,2024-07-12 08:13:03.000 -"Scribblenauts Mega Pack",,nvdec;status-playable,playable,2020-12-17 22:56:14.000 -"Scribblenauts Showdown",,gpu;nvdec;status-ingame,ingame,2020-12-17 23:05:53.000 -"SD GUNDAM BATTLE ALLIANCE Demo",0100829018568000,audio;status-ingame;crash;demo,ingame,2022-08-01 23:01:20.000 -"SD GUNDAM G GENERATION CROSS RAYS",010055700CEA8000,status-playable;nvdec,playable,2022-09-15 20:58:44.000 -"SD GUNDAM G GENERATION CROSS RAYS PREMIUM G SOUND EDITION - 010022900D3EC00",,status-playable;nvdec,playable,2022-09-15 20:45:57.000 -"Sea King",0100E4A00D066000,UE4;nvdec;status-playable,playable,2021-06-04 15:49:22.000 -"Sea of Solitude The Director's Cut",0100AFE012BA2000,gpu;status-ingame,ingame,2024-07-12 18:29:29.000 -"Sea of Stars",01008C0016544000,status-playable,playable,2024-03-15 20:27:12.000 -"Sea of Stars Demo",010036F0182C4000,status-playable;demo,playable,2023-02-12 15:33:56.000 -"SeaBed",,status-playable,playable,2020-05-17 13:25:37.000 -"Season Match Bundle - Part 1 and 2",,status-playable,playable,2021-01-11 13:28:23.000 -"Season Match Full Bundle - Parts 1, 2 and 3",,status-playable,playable,2020-10-27 16:15:22.000 -"Secret Files 3",,nvdec;status-playable,playable,2020-10-24 15:32:39.000 -"Seek Hearts",010075D0101FA000,status-playable,playable,2022-11-22 15:06:26.000 -"Seers Isle",,status-playable,playable,2020-11-17 12:28:50.000 -"SEGA AGES Alex Kidd in Miracle World",0100A8900AF04000,online;status-playable,playable,2021-05-05 16:35:47.000 -"SEGA AGES Gain Ground",01001E600AF08000,online;status-playable,playable,2021-05-05 16:16:27.000 -"SEGA AGES OUTRUN",,status-playable,playable,2021-01-11 13:13:59.000 -"SEGA AGES PHANTASY STAR",,status-playable,playable,2021-01-11 12:49:48.000 -"SEGA AGES Puyo Puyo",01005F600CB0E000,online;status-playable,playable,2021-05-05 16:09:28.000 -"SEGA AGES SONIC THE HEDGEHOG 2",01000D200C614000,status-playable,playable,2022-09-21 20:26:35.000 -"SEGA AGES SPACE HARRIER",,status-playable,playable,2021-01-11 12:57:40.000 -"SEGA AGES Wonder Boy: Monster Land",01001E700AC60000,online;status-playable,playable,2021-05-05 16:28:25.000 -"SEGA Ages: Sonic The Hedgehog",010051F00AC5E000,slow;status-playable,playable,2023-03-05 20:16:31.000 -"SEGA Ages: Virtua Racing",010054400D2E6000,status-playable;online-broken,playable,2023-01-29 17:08:39.000 -"SEGA Genesis - Nintendo Switch Online",0100B3C014BDA000,status-nothing;crash;regression,nothing,2022-04-11 07:27:21.000 -"SEGA Mega Drive Classics",,online;status-playable,playable,2021-01-05 11:08:00.000 -"Semispheres",,status-playable,playable,2021-01-06 23:08:31.000 -"SENRAN KAGURA Peach Ball",0100D1800D902000,status-playable,playable,2021-06-03 15:12:10.000 -"SENRAN KAGURA Reflexions",,status-playable,playable,2020-03-23 19:15:23.000 -"Sentinels of Freedom",01009E500D29C000,status-playable,playable,2021-06-14 16:42:19.000 -"SENTRY",,status-playable,playable,2020-12-13 12:00:24.000 -"Sephirothic Stories",010059700D4A0000,services;status-menus,menus,2021-11-25 08:52:17.000 -"Serious Sam Collection",010007D00D43A000,status-boots;vulkan-backend-bug,boots,2022-10-13 13:53:34.000 -"Served! A gourmet race",0100B2C00E4DA000,status-playable;nvdec,playable,2022-09-28 12:46:00.000 -"Seven Knights -Time Wanderer-",010018400C24E000,status-playable;vulkan-backend-bug,playable,2022-10-13 22:08:54.000 -"Seven Pirates H",0100D6F016676000,status-playable,playable,2024-06-03 14:54:12.000 -"Severed",,status-playable,playable,2020-12-15 21:48:48.000 -"Shadow Blade Reload",0100D5500DA94000,nvdec;status-playable,playable,2021-06-11 18:40:43.000 -"Shadow Gangs",0100BE501382A000,cpu;gpu;status-ingame;crash;regression,ingame,2024-04-29 00:07:26.000 -"Shadow Man Remastered",0100C3A013840000,gpu;status-ingame,ingame,2024-05-20 06:01:39.000 -"Shadowgate",,status-playable,playable,2021-04-24 07:32:57.000 -"Shadowrun Returns",0100371013B3E000,gpu;status-ingame;Needs Update,ingame,2022-10-04 21:32:31.000 -"Shadowrun: Dragonfall - Director's Cut",01008310154C4000,gpu;status-ingame;Needs Update,ingame,2022-10-04 20:52:18.000 -"Shadowrun: Hong Kong - Extended Edition",0100C610154CA000,gpu;status-ingame;Needs Update,ingame,2022-10-04 20:53:09.000 -"Shadows 2: Perfidia",,status-playable,playable,2020-08-07 12:43:46.000 -"Shadows of Adam",,status-playable,playable,2021-01-11 13:35:58.000 -"Shadowverse Champions Battle",01002A800C064000,status-playable,playable,2022-10-02 22:59:29.000 -"Shadowverse: Champion’s Battle",01003B90136DA000,status-nothing;crash,nothing,2023-03-06 00:31:50.000 -"Shady Part of Me",0100820013612000,status-playable,playable,2022-10-20 11:31:55.000 -"Shakedown: Hawaii",,status-playable,playable,2021-01-07 09:44:36.000 -"Shakes on a Plane",01008DA012EC0000,status-menus;crash,menus,2021-11-25 08:52:25.000 -"Shalnor Legends: Sacred Lands",0100B4900E008000,status-playable,playable,2021-06-11 14:57:11.000 -"Shanky: The Vegan's Nightmare - 01000C00CC10000",,status-playable,playable,2021-01-26 15:03:55.000 -"Shantae",0100430013120000,status-playable,playable,2021-05-21 04:53:26.000 -"Shantae and the Pirate's Curse",0100EFD00A4FA000,status-playable,playable,2024-04-29 17:21:57.000 -"Shantae and the Seven Sirens",,nvdec;status-playable,playable,2020-06-19 12:23:40.000 -"Shantae: Half-Genie Hero Ultimate Edition",,status-playable,playable,2020-06-04 20:14:20.000 -"Shantae: Risky's Revenge - Director's Cut",0100ADA012370000,status-playable,playable,2022-10-06 20:47:39.000 -"Shaolin vs Wutang : Eastern Heroes",01003AB01062C000,deadlock;status-nothing,nothing,2021-03-29 20:38:54.000 -"Shape Of The World0",0100B250009B9600,UE4;status-playable,playable,2021-03-05 16:42:28.000 -"She Remembered Caterpillars",01004F50085F2000,status-playable,playable,2022-08-12 17:45:14.000 -"She Sees Red",01000320110C2000,status-playable;nvdec,playable,2022-09-30 11:30:15.000 -"Shelter Generations",01009EB004CB0000,status-playable,playable,2021-06-04 16:52:39.000 -"Sherlock Holmes: The Devil's Daughter",010020F014DBE000,gpu;status-ingame,ingame,2022-07-11 00:07:26.000 -"Shift Happens",,status-playable,playable,2021-01-05 21:24:18.000 -"SHIFT QUANTUM",,UE4;crash;status-ingame,ingame,2020-11-06 21:54:08.000 -"Shiftlings",01000750084B2000,nvdec;status-playable,playable,2021-03-04 13:49:54.000 -"Shin Megami Tensei III Nocturne HD Remaster",01003B0012DC2000,status-playable,playable,2022-11-03 22:53:27.000 -"Shin Megami Tensei III NOCTURNE HD REMASTER",010045800ED1E000,gpu;status-ingame;Needs Update,ingame,2022-11-03 19:57:01.000 -"Shin Megami Tensei V",010063B012DC6000,status-playable;UE4,playable,2024-02-21 06:30:07.000 -"Shin Megami Tensei V: Vengeance",010069C01AB82000,gpu;status-ingame;vulkan-backend-bug,ingame,2024-07-14 11:28:24.000 -"Shing! (サムライフォース:斬!)",01009050133B4000,status-playable;nvdec,playable,2022-10-22 00:48:54.000 -"Shining Resonance Refrain",01009A5009A9E000,status-playable;nvdec,playable,2022-08-12 18:03:01.000 -"Shinsekai Into the Depths",01004EE0104F6000,status-playable,playable,2022-09-28 14:07:51.000 -"Shio",0100C2F00A568000,status-playable,playable,2021-02-22 16:25:09.000 -"Shipped",,status-playable,playable,2020-11-21 14:22:32.000 -"Ships",01000E800FCB4000,status-playable,playable,2021-06-11 16:14:37.000 -"Shiren the Wanderer: The Tower of Fortune and the Dice of Fate",01007430122D0000,status-playable;nvdec,playable,2022-10-20 11:44:36.000 -"Shiritsu Berubara Gakuen ~Versailles no Bara Re*imagination~",,cpu;crash;status-boots,boots,2020-09-27 19:01:25.000 -"Shiro0",01000244016BAE00,gpu;status-ingame,ingame,2024-01-13 08:54:39.000 -"Shoot 1UP DX",,status-playable,playable,2020-12-13 12:32:47.000 -"Shovel Knight: Specter of Torment",,status-playable,playable,2020-05-30 08:34:17.000 -"Shovel Knight: Treasure Trove",,status-playable,playable,2021-02-14 18:24:39.000 -"Shred!2 - Freeride MTB",,status-playable,playable,2020-05-30 14:34:09.000 -"Shu",,nvdec;status-playable,playable,2020-05-30 09:08:59.000 -"Shut Eye",,status-playable,playable,2020-07-23 18:08:35.000 -"Sid Meier's Civilization VI",010044500C182000,status-playable;ldn-untested,playable,2024-04-08 16:03:40.000 -"Sigi - A Fart for Melusina",01007FC00B674000,status-playable,playable,2021-02-22 16:46:58.000 -"Silence",0100F1400B0D6000,nvdec;status-playable,playable,2021-06-03 14:46:17.000 -"Silent World",,status-playable,playable,2020-08-28 13:45:13.000 -"Silk",010045500DFE2000,nvdec;status-playable,playable,2021-06-10 15:34:37.000 -"SilverStarChess",010016D00A964000,status-playable,playable,2021-05-06 15:25:57.000 -"Simona's Requiem",0100E8C019B36000,gpu;status-ingame,ingame,2023-02-21 18:29:19.000 -"Sin Slayers",01006FE010438000,status-playable,playable,2022-10-20 11:53:52.000 -"Sine Mora EX",01002820036A8000,gpu;status-ingame;online-broken,ingame,2022-08-12 19:36:18.000 -"Singled Out",,online;status-playable,playable,2020-08-03 13:06:18.000 -"Sinless",,nvdec;status-playable,playable,2020-08-09 20:18:55.000 -"SINNER: Sacrifice for Redemption",0100B16009C10000,status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-08-12 20:37:33.000 -"Sir Lovelot",0100E9201410E000,status-playable,playable,2021-04-05 16:21:46.000 -"Skate City",0100134011E32000,status-playable,playable,2022-11-04 11:37:39.000 -"Skee-Ball",,status-playable,playable,2020-11-16 04:44:07.000 -"Skelattack",01001A900F862000,status-playable,playable,2021-06-09 15:26:26.000 -"Skelittle: A Giant Party!!",01008E700F952000,status-playable,playable,2021-06-09 19:08:34.000 -"Skelly Selest",,status-playable,playable,2020-05-30 15:38:18.000 -"Skies of Fury",,status-playable,playable,2020-05-30 16:40:54.000 -"Skullgirls: 2nd Encore",010046B00DE62000,status-playable,playable,2022-09-15 21:21:25.000 -"Skulls of the Shogun: Bone-a-fide Edition",,status-playable,playable,2020-08-31 18:58:12.000 -"Skully",0100D7B011654000,status-playable;nvdec;UE4,playable,2022-10-06 13:52:59.000 -"Sky Force Anniversary",010083100B5CA000,status-playable;online-broken,playable,2022-08-12 20:50:07.000 -"Sky Force Reloaded",,status-playable,playable,2021-01-04 20:06:57.000 -"Sky Gamblers - Afterburner",010003F00CC98000,gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-12 21:04:55.000 -"Sky Gamblers: Storm Raiders",010093D00AC38000,gpu;audio;status-ingame;32-bit,ingame,2022-08-12 21:13:36.000 -"Sky Gamblers: Storm Raiders 2",010068200E96E000,gpu;status-ingame,ingame,2022-09-13 12:24:04.000 -"Sky Racket",,status-playable,playable,2020-09-07 12:22:24.000 -"Sky Ride",0100DDB004F30000,status-playable,playable,2021-02-22 16:53:07.000 -"Sky Rogue",,status-playable,playable,2020-05-30 08:26:28.000 -"Sky: Children of the Light",0100C52011460000,cpu;status-nothing;online-broken,nothing,2023-02-23 10:57:10.000 -"Skybolt Zack",010041C01014E000,status-playable,playable,2021-04-12 18:28:00.000 -"SKYHILL",0100A0A00D1AA000,status-playable,playable,2021-03-05 15:19:11.000 -"Skylanders Imaginators",,crash;services;status-boots,boots,2020-05-30 18:49:18.000 -"SKYPEACE",,status-playable,playable,2020-05-29 14:14:30.000 -"SkyScrappers",,status-playable,playable,2020-05-28 22:11:25.000 -"SkyTime",,slow;status-ingame,ingame,2020-05-30 09:24:51.000 -"SlabWell",01003AD00DEAE000,status-playable,playable,2021-02-22 17:02:51.000 -"Slain",,status-playable,playable,2020-05-29 14:26:16.000 -"Slain Back from Hell",0100BB100AF4C000,status-playable,playable,2022-08-12 23:36:19.000 -"Slay the Spire",010026300BA4A000,status-playable,playable,2023-01-20 15:09:26.000 -"Slayaway Camp: Butcher's Cut",0100501006494000,status-playable;opengl-backend-bug,playable,2022-08-12 23:44:05.000 -"Slayin 2",01004E900EDDA000,gpu;status-ingame,ingame,2024-04-19 16:15:26.000 -"Sleep Tight",01004AC0081DC000,gpu;status-ingame;UE4,ingame,2022-08-13 00:17:32.000 -"Slice Dice & Rice",0100F4500AA4E000,online;status-playable,playable,2021-02-22 17:44:23.000 -"Slide Stars",010010D011E1C000,status-menus;crash,menus,2021-11-25 08:53:43.000 -"Slime-san",,status-playable,playable,2020-05-30 16:15:12.000 -"Slime-san Superslime Edition",,status-playable,playable,2020-05-30 19:08:08.000 -"SMASHING THE BATTLE",01002AA00C974000,status-playable,playable,2021-06-11 15:53:57.000 -"SmileBASIC 4",0100C9100B06A000,gpu;status-menus,menus,2021-07-29 17:35:59.000 -"Smoke and Sacrifice",0100207007EB2000,status-playable,playable,2022-08-14 12:38:27.000 -"Smurfs Kart",01009790186FE000,status-playable,playable,2023-10-18 00:55:00.000 -"Snack World The Dungeon Crawl Gold",0100F2800D46E000,gpu;slow;status-ingame;nvdec;audout,ingame,2022-05-01 21:12:44.000 -"Snake Pass",0100C0F0020E8000,status-playable;nvdec;UE4,playable,2022-01-03 04:31:52.000 -"Sniper Elite 3 Ultimate Edition",010075A00BA14000,status-playable;ldn-untested,playable,2024-04-18 07:47:49.000 -"Sniper Elite 4",010007B010FCC000,gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug,ingame,2024-06-18 17:53:15.000 -"Sniper Elite V2 Remastered",0100BB000A3AA000,slow;status-ingame;nvdec;online-broken;ldn-untested,ingame,2022-08-14 13:23:13.000 -"Snipperclips",0100704000B3A000,status-playable,playable,2022-12-05 12:44:55.000 -"Snipperclips Plus",01008E20047DC000,status-playable,playable,2023-02-14 20:20:13.000 -"SNK 40th Anniversary Collection",01004AB00AEF8000,status-playable,playable,2022-08-14 13:33:15.000 -"SNK HEROINES Tag Team Frenzy",010027F00AD6C000,status-playable;nvdec;online-broken;ldn-untested,playable,2022-08-14 14:19:25.000 -"Snooker 19",01008DA00CBBA000,status-playable;nvdec;online-broken;UE4,playable,2022-09-11 17:43:22.000 -"Snow Moto Racing Freedom",010045300516E000,gpu;status-ingame;vulkan-backend-bug,ingame,2022-08-15 16:05:14.000 -"Snowboarding the Next Phase",0100BE200C34A000,nvdec;status-playable,playable,2021-02-23 12:56:58.000 -"SnowRunner - 0100FBD13AB6000",,services;status-boots;crash,boots,2023-10-07 00:01:16.000 -"Soccer Club Life: Playing Manager",010017B012AFC000,gpu;status-ingame,ingame,2022-10-25 11:59:22.000 -"Soccer Pinball",0100B5000E05C000,UE4;gpu;status-ingame,ingame,2021-06-15 20:56:51.000 -"Soccer Slammers",,status-playable,playable,2020-05-30 07:48:14.000 -"Soccer, Tactics & Glory",010095C00F9DE000,gpu;status-ingame,ingame,2022-09-26 17:15:58.000 -"SOLDAM Drop, Connect, Erase",,status-playable,playable,2020-05-30 09:18:54.000 -"SolDivide for Nintendo Switch",0100590009C38000,32-bit;status-playable,playable,2021-06-09 14:13:03.000 -"Solo: Islands of the Heart",010008600D1AC000,gpu;status-ingame;nvdec,ingame,2022-09-11 17:54:43.000 -"Some Distant Memory",01009EE00E91E000,status-playable,playable,2022-09-15 21:48:19.000 -"Song of Nunu: A League of Legends Story",01004F401BEBE000,status-ingame,ingame,2024-07-12 18:53:44.000 -"Songbird Symphony",0100E5400BF94000,status-playable,playable,2021-02-27 02:44:04.000 -"Songbringer",,status-playable,playable,2020-06-22 10:42:02.000 -"Sonic 1 (2013)",0000000000000000,status-ingame;crash;homebrew,ingame,2024-04-06 18:31:20.000 -"Sonic 2 (2013)",0000000000000000,status-ingame;crash;homebrew,ingame,2024-04-01 16:25:30.000 -"Sonic A.I.R",0000000000000000,status-ingame;homebrew,ingame,2024-04-01 16:25:32.000 -"Sonic CD",0000000000000000,status-ingame;crash;homebrew,ingame,2024-04-01 16:25:31.000 -"Sonic Colors Ultimate [010040E0116B8000]",010040E0116B8000,status-playable,playable,2022-11-12 21:24:26.000 -"Sonic Forces",01001270012B6000,status-playable,playable,2024-07-28 13:11:21.000 -"Sonic Frontiers",01004AD014BF0000,gpu;deadlock;status-ingame;amd-vendor-bug;intel-vendor-bug,ingame,2024-09-05 09:18:53.000 -"Sonic Mania",01009AA000FAA000,status-playable,playable,2020-06-08 17:30:57.000 -"Sonic Mania Plus",01009AA000FAA000,status-playable,playable,2022-01-16 04:09:11.000 -"Sonic Superstars",01008F701C074000,gpu;status-ingame;nvdec,ingame,2023-10-28 17:48:07.000 -"Sonic Superstars Digital Art Book with Mini Digital Soundtrack",010088801C150000,status-playable,playable,2024-08-20 13:26:56.000 -"SONIC X SHADOW GENERATIONS",01005EA01C0FC000,status-ingame;crash,ingame,2025-01-07 04:20:45.000 -"Soul Axiom Rebooted",,nvdec;slow;status-ingame,ingame,2020-09-04 12:41:01.000 -"Soul Searching",,status-playable,playable,2020-07-09 18:39:07.000 -"South Park: The Fractured But Whole",01008F2005154000,slow;status-playable;online-broken,playable,2024-07-08 17:47:28.000 -"Space Blaze",,status-playable,playable,2020-08-30 16:18:05.000 -"Space Cows",,UE4;crash;status-menus,menus,2020-06-15 11:33:20.000 -"SPACE ELITE FORCE",,status-playable,playable,2020-11-27 15:21:05.000 -"Space Pioneer",010047B010260000,status-playable,playable,2022-10-20 12:24:37.000 -"Space Ribbon",010010A009830000,status-playable,playable,2022-08-15 17:17:10.000 -"SpaceCadetPinball",0000000000000000,status-ingame;homebrew,ingame,2024-04-18 19:30:04.000 -"Spacecats with Lasers",0100D9B0041CE000,status-playable,playable,2022-08-15 17:22:44.000 -"Spaceland",,status-playable,playable,2020-11-01 14:31:56.000 -"Sparkle 2",,status-playable,playable,2020-10-19 11:51:39.000 -"Sparkle Unleashed",01000DC007E90000,status-playable,playable,2021-06-03 14:52:15.000 -"Sparkle ZERO",,gpu;slow;status-ingame,ingame,2020-03-23 18:19:18.000 -"Sparklite",01007ED00C032000,status-playable,playable,2022-08-06 11:35:41.000 -"Spartan",0100E6A009A26000,UE4;nvdec;status-playable,playable,2021-03-05 15:53:19.000 -"Speaking Simulator",,status-playable,playable,2020-10-08 13:00:39.000 -"Spectrum",01008B000A5AE000,status-playable,playable,2022-08-16 11:15:59.000 -"Speed 3: Grand Prix",0100F18010BA0000,status-playable;UE4,playable,2022-10-20 12:32:31.000 -"Speed Brawl",,slow;status-playable,playable,2020-09-18 22:08:16.000 -"Speed Limit",01000540139F6000,gpu;status-ingame,ingame,2022-09-02 18:37:40.000 -"Speed Truck Racing",010061F013A0E000,status-playable,playable,2022-10-20 12:57:04.000 -"Spellspire",0100E74007EAC000,status-playable,playable,2022-08-16 11:21:21.000 -"Spelunker Party!",010021F004270000,services;status-boots,boots,2022-08-16 11:25:49.000 -"Spelunky",0100710013ABA000,status-playable,playable,2021-11-20 17:45:03.000 -"Sphinx and the Cursed Mummy™",0100BD500BA94000,gpu;status-ingame;32-bit;opengl,ingame,2024-05-20 06:00:51.000 -"Spider Solitaire",,status-playable,playable,2020-12-16 16:19:30.000 -"Spinch",010076D0122A8000,status-playable,playable,2024-07-12 19:02:10.000 -"Spinny's journey",01001E40136FE000,status-ingame;crash,ingame,2021-11-30 03:39:44.000 -"Spiral Splatter",,status-playable,playable,2020-06-04 14:03:57.000 -"Spirit Hunter: NG",,32-bit;status-playable,playable,2020-12-17 20:38:47.000 -"Spirit of the North",01005E101122E000,status-playable;UE4,playable,2022-09-30 11:40:47.000 -"Spirit Roots",,nvdec;status-playable,playable,2020-07-10 13:33:32.000 -"Spiritfarer",0100BD400DC52000,gpu;status-ingame,ingame,2022-10-06 16:31:38.000 -"SpiritSphere DX",01009D60080B4000,status-playable,playable,2021-07-03 23:37:49.000 -"Spitlings",010042700E3FC000,status-playable;online-broken,playable,2022-10-06 16:42:39.000 -"Splatoon 2",01003BC0000A0000,status-playable;ldn-works;LAN,playable,2024-07-12 19:11:15.000 -"Splatoon 3",0100C2500FC20000,status-playable;ldn-works;opengl-backend-bug;LAN;amd-vendor-bug,playable,2024-08-04 23:49:11.000 -"Splatoon 3: Splatfest World Premiere",0100BA0018500000,gpu;status-ingame;online-broken;demo,ingame,2022-09-19 03:17:12.000 -"SpongeBob SquarePants The Cosmic Shake",01009FB0172F4000,gpu;status-ingame;UE4,ingame,2023-08-01 19:29:53.000 -"SpongeBob SquarePants: Battle for Bikini Bottom - Rehydrated",010062800D39C000,status-playable;online-broken;UE4;ldn-broken;vulkan-backend-bug,playable,2023-08-01 19:29:34.000 -"Spooky Chase",010097C01336A000,status-playable,playable,2022-11-04 12:17:44.000 -"Spooky Ghosts Dot Com",0100C6100D75E000,status-playable,playable,2021-06-15 15:16:11.000 -"Sports Party",0100DE9005170000,nvdec;status-playable,playable,2021-03-05 13:40:42.000 -"Spot The Difference",0100E04009BD4000,status-playable,playable,2022-08-16 11:49:52.000 -"Spot the Differences: Party!",010052100D1B4000,status-playable,playable,2022-08-16 11:55:26.000 -"Spy Alarm",01000E6015350000,services;status-ingame,ingame,2022-12-09 10:12:51.000 -"SpyHack",01005D701264A000,status-playable,playable,2021-04-15 10:53:51.000 -"Spyro Reignited Trilogy",,Needs More Attention;UE4;crash;gpu;nvdec;status-menus,menus,2021-01-22 13:01:56.000 -"Spyro Reignited Trilogy",010077B00E046000,status-playable;nvdec;UE4,playable,2022-09-11 18:38:33.000 -"Squeakers",,status-playable,playable,2020-12-13 12:13:05.000 -"Squidgies Takeover",,status-playable,playable,2020-07-20 22:28:08.000 -"Squidlit",,status-playable,playable,2020-08-06 12:38:32.000 -"STAR OCEAN First Departure R",0100EBF00E702000,nvdec;status-playable,playable,2021-07-05 19:29:16.000 -"STAR OCEAN The Second Story R",010065301A2E0000,status-ingame;crash,ingame,2024-06-01 02:39:59.000 -"Star Renegades",,nvdec;status-playable,playable,2020-12-11 12:19:23.000 -"Star Story: The Horizon Escape",,status-playable,playable,2020-08-11 22:31:38.000 -"Star Trek Prodigy: Supernova",01009DF015776000,status-playable;nvdec;UE4;opengl-backend-bug,playable,2022-10-14 10:18:50.000 -"Star Wars - Knights Of The Old Republic",0100854015868000,gpu;deadlock;status-boots,boots,2024-02-12 10:13:51.000 -"STAR WARS Battlefront Classic Collection",010040701B948000,gpu;status-ingame;vulkan,ingame,2024-07-12 19:24:21.000 -"STAR WARS Episode I: Racer",0100BD100FFBE000,slow;status-playable;nvdec,playable,2022-10-03 16:08:36.000 -"STAR WARS Jedi Knight II Jedi Outcast",0100BB500EACA000,gpu;status-ingame,ingame,2022-09-15 22:51:00.000 -"Star Wars Jedi Knight: Jedi Academy",01008CA00FAE8000,gpu;status-boots,boots,2021-06-16 12:35:30.000 -"Star Wars: Republic Commando",0100FA10115F8000,gpu;status-ingame;32-bit,ingame,2023-10-31 15:57:17.000 -"STAR WARS: The Force Unleashed",0100153014544000,status-playable,playable,2024-05-01 17:41:28.000 -"Star Wars™ Pinball",01006DA00DEAC000,status-playable;online-broken,playable,2022-09-11 18:53:31.000 -"Star-Crossed Myth - The Department of Wishes",01005EB00EA10000,gpu;status-ingame,ingame,2021-06-04 19:34:36.000 -"Star99",0100E6B0115FC000,status-menus;online,menus,2021-11-26 14:18:51.000 -"Stardash",01002100137BA000,status-playable,playable,2021-01-21 16:31:19.000 -"Stardew Valley",0100E65002BB8000,status-playable;online-broken;ldn-untested,playable,2024-02-14 03:11:19.000 -"Starlink: Battle for Atlas",01002CC003FE6000,services-horizon;status-nothing;crash;Needs Update,nothing,2024-05-05 17:25:11.000 -"Starlit Adventures Golden Stars",,status-playable,playable,2020-11-21 12:14:43.000 -"Starship Avenger Operation: Take Back Earth",,status-playable,playable,2021-01-12 15:52:55.000 -"State of Anarchy: Master of Mayhem",,nvdec;status-playable,playable,2021-01-12 19:00:05.000 -"State of Mind",,UE4;crash;status-boots,boots,2020-06-22 22:17:50.000 -"STAY",0100616009082000,crash;services;status-boots,boots,2021-04-23 14:24:52.000 -"STAY COOL, KOBAYASHI-SAN! A RIVER RANSOM STORY",0100B61009C60000,status-playable,playable,2021-01-26 17:37:28.000 -"Steam Prison",01008010118CC000,nvdec;status-playable,playable,2021-04-01 15:34:11.000 -"Steam Tactics",0100AE100DAFA000,status-playable,playable,2022-10-06 16:53:45.000 -"Steamburg",,status-playable,playable,2021-01-13 08:42:01.000 -"SteamWorld Dig",01009320084A4000,status-playable,playable,2024-08-19 12:12:23.000 -"SteamWorld Dig 2",0100CA9002322000,status-playable,playable,2022-12-21 19:25:42.000 -"SteamWorld Quest",,nvdec;status-playable,playable,2020-11-09 13:10:04.000 -"Steel Assault",01001C6014772000,status-playable,playable,2022-12-06 14:48:30.000 -"Steins;Gate Elite",,status-playable,playable,2020-08-04 07:33:32.000 -"STEINS;GATE: My Darling's Embrace",0100CB400E9BC000,status-playable;nvdec,playable,2022-11-20 16:48:34.000 -"Stela",01002DE01043E000,UE4;status-playable,playable,2021-06-15 13:28:34.000 -"Stellar Interface",01005A700C954000,status-playable,playable,2022-10-20 13:44:33.000 -"STELLATUM",0100BC800EDA2000,gpu;status-playable,playable,2021-03-07 16:30:23.000 -"Steredenn",,status-playable,playable,2021-01-13 09:19:42.000 -"Stern Pinball Arcade",0100AE0006474000,status-playable,playable,2022-08-16 14:24:41.000 -"Stikbold! A Dodgeball Adventure DELUXE",,status-playable,playable,2021-01-11 20:12:54.000 -"Stitchy in Tooki Trouble",010077B014518000,status-playable,playable,2021-05-06 16:25:53.000 -"STONE",010070D00F640000,status-playable;UE4,playable,2022-09-30 11:53:32.000 -"Stories Untold",010074400F6A8000,status-playable;nvdec,playable,2022-12-22 01:08:46.000 -"Storm Boy",010040D00BCF4000,status-playable,playable,2022-10-20 14:15:06.000 -"Storm in a Teacup",0100B2300B932000,gpu;status-ingame,ingame,2021-11-06 02:03:19.000 -"Story of a Gladiator",,status-playable,playable,2020-07-29 15:08:18.000 -"STORY OF SEASONS Pioneers of Olive [ 牧場物語 オリーブタウンと希望の大地 ]",010017301007E000,status-playable,playable,2021-03-18 11:42:19.000 -"Story of Seasons: Friends of Mineral Town",0100ED400EEC2000,status-playable,playable,2022-10-03 16:40:31.000 -"Stranded Sails: Explorers of the Cursed Islands - 010078D00E8F4000",010078D00E8F4000,slow;status-playable;nvdec;UE4,playable,2022-09-16 11:58:38.000 -"Strange Field Football",01000A6013F86000,status-playable,playable,2022-11-04 12:25:57.000 -"Stranger Things 3: The Game",,status-playable,playable,2021-01-11 17:44:09.000 -"Strawberry Vinegar",0100D7E011C64000,status-playable;nvdec,playable,2022-12-05 16:25:40.000 -"Stray",010075101EF84000,status-ingame;crash,ingame,2025-01-07 04:03:00.000 -"Street Fighter 30th Anniversary Collection",0100024008310000,status-playable;online-broken;ldn-partial,playable,2022-08-20 16:50:47.000 -"Street Outlaws: The List",010012400D202000,nvdec;status-playable,playable,2021-06-11 12:15:32.000 -"Street Power Soccer",,UE4;crash;status-boots,boots,2020-11-21 12:28:57.000 -"Streets of Rage 4",,nvdec;online;status-playable,playable,2020-07-07 21:21:22.000 -"Strife: Veteran Edition",0100BDE012928000,gpu;status-ingame,ingame,2022-01-15 05:10:42.000 -"Strike Force - War on Terror",010039100DACC000,status-menus;crash;Needs Update,menus,2021-11-24 08:08:20.000 -"Strike Suit Zero: Director's Cut",010072500D52E000,crash;status-boots,boots,2021-04-23 17:15:14.000 -"StrikeForce Kitty",,nvdec;status-playable,playable,2020-07-29 16:22:15.000 -"STRIKERS1945 for Nintendo Switch",0100FF5005B76000,32-bit;status-playable,playable,2021-06-03 19:35:04.000 -"STRIKERS1945II for Nintendo Switch",0100720008ED2000,32-bit;status-playable,playable,2021-06-03 19:43:00.000 -"Struggling",,status-playable,playable,2020-10-15 20:37:03.000 -"Stunt Kite Party",0100AF000B4AE000,nvdec;status-playable,playable,2021-01-25 17:16:56.000 -"STURMWIND EX",0100C5500E7AE000,audio;32-bit;status-playable,playable,2022-09-16 12:01:39.000 -"Sub Level Zero: Redux",0100E6400BCE8000,status-playable,playable,2022-09-16 12:30:03.000 -"Subarashiki Kono Sekai -Final Remix-",,services;slow;status-ingame,ingame,2020-02-10 16:21:51.000 -"Subdivision Infinity DX",010001400E474000,UE4;crash;status-boots,boots,2021-03-03 14:26:46.000 -"Submerged",0100EDA00D866000,status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-08-16 15:17:01.000 -"Subnautica",0100429011144000,status-playable;vulkan-backend-bug,playable,2022-11-04 13:07:29.000 -"Subnautica Below Zero",010014C011146000,status-playable,playable,2022-12-23 14:15:13.000 -"Suguru Nature",0100BF9012AC6000,crash;status-ingame,ingame,2021-07-29 11:36:27.000 -"Suicide Guy",01005CD00A2A2000,status-playable,playable,2021-01-26 13:13:54.000 -"Suicide Guy: Sleepin' Deeply",0100DE000C2E4000,status-ingame;Needs More Attention,ingame,2022-09-20 23:45:25.000 -"Sumire",01003D50126A4000,status-playable,playable,2022-11-12 13:40:43.000 -"Summer in Mara",0100A130109B2000,nvdec;status-playable,playable,2021-03-06 14:10:38.000 -"Summer Sweetheart",01004E500DB9E000,status-playable;nvdec,playable,2022-09-16 12:51:46.000 -"Sunblaze",0100BFE014476000,status-playable,playable,2022-11-12 13:59:23.000 -"Sundered: Eldritch Edition",01002D3007962000,gpu;status-ingame,ingame,2021-06-07 11:46:00.000 -"Super Beat Sports",0100F7000464A000,status-playable;ldn-untested,playable,2022-08-16 16:05:50.000 -"Super Blood Hockey",,status-playable,playable,2020-12-11 20:01:41.000 -"Super Bomberman R",01007AD00013E000,status-playable;nvdec;online-broken;ldn-works,playable,2022-08-16 19:19:14.000 -"SUPER BOMBERMAN R 2",0100B87017D94000,deadlock;status-boots,boots,2023-09-29 13:19:51.000 -"Super Cane Magic ZERO",0100D9B00DB5E000,status-playable,playable,2022-09-12 15:33:46.000 -"Super Chariot",010065F004E5E000,status-playable,playable,2021-06-03 13:19:01.000 -"SUPER DRAGON BALL HEROES WORLD MISSION",0100E5E00C464000,status-playable;nvdec;online-broken,playable,2022-08-17 12:56:30.000 -"Super Dungeon Tactics",010023100B19A000,status-playable,playable,2022-10-06 17:40:40.000 -"Super Inefficient Golf",010056800B534000,status-playable;UE4,playable,2022-08-17 15:53:45.000 -"Super Jumpy Ball",,status-playable,playable,2020-07-04 18:40:36.000 -"Super Kickers League",0100196009998000,status-playable,playable,2021-01-26 13:36:48.000 -"Super Kirby Clash",01003FB00C5A8000,status-playable;ldn-works,playable,2024-07-30 18:21:55.000 -"Super Korotama",010000D00F81A000,status-playable,playable,2021-06-06 19:06:22.000 -"Super Loop Drive",01003E300FCAE000,status-playable;nvdec;UE4,playable,2022-09-22 10:58:05.000 -"Super Mario 3D All-Stars",010049900F546000,services-horizon;slow;status-ingame;vulkan;amd-vendor-bug,ingame,2024-05-07 02:38:16.000 -"Super Mario 3D World + Bowser's Fury",010028600EBDA000,status-playable;ldn-works,playable,2024-07-31 10:45:37.000 -"Super Mario 64",054507E0B7552000,status-ingame;homebrew,ingame,2024-03-20 16:57:27.000 -"Super Mario Bros. 35",0100277011F1A000,status-menus;online-broken,menus,2022-08-07 16:27:25.000 -"Super Mario Bros. Wonder",010015100B514000,status-playable;amd-vendor-bug,playable,2024-09-06 13:21:21.000 -"Super Mario Maker 2",01009B90006DC000,status-playable;online-broken;ldn-broken,playable,2024-08-25 11:05:19.000 -"Super Mario Odyssey",0100000000010000,status-playable;nvdec;intel-vendor-bug;mac-bug,playable,2024-08-25 01:32:34.000 -"Super Mario Party",010036B0034E4000,gpu;status-ingame;Needs Update;ldn-works,ingame,2024-06-21 05:10:16.000 -"Super Mario RPG",0100BC0018138000,gpu;audio;status-ingame;nvdec,ingame,2024-06-19 17:43:42.000 -"Super Mario World",0000000000000000,status-boots;homebrew,boots,2024-06-13 01:40:31.000 -"Super Meat Boy",,services;status-playable,playable,2020-04-02 23:10:07.000 -"Super Meat Boy Forever",01009C200D60E000,gpu;status-boots,boots,2021-04-26 14:25:39.000 -"Super Mega Space Blaster Special Turbo",,online;status-playable,playable,2020-08-06 12:13:25.000 -"Super Monkey Ball Banana Rumble",010031F019294000,status-playable,playable,2024-06-28 10:39:18.000 -"Super Monkey Ball: Banana Blitz HD",0100B2A00E1E0000,status-playable;online-broken,playable,2022-09-16 13:16:25.000 -"Super Mutant Alien Assault",,status-playable,playable,2020-06-07 23:32:45.000 -"Super Neptunia RPG",01004D600AC14000,status-playable;nvdec,playable,2022-08-17 16:38:52.000 -"Super Nintendo Entertainment System - Nintendo Switch Online",,status-playable,playable,2021-01-05 00:29:48.000 -"Super One More Jump",0100284007D6C000,status-playable,playable,2022-08-17 16:47:47.000 -"Super Punch Patrol",01001F90122B2000,status-playable,playable,2024-07-12 19:49:02.000 -"Super Putty Squad",0100331005E8E000,gpu;status-ingame;32-bit,ingame,2024-04-29 15:51:54.000 -"SUPER ROBOT WARS T",,online;status-playable,playable,2021-03-25 11:00:40.000 -"SUPER ROBOT WARS V",,online;status-playable,playable,2020-06-23 12:56:37.000 -"SUPER ROBOT WARS X",,online;status-playable,playable,2020-08-05 19:18:51.000 -"Super Saurio Fly",,nvdec;status-playable,playable,2020-08-06 13:12:14.000 -"Super Skelemania",,status-playable,playable,2020-06-07 22:59:50.000 -"Super Smash Bros. Ultimate",01006A800016E000,gpu;status-ingame;crash;nvdec;ldn-works;intel-vendor-bug,ingame,2024-09-14 23:05:21.000 -"Super Soccer Blast",0100D61012270000,gpu;status-ingame,ingame,2022-02-16 08:39:12.000 -"Super Sportmatchen",0100A9300A4AE000,status-playable,playable,2022-08-19 12:34:40.000 -"Super Street: Racer",0100FB400F54E000,status-playable;UE4,playable,2022-09-16 13:43:14.000 -"Super Tennis Blast - 01000500DB50000",,status-playable,playable,2022-08-19 16:20:48.000 -"Super Toy Cars 2",0100C6800D770000,gpu;regression;status-ingame,ingame,2021-03-02 20:15:15.000 -"Super Volley Blast",010035B00B3F0000,status-playable,playable,2022-08-19 18:14:40.000 -"Superbeat: Xonic EX",0100FF60051E2000,status-ingame;crash;nvdec,ingame,2022-08-19 18:54:40.000 -"SuperEpic: The Entertainment War",0100630010252000,status-playable,playable,2022-10-13 23:02:48.000 -"Superhot",01001A500E8B4000,status-playable,playable,2021-05-05 19:51:30.000 -"Superliminal",,status-playable,playable,2020-09-03 13:20:50.000 -"Supermarket Shriek",0100C01012654000,status-playable,playable,2022-10-13 23:19:20.000 -"Supraland",0100A6E01201C000,status-playable;nvdec;UE4;opengl-backend-bug,playable,2022-10-14 09:49:11.000 -"Survive! Mr. Cube",010029A00AEB0000,status-playable,playable,2022-10-20 14:44:47.000 -"SUSHI REVERSI",01005AB01119C000,status-playable,playable,2021-06-11 19:26:58.000 -"Sushi Striker: The Way of Sushido",,nvdec;status-playable,playable,2020-06-26 20:49:11.000 -"Sweet Witches",0100D6D00EC2C000,status-playable;nvdec,playable,2022-10-20 14:56:37.000 -"Swimsanity!",010049D00C8B0000,status-menus;online,menus,2021-11-26 14:27:16.000 -"SWORD ART ONLINE: FATAL BULLET COMPLETE EDITION",01005DF00DC26000,UE4;gpu;online;status-ingame,ingame,2021-06-09 16:58:50.000 -"SWORD ART ONLINE: Hollow Realization Deluxe Edition",01001B600D1D6000,status-playable;nvdec,playable,2022-08-19 19:19:15.000 -"Sword of the Guardian",,status-playable,playable,2020-07-16 12:24:39.000 -"Sword of the Necromancer",0100E4701355C000,status-ingame;crash,ingame,2022-12-10 01:28:39.000 -"Syberia 1 & 2",01004BB00421E000,status-playable,playable,2021-12-24 12:06:25.000 -"Syberia 2",010028C003FD6000,gpu;status-ingame,ingame,2022-08-24 12:43:03.000 -"Syberia 3",0100CBE004E6C000,nvdec;status-playable,playable,2021-01-25 16:15:12.000 -"Sydney Hunter and the Curse of the Mayan",,status-playable,playable,2020-06-15 12:15:57.000 -"SYNAPTIC DRIVE",,online;status-playable,playable,2020-09-07 13:44:05.000 -"Synergia",01009E700F448000,status-playable,playable,2021-04-06 17:58:04.000 -"SYNTHETIK: Ultimate",01009BF00E7D2000,gpu;status-ingame;crash,ingame,2022-08-30 03:19:25.000 -"Table Top Racing World Tour Nitro Edition",,status-playable,playable,2020-04-05 23:21:30.000 -"Tactical Mind",01000F20083A8000,status-playable,playable,2021-01-25 18:05:00.000 -"Tactical Mind 2",,status-playable,playable,2020-07-01 23:11:07.000 -"Tactics Ogre Reborn",0100E12013C1A000,status-playable;vulkan-backend-bug,playable,2024-04-09 06:21:35.000 -"Tactics V: ""Obsidian Brigade",01007C7006AEE000,status-playable,playable,2021-02-28 15:09:42.000 -"Taiko no Tatsujin Rhythmic Adventure Pack",,status-playable,playable,2020-12-03 07:28:26.000 -"Taiko no Tatsujin: Drum 'n' Fun!",01002C000B552000,status-playable;online-broken;ldn-broken,playable,2023-05-20 15:10:12.000 -"Taiko no Tatsujin: Rhythm Festival",0100BCA0135A0000,status-playable,playable,2023-11-13 13:16:34.000 -"Taiko Risshiden V DX",0100346017304000,status-nothing;crash,nothing,2022-06-06 16:25:31.000 -"Taimumari: Complete Edition",010040A00EA26000,status-playable,playable,2022-12-06 13:34:49.000 -"Tales from the Borderlands",0100F0C011A68000,status-playable;nvdec,playable,2022-10-25 18:44:14.000 -"Tales of the Tiny Planet",0100408007078000,status-playable,playable,2021-01-25 15:47:41.000 -"Tales of Vesperia: Definitive Edition",01002C0008E52000,status-playable,playable,2024-09-28 03:20:47.000 -"Tamashii",010012800EE3E000,status-playable,playable,2021-06-10 15:26:20.000 -"Tamiku",010008A0128C4000,gpu;status-ingame,ingame,2021-06-15 20:06:55.000 -"Tangledeep",,crash;status-boots,boots,2021-01-05 04:08:41.000 -"TaniNani",01007DB010D2C000,crash;kernel;status-nothing,nothing,2021-04-08 03:06:44.000 -"Tank Mechanic Simulator",,status-playable,playable,2020-12-11 15:10:45.000 -"Tanuki Justice",01007A601318C000,status-playable;opengl,playable,2023-02-21 18:28:10.000 -"Tanzia",01004DF007564000,status-playable,playable,2021-06-07 11:10:25.000 -"Task Force Kampas",,status-playable,playable,2020-11-30 14:44:15.000 -"Taxi Chaos",0100B76011DAA000,slow;status-playable;online-broken;UE4,playable,2022-10-25 19:13:00.000 -"Tcheco in the Castle of Lucio",,status-playable,playable,2020-06-27 13:35:43.000 -"Team Sonic Racing",010092B0091D0000,status-playable;online-broken;ldn-works,playable,2024-02-05 15:05:27.000 -"Teenage Mutant Ninja Turtles: Shredder's Revenge",0100FE701475A000,deadlock;status-boots;crash,boots,2024-09-28 09:31:39.000 -"Teenage Mutant Ninja Turtles: Splintered Fate",01005CF01E784000,status-playable,playable,2024-08-03 13:50:42.000 -"Teenage Mutant Ninja Turtles: The Cowabunga Collection",0100FDB0154E4000,status-playable,playable,2024-01-22 19:39:04.000 -"Telling Lies",,status-playable,playable,2020-10-23 21:14:51.000 -"Temtem",0100C8B012DEA000,status-menus;online-broken,menus,2022-12-17 17:36:11.000 -"TENGAI for Nintendo Switch",,32-bit;status-playable,playable,2020-11-25 19:52:26.000 -"Tennis",,status-playable,playable,2020-06-01 20:50:36.000 -"Tennis in the Face",01002970080AA000,status-playable,playable,2022-08-22 14:10:54.000 -"Tennis World Tour",0100092006814000,status-playable;online-broken,playable,2022-08-22 14:27:10.000 -"Tennis World Tour 2",0100950012F66000,status-playable;online-broken,playable,2022-10-14 10:43:16.000 -"Terraria",0100E46006708000,status-playable;online-broken,playable,2022-09-12 16:14:57.000 -"TERROR SQUID",010070C00FB56000,status-playable;online-broken,playable,2023-10-30 22:29:29.000 -"TERRORHYTHM (TRRT)",010043700EB68000,status-playable,playable,2021-02-27 13:18:14.000 -"Tesla vs Lovecraft",0100FBC007EAE000,status-playable,playable,2023-11-21 06:19:36.000 -"Teslagrad",01005C8005F34000,status-playable,playable,2021-02-23 14:41:02.000 -"Tested on Humans: Escape Room",01006F701507A000,status-playable,playable,2022-11-12 14:42:52.000 -"Testra's Escape",,status-playable,playable,2020-06-03 18:21:14.000 -"TETRA for Nintendo Switch",,status-playable,playable,2020-06-26 20:49:55.000 -"TETRIS 99",010040600C5CE000,gpu;status-ingame;online-broken;ldn-untested,ingame,2024-05-02 16:36:41.000 -"Tetsumo Party",,status-playable,playable,2020-06-09 22:39:55.000 -"The Adventure Pals",01008ED0087A4000,status-playable,playable,2022-08-22 14:48:52.000 -"The Adventures of 00 Dilly",,status-playable,playable,2020-12-30 19:32:29.000 -"The Adventures of Elena Temple",,status-playable,playable,2020-06-03 23:15:35.000 -"The Alliance Alive HD Remastered",010045A00E038000,nvdec;status-playable,playable,2021-03-07 15:43:45.000 -"The Almost Gone",,status-playable,playable,2020-07-05 12:33:07.000 -"The Bard's Tale ARPG: Remastered and Resnarkled",0100CD500DDAE000,gpu;status-ingame;nvdec;online-working,ingame,2024-07-18 12:52:01.000 -"The Battle Cats Unite!",01001E50141BC000,deadlock;status-ingame,ingame,2021-12-14 21:38:34.000 -"The Big Journey",010089600E66A000,status-playable,playable,2022-09-16 14:03:08.000 -"The Binding of Isaac: Afterbirth+",010021C000B6A000,status-playable,playable,2021-04-26 14:11:56.000 -"The Bluecoats: North & South",,nvdec;status-playable,playable,2020-12-10 21:22:29.000 -"The Book of Unwritten Tales 2",010062500BFC0000,status-playable,playable,2021-06-09 14:42:53.000 -"The Bridge",,status-playable,playable,2020-06-03 13:53:26.000 -"The Bug Butcher",,status-playable,playable,2020-06-03 12:02:04.000 -"The Bunker",01001B40086E2000,status-playable;nvdec,playable,2022-09-16 14:24:05.000 -"The Caligula Effect: Overdose",,UE4;gpu;status-ingame,ingame,2021-01-04 11:07:50.000 -"The Childs Sight",010066800E9F8000,status-playable,playable,2021-06-11 19:04:56.000 -"The Coma 2: Vicious Sisters",,gpu;status-ingame,ingame,2020-06-20 12:51:51.000 -"The Coma: Recut",,status-playable,playable,2020-06-03 15:11:23.000 -"The Complex",01004170113D4000,status-playable;nvdec,playable,2022-09-28 14:35:41.000 -"The Copper Canyon Dixie Dash",01000F20102AC000,status-playable;UE4,playable,2022-09-29 11:42:29.000 -"The Count Lucanor",01000850037C0000,status-playable;nvdec,playable,2022-08-22 15:26:37.000 -"The Cruel King and the Great Hero",0100EBA01548E000,gpu;services;status-ingame,ingame,2022-12-02 07:02:08.000 -"The Dark Crystal",,status-playable,playable,2020-08-11 13:43:41.000 -"The Darkside Detective",,status-playable,playable,2020-06-03 22:16:18.000 -"The Elder Scrolls V: Skyrim",01000A10041EA000,gpu;status-ingame;crash,ingame,2024-07-14 03:21:31.000 -"The End is Nigh",,status-playable,playable,2020-06-01 11:26:45.000 -"The Escapists 2",,nvdec;status-playable,playable,2020-09-24 12:31:31.000 -"The Escapists: Complete Edition",01001B700BA7C000,status-playable,playable,2021-02-24 17:50:31.000 -"The Executioner",0100C2E0129A6000,nvdec;status-playable,playable,2021-01-23 00:31:28.000 -"The Experiment: Escape Room",01006050114D4000,gpu;status-ingame,ingame,2022-09-30 13:20:35.000 -"The Eyes of Ara",0100B5900DFB2000,status-playable,playable,2022-09-16 14:44:06.000 -"The Fall",,gpu;status-ingame,ingame,2020-05-31 23:31:16.000 -"The Fall Part 2: Unbound",,status-playable,playable,2021-11-06 02:18:08.000 -"The Final Station",0100CDC00789E000,status-playable;nvdec,playable,2022-08-22 15:54:39.000 -"The First Tree",010098800A1E4000,status-playable,playable,2021-02-24 15:51:05.000 -"The Flame in the Flood: Complete Edition",0100C38004DCC000,gpu;status-ingame;nvdec;UE4,ingame,2022-08-22 16:23:49.000 -"The Forbidden Arts - 01007700D4AC000",,status-playable,playable,2021-01-26 16:26:24.000 -"The friends of Ringo Ishikawa",010030700CBBC000,status-playable,playable,2022-08-22 16:33:17.000 -"The Gardener and the Wild Vines",01006350148DA000,gpu;status-ingame,ingame,2024-04-29 16:32:10.000 -"The Gardens Between",0100B13007A6A000,status-playable,playable,2021-01-29 16:16:53.000 -"The Great Ace Attorney Chronicles",010036E00FB20000,status-playable,playable,2023-06-22 21:26:29.000 -"The Great Perhaps",,status-playable,playable,2020-09-02 15:57:04.000 -"THE GRISAIA TRILOGY",01003b300e4aa000,status-playable,playable,2021-01-31 15:53:59.000 -"The Hong Kong Massacre",,crash;status-ingame,ingame,2021-01-21 12:06:56.000 -"The House of Da Vinci",,status-playable,playable,2021-01-05 14:17:19.000 -"The House of Da Vinci 2",,status-playable,playable,2020-10-23 20:47:17.000 -"The Infectious Madness of Doctor Dekker",01008940086E0000,status-playable;nvdec,playable,2022-08-22 16:45:01.000 -"The Inner World",,nvdec;status-playable,playable,2020-06-03 21:22:29.000 -"The Inner World - The Last Wind Monk",,nvdec;status-playable,playable,2020-11-16 13:09:40.000 -"The Jackbox Party Pack",0100AE5003EE6000,status-playable;online-working,playable,2023-05-28 09:28:40.000 -"The Jackbox Party Pack 2",010015D003EE4000,status-playable;online-working,playable,2022-08-22 18:23:40.000 -"The Jackbox Party Pack 3",0100CC80013D6000,slow;status-playable;online-working,playable,2022-08-22 18:41:06.000 -"The Jackbox Party Pack 4",0100E1F003EE8000,status-playable;online-working,playable,2022-08-22 18:56:34.000 -"The Journey Down: Chapter One",010052C00B184000,nvdec;status-playable,playable,2021-02-24 13:32:41.000 -"The Journey Down: Chapter Three",01006BC00B188000,nvdec;status-playable,playable,2021-02-24 13:45:27.000 -"The Journey Down: Chapter Two",,nvdec;status-playable,playable,2021-02-24 13:32:13.000 -"The King's Bird",010020500BD98000,status-playable,playable,2022-08-22 19:07:46.000 -"The Knight & the Dragon",010031B00DB34000,gpu;status-ingame,ingame,2023-08-14 10:31:43.000 -"The Language of Love",,Needs Update;crash;status-nothing,nothing,2020-12-03 17:54:00.000 -"The Lara Croft Collection",010079C017F5E000,services-horizon;deadlock;status-nothing,nothing,2024-07-12 22:45:51.000 -"The Last Campfire",0100449011506000,status-playable,playable,2022-10-20 16:44:19.000 -"The Last Dead End",0100AAD011592000,gpu;status-ingame;UE4,ingame,2022-10-20 16:59:44.000 -"THE LAST REMNANT Remastered",0100AC800D022000,status-playable;nvdec;UE4,playable,2023-02-09 17:24:44.000 -"The Legend of Dark Witch",,status-playable,playable,2020-07-12 15:18:33.000 -"The Legend of Heroes: Trails from Zero",01001920156C2000,gpu;status-ingame;mac-bug,ingame,2024-09-14 21:41:41.000 -"The Legend of Heroes: Trails of Cold Steel III",,status-playable,playable,2020-12-16 10:59:18.000 -"The Legend of Heroes: Trails of Cold Steel III Demo",01009B101044C000,demo;nvdec;status-playable,playable,2021-04-23 01:07:32.000 -"The Legend of Heroes: Trails of Cold Steel IV",0100D3C010DE8000,nvdec;status-playable,playable,2021-04-23 14:01:05.000 -"THE LEGEND OF HEROES: ZERO NO KISEKI KAI [英雄傳說 零之軌跡:改]",01005E5013862000,status-nothing;crash,nothing,2021-09-30 14:41:07.000 -"The Legend of Zelda Echoes of Wisdom",01008CF01BAAC000,status-playable;nvdec;ASTC;intel-vendor-bug,playable,2024-10-01 14:11:01.000 -"The Legend of Zelda: Breath of the Wild",01007EF00011E000,gpu;status-ingame;amd-vendor-bug;mac-bug,ingame,2024-09-23 19:35:46.000 -"The Legend of Zelda: Breath of the Wild Demo",0100509005AF2000,status-ingame;demo,ingame,2022-12-24 05:02:58.000 -"The Legend of Zelda: Link's Awakening",01006BB00C6F0000,gpu;status-ingame;nvdec;mac-bug,ingame,2023-08-09 17:37:40.000 -"The Legend of Zelda: Skyward Sword HD",01002DA013484000,gpu;status-ingame,ingame,2024-06-14 16:48:29.000 -"The Legend of Zelda: Tears of the Kingdom",0100F2C0115B6000,gpu;status-ingame;amd-vendor-bug;intel-vendor-bug;mac-bug,ingame,2024-08-24 12:38:30.000 -"The LEGO Movie 2 - Videogame",0100A4400BE74000,status-playable,playable,2023-03-01 11:23:37.000 -"The LEGO NINJAGO Movie Video Game",01007FC00206E000,status-nothing;crash,nothing,2022-08-22 19:12:53.000 -"The Liar Princess and the Blind Prince",010064B00B95C000,audio;slow;status-playable,playable,2020-06-08 21:23:28.000 -"The Lion's Song",0100735004898000,status-playable,playable,2021-06-09 15:07:16.000 -"The Little Acre",0100A5000D590000,nvdec;status-playable,playable,2021-03-02 20:22:27.000 -"The Long Dark",01007A700A87C000,status-playable,playable,2021-02-21 14:19:52.000 -"The Long Reach",010052B003A38000,nvdec;status-playable,playable,2021-02-24 14:09:48.000 -"The Long Return",,slow;status-playable,playable,2020-12-10 21:05:10.000 -"The Longest Five Minutes",0100CE1004E72000,gpu;status-boots,boots,2023-02-19 18:33:11.000 -"The Longing",0100F3D0122C2000,gpu;status-ingame,ingame,2022-11-12 15:00:58.000 -"The Lord of the Rings: Adventure Card Game",010085A00C5E8000,status-menus;online-broken,menus,2022-09-16 15:19:32.000 -"The Lost Child",01008A000A404000,nvdec;status-playable,playable,2021-02-23 15:44:20.000 -"The Low Road",0100BAB00A116000,status-playable,playable,2021-02-26 13:23:22.000 -"The Mahjong",,Needs Update;crash;services;status-nothing,nothing,2021-04-01 22:06:22.000 -"The Messenger",,status-playable,playable,2020-03-22 13:51:37.000 -"The Midnight Sanctuary",0100DEC00B2BC000,status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-10-03 17:17:32.000 -"The MISSING: J.J. Macfield and the Island of Memories",0100F1B00B456000,status-playable,playable,2022-08-22 19:36:18.000 -"The Mooseman",010033300AC1A000,status-playable,playable,2021-02-24 12:58:57.000 -"The movie The Quintessential Bride -Five Memories Spent with You-",01005E9016BDE000,status-playable,playable,2023-12-14 14:43:43.000 -"The Mummy Demastered",0100496004194000,status-playable,playable,2021-02-23 13:11:27.000 -"The Mystery of the Hudson Case",,status-playable,playable,2020-06-01 11:03:36.000 -"The Next Penelope",01000CF0084BC000,status-playable,playable,2021-01-29 16:26:11.000 -"THE NINJA SAVIORS Return of the Warriors",01001FB00E386000,online;status-playable,playable,2021-03-25 23:48:07.000 -"The Oregon Trail",0100B080184BC000,gpu;status-ingame,ingame,2022-11-25 16:11:49.000 -"The Otterman Empire",0100B0101265C000,UE4;gpu;status-ingame,ingame,2021-06-17 12:27:15.000 -"The Outbound Ghost",01000BC01801A000,status-nothing,nothing,2024-03-02 17:10:58.000 -"The Outer Worlds",0100626011656000,gpu;status-ingame;nvdec;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-10-03 17:55:32.000 -"The Park",,UE4;crash;gpu;status-ingame,ingame,2020-12-18 12:50:07.000 -"The Persistence",010050101127C000,nvdec;status-playable,playable,2021-06-06 19:15:40.000 -"The Pinball Arcade",0100CD300880E000,status-playable;online-broken,playable,2022-08-22 19:49:46.000 -"The Plucky Squire",01006BD018B54000,status-ingame;crash,ingame,2024-09-27 22:32:33.000 -"The Princess Guide",0100E6A00B960000,status-playable,playable,2021-02-24 14:23:34.000 -"The Raven Remastered",010058A00BF1C000,status-playable;nvdec,playable,2022-08-22 20:02:47.000 -"The Red Strings Club",,status-playable,playable,2020-06-01 10:51:18.000 -"The Room",010079400BEE0000,status-playable,playable,2021-04-14 18:57:05.000 -"The Ryuo's Work is Never Done!",010033100EE12000,status-playable,playable,2022-03-29 00:35:37.000 -"The Savior's Gang",01002BA00C7CE000,gpu;status-ingame;nvdec;UE4,ingame,2022-09-21 12:37:48.000 -"The Settlers: New Allies",0100F3200E7CA000,deadlock;status-nothing,nothing,2023-10-25 00:18:05.000 -"The Sexy Brutale",,status-playable,playable,2021-01-06 17:48:28.000 -"The Shapeshifting Detective",,nvdec;status-playable,playable,2021-01-10 13:10:49.000 -"The Sinking City",010028D00BA1A000,status-playable;nvdec;UE4,playable,2022-09-12 16:41:55.000 -"The Spectrum Retreat",010041C00A68C000,status-playable,playable,2022-10-03 18:52:40.000 -"The Stanley Parable: Ultra Deluxe",010029300E5C4000,gpu;status-ingame,ingame,2024-07-12 23:18:26.000 -"The Station",010007F00AF56000,status-playable,playable,2022-09-28 18:15:27.000 -"the StoryTale",0100858010DC4000,status-playable,playable,2022-09-03 13:00:25.000 -"The Stretchers",0100AA400A238000,status-playable;nvdec;UE4,playable,2022-09-16 15:40:58.000 -"The Survivalists",,status-playable,playable,2020-10-27 15:51:13.000 -"The Swindle",010040D00B7CE000,status-playable;nvdec,playable,2022-08-22 20:53:52.000 -"The Swords of Ditto",,slow;status-ingame,ingame,2020-12-06 00:13:12.000 -"The Tiny Bang Story",01009B300D76A000,status-playable,playable,2021-03-05 15:39:05.000 -"The Touryst",0100C3300D8C4000,status-ingame;crash,ingame,2023-08-22 01:32:38.000 -"The Tower of Beatrice",010047300EBA6000,status-playable,playable,2022-09-12 16:51:42.000 -"The Town of Light",010058000A576000,gpu;status-playable,playable,2022-09-21 12:51:34.000 -"The Trail: Frontier Challenge",0100B0E0086F6000,slow;status-playable,playable,2022-08-23 15:10:51.000 -"The Turing Test",0100EA100F516000,status-playable;nvdec,playable,2022-09-21 13:24:07.000 -"The Unicorn Princess",010064E00ECBC000,status-playable,playable,2022-09-16 16:20:56.000 -"The Vanishing of Ethan Carter",0100BCF00E970000,UE4;status-playable,playable,2021-06-09 17:14:47.000 -"The VideoKid",,nvdec;status-playable,playable,2021-01-06 09:28:24.000 -"The Voice",,services;status-menus,menus,2020-07-28 20:48:49.000 -"The Walking Dead",010029200B6AA000,status-playable,playable,2021-06-04 13:10:56.000 -"The Walking Dead: A New Frontier",010056E00B4F4000,status-playable,playable,2022-09-21 13:40:48.000 -"The Walking Dead: Season Two",,status-playable,playable,2020-08-09 12:57:06.000 -"The Walking Dead: The Final Season",010060F00AA70000,status-playable;online-broken,playable,2022-08-23 17:22:32.000 -"The Wanderer: Frankenstein's Creature",,status-playable,playable,2020-07-11 12:49:51.000 -"The Wardrobe: Even Better Edition",01008B200FC6C000,status-playable,playable,2022-09-16 19:14:55.000 -"The Witcher 3: Wild Hunt",01003D100E9C6000,status-playable;nvdec;vulkan-backend-bug;amd-vendor-bug,playable,2024-02-22 12:21:51.000 -"The Wonderful 101: Remastered",0100B1300FF08000,slow;status-playable;nvdec,playable,2022-09-30 13:49:28.000 -"The World Ends With You -Final Remix-",0100C1500B82E000,status-playable;ldn-untested,playable,2022-07-09 01:11:21.000 -"The World Next Door",0100E6200D56E000,status-playable,playable,2022-09-21 14:15:23.000 -"Thea: The Awakening",,status-playable,playable,2021-01-18 15:08:47.000 -"THEATRHYTHM FINAL BAR LINE",010024201834A000,status-playable,playable,2023-02-19 19:58:57.000 -"THEATRHYTHM FINAL BAR LINE",010081B01777C000,status-ingame;Incomplete,ingame,2024-08-05 14:24:55.000 -"They Bleed Pixels",01001C2010D08000,gpu;status-ingame,ingame,2024-08-09 05:52:18.000 -"They Came From the Sky",,status-playable,playable,2020-06-12 16:38:19.000 -"Thief of Thieves",0100CE700F62A000,status-nothing;crash;loader-allocator,nothing,2021-11-03 07:16:30.000 -"Thief Simulator",0100CE400E34E000,status-playable,playable,2023-04-22 04:39:11.000 -"Thimbleweed Park",01009BD003B36000,status-playable,playable,2022-08-24 11:15:31.000 -"Think of the Children",0100F2300A5DA000,deadlock;status-menus,menus,2021-11-23 09:04:45.000 -"This Is the Police",0100066004D68000,status-playable,playable,2022-08-24 11:37:05.000 -"This Is the Police 2",01004C100A04C000,status-playable,playable,2022-08-24 11:49:17.000 -"This Strange Realm of Mine",,status-playable,playable,2020-08-28 12:07:24.000 -"This War of Mine: Complete Edition",0100A8700BC2A000,gpu;status-ingame;32-bit;nvdec,ingame,2022-08-24 12:00:44.000 -"THOTH",,status-playable,playable,2020-08-05 18:35:28.000 -"Thronebreaker: The Witcher Tales",0100E910103B4000,nvdec;status-playable,playable,2021-06-03 16:40:15.000 -"Thumper",01006F6002840000,gpu;status-ingame,ingame,2024-08-12 02:41:07.000 -"Thy Sword",01000AC011588000,status-ingame;crash,ingame,2022-09-30 16:43:14.000 -"Tick Tock: A Tale for Two",,status-menus,menus,2020-07-14 14:49:38.000 -"Tied Together",0100B6D00C2DE000,nvdec;status-playable,playable,2021-04-10 14:03:46.000 -"Timber Tennis Versus",,online;status-playable,playable,2020-10-03 17:07:15.000 -"Time Carnage",01004C500B698000,status-playable,playable,2021-06-16 17:57:28.000 -"Time Recoil",0100F770045CA000,status-playable,playable,2022-08-24 12:44:03.000 -"Timespinner",0100DD300CF3A000,gpu;status-ingame,ingame,2022-08-09 09:39:11.000 -"Timothy and the Mysterious Forest",0100393013A10000,gpu;slow;status-ingame,ingame,2021-06-02 00:42:11.000 -"Tin & Kuna",,status-playable,playable,2020-11-17 12:16:12.000 -"Tiny Gladiators",,status-playable,playable,2020-12-14 00:09:43.000 -"Tiny Hands Adventure",010061A00AE64000,status-playable,playable,2022-08-24 16:07:48.000 -"TINY METAL",010074800741A000,UE4;gpu;nvdec;status-ingame,ingame,2021-03-05 17:11:57.000 -"Tiny Racer",01005D0011A40000,status-playable,playable,2022-10-07 11:13:03.000 -"Tiny Thor",010002401AE94000,gpu;status-ingame,ingame,2024-07-26 08:37:35.000 -"Tinykin",0100A73016576000,gpu;status-ingame,ingame,2023-06-18 12:12:24.000 -"Titan Glory",0100FE801185E000,status-boots,boots,2022-10-07 11:36:40.000 -"Titan Quest",0100605008268000,status-playable;nvdec;online-broken,playable,2022-08-19 21:54:15.000 -"Titans Pinball",,slow;status-playable,playable,2020-06-09 16:53:52.000 -"Tlicolity Eyes - twinkle showtime -",010019500DB1E000,gpu;status-boots,boots,2021-05-29 19:43:44.000 -"To the Moon",,status-playable,playable,2021-03-20 15:33:38.000 -"Toast Time: Smash Up!",,crash;services;status-menus,menus,2020-04-03 12:26:59.000 -"Toby: The Secret Mine",,nvdec;status-playable,playable,2021-01-06 09:22:33.000 -"ToeJam & Earl: Back in the Groove",,status-playable,playable,2021-01-06 22:56:58.000 -"TOHU",0100B5E011920000,slow;status-playable,playable,2021-02-08 15:40:44.000 -"Toki",,nvdec;status-playable,playable,2021-01-06 19:59:23.000 -"TOKYO DARK - REMEMBRANCE -",01003E500F962000,nvdec;status-playable,playable,2021-06-10 20:09:49.000 -"Tokyo Mirage Sessions #FE Encore",0100A9400C9C2000,32-bit;status-playable;nvdec,playable,2022-07-07 09:41:07.000 -"Tokyo School Life",0100E2E00CB14000,status-playable,playable,2022-09-16 20:25:54.000 -"Tomb Raider I-III Remastered",010024601BB16000,gpu;status-ingame;opengl,ingame,2024-09-27 12:32:04.000 -"Tomba! Special Edition",0100D7F01E49C000,services-horizon;status-nothing,nothing,2024-09-15 21:59:54.000 -"Tonight we Riot",0100D400100F8000,status-playable,playable,2021-02-26 15:55:09.000 -"TONY HAWK'S™ PRO SKATER™ 1 + 2",0100CC00102B4000,gpu;status-ingame;Needs Update,ingame,2024-09-24 08:18:14.000 -"Tools Up!",,crash;status-ingame,ingame,2020-07-21 12:58:17.000 -"Toon War",01009EA00E2B8000,status-playable,playable,2021-06-11 16:41:53.000 -"Torchlight 2",,status-playable,playable,2020-07-27 14:18:37.000 -"Torchlight III",010075400DDB8000,status-playable;nvdec;online-broken;UE4,playable,2022-10-14 22:20:17.000 -"TORICKY-S",01007AF011732000,deadlock;status-menus,menus,2021-11-25 08:53:36.000 -"Torn Tales - Rebound Edition",,status-playable,playable,2020-11-01 14:11:59.000 -"Total Arcade Racing",0100A64010D48000,status-playable,playable,2022-11-12 15:12:48.000 -"Totally Reliable Delivery Service",0100512010728000,status-playable;online-broken,playable,2024-09-27 19:32:22.000 -"Touhou Genso Wanderer RELOADED",01004E900B082000,gpu;status-ingame;nvdec,ingame,2022-08-25 11:57:36.000 -"Touhou Kobuto V: Burst Battle",,status-playable,playable,2021-01-11 15:28:58.000 -"Touhou Spell Bubble",,status-playable,playable,2020-10-18 11:43:43.000 -"Tower of Babel",,status-playable,playable,2021-01-06 17:05:15.000 -"Tower of Time",,gpu;nvdec;status-ingame,ingame,2020-07-03 11:11:12.000 -"TowerFall",,status-playable,playable,2020-05-16 18:58:07.000 -"Towertale",,status-playable,playable,2020-10-15 13:56:58.000 -"Townsmen - A Kingdom Rebuilt",010049E00BA34000,status-playable;nvdec,playable,2022-10-14 22:48:59.000 -"Toy Stunt Bike: Tiptop's Trials",01009FF00A160000,UE4;status-playable,playable,2021-04-10 13:56:34.000 -"Tracks - Toybox Edition",0100192010F5A000,UE4;crash;status-nothing,nothing,2021-02-08 15:19:18.000 -"Trailblazers",0100BCA00843A000,status-playable,playable,2021-03-02 20:40:49.000 -"Transcripted",010009F004E66000,status-playable,playable,2022-08-25 12:13:11.000 -"TRANSFORMERS: BATTLEGROUNDS",01005E500E528000,online;status-playable,playable,2021-06-17 18:08:19.000 -"Transistor",,status-playable,playable,2020-10-22 11:28:02.000 -"Travel Mosaics 2: Roman Holiday",0100A8D010BFA000,status-playable,playable,2021-05-26 12:33:16.000 -"Travel Mosaics 3: Tokyo Animated",0100102010BFC000,status-playable,playable,2021-05-26 12:06:27.000 -"Travel Mosaics 4: Adventures in Rio",010096D010BFE000,status-playable,playable,2021-05-26 11:54:58.000 -"Travel Mosaics 5: Waltzing Vienna",01004C4010C00000,status-playable,playable,2021-05-26 11:49:35.000 -"Travel Mosaics 6: Christmas Around the World",0100D520119D6000,status-playable,playable,2021-05-26 00:52:47.000 -"Travel Mosaics 7: Fantastic Berlin -",,status-playable,playable,2021-05-22 18:37:34.000 -"Travel Mosaics: A Paris Tour",01007DB00A226000,status-playable,playable,2021-05-26 12:42:26.000 -"Travis Strikes Again: No More Heroes",010011600C946000,status-playable;nvdec;UE4,playable,2022-08-25 12:36:38.000 -"Treadnauts",,status-playable,playable,2021-01-10 14:57:41.000 -"Trials of Mana",0100D7800E9E0000,status-playable;UE4,playable,2022-09-30 21:50:37.000 -"Trials of Mana Demo",0100E1D00FBDE000,status-playable;nvdec;UE4;demo;vulkan-backend-bug,playable,2022-09-26 18:00:02.000 -"Trials Rising",01003E800A102000,status-playable,playable,2024-02-11 01:36:39.000 -"TRIANGLE STRATEGY",0100CC80140F8000,gpu;status-ingame;Needs Update;UE4;vulkan-backend-bug,ingame,2024-09-25 20:48:37.000 -"Trine",0100D9000A930000,ldn-untested;nvdec;status-playable,playable,2021-06-03 11:28:15.000 -"Trine 2",010064E00A932000,nvdec;status-playable,playable,2021-06-03 11:45:20.000 -"Trine 3: The Artifacts of Power",0100DEC00A934000,ldn-untested;online;status-playable,playable,2021-06-03 12:01:24.000 -"Trine 4: The Nightmare Prince",010055E00CA68000,gpu;status-nothing,nothing,2025-01-07 05:47:46.000 -"Trinity Trigger",01002D7010A54000,status-ingame;crash,ingame,2023-03-03 03:09:09.000 -"Trivial Pursuit Live! 2",0100868013FFC000,status-boots,boots,2022-12-19 00:04:33.000 -"Troll and I",0100F78002040000,gpu;nvdec;status-ingame,ingame,2021-06-04 16:58:50.000 -"Trollhunters: Defenders of Arcadia",,gpu;nvdec;status-ingame,ingame,2020-11-30 13:27:09.000 -"Tropico 6",0100FBE0113CC000,status-playable;nvdec;UE4,playable,2022-10-14 23:21:03.000 -"Trouble Witches Final! Episode 01: Daughters of Amalgam",0100D06018DCA000,status-playable,playable,2024-04-08 15:08:11.000 -"Troubleshooter",,UE4;crash;status-nothing,nothing,2020-10-04 13:46:50.000 -"Trover Saves the Universe",,UE4;crash;status-nothing,nothing,2020-10-03 10:25:27.000 -"Truberbrook",0100E6300D448000,status-playable,playable,2021-06-04 17:08:00.000 -"Truck & Logistics Simulator",0100F2100AA5C000,status-playable,playable,2021-06-11 13:29:08.000 -"Truck Driver",0100CB50107BA000,status-playable;online-broken,playable,2022-10-20 17:42:33.000 -"True Fear: Forsaken Souls - Part 1",,nvdec;status-playable,playable,2020-12-15 21:39:52.000 -"TT Isle of Man",,nvdec;status-playable,playable,2020-06-22 12:25:13.000 -"TT Isle of Man 2",010000400F582000,gpu;status-ingame;nvdec;online-broken,ingame,2022-09-30 22:13:05.000 -"TTV2",,status-playable,playable,2020-11-27 13:21:36.000 -"Tumblestone",,status-playable,playable,2021-01-07 17:49:20.000 -"Turok",010085500D5F6000,gpu;status-ingame,ingame,2021-06-04 13:16:24.000 -"Turok 2: Seeds of Evil",0100CDC00D8D6000,gpu;status-ingame;vulkan,ingame,2022-09-12 17:50:05.000 -"Turrican Flashback - 01004B0130C8000",,status-playable;audout,playable,2021-08-30 10:07:56.000 -"TurtlePop: Journey to Freedom",,status-playable,playable,2020-06-12 17:45:39.000 -"Twin Robots: Ultimate Edition",0100047009742000,status-playable;nvdec,playable,2022-08-25 14:24:03.000 -"Two Point Hospital",010031200E044000,status-ingame;crash;nvdec,ingame,2022-09-22 11:22:23.000 -"TY the Tasmanian Tiger",,32-bit;crash;nvdec;status-menus,menus,2020-12-17 21:15:00.000 -"Tyd wag vir Niemand",010073A00C4B2000,status-playable,playable,2021-03-02 13:39:53.000 -"Type:Rider",,status-playable,playable,2021-01-06 13:12:55.000 -"UBERMOSH:SANTICIDE",,status-playable,playable,2020-11-27 15:05:01.000 -"Ubongo - Deluxe Edition",,status-playable,playable,2021-02-04 21:15:01.000 -"UglyDolls: An Imperfect Adventure",010079000B56C000,status-playable;nvdec;UE4,playable,2022-08-25 14:42:16.000 -"Ultimate Fishing Simulator",010048901295C000,status-playable,playable,2021-06-16 18:38:23.000 -"Ultimate Racing 2D",,status-playable,playable,2020-08-05 17:27:09.000 -"Ultimate Runner",010045200A1C2000,status-playable,playable,2022-08-29 12:52:40.000 -"Ultimate Ski Jumping 2020",01006B601117E000,online;status-playable,playable,2021-03-02 20:54:11.000 -"Ultra Hat Dimension",01002D4012222000,services;audio;status-menus,menus,2021-11-18 09:05:20.000 -"Ultra Hyperball",,status-playable,playable,2021-01-06 10:09:55.000 -"Ultra Street Fighter II: The Final Challengers",01007330027EE000,status-playable;ldn-untested,playable,2021-11-25 07:54:58.000 -"Umineko no Naku Koro ni Saku - うみねこのなく頃に咲 ~猫箱と夢想の交響曲~",01006A300BA2C000,status-playable;audout,playable,2023-05-04 17:25:23.000 -"Unbox: Newbie's Adventure",0100592005164000,status-playable;UE4,playable,2022-08-29 13:12:56.000 -"Uncanny Valley",01002D900C5E4000,nvdec;status-playable,playable,2021-06-04 13:28:45.000 -"Undead and Beyond",010076F011F54000,status-playable;nvdec,playable,2022-10-04 09:11:18.000 -"Under Leaves",01008F3013E4E000,status-playable,playable,2021-05-22 18:13:58.000 -"Undertale",010080B00AD66000,status-playable,playable,2022-08-31 17:31:46.000 -"Unepic",01008F80049C6000,status-playable,playable,2024-01-15 17:03:00.000 -"UnExplored - Unlocked Edition",,status-playable,playable,2021-01-06 10:02:16.000 -"Unhatched",,status-playable,playable,2020-12-11 12:11:09.000 -"Unicorn Overlord",010069401ADB8000,status-playable,playable,2024-09-27 14:04:32.000 -"Unit 4",,status-playable,playable,2020-12-16 18:54:13.000 -"Unknown Fate",,slow;status-ingame,ingame,2020-10-15 12:27:42.000 -"Unlock the King",,status-playable,playable,2020-09-01 13:58:27.000 -"Unlock the King 2",0100A3E011CB0000,status-playable,playable,2021-06-15 20:43:55.000 -"UNO",01005AA00372A000,status-playable;nvdec;ldn-untested,playable,2022-07-28 14:49:47.000 -"Unravel TWO",0100E5D00CC0C000,status-playable;nvdec,playable,2024-05-23 15:45:05.000 -"Unruly Heroes",,status-playable,playable,2021-01-07 18:09:31.000 -"Unspottable",0100B410138C0000,status-playable,playable,2022-10-25 19:28:49.000 -"Untitled Goose Game",,status-playable,playable,2020-09-26 13:18:06.000 -"Unto The End",0100E49013190000,gpu;status-ingame,ingame,2022-10-21 11:13:29.000 -"Urban Flow",,services;status-playable,playable,2020-07-05 12:51:47.000 -"Urban Street Fighting",010054F014016000,status-playable,playable,2021-02-20 19:16:36.000 -"Urban Trial Playground",01001B10068EC000,UE4;nvdec;online;status-playable,playable,2021-03-25 20:56:51.000 -"Urban Trial Tricky",0100A2500EB92000,status-playable;nvdec;UE4,playable,2022-12-06 13:07:56.000 -"Use Your Words",01007C0003AEC000,status-menus;nvdec;online-broken,menus,2022-08-29 17:22:10.000 -"Uta no Prince-sama Amazing Aria & Sweet Serenade LOVE",0100D4300EBF8000,status-nothing;crash;Needs More Attention;Needs Update,nothing,2022-02-09 08:57:44.000 -"Uta no☆Prince-sama♪ Repeat Love",010024200E00A000,status-playable;nvdec,playable,2022-12-09 09:21:51.000 -"Utopia 9 - A Volatile Vacation",,nvdec;status-playable,playable,2020-12-16 17:06:42.000 -"V-Rally 4",010064400B138000,gpu;nvdec;status-ingame,ingame,2021-06-07 19:37:31.000 -"VA-11 HALL-A",0100A6700D66E000,status-playable,playable,2021-02-26 15:05:34.000 -"Vaccine",,nvdec;status-playable,playable,2021-01-06 01:02:07.000 -"Valfaris",010089700F30C000,status-playable,playable,2022-09-16 21:37:24.000 -"Valkyria Chronicles",0100CAF00B744000,status-ingame;32-bit;crash;nvdec,ingame,2022-11-23 20:03:32.000 -"Valkyria Chronicles 4",01005C600AC68000,audout;nvdec;status-playable,playable,2021-06-03 18:12:25.000 -"Valkyria Chronicles 4 Demo",0100FBD00B91E000,slow;status-ingame;demo,ingame,2022-08-29 20:39:07.000 -"Valley",0100E0E00B108000,status-playable;nvdec,playable,2022-09-28 19:27:58.000 -"Vampire Survivors",010089A0197E4000,status-ingame,ingame,2024-06-17 09:57:38.000 -"Vampyr",01000BD00CE64000,status-playable;nvdec;UE4,playable,2022-09-16 22:15:51.000 -"Vandals",01007C500D650000,status-playable,playable,2021-01-27 21:45:46.000 -"Vaporum",010030F00CA1E000,nvdec;status-playable,playable,2021-05-28 14:25:33.000 -"VARIABLE BARRICADE NS",010045C0109F2000,status-playable;nvdec,playable,2022-02-26 15:50:13.000 -"VASARA Collection",0100FE200AF48000,nvdec;status-playable,playable,2021-02-28 15:26:10.000 -"Vasilis",,status-playable,playable,2020-09-01 15:05:35.000 -"Vegas Party",01009CD003A0A000,status-playable,playable,2021-04-14 19:21:41.000 -"Vektor Wars",010098400E39E000,status-playable;online-broken;vulkan-backend-bug,playable,2022-10-04 09:23:46.000 -"Vengeful Guardian: Moonrider",01003A8018E60000,deadlock;status-boots,boots,2024-03-17 23:35:37.000 -"Venture Kid",010095B00DBC8000,crash;gpu;status-ingame,ingame,2021-04-18 16:33:17.000 -"Vera Blanc: Full Moon",,audio;status-playable,playable,2020-12-17 12:09:30.000 -"Very Very Valet",0100379013A62000,status-playable;nvdec,playable,2022-11-12 15:25:51.000 -"Very Very Valet Demo - 01006C8014DDA000",01006C8014DDA000,status-boots;crash;Needs Update;demo,boots,2022-11-12 15:26:13.000 -"Vesta",010057B00712C000,status-playable;nvdec,playable,2022-08-29 21:03:39.000 -"Victor Vran Overkill Edition",0100E81007A06000,gpu;deadlock;status-ingame;nvdec;opengl,ingame,2022-08-30 11:46:56.000 -"Violett",01005880063AA000,nvdec;status-playable,playable,2021-01-28 13:09:36.000 -"Viviette",010037900CB1C000,status-playable,playable,2021-06-11 15:33:40.000 -"Void Bastards",0100D010113A8000,status-playable,playable,2022-10-15 00:04:19.000 -"void* tRrLM(); //Void Terrarium",0100FF7010E7E000,gpu;status-ingame;Needs Update;regression,ingame,2023-02-10 01:13:25.000 -"void* tRrLM2(); //Void Terrarium 2",010078D0175EE000,status-playable,playable,2023-12-21 11:00:41.000 -"Volgarr the Viking",,status-playable,playable,2020-12-18 15:25:50.000 -"Volta-X",0100A7900E79C000,status-playable;online-broken,playable,2022-10-07 12:20:51.000 -"Vostok, Inc.",01004D8007368000,status-playable,playable,2021-01-27 17:43:59.000 -"Voxel Galaxy",0100B1E0100A4000,status-playable,playable,2022-09-28 22:45:02.000 -"Voxel Pirates",0100AFA011068000,status-playable,playable,2022-09-28 22:55:02.000 -"Voxel Sword",0100BFB00D1F4000,status-playable,playable,2022-08-30 14:57:27.000 -"Vroom in the Night Sky",01004E90028A2000,status-playable;Needs Update;vulkan-backend-bug,playable,2023-02-20 02:32:29.000 -"VSR: Void Space Racing",0100C7C00AE6C000,status-playable,playable,2021-01-27 14:08:59.000 -"VtM Coteries of New York",,status-playable,playable,2020-10-04 14:55:22.000 -"Waifu Uncovered",0100B130119D0000,status-ingame;crash,ingame,2023-02-27 01:17:46.000 -"Wanba Warriors",,status-playable,playable,2020-10-04 17:56:22.000 -"Wanderjahr TryAgainOrWalkAway",,status-playable,playable,2020-12-16 09:46:04.000 -"Wanderlust Travel Stories",0100B27010436000,status-playable,playable,2021-04-07 16:09:12.000 -"Wandersong",0100F8A00853C000,nvdec;status-playable,playable,2021-06-04 15:33:34.000 -"Wanna Survive",0100D67013910000,status-playable,playable,2022-11-12 21:15:43.000 -"War Of Stealth - assassin",01004FA01391A000,status-playable,playable,2021-05-22 17:34:38.000 -"War Tech Fighters",010049500DE56000,status-playable;nvdec,playable,2022-09-16 22:29:31.000 -"War Theatre",010084D00A134000,gpu;status-ingame,ingame,2021-06-07 19:42:45.000 -"War Truck Simulator",0100B6B013B8A000,status-playable,playable,2021-01-31 11:22:54.000 -"War-Torn Dreams",,crash;status-nothing,nothing,2020-10-21 11:36:16.000 -"WARBORN",,status-playable,playable,2020-06-25 12:36:47.000 -"Wardogs: Red's Return",010056901285A000,status-playable,playable,2022-11-13 15:29:01.000 -"WarGroove",01000F0002BB6000,status-playable;online-broken,playable,2022-08-31 10:30:45.000 -"Warhammer 40,000: Mechanicus",0100C6000EEA8000,nvdec;status-playable,playable,2021-06-13 10:46:38.000 -"Warhammer 40,000: Space Wolf",0100E5600D7B2000,status-playable;online-broken,playable,2022-09-20 21:11:20.000 -"Warhammer Age of Sigmar: Storm Ground",010031201307A000,status-playable;nvdec;online-broken;UE4,playable,2022-11-13 15:46:14.000 -"Warhammer Quest 2",,status-playable,playable,2020-08-04 15:28:03.000 -"WarioWare: Get It Together!",0100563010E0C000,gpu;status-ingame;opengl-backend-bug,ingame,2024-04-23 01:04:56.000 -"Warioware: Move IT!",010045B018EC2000,status-playable,playable,2023-11-14 00:23:51.000 -"Warlocks 2: God Slayers",,status-playable,playable,2020-12-16 17:36:50.000 -"Warp Shift",,nvdec;status-playable,playable,2020-12-15 14:48:48.000 -"Warparty",,nvdec;status-playable,playable,2021-01-27 18:26:32.000 -"WarriOrb",010032700EAC4000,UE4;status-playable,playable,2021-06-17 15:45:14.000 -"WARRIORS OROCHI 4 ULTIMATE",0100E8500AD58000,status-playable;nvdec;online-broken,playable,2024-08-07 01:50:37.000 -"Wartile Complete Edition",,UE4;crash;gpu;status-menus,menus,2020-12-11 21:56:10.000 -"Wasteland 2: Director's Cut",010039A00BC64000,nvdec;status-playable,playable,2021-01-27 13:34:11.000 -"Water Balloon Mania",,status-playable,playable,2020-10-23 20:20:59.000 -"Way of the Passive Fist",0100BA200C378000,gpu;status-ingame,ingame,2021-02-26 21:07:06.000 -"We should talk.",,crash;status-nothing,nothing,2020-08-03 12:32:36.000 -"Welcome to Hanwell",,UE4;crash;status-boots,boots,2020-08-03 11:54:57.000 -"Welcome to Primrose Lake",0100D7F010B94000,status-playable,playable,2022-10-21 11:30:57.000 -"Wenjia",,status-playable,playable,2020-06-08 11:38:30.000 -"West of Loathing",010031B00A4E8000,status-playable,playable,2021-01-28 12:35:19.000 -"What Remains of Edith Finch",010038900DFE0000,slow;status-playable;UE4,playable,2022-08-31 19:57:59.000 -"Wheel of Fortune [010033600ADE6000]",010033600ADE6000,status-boots;crash;Needs More Attention;nvdec,boots,2023-11-12 20:29:24.000 -"Wheels of Aurelia",0100DFC00405E000,status-playable,playable,2021-01-27 21:59:25.000 -"Where Angels Cry",010027D011C9C000,gpu;status-ingame;nvdec,ingame,2022-09-30 22:24:47.000 -"Where Are My Friends?",0100FDB0092B4000,status-playable,playable,2022-09-21 14:39:26.000 -"Where the Bees Make Honey",,status-playable,playable,2020-07-15 12:40:49.000 -"Whipsey and the Lost Atlas",,status-playable,playable,2020-06-23 20:24:14.000 -"Whispering Willows",010015A00AF1E000,status-playable;nvdec,playable,2022-09-30 22:33:05.000 -"Who Wants to Be a Millionaire?",,crash;status-nothing,nothing,2020-12-11 20:22:42.000 -"Widget Satchel",0100C7800CA06000,status-playable,playable,2022-09-16 22:41:07.000 -"WILD GUNS Reloaded",0100CFC00A1D8000,status-playable,playable,2021-01-28 12:29:05.000 -"Wilmot's Warehouse",010071F00D65A000,audio;gpu;status-ingame,ingame,2021-06-02 17:24:32.000 -"WINDJAMMERS",,online;status-playable,playable,2020-10-13 11:24:25.000 -"Windscape",010059900BA3C000,status-playable,playable,2022-10-21 11:49:42.000 -"Windstorm",,UE4;gpu;nvdec;status-ingame,ingame,2020-12-22 13:17:48.000 -"Windstorm - Ari's Arrival",0100D6800CEAC000,UE4;status-playable,playable,2021-06-07 19:33:19.000 -"Wing of Darkness - 010035B012F2000",,status-playable;UE4,playable,2022-11-13 16:03:51.000 -"Winter Games 2023",0100A4A015FF0000,deadlock;status-menus,menus,2023-11-07 20:47:36.000 -"Witch On The Holy Night",010012A017F18800,status-playable,playable,2023-03-06 23:28:11.000 -"Witch Spring 3 Re:Fine -The Story of the Marionette Witch Eirudy-",0100454012E32000,status-ingame;crash,ingame,2021-08-08 11:56:18.000 -"Witch Thief",01002FC00C6D0000,status-playable,playable,2021-01-27 18:16:07.000 -"Witch's Garden",010061501904E000,gpu;status-ingame;crash;vulkan-backend-bug;opengl-backend-bug,ingame,2023-01-11 02:11:24.000 -"Witcheye",,status-playable,playable,2020-12-14 22:56:08.000 -"Wizard of Legend",0100522007AAA000,status-playable,playable,2021-06-07 12:20:46.000 -"Wizards of Brandel",,status-nothing,nothing,2020-10-14 15:52:33.000 -"Wizards: Wand of Epicosity",0100C7600E77E000,status-playable,playable,2022-10-07 12:32:06.000 -"Wolfenstein II The New Colossus",01009040091E0000,gpu;status-ingame,ingame,2024-04-05 05:39:46.000 -"Wolfenstein: Youngblood",01003BD00CAAE000,status-boots;online-broken,boots,2024-07-12 23:49:20.000 -"Wonder Blade",,status-playable,playable,2020-12-11 17:55:31.000 -"Wonder Boy Anniversary Collection",0100B49016FF0000,deadlock;status-nothing,nothing,2023-04-20 16:01:48.000 -"Wonder Boy Asha in Monster World [ ワンダーボーイ アーシャ・イン・モンスターワールド ]",0100EB2012E36000,status-nothing;crash,nothing,2021-11-03 08:45:06.000 -"Wonder Boy: The Dragon's Trap",0100A6300150C000,status-playable,playable,2021-06-25 04:53:21.000 -"Wondershot",0100F5D00C812000,status-playable,playable,2022-08-31 21:05:31.000 -"Woodle Tree 2",,gpu;slow;status-ingame,ingame,2020-06-04 18:44:00.000 -"Woodsalt",0100288012966000,status-playable,playable,2021-04-06 17:01:48.000 -"Wordify",,status-playable,playable,2020-10-03 09:01:07.000 -"World Conqueror X",,status-playable,playable,2020-12-22 16:10:29.000 -"World Neverland",01008E9007064000,status-playable,playable,2021-01-28 17:44:23.000 -"World of Final Fantasy Maxima",,status-playable,playable,2020-06-07 13:57:23.000 -"World of Goo",010009E001D90000,gpu;status-boots;32-bit;crash;regression,boots,2024-04-12 05:52:14.000 -"World of Goo 2",010061F01DB7C800,status-boots,boots,2024-08-08 22:52:49.000 -"World Soccer Pinball",,status-playable,playable,2021-01-06 00:37:02.000 -"Worldend Syndrome",,status-playable,playable,2021-01-03 14:16:32.000 -"Worlds of Magic: Planar Conquest",010000301025A000,status-playable,playable,2021-06-12 12:51:28.000 -"Worm Jazz",01009CD012CC0000,gpu;services;status-ingame;UE4;regression,ingame,2021-11-10 10:33:04.000 -"Worms W.M.D",01001AE005166000,gpu;status-boots;crash;nvdec;ldn-untested,boots,2023-09-16 21:42:59.000 -"Worse Than Death",010037500C4DE000,status-playable,playable,2021-06-11 16:05:40.000 -"Woven",01006F100EB16000,nvdec;status-playable,playable,2021-06-02 13:41:08.000 -"WRC 8 FIA World Rally Championship",010087800DCEA000,status-playable;nvdec,playable,2022-09-16 23:03:36.000 -"WRC 9 The Official Game",01001A0011798000,gpu;slow;status-ingame;nvdec,ingame,2022-10-25 19:47:39.000 -"Wreckfest",0100DC0012E48000,status-playable,playable,2023-02-12 16:13:00.000 -"Wreckin' Ball Adventure",0100C5D00EDB8000,status-playable;UE4,playable,2022-09-12 18:56:28.000 -"Wulverblade",010033700418A000,nvdec;status-playable,playable,2021-01-27 22:29:05.000 -"Wunderling",01001C400482C000,audio;status-ingame;crash,ingame,2022-09-10 13:20:12.000 -"Wurroom",,status-playable,playable,2020-10-07 22:46:21.000 -"WWE 2K Battlegrounds",010081700EDF4000,status-playable;nvdec;online-broken;UE4,playable,2022-10-07 12:44:40.000 -"WWE 2K18",010009800203E000,status-playable;nvdec,playable,2023-10-21 17:22:01.000 -"X-Morph: Defense",,status-playable,playable,2020-06-22 11:05:31.000 -"XCOM 2 Collection",0100D0B00FB74000,gpu;status-ingame;crash,ingame,2022-10-04 09:38:30.000 -"XEL",0100CC9015360000,gpu;status-ingame,ingame,2022-10-03 10:19:39.000 -"Xenoblade Chronicles 2",0100E95004038000,deadlock;status-ingame;amd-vendor-bug,ingame,2024-03-28 14:31:41.000 -"Xenoblade Chronicles 2: Torna - The Golden Country",0100C9F009F7A000,slow;status-playable;nvdec,playable,2023-01-28 16:47:28.000 -"Xenoblade Chronicles 3",010074F013262000,gpu;status-ingame;crash;nvdec;vulkan-backend-bug;amd-vendor-bug,ingame,2024-08-06 19:56:44.000 -"Xenoblade Chronicles Definitive Edition",0100FF500E34A000,status-playable;nvdec,playable,2024-05-04 20:12:41.000 -"Xenon Racer",010028600BA16000,status-playable;nvdec;UE4,playable,2022-08-31 22:05:30.000 -"Xenon Valkyrie+",010064200C324000,status-playable,playable,2021-06-07 20:25:53.000 -"Xenoraid",0100928005BD2000,status-playable,playable,2022-09-03 13:01:10.000 -"Xeodrifter",01005B5009364000,status-playable,playable,2022-09-03 13:18:39.000 -"Yaga",01006FB00DB02000,status-playable;nvdec,playable,2022-09-16 23:17:17.000 -"YesterMorrow",,crash;status-ingame,ingame,2020-12-17 17:15:25.000 -"Yet Another Zombie Defense HD",,status-playable,playable,2021-01-06 00:18:39.000 -"YGGDRA UNION We’ll Never Fight Alone",,status-playable,playable,2020-04-03 02:20:47.000 -"YIIK: A Postmodern RPG",0100634008266000,status-playable,playable,2021-01-28 13:38:37.000 -"Yo kai watch 1 for Nintendo Switch",0100C0000CEEA000,gpu;status-ingame;opengl,ingame,2024-05-28 11:11:49.000 -"Yo-Kai Watch 4++",010086C00AF7C000,status-playable,playable,2024-06-18 20:21:44.000 -"Yoku's Island Express",010002D00632E000,status-playable;nvdec,playable,2022-09-03 13:59:02.000 -"Yomawari 3",0100F47016F26000,status-playable,playable,2022-05-10 08:26:51.000 -"Yomawari: The Long Night Collection",010012F00B6F2000,status-playable,playable,2022-09-03 14:36:59.000 -"Yonder: The Cloud Catcher Chronicles",0100CC600ABB2000,status-playable,playable,2021-01-28 14:06:25.000 -"Yono and the Celestial Elephants",0100BE50042F6000,status-playable,playable,2021-01-28 18:23:58.000 -"Yooka-Laylee",0100F110029C8000,status-playable,playable,2021-01-28 14:21:45.000 -"Yooka-Laylee and the Impossible Lair",010022F00DA66000,status-playable,playable,2021-03-05 17:32:21.000 -"Yoshi's Crafted World",01006000040C2000,gpu;status-ingame;audout,ingame,2021-08-30 13:25:51.000 -"Yoshi's Crafted World Demo Version",,gpu;status-boots;status-ingame,boots,2020-12-16 14:57:40.000 -"Yoshiwara Higanbana Kuon no Chigiri",,nvdec;status-playable,playable,2020-10-17 19:14:46.000 -"YouTube",01003A400C3DA800,status-playable,playable,2024-06-08 05:24:10.000 -"Youtubers Life00",00100A7700CCAA40,status-playable;nvdec,playable,2022-09-03 14:56:19.000 -"Ys IX: Monstrum Nox",0100E390124D8000,status-playable,playable,2022-06-12 04:14:42.000 -"Ys Origin",0100F90010882000,status-playable;nvdec,playable,2024-04-17 05:07:33.000 -"Ys VIII: Lacrimosa of Dana",01007F200B0C0000,status-playable;nvdec,playable,2023-08-05 09:26:41.000 -"Yu-Gi-Oh! Legacy of the Duelist: Link Evolution!",010022400BE5A000,status-playable,playable,2024-09-27 21:48:43.000 -"Yu-Gi-Oh! Rush Duel: Dawn of the Battle Royale!! Let's Go! Go Rush!!",01002D60188DE000,status-ingame;crash,ingame,2023-03-17 01:54:01.000 -"YU-NO: A GIRL WHO CHANTS LOVE AT THE BOUND OF THIS WORLD.",010037D00DBDC000,nvdec;status-playable,playable,2021-01-26 17:03:52.000 -"Yumeutsutsu Re:After",0100B56011502000,status-playable,playable,2022-11-20 16:09:06.000 -"Yunohana Spring! - Mellow Times -",,audio;crash;status-menus,menus,2020-09-27 19:27:40.000 -"Yuppie Psycho: Executive Edition",,crash;status-ingame,ingame,2020-12-11 10:37:06.000 -"Yuri",0100FC900963E000,status-playable,playable,2021-06-11 13:08:50.000 -"Zaccaria Pinball",010092400A678000,status-playable;online-broken,playable,2022-09-03 15:44:28.000 -"Zarvot - 0100E7900C40000",,status-playable,playable,2021-01-28 13:51:36.000 -"ZenChess",,status-playable,playable,2020-07-01 22:28:27.000 -"Zenge",,status-playable,playable,2020-10-22 13:23:57.000 -"Zengeon",0100057011E50000,services-horizon;status-boots;crash,boots,2024-04-29 15:43:07.000 -"Zenith",0100AAC00E692000,status-playable,playable,2022-09-17 09:57:02.000 -"ZERO GUNNER 2",,status-playable,playable,2021-01-04 20:17:14.000 -"Zero Strain",01004B001058C000,services;status-menus;UE4,menus,2021-11-10 07:48:32.000 -"Zettai kaikyu gakuen",,gpu;nvdec;status-ingame,ingame,2020-08-25 15:15:54.000 -"Ziggy The Chaser",0100D7B013DD0000,status-playable,playable,2021-02-04 20:34:27.000 -"ZikSquare",010086700EF16000,gpu;status-ingame,ingame,2021-11-06 02:02:48.000 -"Zoids Wild Blast Unleashed",010069C0123D8000,status-playable;nvdec,playable,2022-10-15 11:26:59.000 -"Zombie Army Trilogy",,ldn-untested;online;status-playable,playable,2020-12-16 12:02:28.000 -"Zombie Driver",,nvdec;status-playable,playable,2020-12-14 23:15:10.000 -"ZOMBIE GOLD RUSH",,online;status-playable,playable,2020-09-24 12:56:08.000 -"Zombie's Cool",,status-playable,playable,2020-12-17 12:41:26.000 -"Zombieland: Double Tap - Road Trip0",01000E5800D32C00,status-playable,playable,2022-09-17 10:08:45.000 -"Zombillie",,status-playable,playable,2020-07-23 17:42:23.000 -"Zotrix: Solar Division",01001EE00A6B0000,status-playable,playable,2021-06-07 20:34:05.000 -"この世の果てで恋を唄う少女YU-NO",,audio;status-ingame,ingame,2021-01-22 07:00:16.000 -"スーパーファミコン Nintendo Switch Online",,slow;status-ingame,ingame,2020-03-14 05:48:38.000 -"トラブル・マギア ~訳アリ少女は未来を勝ち取るために異国の魔法学校へ留学します~(Trouble Magia ~Wakeari Shoujo wa Mirai o Kachitoru Tame ni Ikoku no Mahou Gakkou e Ryuugaku Shimasu~)",01000BB01CB8A000,status-nothing,nothing,2024-09-28 07:03:14.000 -"メモリーズオフ - Innocent Fille",010065500B218000,status-playable,playable,2022-12-02 17:36:48.000 -"二ノ国 白き聖灰の女王",010032400E700000,services;status-menus;32-bit,menus,2023-04-16 17:11:06.000 -"初音ミク Project DIVA MEGA39's",0100F3100DA46000,audio;status-playable;loader-allocator,playable,2022-07-29 11:45:52.000 -"御伽活劇 豆狸のバケル ~オラクル祭太郎の祭難!!~ (Otogi Katsugeki Mameda no Bakeru Oracle Saitarou no Sainan!!)",0100BF401AF9C000,slow;status-playable,playable,2023-12-31 14:37:17.000 -"死神と少女/Shinigami to Shoujo",0100AFA01750C000,gpu;status-ingame;Incomplete,ingame,2024-03-22 01:06:45.000 -"燃えよ! 乙女道士 ~華遊恋語~ (Moeyo! Otome Doushi Kayu Koigatari)",01001BA01EBFC000,services-horizon;status-nothing,nothing,2024-09-28 12:22:55.000 -"牧場物語 Welcome!ワンダフルライフ",0100936018EB4000,status-ingame;crash,ingame,2023-04-25 19:43:52.000 -"索尼克:起源 / Sonic Origins",01009FB016286000,status-ingame;crash,ingame,2024-06-02 07:20:15.000 -"超探偵事件簿 レインコード (Master Detective Archives: Rain Code)",0100F4401940A000,status-ingame;crash,ingame,2024-02-12 20:58:31.000 -"超次元ゲイム ネプテューヌ GameMaker R:Evolution",010064801a01c000,status-nothing;crash,nothing,2023-10-30 22:37:40.000 -"逆转检察官1&2 御剑精选集 (Ace Attorney Investigations Collection)",010005501E68C000,status-playable,playable,2024-09-19 16:38:05.000 -"逆转裁判四五六 王泥喜精选集 (Apollo Justice: Ace Attorney Trilogy)",010020D01B890000,status-playable,playable,2024-06-21 21:54:27.000 -"鬼滅之刃:火之神血風譚 / Demon Slayer -Kimetsu no Yaiba- The Hinokami Chronicles",0100309016E7A000,status-playable;UE4,playable,2024-08-08 04:51:49.000 +"title_id","game_name","labels","status","last_updated" +"01001E500F7FC000","#Funtime","status-playable","playable","2020-12-10 16:54:35.000" +"01000E50134A4000","#Halloween, Super Puzzles Dream","nvdec;status-playable","playable","2020-12-10 20:43:58.000" +"01004D100C510000","#KillAllZombies","slow;status-playable","playable","2020-12-16 01:50:25.000" +"0100325012C12000","#NoLimitFantasy, Super Puzzles Dream","nvdec;status-playable","playable","2020-12-12 17:21:32.000" +"01005D400E5C8000","#RaceDieRun","status-playable","playable","2020-07-04 20:23:16.000" +"01003DB011AE8000","#womenUp, Super Puzzles Dream","status-playable","playable","2020-12-12 16:57:25.000" +"0100D87012A14000","#womenUp, Super Puzzles Dream Demo","nvdec;status-playable","playable","2021-02-09 00:03:31.000" +"010099F00EF3E000","-KLAUS-","nvdec;status-playable","playable","2020-06-27 13:27:30.000" +"0100BA9014A02000",".hack//G.U. Last Recode","deadlock;status-boots","boots","2022-03-12 19:15:47.000" +"01000320000CC000","1-2-Switch","services;status-playable","playable","2022-02-18 14:44:03.000" +"0100DC000A472000","10 Second Run RETURNS Demo","gpu;status-ingame","ingame","2021-02-09 00:17:18.000" +"01004D1007926000","10 Second Run Returns","gpu;status-ingame","ingame","2022-07-17 13:06:18.000" +"0100D82015774000","112 Operator","status-playable;nvdec","playable","2022-11-13 22:42:50.000" +"010051E012302000","112th Seed","status-playable","playable","2020-10-03 10:32:38.000" +"0100B1A010014000","12 Labours of Hercules II: The Cretan Bull","cpu;status-nothing;32-bit;crash","nothing","2022-12-07 13:43:10.000" +"01007F600D1B8000","12 is Better Than 6","status-playable","playable","2021-02-22 16:10:12.000" +"0100A840047C2000","12 orbits","status-playable","playable","2020-05-28 16:13:26.000" +"01003FC01670C000","13 Sentinels Aegis Rim","slow;status-ingame","ingame","2024-06-10 20:33:38.000" +"0100C54015002000","13 Sentinels Aegis Rim Demo","status-playable;demo","playable","2022-04-13 14:15:48.000" +"01007E600EEE6000","140","status-playable","playable","2020-08-05 20:01:33.000" +"0100B94013D28000","16-Bit Soccer Demo","status-playable","playable","2021-02-09 00:23:07.000" +"01005CA0099AA000","1917 - The Alien Invasion DX","status-playable","playable","2021-01-08 22:11:16.000" +"0100829010F4A000","1971 PROJECT HELIOS","status-playable","playable","2021-04-14 13:50:19.000" +"0100D1000B18C000","1979 Revolution: Black Friday","nvdec;status-playable","playable","2021-02-21 21:03:43.000" +"01007BB00FC8A000","198X","status-playable","playable","2020-08-07 13:24:38.000" +"010075601150A000","1993 Shenandoah","status-playable","playable","2020-10-24 13:55:42.000" +"0100148012550000","1993 Shenandoah Demo","status-playable","playable","2021-02-09 00:43:43.000" +"010096500EA94000","2048 Battles","status-playable","playable","2020-12-12 14:21:25.000" +"010024C0067C4000","2064: Read Only Memories INTEGRAL","deadlock;status-menus","menus","2020-05-28 16:53:58.000" +"0100749009844000","20XX","gpu;status-ingame","ingame","2023-08-14 09:41:44.000" +"01007550131EE000","2urvive","status-playable","playable","2022-11-17 13:49:37.000" +"0100E20012886000","2weistein – The Curse of the Red Dragon","status-playable;nvdec;UE4","playable","2022-11-18 14:47:07.000" +"0100DAC013D0A000","30 in 1 game collection vol. 2","status-playable;online-broken","playable","2022-10-15 17:22:27.000" +"010056D00E234000","30-in-1 Game Collection","status-playable;online-broken","playable","2022-10-15 17:47:09.000" +"0100FB5010D2E000","3000th Duel","status-playable","playable","2022-09-21 17:12:08.000" +"01003670066DE000","36 Fragments of Midnight","status-playable","playable","2020-05-28 15:12:59.000" +"0100AF400C4CE000","39 Days to Mars","status-playable","playable","2021-02-21 22:12:46.000" +"010010C013F2A000","3D Arcade Fishing","status-playable","playable","2022-10-25 21:50:51.000" +"","3D MiniGolf","status-playable","playable","2021-01-06 09:22:11.000" +"","4x4 Dirt Track","status-playable","playable","2020-12-12 21:41:42.000" +"010010100FF14000","60 Parsecs!","status-playable","playable","2022-09-17 11:01:17.000" +"0100969005E98000","60 Seconds!","services;status-ingame","ingame","2021-11-30 01:04:14.000" +"","6180 the moon","status-playable","playable","2020-05-28 15:39:24.000" +"","64","status-playable","playable","2020-12-12 21:31:58.000" +"","7 Billion Humans","32-bit;status-playable","playable","2020-12-17 21:04:58.000" +"","7th Sector","nvdec;status-playable","playable","2020-08-10 14:22:14.000" +"","8-BIT ADVENTURE STEINS;GATE","audio;status-ingame","ingame","2020-01-12 15:05:06.000" +"","80 Days","status-playable","playable","2020-06-22 21:43:01.000" +"","80's OVERDRIVE","status-playable","playable","2020-10-16 14:33:32.000" +"","88 Heroes","status-playable","playable","2020-05-28 14:13:02.000" +"","9 Monkeys of Shaolin","UE4;gpu;slow;status-ingame","ingame","2020-11-17 11:58:43.000" +"0100C5F012E3E000","9 Monkeys of Shaolin Demo","UE4;gpu;nvdec;status-ingame","ingame","2021-02-09 01:03:30.000" +"","911 Operator Deluxe Edition","status-playable","playable","2020-07-14 13:57:44.000" +"","99Vidas","online;status-playable","playable","2020-10-29 13:00:40.000" +"010023500C2F0000","99Vidas Demo","status-playable","playable","2021-02-09 12:51:31.000" +"","9th Dawn III","status-playable","playable","2020-12-12 22:27:27.000" +"010096A00CC80000","A Ch'ti Bundle","status-playable;nvdec","playable","2022-10-04 12:48:44.000" +"","A Dark Room","gpu;status-ingame","ingame","2020-12-14 16:14:28.000" +"0100582012B90000","A Duel Hand Disaster Trackher: DEMO","crash;demo;nvdec;status-ingame","ingame","2021-03-24 18:45:27.000" +"010026B006802000","A Duel Hand Disaster: Trackher","status-playable;nvdec;online-working","playable","2022-09-04 14:24:55.000" +"","A Frog Game","status-playable","playable","2020-12-14 16:09:53.000" +"01009E1011EC4000","A HERO AND A GARDEN","status-playable","playable","2022-12-05 16:37:47.000" +"010056E00853A000","A Hat In Time","status-playable","playable","2024-06-25 19:52:44.000" +"01005EF00CFDA000","A Knight's Quest","status-playable;UE4","playable","2022-09-12 20:44:20.000" +"","A Short Hike","status-playable","playable","2020-10-15 00:19:58.000" +"","A Sound Plan","crash;status-boots","boots","2020-12-14 16:46:21.000" +"01007DD011C4A000","A Summer with the Shiba Inu","status-playable","playable","2021-06-10 20:51:16.000" +"01008DD006C52000","A magical high school girl","status-playable","playable","2022-07-19 14:40:50.000" +"0100A3E010E56000","A-Train: All Aboard! Tourism","nvdec;status-playable","playable","2021-04-06 17:48:19.000" +"0100C1300BBC6000","ABZU","status-playable;UE4","playable","2022-07-19 15:02:52.000" +"01003C400871E000","ACA NEOGEO 2020 SUPER BASEBALL","online;status-playable","playable","2021-04-12 13:23:51.000" +"0100FC000AFC6000","ACA NEOGEO 3 COUNT BOUT","online;status-playable","playable","2021-04-12 13:16:42.000" +"0100AC40038F4000","ACA NEOGEO AERO FIGHTERS 2","online;status-playable","playable","2021-04-08 15:44:09.000" +"0100B91008780000","ACA NEOGEO AERO FIGHTERS 3","online;status-playable","playable","2021-04-12 13:11:17.000" +"0100B4800AFBA000","ACA NEOGEO AGGRESSORS OF DARK KOMBAT","online;status-playable","playable","2021-04-01 22:48:01.000" +"01003FE00A2F6000","ACA NEOGEO BASEBALL STARS PROFESSIONAL","online;status-playable","playable","2021-04-01 21:23:05.000" +"","ACA NEOGEO BLAZING STAR","crash;services;status-menus","menus","2020-05-26 17:29:02.000" +"0100D2400AFB0000","ACA NEOGEO CROSSED SWORDS","online;status-playable","playable","2021-04-01 20:42:59.000" +"0100EE6002B48000","ACA NEOGEO FATAL FURY","online;status-playable","playable","2021-04-01 20:36:23.000" +"","ACA NEOGEO FOOTBALL FRENZY","status-playable","playable","2021-03-29 20:12:12.000" +"0100CB2001DB8000","ACA NEOGEO GAROU: MARK OF THE WOLVES","online;status-playable","playable","2021-04-01 20:31:10.000" +"01005D700A2F8000","ACA NEOGEO GHOST PILOTS","online;status-playable","playable","2021-04-01 20:26:45.000" +"01000D10038E6000","ACA NEOGEO LAST RESORT","online;status-playable","playable","2021-04-01 19:51:22.000" +"","ACA NEOGEO LEAGUE BOWLING","crash;services;status-menus","menus","2020-05-26 17:11:04.000" +"","ACA NEOGEO MAGICAL DROP II","crash;services;status-menus","menus","2020-05-26 16:48:24.000" +"01007920038F6000","ACA NEOGEO MAGICIAN LORD","online;status-playable","playable","2021-04-01 19:33:26.000" +"0100EBE002B3E000","ACA NEOGEO METAL SLUG","status-playable","playable","2021-02-21 13:56:48.000" +"010086300486E000","ACA NEOGEO METAL SLUG 2","online;status-playable","playable","2021-04-01 19:25:52.000" +"","ACA NEOGEO METAL SLUG 3","crash;services;status-menus","menus","2020-05-26 16:32:45.000" +"01009CE00AFAE000","ACA NEOGEO METAL SLUG 4","online;status-playable","playable","2021-04-01 18:12:18.000" +"","ACA NEOGEO Metal Slug X","crash;services;status-menus","menus","2020-05-26 14:07:20.000" +"010038F00AFA0000","ACA NEOGEO Money Puzzle Exchanger","online;status-playable","playable","2021-04-01 17:59:56.000" +"01002E70032E8000","ACA NEOGEO NEO TURF MASTERS","status-playable","playable","2021-02-21 15:12:01.000" +"010052A00A306000","ACA NEOGEO NINJA COMBAT","status-playable","playable","2021-03-29 21:17:28.000" +"01007E800AFB6000","ACA NEOGEO NINJA COMMANDO","online;status-playable","playable","2021-04-01 17:28:18.000" +"01003A5001DBA000","ACA NEOGEO OVER TOP","status-playable","playable","2021-02-21 13:16:25.000" +"010088500878C000","ACA NEOGEO REAL BOUT FATAL FURY SPECIAL","online;status-playable","playable","2021-04-01 17:18:27.000" +"01005C9002B42000","ACA NEOGEO SAMURAI SHODOWN","online;status-playable","playable","2021-04-01 17:11:35.000" +"010047F001DBC000","ACA NEOGEO SAMURAI SHODOWN IV","online;status-playable","playable","2021-04-12 12:58:54.000" +"010049F00AFE8000","ACA NEOGEO SAMURAI SHODOWN SPECIAL V","online;status-playable","playable","2021-04-10 18:07:13.000" +"01009B300872A000","ACA NEOGEO SENGOKU 2","online;status-playable","playable","2021-04-10 17:36:44.000" +"01008D000877C000","ACA NEOGEO SENGOKU 3","online;status-playable","playable","2021-04-10 16:11:53.000" +"","ACA NEOGEO SHOCK TROOPERS","crash;services;status-menus","menus","2020-05-26 15:29:34.000" +"01007D1004DBA000","ACA NEOGEO SPIN MASTER","online;status-playable","playable","2021-04-10 15:50:19.000" +"010055A00A300000","ACA NEOGEO SUPER SIDEKICKS 2","online;status-playable","playable","2021-04-10 16:05:58.000" +"0100A4D00A308000","ACA NEOGEO SUPER SIDEKICKS 3: THE NEXT GLORY","online;status-playable","playable","2021-04-10 15:39:22.000" +"","ACA NEOGEO THE KING OF FIGHTERS '94","crash;services;status-menus","menus","2020-05-26 15:03:44.000" +"01009DC001DB6000","ACA NEOGEO THE KING OF FIGHTERS '95","status-playable","playable","2021-03-29 20:27:35.000" +"01006F0004FB4000","ACA NEOGEO THE KING OF FIGHTERS '96","online;status-playable","playable","2021-04-10 14:49:10.000" +"0100170008728000","ACA NEOGEO THE KING OF FIGHTERS '97","online;status-playable","playable","2021-04-10 14:43:27.000" +"","ACA NEOGEO THE KING OF FIGHTERS '98","crash;services;status-menus","menus","2020-05-26 14:54:20.000" +"0100583001DCA000","ACA NEOGEO THE KING OF FIGHTERS '99","online;status-playable","playable","2021-04-10 14:36:56.000" +"0100B97002B44000","ACA NEOGEO THE KING OF FIGHTERS 2000","online;status-playable","playable","2021-04-10 15:24:35.000" +"010048200AFC2000","ACA NEOGEO THE KING OF FIGHTERS 2001","online;status-playable","playable","2021-04-10 15:16:23.000" +"0100CFD00AFDE000","ACA NEOGEO THE KING OF FIGHTERS 2002","online;status-playable","playable","2021-04-10 15:01:55.000" +"0100EF100AFE6000","ACA NEOGEO THE KING OF FIGHTERS 2003","online;status-playable","playable","2021-04-10 14:54:31.000" +"0100699008792000","ACA NEOGEO THE LAST BLADE 2","online;status-playable","playable","2021-04-10 14:31:54.000" +"0100F7F00AFA2000","ACA NEOGEO THE SUPER SPY","online;status-playable","playable","2021-04-10 14:26:33.000" +"0100CEF001DC0000","ACA NEOGEO WAKU WAKU 7","online;status-playable","playable","2021-04-10 14:20:52.000" +"","ACA NEOGEO WORLD HEROES PERFECT","crash;services;status-menus","menus","2020-05-26 14:14:36.000" +"","ACA NEOGEO ZUPAPA!","online;status-playable","playable","2021-03-25 20:07:33.000" +"0100DBC0081A4000","ACORN Tactics","status-playable","playable","2021-02-22 12:57:40.000" +"01008C901266E000","ADVERSE","UE4;status-playable","playable","2021-04-26 14:32:51.000" +"0100A0400DDE0000","AER - Memories of Old","nvdec;status-playable","playable","2021-03-05 18:43:43.000" +"01001B400D334000","AFL Evolution 2","slow;status-playable;online-broken;UE4","playable","2022-12-07 12:45:56.000" +"0100C1700FB34000","AI: The Somnium Files Demo","nvdec;status-playable","playable","2021-02-10 12:52:33.000" +"01003DD00BFEE000","AIRHEART - Tales of Broken Wings","status-playable","playable","2021-02-26 15:20:27.000" +"","ALPHA","status-playable","playable","2020-12-13 12:17:45.000" +"010020D01AD24000","ANIMAL WELL","status-playable","playable","2024-05-22 18:01:49.000" +"","ANIMUS","status-playable","playable","2020-12-13 15:11:47.000" +"010047000E9AA000","AO Tennis 2","status-playable;online-broken","playable","2022-09-17 12:05:07.000" +"010054500E6D4000","APE OUT DEMO","status-playable","playable","2021-02-10 14:33:06.000" +"0100AC10085CE000","AQUA KITTY UDX","online;status-playable","playable","2021-04-12 15:34:11.000" +"","ARCADE FUZZ","status-playable","playable","2020-08-15 12:37:36.000" +"0100691013C46000","ARIA CHRONICLE","status-playable","playable","2022-11-16 13:50:55.000" +"01009B500007C000","ARMS","status-playable;ldn-works;LAN","playable","2024-08-28 07:49:24.000" +"","ARMS Demo","status-playable","playable","2021-02-10 16:30:13.000" +"","ASCENDANCE","status-playable","playable","2021-01-05 10:54:40.000" +"0100B9400FA38000","ATOM RPG","status-playable;nvdec","playable","2022-10-22 10:11:48.000" +"","ATOMIK RunGunJumpGun","status-playable","playable","2020-12-14 13:19:24.000" +"","ATOMINE","gpu;nvdec;slow;status-playable","playable","2020-12-14 18:56:50.000" +"01000F600B01E000","ATV Drift & Tricks","UE4;online;status-playable","playable","2021-04-08 17:29:17.000" +"0100E100128BA000","AVICII Invector Demo","status-playable","playable","2021-02-10 21:04:58.000" +"010097A00CC0A000","Aaero","status-playable;nvdec","playable","2022-07-19 14:49:55.000" +"","Aborigenus","status-playable","playable","2020-08-05 19:47:24.000" +"","Absolute Drift","status-playable","playable","2020-12-10 14:02:44.000" +"010047F012BE2000","Abyss of The Sacrifice","status-playable;nvdec","playable","2022-10-21 13:56:28.000" +"0100A9900CB5C000","Access Denied","status-playable","playable","2022-07-19 15:25:10.000" +"01007C50132C8000","Ace Angler: Fishing Spirits","status-menus;crash","menus","2023-03-03 03:21:39.000" +"010033401E68E000","Ace Attorney Investigations Collection DEMO","status-playable","playable","2024-09-07 06:16:42.000" +"010039301B7E0000","Ace Combat 7 - Skies Unknown Deluxe Edition","gpu;status-ingame;UE4","ingame","2024-09-27 14:31:43.000" +"0100FF1004D56000","Ace of Seafood","status-playable","playable","2022-07-19 15:32:25.000" +"","Aces of the Luftwaffe Squadron","nvdec;slow;status-playable","playable","2020-05-27 12:29:42.000" +"010054300D822000","Aces of the Luftwaffe Squadron Demo","nvdec;status-playable","playable","2021-02-09 13:12:28.000" +"","Across the Grooves","status-playable","playable","2020-06-27 12:29:51.000" +"","Acthung! Cthulhu Tactics","status-playable","playable","2020-12-14 18:40:27.000" +"010039A010DA0000","Active Neurons","status-playable","playable","2021-01-27 21:31:21.000" +"01000D1011EF0000","Active Neurons 2","status-playable","playable","2022-10-07 16:21:42.000" +"010031C0122B0000","Active Neurons 2 Demo","status-playable","playable","2021-02-09 13:40:21.000" +"0100EE1013E12000","Active Neurons 3","status-playable","playable","2021-03-24 12:20:20.000" +"","Actual Sunlight","gpu;status-ingame","ingame","2020-12-14 17:18:41.000" +"0100C0C0040E4000","Adam's Venture: Origins","status-playable","playable","2021-03-04 18:43:57.000" +"","Adrenaline Rush - Miami Drive","status-playable","playable","2020-12-12 22:49:50.000" +"0100300012F2A000","Advance Wars 1+2: Re-Boot Camp","status-playable","playable","2024-01-30 18:19:44.000" +"","Adventure Llama","status-playable","playable","2020-12-14 19:32:24.000" +"","Adventure Pinball Bundle","slow;status-playable","playable","2020-12-14 20:31:53.000" +"01003B400A00A000","Adventures of Bertram Fiddle: Episode 1: A Dreadly Business","status-playable;nvdec","playable","2022-09-17 11:07:56.000" +"","Adventures of Chris","status-playable","playable","2020-12-12 23:00:02.000" +"0100A0A0136E8000","Adventures of Chris Demo","status-playable","playable","2021-02-09 13:49:21.000" +"","Adventures of Pip","nvdec;status-playable","playable","2020-12-12 22:11:55.000" +"010064500AF72000","Aegis Defenders Demo","status-playable","playable","2021-02-09 14:04:17.000" +"01008E6006502000","Aegis Defenders0","status-playable","playable","2021-02-22 13:29:33.000" +"","Aeolis Tournament","online;status-playable","playable","2020-12-12 22:02:14.000" +"01006710122CE000","Aeolis Tournament Demo","nvdec;status-playable","playable","2021-02-09 14:22:30.000" +"0100E9B013D4A000","Aerial Knight's Never Yield","status-playable","playable","2022-10-25 22:05:00.000" +"0100875011D0C000","Aery","status-playable","playable","2021-03-07 15:25:51.000" +"010018E012914000","Aery - Sky Castle","status-playable","playable","2022-10-21 17:58:49.000" +"0100DF8014056000","Aery - A Journey Beyond Time","status-playable","playable","2021-04-05 15:52:25.000" +"0100087012810000","Aery - Broken Memories","status-playable","playable","2022-10-04 13:11:52.000" +"","Aery - Calm Mind - 0100A801539000","status-playable","playable","2022-11-14 14:26:58.000" +"0100B1C00949A000","AeternoBlade Demo Version","nvdec;status-playable","playable","2021-02-09 14:39:26.000" +"","AeternoBlade I","nvdec;status-playable","playable","2020-12-14 20:06:48.000" +"01009D100EA28000","AeternoBlade II","status-playable;online-broken;UE4;vulkan-backend-bug","playable","2022-09-12 21:11:18.000" +"","AeternoBlade II Demo Version","gpu;nvdec;status-ingame","ingame","2021-02-09 15:10:19.000" +"0100DB100BBCE000","Afterparty","status-playable","playable","2022-09-22 12:23:19.000" +"","Agatha Christie - The ABC Murders","status-playable","playable","2020-10-27 17:08:23.000" +"","Agatha Knife","status-playable","playable","2020-05-28 12:37:58.000" +"","Agent A: A puzzle in disguise","status-playable","playable","2020-11-16 22:53:27.000" +"01008E8012C02000","Agent A: A puzzle in disguise (Demo)","status-playable","playable","2021-02-09 18:30:41.000" +"0100E4700E040000","Ages of Mages: the Last Keeper","status-playable;vulkan-backend-bug","playable","2022-10-04 11:44:05.000" +"010004D00A9C0000","Aggelos","gpu;status-ingame","ingame","2023-02-19 13:24:23.000" +"","Agony","UE4;crash;status-boots","boots","2020-07-10 16:21:18.000" +"010089B00D09C000","Ai: the Somnium Files","status-playable;nvdec","playable","2022-09-04 14:45:06.000" +"","Ailment","status-playable","playable","2020-12-12 22:30:41.000" +"","Air Conflicts: Pacific Carriers","status-playable","playable","2021-01-04 10:52:50.000" +"","Air Hockey","status-playable","playable","2020-05-28 16:44:37.000" +"","Air Missions: HIND","status-playable","playable","2020-12-13 10:16:45.000" +"0100E95011FDC000","Aircraft Evolution","nvdec;status-playable","playable","2021-06-14 13:30:18.000" +"010010A00DB72000","Airfield Mania Demo","services;status-boots;demo","boots","2022-04-10 03:43:02.000" +"01007F100DE52000","Akane","status-playable;nvdec","playable","2022-07-21 00:12:18.000" +"","Akash Path of the Five","gpu;nvdec;status-ingame","ingame","2020-12-14 22:33:12.000" +"010053100B0EA000","Akihabara - Feel the Rhythm Remixed","status-playable","playable","2021-02-22 14:39:35.000" +"","Akuarium","slow;status-playable","playable","2020-12-12 23:43:36.000" +"","Akuto","status-playable","playable","2020-08-04 19:43:27.000" +"0100F5400AB6C000","Alchemic Jousts","gpu;status-ingame","ingame","2022-12-08 15:06:28.000" +"","Alchemist's Castle","status-playable","playable","2020-12-12 23:54:08.000" +"","Alder's Blood","status-playable","playable","2020-08-28 15:15:23.000" +"01004510110C4000","Alder's Blood Prologue","crash;status-ingame","ingame","2021-02-09 19:03:03.000" +"01000E000EEF8000","Aldred - Knight of Honor","services;status-playable","playable","2021-11-30 01:49:17.000" +"010025D01221A000","Alex Kidd in Miracle World DX","status-playable","playable","2022-11-14 15:01:34.000" +"","Alien Cruise","status-playable","playable","2020-08-12 13:56:05.000" +"","Alien Escape","status-playable","playable","2020-06-03 23:43:18.000" +"010075D00E8BA000","Alien: Isolation","status-playable;nvdec;vulkan-backend-bug","playable","2022-09-17 11:48:41.000" +"0100CBD012FB6000","All Walls Must Fall","status-playable;UE4","playable","2022-10-15 19:16:30.000" +"0100C1F00A9B8000","All-Star Fruit Racing","status-playable;nvdec;UE4","playable","2022-07-21 00:35:37.000" +"0100AC501122A000","Alluris","gpu;status-ingame;UE4","ingame","2023-08-02 23:13:50.000" +"","Almightree the Last Dreamer","slow;status-playable","playable","2020-12-15 13:59:03.000" +"","Along the Edge","status-playable","playable","2020-11-18 15:00:07.000" +"","Alpaca Ball: Allstars","nvdec;status-playable","playable","2020-12-11 12:26:29.000" +"","Alphaset by POWGI","status-playable","playable","2020-12-15 15:15:15.000" +"","Alt-Frequencies","status-playable","playable","2020-12-15 19:01:33.000" +"","Alteric","status-playable","playable","2020-11-08 13:53:22.000" +"","Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz","status-playable","playable","2020-08-31 14:17:42.000" +"0100A8A00D27E000","Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz Trial version","status-playable","playable","2021-02-10 13:33:59.000" +"010045201487C000","Aluna: Sentinel of the Shards","status-playable;nvdec","playable","2022-10-25 22:17:03.000" +"","Alwa's Awakening","status-playable","playable","2020-10-13 11:52:01.000" +"","Alwa's Legacy","status-playable","playable","2020-12-13 13:00:57.000" +"","American Fugitive","nvdec;status-playable","playable","2021-01-04 20:45:11.000" +"010089D00A3FA000","American Ninja Warrior: Challenge","nvdec;status-playable","playable","2021-06-09 13:11:17.000" +"01003CC00D0BE000","Amnesia: Collection","status-playable","playable","2022-10-04 13:36:15.000" +"010041D00DEB2000","Amoeba Battle - Microscopic RTS Action","status-playable","playable","2021-05-06 13:33:41.000" +"0100B0C013912000","Among Us","status-menus;online;ldn-broken","menus","2021-09-22 15:20:17.000" +"010046500C8D2000","Among the Sleep - Enhanced Edition","nvdec;status-playable","playable","2021-06-03 15:06:25.000" +"01000FD00DF78000","AnShi","status-playable;nvdec;UE4","playable","2022-10-21 19:37:01.000" +"010050900E1C6000","Anarcute","status-playable","playable","2021-02-22 13:17:59.000" +"01009EE0111CC000","Ancestors Legacy","status-playable;nvdec;UE4","playable","2022-10-01 12:25:36.000" +"","Ancient Rush 2","UE4;crash;status-menus","menus","2020-07-14 14:58:47.000" +"0100AE000AEBC000","Angels of Death","nvdec;status-playable","playable","2021-02-22 14:17:15.000" +"010001E00A5F6000","AngerForce: Reloaded for Nintendo Switch","status-playable","playable","2022-07-21 10:37:17.000" +"0100F3500D05E000","Angry Bunnies: Colossal Carrot Crusade","status-playable;online-broken","playable","2022-09-04 14:53:26.000" +"","Angry Video Game Nerd I & II Deluxe","crash;status-ingame","ingame","2020-12-12 23:59:54.000" +"01007A400B3F8000","Anima Gate of Memories: The Nameless Chronicles","status-playable","playable","2021-06-14 14:33:06.000" +"010033F00B3FA000","Anima: Arcane Edition","nvdec;status-playable","playable","2021-01-26 16:55:51.000" +"0100706005B6A000","Anima: Gate of Memories","nvdec;status-playable","playable","2021-06-16 18:13:18.000" +"0100F38011CFE000","Animal Crossing New Horizons Island Transfer Tool","services;status-ingame;Needs Update;Incomplete","ingame","2022-12-07 13:51:19.000" +"01006F8002326000","Animal Crossing: New Horizons","gpu;status-ingame;crash;nvdec;online-broken;ldn-works;mac-bug","ingame","2024-09-23 13:31:49.000" +"","Animal Fight Club","gpu;status-ingame","ingame","2020-12-13 13:13:33.000" +"","Animal Fun for Toddlers and Kids","services;status-boots","boots","2020-12-15 16:45:29.000" +"","Animal Hunter Z","status-playable","playable","2020-12-13 12:50:35.000" +"010033C0121DC000","Animal Pairs - Matching & Concentration Game for Toddlers & Kids","services;status-boots","boots","2021-11-29 23:43:14.000" +"010065B009B3A000","Animal Rivals Switch","status-playable","playable","2021-02-22 14:02:42.000" +"0100EFE009424000","Animal Super Squad","UE4;status-playable","playable","2021-04-23 20:50:50.000" +"","Animal Up","status-playable","playable","2020-12-13 15:39:02.000" +"","Animals for Toddlers","services;status-boots","boots","2020-12-15 17:27:27.000" +"","Animated Jigsaws Collection","nvdec;status-playable","playable","2020-12-15 15:58:34.000" +"0100A1900B5B8000","Animated Jigsaws: Beautiful Japanese Scenery DEMO","nvdec;status-playable","playable","2021-02-10 13:49:56.000" +"","Anime Studio Story","status-playable","playable","2020-12-15 18:14:05.000" +"01002B300EB86000","Anime Studio Story Demo","status-playable","playable","2021-02-10 14:50:39.000" +"0100E5A00FD38000","Animus: Harbinger","status-playable","playable","2022-09-13 22:09:20.000" +"","Ankh Guardian - Treasure of the Demon's Temple","status-playable","playable","2020-12-13 15:55:49.000" +"","Anode","status-playable","playable","2020-12-15 17:18:58.000" +"0100CB9018F5A000","Another Code: Recollection","gpu;status-ingame;crash","ingame","2024-09-06 05:58:52.000" +"","Another Sight","UE4;gpu;nvdec;status-ingame","ingame","2020-12-03 16:49:59.000" +"01003C300AAAE000","Another World","slow;status-playable","playable","2022-07-21 10:42:38.000" +"010054C00D842000","Anthill","services;status-menus;nvdec","menus","2021-11-18 09:25:25.000" +"0100596011E20000","Anti-Hero Bundle","status-playable;nvdec","playable","2022-10-21 20:10:30.000" +"","Antiquia Lost","status-playable","playable","2020-05-28 11:57:32.000" +"","Antventor","nvdec;status-playable","playable","2020-12-15 20:09:27.000" +"0100FA100620C000","Ao no Kanata no Four Rhythm","status-playable","playable","2022-07-21 10:50:42.000" +"0100990011866000","Aokana - Four Rhythms Across the Blue","status-playable","playable","2022-10-04 13:50:26.000" +"01005B100C268000","Ape Out","status-playable","playable","2022-09-26 19:04:47.000" +"","Aperion Cyberstorm","status-playable","playable","2020-12-14 00:40:16.000" +"01008CA00D71C000","Aperion Cyberstorm Demo","status-playable","playable","2021-02-10 15:53:21.000" +"","Apocalipsis","deadlock;status-menus","menus","2020-05-27 12:56:37.000" +"","Apocryph","gpu;status-ingame","ingame","2020-12-13 23:24:10.000" +"","Apparition","nvdec;slow;status-ingame","ingame","2020-12-13 23:57:04.000" +"","Aqua Lungers","crash;status-ingame","ingame","2020-12-14 11:25:57.000" +"0100D0D00516A000","Aqua Moto Racing Utopia","status-playable","playable","2021-02-21 21:21:00.000" +"010071800BA74000","Aragami: Shadow Edition","nvdec;status-playable","playable","2021-02-21 20:33:23.000" +"0100C7D00E6A0000","Arc of Alchemist","status-playable;nvdec","playable","2022-10-07 19:15:54.000" +"0100BE80097FA000","Arcade Archives 10-Yard Fight","online;status-playable","playable","2021-03-25 21:26:41.000" +"01005DD00BE08000","Arcade Archives ALPHA MISSION","online;status-playable","playable","2021-04-15 09:20:43.000" +"010083800DC70000","Arcade Archives ALPINE SKI","online;status-playable","playable","2021-04-15 09:28:46.000" +"010014F001DE2000","Arcade Archives ARGUS","online;status-playable","playable","2021-04-16 06:51:25.000" +"0100BEC00C7A2000","Arcade Archives ATHENA","online;status-playable","playable","2021-04-16 07:10:12.000" +"010014F001DE2000","Arcade Archives Armed F","online;status-playable","playable","2021-04-16 07:00:17.000" +"0100426001DE4000","Arcade Archives Atomic Robo-Kid","online;status-playable","playable","2021-04-16 07:20:29.000" +"0100192009824000","Arcade Archives BOMB JACK","online;status-playable","playable","2021-04-16 09:48:26.000" +"0100EDC00E35A000","Arcade Archives CLU CLU LAND","online;status-playable","playable","2021-04-16 10:00:42.000" +"0100BB1001DD6000","Arcade Archives CRAZY CLIMBER","online;status-playable","playable","2021-03-25 22:24:15.000" +"010007A00980C000","Arcade Archives City CONNECTION","online;status-playable","playable","2021-03-25 22:16:15.000" +"","Arcade Archives DONKEY KONG","Needs Update;crash;services;status-menus","menus","2021-03-24 18:18:43.000" +"0100F25001DD0000","Arcade Archives DOUBLE DRAGON","online;status-playable","playable","2021-03-25 22:44:34.000" +"01009E3001DDE000","Arcade Archives DOUBLE DRAGON II The Revenge","online;status-playable","playable","2021-04-12 16:05:29.000" +"0100496006EC8000","Arcade Archives FRONT LINE","online;status-playable","playable","2021-05-05 14:10:49.000" +"01009A4008A30000","Arcade Archives HEROIC EPISODE","online;status-playable","playable","2021-03-25 23:01:26.000" +"01007D200D3FC000","Arcade Archives ICE CLIMBER","online;status-playable","playable","2021-05-05 14:18:34.000" +"010049400C7A8000","Arcade Archives IKARI WARRIORS","online;status-playable","playable","2021-05-05 14:24:46.000" +"010008300C978000","Arcade Archives IMAGE FIGHT","online;status-playable","playable","2021-05-05 14:31:21.000" +"01000DB00980A000","Arcade Archives Ikki","online;status-playable","playable","2021-03-25 23:11:28.000" +"010010B008A36000","Arcade Archives Kid Niki Radical Ninja","audio;status-ingame;online","ingame","2022-07-21 11:02:04.000" +"0100E7C001DE0000","Arcade Archives Kid's Horehore Daisakusen","online;status-playable","playable","2021-04-12 16:21:29.000" +"","Arcade Archives LIFE FORCE","status-playable","playable","2020-09-04 13:26:25.000" +"0100755004608000","Arcade Archives MARIO BROS.","online;status-playable","playable","2021-03-26 11:31:32.000" +"01000BE001DD8000","Arcade Archives MOON CRESTA","online;status-playable","playable","2021-05-05 14:39:29.000" +"01003000097FE000","Arcade Archives MOON PATROL","online;status-playable","playable","2021-03-26 11:42:04.000" +"01003EF00D3B4000","Arcade Archives NINJA GAIDEN","audio;online;status-ingame","ingame","2021-04-12 16:27:53.000" +"01002F300D2C6000","Arcade Archives Ninja Spirit","online;status-playable","playable","2021-05-05 14:45:31.000" +"","Arcade Archives Ninja-Kid","online;status-playable","playable","2021-03-26 20:55:07.000" +"","Arcade Archives OMEGA FIGHTER","crash;services;status-menus","menus","2020-08-18 20:50:54.000" +"","Arcade Archives PLUS ALPHA","audio;status-ingame","ingame","2020-07-04 20:47:55.000" +"0100A6E00D3F8000","Arcade Archives POOYAN","online;status-playable","playable","2021-05-05 17:58:19.000" +"01000D200C7A4000","Arcade Archives PSYCHO SOLDIER","online;status-playable","playable","2021-05-05 18:02:19.000" +"01001530097F8000","Arcade Archives PUNCH-OUT!!","online;status-playable","playable","2021-03-25 22:10:55.000" +"0100FBA00E35C000","Arcade Archives ROAD FIGHTER","online;status-playable","playable","2021-05-05 18:09:17.000" +"010060000BF7C000","Arcade Archives ROUTE 16","online;status-playable","playable","2021-05-05 18:40:41.000" +"0100C2D00981E000","Arcade Archives RYGAR","online;status-playable","playable","2021-04-15 08:48:30.000" +"010081E001DD2000","Arcade Archives Renegade","status-playable;online","playable","2022-07-21 11:45:40.000" +"010069F008A38000","Arcade Archives STAR FORCE","online;status-playable","playable","2021-04-15 08:39:09.000" +"01007A4009834000","Arcade Archives Shusse Ozumo","online;status-playable","playable","2021-05-05 17:52:25.000" +"010008F00B054000","Arcade Archives Sky Skipper","online;status-playable","playable","2021-04-15 08:58:09.000" +"01008C900982E000","Arcade Archives Solomon's Key","online;status-playable","playable","2021-04-19 16:27:18.000" +"","Arcade Archives TERRA CRESTA","crash;services;status-menus","menus","2020-08-18 20:20:55.000" +"0100348001DE6000","Arcade Archives TERRA FORCE","online;status-playable","playable","2021-04-16 20:03:27.000" +"0100DFD016B7A000","Arcade Archives TETRIS THE GRAND MASTER","status-playable","playable","2024-06-23 01:50:29.000" +"0100DC000983A000","Arcade Archives THE NINJA WARRIORS","online;slow;status-ingame","ingame","2021-04-16 19:54:56.000" +"0100AF300D2E8000","Arcade Archives TIME PILOT","online;status-playable","playable","2021-04-16 19:22:31.000" +"010029D006ED8000","Arcade Archives Traverse USA","online;status-playable","playable","2021-04-15 08:11:06.000" +"010042200BE0C000","Arcade Archives URBAN CHAMPION","online;status-playable","playable","2021-04-16 10:20:03.000" +"01004EC00E634000","Arcade Archives VS. GRADIUS","online;status-playable","playable","2021-04-12 14:53:58.000" +"","Arcade Archives VS. SUPER MARIO BROS.","online;status-playable","playable","2021-04-08 14:48:11.000" +"01001B000D8B6000","Arcade Archives WILD WESTERN","online;status-playable","playable","2021-04-16 10:11:36.000" +"010050000D6C4000","Arcade Classics Anniversary Collection","status-playable","playable","2021-06-03 13:55:10.000" +"","Arcade Spirits","status-playable","playable","2020-06-21 11:45:03.000" +"0100E680149DC000","Arcaea","status-playable","playable","2023-03-16 19:31:21.000" +"0100E53013E1C000","Arcanoid Breakout","status-playable","playable","2021-01-25 23:28:02.000" +"","Archaica: Path of LightInd","crash;status-nothing","nothing","2020-10-16 13:22:26.000" +"","Area 86","status-playable","playable","2020-12-16 16:45:52.000" +"0100D4A00B284000","Ark: Survival Evolved","gpu;status-ingame;nvdec;online-broken;UE4;ldn-untested","ingame","2024-04-16 00:53:56.000" +"","Arkanoid vs Space Invaders","services;status-ingame","ingame","2021-01-21 12:50:30.000" +"010069A010606000","Arkham Horror: Mother's Embrace","nvdec;status-playable","playable","2021-04-19 15:40:55.000" +"","Armed 7 DX","status-playable","playable","2020-12-14 11:49:56.000" +"","Armello","nvdec;status-playable","playable","2021-01-07 11:43:26.000" +"0100184011B32000","Arrest of a stone Buddha","status-nothing;crash","nothing","2022-12-07 16:55:00.000" +"","Arrog","status-playable","playable","2020-12-16 17:20:50.000" +"01006AA013086000","Art Sqool","status-playable;nvdec","playable","2022-10-16 20:42:37.000" +"01008EC006BE2000","Art of Balance","gpu;status-ingame;ldn-works","ingame","2022-07-21 17:13:57.000" +"010062F00CAE2000","Art of Balance DEMO","gpu;slow;status-ingame","ingame","2021-02-10 17:17:12.000" +"","Artifact Adventure Gaiden DX","status-playable","playable","2020-12-16 17:49:25.000" +"0100C2500CAB6000","Ary and the Secret of Seasons","status-playable","playable","2022-10-07 20:45:09.000" +"","Asemblance","UE4;gpu;status-ingame","ingame","2020-12-16 18:01:23.000" +"","Ash of Gods: Redemption","deadlock;status-nothing","nothing","2020-08-10 18:08:32.000" +"010027B00E40E000","Ashen","status-playable;nvdec;online-broken;UE4","playable","2022-09-17 12:19:14.000" +"01007B000C834000","Asphalt 9: Legends","services;status-menus;crash;online-broken","menus","2022-12-07 13:28:29.000" +"01007F600B134000","Assassin's Creed III Remastered","status-boots;nvdec","boots","2024-06-25 20:12:11.000" +"010044700DEB0000","Assassin's Creed The Rebel Collection","gpu;status-ingame","ingame","2024-05-19 07:58:56.000" +"0100DF200B24C000","Assault Android Cactus+","status-playable","playable","2021-06-03 13:23:55.000" +"","Assault Chainguns KM","crash;gpu;status-ingame","ingame","2020-12-14 12:48:34.000" +"0100C5E00E540000","Assault on Metaltron Demo","status-playable","playable","2021-02-10 19:48:06.000" +"010057A00C1F6000","Astebreed","status-playable","playable","2022-07-21 17:33:54.000" +"010050400BD38000","Asterix & Obelix XXL 2","deadlock;status-ingame;nvdec","ingame","2022-07-21 17:54:14.000" +"010081500EA1E000","Asterix & Obelix XXL3: The Crystal Menhir","gpu;status-ingame;nvdec;regression","ingame","2022-11-28 14:19:23.000" +"0100F46011B50000","Asterix & Obelix XXL: Romastered","gpu;status-ingame;nvdec;opengl","ingame","2023-08-16 21:22:06.000" +"01007300020FA000","Astral Chain","status-playable","playable","2024-07-17 18:02:19.000" +"","Astro Bears Party","status-playable","playable","2020-05-28 11:21:58.000" +"0100F0400351C000","Astro Duel Deluxe","32-bit;status-playable","playable","2021-06-03 11:21:48.000" +"","AstroWings SpaceWar","status-playable","playable","2020-12-14 13:10:44.000" +"0100B80010C48000","Astrologaster","cpu;status-nothing;32-bit;crash","nothing","2023-06-28 15:39:31.000" +"010099801870E000","Atari 50 The Anniversary Celebration","slow;status-playable","playable","2022-11-14 19:42:10.000" +"0100D9D00EE8C000","Atelier Ayesha: The Alchemist of Dusk DX","status-menus;crash;nvdec;Needs Update","menus","2021-11-24 07:29:54.000" +"0100E5600EE8E000","Atelier Escha & Logy: Alchemists Of The Dusk Sky DX","status-playable;nvdec","playable","2022-11-20 16:01:41.000" +"010023201421E000","Atelier Firis: The Alchemist and the Mysterious Journey DX","gpu;status-ingame;nvdec","ingame","2022-10-25 22:46:19.000" +"","Atelier Lulua ~ The Scion of Arland ~","nvdec;status-playable","playable","2020-12-16 14:29:19.000" +"010009900947A000","Atelier Lydie & Suelle: The Alchemists and the Mysterious Paintings","nvdec;status-playable","playable","2021-06-03 18:37:01.000" +"","Atelier Meruru ~ The Apprentice of Arland ~ DX","nvdec;status-playable","playable","2020-06-12 00:50:48.000" +"010088600C66E000","Atelier Rorona - The Alchemist of Arland - DX","nvdec;status-playable","playable","2021-04-08 15:33:15.000" +"01002D700B906000","Atelier Rorona Arland no Renkinjutsushi DX (JP)","status-playable;nvdec","playable","2022-12-02 17:26:54.000" +"01009A9012022000","Atelier Ryza 2: Lost Legends & the Secret Fairy","status-playable","playable","2022-10-16 21:06:06.000" +"0100D1900EC80000","Atelier Ryza: Ever Darkness & the Secret Hideout","status-playable","playable","2023-10-15 16:36:50.000" +"","Atelier Shallie: Alchemists of the Dusk Sea DX","nvdec;status-playable","playable","2020-11-25 20:54:12.000" +"010082A01538E000","Atelier Sophie 2: The Alchemist of the Mysterious Dream","status-ingame;crash","ingame","2022-12-01 04:34:03.000" +"01001A5014220000","Atelier Sophie: The Alchemist of the Mysterious Book DX","status-playable","playable","2022-10-25 23:06:20.000" +"","Atelier Totori ~ The Adventurer of Arland ~ DX","nvdec;status-playable","playable","2020-06-12 01:04:56.000" +"01005FE00EC4E000","Atomic Heist","status-playable","playable","2022-10-16 21:24:32.000" +"0100AD30095A4000","Atomicrops","status-playable","playable","2022-08-06 10:05:07.000" +"","Attack of the Toy Tanks","slow;status-ingame","ingame","2020-12-14 12:59:12.000" +"","Attack on Titan 2","status-playable","playable","2021-01-04 11:40:01.000" +"","Automachef","status-playable","playable","2020-12-16 19:51:25.000" +"01006B700EA6A000","Automachef Demo","status-playable","playable","2021-02-10 20:35:37.000" +"","Aviary Attorney: Definitive Edition","status-playable","playable","2020-08-09 20:32:12.000" +"","Avicii Invector","status-playable","playable","2020-10-25 12:12:56.000" +"","AvoCuddle","status-playable","playable","2020-09-02 14:50:13.000" +"0100085012D64000","Awakening of Cthulhu","UE4;status-playable","playable","2021-04-26 13:03:07.000" +"01002F1005F3C000","Away: Journey to the Unexpected","status-playable;nvdec;vulkan-backend-bug","playable","2022-11-06 15:31:04.000" +"","Awesome Pea","status-playable","playable","2020-10-11 12:39:23.000" +"010023800D3F2000","Awesome Pea (Demo)","status-playable","playable","2021-02-10 21:48:21.000" +"0100B7D01147E000","Awesome Pea 2","status-playable","playable","2022-10-01 12:34:19.000" +"","Awesome Pea 2 (Demo) - 0100D2011E28000","crash;status-nothing","nothing","2021-02-10 22:08:27.000" +"0100DA3011174000","Axes","status-playable","playable","2021-04-08 13:01:58.000" +"","Axiom Verge","status-playable","playable","2020-10-20 01:07:18.000" +"010075400DEC6000","Ayakashi koi gikyoku Free Trial","status-playable","playable","2021-02-10 22:22:11.000" +"01006AF012FC8000","Azur Lane: Crosswave","UE4;nvdec;status-playable","playable","2021-04-05 15:15:25.000" +"","Azuran Tales: Trials","status-playable","playable","2020-08-12 15:23:07.000" +"01006FB00990E000","Azure Reflections","nvdec;online;status-playable","playable","2021-04-08 13:18:25.000" +"01004E90149AA000","Azure Striker GUNVOLT 3","status-playable","playable","2022-08-10 13:46:49.000" +"0100192003FA4000","Azure Striker Gunvolt: STRIKER PACK","32-bit;status-playable","playable","2024-02-10 23:51:21.000" +"","Azurebreak Heroes","status-playable","playable","2020-12-16 21:26:17.000" +"01009B901145C000","B.ARK","status-playable;nvdec","playable","2022-11-17 13:35:02.000" +"","BAFL","status-playable","playable","2021-01-13 08:32:51.000" +"","BATTLESLOTHS","status-playable","playable","2020-10-03 08:32:22.000" +"","BATTLESTAR GALACTICA Deadlock","nvdec;status-playable","playable","2020-06-27 17:35:44.000" +"","BATTLLOON","status-playable","playable","2020-12-17 15:48:23.000" +"","BEAST Darling! ~Kemomimi Danshi to Himitsu no Ryou~","crash;status-menus","menus","2020-10-04 06:12:08.000" +"","BIG-Bobby-Car - The Big Race","slow;status-playable","playable","2020-12-10 14:25:06.000" +"","BINGO for Nintendo Switch","status-playable","playable","2020-07-23 16:17:36.000" +"0100E62012D3C000","BIT.TRIP RUNNER","status-playable","playable","2022-10-17 14:23:24.000" +"01000AD012D3A000","BIT.TRIP VOID","status-playable","playable","2022-10-17 14:31:23.000" +"0100C4400CB7C000","BLADE ARCUS Rebellion From Shining","status-playable","playable","2022-07-17 18:52:28.000" +"","BLAZBLUE CENTRALFICTION Special Edition","nvdec;status-playable","playable","2020-12-15 23:50:04.000" +"","BOX Align","crash;services;status-nothing","nothing","2020-04-03 17:26:56.000" +"","BOXBOY! + BOXGIRL!","status-playable","playable","2020-11-08 01:11:54.000" +"0100B7200E02E000","BOXBOY! + BOXGIRL! Demo","demo;status-playable","playable","2021-02-13 14:59:08.000" +"","BQM BlockQuest Maker","online;status-playable","playable","2020-07-31 20:56:50.000" +"01003DD00D658000","BULLETSTORM: DUKE OF SWITCH EDITION","status-playable;nvdec","playable","2022-03-03 08:30:24.000" +"","BUSTAFELLOWS","nvdec;status-playable","playable","2020-10-17 20:04:41.000" +"","BUTCHER","status-playable","playable","2021-01-11 18:50:17.000" +"01002CD00A51C000","Baba Is You","status-playable","playable","2022-07-17 05:36:54.000" +"","Back to Bed","nvdec;status-playable","playable","2020-12-16 20:52:04.000" +"0100FEA014316000","Backworlds","status-playable","playable","2022-10-25 23:20:34.000" +"0100EAF00E32E000","BaconMan","status-menus;crash;nvdec","menus","2021-11-20 02:36:21.000" +"01000CB00D094000","Bad Dream: Coma","deadlock;status-boots","boots","2023-08-03 00:54:18.000" +"0100B3B00D81C000","Bad Dream: Fever","status-playable","playable","2021-06-04 18:33:12.000" +"","Bad Dudes","status-playable","playable","2020-12-10 12:30:56.000" +"0100E98006F22000","Bad North","status-playable","playable","2022-07-17 13:44:25.000" +"","Bad North Demo","status-playable","playable","2021-02-10 22:48:38.000" +"010076B011EC8000","Baila Latino","status-playable","playable","2021-04-14 16:40:24.000" +"","Bakugan Champions of Vestroia","status-playable","playable","2020-11-06 19:07:39.000" +"01008260138C4000","Bakumatsu Renka SHINSENGUMI","status-playable","playable","2022-10-25 23:37:31.000" +"0100438012EC8000","Balan Wonderworld","status-playable;nvdec;UE4","playable","2022-10-22 13:08:43.000" +"0100E48013A34000","Balan Wonderworld Demo","gpu;services;status-ingame;UE4;demo","ingame","2023-02-16 20:05:07.000" +"0100CD801CE5E000","Balatro","status-ingame","ingame","2024-04-21 02:01:53.000" +"010010A00DA48000","Baldur's Gate and Baldur's Gate II: Enhanced Editions","32-bit;status-playable","playable","2022-09-12 23:52:15.000" +"0100BC400FB64000","Balthazar's Dreams","status-playable","playable","2022-09-13 00:13:22.000" +"01008D30128E0000","Bamerang","status-playable","playable","2022-10-26 00:29:39.000" +"","Bang Dream Girls Band Party for Nintendo Switch","status-playable","playable","2021-09-19 03:06:58.000" +"","Banner Saga 2","crash;status-boots","boots","2021-01-13 08:56:09.000" +"","Banner Saga 3","slow;status-boots","boots","2021-01-11 16:53:57.000" +"0100CE800B94A000","Banner Saga Trilogy","slow;status-playable","playable","2024-03-06 11:25:20.000" +"010013C010C5C000","Banner of the Maid","status-playable","playable","2021-06-14 15:23:37.000" +"","Baobabs Mauseoleum Ep 1: Ovnifagos Don't Eat Flamingos","status-playable","playable","2020-07-15 05:06:29.000" +"","Baobabs Mausoleum Ep.3: Un Pato en Muertoburgo","nvdec;status-playable","playable","2020-12-17 11:43:10.000" +"","Baobabs Mausoleum Ep2: 1313 Barnabas Dead Ends Drive","status-playable","playable","2020-12-17 11:22:50.000" +"0100D3000AEC2000","Baobabs Mausoleum: DEMO","status-playable","playable","2021-02-10 22:59:25.000" +"01003350102E2000","Barbarous! Tavern of Emyr","status-playable","playable","2022-10-16 21:50:24.000" +"0100F7E01308C000","Barbearian","Needs Update;gpu;status-ingame","ingame","2021-06-28 16:27:50.000" +"010039C0106C6000","Baron: Fur Is Gonna Fly","status-boots;crash","boots","2022-02-06 02:05:43.000" +"","Barry Bradford's Putt Panic Party","nvdec;status-playable","playable","2020-06-17 01:08:34.000" +"01004860080A0000","Baseball Riot","status-playable","playable","2021-06-04 18:07:27.000" +"0100E3100450E000","Bass Pro Shops: The Strike - Championship Edition","gpu;status-boots;32-bit","boots","2022-12-09 15:58:16.000" +"010038600B27E000","Bastion","status-playable","playable","2022-02-15 14:15:24.000" +"","Batbarian: Testament of the Primordials","status-playable","playable","2020-12-17 12:00:59.000" +"0100C07018CA6000","Baten Kaitos I & II HD Remaster (Europe/USA)","services;status-boots;Needs Update","boots","2023-10-01 00:44:32.000" +"0100F28018CA4000","Baten Kaitos I & II HD Remaster (Japan)","services;status-boots;Needs Update","boots","2023-10-24 23:11:54.000" +"","Batman - The Telltale Series","nvdec;slow;status-playable","playable","2021-01-11 18:19:35.000" +"01003f00163ce000","Batman: Arkham City","status-playable","playable","2024-09-11 00:30:19.000" +"0100ACD0163D0000","Batman: Arkham Knight","gpu;status-ingame;mac-bug","ingame","2024-06-25 20:24:42.000" +"","Batman: The Enemy Within","crash;status-nothing","nothing","2020-10-16 05:49:27.000" +"0100747011890000","Battle Axe","status-playable","playable","2022-10-26 00:38:01.000" +"","Battle Chasers: Nightwar","nvdec;slow;status-playable","playable","2021-01-12 12:27:34.000" +"","Battle Chef Brigade","status-playable","playable","2021-01-11 14:16:28.000" +"0100DBB00CAEE000","Battle Chef Brigade Demo","status-playable","playable","2021-02-10 23:15:07.000" +"0100A3B011EDE000","Battle Hunters","gpu;status-ingame","ingame","2022-11-12 09:19:17.000" +"","Battle Planet - Judgement Day","status-playable","playable","2020-12-17 14:06:20.000" +"","Battle Princess Madelyn","status-playable","playable","2021-01-11 13:47:23.000" +"0100A7500DF64000","Battle Princess Madelyn Royal Edition","status-playable","playable","2022-09-26 19:14:49.000" +"010099B00E898000","Battle Supremacy - Evolution","gpu;status-boots;nvdec","boots","2022-02-17 09:02:50.000" +"0100DEB00D5A8000","Battle Worlds: Kronos","nvdec;status-playable","playable","2021-06-04 17:48:02.000" +"","Battle of Kings","slow;status-playable","playable","2020-12-17 12:45:23.000" +"0100650010DD4000","Battleground","status-ingame;crash","ingame","2021-09-06 11:53:23.000" +"01006D800A988000","Battlezone Gold Edition","gpu;ldn-untested;online;status-boots","boots","2021-06-04 18:36:05.000" +"010076F0049A2000","Bayonetta","status-playable;audout","playable","2022-11-20 15:51:59.000" +"01007960049A0000","Bayonetta 2","status-playable;nvdec;ldn-works;LAN","playable","2022-11-26 03:46:09.000" +"01004A4010FEA000","Bayonetta 3","gpu;status-ingame;crash;nvdec;vulkan-backend-bug;opengl-backend-bug;amd-vendor-bug;ASTC","ingame","2024-09-28 14:34:33.000" +"010002801A3FA000","Bayonetta Origins Cereza and the Lost Demon Demo","gpu;status-ingame;demo","ingame","2024-02-17 06:06:28.000" +"0100CF5010FEC000","Bayonetta Origins: Cereza and the Lost Demon","gpu;status-ingame","ingame","2024-02-27 01:39:49.000" +"","Be-A Walker","slow;status-ingame","ingame","2020-09-02 15:00:31.000" +"010095C00406C000","Beach Buggy Racing","online;status-playable","playable","2021-04-13 23:16:50.000" +"010020700DE04000","Bear With Me - The Lost Robots","nvdec;status-playable","playable","2021-02-27 14:20:10.000" +"010024200E97E800","Bear With Me - The Lost Robots Demo","nvdec;status-playable","playable","2021-02-12 22:38:12.000" +"","Bear's Restaurant - 0100CE014A4E000","status-playable","playable","2024-08-11 21:26:59.000" +"","Beat Cop","status-playable","playable","2021-01-06 19:26:48.000" +"01002D20129FC000","Beat Me!","status-playable;online-broken","playable","2022-10-16 21:59:26.000" +"01006B0014590000","Beautiful Desolation","gpu;status-ingame;nvdec","ingame","2022-10-26 10:34:38.000" +"","Bee Simulator","UE4;crash;status-boots","boots","2020-07-15 12:13:13.000" +"010018F007786000","BeeFense BeeMastered","status-playable","playable","2022-11-17 15:38:12.000" +"","Behold the Kickmen","status-playable","playable","2020-06-27 12:49:45.000" +"","Beholder","status-playable","playable","2020-10-16 12:48:58.000" +"01006E1004404000","Ben 10","nvdec;status-playable","playable","2021-02-26 14:08:35.000" +"01009CD00E3AA000","Ben 10: Power Trip","status-playable;nvdec","playable","2022-10-09 10:52:12.000" +"010074500BBC4000","Bendy and the Ink Machine","status-playable","playable","2023-05-06 20:35:39.000" +"010021F00C1C0000","Bertram Fiddle Episode 2: A Bleaker Predicklement","nvdec;status-playable","playable","2021-02-22 14:56:37.000" +"010068600AD16000","Beyblade Burst Battle Zero","services;status-menus;crash;Needs Update","menus","2022-11-20 15:48:32.000" +"010056500CAD8000","Beyond Enemy Lines: Covert Operations","status-playable;UE4","playable","2022-10-01 13:11:50.000" +"0100B8F00DACA000","Beyond Enemy Lines: Essentials","status-playable;nvdec;UE4","playable","2022-09-26 19:48:16.000" +"","Bibi & Tina - Adventures with Horses","nvdec;slow;status-playable","playable","2021-01-13 08:58:09.000" +"010062400E69C000","Bibi & Tina at the horse farm","status-playable","playable","2021-04-06 16:31:39.000" +"","Bibi Blocksberg - Big Broom Race 3","status-playable","playable","2021-01-11 19:07:16.000" +"","Big Buck Hunter Arcade","nvdec;status-playable","playable","2021-01-12 20:31:39.000" +"010088100C35E000","Big Crown: Showdown","status-menus;nvdec;online;ldn-untested","menus","2022-07-17 18:25:32.000" +"0100A42011B28000","Big Dipper","status-playable","playable","2021-06-14 15:08:19.000" +"01002FA00DE72000","Big Drunk Satanic Massacre","status-playable","playable","2021-03-04 21:28:22.000" +"","Big Pharma","status-playable","playable","2020-07-14 15:27:30.000" +"010057700FF7C000","Billion Road","status-playable","playable","2022-11-19 15:57:43.000" +"01002620102C6000","BioShock 2 Remastered","services;status-nothing","nothing","2022-10-29 14:39:22.000" +"0100D560102C8000","BioShock Infinite: The Complete Edition","services-horizon;status-nothing;crash","nothing","2024-08-11 21:35:01.000" +"0100AD10102B2000","BioShock Remastered","services-horizon;status-boots;crash;Needs Update","boots","2024-06-06 01:08:52.000" +"01004BA017CD6000","Biomutant","status-ingame;crash","ingame","2024-05-16 15:46:36.000" +"010053B0117F8000","Biped","status-playable;nvdec","playable","2022-10-01 13:32:58.000" +"01001B700B278000","Bird Game +","status-playable;online","playable","2022-07-17 18:41:57.000" +"0100B6B012FF4000","Birds and Blocks Demo","services;status-boots;demo","boots","2022-04-10 04:53:03.000" +"","Bite the Bullet","status-playable","playable","2020-10-14 23:10:11.000" +"010026E0141C8000","Bitmaster","status-playable","playable","2022-12-13 14:05:51.000" +"","Biz Builder Delux","slow;status-playable","playable","2020-12-15 21:36:25.000" +"0100DD1014AB8000","Black Book","status-playable;nvdec","playable","2022-12-13 16:38:53.000" +"010049000B69E000","Black Future '88","status-playable;nvdec","playable","2022-09-13 11:24:37.000" +"01004BE00A682000","Black Hole Demo","status-playable","playable","2021-02-12 23:02:17.000" +"0100C3200E7E6000","Black Legend","gpu;status-ingame;UE4;vulkan-backend-bug;opengl-backend-bug","ingame","2022-10-22 12:54:48.000" +"","Blackjack Hands","status-playable","playable","2020-11-30 14:04:51.000" +"0100A0A00E660000","Blackmoor2","status-playable;online-broken","playable","2022-09-26 20:26:34.000" +"010032000EA2C000","Blacksad: Under the Skin","status-playable","playable","2022-09-13 11:38:04.000" +"01006B400C178000","Blacksea Odyssey","status-playable;nvdec","playable","2022-10-16 22:14:34.000" +"010068E013450000","Blacksmith of the Sand Kingdom","status-playable","playable","2022-10-16 22:37:44.000" +"0100EA1018A2E000","Blade Assault","audio;status-nothing","nothing","2024-04-29 14:32:50.000" +"01009CC00E224000","Blade II The Return of Evil","audio;status-ingame;crash;UE4","ingame","2021-11-14 02:49:59.000" +"01005950022EC000","Blade Strangers","status-playable;nvdec","playable","2022-07-17 19:02:43.000" +"0100DF0011A6A000","Bladed Fury","status-playable","playable","2022-10-26 11:36:26.000" +"0100CFA00CC74000","Blades of Time","deadlock;status-boots;online","boots","2022-07-17 19:19:58.000" +"01006CC01182C000","Blair Witch","status-playable;nvdec;UE4","playable","2022-10-01 14:06:16.000" +"010039501405E000","Blanc","gpu;slow;status-ingame","ingame","2023-02-22 14:00:13.000" +"0100698009C6E000","Blasphemous","nvdec;status-playable","playable","2021-03-01 12:15:31.000" +"0100302010338000","Blasphemous Demo","status-playable","playable","2021-02-12 23:49:56.000" +"0100225000FEE000","Blaster Master Zero","32-bit;status-playable","playable","2021-03-05 13:22:33.000" +"01005AA00D676000","Blaster Master Zero 2","status-playable","playable","2021-04-08 15:22:59.000" +"010025B002E92000","Blaster Master Zero DEMO","status-playable","playable","2021-02-12 23:59:06.000" +"","BlazBlue: Cross Tag Battle","nvdec;online;status-playable","playable","2021-01-05 20:29:37.000" +"","Blazing Beaks","status-playable","playable","2020-06-04 20:37:06.000" +"","Blazing Chrome","status-playable","playable","2020-11-16 04:56:54.000" +"010091700EA2A000","Bleep Bloop DEMO","nvdec;status-playable","playable","2021-02-13 00:20:53.000" +"010089D011310000","Blind Men","audout;status-playable","playable","2021-02-20 14:15:38.000" +"0100743013D56000","Blizzard Arcade Collection","status-playable;nvdec","playable","2022-08-03 19:37:26.000" +"0100F3500A20C000","BlobCat","status-playable","playable","2021-04-23 17:09:30.000" +"0100E1C00DB6C000","Block-a-Pix Deluxe Demo","status-playable","playable","2021-02-13 00:37:39.000" +"0100C6A01AD56000","Bloo Kid","status-playable","playable","2024-05-01 17:18:04.000" +"010055900FADA000","Bloo Kid 2","status-playable","playable","2024-05-01 17:16:57.000" +"","Blood & Guts Bundle","status-playable","playable","2020-06-27 12:57:35.000" +"01007E700D17E000","Blood Waves","gpu;status-ingame","ingame","2022-07-18 13:04:46.000" +"","Blood will be Spilled","nvdec;status-playable","playable","2020-12-17 03:02:03.000" +"","Bloodstained: Curse of the Moon","status-playable","playable","2020-09-04 10:42:17.000" +"","Bloodstained: Curse of the Moon 2","status-playable","playable","2020-09-04 10:56:27.000" +"010025A00DF2A000","Bloodstained: Ritual of the Night","status-playable;nvdec;UE4","playable","2022-07-18 14:27:35.000" +"0100E510143EC000","Bloody Bunny : The Game","status-playable;nvdec;UE4","playable","2022-10-22 13:18:55.000" +"0100B8400A1C6000","Bloons TD 5","Needs Update;audio;gpu;services;status-boots","boots","2021-04-18 23:02:46.000" +"0100C1000706C000","Blossom Tales","status-playable","playable","2022-07-18 16:43:07.000" +"01000EB01023E000","Blossom Tales Demo","status-playable","playable","2021-02-13 14:22:53.000" +"010073B010F6E000","Blue Fire","status-playable;UE4","playable","2022-10-22 14:46:11.000" +"0100721013510000","Body of Evidence","status-playable","playable","2021-04-25 22:22:11.000" +"0100AD1010CCE000","Bohemian Killing","status-playable;vulkan-backend-bug","playable","2022-09-26 22:41:37.000" +"010093700ECEC000","Boku to Nurse no Kenshuu Nisshi","status-playable","playable","2022-11-21 20:38:34.000" +"01001D900D9AC000","Bokujou Monogatari Saikai no Mineraru Taun (Story of Seasons: Friends of Mineral Town)","slow;status-ingame;crash;Needs Update","ingame","2022-04-24 22:46:04.000" +"0100317014B7C000","Bomb Rush Cyberfunk","status-playable","playable","2023-09-28 19:51:57.000" +"01007900080B6000","Bomber Crew","status-playable","playable","2021-06-03 14:21:28.000" +"0100A1F012948000","Bomber Fox","nvdec;status-playable","playable","2021-04-19 17:58:13.000" +"010087300445A000","Bombslinger","services;status-menus","menus","2022-07-19 12:53:15.000" +"01007A200F452000","Book of Demons","status-playable","playable","2022-09-29 12:03:43.000" +"","Bookbound Brigade","status-playable","playable","2020-10-09 14:30:29.000" +"","Boom Blaster","status-playable","playable","2021-03-24 10:55:56.000" +"010081A00EE62000","Boomerang Fu","status-playable","playable","2024-07-28 01:12:41.000" +"010069F0135C4000","Boomerang Fu Demo Version","demo;status-playable","playable","2021-02-13 14:38:13.000" +"010096F00FF22000","Borderlands 2: Game of the Year Edition","status-playable","playable","2022-04-22 18:35:07.000" +"01009970122E4000","Borderlands 3","gpu;status-ingame","ingame","2024-07-15 04:38:14.000" +"010064800F66A000","Borderlands: Game of the Year Edition","slow;status-ingame;online-broken;ldn-untested","ingame","2023-07-23 21:10:36.000" +"010007400FF24000","Borderlands: The Pre-Sequel Ultimate Edition","nvdec;status-playable","playable","2021-06-09 20:17:10.000" +"01008E500AFF6000","Boreal Blade","gpu;ldn-untested;online;status-ingame","ingame","2021-06-11 15:37:14.000" +"010092C013FB8000","Boris The Rocket","status-playable","playable","2022-10-26 13:23:09.000" +"010076F00EBE4000","Bossgard","status-playable;online-broken","playable","2022-10-04 14:21:13.000" +"010069B00EAC8000","Bot Vice Demo","crash;demo;status-ingame","ingame","2021-02-13 14:52:42.000" +"","Bouncy Bob 2","status-playable","playable","2020-07-14 16:51:53.000" +"0100E1200DC1A000","Bounty Battle","status-playable;nvdec","playable","2022-10-04 14:40:51.000" +"","Bow to Blood: Last Captain Standing","slow;status-playable","playable","2020-10-23 10:51:21.000" +"0100E87017D0E000","Bramble The Mountain King","services-horizon;status-playable","playable","2024-03-06 09:32:17.000" +"","Brave Dungeon + Dark Witch's Story: COMBAT","status-playable","playable","2021-01-12 21:06:34.000" +"010081501371E000","BraveMatch","status-playable;UE4","playable","2022-10-26 13:32:15.000" +"01006DC010326000","Bravely Default II","gpu;status-ingame;crash;Needs Update;UE4","ingame","2024-04-26 06:11:26.000" +"0100B6801137E000","Bravely Default II Demo","gpu;status-ingame;crash;UE4;demo","ingame","2022-09-27 05:39:47.000" +"0100F60017D4E000","Bravery and Greed","gpu;deadlock;status-boots","boots","2022-12-04 02:23:47.000" +"","Brawl","nvdec;slow;status-playable","playable","2020-06-04 14:23:18.000" +"010068F00F444000","Brawl Chess","status-playable;nvdec","playable","2022-10-26 13:59:17.000" +"0100C6800B934000","Brawlhalla","online;opengl;status-playable","playable","2021-06-03 18:26:09.000" +"010060200A4BE000","Brawlout","ldn-untested;online;status-playable","playable","2021-06-04 17:35:35.000" +"0100C1B00E1CA000","Brawlout Demo","demo;status-playable","playable","2021-02-13 22:46:53.000" +"010022C016DC8000","Breakout: Recharged","slow;status-ingame","ingame","2022-11-06 15:32:57.000" +"01000AA013A5E000","Breathedge","UE4;nvdec;status-playable","playable","2021-05-06 15:44:28.000" +"","Breathing Fear","status-playable","playable","2020-07-14 15:12:29.000" +"","Brick Breaker","crash;status-ingame","ingame","2020-12-15 17:03:59.000" +"","Brick Breaker","nvdec;online;status-playable","playable","2020-12-15 18:26:23.000" +"","Bridge 3","status-playable","playable","2020-10-08 20:47:24.000" +"","Bridge Constructor: The Walking Dead","gpu;slow;status-ingame","ingame","2020-12-11 17:31:32.000" +"010011000EA7A000","Brigandine: The Legend of Runersia","status-playable","playable","2021-06-20 06:52:25.000" +"0100703011258000","Brigandine: The Legend of Runersia Demo","status-playable","playable","2021-02-14 14:44:10.000" +"01000BF00BE40000","Bring Them Home","UE4;status-playable","playable","2021-04-12 14:14:43.000" +"010060A00B53C000","Broforce","ldn-untested;online;status-playable","playable","2021-05-28 12:23:38.000" +"0100EDD0068A6000","Broken Age","status-playable","playable","2021-06-04 17:40:32.000" +"","Broken Lines","status-playable","playable","2020-10-16 00:01:37.000" +"01001E60085E6000","Broken Sword 5 - the Serpent's Curse","status-playable","playable","2021-06-04 17:28:59.000" +"0100F19011226000","Brotherhood United Demo","demo;status-playable","playable","2021-02-14 21:10:57.000" +"01000D500D08A000","Brothers: A Tale of Two Sons","status-playable;nvdec;UE4","playable","2022-07-19 14:02:22.000" +"","Brunch Club","status-playable","playable","2020-06-24 13:54:07.000" +"010010900F7B4000","Bubble Bobble 4 Friends","nvdec;status-playable","playable","2021-06-04 15:27:55.000" +"0100DBE00C554000","Bubsy: Paws on Fire!","slow;status-ingame","ingame","2023-08-24 02:44:51.000" +"","Bucket Knight","crash;status-ingame","ingame","2020-09-04 13:11:24.000" +"0100F1B010A90000","Bucket Knight demo","demo;status-playable","playable","2021-02-14 21:23:09.000" +"01000D200AC0C000","Bud Spencer & Terence Hill - Slaps and Beans","status-playable","playable","2022-07-17 12:37:00.000" +"","Bug Fables","status-playable","playable","2020-06-09 11:27:00.000" +"","BurgerTime Party!","slow;status-playable","playable","2020-11-21 14:11:53.000" +"01005780106E8000","BurgerTime Party! Demo","demo;status-playable","playable","2021-02-14 21:34:16.000" +"","Buried Stars","status-playable","playable","2020-09-07 14:11:58.000" +"0100DBF01000A000","Burnout Paradise Remastered","nvdec;online;status-playable","playable","2021-06-13 02:54:46.000" +"","Bury me, my Love","status-playable","playable","2020-11-07 12:47:37.000" +"010030D012FF6000","Bus Driver Simulator","status-playable","playable","2022-10-17 13:55:27.000" +"0100F6400A77E000","CAPCOM BELT ACTION COLLECTION","status-playable;online;ldn-untested","playable","2022-07-21 20:51:23.000" +"0100EAE010560000","CAPTAIN TSUBASA: RISE OF NEW CHAMPIONS","status-playable;online-broken;vulkan-backend-bug","playable","2022-10-09 11:20:50.000" +"01002320137CC000","CAPTAIN TSUBASA: RISE OF NEW CHAMPIONS DEMO VERSION","slow;status-playable","playable","2021-02-14 22:45:35.000" +"","CARRION","crash;status-nothing","nothing","2020-08-13 17:15:12.000" +"0100C4C0132F8000","CASE 2: Animatronics Survival","status-playable;nvdec;UE4;vulkan-backend-bug","playable","2022-10-09 11:45:03.000" +"01007600115CE000","CHAOS CODE -NEW SIGN OF CATASTROPHE-","status-boots;crash;nvdec","boots","2022-04-04 12:24:21.000" +"0100957016B90000","CHAOS;HEAD NOAH","status-playable","playable","2022-06-02 22:57:19.000" +"0100A3A00CC7E000","CLANNAD","status-playable","playable","2021-06-03 17:01:02.000" +"","CLANNAD Side Stories - 01007B01372C000","status-playable","playable","2022-10-26 15:03:04.000" +"01002E700C366000","COCOON","gpu;status-ingame","ingame","2024-03-06 11:33:08.000" +"","CODE SHIFTER","status-playable","playable","2020-08-09 15:20:55.000" +"","COLLECTION of SaGA FINAL FANTASY LEGEND","status-playable","playable","2020-12-30 19:11:16.000" +"010015801308E000","CONARIUM","UE4;nvdec;status-playable","playable","2021-04-26 17:57:53.000" +"","CONTRA: ROGUE CORPS","crash;nvdec;regression;status-menus","menus","2021-01-07 13:23:35.000" +"0100B8200ECA6000","CONTRA: ROGUE CORPS Demo","gpu;status-ingame","ingame","2022-09-04 16:46:52.000" +"01003DD00F94A000","COTTOn Reboot! [ コットン リブート! ]","status-playable","playable","2022-05-24 16:29:24.000" +"01004BC0166CC000","CRISIS CORE –FINAL FANTASY VII– REUNION","status-playable","playable","2022-12-19 15:53:59.000" +"0100E24004510000","Cabela's: The Hunt - Championship Edition","status-menus;32-bit","menus","2022-07-21 20:21:25.000" +"01000B900D8B0000","Cadence of Hyrule Crypt of the NecroDancer Featuring The Legend of Zelda","slow;status-playable;nvdec","playable","2024-04-01 22:43:40.000" +"","Cadence of Hyrule Crypt of the NecroDancer Featuring The Legend of Zelda Demo - 010065700EE0600","demo;gpu;nvdec;status-ingame","ingame","2021-02-14 21:48:15.000" +"010060400D21C000","Cafeteria Nipponica Demo","demo;status-playable","playable","2021-02-14 22:11:35.000" +"","Café Enchanté","status-playable","playable","2020-11-13 14:54:25.000" +"0100699012F82000","Cake Bash Demo","crash;demo;status-ingame","ingame","2021-02-14 22:21:15.000" +"01004FD00D66A000","Caladrius Blaze","deadlock;status-nothing;nvdec","nothing","2022-12-07 16:44:37.000" +"","Calculation Castle: Greco's Ghostly Challenge ""Addition","32-bit;status-playable","playable","2020-11-01 23:40:11.000" +"","Calculation Castle: Greco's Ghostly Challenge ""Division","32-bit;status-playable","playable","2020-11-01 23:54:55.000" +"","Calculation Castle: Greco's Ghostly Challenge ""Multiplication","32-bit;status-playable","playable","2020-11-02 00:04:33.000" +"","Calculation Castle: Greco's Ghostly Challenge ""Subtraction","32-bit;status-playable","playable","2020-11-01 23:47:42.000" +"010004701504A000","Calculator","status-playable","playable","2021-06-11 13:27:20.000" +"010013A00E750000","Calico","status-playable","playable","2022-10-17 14:44:28.000" +"010046000EE40000","Call of Cthulhu","status-playable;nvdec;UE4","playable","2022-12-18 03:08:30.000" +"0100B4700BFC6000","Call of Juarez: Gunslinger","gpu;status-ingame;nvdec","ingame","2022-09-17 16:49:46.000" +"0100593008BDC000","Can't Drive This","status-playable","playable","2022-10-22 14:55:17.000" +"","Candle - The Power of the Flame","nvdec;status-playable","playable","2020-05-26 12:10:20.000" +"01001E0013208000","Capcom Arcade Stadium","status-playable","playable","2021-03-17 05:45:14.000" +"","Capcom Beat 'Em Up Bundle","status-playable","playable","2020-03-23 18:31:24.000" +"01009BF0072D4000","Captain Toad: Treasure Tracker","32-bit;status-playable","playable","2024-04-25 00:50:16.000" +"01002C400B6B6000","Captain Toad: Treasure Tracker Demo","32-bit;demo;status-playable","playable","2021-02-14 22:36:09.000" +"","Car Mechanic Manager","status-playable","playable","2020-07-23 18:50:17.000" +"01007BD00AE70000","Car Quest","deadlock;status-menus","menus","2021-11-18 08:59:18.000" +"0100DA70115E6000","Caretaker","status-playable","playable","2022-10-04 14:52:24.000" +"0100DD6014870000","Cargo Crew Driver","status-playable","playable","2021-04-19 12:54:22.000" +"010088C0092FE000","Carnival Games","status-playable;nvdec","playable","2022-07-21 21:01:22.000" +"","Carnivores: Dinosaur Hunt","status-playable","playable","2022-12-14 18:46:06.000" +"01008D1001512000","Cars 3 Driven to Win","gpu;status-ingame","ingame","2022-07-21 21:21:05.000" +"0100810012A1A000","Carto","status-playable","playable","2022-09-04 15:37:06.000" +"0100C4E004406000","Cartoon Network Adventure Time: Pirates of the Enchiridion","status-playable;nvdec","playable","2022-07-21 21:49:01.000" +"0100085003A2A000","Cartoon Network Battle Crashers","status-playable","playable","2022-07-21 21:55:40.000" +"010066F01A0E0000","Cassette Beasts","status-playable","playable","2024-07-22 20:38:43.000" +"010001300D14A000","Castle Crashers Remastered","gpu;status-boots","boots","2024-08-10 09:21:20.000" +"0100F6D01060E000","Castle Crashers Remastered Demo","gpu;status-boots;demo","boots","2022-04-10 10:57:10.000" +"0100DA2011F18000","Castle Pals","status-playable","playable","2021-03-04 21:00:33.000" +"01003C100445C000","Castle of Heart","status-playable;nvdec","playable","2022-07-21 23:10:45.000" +"0100F5500FA0E000","Castle of No Escape 2","status-playable","playable","2022-09-13 13:51:42.000" +"","CastleStorm 2","UE4;crash;nvdec;status-boots","boots","2020-10-25 11:22:44.000" +"010097C00AB66000","Castlestorm","status-playable;nvdec","playable","2022-07-21 22:49:14.000" +"","Castlevania Anniversary Collection","audio;status-playable","playable","2020-05-23 11:40:29.000" +"010076000C86E000","Cat Girl Without Salad: Amuse-Bouche","status-playable","playable","2022-09-03 13:01:47.000" +"","Cat Quest","status-playable","playable","2020-04-02 23:09:32.000" +"","Cat Quest II","status-playable","playable","2020-07-06 23:52:09.000" +"0100E86010220000","Cat Quest II Demo","demo;status-playable","playable","2021-02-15 14:11:57.000" +"0100BF00112C0000","Catherine Full Body","status-playable;nvdec","playable","2023-04-02 11:00:37.000" +"0100BAE0077E4000","Catherine Full Body for Nintendo Switch (JP)","Needs Update;gpu;status-ingame","ingame","2021-02-21 18:06:11.000" +"010004400B28A000","Cattails","status-playable","playable","2021-06-03 14:36:57.000" +"","Cave Story+","status-playable","playable","2020-05-22 09:57:25.000" +"01001A100C0E8000","Caveblazers","slow;status-ingame","ingame","2021-06-09 17:57:28.000" +"","Caveman Warriors","status-playable","playable","2020-05-22 11:44:20.000" +"","Caveman Warriors Demo","demo;status-playable","playable","2021-02-15 14:44:08.000" +"","Celeste","status-playable","playable","2020-06-17 10:14:40.000" +"01006B000A666000","Cendrillon palikA","gpu;status-ingame;nvdec","ingame","2022-07-21 22:52:24.000" +"0100F52013A66000","Charge Kid","gpu;status-boots;audout","boots","2024-02-11 01:17:47.000" +"","Chasm","status-playable","playable","2020-10-23 11:03:43.000" +"010034301A556000","Chasm: The Rift","gpu;status-ingame","ingame","2024-04-29 19:02:48.000" +"0100A5900472E000","Chess Ultra","status-playable;UE4","playable","2023-08-30 23:06:31.000" +"0100E3C00A118000","Chicken Assassin: Reloaded","status-playable","playable","2021-02-20 13:29:01.000" +"","Chicken Police - Paint it RED!","nvdec;status-playable","playable","2020-12-10 15:10:11.000" +"0100F6C00A016000","Chicken Range","status-playable","playable","2021-04-23 12:14:23.000" +"","Chicken Rider","status-playable","playable","2020-05-22 11:31:17.000" +"0100CAC011C3A000","Chickens Madness DEMO","UE4;demo;gpu;nvdec;status-ingame","ingame","2021-02-15 15:02:10.000" +"","Child of Light","nvdec;status-playable","playable","2020-12-16 10:23:10.000" +"01002DE00C250000","Children of Morta","gpu;status-ingame;nvdec","ingame","2022-09-13 17:48:47.000" +"","Children of Zodiarcs","status-playable","playable","2020-10-04 14:23:33.000" +"010046F012A04000","Chinese Parents","status-playable","playable","2021-04-08 12:56:41.000" +"01006A30124CA000","Chocobo GP","gpu;status-ingame;crash","ingame","2022-06-04 14:52:18.000" +"","Chocobo's Mystery Dungeon Every Buddy!","slow;status-playable","playable","2020-05-26 13:53:13.000" +"","Choices That Matter: And The Sun Went Out","status-playable","playable","2020-12-17 15:44:08.000" +"","Chou no Doku Hana no Kusari: Taishou Irokoi Ibun","gpu;nvdec;status-ingame","ingame","2020-09-28 17:58:04.000" +"","ChromaGun","status-playable","playable","2020-05-26 12:56:42.000" +"","Chronos","UE4;gpu;nvdec;status-ingame","ingame","2020-12-11 22:16:35.000" +"","Circle of Sumo","status-playable","playable","2020-05-22 12:45:21.000" +"01008FA00D686000","Circuits","status-playable","playable","2022-09-19 11:52:50.000" +"","Cities: Skylines - Nintendo Switch Edition","status-playable","playable","2020-12-16 10:34:57.000" +"0100D9C012900000","Citizens Unite!: Earth x Space","gpu;status-ingame","ingame","2023-10-22 06:44:19.000" +"0100E4200D84E000","Citizens of Space","gpu;status-boots","boots","2023-10-22 06:45:44.000" +"01005E501284E000","City Bus Driving Simulator","status-playable","playable","2021-06-15 21:25:59.000" +"01005ED0107F4000","Clash Force","status-playable","playable","2022-10-01 23:45:48.000" +"010009300AA6C000","Claybook","slow;status-playable;nvdec;online;UE4","playable","2022-07-22 11:11:34.000" +"","Clea","crash;status-ingame","ingame","2020-12-15 16:22:56.000" +"010045E0142A4000","Clea 2","status-playable","playable","2021-04-18 14:25:18.000" +"01008C100C572000","Clock Zero ~Shuuen no Ichibyou~ Devote","status-playable;nvdec","playable","2022-12-04 22:19:14.000" +"0100DF9013AD4000","Clocker","status-playable","playable","2021-04-05 15:05:13.000" +"0100B7200DAC6000","Close to the Sun","status-boots;crash;nvdec;UE4","boots","2021-11-04 09:19:41.000" +"010047700D540000","Clubhouse Games: 51 Worldwide Classics","status-playable;ldn-works","playable","2024-05-21 16:12:57.000" +"","Clue","crash;online;status-menus","menus","2020-11-10 09:23:48.000" +"","ClusterPuck 99","status-playable","playable","2021-01-06 00:28:12.000" +"010096900A4D2000","Clustertruck","slow;status-ingame","ingame","2021-02-19 21:07:09.000" +"01005790110F0000","Cobra Kai The Karate Kid Saga Continues","status-playable","playable","2021-06-17 15:59:13.000" +"010034E005C9C000","Code of Princess EX","nvdec;online;status-playable","playable","2021-06-03 10:50:13.000" +"010002400F408000","Code: Realize ~Future Blessings~","status-playable;nvdec","playable","2023-03-31 16:57:47.000" +"0100CF800C810000","Coffee Crisis","status-playable","playable","2021-02-20 12:34:52.000" +"","Coffee Talk","status-playable","playable","2020-08-10 09:48:44.000" +"0100178009648000","Coffin Dodgers","status-playable","playable","2021-02-20 14:57:41.000" +"010035B01706E000","Cold Silence","cpu;status-nothing;crash","nothing","2024-07-11 17:06:14.000" +"010083E00F40E000","Collar X Malice","status-playable;nvdec","playable","2022-10-02 11:51:56.000" +"0100E3B00F412000","Collar X Malice -Unlimited-","status-playable;nvdec","playable","2022-10-04 15:30:40.000" +"","Collection of Mana","status-playable","playable","2020-10-19 19:29:45.000" +"010030800BC36000","Collidalot","status-playable;nvdec","playable","2022-09-13 14:09:27.000" +"","Color Zen","status-playable","playable","2020-05-22 10:56:17.000" +"","Colorgrid","status-playable","playable","2020-10-04 01:50:52.000" +"0100A7000BD28000","Coloring Book","status-playable","playable","2022-07-22 11:17:05.000" +"010020500BD86000","Colors Live","gpu;services;status-boots;crash","boots","2023-02-26 02:51:07.000" +"0100E2F0128B4000","Colossus Down","status-playable","playable","2021-02-04 20:49:50.000" +"0100C4D00D16A000","Commander Keen in Keen Dreams","gpu;status-ingame","ingame","2022-08-04 20:34:20.000" +"0100E400129EC000","Commander Keen in Keen Dreams: Definitive Edition","status-playable","playable","2021-05-11 19:33:54.000" +"010065A01158E000","Commandos 2 HD Remaster","gpu;status-ingame;nvdec","ingame","2022-08-10 21:52:27.000" +"0100971011224000","Concept Destruction","status-playable","playable","2022-09-29 12:28:56.000" +"010043700C9B0000","Conduct TOGETHER!","nvdec;status-playable","playable","2021-02-20 12:59:00.000" +"","Conga Master Party!","status-playable","playable","2020-05-22 13:22:24.000" +"","Connection Haunted","slow;status-playable","playable","2020-12-10 18:57:14.000" +"0100A5600FAC0000","Construction Simulator 3 - Console Edition","status-playable","playable","2023-02-06 09:31:23.000" +"","Constructor Plus","status-playable","playable","2020-05-26 12:37:40.000" +"0100DCA00DA7E000","Contra Anniversary Collection","status-playable","playable","2022-07-22 11:30:12.000" +"01007D701298A000","Contraptions","status-playable","playable","2021-02-08 18:40:50.000" +"0100041013360000","Control Ultimate Edition - Cloud Version","Needs Update;crash;services;status-nothing","nothing","2021-04-18 22:34:06.000" +"","Convoy","status-playable","playable","2020-10-15 14:43:50.000" +"0100B82010B6C000","Cook, Serve, Delicious! 3?!","status-playable","playable","2022-10-09 12:09:34.000" +"010060700EFBA000","Cooking Mama: Cookstar","status-menus;crash;loader-allocator","menus","2021-11-20 03:19:35.000" +"01001E400FD58000","Cooking Simulator","status-playable","playable","2021-04-18 13:25:23.000" +"","Cooking Tycoons 2: 3 in 1 Bundle","status-playable","playable","2020-11-16 22:19:33.000" +"","Cooking Tycoons: 3 in 1 Bundle","status-playable","playable","2020-11-16 22:44:26.000" +"","Copperbell","status-playable","playable","2020-10-04 15:54:36.000" +"010016400B1FE000","Corpse Party: Blood Drive","nvdec;status-playable","playable","2021-03-01 12:44:23.000" +"0100CCB01B1A0000","Cosmic Fantasy Collection","status-ingame","ingame","2024-05-21 17:56:37.000" +"010067C00A776000","Cosmic Star Heroine","status-playable","playable","2021-02-20 14:30:47.000" +"","Cotton/Guardian Saturn Tribute Games","gpu;status-boots","boots","2022-11-27 21:00:51.000" +"01000E301107A000","Couch Co-Op Bundle Vol. 2","status-playable;nvdec","playable","2022-10-02 12:04:21.000" +"0100C1E012A42000","Country Tales","status-playable","playable","2021-06-17 16:45:39.000" +"01003370136EA000","Cozy Grove","gpu;status-ingame","ingame","2023-07-30 22:22:19.000" +"010073401175E000","Crash Bandicoot 4: It's About Time","status-playable;nvdec;UE4","playable","2024-03-17 07:13:45.000" +"0100D1B006744000","Crash Bandicoot N. Sane Trilogy","status-playable","playable","2024-02-11 11:38:14.000" +"","Crash Drive 2","online;status-playable","playable","2020-12-17 02:45:46.000" +"","Crash Dummy","nvdec;status-playable","playable","2020-05-23 11:12:43.000" +"0100F9F00C696000","Crash Team Racing Nitro-Fueled","gpu;status-ingame;nvdec;online-broken","ingame","2023-06-25 02:40:17.000" +"0100BF200CD74000","Crashbots","status-playable","playable","2022-07-22 13:50:52.000" +"010027100BD16000","Crashlands","status-playable","playable","2021-05-27 20:30:06.000" +"","Crawl","status-playable","playable","2020-05-22 10:16:05.000" +"0100C66007E96000","Crayola Scoot","status-playable;nvdec","playable","2022-07-22 14:01:55.000" +"01005BA00F486000","Crayon Shin-chan Ora to Hakase no Natsuyasumi Owaranai Nanokakan no Tabi","status-playable","playable","2021-07-21 10:41:33.000" +"","Crayon Shin-chan The Storm Called Flaming Kasukabe Runner!","services;status-menus","menus","2020-03-20 14:00:57.000" +"","Crazy Strike Bowling EX","UE4;gpu;nvdec;status-ingame","ingame","2020-08-07 18:15:59.000" +"","Crazy Zen Mini Golf","status-playable","playable","2020-08-05 14:00:00.000" +"","Creaks","status-playable","playable","2020-08-15 12:20:52.000" +"","Creature in the Well","UE4;gpu;status-ingame","ingame","2020-11-16 12:52:40.000" +"","Creepy Tale","status-playable","playable","2020-12-15 21:58:03.000" +"","Cresteaju","gpu;status-ingame","ingame","2021-03-24 10:46:06.000" +"010022D00D4F0000","Cricket 19","gpu;status-ingame","ingame","2021-06-14 14:56:07.000" +"0100387017100000","Cricket 22","status-boots;crash","boots","2023-10-18 08:01:57.000" +"01005640080B0000","Crimsonland","status-playable","playable","2021-05-27 20:50:54.000" +"0100B0400EBC4000","Cris Tales","crash;status-ingame","ingame","2021-07-29 15:10:53.000" +"","Croc's World","status-playable","playable","2020-05-22 11:21:09.000" +"","Croc's World 2","status-playable","playable","2020-12-16 20:01:40.000" +"","Croc's World 3","status-playable","playable","2020-12-30 18:53:26.000" +"01000F0007D92000","Croixleur Sigma","status-playable;online","playable","2022-07-22 14:26:54.000" +"01003D90058FC000","CrossCode","status-playable","playable","2024-02-17 10:23:19.000" +"0100B1E00AA56000","Crossing Souls","nvdec;status-playable","playable","2021-02-20 15:42:54.000" +"0100059012BAE000","Crown Trick","status-playable","playable","2021-06-16 19:36:29.000" +"0100B41013C82000","Cruis'n Blast","gpu;status-ingame","ingame","2023-07-30 10:33:47.000" +"01000CC01C108000","Crymachina Trial Edition ( Demo ) [ クライマキナ ]","status-playable;demo","playable","2023-08-06 05:33:21.000" +"0100CEA007D08000","Crypt of the Necrodancer","status-playable;nvdec","playable","2022-11-01 09:52:06.000" +"0100582010AE0000","Crysis 2 Remastered","deadlock;status-menus","menus","2023-09-21 10:46:17.000" +"0100CD3010AE2000","Crysis 3 Remastered","deadlock;status-menus","menus","2023-09-10 16:03:50.000" +"0100E66010ADE000","Crysis Remastered","status-menus;nvdec","menus","2024-08-13 05:23:24.000" +"0100972008234000","Crystal Crisis","nvdec;status-playable","playable","2021-02-20 13:52:44.000" +"","Cthulhu Saves Christmas","status-playable","playable","2020-12-14 00:58:55.000" +"010001600D1E8000","Cube Creator X","status-menus;crash","menus","2021-11-25 08:53:28.000" +"010082E00F1CE000","Cubers: Arena","status-playable;nvdec;UE4","playable","2022-10-04 16:05:40.000" +"010040D011D04000","Cubicity","status-playable","playable","2021-06-14 14:19:51.000" +"0100A5C00D162000","Cuphead","status-playable","playable","2022-02-01 22:45:55.000" +"0100F7E00DFC8000","Cupid Parasite","gpu;status-ingame","ingame","2023-08-21 05:52:36.000" +"","Curious Cases","status-playable","playable","2020-08-10 09:30:48.000" +"0100D4A0118EA000","Curse of the Dead Gods","status-playable","playable","2022-08-30 12:25:38.000" +"0100CE5014026000","Curved Space","status-playable","playable","2023-01-14 22:03:50.000" +"","Cyber Protocol","nvdec;status-playable","playable","2020-09-28 14:47:40.000" +"0100C1F0141AA000","Cyber Shadow","status-playable","playable","2022-07-17 05:37:41.000" +"01006B9013672000","Cybxus Heart","gpu;slow;status-ingame","ingame","2022-01-15 05:00:49.000" +"010063100B2C2000","Cytus α","nvdec;status-playable","playable","2021-02-20 13:40:46.000" +"0100B6400CA56000","DAEMON X MACHINA","UE4;audout;ldn-untested;nvdec;status-playable","playable","2021-06-09 19:22:29.000" +"01004AB00A260000","DARK SOULS™: REMASTERED","gpu;status-ingame;nvdec;online-broken","ingame","2024-04-09 19:47:58.000" +"0100440012FFA000","DARQ Complete Edition","audout;status-playable","playable","2021-04-07 15:26:21.000" +"01009CC00C97C000","DEAD OR ALIVE Xtreme 3 Scarlet","status-playable","playable","2022-07-23 17:05:06.000" +"0100A5000F7AA000","DEAD OR SCHOOL","status-playable;nvdec","playable","2022-09-06 12:04:09.000" +"0100EBE00F22E000","DEADLY PREMONITION Origins","32-bit;status-playable;nvdec","playable","2024-03-25 12:47:46.000" +"01008B10132A2000","DEEMO -Reborn-","status-playable;nvdec;online-broken","playable","2022-10-17 15:18:11.000" +"010023800D64A000","DELTARUNE Chapter 1","status-playable","playable","2023-01-22 04:47:44.000" +"0100BE800E6D8000","DEMON'S TILT","status-playable","playable","2022-09-19 13:22:46.000" +"","DERU - The Art of Cooperation","status-playable","playable","2021-01-07 16:59:59.000" +"","DESTINY CONNECT","UE4;gpu;nvdec;status-ingame","ingame","2020-12-16 12:20:36.000" +"010027400BD24000","DIABOLIK LOVERS CHAOS LINEAGE","gpu;status-ingame;Needs Update","ingame","2023-06-08 02:20:44.000" +"","DISTRAINT 2","status-playable","playable","2020-09-03 16:08:12.000" +"","DISTRAINT: Deluxe Edition","status-playable","playable","2020-06-15 23:42:24.000" +"0100416004C00000","DOOM","gpu;slow;status-ingame;nvdec;online-broken","ingame","2024-09-23 15:40:07.000" +"010018900DD00000","DOOM (1993)","status-menus;nvdec;online-broken","menus","2022-09-06 13:32:19.000" +"01008CB01E52E000","DOOM + DOOM II","status-playable;opengl;ldn-untested;LAN","playable","2024-09-12 07:06:01.000" +"0100D4F00DD02000","DOOM 2","nvdec;online;status-playable","playable","2021-06-03 20:10:01.000" +"010029D00E740000","DOOM 3","status-menus;crash","menus","2024-08-03 05:25:47.000" +"","DOOM 64","nvdec;status-playable;vulkan","playable","2020-10-13 23:47:28.000" +"0100B1A00D8CE000","DOOM Eternal","gpu;slow;status-ingame;nvdec;online-broken","ingame","2024-08-28 15:57:17.000" +"","DORAEMON STORY OF SEASONS","nvdec;status-playable","playable","2020-07-13 20:28:11.000" +"01001AD00E49A000","DOUBLE DRAGON Ⅲ: The Sacred Stones","online;status-playable","playable","2021-06-11 15:41:44.000" +"0100A250097F0000","DRAGON BALL FighterZ","UE4;ldn-broken;nvdec;online;status-playable","playable","2021-06-11 16:19:04.000" +"010051C0134F8000","DRAGON BALL Z: KAKAROT + A NEW POWER AWAKENS SET","status-playable;vulkan-backend-bug","playable","2024-08-28 00:03:50.000" +"0100A77018EA0000","DRAGON QUEST MONSTERS: The Dark Prince","status-playable","playable","2023-12-29 16:10:05.000" +"0100E9A00CB30000","DYNASTY WARRIORS 8: Xtreme Legends Definitive Edition","status-playable;nvdec","playable","2024-06-26 00:16:30.000" +"010008900BC5A000","DYSMANTLE","gpu;status-ingame","ingame","2024-07-15 16:24:12.000" +"010061300DF48000","Dairoku: Ayakashimori","status-nothing;Needs Update;loader-allocator","nothing","2021-11-30 05:09:38.000" +"0100BD2009A1C000","Damsel","status-playable","playable","2022-09-06 11:54:39.000" +"","Dandara","status-playable","playable","2020-05-26 12:42:33.000" +"","Dandy Dungeon: Legend of Brave Yamada","status-playable","playable","2021-01-06 09:48:47.000" +"01003ED0099B0000","Danger Mouse","status-boots;crash;online","boots","2022-07-22 15:49:45.000" +"","Danger Scavenger -","nvdec;status-playable","playable","2021-04-17 15:53:04.000" +"","Danmaku Unlimited 3","status-playable","playable","2020-11-15 00:48:35.000" +"","Darius Cozmic Collection","status-playable","playable","2021-02-19 20:59:06.000" +"010059C00BED4000","Darius Cozmic Collection Special Edition","status-playable","playable","2022-07-22 16:26:50.000" +"010015800F93C000","Dariusburst - Another Chronicle EX+","online;status-playable","playable","2021-04-05 14:21:43.000" +"01003D301357A000","Dark Arcana: The Carnival","gpu;slow;status-ingame","ingame","2022-02-19 08:52:28.000" +"010083A00BF6C000","Dark Devotion","status-playable;nvdec","playable","2022-08-09 09:41:18.000" +"","Dark Quest 2","status-playable","playable","2020-11-16 21:34:52.000" +"","Dark Witch Music Episode: Rudymical","status-playable","playable","2020-05-22 09:44:44.000" +"01008F1008DA6000","Darkest Dungeon","status-playable;nvdec","playable","2022-07-22 18:49:18.000" +"0100F2300D4BA000","Darksiders Genesis","status-playable;nvdec;online-broken;UE4;ldn-broken","playable","2022-09-21 18:06:25.000" +"010071800BA98000","Darksiders II Deathinitive Edition","gpu;status-ingame;nvdec;online-broken","ingame","2024-06-26 00:37:25.000" +"0100E1400BA96000","Darksiders Warmastered Edition","status-playable;nvdec","playable","2023-03-02 18:08:09.000" +"","Darkwood","status-playable","playable","2021-01-08 21:24:06.000" +"0100BA500B660000","Darts Up","status-playable","playable","2021-04-14 17:22:22.000" +"0100F0B0081DA000","Dawn of the Breakers","status-menus;online-broken;vulkan-backend-bug","menus","2022-12-08 14:40:03.000" +"","Day and Night","status-playable","playable","2020-12-17 12:30:51.000" +"","De Blob","nvdec;status-playable","playable","2021-01-06 17:34:46.000" +"01008E900471E000","De Mambo","status-playable","playable","2021-04-10 12:39:40.000" +"0100646009FBE000","Dead Cells","status-playable","playable","2021-09-22 22:18:49.000" +"01004C500BD40000","Dead End Job","status-playable;nvdec","playable","2022-09-19 12:48:44.000" +"0100A24011F52000","Dead Z Meat","UE4;services;status-ingame","ingame","2021-04-14 16:50:16.000" +"01004C400CF96000","Dead by Daylight","status-boots;nvdec;online-broken;UE4","boots","2022-09-13 14:32:13.000" +"","Deadly Days","status-playable","playable","2020-11-27 13:38:55.000" +"0100BAC011928000","Deadly Premonition 2","status-playable","playable","2021-06-15 14:12:36.000" +"","Dear Magi - Mahou Shounen Gakka -","status-playable","playable","2020-11-22 16:45:16.000" +"010012B011AB2000","Death Come True","nvdec;status-playable","playable","2021-06-10 22:30:49.000" +"0100F3B00CF32000","Death Coming","status-nothing;crash","nothing","2022-02-06 07:43:03.000" +"","Death Mark","status-playable","playable","2020-12-13 10:56:25.000" +"0100423009358000","Death Road to Canada","gpu;audio;status-nothing;32-bit;crash","nothing","2023-06-28 15:39:26.000" +"","Death Squared","status-playable","playable","2020-12-04 13:00:15.000" +"","Death Tales","status-playable","playable","2020-12-17 10:55:52.000" +"","Death and Taxes","status-playable","playable","2020-12-15 20:27:49.000" +"0100AEC013DDA000","Death end re;Quest","status-playable","playable","2023-07-09 12:19:54.000" +"0100492011A8A000","Death's Hangover","gpu;status-boots","boots","2023-08-01 22:38:06.000" +"01009120119B4000","Deathsmiles I・II","status-playable","playable","2024-04-08 19:29:00.000" +"010034F00BFC8000","Debris Infinity","nvdec;online;status-playable","playable","2021-05-28 12:14:39.000" +"010027700FD2E000","Decay of Logos","status-playable;nvdec","playable","2022-09-13 14:42:13.000" +"0100EF0015A9A000","Deedlit in Wonder Labyrinth","deadlock;status-ingame;Needs Update;Incomplete","ingame","2022-01-19 10:00:59.000" +"01002CC0062B8000","Deemo","status-playable","playable","2022-07-24 11:34:33.000" +"010026800FA88000","Deep Diving Adventures","status-playable","playable","2022-09-22 16:43:37.000" +"","Deep Ones","services;status-nothing","nothing","2020-04-03 02:54:19.000" +"0100C3E00D68E000","Deep Sky Derelicts Definitive Edition","status-playable","playable","2022-09-27 11:21:08.000" +"","Deep Space Rush","status-playable","playable","2020-07-07 23:30:33.000" +"0100961011BE6000","DeepOne","services-horizon;status-nothing;Needs Update","nothing","2024-01-18 15:01:05.000" +"01008BB00F824000","Defenders of Ekron - Definitive Edition","status-playable","playable","2021-06-11 16:31:03.000" +"0100CDE0136E6000","Defentron","status-playable","playable","2022-10-17 15:47:56.000" +"","Defunct","status-playable","playable","2021-01-08 21:33:46.000" +"","Degrees of Separation","status-playable","playable","2021-01-10 13:40:04.000" +"010071C00CBA4000","Dei Gratia no Rashinban","crash;status-nothing","nothing","2021-07-13 02:25:32.000" +"","Deleveled","slow;status-playable","playable","2020-12-15 21:02:29.000" +"010038B01D2CA000","Dementium: The Ward (Dementium Remastered)","status-boots;crash","boots","2024-09-02 08:28:14.000" +"0100AB600ACB4000","Demetrios - The BIG Cynical Adventure","status-playable","playable","2021-06-04 12:01:01.000" +"010099D00D1A4000","Demolish & Build","status-playable","playable","2021-06-13 15:27:26.000" +"010084600F51C000","Demon Pit","status-playable;nvdec","playable","2022-09-19 13:35:15.000" +"0100A2B00BD88000","Demon's Crystals","status-nothing;crash;regression","nothing","2022-12-07 16:33:17.000" +"","Demon's Rise","status-playable","playable","2020-07-29 12:26:27.000" +"0100E29013818000","Demon's Rise - Lords of Chaos","status-playable","playable","2021-04-06 16:20:06.000" +"0100161011458000","Demon's Tier+","status-playable","playable","2021-06-09 17:25:36.000" +"","Demong Hunter","status-playable","playable","2020-12-12 15:27:08.000" +"0100BC501355A000","Densha de go!! Hashirou Yamanote Sen","status-playable;nvdec;UE4","playable","2023-11-09 07:47:58.000" +"","Depixtion","status-playable","playable","2020-10-10 18:52:37.000" +"01000BF00B6BC000","Deployment","slow;status-playable;online-broken","playable","2022-10-17 16:23:59.000" +"010023600C704000","Deponia","nvdec;status-playable","playable","2021-01-26 17:17:19.000" +"","Descenders","gpu;status-ingame","ingame","2020-12-10 15:22:36.000" +"","Desire remaster ver.","crash;status-boots","boots","2021-01-17 02:34:37.000" +"01008BB011ED6000","Destrobots","status-playable","playable","2021-03-06 14:37:05.000" +"01009E701356A000","Destroy All Humans!","gpu;status-ingame;nvdec;UE4","ingame","2023-01-14 22:23:53.000" +"010030600E65A000","Detective Dolittle","status-playable","playable","2021-03-02 14:03:59.000" +"01009C0009842000","Detective Gallo","status-playable;nvdec","playable","2022-07-24 11:51:04.000" +"","Detective Jinguji Saburo Prism of Eyes","status-playable","playable","2020-10-02 21:54:41.000" +"010007500F27C000","Detective Pikachu Returns","status-playable","playable","2023-10-07 10:24:59.000" +"010031B00CF66000","Devil Engine","status-playable","playable","2021-06-04 11:54:30.000" +"01002F000E8F2000","Devil Kingdom","status-playable","playable","2023-01-31 08:58:44.000" +"","Devil May Cry","nvdec;status-playable","playable","2021-01-04 19:43:08.000" +"01007CF00D5BA000","Devil May Cry 2","status-playable;nvdec","playable","2023-01-24 23:03:20.000" +"01007B600D5BC000","Devil May Cry 3 Special Edition","status-playable;nvdec","playable","2024-07-08 12:33:23.000" +"01003C900EFF6000","Devil Slayer - Raksasi","status-playable","playable","2022-10-26 19:42:32.000" +"01009EA00A320000","Devious Dungeon","status-playable","playable","2021-03-04 13:03:06.000" +"","Dex","nvdec;status-playable","playable","2020-08-12 16:48:12.000" +"","Dexteritrip","status-playable","playable","2021-01-06 12:51:12.000" +"0100AFC00E06A000","Dezatopia","online;status-playable","playable","2021-06-15 21:06:11.000" +"0100726014352000","Diablo 2 Resurrected","gpu;status-ingame;nvdec","ingame","2023-08-18 18:42:47.000" +"01001B300B9BE000","Diablo III: Eternal Collection","status-playable;online-broken;ldn-works","playable","2023-08-21 23:48:03.000" +"0100F73011456000","Diabolic","status-playable","playable","2021-06-11 14:45:08.000" +"0100BBF011394000","Dicey Dungeons","gpu;audio;slow;status-ingame","ingame","2023-08-02 20:30:12.000" +"","Die for Valhalla!","status-playable","playable","2021-01-06 16:09:14.000" +"0100BB900B5B4000","Dies irae Amantes amentes For Nintendo Switch","status-nothing;32-bit;crash","nothing","2022-02-16 07:09:05.000" +"0100A5A00DBB0000","Dig Dog","gpu;status-ingame","ingame","2021-06-02 17:17:51.000" +"010035D0121EC000","Digerati Presents: The Dungeon Crawl Vol. 1","slow;status-ingame","ingame","2021-04-18 14:04:55.000" +"010014E00DB56000","Digimon Story Cyber Sleuth: Complete Edition","status-playable;nvdec;opengl","playable","2022-09-13 15:02:37.000" +"0100F00014254000","Digimon World: Next Order","status-playable","playable","2023-05-09 20:41:06.000" +"","Ding Dong XL","status-playable","playable","2020-07-14 16:13:19.000" +"","Dininho Adventures","status-playable","playable","2020-10-03 17:25:51.000" +"010027E0158A6000","Dininho Space Adventure","status-playable","playable","2023-01-14 22:43:04.000" +"0100A8A013DA4000","Dirt Bike Insanity","status-playable","playable","2021-01-31 13:27:38.000" +"01004CB01378A000","Dirt Trackin Sprint Cars","status-playable;nvdec;online-broken","playable","2022-10-17 16:34:56.000" +"0100918014B02000","Disagaea 6: Defiance of Destiny Demo","status-playable;demo","playable","2022-10-26 20:02:04.000" +"010020700E2A2000","Disaster Report 4: Summer Memories","status-playable;nvdec;UE4","playable","2022-09-27 19:41:31.000" +"0100510004D2C000","Disc Jam","UE4;ldn-untested;nvdec;online;status-playable","playable","2021-04-08 16:40:35.000" +"","Disco Dodgeball Remix","online;status-playable","playable","2020-09-28 23:24:49.000" +"01004B100AF18000","Disgaea 1 Complete","status-playable","playable","2023-01-30 21:45:23.000" +"010068C00F324000","Disgaea 4 Complete+ Demo","status-playable;nvdec","playable","2022-09-13 15:21:59.000" +"","Disgaea 4 Complete Plus","gpu;slow;status-playable","playable","2020-02-18 10:54:28.000" +"01005700031AE000","Disgaea 5 Complete","nvdec;status-playable","playable","2021-03-04 15:32:54.000" +"0100ABC013136000","Disgaea 6: Defiance of Destiny","deadlock;status-ingame","ingame","2023-04-15 00:50:32.000" +"01005EE013888000","Disgaea 6: Defiance of Destiny Demo [ 魔界戦記ディスガイア6 ]","gpu;status-ingame;demo","ingame","2022-12-06 15:27:59.000" +"0100307011D80000","Disgaea 6: Defiance of Destiny [ FG ] [ 魔界戦記ディスガイア6 ]","status-playable","playable","2021-06-08 13:20:33.000" +"01000B70122A2000","Disjunction","gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug","ingame","2024-04-28 23:55:24.000" +"0100A2F00EEFC000","Disney Classic Games: Aladdin and The Lion King","status-playable;online-broken","playable","2022-09-13 15:44:17.000" +"0100DA201EBF8000","Disney Epic Mickey: Rebrushed","status-ingame;crash","ingame","2024-09-26 22:11:51.000" +"0100F0401435E000","Disney SpeedStorm","services;status-boots","boots","2023-11-27 02:15:32.000" +"","Disney Tsum Tsum Festival","crash;status-menus","menus","2020-07-14 14:05:28.000" +"010027400CDC6000","Divinity Original Sin 2","services;status-menus;crash;online-broken;regression","menus","2023-08-13 17:20:03.000" +"01005A001489A000","DoDonPachi Resurrection - 怒首領蜂大復活","status-ingame;32-bit;crash","ingame","2024-01-25 14:37:32.000" +"01001770115C8000","Dodo Peak","status-playable;nvdec;UE4","playable","2022-10-04 16:13:05.000" +"","Dogurai","status-playable","playable","2020-10-04 02:40:16.000" +"010048100D51A000","Dokapon Up! Mugen no Roulette","gpu;status-menus;Needs Update","menus","2022-12-08 19:39:10.000" +"","Dokuro","nvdec;status-playable","playable","2020-12-17 14:47:09.000" +"010007200AC0E000","Don't Die Mr. Robot DX","status-playable;nvdec","playable","2022-09-02 18:34:38.000" +"0100E470067A8000","Don't Knock Twice","status-playable","playable","2024-05-08 22:37:58.000" +"0100C4D00B608000","Don't Sink","gpu;status-ingame","ingame","2021-02-26 15:41:11.000" +"0100751007ADA000","Don't Starve","status-playable;nvdec","playable","2022-02-05 20:43:34.000" +"010088B010DD2000","Dongo Adventure","status-playable","playable","2022-10-04 16:22:26.000" +"0100C1F0051B6000","Donkey Kong Country Tropical Freeze","status-playable","playable","2024-08-05 16:46:10.000" +"","Doodle Derby","status-boots","boots","2020-12-04 22:51:48.000" +"01005ED00CD70000","Door Kickers: Action Squad","status-playable;online-broken;ldn-broken","playable","2022-09-13 16:28:53.000" +"","Double Cross","status-playable","playable","2021-01-07 15:34:22.000" +"","Double Dragon & Kunio-Kun: Retro Brawler Bundle","status-playable","playable","2020-09-01 12:48:46.000" +"01005B10132B2000","Double Dragon Neon","gpu;audio;status-ingame;32-bit","ingame","2022-09-20 18:00:20.000" +"","Double Kick Heroes","gpu;status-ingame","ingame","2020-10-03 14:33:59.000" +"0100A5D00C7C0000","Double Pug Switch","status-playable;nvdec","playable","2022-10-10 10:59:35.000" +"0100FC000EE10000","Double Switch - 25th Anniversary Edition","status-playable;nvdec","playable","2022-09-19 13:41:50.000" +"0100B6600FE06000","Down to Hell","gpu;status-ingame;nvdec","ingame","2022-09-19 14:01:26.000" +"010093D00C726000","Downwell","status-playable","playable","2021-04-25 20:05:24.000" +"0100ED000D390000","Dr Kawashima's Brain Training","services;status-ingame","ingame","2023-06-04 00:06:46.000" +"","Dracula's Legacy","nvdec;status-playable","playable","2020-12-10 13:24:25.000" +"","DragoDino","gpu;nvdec;status-ingame","ingame","2020-08-03 20:49:16.000" +"0100DBC00BD5A000","Dragon Audit","crash;status-ingame","ingame","2021-05-16 14:24:46.000" +"010078D000F88000","Dragon Ball Xenoverse 2","gpu;status-ingame;nvdec;online;ldn-untested","ingame","2022-07-24 12:31:01.000" +"010089700150E000","Dragon Marked for Death: Frontline Fighters (Empress & Warrior)","status-playable;ldn-untested;audout","playable","2022-03-10 06:44:34.000" +"0100EFC00EFB2000","Dragon Quest","gpu;status-boots","boots","2021-11-09 03:31:32.000" +"010008900705C000","Dragon Quest Builders","gpu;status-ingame;nvdec","ingame","2023-08-14 09:54:36.000" +"010042000A986000","Dragon Quest Builders 2","status-playable","playable","2024-04-19 16:36:38.000" +"0100CD3000BDC000","Dragon Quest Heroes I + II (JP)","nvdec;status-playable","playable","2021-04-08 14:27:16.000" +"010062200EFB4000","Dragon Quest II: Luminaries of the Legendary Line","status-playable","playable","2022-09-13 16:44:11.000" +"01003E601E324000","Dragon Quest III HD-2D Remake","status-ingame;vulkan-backend-bug;UE4;audout;mac-bug","ingame","2025-01-07 04:10:27.000" +"010015600EFB6000","Dragon Quest III: The Seeds of Salvation","gpu;status-boots","boots","2021-11-09 03:38:34.000" +"0100217014266000","Dragon Quest Treasures","gpu;status-ingame;UE4","ingame","2023-05-09 11:16:52.000" +"0100E2E0152E4000","Dragon Quest X Awakening Five Races Offline","status-playable;nvdec;UE4","playable","2024-08-20 10:04:24.000" +"01006C300E9F0000","Dragon Quest XI S: Echoes of an Elusive Age - Definitive Edition","status-playable;UE4","playable","2021-11-27 12:27:11.000" +"010032C00AC58000","Dragon's Dogma: Dark Arisen","status-playable","playable","2022-07-24 12:58:33.000" +"","Dragon's Lair Trilogy","nvdec;status-playable","playable","2021-01-13 22:12:07.000" +"","DragonBlaze for Nintendo Switch","32-bit;status-playable","playable","2020-10-14 11:11:28.000" +"","DragonFangZ","status-playable","playable","2020-09-28 21:35:18.000" +"","Dragons Dawn of New Riders","nvdec;status-playable","playable","2021-01-27 20:05:26.000" +"0100F7800A434000","Drawful 2","status-ingame","ingame","2022-07-24 13:50:21.000" +"0100B7E0102E4000","Drawngeon: Dungeons of Ink and Paper","gpu;status-ingame","ingame","2022-09-19 15:41:25.000" +"","Dream","status-playable","playable","2020-12-15 19:55:07.000" +"","Dream Alone - 0100AA0093DC000","nvdec;status-playable","playable","2021-01-27 19:41:50.000" +"","DreamBall","UE4;crash;gpu;status-ingame","ingame","2020-08-05 14:45:25.000" +"0100236011B4C000","DreamWorks Spirit Lucky's Big Adventure","status-playable","playable","2022-10-27 13:30:52.000" +"010058B00F3C0000","Dreaming Canvas","UE4;gpu;status-ingame","ingame","2021-06-13 22:50:07.000" +"0100D24013466000","Dreamo","status-playable;UE4","playable","2022-10-17 18:25:28.000" +"010058C00A916000","Drone Fight","status-playable","playable","2022-07-24 14:31:56.000" +"010052000A574000","Drowning","status-playable","playable","2022-07-25 14:28:26.000" +"","Drums","status-playable","playable","2020-12-17 17:21:51.000" +"01005BC012C66000","Duck Life Adventure","status-playable","playable","2022-10-10 11:27:03.000" +"01007EF00CB88000","Duke Nukem 3D: 20th Anniversary World Tour","32-bit;status-playable;ldn-untested","playable","2022-08-19 22:22:40.000" +"010068D0141F2000","Dull Grey","status-playable","playable","2022-10-27 13:40:38.000" +"0100926013600000","Dungeon Nightmares 1 + 2 Collection","status-playable","playable","2022-10-17 18:54:22.000" +"","Dungeon Stars","status-playable","playable","2021-01-18 14:28:37.000" +"010034300F0E2000","Dungeon of the Endless","nvdec;status-playable","playable","2021-05-27 19:16:26.000" +"","Dungeons & Bombs","status-playable","playable","2021-04-06 12:46:22.000" +"0100EC30140B6000","Dunk Lords","status-playable","playable","2024-06-26 00:07:26.000" +"010011C00E636000","Dusk Diver","status-boots;crash;UE4","boots","2021-11-06 09:01:30.000" +"0100B6E00A420000","Dust: An Elysian Tail","status-playable","playable","2022-07-25 15:28:12.000" +"","Dustoff Z","status-playable","playable","2020-12-04 23:22:29.000" +"01008c8012920000","Dying Light: Platinum Edition","services-horizon;status-boots","boots","2024-03-11 10:43:32.000" +"","Dyna Bomb","status-playable","playable","2020-06-07 13:26:55.000" +"010054E01D878000","EA SPORTS FC 25","status-ingame;crash","ingame","2024-09-25 21:07:50.000" +"01001C8016B4E000","EA SPORTS FIFA 23 Nintendo Switch™ Legacy Edition","gpu;status-ingame;crash","ingame","2024-06-10 23:33:05.000" +"0100BDB01A0E6000","EA Sports FC 24","status-boots","boots","2023-10-04 18:32:59.000" +"01009B7006C88000","EARTH WARS","status-playable","playable","2021-06-05 11:18:33.000" +"0100A9B009678000","EAT BEAT DEADSPIKE-san","audio;status-playable;Needs Update","playable","2022-12-02 19:25:29.000" +"","ELEA: Paradigm Shift","UE4;crash;status-nothing","nothing","2020-10-04 19:07:43.000" +"01000FA0149B6000","EQI","status-playable;nvdec;UE4","playable","2022-10-27 16:42:32.000" +"0100E95010058000","EQQO","UE4;nvdec;status-playable","playable","2021-06-13 23:10:51.000" +"0100F9600E746000","ESP Ra.De. Psi","audio;slow;status-ingame","ingame","2024-03-07 15:05:08.000" +"01007BE0160D6000","EVE ghost enemies","gpu;status-ingame","ingame","2023-01-14 03:13:30.000" +"0100DCF0093EC000","EVERSPACE","status-playable;UE4","playable","2022-08-14 01:16:24.000" +"010037400C7DA000","Eagle Island","status-playable","playable","2021-04-10 13:15:42.000" +"0100B9E012992000","Earth Defense Force World Brothers ( ま~るい地球が四角くなった!? デジボク地球防衛軍 )","status-playable;UE4","playable","2022-12-07 12:59:16.000" +"0100298014030000","Earth Defense Force: World Brothers","status-playable;UE4","playable","2022-10-27 14:13:31.000" +"0100A2E00BB0C000","EarthNight","status-playable","playable","2022-09-19 21:02:20.000" +"0100DFC00E472000","Earthfall: Alien Horde","status-playable;nvdec;UE4;ldn-untested","playable","2022-09-13 17:32:37.000" +"01006E50042EA000","Earthlock","status-playable","playable","2021-06-05 11:51:02.000" +"0100DCE00B756000","Earthworms","status-playable","playable","2022-07-25 16:28:55.000" +"","Earthworms Demo","status-playable","playable","2021-01-05 16:57:11.000" +"0100ECF01800C000","Easy Come Easy Golf","status-playable;online-broken;regression","playable","2024-04-04 16:15:00.000" +"","Eclipse: Edge of Light","status-playable","playable","2020-08-11 23:06:29.000" +"0100ABE00DB4E000","Edna & Harvey: Harvey's New Eyes","nvdec;status-playable","playable","2021-01-26 14:36:08.000" +"01004F000B716000","Edna & Harvey: The Breakout - Anniversary Edition","status-ingame;crash;nvdec","ingame","2022-08-01 16:59:56.000" +"01002550129F0000","Effie","status-playable","playable","2022-10-27 14:36:39.000" +"","Ego Protocol","nvdec;status-playable","playable","2020-12-16 20:16:35.000" +"","Eiga Sumikko Gurashi Tobidasu Ehon to Himitsu no Ko Game de Asobo Ehon no Sekai","status-playable","playable","2020-11-12 00:11:50.000" +"01003AD013BD2000","Eight Dragons","status-playable;nvdec","playable","2022-10-27 14:47:28.000" +"010020A01209C000","El Hijo - A Wild West Tale","nvdec;status-playable","playable","2021-04-19 17:44:08.000" +"","Elden: Path of the Forgotten","status-playable","playable","2020-12-15 00:33:19.000" +"0100A6700AF10000","Element","status-playable","playable","2022-07-25 17:17:16.000" +"0100128003A24000","Elliot Quest","status-playable","playable","2022-07-25 17:46:14.000" +"","Elrador Creatures","slow;status-playable","playable","2020-12-12 12:35:35.000" +"010041A00FEC6000","Ember","status-playable;nvdec","playable","2022-09-19 21:16:11.000" +"","Embracelet","status-playable","playable","2020-12-04 23:45:00.000" +"010017b0102a8000","Emma: Lost in Memories","nvdec;status-playable","playable","2021-01-28 16:19:10.000" +"010068300E08E000","Enchanted in the Moonlight - Kiryu, Chikage & Yukinojo","gpu;status-ingame;nvdec","ingame","2022-11-20 16:18:45.000" +"","Enchanting Mahjong Match","gpu;status-ingame","ingame","2020-04-17 22:01:31.000" +"01004F3011F92000","Endless Fables: Dark Moor","gpu;nvdec;status-ingame","ingame","2021-03-07 15:31:03.000" +"010067B017588000","Endless Ocean Luminous","services-horizon;status-ingame;crash","ingame","2024-05-30 02:05:57.000" +"0100B8700BD14000","Energy Cycle Edge","services;status-ingame","ingame","2021-11-30 05:02:31.000" +"","Energy Invasion","status-playable","playable","2021-01-14 21:32:26.000" +"0100C6200A0AA000","Enigmatis 2: The Mists of Ravenwood","crash;regression;status-boots","boots","2021-06-06 15:15:30.000" +"01009D60076F6000","Enter the Gungeon","status-playable","playable","2022-07-25 20:28:33.000" +"0100262009626000","Epic Loon","status-playable;nvdec","playable","2022-07-25 22:06:13.000" +"","Escape First","status-playable","playable","2020-10-20 22:46:53.000" +"010021201296A000","Escape First 2","status-playable","playable","2021-03-24 11:59:41.000" +"","Escape Game Fort Boyard","status-playable","playable","2020-07-12 12:45:43.000" +"0100FEF00F0AA000","Escape from Chernobyl","status-boots;crash","boots","2022-09-19 21:36:58.000" +"010023E013244000","Escape from Life Inc","status-playable","playable","2021-04-19 17:34:09.000" +"","Escape from Tethys","status-playable","playable","2020-10-14 22:38:25.000" +"010073000FE18000","Esports powerful pro yakyuu 2020","gpu;status-ingame;crash;Needs More Attention","ingame","2024-04-29 05:34:14.000" +"01004F9012FD8000","Estranged: The Departure","status-playable;nvdec;UE4","playable","2022-10-24 10:37:58.000" +"","Eternum Ex","status-playable","playable","2021-01-13 20:28:32.000" +"010092501EB2C000","Europa (Demo)","gpu;status-ingame;crash;UE4","ingame","2024-04-23 10:47:12.000" +"","Event Horizon: Space Defense","status-playable","playable","2020-07-31 20:31:24.000" +"01006F900BF8E000","Everybody 1-2-Switch!","services;deadlock;status-nothing","nothing","2023-07-01 05:52:55.000" +"","Evil Defenders","nvdec;status-playable","playable","2020-09-28 17:11:00.000" +"01006A800FA22000","Evolution Board Game","online;status-playable","playable","2021-01-20 22:37:56.000" +"0100F2D00C7DE000","Exception","status-playable;online-broken","playable","2022-09-20 12:47:10.000" +"0100DD30110CC000","Exit the Gungeon","status-playable","playable","2022-09-22 17:04:43.000" +"0100A82013976000","Exodemon","status-playable","playable","2022-10-27 20:17:52.000" +"0100FA800A1F4000","Exorder","nvdec;status-playable","playable","2021-04-15 14:17:20.000" +"01009B7010B42000","Explosive Jake","status-boots;crash","boots","2021-11-03 07:48:32.000" +"0100EFE00A3C2000","Eyes: The Horror Game","status-playable","playable","2021-01-20 21:59:46.000" +"010022700E7D6000","FAR: Lone Sails","status-playable","playable","2022-09-06 16:33:05.000" +"01008D900B984000","FEZ","gpu;status-ingame","ingame","2021-04-18 17:10:16.000" +"01007510040E8000","FIA European Truck Racing Championship","status-playable;nvdec","playable","2022-09-06 17:51:59.000" +"0100F7B002340000","FIFA 18","gpu;status-ingame;online-broken;ldn-untested","ingame","2022-07-26 12:43:59.000" +"0100FFA0093E8000","FIFA 19","gpu;status-ingame;nvdec;online-broken;ldn-untested","ingame","2022-07-26 13:07:07.000" +"01005DE00D05C000","FIFA 20 Legacy Edition","gpu;status-ingame;nvdec;online-broken;ldn-untested","ingame","2022-09-13 17:57:20.000" +"01000A001171A000","FIFA 21 Legacy Edition","gpu;status-ingame;online-broken","ingame","2023-12-11 22:10:19.000" +"0100216014472000","FIFA 22 Legacy Edition","gpu;status-ingame","ingame","2024-03-02 14:13:48.000" +"0100CE4010AAC000","FINAL FANTASY CRYSTAL CHRONICLES Remastered Edition","status-playable","playable","2023-04-02 23:39:12.000" +"01000EA014150000","FINAL FANTASY I","status-nothing;crash","nothing","2024-09-05 20:55:30.000" +"01006B7014156000","FINAL FANTASY II","status-nothing;crash","nothing","2024-04-13 19:18:04.000" +"01006F000B056000","FINAL FANTASY IX","audout;nvdec;status-playable","playable","2021-06-05 11:35:00.000" +"0100AA201415C000","FINAL FANTASY V","status-playable","playable","2023-04-26 01:11:55.000" +"01008B900DC0A000","FINAL FANTASY VIII REMASTERED","status-playable;nvdec","playable","2023-02-15 10:57:48.000" +"0100BC300CB48000","FINAL FANTASY X/X-2 HD REMASTER","gpu;status-ingame","ingame","2022-08-16 20:29:26.000" +"0100EB100AB42000","FINAL FANTASY XII THE ZODIAC AGE","status-playable;opengl;vulkan-backend-bug","playable","2024-08-11 07:01:54.000" +"","FINAL FANTASY XV POCKET EDITION HD","status-playable","playable","2021-01-05 17:52:08.000" +"0100EDC01990E000","FOOTBALL MANAGER 2023 TOUCH","gpu;status-ingame","ingame","2023-08-01 03:40:53.000" +"","FORMA.8","nvdec;status-playable","playable","2020-11-15 01:04:32.000" +"01008A100A028000","FOX n FORESTS","status-playable","playable","2021-02-16 14:27:49.000" +"0100F1A00A5DC000","FRAMED COLLECTION","status-playable;nvdec","playable","2022-07-27 11:48:15.000" +"010002F00CC20000","FUN! FUN! Animal Park","status-playable","playable","2021-04-14 17:08:52.000" +"0100E1F013674000","FUSER","status-playable;nvdec;UE4","playable","2022-10-17 20:58:32.000" +"010055801134E000","FUZE Player","status-ingame;online-broken;vulkan-backend-bug","ingame","2022-10-18 12:23:53.000" +"0100EAD007E98000","FUZE4","status-playable;vulkan-backend-bug","playable","2022-09-06 19:25:01.000" +"0100E3D0103CE000","Fable of Fairy Stones","status-playable","playable","2021-05-05 21:04:54.000" +"01004200189F4000","Factorio","deadlock;status-boots","boots","2024-06-11 19:26:16.000" +"010073F0189B6000","Fae Farm","status-playable","playable","2024-08-25 15:12:12.000" +"010069100DB08000","Faeria","status-menus;nvdec;online-broken","menus","2022-10-04 16:44:41.000" +"01008A6009758000","Fairune Collection","status-playable","playable","2021-06-06 15:29:56.000" +"0100F6D00B8F2000","Fairy Fencer F™: Advent Dark Force","status-ingame;32-bit;crash;nvdec","ingame","2023-04-16 03:53:48.000" +"0100CF900FA3E000","Fairy Tail","status-playable;nvdec","playable","2022-10-04 23:00:32.000" +"01005A600BE60000","Fall Of Light - Darkest Edition","slow;status-ingame;nvdec","ingame","2024-07-24 04:19:26.000" +"0100AA801258C000","Fallen Legion Revenants","status-menus;crash","menus","2021-11-25 08:53:20.000" +"0100D670126F6000","Famicom Detective Club: The Girl Who Stands Behind","status-playable;nvdec","playable","2022-10-27 20:41:40.000" +"010033F0126F4000","Famicom Detective Club: The Missing Heir","status-playable;nvdec","playable","2022-10-27 20:56:23.000" +"010060200FC44000","Family Feud 2021","status-playable;online-broken","playable","2022-10-10 11:42:21.000" +"0100034012606000","Family Mysteries: Poisonous Promises","audio;status-menus;crash","menus","2021-11-26 12:35:06.000" +"010017C012726000","Fantasy Friends","status-playable","playable","2022-10-17 19:42:39.000" +"0100767008502000","Fantasy Hero Unsigned Legacy","status-playable","playable","2022-07-26 12:28:52.000" +"0100944003820000","Fantasy Strike","online;status-playable","playable","2021-02-27 01:59:18.000" +"01000E2012F6E000","Fantasy Tavern Sextet -Vol.1 New World Days-","gpu;status-ingame;crash;Needs Update","ingame","2022-12-05 16:48:00.000" +"","Fantasy Tavern Sextet -Vol.2 Adventurer's Days-","gpu;slow;status-ingame;crash","ingame","2021-11-06 02:57:29.000" +"","Farabel","status-playable","playable","2020-08-03 17:47:28.000" +"","Farm Expert 2019 for Nintendo Switch","status-playable","playable","2020-07-09 21:42:57.000" +"01000E400ED98000","Farm Mystery","status-playable;nvdec","playable","2022-09-06 16:46:47.000" +"","Farm Together","status-playable","playable","2021-01-19 20:01:19.000" +"0100EB600E914000","Farming Simulator 20","nvdec;status-playable","playable","2021-06-13 10:52:44.000" +"","Farming Simulator Nintendo Switch Edition","nvdec;status-playable","playable","2021-01-19 14:46:44.000" +"0100E99019B3A000","Fashion Dreamer","status-playable","playable","2023-11-12 06:42:52.000" +"01009510001CA000","Fast RMX","slow;status-ingame;crash;ldn-partial","ingame","2024-06-22 20:48:58.000" +"0100BEB015604000","Fatal Frame: Maiden of Black Water","status-playable","playable","2023-07-05 16:01:40.000" +"0100DAE019110000","Fatal Frame: Mask of the Lunar Eclipse","status-playable;Incomplete","playable","2024-04-11 06:01:30.000" +"010053E002EA2000","Fate/EXTELLA","gpu;status-ingame;nvdec;online-broken;vulkan-backend-bug;opengl-backend-bug","ingame","2023-04-24 23:37:55.000" +"010051400B17A000","Fate/EXTELLA LINK","ldn-untested;nvdec;status-playable","playable","2021-01-27 00:45:50.000" +"","Fear Effect Sedna","nvdec;status-playable","playable","2021-01-19 13:10:33.000" +"0100F5501CE12000","Fearmonium","status-boots;crash","boots","2024-03-06 11:26:11.000" +"0100E4300CB3E000","Feather","status-playable","playable","2021-06-03 14:11:27.000" +"","Felix the Reaper","nvdec;status-playable","playable","2020-10-20 23:43:03.000" +"","Feudal Alloy","status-playable","playable","2021-01-14 08:48:14.000" +"01006980127F0000","Fight Crab","status-playable;online-broken;ldn-untested","playable","2022-10-05 10:24:04.000" +"","Fight of Animals","online;status-playable","playable","2020-10-15 15:08:28.000" +"","Fight'N Rage","status-playable","playable","2020-06-16 23:35:19.000" +"0100D02014048000","Fighting EX Layer Another Dash","status-playable;online-broken;UE4","playable","2024-04-07 10:22:33.000" +"0100118009C68000","Figment","nvdec;status-playable","playable","2021-01-27 19:36:05.000" +"","Fill-a-Pix: Phil's Epic Adventure","status-playable","playable","2020-12-22 13:48:22.000" +"0100C3A00BB76000","Fimbul","status-playable;nvdec","playable","2022-07-26 13:31:47.000" +"","Fin and the Ancient Mystery","nvdec;status-playable","playable","2020-12-17 16:40:39.000" +"0100A5B00BDC6000","Final Fantasy VII","status-playable","playable","2022-12-09 17:03:30.000" +"","Final Light, The Prison","status-playable","playable","2020-07-31 21:48:44.000" +"0100FF100FB68000","Finding Teddy 2 : Definitive Edition","gpu;status-ingame","ingame","2024-04-19 16:51:33.000" +"","Fire & Water","status-playable","playable","2020-12-15 15:43:20.000" +"0100F15003E64000","Fire Emblem Warriors","status-playable;nvdec","playable","2023-05-10 01:53:10.000" +"010071F0143EA000","Fire Emblem Warriors: Three Hopes","gpu;status-ingame;nvdec","ingame","2024-05-01 07:07:42.000" +"0100A6301214E000","Fire Emblem: Engage","status-playable;amd-vendor-bug;mac-bug","playable","2024-09-01 23:37:26.000" +"0100A12011CC8000","Fire Emblem: Shadow Dragon and the Blade of Light","status-playable","playable","2022-10-17 19:49:14.000" +"010055D009F78000","Fire Emblem: Three Houses","status-playable;online-broken","playable","2024-09-14 23:53:50.000" +"010025C014798000","Fire: Ungh's Quest","status-playable;nvdec","playable","2022-10-27 21:41:26.000" +"0100434003C58000","Firefighters - The Simulation","status-playable","playable","2021-02-19 13:32:05.000" +"","Firefighters: Airport Fire Department","status-playable","playable","2021-02-15 19:17:00.000" +"0100AC300919A000","Firewatch","status-playable","playable","2021-06-03 10:56:38.000" +"","Firework","status-playable","playable","2020-12-04 20:20:09.000" +"0100DEB00ACE2000","Fishing Star World Tour","status-playable","playable","2022-09-13 19:08:51.000" +"010069800D292000","Fishing Universe Simulator","status-playable","playable","2021-04-15 14:00:43.000" +"0100807008868000","Fit Boxing","status-playable","playable","2022-07-26 19:24:55.000" +"","Fitness Boxing","services;status-ingame","ingame","2020-05-17 14:00:48.000" +"0100E7300AAD4000","Fitness Boxing","status-playable","playable","2021-04-14 20:33:33.000" +"0100073011382000","Fitness Boxing 2: Rhythm & Exercise","crash;status-ingame","ingame","2021-04-14 20:40:48.000" +"","Five Dates","nvdec;status-playable","playable","2020-12-11 15:17:11.000" +"01009060193C4000","Five Nights At Freddy’s Security Breach","gpu;status-ingame;crash;mac-bug","ingame","2023-04-23 22:33:28.000" +"0100B6200D8D2000","Five Nights at Freddy's","status-playable","playable","2022-09-13 19:26:36.000" +"01004EB00E43A000","Five Nights at Freddy's 2","status-playable","playable","2023-02-08 15:48:24.000" +"010056100E43C000","Five Nights at Freddy's 3","status-playable","playable","2022-09-13 20:58:07.000" +"010083800E43E000","Five Nights at Freddy's 4","status-playable","playable","2023-08-19 07:28:03.000" +"0100F7901118C000","Five Nights at Freddy's: Help Wanted","status-playable;UE4","playable","2022-09-29 12:40:09.000" +"01003B200E440000","Five Nights at Freddy's: Sister Location","status-playable","playable","2023-10-06 09:00:58.000" +"010038200E088000","Flan","status-ingame;crash;regression","ingame","2021-11-17 07:39:28.000" +"","Flashback","nvdec;status-playable","playable","2020-05-14 13:57:29.000" +"0100C53004C52000","Flat Heroes","gpu;status-ingame","ingame","2022-07-26 19:37:37.000" +"","Flatland: Prologue","status-playable","playable","2020-12-11 20:41:12.000" +"","Flinthook","online;status-playable","playable","2021-03-25 20:42:29.000" +"010095A004040000","Flip Wars","services;status-ingame;ldn-untested","ingame","2022-05-02 15:39:18.000" +"01009FB002B2E000","Flipping Death","status-playable","playable","2021-02-17 16:12:30.000" +"","Flood of Light","status-playable","playable","2020-05-15 14:15:25.000" +"0100DF9005E7A000","Floor Kids","status-playable;nvdec","playable","2024-08-18 19:38:49.000" +"","Florence","status-playable","playable","2020-09-05 01:22:30.000" +"","Flowlines VS","status-playable","playable","2020-12-17 17:01:53.000" +"","Flux8","nvdec;status-playable","playable","2020-06-19 20:55:11.000" +"","Fly O'Clock VS","status-playable","playable","2020-05-17 13:39:52.000" +"","Fly Punch Boom!","online;status-playable","playable","2020-06-21 12:06:11.000" +"0100419013A8A000","Flying Hero X","status-menus;crash","menus","2021-11-17 07:46:58.000" +"","Fobia","status-playable","playable","2020-12-14 21:05:23.000" +"0100F3900D0F0000","Food Truck Tycoon","status-playable","playable","2022-10-17 20:15:55.000" +"01007CF013152000","Football Manager 2021 Touch","gpu;status-ingame","ingame","2022-10-17 20:08:23.000" +"010097F0099B4000","Football Manager Touch 2018","status-playable","playable","2022-07-26 20:17:56.000" +"010069400B6BE000","For The King","nvdec;status-playable","playable","2021-02-15 18:51:44.000" +"01001D200BCC4000","Forager","status-menus;crash","menus","2021-11-24 07:10:17.000" +"0100AE001256E000","Foreclosed","status-ingame;crash;Needs More Attention;nvdec","ingame","2022-12-06 14:41:12.000" +"","Foregone","deadlock;status-ingame","ingame","2020-12-17 15:26:53.000" +"010059E00B93C000","Forgotton Anne","nvdec;status-playable","playable","2021-02-15 18:28:07.000" +"","Fort Boyard","nvdec;slow;status-playable","playable","2020-05-15 13:22:53.000" +"010025400AECE000","Fortnite","services-horizon;status-nothing","nothing","2024-04-06 18:23:25.000" +"0100CA500756C000","Fossil Hunters","status-playable;nvdec","playable","2022-07-27 11:37:20.000" +"","FoxyLand","status-playable","playable","2020-07-29 20:55:20.000" +"","FoxyLand 2","status-playable","playable","2020-08-06 14:41:30.000" +"01004200099F2000","Fractured Minds","status-playable","playable","2022-09-13 21:21:40.000" +"0100AC40108D8000","Fred3ric","status-playable","playable","2021-04-15 13:30:31.000" +"","Frederic 2","status-playable","playable","2020-07-23 16:44:37.000" +"","Frederic: Resurrection of Music","nvdec;status-playable","playable","2020-07-23 16:59:53.000" +"010082B00EE50000","Freedom Finger","nvdec;status-playable","playable","2021-06-09 19:31:30.000" +"","Freedom Planet","status-playable","playable","2020-05-14 12:23:06.000" +"010003F00BD48000","Friday the 13th: Killer Puzzle","status-playable","playable","2021-01-28 01:33:38.000" +"010092A00C4B6000","Friday the 13th: The Game","status-playable;nvdec;online-broken;UE4","playable","2022-09-06 17:33:27.000" +"0100F200178F4000","Front Mission 1st Remake","status-playable","playable","2023-06-09 07:44:24.000" +"","Frontline Zed","status-playable","playable","2020-10-03 12:55:59.000" +"0100B5300B49A000","Frost","status-playable","playable","2022-07-27 12:00:36.000" +"","Fruitfall Crush","status-playable","playable","2020-10-20 11:33:33.000" +"","FullBlast","status-playable","playable","2020-05-19 10:34:13.000" +"","FunBox Party","status-playable","playable","2020-05-15 12:07:02.000" +"","Funghi Puzzle Funghi Explosion","status-playable","playable","2020-11-23 14:17:41.000" +"01008E10130F8000","Funimation","gpu;status-boots","boots","2021-04-08 13:08:17.000" +"","Funny Bunny Adventures","status-playable","playable","2020-08-05 13:46:56.000" +"01000EC00AF98000","Furi","status-playable","playable","2022-07-27 12:21:20.000" +"01000EC00AF98000","Furi Definitive Edition","status-playable","playable","2022-07-27 12:35:08.000" +"0100A6B00D4EC000","Furwind","status-playable","playable","2021-02-19 19:44:08.000" +"","Fury Unleashed","crash;services;status-ingame","ingame","2020-10-18 11:52:40.000" +"","Fury Unleashed Demo","status-playable","playable","2020-10-08 20:09:21.000" +"","Fushigi no Gensokyo Lotus Labyrinth","Needs Update;audio;gpu;nvdec;status-ingame","ingame","2021-01-20 15:30:02.000" +"01003C300B274000","Futari de! Nyanko Daisensou","status-playable","playable","2024-01-05 22:26:52.000" +"010067600F1A0000","FuzzBall","crash;status-nothing","nothing","2021-03-29 20:13:21.000" +"","G-MODE Archives 06 The strongest ever Julia Miyamoto","status-playable","playable","2020-10-15 13:06:26.000" +"","G.I. Joe Operation Blackout","UE4;crash;status-boots","boots","2020-11-21 12:37:44.000" +"0100C9800A454000","GALAK-Z: Variant S","status-boots;online-broken","boots","2022-07-29 11:59:12.000" +"010045F00BFC2000","GIGA WRECKER Alt.","status-playable","playable","2022-07-29 14:13:54.000" +"0100C1800A9B6000","GO VACATION","status-playable;nvdec;ldn-works","playable","2024-05-13 19:28:53.000" +"01001C700873E000","GOD EATER 3","gpu;status-ingame;nvdec","ingame","2022-07-29 21:33:21.000" +"","GOD WARS THE COMPLETE LEGEND","nvdec;status-playable","playable","2020-05-19 14:37:50.000" +"","GORSD","status-playable","playable","2020-12-04 22:15:21.000" +"010068D00AE68000","GREEN","status-playable","playable","2022-08-01 12:54:15.000" +"0100DFE00F002000","GREEN The Life Algorithm","status-playable","playable","2022-09-27 21:37:13.000" +"0100DC800A602000","GRID Autosport","status-playable;nvdec;online-broken;ldn-untested","playable","2023-03-02 20:14:45.000" +"0100459009A2A000","GRIP","status-playable;nvdec;online-broken;UE4","playable","2022-08-01 15:00:22.000" +"0100E1700C31C000","GRIS","nvdec;status-playable","playable","2021-06-03 13:33:44.000" +"01009D7011B02000","GRISAIA PHANTOM TRIGGER 01&02","status-playable;nvdec","playable","2022-12-04 21:16:06.000" +"0100D970123BA000","GRISAIA PHANTOM TRIGGER 04 -0100D970123BA000","audout;status-playable","playable","2021-01-31 12:40:37.000" +"01002330123BC000","GRISAIA PHANTOM TRIGGER 05","audout;nvdec;status-playable","playable","2021-01-31 12:49:59.000" +"0100CAF013AE6000","GRISAIA PHANTOM TRIGGER 5.5","audout;nvdec;status-playable","playable","2021-01-31 12:59:44.000" +"","GUILTY GEAR XX ACCENT CORE PLUS R","nvdec;status-playable","playable","2021-01-13 09:28:33.000" +"01003C6008940000","GUNBIRD for Nintendo Switch","32-bit;status-playable","playable","2021-06-04 19:16:01.000" +"","GUNBIRD2 for Nintendo Switch","status-playable","playable","2020-10-10 14:41:16.000" +"","Gal Metal - 01B8000C2EA000","status-playable","playable","2022-07-27 20:57:48.000" +"010024700901A000","Gal*Gun 2","status-playable;nvdec;UE4","playable","2022-07-27 12:45:37.000" +"0100047013378000","Gal*Gun Returns [ ぎゃる☆がん りたーんず ]","status-playable;nvdec","playable","2022-10-17 23:50:46.000" +"0100C62011050000","Game Boy - Nintendo Switch Online","status-playable","playable","2023-03-21 12:43:48.000" +"010012F017576000","Game Boy Advance - Nintendo Switch Online","status-playable","playable","2023-02-16 20:38:15.000" +"0100FA5010788000","Game Builder Garage","status-ingame","ingame","2024-04-20 21:46:22.000" +"","Game Dev Story","status-playable","playable","2020-05-20 00:00:38.000" +"01006BD00F8C0000","Game Doraemon Nobita no Shin Kyoryu","gpu;status-ingame","ingame","2023-02-27 02:03:28.000" +"","Garage","status-playable","playable","2020-05-19 20:59:53.000" +"010061E00E8BE000","Garfield Kart Furious Racing","status-playable;ldn-works;loader-allocator","playable","2022-09-13 21:40:25.000" +"","Gates of Hell","slow;status-playable","playable","2020-10-22 12:44:26.000" +"010025500C098000","Gato Roboto","status-playable","playable","2023-01-20 15:04:11.000" +"010065E003FD8000","Gear.Club Unlimited","status-playable","playable","2021-06-08 13:03:19.000" +"010072900AFF0000","Gear.Club Unlimited 2","status-playable;nvdec;online-broken","playable","2022-07-29 12:52:16.000" +"01000F000D9F0000","Geki Yaba Runner Anniversary Edition","status-playable","playable","2021-02-19 18:59:07.000" +"","Gekido Kintaro's Revenge","status-playable","playable","2020-10-27 12:44:05.000" +"01009D000AF3A000","Gelly Break","UE4;status-playable","playable","2021-03-03 16:04:02.000" +"01001A4008192000","Gem Smashers","nvdec;status-playable","playable","2021-06-08 13:40:51.000" +"","Genetic Disaster","status-playable","playable","2020-06-19 21:41:12.000" +"0100D7E0110B2000","Genkai Tokki Moero Crystal H- 極限凸起 萌情水晶 H - 한계돌파 모에로크리스탈 H","32-bit;status-playable","playable","2022-06-06 00:42:09.000" +"010000300C79C000","Gensokyo Defenders","status-playable;online-broken;UE4","playable","2022-07-29 13:48:12.000" +"0100AC600EB4C000","Gensou Rougoku no Kaleidscope","status-menus;crash","menus","2021-11-24 08:45:07.000" +"","Georifters","UE4;crash;nvdec;status-menus","menus","2020-12-04 22:30:50.000" +"","Gerrrms","status-playable","playable","2020-08-15 11:32:52.000" +"","Get 10 Quest","status-playable","playable","2020-08-03 12:48:39.000" +"0100B5B00E77C000","Get Over Here","status-playable","playable","2022-10-28 11:53:52.000" +"0100EEB005ACC000","Ghost 1.0","status-playable","playable","2021-02-19 20:48:47.000" +"010063200C588000","Ghost Blade HD","status-playable;online-broken","playable","2022-09-13 21:51:21.000" +"","Ghost Grab 3000","status-playable","playable","2020-07-11 18:09:52.000" +"","Ghost Parade","status-playable","playable","2020-07-14 00:43:54.000" +"01004B301108C000","Ghost Sweeper","status-playable","playable","2022-10-10 12:45:36.000" +"010029B018432000","Ghost Trick Phantom Detective","status-playable","playable","2023-08-23 14:50:12.000" +"010008A00F632000","Ghostbusters: The Video Game Remastered","status-playable;nvdec","playable","2021-09-17 07:26:57.000" +"","Ghostrunner","UE4;crash;gpu;nvdec;status-ingame","ingame","2020-12-17 13:01:59.000" +"0100D6200F2BA000","Ghosts 'n Goblins Resurrection","status-playable","playable","2023-05-09 12:40:41.000" +"01003830092B8000","Giana Sisters: Twisted Dreams - Owltimate Edition","status-playable","playable","2022-07-29 14:06:12.000" +"0100D95012C0A000","Gibbous - A Cthulhu Adventure","status-playable;nvdec","playable","2022-10-10 12:57:17.000" +"01002C400E526000","Gigantosaurus The Game","status-playable;UE4","playable","2022-09-27 21:20:00.000" +"0100C50007070000","Ginger: Beyond the Crystal","status-playable","playable","2021-02-17 16:27:00.000" +"","Girabox","status-playable","playable","2020-12-12 13:55:05.000" +"","Giraffe and Annika","UE4;crash;status-ingame","ingame","2020-12-04 22:41:57.000" +"01006DD00CC96000","Girls und Panzer Dream Tank Match DX","status-playable;ldn-untested","playable","2022-09-12 16:07:11.000" +"","Glaive: Brick Breaker","status-playable","playable","2020-05-20 12:15:59.000" +"","Glitch's Trip","status-playable","playable","2020-12-17 16:00:57.000" +"0100EB501130E000","Glyph","status-playable","playable","2021-02-08 19:56:51.000" +"","Gnome More War","status-playable","playable","2020-12-17 16:33:07.000" +"","Gnomes Garden 2","status-playable","playable","2021-02-19 20:08:13.000" +"010036C00D0D6000","Gnomes Garden: Lost King","deadlock;status-menus","menus","2021-11-18 11:14:03.000" +"01008EF013A7C000","Gnosia","status-playable","playable","2021-04-05 17:20:30.000" +"01000C800FADC000","Go All Out","status-playable;online-broken","playable","2022-09-21 19:16:34.000" +"010055A0161F4000","Go Rally","gpu;status-ingame","ingame","2023-08-16 21:18:23.000" +"","Go! Fish Go!","status-playable","playable","2020-07-27 13:52:28.000" +"010032600C8CE000","Goat Simulator","32-bit;status-playable","playable","2022-07-29 21:02:33.000" +"0100CFA0111C8000","Gods Will Fall","status-playable","playable","2021-02-08 16:49:59.000" +"","Goetia","status-playable","playable","2020-05-19 12:55:39.000" +"","Going Under","deadlock;nvdec;status-ingame","ingame","2020-12-11 22:29:46.000" +"","Goken","status-playable","playable","2020-08-05 20:22:38.000" +"010013800F0A4000","Golazo - 010013800F0A4000","status-playable","playable","2022-09-13 21:58:37.000" +"01003C000D84C000","Golem Gates","status-ingame;crash;nvdec;online-broken;UE4","ingame","2022-07-30 11:35:11.000" +"","Golf Story","status-playable","playable","2020-05-14 14:56:17.000" +"01006FB00EBE0000","Golf With Your Friends","status-playable;online-broken","playable","2022-09-29 12:55:11.000" +"0100EEC00AA6E000","Gone Home","status-playable","playable","2022-08-01 11:14:20.000" +"","Gonner","status-playable","playable","2020-05-19 12:05:02.000" +"","Good Job!","status-playable","playable","2021-03-02 13:15:55.000" +"01003AD0123A2000","Good Night, Knight","status-nothing;crash","nothing","2023-07-30 23:38:13.000" +"","Good Pizza, Great Pizza","status-playable","playable","2020-12-04 22:59:18.000" +"","Goosebumps Dead of Night","gpu;nvdec;status-ingame","ingame","2020-12-10 20:02:16.000" +"","Goosebumps: The Game","status-playable","playable","2020-05-19 11:56:52.000" +"0100F2A005C98000","Gorogoa","status-playable","playable","2022-08-01 11:55:08.000" +"","Gotcha Racing 2nd","status-playable","playable","2020-07-23 17:14:04.000" +"","Gothic Murder: Adventure That Changes Destiny","deadlock;status-ingame;crash","ingame","2022-09-30 23:16:53.000" +"","Grab the Bottle","status-playable","playable","2020-07-14 17:06:41.000" +"","Graceful Explosion Machine","status-playable","playable","2020-05-19 20:36:55.000" +"","Grand Brix Shooter","slow;status-playable","playable","2020-06-24 13:23:54.000" +"010038100D436000","Grand Guilds","UE4;nvdec;status-playable","playable","2021-04-26 12:49:05.000" +"0100BE600D07A000","Grand Prix Story","status-playable","playable","2022-08-01 12:42:23.000" +"05B1D2ABD3D30000","Grand Theft Auto 3","services;status-nothing;crash;homebrew","nothing","2023-05-01 22:01:58.000" +"0100E0600BBC8000","Grandia HD Collection","status-boots;crash","boots","2024-08-19 04:29:48.000" +"","Grass Cutter","slow;status-ingame","ingame","2020-05-19 18:27:42.000" +"","Grave Danger","status-playable","playable","2020-05-18 17:41:28.000" +"010054A013E0C000","GraviFire","status-playable","playable","2021-04-05 17:13:32.000" +"01002C2011828000","Gravity Rider Zero","gpu;status-ingame;vulkan-backend-bug","ingame","2022-09-29 13:56:13.000" +"","Greedroid","status-playable","playable","2020-12-14 11:14:32.000" +"0100CBB0070EE000","Green Game","nvdec;status-playable","playable","2021-02-19 18:51:55.000" +"0100DA7013792000","Grey Skies: A War of the Worlds Story","status-playable;UE4","playable","2022-10-24 11:13:59.000" +"","Grid Mania","status-playable","playable","2020-05-19 14:11:05.000" +"","Gridd: Retroenhanced","status-playable","playable","2020-05-20 11:32:40.000" +"0100B7900B024000","Grim Fandango Remastered","status-playable;nvdec","playable","2022-08-01 13:55:58.000" +"010078E012D80000","Grim Legends 2: Song Of The Dark Swan","status-playable;nvdec","playable","2022-10-18 12:58:45.000" +"010009F011F90000","Grim Legends: The Forsaken Bride","status-playable;nvdec","playable","2022-10-18 13:14:06.000" +"01001E200F2F8000","Grimshade","status-playable","playable","2022-10-02 12:44:20.000" +"0100538012496000","Grindstone","status-playable","playable","2023-02-08 15:54:06.000" +"01005250123B8000","Grisaia Phantom Trigger 03","audout;status-playable","playable","2021-01-31 12:30:47.000" +"010091300FFA0000","Grizzland","gpu;status-ingame","ingame","2024-07-11 16:28:34.000" +"0100EB500D92E000","Groove Coaster: Wai Wai Party!!!!","status-playable;nvdec;ldn-broken","playable","2021-11-06 14:54:27.000" +"","Guacamelee! 2","status-playable","playable","2020-05-15 14:56:59.000" +"","Guacamelee! Super Turbo Championship Edition","status-playable","playable","2020-05-13 23:44:18.000" +"","Guess The Word","status-playable","playable","2020-07-26 21:34:25.000" +"","Guess the Character","status-playable","playable","2020-05-20 13:14:19.000" +"","Gunka o haita neko","gpu;nvdec;status-ingame","ingame","2020-08-25 12:37:56.000" +"","Gunman Clive HD Collection","status-playable","playable","2020-10-09 12:17:35.000" +"","Guns Gore and Cannoli 2","online;status-playable","playable","2021-01-06 18:43:59.000" +"","Gunvolt Chronicles: Luminous Avenger iX","status-playable","playable","2020-06-16 22:47:07.000" +"0100763015C2E000","Gunvolt Chronicles: Luminous Avenger iX 2","status-nothing;crash;Needs Update","nothing","2022-04-29 15:34:34.000" +"01002C8018554000","Gurimugurimoa OnceMore Demo","status-playable","playable","2022-07-29 22:07:31.000" +"0100AC601DCA8000","Gylt","status-ingame;crash","ingame","2024-03-18 20:16:51.000" +"0100822012D76000","HAAK","gpu;status-ingame","ingame","2023-02-19 14:31:05.000" +"","HARDCORE MECHA","slow;status-playable","playable","2020-11-01 15:06:33.000" +"","HARDCORE Maze Cube","status-playable","playable","2020-12-04 20:01:24.000" +"0100A8B00F0B4000","HYPERCHARGE: Unboxed","status-playable;nvdec;online-broken;UE4;ldn-untested","playable","2022-09-27 21:52:39.000" +"","Habroxia","status-playable","playable","2020-06-16 23:04:42.000" +"0100535012974000","Hades","status-playable;vulkan","playable","2022-10-05 10:45:21.000" +"","Hakoniwa Explorer Plus","slow;status-ingame","ingame","2021-02-19 16:56:19.000" +"","Halloween Pinball","status-playable","playable","2021-01-12 16:00:46.000" +"01006FF014152000","Hamidashi Creative","gpu;status-ingame","ingame","2021-12-19 15:30:51.000" +"01003B9007E86000","Hammerwatch","status-playable;online-broken;ldn-broken","playable","2022-08-01 16:28:46.000" +"01003620068EA000","Hand of Fate 2","status-playable","playable","2022-08-01 15:44:16.000" +"","Hang the Kings","status-playable","playable","2020-07-28 22:56:59.000" +"010066C018E50000","Happy Animals Mini Golf","gpu;status-ingame","ingame","2022-12-04 19:24:28.000" +"0100ECE00D13E000","Hard West","status-nothing;regression","nothing","2022-02-09 07:45:56.000" +"01000C90117FA000","HardCube","status-playable","playable","2021-05-05 18:33:03.000" +"","Hardway Party","status-playable","playable","2020-07-26 12:35:07.000" +"0100D0500AD30000","Harvest Life","status-playable","playable","2022-08-01 16:51:45.000" +"","Harvest Moon One World - 010016B010FDE00","status-playable","playable","2023-05-26 09:17:19.000" +"0100A280187BC000","Harvestella","status-playable;UE4;vulkan-backend-bug;mac-bug","playable","2024-02-13 07:04:11.000" +"","Has-Been Heroes","status-playable","playable","2021-01-13 13:31:48.000" +"01001CC00FA1A000","Hatsune Miku: Project DIVA Mega Mix","audio;status-playable;online-broken","playable","2024-01-07 23:12:57.000" +"01009E6014F18000","Haunted Dawn: The Zombie Apocalypse","status-playable","playable","2022-10-28 12:31:51.000" +"","Haunted Dungeons: Hyakki Castle","status-playable","playable","2020-08-12 14:21:48.000" +"0100E2600DBAA000","Haven","status-playable","playable","2021-03-24 11:52:41.000" +"0100EA900FB2C000","Hayfever","status-playable;loader-allocator","playable","2022-09-22 17:35:41.000" +"0100EFE00E1DC000","Headliner: NoviNews","online;status-playable","playable","2021-03-01 11:36:00.000" +"","Headsnatchers","UE4;crash;status-menus","menus","2020-07-14 13:29:14.000" +"","Headspun","status-playable","playable","2020-07-31 19:46:47.000" +"","Heart and Slash","status-playable","playable","2021-01-13 20:56:32.000" +"","Heaven Dust","status-playable","playable","2020-05-17 14:02:41.000" +"0100FD901000C000","Heaven's Vault","crash;status-ingame","ingame","2021-02-08 18:22:01.000" +"","Helheim Hassle","status-playable","playable","2020-10-14 11:38:36.000" +"01000938017E5C00","Hell Pie0","status-playable;nvdec;UE4","playable","2022-11-03 16:48:46.000" +"0100A4600E27A000","Hell Warders","online;status-playable","playable","2021-02-27 02:31:03.000" +"","Hell is Other Demons","status-playable","playable","2021-01-13 13:23:02.000" +"010044500CF8E000","Hellblade: Senua's Sacrifice","gpu;status-ingame;UE4;vulkan-backend-bug;opengl-backend-bug","ingame","2022-08-01 19:36:50.000" +"010087D0084A8000","Hello Kitty Kruisers With Sanrio Friends","nvdec;status-playable","playable","2021-06-04 19:08:46.000" +"0100FAA00B168000","Hello Neighbor","status-playable;UE4","playable","2022-08-01 21:32:23.000" +"","Hello Neighbor: Hide And Seek","UE4;gpu;slow;status-ingame","ingame","2020-10-24 10:59:57.000" +"010024600C794000","Hellpoint","status-menus","menus","2021-11-26 13:24:20.000" +"","Hero Express","nvdec;status-playable","playable","2020-08-06 13:23:43.000" +"010077D01094C000","Hero-U: Rogue to Redemption","nvdec;status-playable","playable","2021-03-24 11:40:01.000" +"0100D2B00BC54000","Heroes of Hammerwatch","status-playable","playable","2022-08-01 18:30:21.000" +"01001B70080F0000","Heroine Anthem Zero episode 1","status-playable;vulkan-backend-bug","playable","2022-08-01 22:02:36.000" +"010057300B0DC000","Heroki","gpu;status-ingame","ingame","2023-07-30 19:30:01.000" +"","Heroland","status-playable","playable","2020-08-05 15:35:39.000" +"01007AC00E012000","Hexagravity","status-playable","playable","2021-05-28 13:47:48.000" +"01004E800F03C000","Hidden","slow;status-ingame","ingame","2022-10-05 10:56:53.000" +"0100F6A00A684000","Higurashi no Naku Koro ni Hō","audio;status-ingame","ingame","2021-09-18 14:40:28.000" +"0100F8D0129F4000","Himehibi 1 gakki - Princess Days","status-nothing;crash","nothing","2021-11-03 08:34:19.000" +"","Hiragana Pixel Party","status-playable","playable","2021-01-14 08:36:50.000" +"01004990132AC000","Hitman 3 - Cloud Version","Needs Update;crash;services;status-nothing","nothing","2021-04-18 22:35:07.000" +"010083A018262000","Hitman: Blood Money - Reprisal","deadlock;status-ingame","ingame","2024-09-28 16:28:50.000" +"","HoPiKo","status-playable","playable","2021-01-13 20:12:38.000" +"","Hob: The Definitive Edition","status-playable","playable","2021-01-13 09:39:19.000" +"0100F7300ED2C000","Hoggy 2","status-playable","playable","2022-10-10 13:53:35.000" +"0100F7E00C70E000","Hogwarts Legacy 0100F7E00C70E000","status-ingame;slow","ingame","2024-09-03 19:53:58.000" +"0100633007D48000","Hollow Knight","status-playable;nvdec","playable","2023-01-16 15:44:56.000" +"0100F2100061E800","Hollow0","UE4;gpu;status-ingame","ingame","2021-03-03 23:42:56.000" +"","Holy Potatoes! What the Hell?!","status-playable","playable","2020-07-03 10:48:56.000" +"010087800EE5A000","Hopping girl KOHANE Jumping Kingdom: Princess of the Black Rabbit","status-boots;crash","boots","2023-02-19 00:51:21.000" +"010086D011EB8000","Horace","status-playable","playable","2022-10-10 14:03:50.000" +"0100001019F6E000","Horizon Chase 2","deadlock;slow;status-ingame;crash;UE4","ingame","2024-08-19 04:24:06.000" +"01009EA00B714000","Horizon Chase Turbo","status-playable","playable","2021-02-19 19:40:56.000" +"0100E4200FA82000","Horror Pinball Bundle","status-menus;crash","menus","2022-09-13 22:15:34.000" +"0100017007980000","Hotel Transylvania 3: Monsters Overboard","nvdec;status-playable","playable","2021-01-27 18:55:31.000" +"0100D0E00E51E000","Hotline Miami Collection","status-playable;nvdec","playable","2022-09-09 16:41:19.000" +"0100BDE008218000","Hotshot Racing","gpu;status-ingame;nvdec;online-broken;ldn-untested;vulkan-backend-bug","ingame","2024-02-04 21:31:17.000" +"0100CAE00EB02000","House Flipper","status-playable","playable","2021-06-16 18:28:32.000" +"0100F6800910A000","Hover","status-playable;online-broken","playable","2022-09-20 12:54:46.000" +"0100A66003384000","Hulu","status-boots;online-broken","boots","2022-12-09 10:05:00.000" +"","Human Resource Machine","32-bit;status-playable","playable","2020-12-17 21:47:09.000" +"","Human: Fall Flat","status-playable","playable","2021-01-13 18:36:05.000" +"","Hungry Shark World","status-playable","playable","2021-01-13 18:26:08.000" +"0100EBA004726000","Huntdown","status-playable","playable","2021-04-05 16:59:54.000" +"010068000CAC0000","Hunter's Legacy: Purrfect Edition","status-playable","playable","2022-08-02 10:33:31.000" +"0100C460040EA000","Hunting Simulator","status-playable;UE4","playable","2022-08-02 10:54:08.000" +"010061F010C3A000","Hunting Simulator 2","status-playable;UE4","playable","2022-10-10 14:25:51.000" +"","Hyper Jam","UE4;crash;status-boots","boots","2020-12-15 22:52:11.000" +"01003B200B372000","Hyper Light Drifter - Special Edition","status-playable;vulkan-backend-bug","playable","2023-01-13 15:44:48.000" +"","HyperBrawl Tournament","crash;services;status-boots","boots","2020-12-04 23:03:27.000" +"010061400ED90000","HyperParasite","status-playable;nvdec;UE4","playable","2022-09-27 22:05:44.000" +"0100959010466000","Hypnospace Outlaw","status-ingame;nvdec","ingame","2023-08-02 22:46:49.000" +"01002B00111A2000","Hyrule Warriors: Age of Calamity","gpu;deadlock;slow;status-ingame;crash;nvdec;amd-vendor-bug","ingame","2024-02-28 00:47:00.000" +"0100A2C01320E000","Hyrule Warriors: Age of Calamity - Demo Version","slow;status-playable","playable","2022-10-10 17:37:41.000" +"0100AE00096EA000","Hyrule Warriors: Definitive Edition","services-horizon;status-ingame;nvdec","ingame","2024-06-16 10:34:05.000" +"0100849000BDA000","I AM SETSUNA","status-playable","playable","2021-11-28 11:06:11.000" +"01001860140B0000","I Saw Black Clouds","nvdec;status-playable","playable","2021-04-19 17:22:16.000" +"","I, Zombie","status-playable","playable","2021-01-13 14:53:44.000" +"","ICEY","status-playable","playable","2021-01-14 16:16:04.000" +"0100737003190000","IMPLOSION","status-playable;nvdec","playable","2021-12-12 03:52:13.000" +"0100F1401161E000","INMOST","status-playable","playable","2022-10-05 11:27:40.000" +"0100D2D009028000","INSIDE","status-playable","playable","2021-12-25 20:24:56.000" +"010099700D750000","INSTANT SPORTS","status-playable","playable","2022-09-09 12:59:40.000" +"01001D0003B96000","INVERSUS Deluxe","status-playable;online-broken","playable","2022-08-02 14:35:36.000" +"0100F06013710000","ISLAND","status-playable","playable","2021-05-06 15:11:47.000" +"010068700C70A000","ITTA","status-playable","playable","2021-06-07 03:15:52.000" +"01004E5007E92000","Ice Age Scrat's Nutty Adventure","status-playable;nvdec","playable","2022-09-13 22:22:29.000" +"","Ice Cream Surfer","status-playable","playable","2020-07-29 12:04:07.000" +"0100954014718000","Ice Station Z","status-menus;crash","menus","2021-11-21 20:02:15.000" +"0100BC60099FE000","Iconoclasts","status-playable","playable","2021-08-30 21:11:04.000" +"","Idle Champions of the Forgotten Realms","online;status-boots","boots","2020-12-17 18:24:57.000" +"01002EC014BCA000","Idol Days - 愛怒流でいす","gpu;status-ingame;crash","ingame","2021-12-19 15:31:28.000" +"","If Found...","status-playable","playable","2020-12-11 13:43:14.000" +"01001AC00ED72000","If My Heart Had Wings","status-playable","playable","2022-09-29 14:54:57.000" +"01009F20086A0000","Ikaruga","status-playable","playable","2023-04-06 15:00:02.000" +"010040900AF46000","Ikenfell","status-playable","playable","2021-06-16 17:18:44.000" +"01007BC00E55A000","Immortal Planet","status-playable","playable","2022-09-20 13:40:43.000" +"010079501025C000","Immortal Realms: Vampire Wars","nvdec;status-playable","playable","2021-06-17 17:41:46.000" +"","Immortal Redneck - 0100F400435A000","nvdec;status-playable","playable","2021-01-27 18:36:28.000" +"01004A600EC0A000","Immortals Fenyx Rising","gpu;status-menus;crash","menus","2023-02-24 16:19:55.000" +"0100A760129A0000","In rays of the Light","status-playable","playable","2021-04-07 15:18:07.000" +"01004DE011076000","Indie Darling Bundle Vol. 3","status-playable","playable","2022-10-02 13:01:57.000" +"0100A2101107C000","Indie Puzzle Bundle Vol 1","status-playable","playable","2022-09-27 22:23:21.000" +"","Indiecalypse","nvdec;status-playable","playable","2020-06-11 20:19:09.000" +"01001D3003FDE000","Indivisible","status-playable;nvdec","playable","2022-09-29 15:20:57.000" +"01002BD00F626000","Inertial Drift","status-playable;online-broken","playable","2022-10-11 12:22:19.000" +"","Infernium","UE4;regression;status-nothing","nothing","2021-01-13 16:36:07.000" +"","Infinite Minigolf","online;status-playable","playable","2020-09-29 12:26:25.000" +"01001CB00EFD6000","Infliction","status-playable;nvdec;UE4","playable","2022-10-02 13:15:55.000" +"","InnerSpace","status-playable","playable","2021-01-13 19:36:14.000" +"","Inside Grass: A little adventure","status-playable","playable","2020-10-15 15:26:27.000" +"","Instant Sports Summer Games","gpu;status-menus","menus","2020-09-02 13:39:28.000" +"010031B0145B8000","Instant Sports Tennis","status-playable","playable","2022-10-28 16:42:17.000" +"010041501005E000","Interrogation: You will be deceived","status-playable","playable","2022-10-05 11:40:10.000" +"01000F700DECE000","Into the Dead 2","status-playable;nvdec","playable","2022-09-14 12:36:14.000" +"","Invisible Fist","status-playable","playable","2020-08-08 13:25:52.000" +"","Invisible, Inc.","crash;status-nothing","nothing","2021-01-29 16:28:13.000" +"01005F400E644000","Invisigun Reloaded","gpu;online;status-ingame","ingame","2021-06-10 12:13:24.000" +"010041C00D086000","Ion Fury","status-ingame;vulkan-backend-bug","ingame","2022-08-07 08:27:51.000" +"010095C016C14000","Iridium","status-playable","playable","2022-08-05 23:19:53.000" +"0100945012168000","Iris Fall","status-playable;nvdec","playable","2022-10-18 13:40:22.000" +"0100AD300B786000","Iris School of Wizardry - Vinculum Hearts -","status-playable","playable","2022-12-05 13:11:15.000" +"01005270118D6000","Iron Wings","slow;status-ingame","ingame","2022-08-07 08:32:57.000" +"","Ironcast","status-playable","playable","2021-01-13 13:54:29.000" +"0100E5700CD56000","Irony Curtain: From Matryoshka with Love","status-playable","playable","2021-06-04 20:12:37.000" +"","Is It Wrong to Try to Pick Up Girls in a Dungeon? Infinite Combate","status-playable","playable","2020-08-31 13:52:21.000" +"010077900440A000","Island Flight Simulator","status-playable","playable","2021-06-04 19:42:46.000" +"","Island Saver","nvdec;status-playable","playable","2020-10-23 22:07:02.000" +"","Isoland","status-playable","playable","2020-07-26 13:48:16.000" +"","Isoland 2: Ashes of Time","status-playable","playable","2020-07-26 14:29:05.000" +"010001F0145A8000","Isolomus","services;status-boots","boots","2021-11-03 07:48:21.000" +"","Ittle Dew 2+","status-playable","playable","2020-11-17 11:44:32.000" +"0100DEB00F12A000","IxSHE Tell","status-playable;nvdec","playable","2022-12-02 18:00:42.000" +"0100D8E00C874000","Izneo","status-menus;online-broken","menus","2022-08-06 15:56:23.000" +"","JDM Racing","status-playable","playable","2020-08-03 17:02:37.000" +"0100183010F12000","JUMP FORCE Deluxe Edition","status-playable;nvdec;online-broken;UE4","playable","2023-10-01 15:56:05.000" +"0100DDB00DB38000","JUST DANCE 2020","status-playable","playable","2022-01-24 13:31:57.000" +"010035A0044E8000","JYDGE","status-playable","playable","2022-08-02 21:20:13.000" +"","James Pond Operation Robocod","status-playable","playable","2021-01-13 09:48:45.000" +"","Japanese Rail Sim: Journey to Kyoto","nvdec;status-playable","playable","2020-07-29 17:14:21.000" +"","Jenny LeClue - Detectivu","crash;status-nothing","nothing","2020-12-15 21:07:07.000" +"01006E400AE2A000","Jeopardy!","audout;nvdec;online;status-playable","playable","2021-02-22 13:53:46.000" +"0100E4900D266000","Jet Kave Adventure","status-playable;nvdec","playable","2022-09-09 14:50:39.000" +"0100F3500C70C000","Jet Lancer","gpu;status-ingame","ingame","2021-02-15 18:15:47.000" +"0100A5A00AF26000","Jettomero: Hero of the Universe","status-playable","playable","2022-08-02 14:46:43.000" +"01008330134DA000","Jiffy","gpu;status-ingame;opengl","ingame","2024-02-03 23:11:24.000" +"","Jim Is Moving Out!","deadlock;status-ingame","ingame","2020-06-03 22:05:19.000" +"0100F4D00D8BE000","Jinrui no Ninasama he","status-ingame;crash","ingame","2023-03-07 02:04:17.000" +"010038D011F08000","Jisei: The First Case HD","audio;status-playable","playable","2022-10-05 11:43:33.000" +"01008120128C2000","JoJos Bizarre Adventure All-Star Battle R","status-playable","playable","2022-12-03 10:45:10.000" +"","Job the Leprechaun","status-playable","playable","2020-06-05 12:10:06.000" +"01007090104EC000","John Wick Hex","status-playable","playable","2022-08-07 08:29:12.000" +"010069B002CDE000","Johnny Turbo's Arcade Gate of Doom","status-playable","playable","2022-07-29 12:17:50.000" +"010080D002CC6000","Johnny Turbo's Arcade Two Crude Dudes","status-playable","playable","2022-08-02 20:29:50.000" +"0100D230069CC000","Johnny Turbo's Arcade Wizard Fire","status-playable","playable","2022-08-02 20:39:15.000" +"01008B60117EC000","Journey to the Savage Planet","status-playable;nvdec;UE4;ldn-untested","playable","2022-10-02 18:48:12.000" +"0100C7600F654000","Juicy Realm - 0100C7600F654000","status-playable","playable","2023-02-21 19:16:20.000" +"","Jumanji","UE4;crash;status-boots","boots","2020-07-12 13:52:25.000" +"","Jump King","status-playable","playable","2020-06-09 10:12:39.000" +"0100B9C012706000","Jump Rope Challenge","services;status-boots;crash;Needs Update","boots","2023-02-27 01:24:28.000" +"","Jumping Joe & Friends","status-playable","playable","2021-01-13 17:09:42.000" +"","JunkPlanet","status-playable","playable","2020-11-09 12:38:33.000" +"0100CE100A826000","Jurassic Pinball","status-playable","playable","2021-06-04 19:02:37.000" +"010050A011344000","Jurassic World Evolution Complete Edition","cpu;status-menus;crash","menus","2023-08-04 18:06:54.000" +"0100BCE000598000","Just Dance 2017","online;status-playable","playable","2021-03-05 09:46:01.000" +"","Just Dance 2019","gpu;online;status-ingame","ingame","2021-02-27 17:21:27.000" +"0100EA6014BB8000","Just Dance 2022","gpu;services;status-ingame;crash;Needs Update","ingame","2022-10-28 11:01:53.000" +"0100BEE017FC0000","Just Dance 2023","status-nothing","nothing","2023-06-05 16:44:54.000" +"0100AC600CF0A000","Just Die Already","status-playable;UE4","playable","2022-12-13 13:37:50.000" +"","Just Glide","status-playable","playable","2020-08-07 17:38:10.000" +"","Just Shapes & Beats","ldn-untested;nvdec;status-playable","playable","2021-02-09 12:18:36.000" +"0100BDC00A664000","KAMEN RIDER CLIMAX SCRAMBLE","status-playable;nvdec;ldn-untested","playable","2024-07-03 08:51:11.000" +"0100A9801180E000","KAMEN RIDER memory of heroez / Premium Sound Edition","status-playable","playable","2022-12-06 03:14:26.000" +"","KAMIKO","status-playable","playable","2020-05-13 12:48:57.000" +"0100F9800EDFA000","KATANA KAMI: A Way of the Samurai Story","slow;status-playable","playable","2022-04-09 10:40:16.000" +"","KINGDOM HEARTS Melody of Memory","crash;nvdec;status-ingame","ingame","2021-03-03 17:34:12.000" +"","KORG Gadget","status-playable","playable","2020-05-13 13:57:24.000" +"010035A00DF62000","KUNAI","status-playable;nvdec","playable","2022-09-20 13:48:34.000" +"010037500F282000","KUUKIYOMI 2: Consider It More! - New Era","status-nothing;crash;Needs Update","nothing","2021-11-02 09:34:40.000" +"0100D58012FC2000","Kagamihara/Justice","crash;status-nothing","nothing","2021-06-21 16:41:29.000" +"0100D5F00EC52000","Kairobotica","status-playable","playable","2021-05-06 12:17:56.000" +"","Kangokuto Mary Skelter Finale","audio;crash;status-ingame","ingame","2021-01-09 22:39:28.000" +"01007FD00DB20000","Katakoi Contrast - collection of branch -","status-playable;nvdec","playable","2022-12-09 09:41:26.000" +"0100D7000C2C6000","Katamari Damacy REROLL","status-playable","playable","2022-08-02 21:35:05.000" +"010029600D56A000","Katana ZERO","status-playable","playable","2022-08-26 08:09:09.000" +"010038B00F142000","Kaze and the Wild Masks","status-playable","playable","2021-04-19 17:11:03.000" +"","Keen: One Girl Army","status-playable","playable","2020-12-14 23:19:52.000" +"01008D400A584000","Keep Talking and Nobody Explodes","status-playable","playable","2021-02-15 18:05:21.000" +"01004B100BDA2000","Kemono Friends Picross","status-playable","playable","2023-02-08 15:54:34.000" +"","Kentucky Robo Chicken","status-playable","playable","2020-05-12 20:54:17.000" +"0100327005C94000","Kentucky Route Zero [0100327005C94000]","status-playable","playable","2024-04-09 23:22:46.000" +"","KeroBlaster","status-playable","playable","2020-05-12 20:42:52.000" +"0100F680116A2000","Kholat","UE4;nvdec;status-playable","playable","2021-06-17 11:52:48.000" +"","Kid Tripp","crash;status-nothing","nothing","2020-10-15 07:41:23.000" +"","Kill The Bad Guy","status-playable","playable","2020-05-12 22:16:10.000" +"","Kill la Kill - IF","status-playable","playable","2020-06-09 14:47:08.000" +"0100F2900B3E2000","Killer Queen Black","ldn-untested;online;status-playable","playable","2021-04-08 12:46:18.000" +"","Kin'iro no Corda Octave","status-playable","playable","2020-09-22 13:23:12.000" +"010089000F0E8000","Kine","status-playable;UE4","playable","2022-09-14 14:28:37.000" +"0100E6B00FFBA000","King Lucas","status-playable","playable","2022-09-21 19:43:23.000" +"","King Oddball","status-playable","playable","2020-05-13 13:47:57.000" +"01008D80148C8000","King of Seas","status-playable;nvdec;UE4","playable","2022-10-28 18:29:41.000" +"0100515014A94000","King of Seas Demo","status-playable;nvdec;UE4","playable","2022-10-28 18:09:31.000" +"0100A280121F6000","Kingdom Rush","status-nothing;32-bit;crash;Needs More Attention","nothing","2022-10-05 12:34:00.000" +"0100BD9004AB6000","Kingdom: New Lands","status-playable","playable","2022-08-02 21:48:50.000" +"","Kingdom: Two Crowns","status-playable","playable","2020-05-16 19:36:21.000" +"0100EF50132BE000","Kingdoms of Amalur: Re-Reckoning","status-playable","playable","2023-08-10 13:05:08.000" +"0100227010460000","Kirby Fighters 2","ldn-works;online;status-playable","playable","2021-06-17 13:06:39.000" +"01007E3006DDA000","Kirby Star Allies","status-playable;nvdec","playable","2023-11-15 17:06:19.000" +"01004D300C5AE000","Kirby and the Forgotten Land","gpu;status-ingame","ingame","2024-03-11 17:11:21.000" +"010091201605A000","Kirby and the Forgotten Land (Demo version)","status-playable;demo","playable","2022-08-21 21:03:01.000" +"0100A8E016236000","Kirby’s Dream Buffet","status-ingame;crash;online-broken;Needs Update;ldn-works","ingame","2024-03-03 17:04:44.000" +"01006B601380E000","Kirby’s Return to Dream Land Deluxe","status-playable","playable","2024-05-16 19:58:04.000" +"010091D01A57E000","Kirby’s Return to Dream Land Deluxe - Demo","status-playable;demo","playable","2023-02-18 17:21:55.000" +"0100F3A00F4CA000","Kissed by the Baddest Bidder","gpu;status-ingame;nvdec","ingame","2022-12-04 20:57:11.000" +"01000C900A136000","Kitten Squad","status-playable;nvdec","playable","2022-08-03 12:01:59.000" +"","Klondike Solitaire","status-playable","playable","2020-12-13 16:17:27.000" +"","Knight Squad","status-playable","playable","2020-08-09 16:54:51.000" +"010024B00E1D6000","Knight Squad 2","status-playable;nvdec;online-broken","playable","2022-10-28 18:38:09.000" +"","Knight Terrors","status-playable","playable","2020-05-13 13:09:22.000" +"","Knightin'+","status-playable","playable","2020-08-31 18:18:21.000" +"","Knights of Pen and Paper +1 Deluxier Edition","status-playable","playable","2020-05-11 21:46:32.000" +"","Knights of Pen and Paper 2 Deluxiest Edition","status-playable","playable","2020-05-13 14:07:00.000" +"010001A00A1F6000","Knock-Knock","nvdec;status-playable","playable","2021-02-01 20:03:19.000" +"01009EF00DDB4000","Knockout City","services;status-boots;online-broken","boots","2022-12-09 09:48:58.000" +"0100C57019BA2000","Koa and the Five Pirates of Mara","gpu;status-ingame","ingame","2024-07-11 16:14:44.000" +"","Koi DX","status-playable","playable","2020-05-11 21:37:51.000" +"","Koi no Hanasaku Hyakkaen","32-bit;gpu;nvdec;status-ingame","ingame","2020-10-03 14:17:10.000" +"01005D200C9AA000","Koloro","status-playable","playable","2022-08-03 12:34:02.000" +"0100464009294000","Kona","status-playable","playable","2022-08-03 12:48:19.000" +"010016C011AAA000","Kono Subarashii Sekai ni Shukufuku o Kono Yokubo no Isho ni Choai o","status-playable","playable","2023-04-26 09:51:08.000" +"","Koral","UE4;crash;gpu;status-menus","menus","2020-11-16 12:41:26.000" +"010046600CCA4000","Kotodama: The 7 Mysteries of Fujisawa","audout;status-playable","playable","2021-02-01 20:28:37.000" +"010022801242C000","KukkoroDays","status-menus;crash","menus","2021-11-25 08:52:56.000" +"010060400ADD2000","Kunio-Kun: The World Classics Collection","online;status-playable","playable","2021-01-29 20:21:46.000" +"0100894011F62000","Kwaidan ~Azuma manor story~","status-playable","playable","2022-10-05 12:50:44.000" +"0100830004FB6000","L.A. Noire","status-playable","playable","2022-08-03 16:49:35.000" +"","L.F.O. - Lost Future Omega -","UE4;deadlock;status-boots","boots","2020-10-16 12:16:44.000" +"0100F2B0123AE000","L.O.L. Surprise! Remix: We Rule the World","status-playable","playable","2022-10-11 22:48:03.000" +"010026000F662800","LA-MULANA","gpu;status-ingame","ingame","2022-08-12 01:06:21.000" +"0100E5D00F4AE000","LA-MULANA 1 & 2","status-playable","playable","2022-09-22 17:56:36.000" +"01009E100BDD6000","LAST FIGHT","status-playable","playable","2022-09-20 13:54:55.000" +"0100739018020000","LEGO 2K Drive","gpu;status-ingame;ldn-works","ingame","2024-04-09 02:05:12.000" +"010070D009FEC000","LEGO DC Super-Villains","status-playable","playable","2021-05-27 18:10:37.000" +"010052A00B5D2000","LEGO Harry Potter Collection","status-ingame;crash","ingame","2024-01-31 10:28:07.000" +"010073C01AF34000","LEGO Horizon Adventures","status-ingame;vulkan-backend-bug;opengl-backend-bug;UE4","ingame","2025-01-07 04:24:56.000" +"01001C100E772000","LEGO Jurassic World","status-playable","playable","2021-05-27 17:00:20.000" +"01006F600FFC8000","LEGO Marvel Super Heroes","status-playable","playable","2024-09-10 19:02:19.000" +"0100D3A00409E000","LEGO Marvel Super Heroes 2","status-nothing;crash","nothing","2023-03-02 17:12:33.000" +"010042D00D900000","LEGO Star Wars: The Skywalker Saga","gpu;slow;status-ingame","ingame","2024-04-13 20:08:46.000" +"0100A01006E00000","LEGO The Incredibles","status-nothing;crash","nothing","2022-08-03 18:36:59.000" +"","LEGO Worlds","crash;slow;status-ingame","ingame","2020-07-17 13:35:39.000" +"01009C8009026000","LIMBO","cpu;status-boots;32-bit","boots","2023-06-28 15:39:19.000" +"","LITTLE FRIENDS -DOGS & CATS-","status-playable","playable","2020-11-12 12:45:51.000" +"0100CF801776C000","LIVE A LIVE","status-playable;UE4;amd-vendor-bug","playable","2023-02-05 15:12:07.000" +"0100BA000FC9C000","LOCO-SPORTS","status-playable","playable","2022-09-20 14:09:30.000" +"010062A0178A8000","LOOPERS","gpu;slow;status-ingame;crash","ingame","2022-06-17 19:21:45.000" +"010054600AC74000","LOST ORBIT: Terminal Velocity","status-playable","playable","2021-06-14 12:21:12.000" +"","LOST SPHEAR","status-playable","playable","2021-01-10 06:01:21.000" +"0100EC2011A80000","LUXAR","status-playable","playable","2021-03-04 21:11:57.000" +"010038000F644000","La Mulana 2","status-playable","playable","2022-09-03 13:45:57.000" +"010058500B3E0000","Labyrinth of Refrain: Coven of Dusk","status-playable","playable","2021-02-15 17:38:48.000" +"","Labyrinth of the Witch","status-playable","playable","2020-11-01 14:42:37.000" +"0100BAB00E8C0000","Langrisser I and II","status-playable","playable","2021-02-19 15:46:10.000" +"","Lanota","status-playable","playable","2019-09-04 01:58:14.000" +"01005E000D3D8000","Lapis x Labyrinth","status-playable","playable","2021-02-01 18:58:08.000" +"","Laraan","status-playable","playable","2020-12-16 12:45:48.000" +"0100DA700879C000","Last Day of June","nvdec;status-playable","playable","2021-06-08 11:35:32.000" +"0100055007B86000","Late Shift","nvdec;status-playable","playable","2021-02-01 18:43:58.000" +"","Later Daters","status-playable","playable","2020-07-29 16:35:45.000" +"01001730144DA000","Layers of Fear 2","status-playable;nvdec;UE4","playable","2022-10-28 18:49:52.000" +"","Layers of Fear: Legacy","nvdec;status-playable","playable","2021-02-15 16:30:41.000" +"0100CE500D226000","Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy - Deluxe Edition","status-playable;nvdec;opengl","playable","2022-09-14 15:01:57.000" +"0100FDB00AA80000","Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy DX+0","gpu;status-ingame;nvdec;opengl","ingame","2022-09-14 15:15:55.000" +"01009C100390E000","League of Evil","online;status-playable","playable","2021-06-08 11:23:27.000" +"","Left-Right: The Mansion","status-playable","playable","2020-05-13 13:02:12.000" +"010079901C898000","Legacy of Kain™ Soul Reaver 1&2 Remastered","status-playable","playable","2025-01-07 05:50:01.000" +"01002DB007A96000","Legend of Kay Anniversary","nvdec;status-playable","playable","2021-01-29 18:38:29.000" +"","Legend of the Skyfish","status-playable","playable","2020-06-24 13:04:22.000" +"","Legend of the Tetrarchs","deadlock;status-ingame","ingame","2020-07-10 07:54:03.000" +"0100A73006E74000","Legendary Eleven","status-playable","playable","2021-06-08 12:09:03.000" +"0100A7700B46C000","Legendary Fishing","online;status-playable","playable","2021-04-14 15:08:46.000" +"01003A30012C0000","Lego City Undercover","status-playable;nvdec","playable","2024-09-30 08:44:27.000" +"","Legrand Legacy: Tale of the Fatebounds","nvdec;status-playable","playable","2020-07-26 12:27:36.000" +"010031A0135CA000","Leisure Suit Larry - Wet Dreams Dry Twice","status-playable","playable","2022-10-28 19:00:57.000" +"0100A8E00CAA0000","Leisure Suit Larry: Wet Dreams Don't Dry","status-playable","playable","2022-08-03 19:51:44.000" +"01003AB00983C000","Lethal League Blaze","online;status-playable","playable","2021-01-29 20:13:31.000" +"","Letter Quest Remastered","status-playable","playable","2020-05-11 21:30:34.000" +"0100CE301678E800","Letters - a written adventure","gpu;status-ingame","ingame","2023-02-21 20:12:38.000" +"","Levelhead","online;status-ingame","ingame","2020-10-18 11:44:51.000" +"","Levels+","status-playable","playable","2020-05-12 13:51:39.000" +"0100C8000F146000","Liberated","gpu;status-ingame;nvdec","ingame","2024-07-04 04:58:24.000" +"01003A90133A6000","Liberated: Enhanced Edition","gpu;status-ingame;nvdec","ingame","2024-07-04 04:48:48.000" +"","Lichtspeer: Double Speer Edition","status-playable","playable","2020-05-12 16:43:09.000" +"010041F0128AE000","Liege Dragon","status-playable","playable","2022-10-12 10:27:03.000" +"010006300AFFE000","Life Goes On","status-playable","playable","2021-01-29 19:01:20.000" +"0100FD101186C000","Life is Strange 2","status-playable;UE4","playable","2024-07-04 05:05:58.000" +"0100DC301186A000","Life is Strange Remastered","status-playable;UE4","playable","2022-10-03 16:54:44.000" +"010008501186E000","Life is Strange: Before the Storm Remastered","status-playable","playable","2023-09-28 17:15:44.000" +"0100500012AB4000","Life is Strange: True Colors [0100500012AB4000]","gpu;status-ingame;UE4","ingame","2024-04-08 16:11:52.000" +"","Life of Boris: Super Slav","status-ingame","ingame","2020-12-17 11:40:05.000" +"0100B3A0135D6000","Life of Fly","status-playable","playable","2021-01-25 23:41:07.000" +"010069A01506E000","Life of Fly 2","slow;status-playable","playable","2022-10-28 19:26:52.000" +"01005B6008132000","Lifeless Planet","status-playable","playable","2022-08-03 21:25:13.000" +"","Light Fall","nvdec;status-playable","playable","2021-01-18 14:55:36.000" +"010087700D07C000","Light Tracer","nvdec;status-playable","playable","2021-05-05 19:15:43.000" +"","Linelight","status-playable","playable","2020-12-17 12:18:07.000" +"","Lines X","status-playable","playable","2020-05-11 15:28:30.000" +"","Lines XL","status-playable","playable","2020-08-31 17:48:23.000" +"0100943010310000","Little Busters! Converted Edition","status-playable;nvdec","playable","2022-09-29 15:34:56.000" +"","Little Dragons Cafe","status-playable","playable","2020-05-12 00:00:52.000" +"","Little Inferno","32-bit;gpu;nvdec;status-ingame","ingame","2020-12-17 21:43:56.000" +"0100E7000E826000","Little Misfortune","nvdec;status-playable","playable","2021-02-23 20:39:44.000" +"0100FE0014200000","Little Mouse's Encyclopedia","status-playable","playable","2022-10-28 19:38:58.000" +"01002FC00412C000","Little Nightmares","status-playable;nvdec;UE4","playable","2022-08-03 21:45:35.000" +"010097100EDD6000","Little Nightmares II","status-playable;UE4","playable","2023-02-10 18:24:44.000" +"010093A0135D6000","Little Nightmares II DEMO","status-playable;UE4;demo;vulkan-backend-bug","playable","2024-05-16 18:47:20.000" +"0100535014D76000","Little Noah: Scion of Paradise","status-playable;opengl-backend-bug","playable","2022-09-14 04:17:13.000" +"0100E6D00E81C000","Little Racer","status-playable","playable","2022-10-18 16:41:13.000" +"","Little Shopping","status-playable","playable","2020-10-03 16:34:35.000" +"","Little Town Hero","status-playable","playable","2020-10-15 23:28:48.000" +"","Little Triangle","status-playable","playable","2020-06-17 14:46:26.000" +"","Lode Runner Legacy","status-playable","playable","2021-01-10 14:10:28.000" +"","Lofi Ping Pong","crash;status-ingame","ingame","2020-12-15 20:09:22.000" +"0100B6D016EE6000","Lone Ruin","status-ingame;crash;nvdec","ingame","2023-01-17 06:41:19.000" +"0100A0C00E0DE000","Lonely Mountains Downhill","status-playable;online-broken","playable","2024-07-04 05:08:11.000" +"","Lost Horizon","status-playable","playable","2020-09-01 13:41:22.000" +"","Lost Horizon 2","nvdec;status-playable","playable","2020-06-16 12:02:12.000" +"0100156014C6A000","Lost Lands 3: The Golden Curse","status-playable;nvdec","playable","2022-10-24 16:30:00.000" +"0100BDD010AC8000","Lost Lands: Dark Overlord","status-playable","playable","2022-10-03 11:52:58.000" +"0100133014510000","Lost Lands: The Four Horsemen","status-playable;nvdec","playable","2022-10-24 16:41:00.000" +"","Lost Phone Stories","services;status-ingame","ingame","2020-04-05 23:17:33.000" +"01008AD013A86800","Lost Ruins","gpu;status-ingame","ingame","2023-02-19 14:09:00.000" +"0100018013124000","Lost Words: Beyond the Page","status-playable","playable","2022-10-24 17:03:21.000" +"01005FE01291A000","Lost in Random","gpu;status-ingame","ingame","2022-12-18 07:09:28.000" +"0100D36011AD4000","Love Letter from Thief X","gpu;status-ingame;nvdec","ingame","2023-11-14 03:55:31.000" +"","Ludo Mania","crash;services;status-nothing","nothing","2020-04-03 00:33:47.000" +"010048701995E000","Luigi's Mansion 2 HD","status-ingame;ldn-broken;amd-vendor-bug","ingame","2024-09-05 23:47:27.000" +"0100DCA0064A6000","Luigi's Mansion 3","gpu;slow;status-ingame;Needs Update;ldn-works","ingame","2024-09-27 22:17:36.000" +"","Lumini","status-playable","playable","2020-08-09 20:45:09.000" +"0100FF00042EE000","Lumo","status-playable;nvdec","playable","2022-02-11 18:20:30.000" +"","Lust for Darkness","nvdec;status-playable","playable","2020-07-26 12:09:15.000" +"0100F0B00F68E000","Lust for Darkness: Dawn Edition","nvdec;status-playable","playable","2021-06-16 13:47:46.000" +"010002C00C270000","MARIO & SONIC AT THE OLYMPIC GAMES TOKYO 2020","status-ingame;crash;online-broken;ldn-works","ingame","2024-08-23 16:12:55.000" +"0100EEF00CBC0000","MEANDERS","UE4;gpu;status-ingame","ingame","2021-06-11 19:19:33.000" +"010025C00D410000","MEGAMAN ZERO/ZX LEGACY COLLECTION","status-playable","playable","2021-06-14 16:17:32.000" +"","METAGAL","status-playable","playable","2020-06-05 00:05:48.000" +"0100E8F00F6BE000","METAL MAX Xeno Reborn","status-playable","playable","2022-12-05 15:33:53.000" +"0100F5700C9A8000","MIND Path to Thalamus","UE4;status-playable","playable","2021-06-16 17:37:25.000" +"0100A9F01776A000","MLB The Show 22 Tech Test","services;status-nothing;crash;Needs Update;demo","nothing","2022-12-09 10:28:34.000" +"0100E2E01C32E000","MLB The Show 24","services-horizon;status-nothing","nothing","2024-03-31 04:54:11.000" +"0100876015D74000","MLB® The Show™ 22","gpu;slow;status-ingame","ingame","2023-04-25 06:28:43.000" +"0100913019170000","MLB® The Show™ 23","gpu;status-ingame","ingame","2024-07-26 00:56:50.000" +"","MO:Astray","crash;status-ingame","ingame","2020-12-11 21:45:44.000" +"0100B46017500000","MOFUMOFU Sensen","gpu;status-menus","menus","2024-09-21 21:51:08.000" +"0100FBD00ED24000","MONKEY BARRELS","status-playable","playable","2022-09-14 17:28:52.000" +"010042501329E000","MONSTER HUNTER STORIES 2: WINGS OF RUIN Trial Version","status-playable;demo","playable","2022-11-13 22:20:26.000" +"010088400366E000","MONSTER JAM CRUSH IT!™","UE4;nvdec;online;status-playable","playable","2021-04-08 19:29:27.000" +"","MUJO","status-playable","playable","2020-05-08 16:31:04.000" +"","MUSNYX","status-playable","playable","2020-05-08 14:24:43.000" +"0100161009E5C000","MX Nitro","status-playable","playable","2022-09-27 22:34:33.000" +"0100218011E7E000","MX vs ATV All Out","status-playable;nvdec;UE4;vulkan-backend-bug","playable","2022-10-25 19:51:46.000" +"","MXGP3 - The Official Motocross Videogame","UE4;gpu;nvdec;status-ingame","ingame","2020-12-16 14:00:20.000" +"","MY HERO ONE'S JUSTICE","UE4;crash;gpu;online;status-menus","menus","2020-12-10 13:11:04.000" +"","MY HERO ONE'S JUSTICE 2","UE4;gpu;nvdec;status-ingame","ingame","2020-12-18 14:08:47.000" +"0100F2400D434000","Machi Knights Blood bagos","status-playable;nvdec;UE4","playable","2022-09-14 15:08:04.000" +"","Mad Carnage","status-playable","playable","2021-01-10 13:00:07.000" +"","Mad Father","status-playable","playable","2020-11-12 13:22:10.000" +"010061E00EB1E000","Mad Games Tycoon","status-playable","playable","2022-09-20 14:23:14.000" +"01004A200E722000","Magazine Mogul","status-playable;loader-allocator","playable","2022-10-03 12:05:34.000" +"","MagiCat","status-playable","playable","2020-12-11 15:22:07.000" +"","Magicolors","status-playable","playable","2020-08-12 18:39:11.000" +"01008C300B624000","Mahjong Solitaire Refresh","status-boots;crash","boots","2022-12-09 12:02:55.000" +"010099A0145E8000","Mahluk dark demon","status-playable","playable","2021-04-15 13:14:24.000" +"","Mainlining","status-playable","playable","2020-06-05 01:02:00.000" +"0100D9900F220000","Maitetsu: Pure Station","status-playable","playable","2022-09-20 15:12:49.000" +"0100A78017BD6000","Makai Senki Disgaea 7","status-playable","playable","2023-10-05 00:22:18.000" +"","Mana Spark","status-playable","playable","2020-12-10 13:41:01.000" +"010093D00CB22000","Maneater","status-playable;nvdec;UE4","playable","2024-05-21 16:11:57.000" +"","Manifold Garden","status-playable","playable","2020-10-13 20:27:13.000" +"0100C9A00952A000","Manticore - Galaxy on Fire","status-boots;crash;nvdec","boots","2024-02-04 04:37:24.000" +"0100E98002F6E000","Mantis Burn Racing","status-playable;online-broken;ldn-broken","playable","2024-09-02 02:13:04.000" +"01008E800D1FE000","Marble Power Blast","status-playable","playable","2021-06-04 16:00:02.000" +"0100DA7017C9E000","Marco & The Galaxy Dragon Demo","gpu;status-ingame;demo","ingame","2023-06-03 13:05:33.000" +"01006D0017F7A000","Mario & Luigi: Brothership","status-ingame;crash;slow;UE4;mac-bug","ingame","2025-01-07 04:00:00.000" +"010067300059A000","Mario + Rabbids Kingdom Battle","slow;status-playable;opengl-backend-bug","playable","2024-05-06 10:16:54.000" +"0100317013770000","Mario + Rabbids® Sparks of Hope","gpu;status-ingame;Needs Update","ingame","2024-06-20 19:56:19.000" +"0100C9C00E25C000","Mario Golf: Super Rush","gpu;status-ingame","ingame","2024-08-18 21:31:48.000" +"0100152000022000","Mario Kart 8 Deluxe","32-bit;status-playable;ldn-works;LAN;amd-vendor-bug","playable","2024-09-19 11:55:17.000" +"0100ED100BA3A000","Mario Kart Live: Home Circuit","services;status-nothing;crash;Needs More Attention","nothing","2022-12-07 22:36:52.000" +"01006FE013472000","Mario Party Superstars","gpu;status-ingame;ldn-works;mac-bug","ingame","2024-05-16 11:23:34.000" +"010019401051C000","Mario Strikers: Battle League Football","status-boots;crash;nvdec","boots","2024-05-07 06:23:56.000" +"0100BDE00862A000","Mario Tennis Aces","gpu;status-ingame;nvdec;ldn-works;LAN","ingame","2024-09-28 15:54:40.000" +"0100B99019412000","Mario vs. Donkey Kong","status-playable","playable","2024-05-04 21:22:39.000" +"0100D9E01DBB0000","Mario vs. Donkey Kong™ Demo","status-playable","playable","2024-02-18 10:40:06.000" +"01009A700A538000","Mark of the Ninja Remastered","status-playable","playable","2022-08-04 15:48:30.000" +"010044600FDF0000","Marooners","status-playable;nvdec;online-broken","playable","2022-10-18 21:35:26.000" +"010060700AC50000","Marvel Ultimate Alliance 3: The Black Order","status-playable;nvdec;ldn-untested","playable","2024-02-14 19:51:51.000" +"01003DE00C95E000","Mary Skelter 2","status-ingame;crash;regression","ingame","2023-09-12 07:37:28.000" +"0100113008262000","Masquerada: Songs and Shadows","status-playable","playable","2022-09-20 15:18:54.000" +"01004800197F0000","Master Detective Archives: Rain Code","gpu;status-ingame","ingame","2024-04-19 20:11:09.000" +"0100CC7009196000","Masters of Anima","status-playable;nvdec","playable","2022-08-04 16:00:09.000" +"","Mathland","status-playable","playable","2020-09-01 15:40:06.000" +"","Max & The Book of Chaos","status-playable","playable","2020-09-02 12:24:43.000" +"01001C9007614000","Max: The Curse Of Brotherhood","status-playable;nvdec","playable","2022-08-04 16:33:04.000" +"","Maze","status-playable","playable","2020-12-17 16:13:58.000" +"","Mech Rage","status-playable","playable","2020-11-18 12:30:16.000" +"0100C4F005EB4000","Mecho Tales","status-playable","playable","2022-08-04 17:03:19.000" +"0100E4600D31A000","Mechstermination Force","status-playable","playable","2024-07-04 05:39:15.000" +"","Medarot Classics Plus Kabuto Ver","status-playable","playable","2020-11-21 11:31:18.000" +"","Medarot Classics Plus Kuwagata Ver","status-playable","playable","2020-11-21 11:30:40.000" +"0100BBC00CB9A000","Mega Mall Story","slow;status-playable","playable","2022-08-04 17:10:58.000" +"0100B0C0086B0000","Mega Man 11","status-playable","playable","2021-04-26 12:07:53.000" +"0100734016266000","Mega Man Battle Network Legacy Collection Vol. 2","status-playable","playable","2023-08-03 18:04:32.000" +"01002D4007AE0000","Mega Man Legacy Collection Vol.1","gpu;status-ingame","ingame","2021-06-03 18:17:17.000" +"","Mega Man X Legacy Collection","audio;crash;services;status-menus","menus","2020-12-04 04:30:17.000" +"","Megabyte Punch","status-playable","playable","2020-10-16 14:07:18.000" +"","Megadimension Neptunia VII","32-bit;nvdec;status-playable","playable","2020-12-17 20:56:03.000" +"010038E016264000","Megaman Battle Network Legacy Collection Vol 1","status-playable","playable","2023-04-25 03:55:57.000" +"","Megaman Legacy Collection 2","status-playable","playable","2021-01-06 08:47:59.000" +"010082B00E8B8000","Megaquarium","status-playable","playable","2022-09-14 16:50:00.000" +"010005A00B312000","Megaton Rainfall","gpu;status-boots;opengl","boots","2022-08-04 18:29:43.000" +"0100EA100DF92000","Meiji Katsugeki Haikara Ryuuseigumi - Seibai Shimaseu, Yonaoshi Kagyou","32-bit;status-playable;nvdec","playable","2022-12-05 13:19:12.000" +"0100B360068B2000","Mekorama","gpu;status-boots","boots","2021-06-17 16:37:21.000" +"01000FA010340000","Melbits World","status-menus;nvdec;online","menus","2021-11-26 13:51:22.000" +"0100F68019636000","Melon Journey","status-playable","playable","2023-04-23 21:20:01.000" +"","Memories Off -Innocent Fille- for Dearest","status-playable","playable","2020-08-04 07:31:22.000" +"010062F011E7C000","Memory Lane","status-playable;UE4","playable","2022-10-05 14:31:03.000" +"","Meow Motors","UE4;gpu;status-ingame","ingame","2020-12-18 00:24:01.000" +"","Mercenaries Saga Chronicles","status-playable","playable","2021-01-10 12:48:19.000" +"","Mercenaries Wings The False Phoenix","crash;services;status-nothing","nothing","2020-05-08 22:42:12.000" +"","Mercenary Kings","online;status-playable","playable","2020-10-16 13:05:58.000" +"0100E5000D3CA000","Merchants of Kaidan","status-playable","playable","2021-04-15 11:44:28.000" +"010047F01AA10000","Metal Gear Solid Master Collection Vol. 1: Metal Gear Solid 3","services-horizon;status-menus","menus","2024-07-24 06:34:06.000" +"","Metaloid: Origin","status-playable","playable","2020-06-04 20:26:35.000" +"010055200E87E000","Metamorphosis","UE4;audout;gpu;nvdec;status-ingame","ingame","2021-06-16 16:18:11.000" +"0100D4900E82C000","Metro 2033 Redux","gpu;status-ingame","ingame","2022-11-09 10:53:13.000" +"0100F0400E850000","Metro: Last Light Redux","slow;status-ingame;nvdec;vulkan-backend-bug","ingame","2023-11-01 11:53:52.000" +"010093801237C000","Metroid Dread","status-playable","playable","2023-11-13 04:02:36.000" +"010012101468C000","Metroid Prime Remastered","gpu;status-ingame;Needs Update;vulkan-backend-bug;opengl-backend-bug","ingame","2024-05-07 22:48:15.000" +"0100A1200F20C000","Midnight Evil","status-playable","playable","2022-10-18 22:55:19.000" +"0100C1E0135E0000","Mighty Fight Federation","online;status-playable","playable","2021-04-06 18:39:56.000" +"0100AD701344C000","Mighty Goose","status-playable;nvdec","playable","2022-10-28 20:25:38.000" +"","Mighty Gunvolt Burst","status-playable","playable","2020-10-19 16:05:49.000" +"010060D00AE36000","Mighty Switch Force! Collection","status-playable","playable","2022-10-28 20:40:32.000" +"01003DA010E8A000","Miitopia","gpu;services-horizon;status-ingame","ingame","2024-09-06 10:39:13.000" +"01007DA0140E8000","Miitopia Demo","services;status-menus;crash;demo","menus","2023-02-24 11:50:58.000" +"","Miles & Kilo","status-playable","playable","2020-10-22 11:39:49.000" +"0100976008FBE000","Millie","status-playable","playable","2021-01-26 20:47:19.000" +"0100D71004694000","Minecraft","status-ingame;crash;ldn-broken","ingame","2024-09-29 12:08:59.000" +"01006BD001E06000","Minecraft - Nintendo Switch Edition","status-playable;ldn-broken","playable","2023-10-15 01:47:08.000" +"01006C100EC08000","Minecraft Dungeons","status-playable;nvdec;online-broken;UE4","playable","2024-06-26 22:10:43.000" +"01007C6012CC8000","Minecraft Legends","gpu;status-ingame;crash","ingame","2024-03-04 00:32:24.000" +"01003EF007ABA000","Minecraft: Story Mode - Season Two","status-playable;online-broken","playable","2023-03-04 00:30:50.000" +"010059C002AC2000","Minecraft: Story Mode - The Complete Adventure","status-boots;crash;online-broken","boots","2022-08-04 18:56:58.000" +"0100B7500F756000","Minefield","status-playable","playable","2022-10-05 15:03:29.000" +"01003560119A6000","Mini Motor Racing X","status-playable","playable","2021-04-13 17:54:49.000" +"","Mini Trains","status-playable","playable","2020-07-29 23:06:20.000" +"010039200EC66000","Miniature - The Story Puzzle","status-playable;UE4","playable","2022-09-14 17:18:50.000" +"010069200EB80000","Ministry of Broadcast","status-playable","playable","2022-08-10 00:31:16.000" +"0100C3F000BD8000","Minna de Wai Wai! Spelunker","status-nothing;crash","nothing","2021-11-03 07:17:11.000" +"0100FAE010864000","Minoria","status-playable","playable","2022-08-06 18:50:50.000" +"01005AB015994000","Miss Kobayashi's Dragonmaid Burst Forth!! Choro-gon☆Breath","gpu;status-playable","playable","2022-03-28 02:22:24.000" +"0100CFA0138C8000","Missile Dancer","status-playable","playable","2021-01-31 12:22:03.000" +"0100E3601495C000","Missing Features 2D","status-playable","playable","2022-10-28 20:52:54.000" +"010059200CC40000","Mist Hunter","status-playable","playable","2021-06-16 13:58:58.000" +"","Mittelborg: City of Mages","status-playable","playable","2020-08-12 19:58:06.000" +"","Moai VI: Unexpected Guests","slow;status-playable","playable","2020-10-27 16:40:20.000" +"0100D8700B712000","Modern Combat Blackout","crash;status-nothing","nothing","2021-03-29 19:47:15.000" +"010004900D772000","Modern Tales: Age of Invention","slow;status-playable","playable","2022-10-12 11:20:19.000" +"0100B8500D570000","Moero Chronicle Hyper","32-bit;status-playable","playable","2022-08-11 07:21:56.000" +"01004EB0119AC000","Moero Crystal H","32-bit;status-playable;nvdec;vulkan-backend-bug","playable","2023-07-05 12:04:22.000" +"01004A400C320000","Momodora: Revere Under the Moonlight","deadlock;status-nothing","nothing","2022-02-06 03:47:43.000" +"01002CC00BC4C000","Momonga Pinball Adventures","status-playable","playable","2022-09-20 16:00:40.000" +"010093100DA04000","Momotaro Dentetsu Showa, Heisei, Reiwa mo Teiban!","gpu;status-ingame","ingame","2023-09-22 10:21:46.000" +"","Monkey King: Master of the Clouds","status-playable","playable","2020-09-28 22:35:48.000" +"01003030161DC000","Monomals","gpu;status-ingame","ingame","2024-08-06 22:02:51.000" +"0100F3A00FB78000","Mononoke Slashdown","status-menus;crash","menus","2022-05-04 20:55:47.000" +"01005FF013DC2000","Monopoly Madness","status-playable","playable","2022-01-29 21:13:52.000" +"01007430037F6000","Monopoly for Nintendo Switch","status-playable;nvdec;online-broken","playable","2024-02-06 23:13:01.000" +"0100E2D0128E6000","Monster Blast","gpu;status-ingame","ingame","2023-09-02 20:02:32.000" +"01006F7001D10000","Monster Boy and the Cursed Kingdom","status-playable;nvdec","playable","2022-08-04 20:06:32.000" +"","Monster Bugs Eat People","status-playable","playable","2020-07-26 02:05:34.000" +"0100742007266000","Monster Energy Supercross - The Official Videogame","status-playable;nvdec;UE4","playable","2022-08-04 20:25:00.000" +"0100F8100B982000","Monster Energy Supercross - The Official Videogame 2","status-playable;nvdec;UE4;ldn-untested","playable","2022-08-04 21:21:24.000" +"010097800EA20000","Monster Energy Supercross - The Official Videogame 3","UE4;audout;nvdec;online;status-playable","playable","2021-06-14 12:37:54.000" +"0100E9900ED74000","Monster Farm","32-bit;nvdec;status-playable","playable","2021-05-05 19:29:13.000" +"0100770008DD8000","Monster Hunter Generation Ultimate","32-bit;status-playable;online-broken;ldn-works","playable","2024-03-18 14:35:36.000" +"0100B04011742000","Monster Hunter Rise","gpu;slow;status-ingame;crash;nvdec;online-broken;Needs Update;ldn-works","ingame","2024-08-24 11:04:59.000" +"010093A01305C000","Monster Hunter Rise Demo","status-playable;online-broken;ldn-works;demo","playable","2022-10-18 23:04:17.000" +"","Monster Hunter Stories 2: Wings of Ruin ID 0100E2101144600","services;status-ingame","ingame","2022-07-10 19:27:30.000" +"","Monster Hunter XX Demo","32-bit;cpu;status-nothing","nothing","2020-03-22 10:12:28.000" +"0100C3800049C000","Monster Hunter XX Nintendo Switch Ver ( Double Cross )","status-playable","playable","2024-07-21 14:08:09.000" +"010095C00F354000","Monster Jam Steel Titans","status-menus;crash;nvdec;UE4","menus","2021-11-14 09:45:38.000" +"010051B0131F0000","Monster Jam Steel Titans 2","status-playable;nvdec;UE4","playable","2022-10-24 17:17:59.000" +"","Monster Puzzle","status-playable","playable","2020-09-28 22:23:10.000" +"","Monster Sanctuary","crash;status-ingame","ingame","2021-04-04 05:06:41.000" +"0100D30010C42000","Monster Truck Championship","slow;status-playable;nvdec;online-broken;UE4","playable","2022-10-18 23:16:51.000" +"01004E10142FE000","Monster wo taoshite tsuyoi ken ya yoroi wo te ni shinasai. Shinde mo akiramezu ni tsuyoku nari nasai. Yuushatai ga maoh wo taosu sono hi wo shinzite imasu. - モンスターを倒して強い剣や鎧を手にしなさい。死んでも諦めずに強くなりなさい。勇者隊が魔王を倒すその日を信じています。","crash;status-ingame","ingame","2021-07-23 10:56:44.000" +"010039F00EF70000","Monstrum","status-playable","playable","2021-01-31 11:07:26.000" +"","Moonfall Ultimate","nvdec;status-playable","playable","2021-01-17 14:01:25.000" +"0100E3D014ABC000","Moorhuhn Jump and Run Traps and Treasures","status-playable","playable","2024-03-08 15:10:02.000" +"010045C00F274000","Moorkuhn Kart 2","status-playable;online-broken","playable","2022-10-28 21:10:35.000" +"010040E00F642000","Morbid: The Seven Acolytes","status-playable","playable","2022-08-09 17:21:58.000" +"","More Dark","status-playable","playable","2020-12-15 16:01:06.000" +"","Morphies Law","UE4;crash;ldn-untested;nvdec;online;status-menus","menus","2020-11-22 17:05:29.000" +"","Morphite","status-playable","playable","2021-01-05 19:40:55.000" +"01006560184E6000","Mortal Kombat 1","gpu;status-ingame","ingame","2024-09-04 15:45:47.000" +"0100F2200C984000","Mortal Kombat 11","slow;status-ingame;nvdec;online-broken;ldn-broken","ingame","2024-06-19 02:22:17.000" +"","Mosaic","status-playable","playable","2020-08-11 13:07:35.000" +"010040401D564000","Moto GP 24","gpu;status-ingame","ingame","2024-05-10 23:41:00.000" +"01002ED00B01C000","Moto Racer 4","UE4;nvdec;online;status-playable","playable","2021-04-08 19:09:11.000" +"01003F200D0F2000","Moto Rush GT","status-playable","playable","2022-08-05 11:23:55.000" +"0100361007268000","MotoGP 18","status-playable;nvdec;UE4;ldn-untested","playable","2022-08-05 11:41:45.000" +"01004B800D0E8000","MotoGP 19","status-playable;nvdec;online-broken;UE4","playable","2022-08-05 11:54:14.000" +"01001FA00FBBC000","MotoGP 20","status-playable;ldn-untested","playable","2022-09-29 17:58:01.000" +"01000F5013820000","MotoGP 21","gpu;status-ingame;nvdec;online-broken;UE4;ldn-untested","ingame","2022-10-28 21:35:08.000" +"01002A900D6D6000","Motorsport Manager for Nintendo Switch","status-playable;nvdec","playable","2022-08-05 12:48:14.000" +"01009DB00D6E0000","Mountain Rescue Simulator","status-playable","playable","2022-09-20 16:36:48.000" +"0100C4C00E73E000","Moving Out","nvdec;status-playable","playable","2021-06-07 21:17:24.000" +"0100D3300F110000","Mr Blaster","status-playable","playable","2022-09-14 17:56:24.000" +"","Mr. DRILLER DrillLand","nvdec;status-playable","playable","2020-07-24 13:56:48.000" +"","Mr. Shifty","slow;status-playable","playable","2020-05-08 15:28:16.000" +"","Ms. Splosion Man","online;status-playable","playable","2020-05-09 20:45:43.000" +"01009D200952E000","MudRunner - American Wilds","gpu;status-ingame;ldn-untested;vulkan-backend-bug;opengl-backend-bug","ingame","2022-08-16 11:40:52.000" +"","Muddledash","services;status-ingame","ingame","2020-05-08 16:46:14.000" +"010073E008E6E000","Mugsters","status-playable","playable","2021-01-28 17:57:17.000" +"0100211005E94000","Mulaka","status-playable","playable","2021-01-28 18:07:20.000" +"010038B00B9AE000","Mummy Pinball","status-playable","playable","2022-08-05 16:08:11.000" +"","Muse Dash","status-playable","playable","2020-06-06 14:41:29.000" +"","Mushroom Quest","status-playable","playable","2020-05-17 13:07:08.000" +"","Mushroom Wars 2","nvdec;status-playable","playable","2020-09-28 15:26:08.000" +"","Music Racer","status-playable","playable","2020-08-10 08:51:23.000" +"","Musou Orochi 2 Ultimate","crash;nvdec;status-boots","boots","2021-04-09 19:39:16.000" +"0100F6000EAA8000","Must Dash Amigos","status-playable","playable","2022-09-20 16:45:56.000" +"0100C3E00ACAA000","Mutant Football League Dynasty Edition","status-playable;online-broken","playable","2022-08-05 17:01:51.000" +"01004BE004A86000","Mutant Mudds Collection","status-playable","playable","2022-08-05 17:11:38.000" +"0100E6B00DEA4000","Mutant Year Zero: Road to Eden","status-playable;nvdec;UE4","playable","2022-09-10 13:31:10.000" +"01002C6012334000","My Aunt is a Witch","status-playable","playable","2022-10-19 09:21:17.000" +"","My Butler","status-playable","playable","2020-06-27 13:46:23.000" +"010031200B94C000","My Friend Pedro: Blood Bullets Bananas","nvdec;status-playable","playable","2021-05-28 11:19:17.000" +"","My Girlfriend is a Mermaid!?","nvdec;status-playable","playable","2020-05-08 13:32:55.000" +"0100E4701373E000","My Hidden Things","status-playable","playable","2021-04-15 11:26:06.000" +"","My Little Dog Adventure","gpu;status-ingame","ingame","2020-12-10 17:47:37.000" +"","My Little Riding Champion","slow;status-playable","playable","2020-05-08 17:00:53.000" +"010086B00C784000","My Lovely Daughter","status-playable","playable","2022-11-24 17:25:32.000" +"0100E7700C284000","My Memory of Us","status-playable","playable","2022-08-20 11:03:14.000" +"010028F00ABAE000","My Riding Stables - Life with Horses","status-playable","playable","2022-08-05 21:39:07.000" +"010042A00FBF0000","My Riding Stables 2: A New Adventure","status-playable","playable","2021-05-16 14:14:59.000" +"0100E25008E68000","My Time At Portia","status-playable","playable","2021-05-28 12:42:55.000" +"0100CD5011A02000","My Universe - Cooking Star Restaurant","status-playable","playable","2022-10-19 10:00:44.000" +"0100F71011A0A000","My Universe - Fashion Boutique","status-playable;nvdec","playable","2022-10-12 14:54:19.000" +"0100CD5011A02000","My Universe - Pet Clinic Cats & Dogs","status-boots;crash;nvdec","boots","2022-02-06 02:05:53.000" +"01006C301199C000","My Universe - School Teacher","nvdec;status-playable","playable","2021-01-21 16:02:52.000" +"","Märchen Forest - 0100B201D5E000","status-playable","playable","2021-02-04 21:33:34.000" +"01000D5005974000","N++","status-playable","playable","2022-08-05 21:54:58.000" +"","NAIRI: Tower of Shirin","nvdec;status-playable","playable","2020-08-09 19:49:12.000" +"010002F001220000","NAMCO MUSEUM","status-playable;ldn-untested","playable","2024-08-13 07:52:21.000" +"0100DAA00AEE6000","NAMCO MUSEUM ARCADE PAC","status-playable","playable","2021-06-07 21:44:50.000" +"","NAMCOT COLLECTION","audio;status-playable","playable","2020-06-25 13:35:22.000" +"010084D00CF5E000","NARUTO SHIPPUDEN: ULTIMATE NINJA STORM 4 ROAD TO BORUTO","status-playable","playable","2024-06-29 13:04:22.000" +"01006BB00800A000","NARUTO SHIPPUDEN™: Ultimate Ninja Storm 3 Full Burst","status-playable;nvdec","playable","2024-06-16 14:58:05.000" +"0100D2D0190A4000","NARUTO X BARUTO Ultimate Ninja STORM CONNECTIONS","services-horizon;status-nothing","nothing","2024-07-25 05:16:48.000" +"0100715007354000","NARUTO™: Ultimate Ninja® STORM","status-playable;nvdec","playable","2022-08-06 14:10:31.000" +"0100545016D5E000","NASCAR Rivals","status-ingame;crash;Incomplete","ingame","2023-04-21 01:17:47.000" +"01001AE00C1B2000","NBA 2K Playgrounds 2","status-playable;nvdec;online-broken;UE4;vulkan-backend-bug","playable","2022-08-06 14:40:38.000" +"0100760002048000","NBA 2K18","gpu;status-ingame;ldn-untested","ingame","2022-08-06 14:17:51.000" +"01001FF00B544000","NBA 2K19","crash;ldn-untested;services;status-nothing","nothing","2021-04-16 13:07:21.000" +"0100E24011D1E000","NBA 2K21","gpu;status-boots","boots","2022-10-05 15:31:51.000" +"0100ACA017E4E800","NBA 2K23","status-boots","boots","2023-10-10 23:07:14.000" +"010006501A8D8000","NBA 2K24","cpu;gpu;status-boots","boots","2024-08-11 18:23:08.000" +"0100F5A008126000","NBA Playgrounds","status-playable;nvdec;online-broken;UE4","playable","2022-08-06 16:13:44.000" +"010002900294A000","NBA Playgrounds","status-playable;nvdec;online-broken;UE4","playable","2022-08-06 17:06:59.000" +"010006D0128B4000","NEOGEO POCKET COLOR SELECTION Vol.1","status-playable","playable","2023-07-08 20:55:36.000" +"01002AF014F4C000","NINJA GAIDEN 3: Razor's Edge","status-playable;nvdec","playable","2023-08-11 08:25:31.000" +"","NO THING","status-playable","playable","2021-01-04 19:06:01.000" +"","NORTH","nvdec;status-playable","playable","2021-01-05 16:17:44.000" +"0100CB800B07E000","NOT A HERO","status-playable","playable","2021-01-28 19:31:24.000" +"010072B00BDDE000","Narcos: Rise of the Cartels","UE4;crash;nvdec;status-boots","boots","2021-03-22 13:18:47.000" +"0100103011894000","Naught","UE4;status-playable","playable","2021-04-26 13:31:45.000" +"","Need For Speed Hot Pursuit Remastered","audio;online;slow;status-ingame","ingame","2020-10-27 17:46:58.000" +"","Need a Packet?","status-playable","playable","2020-08-12 16:09:01.000" +"010029B0118E8000","Need for Speed Hot Pursuit Remastered","status-playable;online-broken","playable","2024-03-20 21:58:02.000" +"","Nefarious","status-playable","playable","2020-12-17 03:20:33.000" +"01008390136FC000","Negative","nvdec;status-playable","playable","2021-03-24 11:29:41.000" +"010065F00F55A000","Neighbours back From Hell","status-playable;nvdec","playable","2022-10-12 15:36:48.000" +"0100B4900AD3E000","Nekopara Vol.1","status-playable;nvdec","playable","2022-08-06 18:25:54.000" +"","Nekopara Vol.2","status-playable","playable","2020-12-16 11:04:47.000" +"010045000E418000","Nekopara Vol.3","status-playable","playable","2022-10-03 12:49:04.000" +"","Nekopara Vol.4","crash;status-ingame","ingame","2021-01-17 01:47:18.000" +"01006ED00BC76000","Nelke & the Legendary Alchemists ~Ateliers of the New World~","status-playable","playable","2021-01-28 19:39:42.000" +"","Nelly Cootalot","status-playable","playable","2020-06-11 20:55:42.000" +"01001AB0141A8000","Neo : The World Ends with You (DEMO)- 新すばらしきこのせかい (体験版)","crash;status-ingame","ingame","2021-07-18 07:29:18.000" +"0100EBB00D2F4000","Neo Cab","status-playable","playable","2021-04-24 00:27:58.000" +"","Neo Cab Demo","crash;status-boots","boots","2020-06-16 00:14:00.000" +"0100BAB01113A000","Neon Abyss","status-playable","playable","2022-10-05 15:59:44.000" +"010075E0047F8000","Neon Chrome","status-playable","playable","2022-08-06 18:38:34.000" +"010032000EAC6000","Neon Drive","status-playable","playable","2022-09-10 13:45:48.000" +"0100B9201406A000","Neon White","status-ingame;crash","ingame","2023-02-02 22:25:06.000" +"0100743008694000","Neonwall","status-playable;nvdec","playable","2022-08-06 18:49:52.000" +"","Neoverse Trinity Edition - 01001A20133E000","status-playable","playable","2022-10-19 10:28:03.000" +"","Nerdook Bundle Vol. 1","gpu;slow;status-ingame","ingame","2020-10-07 14:27:10.000" +"01008B0010160000","Nerved","status-playable;UE4","playable","2022-09-20 17:14:03.000" +"","NeuroVoider","status-playable","playable","2020-06-04 18:20:05.000" +"0100C20012A54000","Nevaeh","gpu;nvdec;status-ingame","ingame","2021-06-16 17:29:03.000" +"010039801093A000","Never Breakup","status-playable","playable","2022-10-05 16:12:12.000" +"0100F79012600000","Neverending Nightmares","crash;gpu;status-boots","boots","2021-04-24 01:43:35.000" +"","Neverlast","slow;status-ingame","ingame","2020-07-13 23:55:19.000" +"010013700DA4A000","Neverwinter Nights: Enhanced Edition","gpu;status-menus;nvdec","menus","2024-09-30 02:59:19.000" +"","New Frontier Days -Founding Pioneers-","status-playable","playable","2020-12-10 12:45:07.000" +"0100F4300BF2C000","New Pokémon Snap","status-playable","playable","2023-01-15 23:26:57.000" +"010017700B6C2000","New Super Lucky's Tale","status-playable","playable","2024-03-11 14:14:10.000" +"0100EA80032EA000","New Super Mario Bros. U Deluxe","32-bit;status-playable","playable","2023-10-08 02:06:37.000" +"","Newt One","status-playable","playable","2020-10-17 21:21:48.000" +"","Nexomon: Extinction","status-playable","playable","2020-11-30 15:02:22.000" +"0100B69012EC6000","Nexoria: Dungeon Rogue Heroes","gpu;status-ingame","ingame","2021-10-04 18:41:29.000" +"","Next Up Hero","online;status-playable","playable","2021-01-04 22:39:36.000" +"0100E5600D446000","Ni No Kuni Wrath of the White Witch","status-boots;32-bit;nvdec","boots","2024-07-12 04:52:59.000" +"","Nice Slice","nvdec;status-playable","playable","2020-06-17 15:13:27.000" +"","Niche - a genetics survival game","nvdec;status-playable","playable","2020-11-27 14:01:11.000" +"010010701AFB2000","Nickelodeon All-Star Brawl 2","status-playable","playable","2024-06-03 14:15:01.000" +"","Nickelodeon Kart Racers","status-playable","playable","2021-01-07 12:16:49.000" +"0100CEC003A4A000","Nickelodeon Paw Patrol: On a Roll","nvdec;status-playable","playable","2021-01-28 21:14:49.000" +"","Nicky: The Home Alone Golf Ball","status-playable","playable","2020-08-08 13:45:39.000" +"0100A95012668000","Nicole","status-playable;audout","playable","2022-10-05 16:41:44.000" +"0100B8E016F76000","NieR:Automata The End of YoRHa Edition","slow;status-ingame;crash","ingame","2024-05-17 01:06:34.000" +"0100F3A0095A6000","Night Call","status-playable;nvdec","playable","2022-10-03 12:57:00.000" +"0100D8500A692000","Night Trap - 25th Anniversary Edition","status-playable;nvdec","playable","2022-08-08 13:16:14.000" +"0100921006A04000","Night in the Woods","status-playable","playable","2022-12-03 20:17:54.000" +"","Nightmare Boy","status-playable","playable","2021-01-05 15:52:29.000" +"01006E700B702000","Nightmares from the Deep 2: The Siren's Call","status-playable;nvdec","playable","2022-10-19 10:58:53.000" +"0100628004BCE000","Nights of Azure 2: Bride of the New Moon","status-menus;crash;nvdec;regression","menus","2022-11-24 16:00:39.000" +"","Nightshade","nvdec;status-playable","playable","2020-05-10 19:43:31.000" +"","Nihilumbra","status-playable","playable","2020-05-10 16:00:12.000" +"0100746010E4C000","NinNinDays","status-playable","playable","2022-11-20 15:17:29.000" +"0100D03003F0E000","Nine Parchments","status-playable;ldn-untested","playable","2022-08-07 12:32:08.000" +"0100E2F014F46000","Ninja Gaiden Sigma","status-playable;nvdec","playable","2022-11-13 16:27:02.000" +"","Ninja Gaiden Sigma 2 - 0100696014FA000","status-playable;nvdec","playable","2024-07-31 21:53:48.000" +"","Ninja Shodown","status-playable","playable","2020-05-11 12:31:21.000" +"","Ninja Striker","status-playable","playable","2020-12-08 19:33:29.000" +"0100CCD0073EA000","Ninjala","status-boots;online-broken;UE4","boots","2024-07-03 20:04:49.000" +"010003C00B868000","Ninjin: Clash of Carrots","status-playable;online-broken","playable","2024-07-10 05:12:26.000" +"0100C9A00ECE6000","Nintendo 64 - Nintendo Switch Online","gpu;status-ingame;vulkan","ingame","2024-04-23 20:21:07.000" +"0100D870045B6000","Nintendo Entertainment System - Nintendo Switch Online","status-playable;online","playable","2022-07-01 15:45:06.000" +"0100C4B0034B2000","Nintendo Labo - Toy-Con 01: Variety Kit","gpu;status-ingame","ingame","2022-08-07 12:56:07.000" +"01009AB0034E0000","Nintendo Labo Toy-Con 02: Robot Kit","gpu;status-ingame","ingame","2022-08-07 13:03:19.000" +"01001E9003502000","Nintendo Labo Toy-Con 03: Vehicle Kit","services;status-menus;crash","menus","2022-08-03 17:20:11.000" +"0100165003504000","Nintendo Labo Toy-Con 04: VR Kit","services;status-boots;crash","boots","2023-01-17 22:30:24.000" +"0100D2F00D5C0000","Nintendo Switch Sports","deadlock;status-boots","boots","2024-09-10 14:20:24.000" +"01000EE017182000","Nintendo Switch Sports Online Play Test","gpu;status-ingame","ingame","2022-03-16 07:44:12.000" +"010037200C72A000","Nippon Marathon","nvdec;status-playable","playable","2021-01-28 20:32:46.000" +"010020901088A000","Nirvana Pilot Yume","status-playable","playable","2022-10-29 11:49:49.000" +"","No Heroes Here","online;status-playable","playable","2020-05-10 02:41:57.000" +"0100853015E86000","No Man’s Sky","gpu;status-ingame","ingame","2024-07-25 05:18:17.000" +"0100F0400F202000","No More Heroes","32-bit;status-playable","playable","2022-09-13 07:44:27.000" +"010071400F204000","No More Heroes 2 Desperate Struggle","32-bit;status-playable;nvdec","playable","2022-11-19 01:38:13.000" +"01007C600EB42000","No More Heroes 3","gpu;status-ingame;UE4","ingame","2024-03-11 17:06:19.000" +"01009F3011004000","No Straight Roads","status-playable;nvdec","playable","2022-10-05 17:01:38.000" +"0100542012884000","Nongunz: Doppelganger Edition","status-playable","playable","2022-10-29 12:00:39.000" +"","Norman's Great Illusion","status-playable","playable","2020-12-15 19:28:24.000" +"01001A500AD6A000","Norn9 ~Norn + Nonette~ LOFN","status-playable;nvdec;vulkan-backend-bug","playable","2022-12-09 09:29:16.000" +"0100A9E00D97A000","Northgard","status-menus;crash","menus","2022-02-06 02:05:35.000" +"","Not Not a Brain Buster","status-playable","playable","2020-05-10 02:05:26.000" +"0100DAF00D0E2000","Not Tonight","status-playable;nvdec","playable","2022-10-19 11:48:47.000" +"","Nubarron: The adventure of an unlucky gnome","status-playable","playable","2020-12-17 16:45:17.000" +"","Nuclien","status-playable","playable","2020-05-10 05:32:55.000" +"","Numbala","status-playable","playable","2020-05-11 12:01:07.000" +"010020500C8C8000","Number Place 10000","gpu;status-menus","menus","2021-11-24 09:14:23.000" +"010003701002C000","Nurse Love Syndrome","status-playable","playable","2022-10-13 10:05:22.000" +"010049F00EC30000","Nyan Cat: Lost in Space","online;status-playable","playable","2021-06-12 13:22:03.000" +"01002E6014FC4000","O---O","status-playable","playable","2022-10-29 12:12:14.000" +"","OBAKEIDORO!","nvdec;online;status-playable","playable","2020-10-16 16:57:34.000" +"","OK K.O.! Let's Play Heroes","nvdec;status-playable","playable","2021-01-11 18:41:02.000" +"0100276009872000","OKAMI HD","status-playable;nvdec","playable","2024-04-05 06:24:58.000" +"","OLYMPIC GAMES TOKYO 2020","ldn-untested;nvdec;online;status-playable","playable","2021-01-06 01:20:24.000" +"01006DB00D970000","OMG Zombies!","32-bit;status-playable","playable","2021-04-12 18:04:45.000" +"010014E017B14000","OMORI","status-playable","playable","2023-01-07 20:21:02.000" +"01008FE00E2F6000","ONE PIECE: PIRATE WARRIORS 4","status-playable;online-broken;ldn-untested","playable","2022-09-27 22:55:46.000" +"01004A200BE82000","OPUS Collection","status-playable","playable","2021-01-25 15:24:04.000" +"010049C0075F0000","OPUS: The Day We Found Earth","nvdec;status-playable","playable","2021-01-21 18:29:31.000" +"","OTOKOMIZU","status-playable","playable","2020-07-13 21:00:44.000" +"","OTTTD","slow;status-ingame","ingame","2020-10-10 19:31:07.000" +"01005F000CC18000","OVERWHELM","status-playable","playable","2021-01-21 18:37:18.000" +"01002A000C478000","Observer","UE4;gpu;nvdec;status-ingame","ingame","2021-03-03 20:19:45.000" +"","Oceanhorn","status-playable","playable","2021-01-05 13:55:22.000" +"01006CB010840000","Oceanhorn 2 Knights of the Lost Realm","status-playable","playable","2021-05-21 18:26:10.000" +"","Octocopter: Double or Squids","status-playable","playable","2021-01-06 01:30:16.000" +"0100CAB006F54000","Octodad Dadliest Catch","crash;status-boots","boots","2021-04-23 15:26:12.000" +"","Octopath Traveler","UE4;crash;gpu;status-ingame","ingame","2020-08-31 02:34:36.000" +"0100A3501946E000","Octopath Traveler II","gpu;status-ingame;amd-vendor-bug","ingame","2024-09-22 11:39:20.000" +"010084300C816000","Odallus","status-playable","playable","2022-08-08 12:37:58.000" +"0100BB500EE3C000","Oddworld: Munch's Oddysee","gpu;nvdec;status-ingame","ingame","2021-06-17 12:11:50.000" +"01005E700ABB8000","Oddworld: New 'n' Tasty","nvdec;status-playable","playable","2021-06-17 17:51:32.000" +"0100D210177C6000","Oddworld: Soulstorm","services-horizon;status-boots;crash","boots","2024-08-18 13:13:26.000" +"01002EA00ABBA000","Oddworld: Stranger's Wrath HD","status-menus;crash;nvdec;loader-allocator","menus","2021-11-23 09:23:21.000" +"","Odium to the Core","gpu;status-ingame","ingame","2021-01-08 14:03:52.000" +"01006F5013202000","Off And On Again","status-playable","playable","2022-10-29 19:46:26.000" +"01003CD00E8BC000","Offroad Racing","status-playable;online-broken;UE4","playable","2022-09-14 18:53:22.000" +"01003B900AE12000","Oh My Godheads: Party Edition","status-playable","playable","2021-04-15 11:04:11.000" +"","Oh...Sir! The Hollywood Roast","status-ingame","ingame","2020-12-06 00:42:30.000" +"01006AB00BD82000","OkunoKA","status-playable;online-broken","playable","2022-08-08 14:41:51.000" +"0100CE2007A86000","Old Man's Journey","nvdec;status-playable","playable","2021-01-28 19:16:52.000" +"","Old School Musical","status-playable","playable","2020-12-10 12:51:12.000" +"","Old School Racer 2","status-playable","playable","2020-10-19 12:11:26.000" +"0100E0200B980000","OlliOlli: Switch Stance","gpu;status-boots","boots","2024-04-25 08:36:37.000" +"0100F9D00C186000","Olympia Soiree","status-playable","playable","2022-12-04 21:07:12.000" +"01001D600E51A000","Omega Labyrinth Life","status-playable","playable","2021-02-23 21:03:03.000" +"","Omega Vampire","nvdec;status-playable","playable","2020-10-17 19:15:35.000" +"","Omensight: Definitive Edition","UE4;crash;nvdec;status-ingame","ingame","2020-07-26 01:45:14.000" +"","Once Upon A Coma","nvdec;status-playable","playable","2020-08-01 12:09:39.000" +"","One More Dungeon","status-playable","playable","2021-01-06 09:10:58.000" +"","One Person Story","status-playable","playable","2020-07-14 11:51:02.000" +"","One Piece Pirate Warriors 3","nvdec;status-playable","playable","2020-05-10 06:23:52.000" +"","One Piece Unlimited World Red Deluxe Edition","status-playable","playable","2020-05-10 22:26:32.000" +"","OneWayTicket","UE4;status-playable","playable","2020-06-20 17:20:49.000" +"0100463013246000","Oneiros","status-playable","playable","2022-10-13 10:17:22.000" +"0100CF4011B2A000","OniNaki","nvdec;status-playable","playable","2021-02-27 21:52:42.000" +"010057C00D374000","Oniken","status-playable","playable","2022-09-10 14:22:38.000" +"010037900C814000","Oniken: Unstoppable Edition","status-playable","playable","2022-08-08 14:52:06.000" +"","Onimusha: Warlords","nvdec;status-playable","playable","2020-07-31 13:08:39.000" +"0100D5400BD90000","Operación Triunfo 2017","services;status-ingame;nvdec","ingame","2022-08-08 15:06:42.000" +"01006CF00CFA4000","Operencia The Stolen Sun","UE4;nvdec;status-playable","playable","2021-06-08 13:51:07.000" +"","Ord.","status-playable","playable","2020-12-14 11:59:06.000" +"010061D00DB74000","Ori and the Blind Forest: Definitive Edition","status-playable;nvdec;online-broken","playable","2022-09-14 19:58:13.000" +"010005800F46E000","Ori and the Blind Forest: Definitive Edition Demo","status-playable","playable","2022-09-10 14:40:12.000" +"01008DD013200000","Ori and the Will of the Wisps","status-playable","playable","2023-03-07 00:47:13.000" +"","Orn: The Tiny Forest Sprite","UE4;gpu;status-ingame","ingame","2020-08-07 14:25:30.000" +"0100E5900F49A000","Othercide","status-playable;nvdec","playable","2022-10-05 19:04:38.000" +"01006AF013A9E000","Otti house keeper","status-playable","playable","2021-01-31 12:11:24.000" +"","Our World Is Ended.","nvdec;status-playable","playable","2021-01-19 22:46:57.000" +"010097F010FE6000","Our two Bedroom Story","gpu;status-ingame;nvdec","ingame","2023-10-10 17:41:20.000" +"01005A700A166000","Out Of The Box","status-playable","playable","2021-01-28 01:34:27.000" +"0100A0D013464000","Outbreak: Endless Nightmares","status-playable","playable","2022-10-29 12:35:49.000" +"0100C850130FE000","Outbreak: Epidemic","status-playable","playable","2022-10-13 10:27:31.000" +"0100D9F013102000","Outbreak: Lost Hope","crash;status-boots","boots","2021-04-26 18:01:23.000" +"0100B450130FC000","Outbreak: The New Nightmare","status-playable","playable","2022-10-19 15:42:07.000" +"01006EE013100000","Outbreak: The Nightmare Chronicles","status-playable","playable","2022-10-13 10:41:57.000" +"0100B8900EFA6000","Outbuddies DX","gpu;status-ingame","ingame","2022-08-04 22:39:24.000" +"01008D4007A1E000","Outlast","status-playable;nvdec;loader-allocator;vulkan-backend-bug","playable","2024-01-27 04:44:26.000" +"0100DE70085E8000","Outlast 2","status-ingame;crash;nvdec","ingame","2022-01-22 22:28:05.000" +"01006FD0080B2000","Overcooked! 2","status-playable;ldn-untested","playable","2022-08-08 16:48:10.000" +"0100F28011892000","Overcooked! All You Can Eat","ldn-untested;online;status-playable","playable","2021-04-15 10:33:52.000" +"01009B900401E000","Overcooked! Special Edition","status-playable","playable","2022-08-08 20:48:52.000" +"0100D7F00EC64000","Overlanders","status-playable;nvdec;UE4","playable","2022-09-14 20:15:06.000" +"01008EA00E816000","Overpass","status-playable;online-broken;UE4;ldn-untested","playable","2022-10-17 15:29:47.000" +"0100647012F62000","Override 2 Super Mech League","status-playable;online-broken;UE4","playable","2022-10-19 15:56:04.000" +"01008A700F7EE000","Override: Mech City Brawl - Super Charged Mega Edition","status-playable;nvdec;online-broken;UE4","playable","2022-09-20 17:33:32.000" +"0100F8600E21E000","Overwatch®: Legendary Edition","deadlock;status-boots","boots","2022-09-14 20:22:22.000" +"","Owlboy","status-playable","playable","2020-10-19 14:24:45.000" +"0100AD9012510000","PAC-MAN 99","gpu;status-ingame;online-broken","ingame","2024-04-23 00:48:25.000" +"","PAC-MAN CHAMPIONSHIP EDITION 2 PLUS","status-playable","playable","2021-01-19 22:06:18.000" +"0100F0D004CAE000","PAN-PAN A tiny big adventure","audout;status-playable","playable","2021-01-25 14:42:00.000" +"0100360016800000","PAW Patrol: Grand Prix","gpu;status-ingame","ingame","2024-05-03 16:16:11.000" +"0100274004052000","PAYDAY 2","status-playable;nvdec;online-broken;ldn-untested","playable","2022-08-09 12:56:39.000" +"010085700ABC8000","PBA Pro Bowling","status-playable;nvdec;online-broken;UE4","playable","2022-09-14 23:00:49.000" +"0100F95013772000","PBA Pro Bowling 2021","status-playable;online-broken;UE4","playable","2022-10-19 16:46:40.000" +"","PC Building Simulator","status-playable","playable","2020-06-12 00:31:58.000" +"010053401147C000","PGA TOUR 2K21","deadlock;status-ingame;nvdec","ingame","2022-10-05 21:53:50.000" +"0100063005C86000","PHANTOM BREAKER: BATTLE GROUNDS OVER DRIVE","audio;status-playable;nvdec","playable","2024-02-29 14:20:35.000" +"","PHOGS!","online;status-playable","playable","2021-01-18 15:18:37.000" +"","PLANET ALPHA","UE4;gpu;status-ingame","ingame","2020-12-16 14:42:20.000" +"0100EC100A790000","PSYVARIAR DELTA","nvdec;status-playable","playable","2021-01-20 13:01:46.000" +"010016400F07E000","PUSH THE CRATE","status-playable;nvdec;UE4","playable","2022-09-15 13:28:41.000" +"011123900AEE0000","Paladins","online;status-menus","menus","2021-01-21 19:21:37.000" +"010083700B730000","Pang Adventures","status-playable","playable","2021-04-10 12:16:59.000" +"","Pantsu Hunter","status-playable","playable","2021-02-19 15:12:27.000" +"","Panzer Dragoon: Remake","status-playable","playable","2020-10-04 04:03:55.000" +"01004AE0108E0000","Panzer Paladin","status-playable","playable","2021-05-05 18:26:00.000" +"","Paper Dolls Original","UE4;crash;status-boots","boots","2020-07-13 20:26:21.000" +"0100A3900C3E2000","Paper Mario The Origami King","audio;status-playable;Needs Update","playable","2024-08-09 18:27:40.000" +"0100ECD018EBE000","Paper Mario: The Thousand-Year Door","gpu;status-ingame;intel-vendor-bug;slow","ingame","2025-01-07 04:27:35.000" +"01006AD00B82C000","Paperbound Brawlers","status-playable","playable","2021-01-25 14:32:15.000" +"0100DC70174E0000","Paradigm Paradox","status-playable;vulkan-backend-bug","playable","2022-12-03 22:28:13.000" +"01007FB010DC8000","Paradise Killer","status-playable;UE4","playable","2022-10-05 19:33:05.000" +"010063400B2EC000","Paranautical Activity","status-playable","playable","2021-01-25 13:49:19.000" +"01006B5012B32000","Part Time UFO","status-ingame;crash","ingame","2023-03-03 03:13:05.000" +"01007FC00A040000","Party Arcade","status-playable;online-broken;UE4;ldn-untested","playable","2022-08-09 12:32:53.000" +"0100B8E00359E000","Party Golf","status-playable;nvdec","playable","2022-08-09 12:38:30.000" +"010022801217E000","Party Hard 2","status-playable;nvdec","playable","2022-10-05 20:31:48.000" +"","Party Treats","status-playable","playable","2020-07-02 00:05:00.000" +"01001E500EA16000","Path of Sin: Greed","status-menus;crash","menus","2021-11-24 08:00:00.000" +"010031F006E76000","Pato Box","status-playable","playable","2021-01-25 15:17:52.000" +"01001F201121E000","Paw Patrol: Might Pups Save Adventure Bay!","status-playable","playable","2022-10-13 12:17:55.000" +"01000c4015030000","Pawapoke R","services-horizon;status-nothing","nothing","2024-05-14 14:28:32.000" +"0100A56006CEE000","Pawarumi","status-playable;online-broken","playable","2022-09-10 15:19:33.000" +"010002100CDCC000","Peaky Blinders: Mastermind","status-playable","playable","2022-10-19 16:56:35.000" +"","Peasant Knight","status-playable","playable","2020-12-22 09:30:50.000" +"0100CA901AA9C000","Penny's Big Breakaway","status-playable;amd-vendor-bug","playable","2024-05-27 07:58:51.000" +"0100C510049E0000","Penny-Punching Princess","status-playable","playable","2022-08-09 13:37:05.000" +"","Perception","UE4;crash;nvdec;status-menus","menus","2020-12-18 11:49:23.000" +"010011700D1B2000","Perchang","status-playable","playable","2021-01-25 14:19:52.000" +"010089F00A3B4000","Perfect Angle","status-playable","playable","2021-01-21 18:48:45.000" +"01005CD012DC0000","Perky Little Things","status-boots;crash;vulkan","boots","2024-08-04 07:22:46.000" +"","Persephone","status-playable","playable","2021-03-23 22:39:19.000" +"","Perseverance","status-playable","playable","2020-07-13 18:48:27.000" +"010062B01525C000","Persona 4 Golden","status-playable","playable","2024-08-07 17:48:07.000" +"01005CA01580E000","Persona 5 Royal","gpu;status-ingame","ingame","2024-08-17 21:45:15.000" +"010087701B092000","Persona 5 Tactica","status-playable","playable","2024-04-01 22:21:03.000" +"","Persona 5: Scramble","deadlock;status-boots","boots","2020-10-04 03:22:29.000" +"0100801011C3E000","Persona 5: Strikers (US)","status-playable;nvdec;mac-bug","playable","2023-09-26 09:36:01.000" +"010044400EEAE000","Petoons Party","nvdec;status-playable","playable","2021-03-02 21:07:58.000" +"0100DDD00C0EA000","Phantaruk","status-playable","playable","2021-06-11 18:09:54.000" +"010096F00E5B0000","Phantom Doctrine","status-playable;UE4","playable","2022-09-15 10:51:50.000" +"0100C31005A50000","Phantom Trigger","status-playable","playable","2022-08-09 14:27:30.000" +"0100CB000A142000","Phoenix Wright: Ace Attorney Trilogy","status-playable","playable","2023-09-15 22:03:12.000" +"","Physical Contact: 2048","slow;status-playable","playable","2021-01-25 15:18:32.000" +"01008110036FE000","Physical Contact: Speed","status-playable","playable","2022-08-09 14:40:46.000" +"010077300A86C000","Pianista: The Legendary Virtuoso","status-playable;online-broken","playable","2022-08-09 14:52:56.000" +"010012100E8DC000","Picross Lord Of The Nazarick","status-playable","playable","2023-02-08 15:54:56.000" +"","Picross S2","status-playable","playable","2020-10-15 12:01:40.000" +"","Picross S3","status-playable","playable","2020-10-15 11:55:27.000" +"","Picross S4","status-playable","playable","2020-10-15 12:33:46.000" +"0100AC30133EC000","Picross S5","status-playable","playable","2022-10-17 18:51:42.000" +"010025901432A000","Picross S6","status-playable","playable","2022-10-29 17:52:19.000" +"","Picross S7","status-playable","playable","2022-02-16 12:51:25.000" +"010043B00E1CE000","PictoQuest","status-playable","playable","2021-02-27 15:03:16.000" +"","Piczle Lines DX","UE4;crash;nvdec;status-menus","menus","2020-11-16 04:21:31.000" +"","Piczle Lines DX 500 More Puzzles!","UE4;status-playable","playable","2020-12-15 23:42:51.000" +"01000FD00D5CC000","Pig Eat Ball","services;status-ingame","ingame","2021-11-30 01:57:45.000" +"0100AA80194B0000","Pikmin 1","audio;status-ingame","ingame","2024-05-28 18:56:11.000" +"0100D680194B2000","Pikmin 2","gpu;status-ingame","ingame","2023-07-31 08:53:41.000" +"0100F4C009322000","Pikmin 3 Deluxe","gpu;status-ingame;32-bit;nvdec;Needs Update","ingame","2024-09-03 00:28:26.000" +"01001CB0106F8000","Pikmin 3 Deluxe Demo","32-bit;crash;demo;gpu;status-ingame","ingame","2021-06-16 18:38:07.000" +"0100B7C00933A000","Pikmin 4","gpu;status-ingame;crash;UE4","ingame","2024-08-26 03:39:08.000" +"0100E0B019974000","Pikmin 4 Demo","gpu;status-ingame;nvdec;UE4;demo;amd-vendor-bug","ingame","2023-09-22 21:41:08.000" +"0100D6200E130000","Pillars of Eternity","status-playable","playable","2021-02-27 00:24:21.000" +"01007A500B0B2000","Pilot Sports","status-playable","playable","2021-01-20 15:04:17.000" +"0100DA70186D4000","Pinball FX","status-playable","playable","2024-05-03 17:09:11.000" +"0100DB7003828000","Pinball FX3","status-playable;online-broken","playable","2022-11-11 23:49:07.000" +"","Pine","slow;status-ingame","ingame","2020-07-29 16:57:39.000" +"","Pinstripe","status-playable","playable","2020-11-26 10:40:40.000" +"01002B20174EE000","Piofiore: Episodio 1926","status-playable","playable","2022-11-23 18:36:05.000" +"","Piofiore: Fated Memories","nvdec;status-playable","playable","2020-11-30 14:27:50.000" +"0100EA2013BCC000","Pixel Game Maker Series Puzzle Pedestrians","status-playable","playable","2022-10-24 20:15:50.000" +"0100859013CE6000","Pixel Game Maker Series Werewolf Princess Kaguya","crash;services;status-nothing","nothing","2021-03-26 00:23:07.000" +"","Pixel Gladiator","status-playable","playable","2020-07-08 02:41:26.000" +"010000E00E612000","Pixel Puzzle Makeout League","status-playable","playable","2022-10-13 12:34:00.000" +"","PixelJunk Eden 2","crash;status-ingame","ingame","2020-12-17 11:55:52.000" +"0100E4D00A690000","Pixeljunk Monsters 2","status-playable","playable","2021-06-07 03:40:01.000" +"01004A900C352000","Pizza Titan Ultra","nvdec;status-playable","playable","2021-01-20 15:58:42.000" +"05000FD261232000","Pizza Tower","status-ingame;crash","ingame","2024-09-16 00:21:56.000" +"0100FF8005EB2000","Plague Road","status-playable","playable","2022-08-09 15:27:14.000" +"010030B00C316000","Planescape: Torment and Icewind Dale: Enhanced Editions","cpu;status-boots;32-bit;crash;Needs Update","boots","2022-09-10 03:58:26.000" +"01007EA019CFC000","Planet Cube Edge","status-playable","playable","2023-03-22 17:10:12.000" +"010087000428E000","Plantera","status-playable","playable","2022-08-09 15:36:28.000" +"0100C56010FD8000","Plants vs. Zombies: Battle for Neighborville Complete Edition","gpu;audio;status-boots;crash","boots","2024-09-02 12:58:14.000" +"0100E5B011F48000","Ploid Saga","status-playable","playable","2021-04-19 16:58:45.000" +"01009440095FE000","Pode","nvdec;status-playable","playable","2021-01-25 12:58:35.000" +"010086F0064CE000","Poi: Explorer Edition","nvdec;status-playable","playable","2021-01-21 19:32:00.000" +"0100EB6012FD2000","Poison Control","status-playable","playable","2021-05-16 14:01:54.000" +"01005D100807A000","Pokemon Quest","status-playable","playable","2022-02-22 16:12:32.000" +"010030D005AE6000","Pokken Tournament DX Demo","status-playable;demo;opengl-backend-bug","playable","2022-08-10 12:03:19.000" +"0100B3F000BE2000","Pokkén Tournament DX","status-playable;nvdec;ldn-works;opengl-backend-bug;LAN;amd-vendor-bug;intel-vendor-bug","playable","2024-07-18 23:11:08.000" +"0100000011D90000","Pokémon Brilliant Diamond","gpu;status-ingame;ldn-works","ingame","2024-08-28 13:26:35.000" +"010072400E04A000","Pokémon Café Mix","status-playable","playable","2021-08-17 20:00:04.000" +"","Pokémon HOME","Needs Update;crash;services;status-menus","menus","2020-12-06 06:01:51.000" +"01001F5010DFA000","Pokémon Legends: Arceus","gpu;status-ingame;Needs Update;ldn-works","ingame","2024-09-19 10:02:02.000" +"01003D200BAA2000","Pokémon Mystery Dungeon Rescue Team DX","status-playable;mac-bug","playable","2024-01-21 00:16:32.000" +"0100A3D008C5C000","Pokémon Scarlet","gpu;status-ingame;nvdec;ldn-works;amd-vendor-bug","ingame","2023-12-14 13:18:29.000" +"01008DB008C2C000","Pokémon Shield","deadlock;status-ingame;crash;online-broken;ldn-works;LAN","ingame","2024-08-12 07:20:22.000" +"0100ABF008968000","Pokémon Sword","deadlock;status-ingame;crash;online-broken;ldn-works;LAN","ingame","2024-08-26 15:40:37.000" +"01008F6008C5E000","Pokémon Violet","gpu;status-ingame;nvdec;ldn-works;amd-vendor-bug;mac-bug","ingame","2024-07-30 02:51:48.000" +"0100187003A36000","Pokémon: Let's Go, Eevee!","status-ingame;crash;nvdec;online-broken;ldn-broken","ingame","2024-06-01 15:03:04.000" +"010003F003A34000","Pokémon: Let's Go, Pikachu!","status-ingame;crash;nvdec;online-broken;ldn-broken","ingame","2024-03-15 07:55:41.000" +"01009AD008C4C000","Pokémon: Let's Go, Pikachu! demo","slow;status-playable;demo","playable","2023-11-26 11:23:20.000" +"","Polandball: Can Into Space!","status-playable","playable","2020-06-25 15:13:26.000" +"","Poly Bridge","services;status-playable","playable","2020-06-08 23:32:41.000" +"010017600B180000","Polygod","slow;status-ingame;regression","ingame","2022-08-10 14:38:14.000" +"010074B00ED32000","Polyroll","gpu;status-boots","boots","2021-07-01 16:16:50.000" +"","Ponpu","status-playable","playable","2020-12-16 19:09:34.000" +"","Pooplers","status-playable","playable","2020-11-02 11:52:10.000" +"01007EF013CA0000","Port Royale 4","status-menus;crash;nvdec","menus","2022-10-30 14:34:06.000" +"01007BB017812000","Portal","status-playable","playable","2024-06-12 03:48:29.000" +"0100ABD01785C000","Portal 2","gpu;status-ingame","ingame","2023-02-20 22:44:15.000" +"","Portal Dogs","status-playable","playable","2020-09-04 12:55:46.000" +"0100437004170000","Portal Knights","ldn-untested;online;status-playable","playable","2021-05-27 19:29:04.000" +"","Potata: Fairy Flower","nvdec;status-playable","playable","2020-06-17 09:51:34.000" +"01000A4014596000","Potion Party","status-playable","playable","2021-05-06 14:26:54.000" +"","Power Rangers: Battle for the Grid","status-playable","playable","2020-06-21 16:52:42.000" +"01008E100E416000","PowerSlave Exhumed","gpu;status-ingame","ingame","2023-07-31 23:19:10.000" +"0100D1C01C194000","Powerful Pro Baseball 2024-2025","gpu;status-ingame","ingame","2024-08-25 06:40:48.000" +"","Prehistoric Dude","gpu;status-ingame","ingame","2020-10-12 12:38:48.000" +"","Pretty Princess Magical Coordinate","status-playable","playable","2020-10-15 11:43:41.000" +"01007F00128CC000","Pretty Princess Party","status-playable","playable","2022-10-19 17:23:58.000" +"010009300D278000","Preventive Strike","status-playable;nvdec","playable","2022-10-06 10:55:51.000" +"010007F00879E000","PriPara: All Idol Perfect Stage","status-playable","playable","2022-11-22 16:35:52.000" +"0100210019428000","Prince of Persia: The Lost Crown","status-ingame;crash","ingame","2024-06-08 21:31:58.000" +"01007A3009184000","Princess Peach: Showtime!","status-playable;UE4","playable","2024-09-21 13:39:45.000" +"010024701DC2E000","Princess Peach: Showtime! Demo","status-playable;UE4;demo","playable","2024-03-10 17:46:45.000" +"01008FA01187A000","Prinny 2: Dawn of Operation Panties, Dood!","32-bit;status-playable","playable","2022-10-13 12:42:58.000" +"0100A6E01681C000","Prinny Presents NIS Classics Volume 1","status-boots;crash;Needs Update","boots","2023-02-02 07:23:09.000" +"01007A0011878000","Prinny: Can I Really Be the Hero?","32-bit;status-playable;nvdec","playable","2023-10-22 09:25:25.000" +"010029200AB1C000","Prison Architect","status-playable","playable","2021-04-10 12:27:58.000" +"0100C1801B914000","Prison City","gpu;status-ingame","ingame","2024-03-01 08:19:33.000" +"0100F4800F872000","Prison Princess","status-playable","playable","2022-11-20 15:00:25.000" +"0100A9800A1B6000","Professional Construction - The Simulation","slow;status-playable","playable","2022-08-10 15:15:45.000" +"","Professional Farmer: Nintendo Switch Edition","slow;status-playable","playable","2020-12-16 13:38:19.000" +"","Professor Lupo and his Horrible Pets","status-playable","playable","2020-06-12 00:08:45.000" +"0100D1F0132F6000","Professor Lupo: Ocean","status-playable","playable","2021-04-14 16:33:33.000" +"0100BBD00976C000","Project Highrise: Architect's Edition","status-playable","playable","2022-08-10 17:19:12.000" +"0100ACE00DAB6000","Project Nimbus: Complete Edition","status-playable;nvdec;UE4;vulkan-backend-bug","playable","2022-08-10 17:35:43.000" +"01002980140F6000","Project TRIANGLE STRATEGY Debut Demo","status-playable;UE4;demo","playable","2022-10-24 21:40:27.000" +"","Project Warlock","status-playable","playable","2020-06-16 10:50:41.000" +"","Psikyo Collection Vol 1","32-bit;status-playable","playable","2020-10-11 13:18:47.000" +"0100A2300DB78000","Psikyo Collection Vol. 3","status-ingame","ingame","2021-06-07 02:46:23.000" +"01009D400C4A8000","Psikyo Collection Vol.2","32-bit;status-playable","playable","2021-06-07 03:22:07.000" +"01007A200F2E2000","Psikyo Shooting Stars Alpha","32-bit;status-playable","playable","2021-04-13 12:03:43.000" +"0100D7400F2E4000","Psikyo Shooting Stars Bravo","32-bit;status-playable","playable","2021-06-14 12:09:07.000" +"","Puchitto kurasutā","Need-Update;crash;services;status-menus","menus","2020-07-04 16:44:28.000" +"0100861012474000","Pulstario","status-playable","playable","2022-10-06 11:02:01.000" +"01009AE00B788000","Pumped BMX Pro","status-playable;nvdec;online-broken","playable","2022-09-20 17:40:50.000" +"01006C10131F6000","Pumpkin Jack","status-playable;nvdec;UE4","playable","2022-10-13 12:52:32.000" +"0100B60010432000","Push the Crate 2","UE4;gpu;nvdec;status-ingame","ingame","2021-06-10 14:20:01.000" +"","Pushy and Pully in Blockland","status-playable","playable","2020-07-04 11:44:41.000" +"","Puyo Puyo Champions","online;status-playable","playable","2020-06-19 11:35:08.000" +"010038E011940000","Puyo Puyo Tetris 2","status-playable;ldn-untested","playable","2023-09-26 11:35:25.000" +"010079E01A1E0000","Puzzle Bobble Everybubble!","audio;status-playable;ldn-works","playable","2023-06-10 03:53:40.000" +"","Puzzle Book","status-playable","playable","2020-09-28 13:26:01.000" +"0100476004A9E000","Puzzle Box Maker","status-playable;nvdec;online-broken","playable","2022-08-10 18:00:52.000" +"","Puzzle and Dragons GOLD","slow;status-playable","playable","2020-05-13 15:09:34.000" +"0100A4E017372000","Pyramid Quest","gpu;status-ingame","ingame","2023-08-16 21:14:52.000" +"","Q-YO Blaster","gpu;status-ingame","ingame","2020-06-07 22:36:53.000" +"010023600AA34000","Q.U.B.E. 2","UE4;status-playable","playable","2021-03-03 21:38:57.000" +"0100A8D003BAE000","Qbics Paint","gpu;services;status-ingame","ingame","2021-06-07 10:54:09.000" +"0100BA5012E54000","Quake","gpu;status-menus;crash","menus","2022-08-08 12:40:34.000" +"010048F0195E8000","Quake II","status-playable","playable","2023-08-15 03:42:14.000" +"","QuakespasmNX","status-nothing;crash;homebrew","nothing","2022-07-23 19:28:07.000" +"010045101288A000","Quantum Replica","status-playable;nvdec;UE4","playable","2022-10-30 21:17:22.000" +"0100F1400BA88000","Quarantine Circular","status-playable","playable","2021-01-20 15:24:15.000" +"0100DCF00F13A000","Queen's Quest 4: Sacred Truce","status-playable;nvdec","playable","2022-10-13 12:59:21.000" +"0100492012378000","Quell Zen","gpu;status-ingame","ingame","2021-06-11 15:59:53.000" +"01001DE005012000","Quest of Dungeons","status-playable","playable","2021-06-07 10:29:22.000" +"","QuietMansion2","status-playable","playable","2020-09-03 14:59:35.000" +"0100AF100EE76000","Quiplash 2 InterLASHional","status-playable;online-working","playable","2022-10-19 17:43:45.000" +"0100F930136B6000","R-TYPE FINAL 2","slow;status-ingame;nvdec;UE4","ingame","2022-10-30 21:46:29.000" +"01007B0014300000","R-TYPE FINAL 2 Demo","slow;status-ingame;nvdec;UE4;demo","ingame","2022-10-24 21:57:42.000" +"","R-Type Dimensions EX","status-playable","playable","2020-10-09 12:04:43.000" +"0100B5A004302000","R.B.I. Baseball 17","status-playable;online-working","playable","2022-08-11 11:55:47.000" +"01005CC007616000","R.B.I. Baseball 18","status-playable;nvdec;online-working","playable","2022-08-11 11:27:52.000" +"0100FCB00BF40000","R.B.I. Baseball 19","status-playable;nvdec;online-working","playable","2022-08-11 11:43:52.000" +"010061400E7D4000","R.B.I. Baseball 20","status-playable","playable","2021-06-15 21:16:29.000" +"0100B4A0115CA000","R.B.I. Baseball 21","status-playable;online-working","playable","2022-10-24 22:31:45.000" +"010024400C516000","RAD","gpu;status-menus;crash;UE4","menus","2021-11-29 02:01:56.000" +"01008FA00ACEC000","RADIO HAMMER STATION","audout;status-playable","playable","2021-02-26 20:20:06.000" +"","REKT","online;status-playable","playable","2020-09-28 12:33:56.000" +"01002A000CD48000","RESIDENT EVIL 6","status-playable;nvdec","playable","2022-09-15 14:31:47.000" +"010095300212A000","RESIDENT EVIL REVELATIONS 2","status-playable;online-broken;ldn-untested","playable","2022-08-11 12:57:50.000" +"","REZ PLZ","status-playable","playable","2020-10-24 13:26:12.000" +"01009D5009234000","RICO","status-playable;nvdec;online-broken","playable","2022-08-11 20:16:40.000" +"010088E00B816000","RIOT: Civil Unrest","status-playable","playable","2022-08-11 20:27:56.000" +"","RIVE: Ultimate Edition","status-playable","playable","2021-03-24 18:45:55.000" +"","RMX Real Motocross","status-playable","playable","2020-10-08 21:06:15.000" +"","ROBOTICS;NOTES DaSH","status-playable","playable","2020-11-16 23:09:54.000" +"","ROBOTICS;NOTES ELITE","status-playable","playable","2020-11-26 10:28:20.000" +"","RPG Maker MV","nvdec;status-playable","playable","2021-01-05 20:12:01.000" +"0000000000000000","RSDKv5u","status-ingame;homebrew","ingame","2024-04-01 16:25:34.000" +"0100E21013908000","RWBY: Grimm Eclipse","status-playable;online-broken","playable","2022-11-03 10:44:01.000" +"","RXN -Raijin-","nvdec;status-playable","playable","2021-01-10 16:05:43.000" +"01005BF00E4DE000","Rabi-Ribi","status-playable","playable","2022-08-06 17:02:44.000" +"","Race With Ryan","UE4;gpu;nvdec;slow;status-ingame","ingame","2020-11-16 04:35:33.000" +"","Rack N Ruin","status-playable","playable","2020-09-04 15:20:26.000" +"010000600CD54000","Rad Rodgers Radical Edition","status-playable;nvdec;online-broken","playable","2022-08-10 19:57:23.000" +"0100DA400E07E000","Radiation City","status-ingame;crash","ingame","2022-09-30 11:15:04.000" +"01009E40095EE000","Radiation Island","status-ingame;opengl;vulkan-backend-bug","ingame","2022-08-11 10:51:04.000" +"","Radical Rabbit Stew","status-playable","playable","2020-08-03 12:02:56.000" +"0100BAD013B6E000","Radio Commander","nvdec;status-playable","playable","2021-03-24 11:20:46.000" +"01003D00099EC000","Raging Justice","status-playable","playable","2021-06-03 14:06:50.000" +"01005CD013116000","Raiden IV x Mikado Remix [ 雷電Ⅳ×MIKADO remix ]","status-playable","playable","2022-07-29 15:50:13.000" +"01002B000D97E000","Raiden V: Director's Cut","deadlock;status-boots;nvdec","boots","2024-07-12 07:31:46.000" +"01002EE00DC02000","Railway Empire","status-playable;nvdec","playable","2022-10-03 13:53:50.000" +"","Rain City","status-playable","playable","2020-10-08 16:59:03.000" +"010047600BF72000","Rain World","status-playable","playable","2023-05-10 23:34:08.000" +"0100BDD014232000","Rain on Your Parade","status-playable","playable","2021-05-06 19:32:04.000" +"","Rainbows, toilets & unicorns","nvdec;status-playable","playable","2020-10-03 18:08:18.000" +"","Raji An Ancient Epic","UE4;gpu;nvdec;status-ingame","ingame","2020-12-16 10:05:25.000" +"","Rapala Fishing: Pro Series","nvdec;status-playable","playable","2020-12-16 13:26:53.000" +"","Rascal Fight","status-playable","playable","2020-10-08 13:23:30.000" +"","Rawr-Off","crash;nvdec;status-menus","menus","2020-07-02 00:14:44.000" +"01005FF002E2A000","Rayman Legends: Definitive Edition","status-playable;nvdec;ldn-works","playable","2023-05-27 18:33:07.000" +"0100F03011616000","Re:Turn - One Way Trip","status-playable","playable","2022-08-29 22:42:53.000" +"","Re:ZERO -Starting Life in Another World- The Prophecy of the Throne","gpu;status-boots;crash;nvdec;vulkan","boots","2023-03-07 21:27:24.000" +"","Real Drift Racing","status-playable","playable","2020-07-25 14:31:31.000" +"010048600CC16000","Real Heroes: Firefighter","status-playable","playable","2022-09-20 18:18:44.000" +"","Reaper: Tale of a Pale Swordsman","status-playable","playable","2020-12-12 15:12:23.000" +"0100D9B00E22C000","Rebel Cops","status-playable","playable","2022-09-11 10:02:53.000" +"0100CAA01084A000","Rebel Galaxy: Outlaw","status-playable;nvdec","playable","2022-12-01 07:44:56.000" +"0100CF600FF7A000","Red Bow","services;status-ingame","ingame","2021-11-29 03:51:34.000" +"0100351013A06000","Red Colony","status-playable","playable","2021-01-25 20:44:41.000" +"01007820196A6000","Red Dead Redemption","status-playable;amd-vendor-bug","playable","2024-09-13 13:26:13.000" +"","Red Death","status-playable","playable","2020-08-30 13:07:37.000" +"010075000C608000","Red Faction Guerrilla Re-Mars-tered","ldn-untested;nvdec;online;status-playable","playable","2021-06-07 03:02:13.000" +"","Red Game Without a Great Name","status-playable","playable","2021-01-19 21:42:35.000" +"010045400D73E000","Red Siren : Space Defense","UE4;status-playable","playable","2021-04-25 21:21:29.000" +"","Red Wings - Aces of the Sky","status-playable","playable","2020-06-12 01:19:53.000" +"01000D100DCF8000","Redeemer: Enhanced Edition","status-playable;nvdec;UE4;vulkan-backend-bug","playable","2022-09-11 10:20:24.000" +"0100326010B98000","Redout: Space Assault","status-playable;UE4","playable","2022-10-19 23:04:35.000" +"010007C00E558000","Reel Fishing: Road Trip Adventure","status-playable","playable","2021-03-02 16:06:43.000" +"","Reflection of Mine","audio;status-playable","playable","2020-12-17 15:06:37.000" +"","Refreshing Sideways Puzzle Ghost Hammer","status-playable","playable","2020-10-18 12:08:54.000" +"","Refunct","UE4;status-playable","playable","2020-12-15 22:46:21.000" +"0100FDF0083A6000","Regalia: Of Men and Monarchs - Royal Edition","status-playable","playable","2022-08-11 12:24:01.000" +"","Regions of Ruin","status-playable","playable","2020-08-05 11:38:58.000" +"","Reine des Fleurs","cpu;crash;status-boots","boots","2020-09-27 18:50:39.000" +"01002AD013C52000","Relicta","status-playable;nvdec;UE4","playable","2022-10-31 12:48:33.000" +"010095900B436000","Remi Lore","status-playable","playable","2021-06-03 18:58:15.000" +"0100FBD00F5F6000","Remothered: Broken Porcelain","UE4;gpu;nvdec;status-ingame","ingame","2021-06-17 15:13:11.000" +"01001F100E8AE000","Remothered: Tormented Fathers","status-playable;nvdec;UE4","playable","2022-10-19 23:26:50.000" +"","Rento Fortune Monolit","ldn-untested;online;status-playable","playable","2021-01-19 19:52:21.000" +"01007CC0130C6000","Renzo Racer","status-playable","playable","2021-03-23 22:28:05.000" +"01003C400AD42000","Rescue Tale","status-playable","playable","2022-09-20 18:40:18.000" +"010099A00BC1E000","Resident Evil 4","status-playable;nvdec","playable","2022-11-16 21:16:04.000" +"010018100CD46000","Resident Evil 5","status-playable;nvdec","playable","2024-02-18 17:15:29.000" +"0100643002136000","Resident Evil Revelations","status-playable;nvdec;ldn-untested","playable","2022-08-11 12:44:19.000" +"0100E7F00FFB8000","Resolutiion","crash;status-boots","boots","2021-04-25 21:57:56.000" +"0100FF201568E000","Restless Night [0100FF201568E000]","status-nothing;crash","nothing","2022-02-09 10:54:49.000" +"0100069000078000","Retail Interactive Display Menu (DevQuestMenu)- 0100069000078000","services;status-nothing;crash","nothing","2022-08-11 13:19:41.000" +"010086E00BCB2000","Retimed","status-playable","playable","2022-08-11 13:32:39.000" +"","Retro City Rampage DX","status-playable","playable","2021-01-05 17:04:17.000" +"01000ED014A2C000","Retrograde Arena","status-playable;online-broken","playable","2022-10-31 13:38:58.000" +"010032E00E6E2000","Return of the Obra Dinn","status-playable","playable","2022-09-15 19:56:45.000" +"010027400F708000","Revenge of Justice","status-playable;nvdec","playable","2022-11-20 15:43:23.000" +"0100E2E00EA42000","Reventure","status-playable","playable","2022-09-15 20:07:06.000" +"0100729012D18000","Rhythm Fighter","crash;status-nothing","nothing","2021-02-16 18:51:30.000" +"","Rhythm of the Gods","UE4;crash;status-nothing","nothing","2020-10-03 17:39:59.000" +"","RiME","UE4;crash;gpu;status-boots","boots","2020-07-20 15:52:38.000" +"01002C700C326000","Riddled Corpses EX","status-playable","playable","2021-06-06 16:02:44.000" +"0100AC600D898000","Rift Keeper","status-playable","playable","2022-09-20 19:48:20.000" +"01006AC00EE6E000","Rimelands","status-playable","playable","2022-10-13 13:32:56.000" +"01002FF008C24000","Ring Fit Adventure","crash;services;status-nothing","nothing","2021-04-14 19:00:01.000" +"01002A6006AA4000","Riptide GP: Renegade","online;status-playable","playable","2021-04-13 23:33:02.000" +"","Rise and Shine","status-playable","playable","2020-12-12 15:56:43.000" +"","Rise of Insanity","status-playable","playable","2020-08-30 15:42:14.000" +"01006BA00E652000","Rise: Race the Future","status-playable","playable","2021-02-27 13:29:06.000" +"010020C012F48000","Rising Hell","status-playable","playable","2022-10-31 13:54:02.000" +"0100E8300A67A000","Risk","status-playable;nvdec;online-broken","playable","2022-08-01 18:53:28.000" +"010076D00E4BA000","Risk of Rain 2","status-playable;online-broken","playable","2024-03-04 17:01:05.000" +"0100BD300F0EC000","Ritual","status-playable","playable","2021-03-02 13:51:19.000" +"010042500FABA000","Ritual: Crown of Horns","status-playable","playable","2021-01-26 16:01:47.000" +"","Rival Megagun","nvdec;online;status-playable","playable","2021-01-19 14:01:46.000" +"","River City Girls","nvdec;status-playable","playable","2020-06-10 23:44:09.000" +"01002E80168F4000","River City Girls 2","status-playable","playable","2022-12-07 00:46:27.000" +"0100B2100767C000","River City Melee Mach!!","status-playable;online-broken","playable","2022-09-20 20:51:57.000" +"010053000B986000","Road Redemption","status-playable;online-broken","playable","2022-08-12 11:26:20.000" +"010002F009A7A000","Road to Ballhalla","UE4;status-playable","playable","2021-06-07 02:22:36.000" +"","Road to Guangdong","slow;status-playable","playable","2020-10-12 12:15:32.000" +"010068200C5BE000","Roarr!","status-playable","playable","2022-10-19 23:57:45.000" +"0100618004096000","Robonauts","status-playable;nvdec","playable","2022-08-12 11:33:23.000" +"","Robozarro","status-playable","playable","2020-09-03 13:33:40.000" +"","Rock 'N Racing Off Road DX","status-playable","playable","2021-01-10 15:27:15.000" +"","Rock N' Racing Grand Prix","status-playable","playable","2021-01-06 20:23:57.000" +"0100A1B00DB36000","Rock of Ages 3: Make & Break","status-playable;UE4","playable","2022-10-06 12:18:29.000" +"01005EE0036EC000","Rocket League","gpu;status-ingame;online-broken;ldn-untested","ingame","2024-02-08 19:51:36.000" +"","Rocket Wars","status-playable","playable","2020-07-24 14:27:39.000" +"0100EC7009348000","Rogue Aces","gpu;services;status-ingame;nvdec","ingame","2021-11-30 02:18:30.000" +"01009FA010848000","Rogue Heroes: Ruins of Tasos","online;status-playable","playable","2021-04-01 15:41:25.000" +"","Rogue Legacy","status-playable","playable","2020-08-10 19:17:28.000" +"","Rogue Robots","status-playable","playable","2020-06-16 12:16:11.000" +"01001CC00416C000","Rogue Trooper Redux","status-playable;nvdec;online-broken","playable","2022-08-12 11:53:01.000" +"0100C7300C0EC000","RogueCube","status-playable","playable","2021-06-16 12:16:42.000" +"","Roll'd","status-playable","playable","2020-07-04 20:24:01.000" +"01004900113F8000","RollerCoaster Tycoon 3: Complete Edition","32-bit;status-playable","playable","2022-10-17 14:18:01.000" +"","RollerCoaster Tycoon Adventures","nvdec;status-playable","playable","2021-01-05 18:14:18.000" +"010076200CA16000","Rolling Gunner","status-playable","playable","2021-05-26 12:54:18.000" +"0100579011B40000","Rolling Sky 2","status-playable","playable","2022-11-03 10:21:12.000" +"01001F600829A000","Romancing SaGa 2","status-playable","playable","2022-08-12 12:02:24.000" +"","Romancing SaGa 3","audio;gpu;status-ingame","ingame","2020-06-27 20:26:18.000" +"010088100DD42000","Roof Rage","status-boots;crash;regression","boots","2023-11-12 03:47:18.000" +"","Roombo: First Blood","nvdec;status-playable","playable","2020-08-05 12:11:37.000" +"0100936011556000","Root Double -Before Crime * After Days- Xtend Edition","status-nothing;crash","nothing","2022-02-05 02:03:49.000" +"010030A00DA3A000","Root Letter: Last Answer","status-playable;vulkan-backend-bug","playable","2022-09-17 10:25:57.000" +"","Royal Roads","status-playable","playable","2020-11-17 12:54:38.000" +"010009B00D33C000","Rugby Challenge 4","slow;status-playable;online-broken;UE4","playable","2022-10-06 12:45:53.000" +"01006EC00F2CC000","Ruiner","status-playable;UE4","playable","2022-10-03 14:11:33.000" +"010074F00DE4A000","Run the Fan","status-playable","playable","2021-02-27 13:36:28.000" +"","Runbow","online;status-playable","playable","2021-01-08 22:47:44.000" +"0100D37009B8A000","Runbow Deluxe Edition","status-playable;online-broken","playable","2022-08-12 12:20:25.000" +"010081C0191D8000","Rune Factory 3 Special","status-playable","playable","2023-10-15 08:32:49.000" +"010051D00E3A4000","Rune Factory 4 Special","status-ingame;32-bit;crash;nvdec","ingame","2023-05-06 08:49:17.000" +"010014D01216E000","Rune Factory 5 (JP)","gpu;status-ingame","ingame","2021-06-01 12:00:36.000" +"0100B8B012ECA000","S.N.I.P.E.R. Hunter Scope","status-playable","playable","2021-04-19 15:58:09.000" +"","SAMURAI SHODOWN","UE4;crash;nvdec;status-menus","menus","2020-09-06 02:17:00.000" +"0100F6800F48E000","SAMURAI SHOWDOWN NEOGEO COLLECTION","nvdec;status-playable","playable","2021-06-14 17:12:56.000" +"0100829018568000","SD GUNDAM BATTLE ALLIANCE Demo","audio;status-ingame;crash;demo","ingame","2022-08-01 23:01:20.000" +"010055700CEA8000","SD GUNDAM G GENERATION CROSS RAYS","status-playable;nvdec","playable","2022-09-15 20:58:44.000" +"","SD GUNDAM G GENERATION CROSS RAYS PREMIUM G SOUND EDITION - 010022900D3EC00","status-playable;nvdec","playable","2022-09-15 20:45:57.000" +"0100A8900AF04000","SEGA AGES Alex Kidd in Miracle World","online;status-playable","playable","2021-05-05 16:35:47.000" +"01001E600AF08000","SEGA AGES Gain Ground","online;status-playable","playable","2021-05-05 16:16:27.000" +"","SEGA AGES OUTRUN","status-playable","playable","2021-01-11 13:13:59.000" +"","SEGA AGES PHANTASY STAR","status-playable","playable","2021-01-11 12:49:48.000" +"01005F600CB0E000","SEGA AGES Puyo Puyo","online;status-playable","playable","2021-05-05 16:09:28.000" +"01000D200C614000","SEGA AGES SONIC THE HEDGEHOG 2","status-playable","playable","2022-09-21 20:26:35.000" +"","SEGA AGES SPACE HARRIER","status-playable","playable","2021-01-11 12:57:40.000" +"01001E700AC60000","SEGA AGES Wonder Boy: Monster Land","online;status-playable","playable","2021-05-05 16:28:25.000" +"010051F00AC5E000","SEGA Ages: Sonic The Hedgehog","slow;status-playable","playable","2023-03-05 20:16:31.000" +"010054400D2E6000","SEGA Ages: Virtua Racing","status-playable;online-broken","playable","2023-01-29 17:08:39.000" +"0100B3C014BDA000","SEGA Genesis - Nintendo Switch Online","status-nothing;crash;regression","nothing","2022-04-11 07:27:21.000" +"","SEGA Mega Drive Classics","online;status-playable","playable","2021-01-05 11:08:00.000" +"0100D1800D902000","SENRAN KAGURA Peach Ball","status-playable","playable","2021-06-03 15:12:10.000" +"","SENRAN KAGURA Reflexions","status-playable","playable","2020-03-23 19:15:23.000" +"","SENTRY","status-playable","playable","2020-12-13 12:00:24.000" +"","SHIFT QUANTUM","UE4;crash;status-ingame","ingame","2020-11-06 21:54:08.000" +"0100B16009C10000","SINNER: Sacrifice for Redemption","status-playable;nvdec;UE4;vulkan-backend-bug","playable","2022-08-12 20:37:33.000" +"0100A0A00D1AA000","SKYHILL","status-playable","playable","2021-03-05 15:19:11.000" +"","SKYPEACE","status-playable","playable","2020-05-29 14:14:30.000" +"01002AA00C974000","SMASHING THE BATTLE","status-playable","playable","2021-06-11 15:53:57.000" +"01004AB00AEF8000","SNK 40th Anniversary Collection","status-playable","playable","2022-08-14 13:33:15.000" +"010027F00AD6C000","SNK HEROINES Tag Team Frenzy","status-playable;nvdec;online-broken;ldn-untested","playable","2022-08-14 14:19:25.000" +"","SOLDAM Drop, Connect, Erase","status-playable","playable","2020-05-30 09:18:54.000" +"01005EA01C0FC000","SONIC X SHADOW GENERATIONS","status-ingame;crash","ingame","2025-01-07 04:20:45.000" +"","SPACE ELITE FORCE","status-playable","playable","2020-11-27 15:21:05.000" +"0100EBF00E702000","STAR OCEAN First Departure R","nvdec;status-playable","playable","2021-07-05 19:29:16.000" +"010065301A2E0000","STAR OCEAN The Second Story R","status-ingame;crash","ingame","2024-06-01 02:39:59.000" +"010040701B948000","STAR WARS Battlefront Classic Collection","gpu;status-ingame;vulkan","ingame","2024-07-12 19:24:21.000" +"0100BD100FFBE000","STAR WARS Episode I: Racer","slow;status-playable;nvdec","playable","2022-10-03 16:08:36.000" +"0100BB500EACA000","STAR WARS Jedi Knight II Jedi Outcast","gpu;status-ingame","ingame","2022-09-15 22:51:00.000" +"0100153014544000","STAR WARS: The Force Unleashed","status-playable","playable","2024-05-01 17:41:28.000" +"0100616009082000","STAY","crash;services;status-boots","boots","2021-04-23 14:24:52.000" +"0100B61009C60000","STAY COOL, KOBAYASHI-SAN! A RIVER RANSOM STORY","status-playable","playable","2021-01-26 17:37:28.000" +"0100CB400E9BC000","STEINS;GATE: My Darling's Embrace","status-playable;nvdec","playable","2022-11-20 16:48:34.000" +"0100BC800EDA2000","STELLATUM","gpu;status-playable","playable","2021-03-07 16:30:23.000" +"010070D00F640000","STONE","status-playable;UE4","playable","2022-09-30 11:53:32.000" +"010017301007E000","STORY OF SEASONS Pioneers of Olive [ 牧場物語 オリーブタウンと希望の大地 ]","status-playable","playable","2021-03-18 11:42:19.000" +"0100FF5005B76000","STRIKERS1945 for Nintendo Switch","32-bit;status-playable","playable","2021-06-03 19:35:04.000" +"0100720008ED2000","STRIKERS1945II for Nintendo Switch","32-bit;status-playable","playable","2021-06-03 19:43:00.000" +"0100C5500E7AE000","STURMWIND EX","audio;32-bit;status-playable","playable","2022-09-16 12:01:39.000" +"0100B87017D94000","SUPER BOMBERMAN R 2","deadlock;status-boots","boots","2023-09-29 13:19:51.000" +"0100E5E00C464000","SUPER DRAGON BALL HEROES WORLD MISSION","status-playable;nvdec;online-broken","playable","2022-08-17 12:56:30.000" +"","SUPER ROBOT WARS T","online;status-playable","playable","2021-03-25 11:00:40.000" +"","SUPER ROBOT WARS V","online;status-playable","playable","2020-06-23 12:56:37.000" +"","SUPER ROBOT WARS X","online;status-playable","playable","2020-08-05 19:18:51.000" +"01005AB01119C000","SUSHI REVERSI","status-playable","playable","2021-06-11 19:26:58.000" +"01005DF00DC26000","SWORD ART ONLINE: FATAL BULLET COMPLETE EDITION","UE4;gpu;online;status-ingame","ingame","2021-06-09 16:58:50.000" +"01001B600D1D6000","SWORD ART ONLINE: Hollow Realization Deluxe Edition","status-playable;nvdec","playable","2022-08-19 19:19:15.000" +"","SYNAPTIC DRIVE","online;status-playable","playable","2020-09-07 13:44:05.000" +"01009BF00E7D2000","SYNTHETIK: Ultimate","gpu;status-ingame;crash","ingame","2022-08-30 03:19:25.000" +"0100A51013530000","SaGa Frontier Remastered","status-playable;nvdec","playable","2022-11-03 13:54:56.000" +"010003A00D0B4000","SaGa SCARLET GRACE: AMBITIONS","status-playable","playable","2022-10-06 13:20:31.000" +"","Saboteur II: Avenging Angel","Needs Update;cpu;crash;status-nothing","nothing","2021-01-26 14:47:37.000" +"","Saboteur SiO","slow;status-ingame","ingame","2020-12-17 16:59:49.000" +"","Safety First!","status-playable","playable","2021-01-06 09:05:23.000" +"01008D100D43E000","Saints Row IV","status-playable;ldn-untested;LAN","playable","2023-12-04 18:33:37.000" +"0100DE600BEEE000","Saints Row: The Third - The Full Package","slow;status-playable;LAN","playable","2023-08-24 02:40:58.000" +"01007F000EB36000","Sakai and...","status-playable;nvdec","playable","2022-12-15 13:53:19.000" +"0100B1400E8FE000","Sakuna: Of Rice and Ruin","status-playable","playable","2023-07-24 13:47:13.000" +"0100BBF0122B4000","Sally Face","status-playable","playable","2022-06-06 18:41:24.000" +"","Salt And Sanctuary","status-playable","playable","2020-10-22 11:52:19.000" +"","Sam & Max Save the World","status-playable","playable","2020-12-12 13:11:51.000" +"","Samsara","status-playable","playable","2021-01-11 15:14:12.000" +"01006C600E46E000","Samurai Jack Battle Through Time","status-playable;nvdec;UE4","playable","2022-10-06 13:33:59.000" +"0100B6501A360000","Samurai Warrior","status-playable","playable","2023-02-27 18:42:38.000" +"","SamuraiAces for Nintendo Switch","32-bit;status-playable","playable","2020-11-24 20:26:55.000" +"","Sangoku Rensenki ~Otome no Heihou!~","gpu;nvdec;status-ingame","ingame","2020-10-17 19:13:14.000" +"0100A4700BC98000","Satsujin Tantei Jack the Ripper","status-playable","playable","2021-06-21 16:32:54.000" +"0100F0000869C000","Saturday Morning RPG","status-playable;nvdec","playable","2022-08-12 12:41:50.000" +"","Sausage Sports Club","gpu;status-ingame","ingame","2021-01-10 05:37:17.000" +"0100C8300FA90000","Save Koch","status-playable","playable","2022-09-26 17:06:56.000" +"010091000F72C000","Save Your Nuts","status-playable;nvdec;online-broken;UE4","playable","2022-09-27 23:12:02.000" +"","Save the Ninja Clan","status-playable","playable","2021-01-11 13:56:37.000" +"0100AA00128BA000","Saviors of Sapphire Wings & Stranger of Sword City Revisited","status-menus;crash","menus","2022-10-24 23:00:46.000" +"01001C3012912000","Say No! More","status-playable","playable","2021-05-06 13:43:34.000" +"010010A00A95E000","Sayonara Wild Hearts","status-playable","playable","2023-10-23 03:20:01.000" +"0100ACB004006000","Schlag den Star","slow;status-playable;nvdec","playable","2022-08-12 14:28:22.000" +"0100394011C30000","Scott Pilgrim vs The World: The Game","services-horizon;status-nothing;crash","nothing","2024-07-12 08:13:03.000" +"","Scribblenauts Mega Pack","nvdec;status-playable","playable","2020-12-17 22:56:14.000" +"","Scribblenauts Showdown","gpu;nvdec;status-ingame","ingame","2020-12-17 23:05:53.000" +"0100E4A00D066000","Sea King","UE4;nvdec;status-playable","playable","2021-06-04 15:49:22.000" +"0100AFE012BA2000","Sea of Solitude The Director's Cut","gpu;status-ingame","ingame","2024-07-12 18:29:29.000" +"01008C0016544000","Sea of Stars","status-playable","playable","2024-03-15 20:27:12.000" +"010036F0182C4000","Sea of Stars Demo","status-playable;demo","playable","2023-02-12 15:33:56.000" +"","SeaBed","status-playable","playable","2020-05-17 13:25:37.000" +"","Season Match Bundle - Part 1 and 2","status-playable","playable","2021-01-11 13:28:23.000" +"","Season Match Full Bundle - Parts 1, 2 and 3","status-playable","playable","2020-10-27 16:15:22.000" +"","Secret Files 3","nvdec;status-playable","playable","2020-10-24 15:32:39.000" +"010075D0101FA000","Seek Hearts","status-playable","playable","2022-11-22 15:06:26.000" +"","Seers Isle","status-playable","playable","2020-11-17 12:28:50.000" +"","Semispheres","status-playable","playable","2021-01-06 23:08:31.000" +"01009E500D29C000","Sentinels of Freedom","status-playable","playable","2021-06-14 16:42:19.000" +"010059700D4A0000","Sephirothic Stories","services;status-menus","menus","2021-11-25 08:52:17.000" +"010007D00D43A000","Serious Sam Collection","status-boots;vulkan-backend-bug","boots","2022-10-13 13:53:34.000" +"0100B2C00E4DA000","Served! A gourmet race","status-playable;nvdec","playable","2022-09-28 12:46:00.000" +"010018400C24E000","Seven Knights -Time Wanderer-","status-playable;vulkan-backend-bug","playable","2022-10-13 22:08:54.000" +"0100D6F016676000","Seven Pirates H","status-playable","playable","2024-06-03 14:54:12.000" +"","Severed","status-playable","playable","2020-12-15 21:48:48.000" +"0100D5500DA94000","Shadow Blade Reload","nvdec;status-playable","playable","2021-06-11 18:40:43.000" +"0100BE501382A000","Shadow Gangs","cpu;gpu;status-ingame;crash;regression","ingame","2024-04-29 00:07:26.000" +"0100C3A013840000","Shadow Man Remastered","gpu;status-ingame","ingame","2024-05-20 06:01:39.000" +"","Shadowgate","status-playable","playable","2021-04-24 07:32:57.000" +"0100371013B3E000","Shadowrun Returns","gpu;status-ingame;Needs Update","ingame","2022-10-04 21:32:31.000" +"01008310154C4000","Shadowrun: Dragonfall - Director's Cut","gpu;status-ingame;Needs Update","ingame","2022-10-04 20:52:18.000" +"0100C610154CA000","Shadowrun: Hong Kong - Extended Edition","gpu;status-ingame;Needs Update","ingame","2022-10-04 20:53:09.000" +"","Shadows 2: Perfidia","status-playable","playable","2020-08-07 12:43:46.000" +"","Shadows of Adam","status-playable","playable","2021-01-11 13:35:58.000" +"01002A800C064000","Shadowverse Champions Battle","status-playable","playable","2022-10-02 22:59:29.000" +"01003B90136DA000","Shadowverse: Champion’s Battle","status-nothing;crash","nothing","2023-03-06 00:31:50.000" +"0100820013612000","Shady Part of Me","status-playable","playable","2022-10-20 11:31:55.000" +"","Shakedown: Hawaii","status-playable","playable","2021-01-07 09:44:36.000" +"01008DA012EC0000","Shakes on a Plane","status-menus;crash","menus","2021-11-25 08:52:25.000" +"0100B4900E008000","Shalnor Legends: Sacred Lands","status-playable","playable","2021-06-11 14:57:11.000" +"","Shanky: The Vegan's Nightmare - 01000C00CC10000","status-playable","playable","2021-01-26 15:03:55.000" +"0100430013120000","Shantae","status-playable","playable","2021-05-21 04:53:26.000" +"0100EFD00A4FA000","Shantae and the Pirate's Curse","status-playable","playable","2024-04-29 17:21:57.000" +"","Shantae and the Seven Sirens","nvdec;status-playable","playable","2020-06-19 12:23:40.000" +"","Shantae: Half-Genie Hero Ultimate Edition","status-playable","playable","2020-06-04 20:14:20.000" +"0100ADA012370000","Shantae: Risky's Revenge - Director's Cut","status-playable","playable","2022-10-06 20:47:39.000" +"01003AB01062C000","Shaolin vs Wutang : Eastern Heroes","deadlock;status-nothing","nothing","2021-03-29 20:38:54.000" +"0100B250009B9600","Shape Of The World0","UE4;status-playable","playable","2021-03-05 16:42:28.000" +"01004F50085F2000","She Remembered Caterpillars","status-playable","playable","2022-08-12 17:45:14.000" +"01000320110C2000","She Sees Red","status-playable;nvdec","playable","2022-09-30 11:30:15.000" +"01009EB004CB0000","Shelter Generations","status-playable","playable","2021-06-04 16:52:39.000" +"010020F014DBE000","Sherlock Holmes: The Devil's Daughter","gpu;status-ingame","ingame","2022-07-11 00:07:26.000" +"","Shift Happens","status-playable","playable","2021-01-05 21:24:18.000" +"01000750084B2000","Shiftlings","nvdec;status-playable","playable","2021-03-04 13:49:54.000" +"010045800ED1E000","Shin Megami Tensei III NOCTURNE HD REMASTER","gpu;status-ingame;Needs Update","ingame","2022-11-03 19:57:01.000" +"01003B0012DC2000","Shin Megami Tensei III Nocturne HD Remaster","status-playable","playable","2022-11-03 22:53:27.000" +"010063B012DC6000","Shin Megami Tensei V","status-playable;UE4","playable","2024-02-21 06:30:07.000" +"010069C01AB82000","Shin Megami Tensei V: Vengeance","gpu;status-ingame;vulkan-backend-bug","ingame","2024-07-14 11:28:24.000" +"01009050133B4000","Shing! (サムライフォース:斬!)","status-playable;nvdec","playable","2022-10-22 00:48:54.000" +"01009A5009A9E000","Shining Resonance Refrain","status-playable;nvdec","playable","2022-08-12 18:03:01.000" +"01004EE0104F6000","Shinsekai Into the Depths","status-playable","playable","2022-09-28 14:07:51.000" +"0100C2F00A568000","Shio","status-playable","playable","2021-02-22 16:25:09.000" +"","Shipped","status-playable","playable","2020-11-21 14:22:32.000" +"01000E800FCB4000","Ships","status-playable","playable","2021-06-11 16:14:37.000" +"01007430122D0000","Shiren the Wanderer: The Tower of Fortune and the Dice of Fate","status-playable;nvdec","playable","2022-10-20 11:44:36.000" +"","Shiritsu Berubara Gakuen ~Versailles no Bara Re*imagination~","cpu;crash;status-boots","boots","2020-09-27 19:01:25.000" +"01000244016BAE00","Shiro0","gpu;status-ingame","ingame","2024-01-13 08:54:39.000" +"","Shoot 1UP DX","status-playable","playable","2020-12-13 12:32:47.000" +"","Shovel Knight: Specter of Torment","status-playable","playable","2020-05-30 08:34:17.000" +"","Shovel Knight: Treasure Trove","status-playable","playable","2021-02-14 18:24:39.000" +"","Shred!2 - Freeride MTB","status-playable","playable","2020-05-30 14:34:09.000" +"","Shu","nvdec;status-playable","playable","2020-05-30 09:08:59.000" +"","Shut Eye","status-playable","playable","2020-07-23 18:08:35.000" +"010044500C182000","Sid Meier's Civilization VI","status-playable;ldn-untested","playable","2024-04-08 16:03:40.000" +"01007FC00B674000","Sigi - A Fart for Melusina","status-playable","playable","2021-02-22 16:46:58.000" +"0100F1400B0D6000","Silence","nvdec;status-playable","playable","2021-06-03 14:46:17.000" +"","Silent World","status-playable","playable","2020-08-28 13:45:13.000" +"010045500DFE2000","Silk","nvdec;status-playable","playable","2021-06-10 15:34:37.000" +"010016D00A964000","SilverStarChess","status-playable","playable","2021-05-06 15:25:57.000" +"0100E8C019B36000","Simona's Requiem","gpu;status-ingame","ingame","2023-02-21 18:29:19.000" +"01006FE010438000","Sin Slayers","status-playable","playable","2022-10-20 11:53:52.000" +"01002820036A8000","Sine Mora EX","gpu;status-ingame;online-broken","ingame","2022-08-12 19:36:18.000" +"","Singled Out","online;status-playable","playable","2020-08-03 13:06:18.000" +"","Sinless","nvdec;status-playable","playable","2020-08-09 20:18:55.000" +"0100E9201410E000","Sir Lovelot","status-playable","playable","2021-04-05 16:21:46.000" +"0100134011E32000","Skate City","status-playable","playable","2022-11-04 11:37:39.000" +"","Skee-Ball","status-playable","playable","2020-11-16 04:44:07.000" +"01001A900F862000","Skelattack","status-playable","playable","2021-06-09 15:26:26.000" +"01008E700F952000","Skelittle: A Giant Party!!","status-playable","playable","2021-06-09 19:08:34.000" +"","Skelly Selest","status-playable","playable","2020-05-30 15:38:18.000" +"","Skies of Fury","status-playable","playable","2020-05-30 16:40:54.000" +"010046B00DE62000","Skullgirls: 2nd Encore","status-playable","playable","2022-09-15 21:21:25.000" +"","Skulls of the Shogun: Bone-a-fide Edition","status-playable","playable","2020-08-31 18:58:12.000" +"0100D7B011654000","Skully","status-playable;nvdec;UE4","playable","2022-10-06 13:52:59.000" +"010083100B5CA000","Sky Force Anniversary","status-playable;online-broken","playable","2022-08-12 20:50:07.000" +"","Sky Force Reloaded","status-playable","playable","2021-01-04 20:06:57.000" +"010003F00CC98000","Sky Gamblers - Afterburner","gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug","ingame","2022-08-12 21:04:55.000" +"010093D00AC38000","Sky Gamblers: Storm Raiders","gpu;audio;status-ingame;32-bit","ingame","2022-08-12 21:13:36.000" +"010068200E96E000","Sky Gamblers: Storm Raiders 2","gpu;status-ingame","ingame","2022-09-13 12:24:04.000" +"","Sky Racket","status-playable","playable","2020-09-07 12:22:24.000" +"0100DDB004F30000","Sky Ride","status-playable","playable","2021-02-22 16:53:07.000" +"","Sky Rogue","status-playable","playable","2020-05-30 08:26:28.000" +"0100C52011460000","Sky: Children of the Light","cpu;status-nothing;online-broken","nothing","2023-02-23 10:57:10.000" +"","SkyScrappers","status-playable","playable","2020-05-28 22:11:25.000" +"","SkyTime","slow;status-ingame","ingame","2020-05-30 09:24:51.000" +"010041C01014E000","Skybolt Zack","status-playable","playable","2021-04-12 18:28:00.000" +"","Skylanders Imaginators","crash;services;status-boots","boots","2020-05-30 18:49:18.000" +"01003AD00DEAE000","SlabWell","status-playable","playable","2021-02-22 17:02:51.000" +"","Slain","status-playable","playable","2020-05-29 14:26:16.000" +"0100BB100AF4C000","Slain Back from Hell","status-playable","playable","2022-08-12 23:36:19.000" +"010026300BA4A000","Slay the Spire","status-playable","playable","2023-01-20 15:09:26.000" +"0100501006494000","Slayaway Camp: Butcher's Cut","status-playable;opengl-backend-bug","playable","2022-08-12 23:44:05.000" +"01004E900EDDA000","Slayin 2","gpu;status-ingame","ingame","2024-04-19 16:15:26.000" +"01004AC0081DC000","Sleep Tight","gpu;status-ingame;UE4","ingame","2022-08-13 00:17:32.000" +"0100F4500AA4E000","Slice Dice & Rice","online;status-playable","playable","2021-02-22 17:44:23.000" +"010010D011E1C000","Slide Stars","status-menus;crash","menus","2021-11-25 08:53:43.000" +"","Slime-san","status-playable","playable","2020-05-30 16:15:12.000" +"","Slime-san Superslime Edition","status-playable","playable","2020-05-30 19:08:08.000" +"0100C9100B06A000","SmileBASIC 4","gpu;status-menus","menus","2021-07-29 17:35:59.000" +"0100207007EB2000","Smoke and Sacrifice","status-playable","playable","2022-08-14 12:38:27.000" +"01009790186FE000","Smurfs Kart","status-playable","playable","2023-10-18 00:55:00.000" +"0100F2800D46E000","Snack World The Dungeon Crawl Gold","gpu;slow;status-ingame;nvdec;audout","ingame","2022-05-01 21:12:44.000" +"0100C0F0020E8000","Snake Pass","status-playable;nvdec;UE4","playable","2022-01-03 04:31:52.000" +"010075A00BA14000","Sniper Elite 3 Ultimate Edition","status-playable;ldn-untested","playable","2024-04-18 07:47:49.000" +"010007B010FCC000","Sniper Elite 4","gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug","ingame","2024-06-18 17:53:15.000" +"0100BB000A3AA000","Sniper Elite V2 Remastered","slow;status-ingame;nvdec;online-broken;ldn-untested","ingame","2022-08-14 13:23:13.000" +"0100704000B3A000","Snipperclips","status-playable","playable","2022-12-05 12:44:55.000" +"01008E20047DC000","Snipperclips Plus","status-playable","playable","2023-02-14 20:20:13.000" +"01008DA00CBBA000","Snooker 19","status-playable;nvdec;online-broken;UE4","playable","2022-09-11 17:43:22.000" +"010045300516E000","Snow Moto Racing Freedom","gpu;status-ingame;vulkan-backend-bug","ingame","2022-08-15 16:05:14.000" +"","SnowRunner - 0100FBD13AB6000","services;status-boots;crash","boots","2023-10-07 00:01:16.000" +"0100BE200C34A000","Snowboarding the Next Phase","nvdec;status-playable","playable","2021-02-23 12:56:58.000" +"010017B012AFC000","Soccer Club Life: Playing Manager","gpu;status-ingame","ingame","2022-10-25 11:59:22.000" +"0100B5000E05C000","Soccer Pinball","UE4;gpu;status-ingame","ingame","2021-06-15 20:56:51.000" +"","Soccer Slammers","status-playable","playable","2020-05-30 07:48:14.000" +"010095C00F9DE000","Soccer, Tactics & Glory","gpu;status-ingame","ingame","2022-09-26 17:15:58.000" +"0100590009C38000","SolDivide for Nintendo Switch","32-bit;status-playable","playable","2021-06-09 14:13:03.000" +"010008600D1AC000","Solo: Islands of the Heart","gpu;status-ingame;nvdec","ingame","2022-09-11 17:54:43.000" +"01009EE00E91E000","Some Distant Memory","status-playable","playable","2022-09-15 21:48:19.000" +"01004F401BEBE000","Song of Nunu: A League of Legends Story","status-ingame","ingame","2024-07-12 18:53:44.000" +"0100E5400BF94000","Songbird Symphony","status-playable","playable","2021-02-27 02:44:04.000" +"","Songbringer","status-playable","playable","2020-06-22 10:42:02.000" +"0000000000000000","Sonic 1 (2013)","status-ingame;crash;homebrew","ingame","2024-04-06 18:31:20.000" +"0000000000000000","Sonic 2 (2013)","status-ingame;crash;homebrew","ingame","2024-04-01 16:25:30.000" +"0000000000000000","Sonic A.I.R","status-ingame;homebrew","ingame","2024-04-01 16:25:32.000" +"0000000000000000","Sonic CD","status-ingame;crash;homebrew","ingame","2024-04-01 16:25:31.000" +"010040E0116B8000","Sonic Colors Ultimate [010040E0116B8000]","status-playable","playable","2022-11-12 21:24:26.000" +"01001270012B6000","Sonic Forces","status-playable","playable","2024-07-28 13:11:21.000" +"01004AD014BF0000","Sonic Frontiers","gpu;deadlock;status-ingame;amd-vendor-bug;intel-vendor-bug","ingame","2024-09-05 09:18:53.000" +"01009AA000FAA000","Sonic Mania","status-playable","playable","2020-06-08 17:30:57.000" +"01009AA000FAA000","Sonic Mania Plus","status-playable","playable","2022-01-16 04:09:11.000" +"01008F701C074000","Sonic Superstars","gpu;status-ingame;nvdec","ingame","2023-10-28 17:48:07.000" +"010088801C150000","Sonic Superstars Digital Art Book with Mini Digital Soundtrack","status-playable","playable","2024-08-20 13:26:56.000" +"","Soul Axiom Rebooted","nvdec;slow;status-ingame","ingame","2020-09-04 12:41:01.000" +"","Soul Searching","status-playable","playable","2020-07-09 18:39:07.000" +"01008F2005154000","South Park: The Fractured But Whole","slow;status-playable;online-broken","playable","2024-07-08 17:47:28.000" +"","Space Blaze","status-playable","playable","2020-08-30 16:18:05.000" +"","Space Cows","UE4;crash;status-menus","menus","2020-06-15 11:33:20.000" +"010047B010260000","Space Pioneer","status-playable","playable","2022-10-20 12:24:37.000" +"010010A009830000","Space Ribbon","status-playable","playable","2022-08-15 17:17:10.000" +"0000000000000000","SpaceCadetPinball","status-ingame;homebrew","ingame","2024-04-18 19:30:04.000" +"0100D9B0041CE000","Spacecats with Lasers","status-playable","playable","2022-08-15 17:22:44.000" +"","Spaceland","status-playable","playable","2020-11-01 14:31:56.000" +"","Sparkle 2","status-playable","playable","2020-10-19 11:51:39.000" +"01000DC007E90000","Sparkle Unleashed","status-playable","playable","2021-06-03 14:52:15.000" +"","Sparkle ZERO","gpu;slow;status-ingame","ingame","2020-03-23 18:19:18.000" +"01007ED00C032000","Sparklite","status-playable","playable","2022-08-06 11:35:41.000" +"0100E6A009A26000","Spartan","UE4;nvdec;status-playable","playable","2021-03-05 15:53:19.000" +"","Speaking Simulator","status-playable","playable","2020-10-08 13:00:39.000" +"01008B000A5AE000","Spectrum","status-playable","playable","2022-08-16 11:15:59.000" +"0100F18010BA0000","Speed 3: Grand Prix","status-playable;UE4","playable","2022-10-20 12:32:31.000" +"","Speed Brawl","slow;status-playable","playable","2020-09-18 22:08:16.000" +"01000540139F6000","Speed Limit","gpu;status-ingame","ingame","2022-09-02 18:37:40.000" +"010061F013A0E000","Speed Truck Racing","status-playable","playable","2022-10-20 12:57:04.000" +"0100E74007EAC000","Spellspire","status-playable","playable","2022-08-16 11:21:21.000" +"010021F004270000","Spelunker Party!","services;status-boots","boots","2022-08-16 11:25:49.000" +"0100710013ABA000","Spelunky","status-playable","playable","2021-11-20 17:45:03.000" +"0100BD500BA94000","Sphinx and the Cursed Mummy™","gpu;status-ingame;32-bit;opengl","ingame","2024-05-20 06:00:51.000" +"","Spider Solitaire","status-playable","playable","2020-12-16 16:19:30.000" +"010076D0122A8000","Spinch","status-playable","playable","2024-07-12 19:02:10.000" +"01001E40136FE000","Spinny's journey","status-ingame;crash","ingame","2021-11-30 03:39:44.000" +"","Spiral Splatter","status-playable","playable","2020-06-04 14:03:57.000" +"","Spirit Hunter: NG","32-bit;status-playable","playable","2020-12-17 20:38:47.000" +"","Spirit Roots","nvdec;status-playable","playable","2020-07-10 13:33:32.000" +"01005E101122E000","Spirit of the North","status-playable;UE4","playable","2022-09-30 11:40:47.000" +"01009D60080B4000","SpiritSphere DX","status-playable","playable","2021-07-03 23:37:49.000" +"0100BD400DC52000","Spiritfarer","gpu;status-ingame","ingame","2022-10-06 16:31:38.000" +"010042700E3FC000","Spitlings","status-playable;online-broken","playable","2022-10-06 16:42:39.000" +"01003BC0000A0000","Splatoon 2","status-playable;ldn-works;LAN","playable","2024-07-12 19:11:15.000" +"0100C2500FC20000","Splatoon 3","status-playable;ldn-works;opengl-backend-bug;LAN;amd-vendor-bug","playable","2024-08-04 23:49:11.000" +"0100BA0018500000","Splatoon 3: Splatfest World Premiere","gpu;status-ingame;online-broken;demo","ingame","2022-09-19 03:17:12.000" +"01009FB0172F4000","SpongeBob SquarePants The Cosmic Shake","gpu;status-ingame;UE4","ingame","2023-08-01 19:29:53.000" +"010062800D39C000","SpongeBob SquarePants: Battle for Bikini Bottom - Rehydrated","status-playable;online-broken;UE4;ldn-broken;vulkan-backend-bug","playable","2023-08-01 19:29:34.000" +"010097C01336A000","Spooky Chase","status-playable","playable","2022-11-04 12:17:44.000" +"0100C6100D75E000","Spooky Ghosts Dot Com","status-playable","playable","2021-06-15 15:16:11.000" +"0100DE9005170000","Sports Party","nvdec;status-playable","playable","2021-03-05 13:40:42.000" +"0100E04009BD4000","Spot The Difference","status-playable","playable","2022-08-16 11:49:52.000" +"010052100D1B4000","Spot the Differences: Party!","status-playable","playable","2022-08-16 11:55:26.000" +"01000E6015350000","Spy Alarm","services;status-ingame","ingame","2022-12-09 10:12:51.000" +"01005D701264A000","SpyHack","status-playable","playable","2021-04-15 10:53:51.000" +"","Spyro Reignited Trilogy","Needs More Attention;UE4;crash;gpu;nvdec;status-menus","menus","2021-01-22 13:01:56.000" +"010077B00E046000","Spyro Reignited Trilogy","status-playable;nvdec;UE4","playable","2022-09-11 18:38:33.000" +"","Squeakers","status-playable","playable","2020-12-13 12:13:05.000" +"","Squidgies Takeover","status-playable","playable","2020-07-20 22:28:08.000" +"","Squidlit","status-playable","playable","2020-08-06 12:38:32.000" +"","Star Renegades","nvdec;status-playable","playable","2020-12-11 12:19:23.000" +"","Star Story: The Horizon Escape","status-playable","playable","2020-08-11 22:31:38.000" +"01009DF015776000","Star Trek Prodigy: Supernova","status-playable;nvdec;UE4;opengl-backend-bug","playable","2022-10-14 10:18:50.000" +"0100854015868000","Star Wars - Knights Of The Old Republic","gpu;deadlock;status-boots","boots","2024-02-12 10:13:51.000" +"01008CA00FAE8000","Star Wars Jedi Knight: Jedi Academy","gpu;status-boots","boots","2021-06-16 12:35:30.000" +"0100FA10115F8000","Star Wars: Republic Commando","gpu;status-ingame;32-bit","ingame","2023-10-31 15:57:17.000" +"01006DA00DEAC000","Star Wars™ Pinball","status-playable;online-broken","playable","2022-09-11 18:53:31.000" +"01005EB00EA10000","Star-Crossed Myth - The Department of Wishes","gpu;status-ingame","ingame","2021-06-04 19:34:36.000" +"0100E6B0115FC000","Star99","status-menus;online","menus","2021-11-26 14:18:51.000" +"01002100137BA000","Stardash","status-playable","playable","2021-01-21 16:31:19.000" +"0100E65002BB8000","Stardew Valley","status-playable;online-broken;ldn-untested","playable","2024-02-14 03:11:19.000" +"01002CC003FE6000","Starlink: Battle for Atlas","services-horizon;status-nothing;crash;Needs Update","nothing","2024-05-05 17:25:11.000" +"","Starlit Adventures Golden Stars","status-playable","playable","2020-11-21 12:14:43.000" +"","Starship Avenger Operation: Take Back Earth","status-playable","playable","2021-01-12 15:52:55.000" +"","State of Anarchy: Master of Mayhem","nvdec;status-playable","playable","2021-01-12 19:00:05.000" +"","State of Mind","UE4;crash;status-boots","boots","2020-06-22 22:17:50.000" +"01008010118CC000","Steam Prison","nvdec;status-playable","playable","2021-04-01 15:34:11.000" +"0100AE100DAFA000","Steam Tactics","status-playable","playable","2022-10-06 16:53:45.000" +"01009320084A4000","SteamWorld Dig","status-playable","playable","2024-08-19 12:12:23.000" +"0100CA9002322000","SteamWorld Dig 2","status-playable","playable","2022-12-21 19:25:42.000" +"","SteamWorld Quest","nvdec;status-playable","playable","2020-11-09 13:10:04.000" +"","Steamburg","status-playable","playable","2021-01-13 08:42:01.000" +"01001C6014772000","Steel Assault","status-playable","playable","2022-12-06 14:48:30.000" +"","Steins;Gate Elite","status-playable","playable","2020-08-04 07:33:32.000" +"01002DE01043E000","Stela","UE4;status-playable","playable","2021-06-15 13:28:34.000" +"01005A700C954000","Stellar Interface","status-playable","playable","2022-10-20 13:44:33.000" +"","Steredenn","status-playable","playable","2021-01-13 09:19:42.000" +"0100AE0006474000","Stern Pinball Arcade","status-playable","playable","2022-08-16 14:24:41.000" +"","Stikbold! A Dodgeball Adventure DELUXE","status-playable","playable","2021-01-11 20:12:54.000" +"010077B014518000","Stitchy in Tooki Trouble","status-playable","playable","2021-05-06 16:25:53.000" +"010074400F6A8000","Stories Untold","status-playable;nvdec","playable","2022-12-22 01:08:46.000" +"010040D00BCF4000","Storm Boy","status-playable","playable","2022-10-20 14:15:06.000" +"0100B2300B932000","Storm in a Teacup","gpu;status-ingame","ingame","2021-11-06 02:03:19.000" +"0100ED400EEC2000","Story of Seasons: Friends of Mineral Town","status-playable","playable","2022-10-03 16:40:31.000" +"","Story of a Gladiator","status-playable","playable","2020-07-29 15:08:18.000" +"010078D00E8F4000","Stranded Sails: Explorers of the Cursed Islands - 010078D00E8F4000","slow;status-playable;nvdec;UE4","playable","2022-09-16 11:58:38.000" +"01000A6013F86000","Strange Field Football","status-playable","playable","2022-11-04 12:25:57.000" +"","Stranger Things 3: The Game","status-playable","playable","2021-01-11 17:44:09.000" +"0100D7E011C64000","Strawberry Vinegar","status-playable;nvdec","playable","2022-12-05 16:25:40.000" +"010075101EF84000","Stray","status-ingame;crash","ingame","2025-01-07 04:03:00.000" +"0100024008310000","Street Fighter 30th Anniversary Collection","status-playable;online-broken;ldn-partial","playable","2022-08-20 16:50:47.000" +"010012400D202000","Street Outlaws: The List","nvdec;status-playable","playable","2021-06-11 12:15:32.000" +"","Street Power Soccer","UE4;crash;status-boots","boots","2020-11-21 12:28:57.000" +"","Streets of Rage 4","nvdec;online;status-playable","playable","2020-07-07 21:21:22.000" +"0100BDE012928000","Strife: Veteran Edition","gpu;status-ingame","ingame","2022-01-15 05:10:42.000" +"010039100DACC000","Strike Force - War on Terror","status-menus;crash;Needs Update","menus","2021-11-24 08:08:20.000" +"010072500D52E000","Strike Suit Zero: Director's Cut","crash;status-boots","boots","2021-04-23 17:15:14.000" +"","StrikeForce Kitty","nvdec;status-playable","playable","2020-07-29 16:22:15.000" +"","Struggling","status-playable","playable","2020-10-15 20:37:03.000" +"0100AF000B4AE000","Stunt Kite Party","nvdec;status-playable","playable","2021-01-25 17:16:56.000" +"0100E6400BCE8000","Sub Level Zero: Redux","status-playable","playable","2022-09-16 12:30:03.000" +"","Subarashiki Kono Sekai -Final Remix-","services;slow;status-ingame","ingame","2020-02-10 16:21:51.000" +"010001400E474000","Subdivision Infinity DX","UE4;crash;status-boots","boots","2021-03-03 14:26:46.000" +"0100EDA00D866000","Submerged","status-playable;nvdec;UE4;vulkan-backend-bug","playable","2022-08-16 15:17:01.000" +"0100429011144000","Subnautica","status-playable;vulkan-backend-bug","playable","2022-11-04 13:07:29.000" +"010014C011146000","Subnautica Below Zero","status-playable","playable","2022-12-23 14:15:13.000" +"0100BF9012AC6000","Suguru Nature","crash;status-ingame","ingame","2021-07-29 11:36:27.000" +"01005CD00A2A2000","Suicide Guy","status-playable","playable","2021-01-26 13:13:54.000" +"0100DE000C2E4000","Suicide Guy: Sleepin' Deeply","status-ingame;Needs More Attention","ingame","2022-09-20 23:45:25.000" +"01003D50126A4000","Sumire","status-playable","playable","2022-11-12 13:40:43.000" +"01004E500DB9E000","Summer Sweetheart","status-playable;nvdec","playable","2022-09-16 12:51:46.000" +"0100A130109B2000","Summer in Mara","nvdec;status-playable","playable","2021-03-06 14:10:38.000" +"0100BFE014476000","Sunblaze","status-playable","playable","2022-11-12 13:59:23.000" +"01002D3007962000","Sundered: Eldritch Edition","gpu;status-ingame","ingame","2021-06-07 11:46:00.000" +"0100F7000464A000","Super Beat Sports","status-playable;ldn-untested","playable","2022-08-16 16:05:50.000" +"","Super Blood Hockey","status-playable","playable","2020-12-11 20:01:41.000" +"01007AD00013E000","Super Bomberman R","status-playable;nvdec;online-broken;ldn-works","playable","2022-08-16 19:19:14.000" +"0100D9B00DB5E000","Super Cane Magic ZERO","status-playable","playable","2022-09-12 15:33:46.000" +"010065F004E5E000","Super Chariot","status-playable","playable","2021-06-03 13:19:01.000" +"010023100B19A000","Super Dungeon Tactics","status-playable","playable","2022-10-06 17:40:40.000" +"010056800B534000","Super Inefficient Golf","status-playable;UE4","playable","2022-08-17 15:53:45.000" +"","Super Jumpy Ball","status-playable","playable","2020-07-04 18:40:36.000" +"0100196009998000","Super Kickers League","status-playable","playable","2021-01-26 13:36:48.000" +"01003FB00C5A8000","Super Kirby Clash","status-playable;ldn-works","playable","2024-07-30 18:21:55.000" +"010000D00F81A000","Super Korotama","status-playable","playable","2021-06-06 19:06:22.000" +"01003E300FCAE000","Super Loop Drive","status-playable;nvdec;UE4","playable","2022-09-22 10:58:05.000" +"010049900F546000","Super Mario 3D All-Stars","services-horizon;slow;status-ingame;vulkan;amd-vendor-bug","ingame","2024-05-07 02:38:16.000" +"010028600EBDA000","Super Mario 3D World + Bowser's Fury","status-playable;ldn-works","playable","2024-07-31 10:45:37.000" +"054507E0B7552000","Super Mario 64","status-ingame;homebrew","ingame","2024-03-20 16:57:27.000" +"0100277011F1A000","Super Mario Bros. 35","status-menus;online-broken","menus","2022-08-07 16:27:25.000" +"010015100B514000","Super Mario Bros. Wonder","status-playable;amd-vendor-bug","playable","2024-09-06 13:21:21.000" +"01009B90006DC000","Super Mario Maker 2","status-playable;online-broken;ldn-broken","playable","2024-08-25 11:05:19.000" +"0100000000010000","Super Mario Odyssey","status-playable;nvdec;intel-vendor-bug;mac-bug","playable","2024-08-25 01:32:34.000" +"010036B0034E4000","Super Mario Party","gpu;status-ingame;Needs Update;ldn-works","ingame","2024-06-21 05:10:16.000" +"0100BC0018138000","Super Mario RPG","gpu;audio;status-ingame;nvdec","ingame","2024-06-19 17:43:42.000" +"0000000000000000","Super Mario World","status-boots;homebrew","boots","2024-06-13 01:40:31.000" +"","Super Meat Boy","services;status-playable","playable","2020-04-02 23:10:07.000" +"01009C200D60E000","Super Meat Boy Forever","gpu;status-boots","boots","2021-04-26 14:25:39.000" +"","Super Mega Space Blaster Special Turbo","online;status-playable","playable","2020-08-06 12:13:25.000" +"010031F019294000","Super Monkey Ball Banana Rumble","status-playable","playable","2024-06-28 10:39:18.000" +"0100B2A00E1E0000","Super Monkey Ball: Banana Blitz HD","status-playable;online-broken","playable","2022-09-16 13:16:25.000" +"","Super Mutant Alien Assault","status-playable","playable","2020-06-07 23:32:45.000" +"01004D600AC14000","Super Neptunia RPG","status-playable;nvdec","playable","2022-08-17 16:38:52.000" +"","Super Nintendo Entertainment System - Nintendo Switch Online","status-playable","playable","2021-01-05 00:29:48.000" +"0100284007D6C000","Super One More Jump","status-playable","playable","2022-08-17 16:47:47.000" +"01001F90122B2000","Super Punch Patrol","status-playable","playable","2024-07-12 19:49:02.000" +"0100331005E8E000","Super Putty Squad","gpu;status-ingame;32-bit","ingame","2024-04-29 15:51:54.000" +"","Super Saurio Fly","nvdec;status-playable","playable","2020-08-06 13:12:14.000" +"","Super Skelemania","status-playable","playable","2020-06-07 22:59:50.000" +"01006A800016E000","Super Smash Bros. Ultimate","gpu;status-ingame;crash;nvdec;ldn-works;intel-vendor-bug","ingame","2024-09-14 23:05:21.000" +"0100D61012270000","Super Soccer Blast","gpu;status-ingame","ingame","2022-02-16 08:39:12.000" +"0100A9300A4AE000","Super Sportmatchen","status-playable","playable","2022-08-19 12:34:40.000" +"0100FB400F54E000","Super Street: Racer","status-playable;UE4","playable","2022-09-16 13:43:14.000" +"","Super Tennis Blast - 01000500DB50000","status-playable","playable","2022-08-19 16:20:48.000" +"0100C6800D770000","Super Toy Cars 2","gpu;regression;status-ingame","ingame","2021-03-02 20:15:15.000" +"010035B00B3F0000","Super Volley Blast","status-playable","playable","2022-08-19 18:14:40.000" +"0100630010252000","SuperEpic: The Entertainment War","status-playable","playable","2022-10-13 23:02:48.000" +"0100FF60051E2000","Superbeat: Xonic EX","status-ingame;crash;nvdec","ingame","2022-08-19 18:54:40.000" +"01001A500E8B4000","Superhot","status-playable","playable","2021-05-05 19:51:30.000" +"","Superliminal","status-playable","playable","2020-09-03 13:20:50.000" +"0100C01012654000","Supermarket Shriek","status-playable","playable","2022-10-13 23:19:20.000" +"0100A6E01201C000","Supraland","status-playable;nvdec;UE4;opengl-backend-bug","playable","2022-10-14 09:49:11.000" +"010029A00AEB0000","Survive! Mr. Cube","status-playable","playable","2022-10-20 14:44:47.000" +"","Sushi Striker: The Way of Sushido","nvdec;status-playable","playable","2020-06-26 20:49:11.000" +"0100D6D00EC2C000","Sweet Witches","status-playable;nvdec","playable","2022-10-20 14:56:37.000" +"010049D00C8B0000","Swimsanity!","status-menus;online","menus","2021-11-26 14:27:16.000" +"","Sword of the Guardian","status-playable","playable","2020-07-16 12:24:39.000" +"0100E4701355C000","Sword of the Necromancer","status-ingame;crash","ingame","2022-12-10 01:28:39.000" +"01004BB00421E000","Syberia 1 & 2","status-playable","playable","2021-12-24 12:06:25.000" +"010028C003FD6000","Syberia 2","gpu;status-ingame","ingame","2022-08-24 12:43:03.000" +"0100CBE004E6C000","Syberia 3","nvdec;status-playable","playable","2021-01-25 16:15:12.000" +"","Sydney Hunter and the Curse of the Mayan","status-playable","playable","2020-06-15 12:15:57.000" +"01009E700F448000","Synergia","status-playable","playable","2021-04-06 17:58:04.000" +"","TENGAI for Nintendo Switch","32-bit;status-playable","playable","2020-11-25 19:52:26.000" +"010070C00FB56000","TERROR SQUID","status-playable;online-broken","playable","2023-10-30 22:29:29.000" +"010043700EB68000","TERRORHYTHM (TRRT)","status-playable","playable","2021-02-27 13:18:14.000" +"","TETRA for Nintendo Switch","status-playable","playable","2020-06-26 20:49:55.000" +"010040600C5CE000","TETRIS 99","gpu;status-ingame;online-broken;ldn-untested","ingame","2024-05-02 16:36:41.000" +"01003b300e4aa000","THE GRISAIA TRILOGY","status-playable","playable","2021-01-31 15:53:59.000" +"0100AC800D022000","THE LAST REMNANT Remastered","status-playable;nvdec;UE4","playable","2023-02-09 17:24:44.000" +"01005E5013862000","THE LEGEND OF HEROES: ZERO NO KISEKI KAI [英雄傳說 零之軌跡:改]","status-nothing;crash","nothing","2021-09-30 14:41:07.000" +"01001FB00E386000","THE NINJA SAVIORS Return of the Warriors","online;status-playable","playable","2021-03-25 23:48:07.000" +"010024201834A000","THEATRHYTHM FINAL BAR LINE","status-playable","playable","2023-02-19 19:58:57.000" +"010081B01777C000","THEATRHYTHM FINAL BAR LINE","status-ingame;Incomplete","ingame","2024-08-05 14:24:55.000" +"","THOTH","status-playable","playable","2020-08-05 18:35:28.000" +"010074800741A000","TINY METAL","UE4;gpu;nvdec;status-ingame","ingame","2021-03-05 17:11:57.000" +"0100B5E011920000","TOHU","slow;status-playable","playable","2021-02-08 15:40:44.000" +"01003E500F962000","TOKYO DARK - REMEMBRANCE -","nvdec;status-playable","playable","2021-06-10 20:09:49.000" +"0100CC00102B4000","TONY HAWK'S™ PRO SKATER™ 1 + 2","gpu;status-ingame;Needs Update","ingame","2024-09-24 08:18:14.000" +"01007AF011732000","TORICKY-S","deadlock;status-menus","menus","2021-11-25 08:53:36.000" +"01005E500E528000","TRANSFORMERS: BATTLEGROUNDS","online;status-playable","playable","2021-06-17 18:08:19.000" +"0100CC80140F8000","TRIANGLE STRATEGY","gpu;status-ingame;Needs Update;UE4;vulkan-backend-bug","ingame","2024-09-25 20:48:37.000" +"","TT Isle of Man","nvdec;status-playable","playable","2020-06-22 12:25:13.000" +"010000400F582000","TT Isle of Man 2","gpu;status-ingame;nvdec;online-broken","ingame","2022-09-30 22:13:05.000" +"","TTV2","status-playable","playable","2020-11-27 13:21:36.000" +"","TY the Tasmanian Tiger","32-bit;crash;nvdec;status-menus","menus","2020-12-17 21:15:00.000" +"","Table Top Racing World Tour Nitro Edition","status-playable","playable","2020-04-05 23:21:30.000" +"01000F20083A8000","Tactical Mind","status-playable","playable","2021-01-25 18:05:00.000" +"","Tactical Mind 2","status-playable","playable","2020-07-01 23:11:07.000" +"0100E12013C1A000","Tactics Ogre Reborn","status-playable;vulkan-backend-bug","playable","2024-04-09 06:21:35.000" +"01007C7006AEE000","Tactics V: ""Obsidian Brigade","status-playable","playable","2021-02-28 15:09:42.000" +"0100346017304000","Taiko Risshiden V DX","status-nothing;crash","nothing","2022-06-06 16:25:31.000" +"","Taiko no Tatsujin Rhythmic Adventure Pack","status-playable","playable","2020-12-03 07:28:26.000" +"01002C000B552000","Taiko no Tatsujin: Drum 'n' Fun!","status-playable;online-broken;ldn-broken","playable","2023-05-20 15:10:12.000" +"0100BCA0135A0000","Taiko no Tatsujin: Rhythm Festival","status-playable","playable","2023-11-13 13:16:34.000" +"010040A00EA26000","Taimumari: Complete Edition","status-playable","playable","2022-12-06 13:34:49.000" +"0100F0C011A68000","Tales from the Borderlands","status-playable;nvdec","playable","2022-10-25 18:44:14.000" +"01002C0008E52000","Tales of Vesperia: Definitive Edition","status-playable","playable","2024-09-28 03:20:47.000" +"0100408007078000","Tales of the Tiny Planet","status-playable","playable","2021-01-25 15:47:41.000" +"010012800EE3E000","Tamashii","status-playable","playable","2021-06-10 15:26:20.000" +"010008A0128C4000","Tamiku","gpu;status-ingame","ingame","2021-06-15 20:06:55.000" +"","Tangledeep","crash;status-boots","boots","2021-01-05 04:08:41.000" +"01007DB010D2C000","TaniNani","crash;kernel;status-nothing","nothing","2021-04-08 03:06:44.000" +"","Tank Mechanic Simulator","status-playable","playable","2020-12-11 15:10:45.000" +"01007A601318C000","Tanuki Justice","status-playable;opengl","playable","2023-02-21 18:28:10.000" +"01004DF007564000","Tanzia","status-playable","playable","2021-06-07 11:10:25.000" +"","Task Force Kampas","status-playable","playable","2020-11-30 14:44:15.000" +"0100B76011DAA000","Taxi Chaos","slow;status-playable;online-broken;UE4","playable","2022-10-25 19:13:00.000" +"","Tcheco in the Castle of Lucio","status-playable","playable","2020-06-27 13:35:43.000" +"010092B0091D0000","Team Sonic Racing","status-playable;online-broken;ldn-works","playable","2024-02-05 15:05:27.000" +"0100FE701475A000","Teenage Mutant Ninja Turtles: Shredder's Revenge","deadlock;status-boots;crash","boots","2024-09-28 09:31:39.000" +"01005CF01E784000","Teenage Mutant Ninja Turtles: Splintered Fate","status-playable","playable","2024-08-03 13:50:42.000" +"0100FDB0154E4000","Teenage Mutant Ninja Turtles: The Cowabunga Collection","status-playable","playable","2024-01-22 19:39:04.000" +"","Telling Lies","status-playable","playable","2020-10-23 21:14:51.000" +"0100C8B012DEA000","Temtem","status-menus;online-broken","menus","2022-12-17 17:36:11.000" +"","Tennis","status-playable","playable","2020-06-01 20:50:36.000" +"0100092006814000","Tennis World Tour","status-playable;online-broken","playable","2022-08-22 14:27:10.000" +"0100950012F66000","Tennis World Tour 2","status-playable;online-broken","playable","2022-10-14 10:43:16.000" +"01002970080AA000","Tennis in the Face","status-playable","playable","2022-08-22 14:10:54.000" +"0100E46006708000","Terraria","status-playable;online-broken","playable","2022-09-12 16:14:57.000" +"0100FBC007EAE000","Tesla vs Lovecraft","status-playable","playable","2023-11-21 06:19:36.000" +"01005C8005F34000","Teslagrad","status-playable","playable","2021-02-23 14:41:02.000" +"01006F701507A000","Tested on Humans: Escape Room","status-playable","playable","2022-11-12 14:42:52.000" +"","Testra's Escape","status-playable","playable","2020-06-03 18:21:14.000" +"","Tetsumo Party","status-playable","playable","2020-06-09 22:39:55.000" +"01008ED0087A4000","The Adventure Pals","status-playable","playable","2022-08-22 14:48:52.000" +"","The Adventures of 00 Dilly","status-playable","playable","2020-12-30 19:32:29.000" +"","The Adventures of Elena Temple","status-playable","playable","2020-06-03 23:15:35.000" +"010045A00E038000","The Alliance Alive HD Remastered","nvdec;status-playable","playable","2021-03-07 15:43:45.000" +"","The Almost Gone","status-playable","playable","2020-07-05 12:33:07.000" +"0100CD500DDAE000","The Bard's Tale ARPG: Remastered and Resnarkled","gpu;status-ingame;nvdec;online-working","ingame","2024-07-18 12:52:01.000" +"01001E50141BC000","The Battle Cats Unite!","deadlock;status-ingame","ingame","2021-12-14 21:38:34.000" +"010089600E66A000","The Big Journey","status-playable","playable","2022-09-16 14:03:08.000" +"010021C000B6A000","The Binding of Isaac: Afterbirth+","status-playable","playable","2021-04-26 14:11:56.000" +"","The Bluecoats: North & South","nvdec;status-playable","playable","2020-12-10 21:22:29.000" +"010062500BFC0000","The Book of Unwritten Tales 2","status-playable","playable","2021-06-09 14:42:53.000" +"","The Bridge","status-playable","playable","2020-06-03 13:53:26.000" +"","The Bug Butcher","status-playable","playable","2020-06-03 12:02:04.000" +"01001B40086E2000","The Bunker","status-playable;nvdec","playable","2022-09-16 14:24:05.000" +"","The Caligula Effect: Overdose","UE4;gpu;status-ingame","ingame","2021-01-04 11:07:50.000" +"010066800E9F8000","The Childs Sight","status-playable","playable","2021-06-11 19:04:56.000" +"","The Coma 2: Vicious Sisters","gpu;status-ingame","ingame","2020-06-20 12:51:51.000" +"","The Coma: Recut","status-playable","playable","2020-06-03 15:11:23.000" +"01004170113D4000","The Complex","status-playable;nvdec","playable","2022-09-28 14:35:41.000" +"01000F20102AC000","The Copper Canyon Dixie Dash","status-playable;UE4","playable","2022-09-29 11:42:29.000" +"01000850037C0000","The Count Lucanor","status-playable;nvdec","playable","2022-08-22 15:26:37.000" +"0100EBA01548E000","The Cruel King and the Great Hero","gpu;services;status-ingame","ingame","2022-12-02 07:02:08.000" +"","The Dark Crystal","status-playable","playable","2020-08-11 13:43:41.000" +"","The Darkside Detective","status-playable","playable","2020-06-03 22:16:18.000" +"01000A10041EA000","The Elder Scrolls V: Skyrim","gpu;status-ingame;crash","ingame","2024-07-14 03:21:31.000" +"","The End is Nigh","status-playable","playable","2020-06-01 11:26:45.000" +"","The Escapists 2","nvdec;status-playable","playable","2020-09-24 12:31:31.000" +"01001B700BA7C000","The Escapists: Complete Edition","status-playable","playable","2021-02-24 17:50:31.000" +"0100C2E0129A6000","The Executioner","nvdec;status-playable","playable","2021-01-23 00:31:28.000" +"01006050114D4000","The Experiment: Escape Room","gpu;status-ingame","ingame","2022-09-30 13:20:35.000" +"0100B5900DFB2000","The Eyes of Ara","status-playable","playable","2022-09-16 14:44:06.000" +"","The Fall","gpu;status-ingame","ingame","2020-05-31 23:31:16.000" +"","The Fall Part 2: Unbound","status-playable","playable","2021-11-06 02:18:08.000" +"0100CDC00789E000","The Final Station","status-playable;nvdec","playable","2022-08-22 15:54:39.000" +"010098800A1E4000","The First Tree","status-playable","playable","2021-02-24 15:51:05.000" +"0100C38004DCC000","The Flame in the Flood: Complete Edition","gpu;status-ingame;nvdec;UE4","ingame","2022-08-22 16:23:49.000" +"","The Forbidden Arts - 01007700D4AC000","status-playable","playable","2021-01-26 16:26:24.000" +"01006350148DA000","The Gardener and the Wild Vines","gpu;status-ingame","ingame","2024-04-29 16:32:10.000" +"0100B13007A6A000","The Gardens Between","status-playable","playable","2021-01-29 16:16:53.000" +"010036E00FB20000","The Great Ace Attorney Chronicles","status-playable","playable","2023-06-22 21:26:29.000" +"","The Great Perhaps","status-playable","playable","2020-09-02 15:57:04.000" +"","The Hong Kong Massacre","crash;status-ingame","ingame","2021-01-21 12:06:56.000" +"","The House of Da Vinci","status-playable","playable","2021-01-05 14:17:19.000" +"","The House of Da Vinci 2","status-playable","playable","2020-10-23 20:47:17.000" +"01008940086E0000","The Infectious Madness of Doctor Dekker","status-playable;nvdec","playable","2022-08-22 16:45:01.000" +"","The Inner World","nvdec;status-playable","playable","2020-06-03 21:22:29.000" +"","The Inner World - The Last Wind Monk","nvdec;status-playable","playable","2020-11-16 13:09:40.000" +"0100AE5003EE6000","The Jackbox Party Pack","status-playable;online-working","playable","2023-05-28 09:28:40.000" +"010015D003EE4000","The Jackbox Party Pack 2","status-playable;online-working","playable","2022-08-22 18:23:40.000" +"0100CC80013D6000","The Jackbox Party Pack 3","slow;status-playable;online-working","playable","2022-08-22 18:41:06.000" +"0100E1F003EE8000","The Jackbox Party Pack 4","status-playable;online-working","playable","2022-08-22 18:56:34.000" +"010052C00B184000","The Journey Down: Chapter One","nvdec;status-playable","playable","2021-02-24 13:32:41.000" +"01006BC00B188000","The Journey Down: Chapter Three","nvdec;status-playable","playable","2021-02-24 13:45:27.000" +"","The Journey Down: Chapter Two","nvdec;status-playable","playable","2021-02-24 13:32:13.000" +"010020500BD98000","The King's Bird","status-playable","playable","2022-08-22 19:07:46.000" +"010031B00DB34000","The Knight & the Dragon","gpu;status-ingame","ingame","2023-08-14 10:31:43.000" +"0100A4400BE74000","The LEGO Movie 2 - Videogame","status-playable","playable","2023-03-01 11:23:37.000" +"01007FC00206E000","The LEGO NINJAGO Movie Video Game","status-nothing;crash","nothing","2022-08-22 19:12:53.000" +"","The Language of Love","Needs Update;crash;status-nothing","nothing","2020-12-03 17:54:00.000" +"010079C017F5E000","The Lara Croft Collection","services-horizon;deadlock;status-nothing","nothing","2024-07-12 22:45:51.000" +"0100449011506000","The Last Campfire","status-playable","playable","2022-10-20 16:44:19.000" +"0100AAD011592000","The Last Dead End","gpu;status-ingame;UE4","ingame","2022-10-20 16:59:44.000" +"","The Legend of Dark Witch","status-playable","playable","2020-07-12 15:18:33.000" +"01001920156C2000","The Legend of Heroes: Trails from Zero","gpu;status-ingame;mac-bug","ingame","2024-09-14 21:41:41.000" +"","The Legend of Heroes: Trails of Cold Steel III","status-playable","playable","2020-12-16 10:59:18.000" +"01009B101044C000","The Legend of Heroes: Trails of Cold Steel III Demo","demo;nvdec;status-playable","playable","2021-04-23 01:07:32.000" +"0100D3C010DE8000","The Legend of Heroes: Trails of Cold Steel IV","nvdec;status-playable","playable","2021-04-23 14:01:05.000" +"01008CF01BAAC000","The Legend of Zelda Echoes of Wisdom","status-playable;nvdec;ASTC;intel-vendor-bug","playable","2024-10-01 14:11:01.000" +"01007EF00011E000","The Legend of Zelda: Breath of the Wild","gpu;status-ingame;amd-vendor-bug;mac-bug","ingame","2024-09-23 19:35:46.000" +"0100509005AF2000","The Legend of Zelda: Breath of the Wild Demo","status-ingame;demo","ingame","2022-12-24 05:02:58.000" +"01006BB00C6F0000","The Legend of Zelda: Link's Awakening","gpu;status-ingame;nvdec;mac-bug","ingame","2023-08-09 17:37:40.000" +"01002DA013484000","The Legend of Zelda: Skyward Sword HD","gpu;status-ingame","ingame","2024-06-14 16:48:29.000" +"0100F2C0115B6000","The Legend of Zelda: Tears of the Kingdom","gpu;status-ingame;amd-vendor-bug;intel-vendor-bug;mac-bug","ingame","2024-08-24 12:38:30.000" +"010064B00B95C000","The Liar Princess and the Blind Prince","audio;slow;status-playable","playable","2020-06-08 21:23:28.000" +"0100735004898000","The Lion's Song","status-playable","playable","2021-06-09 15:07:16.000" +"0100A5000D590000","The Little Acre","nvdec;status-playable","playable","2021-03-02 20:22:27.000" +"01007A700A87C000","The Long Dark","status-playable","playable","2021-02-21 14:19:52.000" +"010052B003A38000","The Long Reach","nvdec;status-playable","playable","2021-02-24 14:09:48.000" +"","The Long Return","slow;status-playable","playable","2020-12-10 21:05:10.000" +"0100CE1004E72000","The Longest Five Minutes","gpu;status-boots","boots","2023-02-19 18:33:11.000" +"0100F3D0122C2000","The Longing","gpu;status-ingame","ingame","2022-11-12 15:00:58.000" +"010085A00C5E8000","The Lord of the Rings: Adventure Card Game","status-menus;online-broken","menus","2022-09-16 15:19:32.000" +"01008A000A404000","The Lost Child","nvdec;status-playable","playable","2021-02-23 15:44:20.000" +"0100BAB00A116000","The Low Road","status-playable","playable","2021-02-26 13:23:22.000" +"0100F1B00B456000","The MISSING: J.J. Macfield and the Island of Memories","status-playable","playable","2022-08-22 19:36:18.000" +"","The Mahjong","Needs Update;crash;services;status-nothing","nothing","2021-04-01 22:06:22.000" +"","The Messenger","status-playable","playable","2020-03-22 13:51:37.000" +"0100DEC00B2BC000","The Midnight Sanctuary","status-playable;nvdec;UE4;vulkan-backend-bug","playable","2022-10-03 17:17:32.000" +"010033300AC1A000","The Mooseman","status-playable","playable","2021-02-24 12:58:57.000" +"0100496004194000","The Mummy Demastered","status-playable","playable","2021-02-23 13:11:27.000" +"","The Mystery of the Hudson Case","status-playable","playable","2020-06-01 11:03:36.000" +"01000CF0084BC000","The Next Penelope","status-playable","playable","2021-01-29 16:26:11.000" +"0100B080184BC000","The Oregon Trail","gpu;status-ingame","ingame","2022-11-25 16:11:49.000" +"0100B0101265C000","The Otterman Empire","UE4;gpu;status-ingame","ingame","2021-06-17 12:27:15.000" +"01000BC01801A000","The Outbound Ghost","status-nothing","nothing","2024-03-02 17:10:58.000" +"0100626011656000","The Outer Worlds","gpu;status-ingame;nvdec;UE4;vulkan-backend-bug;opengl-backend-bug","ingame","2022-10-03 17:55:32.000" +"","The Park","UE4;crash;gpu;status-ingame","ingame","2020-12-18 12:50:07.000" +"010050101127C000","The Persistence","nvdec;status-playable","playable","2021-06-06 19:15:40.000" +"0100CD300880E000","The Pinball Arcade","status-playable;online-broken","playable","2022-08-22 19:49:46.000" +"01006BD018B54000","The Plucky Squire","status-ingame;crash","ingame","2024-09-27 22:32:33.000" +"0100E6A00B960000","The Princess Guide","status-playable","playable","2021-02-24 14:23:34.000" +"010058A00BF1C000","The Raven Remastered","status-playable;nvdec","playable","2022-08-22 20:02:47.000" +"","The Red Strings Club","status-playable","playable","2020-06-01 10:51:18.000" +"010079400BEE0000","The Room","status-playable","playable","2021-04-14 18:57:05.000" +"010033100EE12000","The Ryuo's Work is Never Done!","status-playable","playable","2022-03-29 00:35:37.000" +"01002BA00C7CE000","The Savior's Gang","gpu;status-ingame;nvdec;UE4","ingame","2022-09-21 12:37:48.000" +"0100F3200E7CA000","The Settlers: New Allies","deadlock;status-nothing","nothing","2023-10-25 00:18:05.000" +"","The Sexy Brutale","status-playable","playable","2021-01-06 17:48:28.000" +"","The Shapeshifting Detective","nvdec;status-playable","playable","2021-01-10 13:10:49.000" +"010028D00BA1A000","The Sinking City","status-playable;nvdec;UE4","playable","2022-09-12 16:41:55.000" +"010041C00A68C000","The Spectrum Retreat","status-playable","playable","2022-10-03 18:52:40.000" +"010029300E5C4000","The Stanley Parable: Ultra Deluxe","gpu;status-ingame","ingame","2024-07-12 23:18:26.000" +"010007F00AF56000","The Station","status-playable","playable","2022-09-28 18:15:27.000" +"0100AA400A238000","The Stretchers","status-playable;nvdec;UE4","playable","2022-09-16 15:40:58.000" +"","The Survivalists","status-playable","playable","2020-10-27 15:51:13.000" +"010040D00B7CE000","The Swindle","status-playable;nvdec","playable","2022-08-22 20:53:52.000" +"","The Swords of Ditto","slow;status-ingame","ingame","2020-12-06 00:13:12.000" +"01009B300D76A000","The Tiny Bang Story","status-playable","playable","2021-03-05 15:39:05.000" +"0100C3300D8C4000","The Touryst","status-ingame;crash","ingame","2023-08-22 01:32:38.000" +"010047300EBA6000","The Tower of Beatrice","status-playable","playable","2022-09-12 16:51:42.000" +"010058000A576000","The Town of Light","gpu;status-playable","playable","2022-09-21 12:51:34.000" +"0100B0E0086F6000","The Trail: Frontier Challenge","slow;status-playable","playable","2022-08-23 15:10:51.000" +"0100EA100F516000","The Turing Test","status-playable;nvdec","playable","2022-09-21 13:24:07.000" +"010064E00ECBC000","The Unicorn Princess","status-playable","playable","2022-09-16 16:20:56.000" +"0100BCF00E970000","The Vanishing of Ethan Carter","UE4;status-playable","playable","2021-06-09 17:14:47.000" +"","The VideoKid","nvdec;status-playable","playable","2021-01-06 09:28:24.000" +"","The Voice","services;status-menus","menus","2020-07-28 20:48:49.000" +"010029200B6AA000","The Walking Dead","status-playable","playable","2021-06-04 13:10:56.000" +"010056E00B4F4000","The Walking Dead: A New Frontier","status-playable","playable","2022-09-21 13:40:48.000" +"","The Walking Dead: Season Two","status-playable","playable","2020-08-09 12:57:06.000" +"010060F00AA70000","The Walking Dead: The Final Season","status-playable;online-broken","playable","2022-08-23 17:22:32.000" +"","The Wanderer: Frankenstein's Creature","status-playable","playable","2020-07-11 12:49:51.000" +"01008B200FC6C000","The Wardrobe: Even Better Edition","status-playable","playable","2022-09-16 19:14:55.000" +"01003D100E9C6000","The Witcher 3: Wild Hunt","status-playable;nvdec;vulkan-backend-bug;amd-vendor-bug","playable","2024-02-22 12:21:51.000" +"0100B1300FF08000","The Wonderful 101: Remastered","slow;status-playable;nvdec","playable","2022-09-30 13:49:28.000" +"0100C1500B82E000","The World Ends With You -Final Remix-","status-playable;ldn-untested","playable","2022-07-09 01:11:21.000" +"0100E6200D56E000","The World Next Door","status-playable","playable","2022-09-21 14:15:23.000" +"010030700CBBC000","The friends of Ringo Ishikawa","status-playable","playable","2022-08-22 16:33:17.000" +"01005E9016BDE000","The movie The Quintessential Bride -Five Memories Spent with You-","status-playable","playable","2023-12-14 14:43:43.000" +"","Thea: The Awakening","status-playable","playable","2021-01-18 15:08:47.000" +"01001C2010D08000","They Bleed Pixels","gpu;status-ingame","ingame","2024-08-09 05:52:18.000" +"","They Came From the Sky","status-playable","playable","2020-06-12 16:38:19.000" +"0100CE400E34E000","Thief Simulator","status-playable","playable","2023-04-22 04:39:11.000" +"0100CE700F62A000","Thief of Thieves","status-nothing;crash;loader-allocator","nothing","2021-11-03 07:16:30.000" +"01009BD003B36000","Thimbleweed Park","status-playable","playable","2022-08-24 11:15:31.000" +"0100F2300A5DA000","Think of the Children","deadlock;status-menus","menus","2021-11-23 09:04:45.000" +"0100066004D68000","This Is the Police","status-playable","playable","2022-08-24 11:37:05.000" +"01004C100A04C000","This Is the Police 2","status-playable","playable","2022-08-24 11:49:17.000" +"","This Strange Realm of Mine","status-playable","playable","2020-08-28 12:07:24.000" +"0100A8700BC2A000","This War of Mine: Complete Edition","gpu;status-ingame;32-bit;nvdec","ingame","2022-08-24 12:00:44.000" +"0100E910103B4000","Thronebreaker: The Witcher Tales","nvdec;status-playable","playable","2021-06-03 16:40:15.000" +"01006F6002840000","Thumper","gpu;status-ingame","ingame","2024-08-12 02:41:07.000" +"01000AC011588000","Thy Sword","status-ingame;crash","ingame","2022-09-30 16:43:14.000" +"","Tick Tock: A Tale for Two","status-menus","menus","2020-07-14 14:49:38.000" +"0100B6D00C2DE000","Tied Together","nvdec;status-playable","playable","2021-04-10 14:03:46.000" +"","Timber Tennis Versus","online;status-playable","playable","2020-10-03 17:07:15.000" +"01004C500B698000","Time Carnage","status-playable","playable","2021-06-16 17:57:28.000" +"0100F770045CA000","Time Recoil","status-playable","playable","2022-08-24 12:44:03.000" +"0100DD300CF3A000","Timespinner","gpu;status-ingame","ingame","2022-08-09 09:39:11.000" +"0100393013A10000","Timothy and the Mysterious Forest","gpu;slow;status-ingame","ingame","2021-06-02 00:42:11.000" +"","Tin & Kuna","status-playable","playable","2020-11-17 12:16:12.000" +"","Tiny Gladiators","status-playable","playable","2020-12-14 00:09:43.000" +"010061A00AE64000","Tiny Hands Adventure","status-playable","playable","2022-08-24 16:07:48.000" +"01005D0011A40000","Tiny Racer","status-playable","playable","2022-10-07 11:13:03.000" +"010002401AE94000","Tiny Thor","gpu;status-ingame","ingame","2024-07-26 08:37:35.000" +"0100A73016576000","Tinykin","gpu;status-ingame","ingame","2023-06-18 12:12:24.000" +"0100FE801185E000","Titan Glory","status-boots","boots","2022-10-07 11:36:40.000" +"0100605008268000","Titan Quest","status-playable;nvdec;online-broken","playable","2022-08-19 21:54:15.000" +"","Titans Pinball","slow;status-playable","playable","2020-06-09 16:53:52.000" +"010019500DB1E000","Tlicolity Eyes - twinkle showtime -","gpu;status-boots","boots","2021-05-29 19:43:44.000" +"","To the Moon","status-playable","playable","2021-03-20 15:33:38.000" +"","Toast Time: Smash Up!","crash;services;status-menus","menus","2020-04-03 12:26:59.000" +"","Toby: The Secret Mine","nvdec;status-playable","playable","2021-01-06 09:22:33.000" +"","ToeJam & Earl: Back in the Groove","status-playable","playable","2021-01-06 22:56:58.000" +"","Toki","nvdec;status-playable","playable","2021-01-06 19:59:23.000" +"0100A9400C9C2000","Tokyo Mirage Sessions #FE Encore","32-bit;status-playable;nvdec","playable","2022-07-07 09:41:07.000" +"0100E2E00CB14000","Tokyo School Life","status-playable","playable","2022-09-16 20:25:54.000" +"010024601BB16000","Tomb Raider I-III Remastered","gpu;status-ingame;opengl","ingame","2024-09-27 12:32:04.000" +"0100D7F01E49C000","Tomba! Special Edition","services-horizon;status-nothing","nothing","2024-09-15 21:59:54.000" +"0100D400100F8000","Tonight we Riot","status-playable","playable","2021-02-26 15:55:09.000" +"","Tools Up!","crash;status-ingame","ingame","2020-07-21 12:58:17.000" +"01009EA00E2B8000","Toon War","status-playable","playable","2021-06-11 16:41:53.000" +"","Torchlight 2","status-playable","playable","2020-07-27 14:18:37.000" +"010075400DDB8000","Torchlight III","status-playable;nvdec;online-broken;UE4","playable","2022-10-14 22:20:17.000" +"","Torn Tales - Rebound Edition","status-playable","playable","2020-11-01 14:11:59.000" +"0100A64010D48000","Total Arcade Racing","status-playable","playable","2022-11-12 15:12:48.000" +"0100512010728000","Totally Reliable Delivery Service","status-playable;online-broken","playable","2024-09-27 19:32:22.000" +"01004E900B082000","Touhou Genso Wanderer RELOADED","gpu;status-ingame;nvdec","ingame","2022-08-25 11:57:36.000" +"","Touhou Kobuto V: Burst Battle","status-playable","playable","2021-01-11 15:28:58.000" +"","Touhou Spell Bubble","status-playable","playable","2020-10-18 11:43:43.000" +"","Tower of Babel","status-playable","playable","2021-01-06 17:05:15.000" +"","Tower of Time","gpu;nvdec;status-ingame","ingame","2020-07-03 11:11:12.000" +"","TowerFall","status-playable","playable","2020-05-16 18:58:07.000" +"","Towertale","status-playable","playable","2020-10-15 13:56:58.000" +"010049E00BA34000","Townsmen - A Kingdom Rebuilt","status-playable;nvdec","playable","2022-10-14 22:48:59.000" +"01009FF00A160000","Toy Stunt Bike: Tiptop's Trials","UE4;status-playable","playable","2021-04-10 13:56:34.000" +"0100192010F5A000","Tracks - Toybox Edition","UE4;crash;status-nothing","nothing","2021-02-08 15:19:18.000" +"0100BCA00843A000","Trailblazers","status-playable","playable","2021-03-02 20:40:49.000" +"010009F004E66000","Transcripted","status-playable","playable","2022-08-25 12:13:11.000" +"","Transistor","status-playable","playable","2020-10-22 11:28:02.000" +"0100A8D010BFA000","Travel Mosaics 2: Roman Holiday","status-playable","playable","2021-05-26 12:33:16.000" +"0100102010BFC000","Travel Mosaics 3: Tokyo Animated","status-playable","playable","2021-05-26 12:06:27.000" +"010096D010BFE000","Travel Mosaics 4: Adventures in Rio","status-playable","playable","2021-05-26 11:54:58.000" +"01004C4010C00000","Travel Mosaics 5: Waltzing Vienna","status-playable","playable","2021-05-26 11:49:35.000" +"0100D520119D6000","Travel Mosaics 6: Christmas Around the World","status-playable","playable","2021-05-26 00:52:47.000" +"","Travel Mosaics 7: Fantastic Berlin -","status-playable","playable","2021-05-22 18:37:34.000" +"01007DB00A226000","Travel Mosaics: A Paris Tour","status-playable","playable","2021-05-26 12:42:26.000" +"010011600C946000","Travis Strikes Again: No More Heroes","status-playable;nvdec;UE4","playable","2022-08-25 12:36:38.000" +"","Treadnauts","status-playable","playable","2021-01-10 14:57:41.000" +"01003E800A102000","Trials Rising","status-playable","playable","2024-02-11 01:36:39.000" +"0100D7800E9E0000","Trials of Mana","status-playable;UE4","playable","2022-09-30 21:50:37.000" +"0100E1D00FBDE000","Trials of Mana Demo","status-playable;nvdec;UE4;demo;vulkan-backend-bug","playable","2022-09-26 18:00:02.000" +"0100D9000A930000","Trine","ldn-untested;nvdec;status-playable","playable","2021-06-03 11:28:15.000" +"010064E00A932000","Trine 2","nvdec;status-playable","playable","2021-06-03 11:45:20.000" +"0100DEC00A934000","Trine 3: The Artifacts of Power","ldn-untested;online;status-playable","playable","2021-06-03 12:01:24.000" +"010055E00CA68000","Trine 4: The Nightmare Prince","gpu;status-nothing","nothing","2025-01-07 05:47:46.000" +"01002D7010A54000","Trinity Trigger","status-ingame;crash","ingame","2023-03-03 03:09:09.000" +"0100868013FFC000","Trivial Pursuit Live! 2","status-boots","boots","2022-12-19 00:04:33.000" +"0100F78002040000","Troll and I","gpu;nvdec;status-ingame","ingame","2021-06-04 16:58:50.000" +"","Trollhunters: Defenders of Arcadia","gpu;nvdec;status-ingame","ingame","2020-11-30 13:27:09.000" +"0100FBE0113CC000","Tropico 6","status-playable;nvdec;UE4","playable","2022-10-14 23:21:03.000" +"0100D06018DCA000","Trouble Witches Final! Episode 01: Daughters of Amalgam","status-playable","playable","2024-04-08 15:08:11.000" +"","Troubleshooter","UE4;crash;status-nothing","nothing","2020-10-04 13:46:50.000" +"","Trover Saves the Universe","UE4;crash;status-nothing","nothing","2020-10-03 10:25:27.000" +"0100E6300D448000","Truberbrook","status-playable","playable","2021-06-04 17:08:00.000" +"0100F2100AA5C000","Truck & Logistics Simulator","status-playable","playable","2021-06-11 13:29:08.000" +"0100CB50107BA000","Truck Driver","status-playable;online-broken","playable","2022-10-20 17:42:33.000" +"","True Fear: Forsaken Souls - Part 1","nvdec;status-playable","playable","2020-12-15 21:39:52.000" +"","Tumblestone","status-playable","playable","2021-01-07 17:49:20.000" +"010085500D5F6000","Turok","gpu;status-ingame","ingame","2021-06-04 13:16:24.000" +"0100CDC00D8D6000","Turok 2: Seeds of Evil","gpu;status-ingame;vulkan","ingame","2022-09-12 17:50:05.000" +"","Turrican Flashback - 01004B0130C8000","status-playable;audout","playable","2021-08-30 10:07:56.000" +"","TurtlePop: Journey to Freedom","status-playable","playable","2020-06-12 17:45:39.000" +"0100047009742000","Twin Robots: Ultimate Edition","status-playable;nvdec","playable","2022-08-25 14:24:03.000" +"010031200E044000","Two Point Hospital","status-ingame;crash;nvdec","ingame","2022-09-22 11:22:23.000" +"010073A00C4B2000","Tyd wag vir Niemand","status-playable","playable","2021-03-02 13:39:53.000" +"","Type:Rider","status-playable","playable","2021-01-06 13:12:55.000" +"","UBERMOSH:SANTICIDE","status-playable","playable","2020-11-27 15:05:01.000" +"01005AA00372A000","UNO","status-playable;nvdec;ldn-untested","playable","2022-07-28 14:49:47.000" +"","Ubongo - Deluxe Edition","status-playable","playable","2021-02-04 21:15:01.000" +"010079000B56C000","UglyDolls: An Imperfect Adventure","status-playable;nvdec;UE4","playable","2022-08-25 14:42:16.000" +"010048901295C000","Ultimate Fishing Simulator","status-playable","playable","2021-06-16 18:38:23.000" +"","Ultimate Racing 2D","status-playable","playable","2020-08-05 17:27:09.000" +"010045200A1C2000","Ultimate Runner","status-playable","playable","2022-08-29 12:52:40.000" +"01006B601117E000","Ultimate Ski Jumping 2020","online;status-playable","playable","2021-03-02 20:54:11.000" +"01002D4012222000","Ultra Hat Dimension","services;audio;status-menus","menus","2021-11-18 09:05:20.000" +"","Ultra Hyperball","status-playable","playable","2021-01-06 10:09:55.000" +"01007330027EE000","Ultra Street Fighter II: The Final Challengers","status-playable;ldn-untested","playable","2021-11-25 07:54:58.000" +"01006A300BA2C000","Umineko no Naku Koro ni Saku - うみねこのなく頃に咲 ~猫箱と夢想の交響曲~","status-playable;audout","playable","2023-05-04 17:25:23.000" +"","UnExplored - Unlocked Edition","status-playable","playable","2021-01-06 10:02:16.000" +"0100592005164000","Unbox: Newbie's Adventure","status-playable;UE4","playable","2022-08-29 13:12:56.000" +"01002D900C5E4000","Uncanny Valley","nvdec;status-playable","playable","2021-06-04 13:28:45.000" +"010076F011F54000","Undead and Beyond","status-playable;nvdec","playable","2022-10-04 09:11:18.000" +"01008F3013E4E000","Under Leaves","status-playable","playable","2021-05-22 18:13:58.000" +"010080B00AD66000","Undertale","status-playable","playable","2022-08-31 17:31:46.000" +"01008F80049C6000","Unepic","status-playable","playable","2024-01-15 17:03:00.000" +"","Unhatched","status-playable","playable","2020-12-11 12:11:09.000" +"010069401ADB8000","Unicorn Overlord","status-playable","playable","2024-09-27 14:04:32.000" +"","Unit 4","status-playable","playable","2020-12-16 18:54:13.000" +"","Unknown Fate","slow;status-ingame","ingame","2020-10-15 12:27:42.000" +"","Unlock the King","status-playable","playable","2020-09-01 13:58:27.000" +"0100A3E011CB0000","Unlock the King 2","status-playable","playable","2021-06-15 20:43:55.000" +"0100E5D00CC0C000","Unravel TWO","status-playable;nvdec","playable","2024-05-23 15:45:05.000" +"","Unruly Heroes","status-playable","playable","2021-01-07 18:09:31.000" +"0100B410138C0000","Unspottable","status-playable","playable","2022-10-25 19:28:49.000" +"","Untitled Goose Game","status-playable","playable","2020-09-26 13:18:06.000" +"0100E49013190000","Unto The End","gpu;status-ingame","ingame","2022-10-21 11:13:29.000" +"","Urban Flow","services;status-playable","playable","2020-07-05 12:51:47.000" +"010054F014016000","Urban Street Fighting","status-playable","playable","2021-02-20 19:16:36.000" +"01001B10068EC000","Urban Trial Playground","UE4;nvdec;online;status-playable","playable","2021-03-25 20:56:51.000" +"0100A2500EB92000","Urban Trial Tricky","status-playable;nvdec;UE4","playable","2022-12-06 13:07:56.000" +"01007C0003AEC000","Use Your Words","status-menus;nvdec;online-broken","menus","2022-08-29 17:22:10.000" +"0100D4300EBF8000","Uta no Prince-sama Amazing Aria & Sweet Serenade LOVE","status-nothing;crash;Needs More Attention;Needs Update","nothing","2022-02-09 08:57:44.000" +"010024200E00A000","Uta no☆Prince-sama♪ Repeat Love","status-playable;nvdec","playable","2022-12-09 09:21:51.000" +"","Utopia 9 - A Volatile Vacation","nvdec;status-playable","playable","2020-12-16 17:06:42.000" +"010064400B138000","V-Rally 4","gpu;nvdec;status-ingame","ingame","2021-06-07 19:37:31.000" +"0100A6700D66E000","VA-11 HALL-A","status-playable","playable","2021-02-26 15:05:34.000" +"010045C0109F2000","VARIABLE BARRICADE NS","status-playable;nvdec","playable","2022-02-26 15:50:13.000" +"0100FE200AF48000","VASARA Collection","nvdec;status-playable","playable","2021-02-28 15:26:10.000" +"0100C7C00AE6C000","VSR: Void Space Racing","status-playable","playable","2021-01-27 14:08:59.000" +"","Vaccine","nvdec;status-playable","playable","2021-01-06 01:02:07.000" +"010089700F30C000","Valfaris","status-playable","playable","2022-09-16 21:37:24.000" +"0100CAF00B744000","Valkyria Chronicles","status-ingame;32-bit;crash;nvdec","ingame","2022-11-23 20:03:32.000" +"01005C600AC68000","Valkyria Chronicles 4","audout;nvdec;status-playable","playable","2021-06-03 18:12:25.000" +"0100FBD00B91E000","Valkyria Chronicles 4 Demo","slow;status-ingame;demo","ingame","2022-08-29 20:39:07.000" +"0100E0E00B108000","Valley","status-playable;nvdec","playable","2022-09-28 19:27:58.000" +"010089A0197E4000","Vampire Survivors","status-ingame","ingame","2024-06-17 09:57:38.000" +"01000BD00CE64000","Vampyr","status-playable;nvdec;UE4","playable","2022-09-16 22:15:51.000" +"01007C500D650000","Vandals","status-playable","playable","2021-01-27 21:45:46.000" +"010030F00CA1E000","Vaporum","nvdec;status-playable","playable","2021-05-28 14:25:33.000" +"","Vasilis","status-playable","playable","2020-09-01 15:05:35.000" +"01009CD003A0A000","Vegas Party","status-playable","playable","2021-04-14 19:21:41.000" +"010098400E39E000","Vektor Wars","status-playable;online-broken;vulkan-backend-bug","playable","2022-10-04 09:23:46.000" +"01003A8018E60000","Vengeful Guardian: Moonrider","deadlock;status-boots","boots","2024-03-17 23:35:37.000" +"010095B00DBC8000","Venture Kid","crash;gpu;status-ingame","ingame","2021-04-18 16:33:17.000" +"","Vera Blanc: Full Moon","audio;status-playable","playable","2020-12-17 12:09:30.000" +"0100379013A62000","Very Very Valet","status-playable;nvdec","playable","2022-11-12 15:25:51.000" +"01006C8014DDA000","Very Very Valet Demo - 01006C8014DDA000","status-boots;crash;Needs Update;demo","boots","2022-11-12 15:26:13.000" +"010057B00712C000","Vesta","status-playable;nvdec","playable","2022-08-29 21:03:39.000" +"0100E81007A06000","Victor Vran Overkill Edition","gpu;deadlock;status-ingame;nvdec;opengl","ingame","2022-08-30 11:46:56.000" +"01005880063AA000","Violett","nvdec;status-playable","playable","2021-01-28 13:09:36.000" +"010037900CB1C000","Viviette","status-playable","playable","2021-06-11 15:33:40.000" +"0100D010113A8000","Void Bastards","status-playable","playable","2022-10-15 00:04:19.000" +"","Volgarr the Viking","status-playable","playable","2020-12-18 15:25:50.000" +"0100A7900E79C000","Volta-X","status-playable;online-broken","playable","2022-10-07 12:20:51.000" +"01004D8007368000","Vostok, Inc.","status-playable","playable","2021-01-27 17:43:59.000" +"0100B1E0100A4000","Voxel Galaxy","status-playable","playable","2022-09-28 22:45:02.000" +"0100AFA011068000","Voxel Pirates","status-playable","playable","2022-09-28 22:55:02.000" +"0100BFB00D1F4000","Voxel Sword","status-playable","playable","2022-08-30 14:57:27.000" +"01004E90028A2000","Vroom in the Night Sky","status-playable;Needs Update;vulkan-backend-bug","playable","2023-02-20 02:32:29.000" +"","VtM Coteries of New York","status-playable","playable","2020-10-04 14:55:22.000" +"","WARBORN","status-playable","playable","2020-06-25 12:36:47.000" +"0100E8500AD58000","WARRIORS OROCHI 4 ULTIMATE","status-playable;nvdec;online-broken","playable","2024-08-07 01:50:37.000" +"0100CFC00A1D8000","WILD GUNS Reloaded","status-playable","playable","2021-01-28 12:29:05.000" +"","WINDJAMMERS","online;status-playable","playable","2020-10-13 11:24:25.000" +"010087800DCEA000","WRC 8 FIA World Rally Championship","status-playable;nvdec","playable","2022-09-16 23:03:36.000" +"01001A0011798000","WRC 9 The Official Game","gpu;slow;status-ingame;nvdec","ingame","2022-10-25 19:47:39.000" +"010081700EDF4000","WWE 2K Battlegrounds","status-playable;nvdec;online-broken;UE4","playable","2022-10-07 12:44:40.000" +"010009800203E000","WWE 2K18","status-playable;nvdec","playable","2023-10-21 17:22:01.000" +"0100B130119D0000","Waifu Uncovered","status-ingame;crash","ingame","2023-02-27 01:17:46.000" +"","Wanba Warriors","status-playable","playable","2020-10-04 17:56:22.000" +"","Wanderjahr TryAgainOrWalkAway","status-playable","playable","2020-12-16 09:46:04.000" +"0100B27010436000","Wanderlust Travel Stories","status-playable","playable","2021-04-07 16:09:12.000" +"0100F8A00853C000","Wandersong","nvdec;status-playable","playable","2021-06-04 15:33:34.000" +"0100D67013910000","Wanna Survive","status-playable","playable","2022-11-12 21:15:43.000" +"01004FA01391A000","War Of Stealth - assassin","status-playable","playable","2021-05-22 17:34:38.000" +"010049500DE56000","War Tech Fighters","status-playable;nvdec","playable","2022-09-16 22:29:31.000" +"010084D00A134000","War Theatre","gpu;status-ingame","ingame","2021-06-07 19:42:45.000" +"0100B6B013B8A000","War Truck Simulator","status-playable","playable","2021-01-31 11:22:54.000" +"","War-Torn Dreams","crash;status-nothing","nothing","2020-10-21 11:36:16.000" +"01000F0002BB6000","WarGroove","status-playable;online-broken","playable","2022-08-31 10:30:45.000" +"010056901285A000","Wardogs: Red's Return","status-playable","playable","2022-11-13 15:29:01.000" +"0100C6000EEA8000","Warhammer 40,000: Mechanicus","nvdec;status-playable","playable","2021-06-13 10:46:38.000" +"0100E5600D7B2000","Warhammer 40,000: Space Wolf","status-playable;online-broken","playable","2022-09-20 21:11:20.000" +"010031201307A000","Warhammer Age of Sigmar: Storm Ground","status-playable;nvdec;online-broken;UE4","playable","2022-11-13 15:46:14.000" +"","Warhammer Quest 2","status-playable","playable","2020-08-04 15:28:03.000" +"0100563010E0C000","WarioWare: Get It Together!","gpu;status-ingame;opengl-backend-bug","ingame","2024-04-23 01:04:56.000" +"010045B018EC2000","Warioware: Move IT!","status-playable","playable","2023-11-14 00:23:51.000" +"","Warlocks 2: God Slayers","status-playable","playable","2020-12-16 17:36:50.000" +"","Warp Shift","nvdec;status-playable","playable","2020-12-15 14:48:48.000" +"","Warparty","nvdec;status-playable","playable","2021-01-27 18:26:32.000" +"010032700EAC4000","WarriOrb","UE4;status-playable","playable","2021-06-17 15:45:14.000" +"","Wartile Complete Edition","UE4;crash;gpu;status-menus","menus","2020-12-11 21:56:10.000" +"010039A00BC64000","Wasteland 2: Director's Cut","nvdec;status-playable","playable","2021-01-27 13:34:11.000" +"","Water Balloon Mania","status-playable","playable","2020-10-23 20:20:59.000" +"0100BA200C378000","Way of the Passive Fist","gpu;status-ingame","ingame","2021-02-26 21:07:06.000" +"","We should talk.","crash;status-nothing","nothing","2020-08-03 12:32:36.000" +"","Welcome to Hanwell","UE4;crash;status-boots","boots","2020-08-03 11:54:57.000" +"0100D7F010B94000","Welcome to Primrose Lake","status-playable","playable","2022-10-21 11:30:57.000" +"","Wenjia","status-playable","playable","2020-06-08 11:38:30.000" +"010031B00A4E8000","West of Loathing","status-playable","playable","2021-01-28 12:35:19.000" +"010038900DFE0000","What Remains of Edith Finch","slow;status-playable;UE4","playable","2022-08-31 19:57:59.000" +"010033600ADE6000","Wheel of Fortune [010033600ADE6000]","status-boots;crash;Needs More Attention;nvdec","boots","2023-11-12 20:29:24.000" +"0100DFC00405E000","Wheels of Aurelia","status-playable","playable","2021-01-27 21:59:25.000" +"010027D011C9C000","Where Angels Cry","gpu;status-ingame;nvdec","ingame","2022-09-30 22:24:47.000" +"0100FDB0092B4000","Where Are My Friends?","status-playable","playable","2022-09-21 14:39:26.000" +"","Where the Bees Make Honey","status-playable","playable","2020-07-15 12:40:49.000" +"","Whipsey and the Lost Atlas","status-playable","playable","2020-06-23 20:24:14.000" +"010015A00AF1E000","Whispering Willows","status-playable;nvdec","playable","2022-09-30 22:33:05.000" +"","Who Wants to Be a Millionaire?","crash;status-nothing","nothing","2020-12-11 20:22:42.000" +"0100C7800CA06000","Widget Satchel","status-playable","playable","2022-09-16 22:41:07.000" +"010071F00D65A000","Wilmot's Warehouse","audio;gpu;status-ingame","ingame","2021-06-02 17:24:32.000" +"010059900BA3C000","Windscape","status-playable","playable","2022-10-21 11:49:42.000" +"","Windstorm","UE4;gpu;nvdec;status-ingame","ingame","2020-12-22 13:17:48.000" +"0100D6800CEAC000","Windstorm - Ari's Arrival","UE4;status-playable","playable","2021-06-07 19:33:19.000" +"","Wing of Darkness - 010035B012F2000","status-playable;UE4","playable","2022-11-13 16:03:51.000" +"0100A4A015FF0000","Winter Games 2023","deadlock;status-menus","menus","2023-11-07 20:47:36.000" +"010012A017F18800","Witch On The Holy Night","status-playable","playable","2023-03-06 23:28:11.000" +"0100454012E32000","Witch Spring 3 Re:Fine -The Story of the Marionette Witch Eirudy-","status-ingame;crash","ingame","2021-08-08 11:56:18.000" +"01002FC00C6D0000","Witch Thief","status-playable","playable","2021-01-27 18:16:07.000" +"010061501904E000","Witch's Garden","gpu;status-ingame;crash;vulkan-backend-bug;opengl-backend-bug","ingame","2023-01-11 02:11:24.000" +"","Witcheye","status-playable","playable","2020-12-14 22:56:08.000" +"0100522007AAA000","Wizard of Legend","status-playable","playable","2021-06-07 12:20:46.000" +"","Wizards of Brandel","status-nothing","nothing","2020-10-14 15:52:33.000" +"0100C7600E77E000","Wizards: Wand of Epicosity","status-playable","playable","2022-10-07 12:32:06.000" +"01009040091E0000","Wolfenstein II The New Colossus","gpu;status-ingame","ingame","2024-04-05 05:39:46.000" +"01003BD00CAAE000","Wolfenstein: Youngblood","status-boots;online-broken","boots","2024-07-12 23:49:20.000" +"","Wonder Blade","status-playable","playable","2020-12-11 17:55:31.000" +"0100B49016FF0000","Wonder Boy Anniversary Collection","deadlock;status-nothing","nothing","2023-04-20 16:01:48.000" +"0100EB2012E36000","Wonder Boy Asha in Monster World [ ワンダーボーイ アーシャ・イン・モンスターワールド ]","status-nothing;crash","nothing","2021-11-03 08:45:06.000" +"0100A6300150C000","Wonder Boy: The Dragon's Trap","status-playable","playable","2021-06-25 04:53:21.000" +"0100F5D00C812000","Wondershot","status-playable","playable","2022-08-31 21:05:31.000" +"","Woodle Tree 2","gpu;slow;status-ingame","ingame","2020-06-04 18:44:00.000" +"0100288012966000","Woodsalt","status-playable","playable","2021-04-06 17:01:48.000" +"","Wordify","status-playable","playable","2020-10-03 09:01:07.000" +"","World Conqueror X","status-playable","playable","2020-12-22 16:10:29.000" +"01008E9007064000","World Neverland","status-playable","playable","2021-01-28 17:44:23.000" +"","World Soccer Pinball","status-playable","playable","2021-01-06 00:37:02.000" +"","World of Final Fantasy Maxima","status-playable","playable","2020-06-07 13:57:23.000" +"010009E001D90000","World of Goo","gpu;status-boots;32-bit;crash;regression","boots","2024-04-12 05:52:14.000" +"010061F01DB7C800","World of Goo 2","status-boots","boots","2024-08-08 22:52:49.000" +"","Worldend Syndrome","status-playable","playable","2021-01-03 14:16:32.000" +"010000301025A000","Worlds of Magic: Planar Conquest","status-playable","playable","2021-06-12 12:51:28.000" +"01009CD012CC0000","Worm Jazz","gpu;services;status-ingame;UE4;regression","ingame","2021-11-10 10:33:04.000" +"01001AE005166000","Worms W.M.D","gpu;status-boots;crash;nvdec;ldn-untested","boots","2023-09-16 21:42:59.000" +"010037500C4DE000","Worse Than Death","status-playable","playable","2021-06-11 16:05:40.000" +"01006F100EB16000","Woven","nvdec;status-playable","playable","2021-06-02 13:41:08.000" +"0100DC0012E48000","Wreckfest","status-playable","playable","2023-02-12 16:13:00.000" +"0100C5D00EDB8000","Wreckin' Ball Adventure","status-playable;UE4","playable","2022-09-12 18:56:28.000" +"010033700418A000","Wulverblade","nvdec;status-playable","playable","2021-01-27 22:29:05.000" +"01001C400482C000","Wunderling","audio;status-ingame;crash","ingame","2022-09-10 13:20:12.000" +"","Wurroom","status-playable","playable","2020-10-07 22:46:21.000" +"","X-Morph: Defense","status-playable","playable","2020-06-22 11:05:31.000" +"0100D0B00FB74000","XCOM 2 Collection","gpu;status-ingame;crash","ingame","2022-10-04 09:38:30.000" +"0100CC9015360000","XEL","gpu;status-ingame","ingame","2022-10-03 10:19:39.000" +"0100E95004038000","Xenoblade Chronicles 2","deadlock;status-ingame;amd-vendor-bug","ingame","2024-03-28 14:31:41.000" +"0100C9F009F7A000","Xenoblade Chronicles 2: Torna - The Golden Country","slow;status-playable;nvdec","playable","2023-01-28 16:47:28.000" +"010074F013262000","Xenoblade Chronicles 3","gpu;status-ingame;crash;nvdec;vulkan-backend-bug;amd-vendor-bug","ingame","2024-08-06 19:56:44.000" +"0100FF500E34A000","Xenoblade Chronicles Definitive Edition","status-playable;nvdec","playable","2024-05-04 20:12:41.000" +"010028600BA16000","Xenon Racer","status-playable;nvdec;UE4","playable","2022-08-31 22:05:30.000" +"010064200C324000","Xenon Valkyrie+","status-playable","playable","2021-06-07 20:25:53.000" +"0100928005BD2000","Xenoraid","status-playable","playable","2022-09-03 13:01:10.000" +"01005B5009364000","Xeodrifter","status-playable","playable","2022-09-03 13:18:39.000" +"","YGGDRA UNION We’ll Never Fight Alone","status-playable","playable","2020-04-03 02:20:47.000" +"0100634008266000","YIIK: A Postmodern RPG","status-playable","playable","2021-01-28 13:38:37.000" +"010037D00DBDC000","YU-NO: A GIRL WHO CHANTS LOVE AT THE BOUND OF THIS WORLD.","nvdec;status-playable","playable","2021-01-26 17:03:52.000" +"01006FB00DB02000","Yaga","status-playable;nvdec","playable","2022-09-16 23:17:17.000" +"","YesterMorrow","crash;status-ingame","ingame","2020-12-17 17:15:25.000" +"","Yet Another Zombie Defense HD","status-playable","playable","2021-01-06 00:18:39.000" +"0100C0000CEEA000","Yo kai watch 1 for Nintendo Switch","gpu;status-ingame;opengl","ingame","2024-05-28 11:11:49.000" +"010086C00AF7C000","Yo-Kai Watch 4++","status-playable","playable","2024-06-18 20:21:44.000" +"010002D00632E000","Yoku's Island Express","status-playable;nvdec","playable","2022-09-03 13:59:02.000" +"0100F47016F26000","Yomawari 3","status-playable","playable","2022-05-10 08:26:51.000" +"010012F00B6F2000","Yomawari: The Long Night Collection","status-playable","playable","2022-09-03 14:36:59.000" +"0100CC600ABB2000","Yonder: The Cloud Catcher Chronicles","status-playable","playable","2021-01-28 14:06:25.000" +"0100BE50042F6000","Yono and the Celestial Elephants","status-playable","playable","2021-01-28 18:23:58.000" +"0100F110029C8000","Yooka-Laylee","status-playable","playable","2021-01-28 14:21:45.000" +"010022F00DA66000","Yooka-Laylee and the Impossible Lair","status-playable","playable","2021-03-05 17:32:21.000" +"01006000040C2000","Yoshi's Crafted World","gpu;status-ingame;audout","ingame","2021-08-30 13:25:51.000" +"","Yoshi's Crafted World Demo Version","gpu;status-boots;status-ingame","boots","2020-12-16 14:57:40.000" +"","Yoshiwara Higanbana Kuon no Chigiri","nvdec;status-playable","playable","2020-10-17 19:14:46.000" +"01003A400C3DA800","YouTube","status-playable","playable","2024-06-08 05:24:10.000" +"00100A7700CCAA40","Youtubers Life00","status-playable;nvdec","playable","2022-09-03 14:56:19.000" +"0100E390124D8000","Ys IX: Monstrum Nox","status-playable","playable","2022-06-12 04:14:42.000" +"0100F90010882000","Ys Origin","status-playable;nvdec","playable","2024-04-17 05:07:33.000" +"01007F200B0C0000","Ys VIII: Lacrimosa of Dana","status-playable;nvdec","playable","2023-08-05 09:26:41.000" +"010022400BE5A000","Yu-Gi-Oh! Legacy of the Duelist: Link Evolution!","status-playable","playable","2024-09-27 21:48:43.000" +"01002D60188DE000","Yu-Gi-Oh! Rush Duel: Dawn of the Battle Royale!! Let's Go! Go Rush!!","status-ingame;crash","ingame","2023-03-17 01:54:01.000" +"0100B56011502000","Yumeutsutsu Re:After","status-playable","playable","2022-11-20 16:09:06.000" +"","Yunohana Spring! - Mellow Times -","audio;crash;status-menus","menus","2020-09-27 19:27:40.000" +"","Yuppie Psycho: Executive Edition","crash;status-ingame","ingame","2020-12-11 10:37:06.000" +"0100FC900963E000","Yuri","status-playable","playable","2021-06-11 13:08:50.000" +"","ZERO GUNNER 2","status-playable","playable","2021-01-04 20:17:14.000" +"","ZOMBIE GOLD RUSH","online;status-playable","playable","2020-09-24 12:56:08.000" +"010092400A678000","Zaccaria Pinball","status-playable;online-broken","playable","2022-09-03 15:44:28.000" +"","Zarvot - 0100E7900C40000","status-playable","playable","2021-01-28 13:51:36.000" +"","ZenChess","status-playable","playable","2020-07-01 22:28:27.000" +"","Zenge","status-playable","playable","2020-10-22 13:23:57.000" +"0100057011E50000","Zengeon","services-horizon;status-boots;crash","boots","2024-04-29 15:43:07.000" +"0100AAC00E692000","Zenith","status-playable","playable","2022-09-17 09:57:02.000" +"01004B001058C000","Zero Strain","services;status-menus;UE4","menus","2021-11-10 07:48:32.000" +"","Zettai kaikyu gakuen","gpu;nvdec;status-ingame","ingame","2020-08-25 15:15:54.000" +"0100D7B013DD0000","Ziggy The Chaser","status-playable","playable","2021-02-04 20:34:27.000" +"010086700EF16000","ZikSquare","gpu;status-ingame","ingame","2021-11-06 02:02:48.000" +"010069C0123D8000","Zoids Wild Blast Unleashed","status-playable;nvdec","playable","2022-10-15 11:26:59.000" +"","Zombie Army Trilogy","ldn-untested;online;status-playable","playable","2020-12-16 12:02:28.000" +"","Zombie Driver","nvdec;status-playable","playable","2020-12-14 23:15:10.000" +"","Zombie's Cool","status-playable","playable","2020-12-17 12:41:26.000" +"01000E5800D32C00","Zombieland: Double Tap - Road Trip0","status-playable","playable","2022-09-17 10:08:45.000" +"","Zombillie","status-playable","playable","2020-07-23 17:42:23.000" +"01001EE00A6B0000","Zotrix: Solar Division","status-playable","playable","2021-06-07 20:34:05.000" +"0100194010422000","bayala - the game","status-playable","playable","2022-10-04 14:09:25.000" +"","de Blob 2","nvdec;status-playable","playable","2021-01-06 13:00:16.000" +"0100BCA016636000","eBaseball Powerful Pro Yakyuu 2022","gpu;services-horizon;status-nothing;crash","nothing","2024-05-26 23:07:19.000" +"","eCrossminton","status-playable","playable","2020-07-11 18:24:27.000" +"010095E01581C000","even if TEMPEST","gpu;status-ingame","ingame","2023-06-22 23:50:25.000" +"","fault - milestone one","nvdec;status-playable","playable","2021-03-24 10:41:49.000" +"","n Verlore Verstand","slow;status-ingame","ingame","2020-12-10 18:00:28.000" +"01009A500E3DA000","n Verlore Verstand - Demo","status-playable","playable","2021-02-09 00:13:32.000" +"01008AE019614000","nOS new Operating System","status-playable","playable","2023-03-22 16:49:08.000" +"0000000000000000","nx-hbmenu","status-boots;Needs Update;homebrew","boots","2024-04-06 22:05:32.000" +"","nxquake2","services;status-nothing;crash;homebrew","nothing","2022-08-04 23:14:04.000" +"010074000BE8E000","oOo: Ascension","status-playable","playable","2021-01-25 14:13:34.000" +"","planetarian HD ~the reverie of a little planet~","status-playable","playable","2020-10-17 20:26:20.000" +"01005CD015986000","rRootage Reloaded [01005CD015986000]","status-playable","playable","2022-08-05 23:20:18.000" +"","realMyst: Masterpiece Edition","nvdec;status-playable","playable","2020-11-30 15:25:42.000" +"0100858010DC4000","the StoryTale","status-playable","playable","2022-09-03 13:00:25.000" +"0100FF7010E7E000","void* tRrLM(); //Void Terrarium","gpu;status-ingame;Needs Update;regression","ingame","2023-02-10 01:13:25.000" +"010078D0175EE000","void* tRrLM2(); //Void Terrarium 2","status-playable","playable","2023-12-21 11:00:41.000" +"","この世の果てで恋を唄う少女YU-NO","audio;status-ingame","ingame","2021-01-22 07:00:16.000" +"","スーパーファミコン Nintendo Switch Online","slow;status-ingame","ingame","2020-03-14 05:48:38.000" +"01000BB01CB8A000","トラブル・マギア ~訳アリ少女は未来を勝ち取るために異国の魔法学校へ留学します~(Trouble Magia ~Wakeari Shoujo wa Mirai o Kachitoru Tame ni Ikoku no Mahou Gakkou e Ryuugaku Shimasu~)","status-nothing","nothing","2024-09-28 07:03:14.000" +"010065500B218000","メモリーズオフ - Innocent Fille","status-playable","playable","2022-12-02 17:36:48.000" +"010032400E700000","二ノ国 白き聖灰の女王","services;status-menus;32-bit","menus","2023-04-16 17:11:06.000" +"0100F3100DA46000","初音ミク Project DIVA MEGA39's","audio;status-playable;loader-allocator","playable","2022-07-29 11:45:52.000" +"0100BF401AF9C000","御伽活劇 豆狸のバケル ~オラクル祭太郎の祭難!!~ (Otogi Katsugeki Mameda no Bakeru Oracle Saitarou no Sainan!!)","slow;status-playable","playable","2023-12-31 14:37:17.000" +"0100AFA01750C000","死神と少女/Shinigami to Shoujo","gpu;status-ingame;Incomplete","ingame","2024-03-22 01:06:45.000" +"01001BA01EBFC000","燃えよ! 乙女道士 ~華遊恋語~ (Moeyo! Otome Doushi Kayu Koigatari)","services-horizon;status-nothing","nothing","2024-09-28 12:22:55.000" +"0100936018EB4000","牧場物語 Welcome!ワンダフルライフ","status-ingame;crash","ingame","2023-04-25 19:43:52.000" +"01009FB016286000","索尼克:起源 / Sonic Origins","status-ingame;crash","ingame","2024-06-02 07:20:15.000" +"0100F4401940A000","超探偵事件簿 レインコード (Master Detective Archives: Rain Code)","status-ingame;crash","ingame","2024-02-12 20:58:31.000" +"010064801a01c000","超次元ゲイム ネプテューヌ GameMaker R:Evolution","status-nothing;crash","nothing","2023-10-30 22:37:40.000" +"010005501E68C000","逆转检察官1&2 御剑精选集 (Ace Attorney Investigations Collection)","status-playable","playable","2024-09-19 16:38:05.000" +"010020D01B890000","逆转裁判四五六 王泥喜精选集 (Apollo Justice: Ace Attorney Trilogy)","status-playable","playable","2024-06-21 21:54:27.000" +"0100309016E7A000","鬼滅之刃:火之神血風譚 / Demon Slayer -Kimetsu no Yaiba- The Hinokami Chronicles","status-playable;UE4","playable","2024-08-08 04:51:49.000" diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs b/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs index 8a3482c01..1e69b42d5 100644 --- a/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs +++ b/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs @@ -36,19 +36,15 @@ namespace Ryujinx.Ava.Utilities.Compat if (row.ColCount != header.ColNames.Count) throw new InvalidDataException($"CSV row {row.RowIndex} ({row.ToString()}) has mismatched column count"); - var titleIdRow = ColStr(row[header.IndexOf("\"extracted_game_id\"")]); + var titleIdRow = ColStr(row[header.IndexOf("\"title_id\"")]); TitleId = !string.IsNullOrEmpty(titleIdRow) ? titleIdRow : default(Optional); + + GameName = ColStr(row[header.IndexOf("\"game_name\"")]).Trim().Trim('"'); - var issueTitleRow = ColStr(row[header.IndexOf("\"issue_title\"")]); - if (TitleId.HasValue) - issueTitleRow = issueTitleRow.ReplaceIgnoreCase($" - {TitleId}", string.Empty); - - GameName = issueTitleRow.Trim().Trim('"'); - - IssueLabels = ColStr(row[header.IndexOf("\"issue_labels\"")]).Split(';'); - Status = ColStr(row[header.IndexOf("\"extracted_status\"")]).ToLower() switch + IssueLabels = ColStr(row[header.IndexOf("\"labels\"")]).Split(';'); + Status = ColStr(row[header.IndexOf("\"status\"")]).ToLower() switch { "playable" => LocaleKeys.CompatibilityListPlayable, "ingame" => LocaleKeys.CompatibilityListIngame, @@ -58,7 +54,7 @@ namespace Ryujinx.Ava.Utilities.Compat _ => null }; - if (DateTime.TryParse(ColStr(row[header.IndexOf("\"last_event_date\"")]), out var dt)) + if (DateTime.TryParse(ColStr(row[header.IndexOf("\"last_updated\"")]), out var dt)) LastEvent = dt; return; From 2226521f6c96f72f36132d104858af96e82e7b42 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Wed, 8 Jan 2025 12:36:26 -0600 Subject: [PATCH 38/69] docs: compat: remove quotes around everything but game titles --- docs/compatibility.csv | 6864 ++++++++++++++++++++-------------------- 1 file changed, 3432 insertions(+), 3432 deletions(-) diff --git a/docs/compatibility.csv b/docs/compatibility.csv index 600f00097..94ff62ab3 100644 --- a/docs/compatibility.csv +++ b/docs/compatibility.csv @@ -1,3433 +1,3433 @@ "title_id","game_name","labels","status","last_updated" -"01001E500F7FC000","#Funtime","status-playable","playable","2020-12-10 16:54:35.000" -"01000E50134A4000","#Halloween, Super Puzzles Dream","nvdec;status-playable","playable","2020-12-10 20:43:58.000" -"01004D100C510000","#KillAllZombies","slow;status-playable","playable","2020-12-16 01:50:25.000" -"0100325012C12000","#NoLimitFantasy, Super Puzzles Dream","nvdec;status-playable","playable","2020-12-12 17:21:32.000" -"01005D400E5C8000","#RaceDieRun","status-playable","playable","2020-07-04 20:23:16.000" -"01003DB011AE8000","#womenUp, Super Puzzles Dream","status-playable","playable","2020-12-12 16:57:25.000" -"0100D87012A14000","#womenUp, Super Puzzles Dream Demo","nvdec;status-playable","playable","2021-02-09 00:03:31.000" -"010099F00EF3E000","-KLAUS-","nvdec;status-playable","playable","2020-06-27 13:27:30.000" -"0100BA9014A02000",".hack//G.U. Last Recode","deadlock;status-boots","boots","2022-03-12 19:15:47.000" -"01000320000CC000","1-2-Switch","services;status-playable","playable","2022-02-18 14:44:03.000" -"0100DC000A472000","10 Second Run RETURNS Demo","gpu;status-ingame","ingame","2021-02-09 00:17:18.000" -"01004D1007926000","10 Second Run Returns","gpu;status-ingame","ingame","2022-07-17 13:06:18.000" -"0100D82015774000","112 Operator","status-playable;nvdec","playable","2022-11-13 22:42:50.000" -"010051E012302000","112th Seed","status-playable","playable","2020-10-03 10:32:38.000" -"0100B1A010014000","12 Labours of Hercules II: The Cretan Bull","cpu;status-nothing;32-bit;crash","nothing","2022-12-07 13:43:10.000" -"01007F600D1B8000","12 is Better Than 6","status-playable","playable","2021-02-22 16:10:12.000" -"0100A840047C2000","12 orbits","status-playable","playable","2020-05-28 16:13:26.000" -"01003FC01670C000","13 Sentinels Aegis Rim","slow;status-ingame","ingame","2024-06-10 20:33:38.000" -"0100C54015002000","13 Sentinels Aegis Rim Demo","status-playable;demo","playable","2022-04-13 14:15:48.000" -"01007E600EEE6000","140","status-playable","playable","2020-08-05 20:01:33.000" -"0100B94013D28000","16-Bit Soccer Demo","status-playable","playable","2021-02-09 00:23:07.000" -"01005CA0099AA000","1917 - The Alien Invasion DX","status-playable","playable","2021-01-08 22:11:16.000" -"0100829010F4A000","1971 PROJECT HELIOS","status-playable","playable","2021-04-14 13:50:19.000" -"0100D1000B18C000","1979 Revolution: Black Friday","nvdec;status-playable","playable","2021-02-21 21:03:43.000" -"01007BB00FC8A000","198X","status-playable","playable","2020-08-07 13:24:38.000" -"010075601150A000","1993 Shenandoah","status-playable","playable","2020-10-24 13:55:42.000" -"0100148012550000","1993 Shenandoah Demo","status-playable","playable","2021-02-09 00:43:43.000" -"010096500EA94000","2048 Battles","status-playable","playable","2020-12-12 14:21:25.000" -"010024C0067C4000","2064: Read Only Memories INTEGRAL","deadlock;status-menus","menus","2020-05-28 16:53:58.000" -"0100749009844000","20XX","gpu;status-ingame","ingame","2023-08-14 09:41:44.000" -"01007550131EE000","2urvive","status-playable","playable","2022-11-17 13:49:37.000" -"0100E20012886000","2weistein – The Curse of the Red Dragon","status-playable;nvdec;UE4","playable","2022-11-18 14:47:07.000" -"0100DAC013D0A000","30 in 1 game collection vol. 2","status-playable;online-broken","playable","2022-10-15 17:22:27.000" -"010056D00E234000","30-in-1 Game Collection","status-playable;online-broken","playable","2022-10-15 17:47:09.000" -"0100FB5010D2E000","3000th Duel","status-playable","playable","2022-09-21 17:12:08.000" -"01003670066DE000","36 Fragments of Midnight","status-playable","playable","2020-05-28 15:12:59.000" -"0100AF400C4CE000","39 Days to Mars","status-playable","playable","2021-02-21 22:12:46.000" -"010010C013F2A000","3D Arcade Fishing","status-playable","playable","2022-10-25 21:50:51.000" -"","3D MiniGolf","status-playable","playable","2021-01-06 09:22:11.000" -"","4x4 Dirt Track","status-playable","playable","2020-12-12 21:41:42.000" -"010010100FF14000","60 Parsecs!","status-playable","playable","2022-09-17 11:01:17.000" -"0100969005E98000","60 Seconds!","services;status-ingame","ingame","2021-11-30 01:04:14.000" -"","6180 the moon","status-playable","playable","2020-05-28 15:39:24.000" -"","64","status-playable","playable","2020-12-12 21:31:58.000" -"","7 Billion Humans","32-bit;status-playable","playable","2020-12-17 21:04:58.000" -"","7th Sector","nvdec;status-playable","playable","2020-08-10 14:22:14.000" -"","8-BIT ADVENTURE STEINS;GATE","audio;status-ingame","ingame","2020-01-12 15:05:06.000" -"","80 Days","status-playable","playable","2020-06-22 21:43:01.000" -"","80's OVERDRIVE","status-playable","playable","2020-10-16 14:33:32.000" -"","88 Heroes","status-playable","playable","2020-05-28 14:13:02.000" -"","9 Monkeys of Shaolin","UE4;gpu;slow;status-ingame","ingame","2020-11-17 11:58:43.000" -"0100C5F012E3E000","9 Monkeys of Shaolin Demo","UE4;gpu;nvdec;status-ingame","ingame","2021-02-09 01:03:30.000" -"","911 Operator Deluxe Edition","status-playable","playable","2020-07-14 13:57:44.000" -"","99Vidas","online;status-playable","playable","2020-10-29 13:00:40.000" -"010023500C2F0000","99Vidas Demo","status-playable","playable","2021-02-09 12:51:31.000" -"","9th Dawn III","status-playable","playable","2020-12-12 22:27:27.000" -"010096A00CC80000","A Ch'ti Bundle","status-playable;nvdec","playable","2022-10-04 12:48:44.000" -"","A Dark Room","gpu;status-ingame","ingame","2020-12-14 16:14:28.000" -"0100582012B90000","A Duel Hand Disaster Trackher: DEMO","crash;demo;nvdec;status-ingame","ingame","2021-03-24 18:45:27.000" -"010026B006802000","A Duel Hand Disaster: Trackher","status-playable;nvdec;online-working","playable","2022-09-04 14:24:55.000" -"","A Frog Game","status-playable","playable","2020-12-14 16:09:53.000" -"01009E1011EC4000","A HERO AND A GARDEN","status-playable","playable","2022-12-05 16:37:47.000" -"010056E00853A000","A Hat In Time","status-playable","playable","2024-06-25 19:52:44.000" -"01005EF00CFDA000","A Knight's Quest","status-playable;UE4","playable","2022-09-12 20:44:20.000" -"","A Short Hike","status-playable","playable","2020-10-15 00:19:58.000" -"","A Sound Plan","crash;status-boots","boots","2020-12-14 16:46:21.000" -"01007DD011C4A000","A Summer with the Shiba Inu","status-playable","playable","2021-06-10 20:51:16.000" -"01008DD006C52000","A magical high school girl","status-playable","playable","2022-07-19 14:40:50.000" -"0100A3E010E56000","A-Train: All Aboard! Tourism","nvdec;status-playable","playable","2021-04-06 17:48:19.000" -"0100C1300BBC6000","ABZU","status-playable;UE4","playable","2022-07-19 15:02:52.000" -"01003C400871E000","ACA NEOGEO 2020 SUPER BASEBALL","online;status-playable","playable","2021-04-12 13:23:51.000" -"0100FC000AFC6000","ACA NEOGEO 3 COUNT BOUT","online;status-playable","playable","2021-04-12 13:16:42.000" -"0100AC40038F4000","ACA NEOGEO AERO FIGHTERS 2","online;status-playable","playable","2021-04-08 15:44:09.000" -"0100B91008780000","ACA NEOGEO AERO FIGHTERS 3","online;status-playable","playable","2021-04-12 13:11:17.000" -"0100B4800AFBA000","ACA NEOGEO AGGRESSORS OF DARK KOMBAT","online;status-playable","playable","2021-04-01 22:48:01.000" -"01003FE00A2F6000","ACA NEOGEO BASEBALL STARS PROFESSIONAL","online;status-playable","playable","2021-04-01 21:23:05.000" -"","ACA NEOGEO BLAZING STAR","crash;services;status-menus","menus","2020-05-26 17:29:02.000" -"0100D2400AFB0000","ACA NEOGEO CROSSED SWORDS","online;status-playable","playable","2021-04-01 20:42:59.000" -"0100EE6002B48000","ACA NEOGEO FATAL FURY","online;status-playable","playable","2021-04-01 20:36:23.000" -"","ACA NEOGEO FOOTBALL FRENZY","status-playable","playable","2021-03-29 20:12:12.000" -"0100CB2001DB8000","ACA NEOGEO GAROU: MARK OF THE WOLVES","online;status-playable","playable","2021-04-01 20:31:10.000" -"01005D700A2F8000","ACA NEOGEO GHOST PILOTS","online;status-playable","playable","2021-04-01 20:26:45.000" -"01000D10038E6000","ACA NEOGEO LAST RESORT","online;status-playable","playable","2021-04-01 19:51:22.000" -"","ACA NEOGEO LEAGUE BOWLING","crash;services;status-menus","menus","2020-05-26 17:11:04.000" -"","ACA NEOGEO MAGICAL DROP II","crash;services;status-menus","menus","2020-05-26 16:48:24.000" -"01007920038F6000","ACA NEOGEO MAGICIAN LORD","online;status-playable","playable","2021-04-01 19:33:26.000" -"0100EBE002B3E000","ACA NEOGEO METAL SLUG","status-playable","playable","2021-02-21 13:56:48.000" -"010086300486E000","ACA NEOGEO METAL SLUG 2","online;status-playable","playable","2021-04-01 19:25:52.000" -"","ACA NEOGEO METAL SLUG 3","crash;services;status-menus","menus","2020-05-26 16:32:45.000" -"01009CE00AFAE000","ACA NEOGEO METAL SLUG 4","online;status-playable","playable","2021-04-01 18:12:18.000" -"","ACA NEOGEO Metal Slug X","crash;services;status-menus","menus","2020-05-26 14:07:20.000" -"010038F00AFA0000","ACA NEOGEO Money Puzzle Exchanger","online;status-playable","playable","2021-04-01 17:59:56.000" -"01002E70032E8000","ACA NEOGEO NEO TURF MASTERS","status-playable","playable","2021-02-21 15:12:01.000" -"010052A00A306000","ACA NEOGEO NINJA COMBAT","status-playable","playable","2021-03-29 21:17:28.000" -"01007E800AFB6000","ACA NEOGEO NINJA COMMANDO","online;status-playable","playable","2021-04-01 17:28:18.000" -"01003A5001DBA000","ACA NEOGEO OVER TOP","status-playable","playable","2021-02-21 13:16:25.000" -"010088500878C000","ACA NEOGEO REAL BOUT FATAL FURY SPECIAL","online;status-playable","playable","2021-04-01 17:18:27.000" -"01005C9002B42000","ACA NEOGEO SAMURAI SHODOWN","online;status-playable","playable","2021-04-01 17:11:35.000" -"010047F001DBC000","ACA NEOGEO SAMURAI SHODOWN IV","online;status-playable","playable","2021-04-12 12:58:54.000" -"010049F00AFE8000","ACA NEOGEO SAMURAI SHODOWN SPECIAL V","online;status-playable","playable","2021-04-10 18:07:13.000" -"01009B300872A000","ACA NEOGEO SENGOKU 2","online;status-playable","playable","2021-04-10 17:36:44.000" -"01008D000877C000","ACA NEOGEO SENGOKU 3","online;status-playable","playable","2021-04-10 16:11:53.000" -"","ACA NEOGEO SHOCK TROOPERS","crash;services;status-menus","menus","2020-05-26 15:29:34.000" -"01007D1004DBA000","ACA NEOGEO SPIN MASTER","online;status-playable","playable","2021-04-10 15:50:19.000" -"010055A00A300000","ACA NEOGEO SUPER SIDEKICKS 2","online;status-playable","playable","2021-04-10 16:05:58.000" -"0100A4D00A308000","ACA NEOGEO SUPER SIDEKICKS 3: THE NEXT GLORY","online;status-playable","playable","2021-04-10 15:39:22.000" -"","ACA NEOGEO THE KING OF FIGHTERS '94","crash;services;status-menus","menus","2020-05-26 15:03:44.000" -"01009DC001DB6000","ACA NEOGEO THE KING OF FIGHTERS '95","status-playable","playable","2021-03-29 20:27:35.000" -"01006F0004FB4000","ACA NEOGEO THE KING OF FIGHTERS '96","online;status-playable","playable","2021-04-10 14:49:10.000" -"0100170008728000","ACA NEOGEO THE KING OF FIGHTERS '97","online;status-playable","playable","2021-04-10 14:43:27.000" -"","ACA NEOGEO THE KING OF FIGHTERS '98","crash;services;status-menus","menus","2020-05-26 14:54:20.000" -"0100583001DCA000","ACA NEOGEO THE KING OF FIGHTERS '99","online;status-playable","playable","2021-04-10 14:36:56.000" -"0100B97002B44000","ACA NEOGEO THE KING OF FIGHTERS 2000","online;status-playable","playable","2021-04-10 15:24:35.000" -"010048200AFC2000","ACA NEOGEO THE KING OF FIGHTERS 2001","online;status-playable","playable","2021-04-10 15:16:23.000" -"0100CFD00AFDE000","ACA NEOGEO THE KING OF FIGHTERS 2002","online;status-playable","playable","2021-04-10 15:01:55.000" -"0100EF100AFE6000","ACA NEOGEO THE KING OF FIGHTERS 2003","online;status-playable","playable","2021-04-10 14:54:31.000" -"0100699008792000","ACA NEOGEO THE LAST BLADE 2","online;status-playable","playable","2021-04-10 14:31:54.000" -"0100F7F00AFA2000","ACA NEOGEO THE SUPER SPY","online;status-playable","playable","2021-04-10 14:26:33.000" -"0100CEF001DC0000","ACA NEOGEO WAKU WAKU 7","online;status-playable","playable","2021-04-10 14:20:52.000" -"","ACA NEOGEO WORLD HEROES PERFECT","crash;services;status-menus","menus","2020-05-26 14:14:36.000" -"","ACA NEOGEO ZUPAPA!","online;status-playable","playable","2021-03-25 20:07:33.000" -"0100DBC0081A4000","ACORN Tactics","status-playable","playable","2021-02-22 12:57:40.000" -"01008C901266E000","ADVERSE","UE4;status-playable","playable","2021-04-26 14:32:51.000" -"0100A0400DDE0000","AER - Memories of Old","nvdec;status-playable","playable","2021-03-05 18:43:43.000" -"01001B400D334000","AFL Evolution 2","slow;status-playable;online-broken;UE4","playable","2022-12-07 12:45:56.000" -"0100C1700FB34000","AI: The Somnium Files Demo","nvdec;status-playable","playable","2021-02-10 12:52:33.000" -"01003DD00BFEE000","AIRHEART - Tales of Broken Wings","status-playable","playable","2021-02-26 15:20:27.000" -"","ALPHA","status-playable","playable","2020-12-13 12:17:45.000" -"010020D01AD24000","ANIMAL WELL","status-playable","playable","2024-05-22 18:01:49.000" -"","ANIMUS","status-playable","playable","2020-12-13 15:11:47.000" -"010047000E9AA000","AO Tennis 2","status-playable;online-broken","playable","2022-09-17 12:05:07.000" -"010054500E6D4000","APE OUT DEMO","status-playable","playable","2021-02-10 14:33:06.000" -"0100AC10085CE000","AQUA KITTY UDX","online;status-playable","playable","2021-04-12 15:34:11.000" -"","ARCADE FUZZ","status-playable","playable","2020-08-15 12:37:36.000" -"0100691013C46000","ARIA CHRONICLE","status-playable","playable","2022-11-16 13:50:55.000" -"01009B500007C000","ARMS","status-playable;ldn-works;LAN","playable","2024-08-28 07:49:24.000" -"","ARMS Demo","status-playable","playable","2021-02-10 16:30:13.000" -"","ASCENDANCE","status-playable","playable","2021-01-05 10:54:40.000" -"0100B9400FA38000","ATOM RPG","status-playable;nvdec","playable","2022-10-22 10:11:48.000" -"","ATOMIK RunGunJumpGun","status-playable","playable","2020-12-14 13:19:24.000" -"","ATOMINE","gpu;nvdec;slow;status-playable","playable","2020-12-14 18:56:50.000" -"01000F600B01E000","ATV Drift & Tricks","UE4;online;status-playable","playable","2021-04-08 17:29:17.000" -"0100E100128BA000","AVICII Invector Demo","status-playable","playable","2021-02-10 21:04:58.000" -"010097A00CC0A000","Aaero","status-playable;nvdec","playable","2022-07-19 14:49:55.000" -"","Aborigenus","status-playable","playable","2020-08-05 19:47:24.000" -"","Absolute Drift","status-playable","playable","2020-12-10 14:02:44.000" -"010047F012BE2000","Abyss of The Sacrifice","status-playable;nvdec","playable","2022-10-21 13:56:28.000" -"0100A9900CB5C000","Access Denied","status-playable","playable","2022-07-19 15:25:10.000" -"01007C50132C8000","Ace Angler: Fishing Spirits","status-menus;crash","menus","2023-03-03 03:21:39.000" -"010033401E68E000","Ace Attorney Investigations Collection DEMO","status-playable","playable","2024-09-07 06:16:42.000" -"010039301B7E0000","Ace Combat 7 - Skies Unknown Deluxe Edition","gpu;status-ingame;UE4","ingame","2024-09-27 14:31:43.000" -"0100FF1004D56000","Ace of Seafood","status-playable","playable","2022-07-19 15:32:25.000" -"","Aces of the Luftwaffe Squadron","nvdec;slow;status-playable","playable","2020-05-27 12:29:42.000" -"010054300D822000","Aces of the Luftwaffe Squadron Demo","nvdec;status-playable","playable","2021-02-09 13:12:28.000" -"","Across the Grooves","status-playable","playable","2020-06-27 12:29:51.000" -"","Acthung! Cthulhu Tactics","status-playable","playable","2020-12-14 18:40:27.000" -"010039A010DA0000","Active Neurons","status-playable","playable","2021-01-27 21:31:21.000" -"01000D1011EF0000","Active Neurons 2","status-playable","playable","2022-10-07 16:21:42.000" -"010031C0122B0000","Active Neurons 2 Demo","status-playable","playable","2021-02-09 13:40:21.000" -"0100EE1013E12000","Active Neurons 3","status-playable","playable","2021-03-24 12:20:20.000" -"","Actual Sunlight","gpu;status-ingame","ingame","2020-12-14 17:18:41.000" -"0100C0C0040E4000","Adam's Venture: Origins","status-playable","playable","2021-03-04 18:43:57.000" -"","Adrenaline Rush - Miami Drive","status-playable","playable","2020-12-12 22:49:50.000" -"0100300012F2A000","Advance Wars 1+2: Re-Boot Camp","status-playable","playable","2024-01-30 18:19:44.000" -"","Adventure Llama","status-playable","playable","2020-12-14 19:32:24.000" -"","Adventure Pinball Bundle","slow;status-playable","playable","2020-12-14 20:31:53.000" -"01003B400A00A000","Adventures of Bertram Fiddle: Episode 1: A Dreadly Business","status-playable;nvdec","playable","2022-09-17 11:07:56.000" -"","Adventures of Chris","status-playable","playable","2020-12-12 23:00:02.000" -"0100A0A0136E8000","Adventures of Chris Demo","status-playable","playable","2021-02-09 13:49:21.000" -"","Adventures of Pip","nvdec;status-playable","playable","2020-12-12 22:11:55.000" -"010064500AF72000","Aegis Defenders Demo","status-playable","playable","2021-02-09 14:04:17.000" -"01008E6006502000","Aegis Defenders0","status-playable","playable","2021-02-22 13:29:33.000" -"","Aeolis Tournament","online;status-playable","playable","2020-12-12 22:02:14.000" -"01006710122CE000","Aeolis Tournament Demo","nvdec;status-playable","playable","2021-02-09 14:22:30.000" -"0100E9B013D4A000","Aerial Knight's Never Yield","status-playable","playable","2022-10-25 22:05:00.000" -"0100875011D0C000","Aery","status-playable","playable","2021-03-07 15:25:51.000" -"010018E012914000","Aery - Sky Castle","status-playable","playable","2022-10-21 17:58:49.000" -"0100DF8014056000","Aery - A Journey Beyond Time","status-playable","playable","2021-04-05 15:52:25.000" -"0100087012810000","Aery - Broken Memories","status-playable","playable","2022-10-04 13:11:52.000" -"","Aery - Calm Mind - 0100A801539000","status-playable","playable","2022-11-14 14:26:58.000" -"0100B1C00949A000","AeternoBlade Demo Version","nvdec;status-playable","playable","2021-02-09 14:39:26.000" -"","AeternoBlade I","nvdec;status-playable","playable","2020-12-14 20:06:48.000" -"01009D100EA28000","AeternoBlade II","status-playable;online-broken;UE4;vulkan-backend-bug","playable","2022-09-12 21:11:18.000" -"","AeternoBlade II Demo Version","gpu;nvdec;status-ingame","ingame","2021-02-09 15:10:19.000" -"0100DB100BBCE000","Afterparty","status-playable","playable","2022-09-22 12:23:19.000" -"","Agatha Christie - The ABC Murders","status-playable","playable","2020-10-27 17:08:23.000" -"","Agatha Knife","status-playable","playable","2020-05-28 12:37:58.000" -"","Agent A: A puzzle in disguise","status-playable","playable","2020-11-16 22:53:27.000" -"01008E8012C02000","Agent A: A puzzle in disguise (Demo)","status-playable","playable","2021-02-09 18:30:41.000" -"0100E4700E040000","Ages of Mages: the Last Keeper","status-playable;vulkan-backend-bug","playable","2022-10-04 11:44:05.000" -"010004D00A9C0000","Aggelos","gpu;status-ingame","ingame","2023-02-19 13:24:23.000" -"","Agony","UE4;crash;status-boots","boots","2020-07-10 16:21:18.000" -"010089B00D09C000","Ai: the Somnium Files","status-playable;nvdec","playable","2022-09-04 14:45:06.000" -"","Ailment","status-playable","playable","2020-12-12 22:30:41.000" -"","Air Conflicts: Pacific Carriers","status-playable","playable","2021-01-04 10:52:50.000" -"","Air Hockey","status-playable","playable","2020-05-28 16:44:37.000" -"","Air Missions: HIND","status-playable","playable","2020-12-13 10:16:45.000" -"0100E95011FDC000","Aircraft Evolution","nvdec;status-playable","playable","2021-06-14 13:30:18.000" -"010010A00DB72000","Airfield Mania Demo","services;status-boots;demo","boots","2022-04-10 03:43:02.000" -"01007F100DE52000","Akane","status-playable;nvdec","playable","2022-07-21 00:12:18.000" -"","Akash Path of the Five","gpu;nvdec;status-ingame","ingame","2020-12-14 22:33:12.000" -"010053100B0EA000","Akihabara - Feel the Rhythm Remixed","status-playable","playable","2021-02-22 14:39:35.000" -"","Akuarium","slow;status-playable","playable","2020-12-12 23:43:36.000" -"","Akuto","status-playable","playable","2020-08-04 19:43:27.000" -"0100F5400AB6C000","Alchemic Jousts","gpu;status-ingame","ingame","2022-12-08 15:06:28.000" -"","Alchemist's Castle","status-playable","playable","2020-12-12 23:54:08.000" -"","Alder's Blood","status-playable","playable","2020-08-28 15:15:23.000" -"01004510110C4000","Alder's Blood Prologue","crash;status-ingame","ingame","2021-02-09 19:03:03.000" -"01000E000EEF8000","Aldred - Knight of Honor","services;status-playable","playable","2021-11-30 01:49:17.000" -"010025D01221A000","Alex Kidd in Miracle World DX","status-playable","playable","2022-11-14 15:01:34.000" -"","Alien Cruise","status-playable","playable","2020-08-12 13:56:05.000" -"","Alien Escape","status-playable","playable","2020-06-03 23:43:18.000" -"010075D00E8BA000","Alien: Isolation","status-playable;nvdec;vulkan-backend-bug","playable","2022-09-17 11:48:41.000" -"0100CBD012FB6000","All Walls Must Fall","status-playable;UE4","playable","2022-10-15 19:16:30.000" -"0100C1F00A9B8000","All-Star Fruit Racing","status-playable;nvdec;UE4","playable","2022-07-21 00:35:37.000" -"0100AC501122A000","Alluris","gpu;status-ingame;UE4","ingame","2023-08-02 23:13:50.000" -"","Almightree the Last Dreamer","slow;status-playable","playable","2020-12-15 13:59:03.000" -"","Along the Edge","status-playable","playable","2020-11-18 15:00:07.000" -"","Alpaca Ball: Allstars","nvdec;status-playable","playable","2020-12-11 12:26:29.000" -"","Alphaset by POWGI","status-playable","playable","2020-12-15 15:15:15.000" -"","Alt-Frequencies","status-playable","playable","2020-12-15 19:01:33.000" -"","Alteric","status-playable","playable","2020-11-08 13:53:22.000" -"","Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz","status-playable","playable","2020-08-31 14:17:42.000" -"0100A8A00D27E000","Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz Trial version","status-playable","playable","2021-02-10 13:33:59.000" -"010045201487C000","Aluna: Sentinel of the Shards","status-playable;nvdec","playable","2022-10-25 22:17:03.000" -"","Alwa's Awakening","status-playable","playable","2020-10-13 11:52:01.000" -"","Alwa's Legacy","status-playable","playable","2020-12-13 13:00:57.000" -"","American Fugitive","nvdec;status-playable","playable","2021-01-04 20:45:11.000" -"010089D00A3FA000","American Ninja Warrior: Challenge","nvdec;status-playable","playable","2021-06-09 13:11:17.000" -"01003CC00D0BE000","Amnesia: Collection","status-playable","playable","2022-10-04 13:36:15.000" -"010041D00DEB2000","Amoeba Battle - Microscopic RTS Action","status-playable","playable","2021-05-06 13:33:41.000" -"0100B0C013912000","Among Us","status-menus;online;ldn-broken","menus","2021-09-22 15:20:17.000" -"010046500C8D2000","Among the Sleep - Enhanced Edition","nvdec;status-playable","playable","2021-06-03 15:06:25.000" -"01000FD00DF78000","AnShi","status-playable;nvdec;UE4","playable","2022-10-21 19:37:01.000" -"010050900E1C6000","Anarcute","status-playable","playable","2021-02-22 13:17:59.000" -"01009EE0111CC000","Ancestors Legacy","status-playable;nvdec;UE4","playable","2022-10-01 12:25:36.000" -"","Ancient Rush 2","UE4;crash;status-menus","menus","2020-07-14 14:58:47.000" -"0100AE000AEBC000","Angels of Death","nvdec;status-playable","playable","2021-02-22 14:17:15.000" -"010001E00A5F6000","AngerForce: Reloaded for Nintendo Switch","status-playable","playable","2022-07-21 10:37:17.000" -"0100F3500D05E000","Angry Bunnies: Colossal Carrot Crusade","status-playable;online-broken","playable","2022-09-04 14:53:26.000" -"","Angry Video Game Nerd I & II Deluxe","crash;status-ingame","ingame","2020-12-12 23:59:54.000" -"01007A400B3F8000","Anima Gate of Memories: The Nameless Chronicles","status-playable","playable","2021-06-14 14:33:06.000" -"010033F00B3FA000","Anima: Arcane Edition","nvdec;status-playable","playable","2021-01-26 16:55:51.000" -"0100706005B6A000","Anima: Gate of Memories","nvdec;status-playable","playable","2021-06-16 18:13:18.000" -"0100F38011CFE000","Animal Crossing New Horizons Island Transfer Tool","services;status-ingame;Needs Update;Incomplete","ingame","2022-12-07 13:51:19.000" -"01006F8002326000","Animal Crossing: New Horizons","gpu;status-ingame;crash;nvdec;online-broken;ldn-works;mac-bug","ingame","2024-09-23 13:31:49.000" -"","Animal Fight Club","gpu;status-ingame","ingame","2020-12-13 13:13:33.000" -"","Animal Fun for Toddlers and Kids","services;status-boots","boots","2020-12-15 16:45:29.000" -"","Animal Hunter Z","status-playable","playable","2020-12-13 12:50:35.000" -"010033C0121DC000","Animal Pairs - Matching & Concentration Game for Toddlers & Kids","services;status-boots","boots","2021-11-29 23:43:14.000" -"010065B009B3A000","Animal Rivals Switch","status-playable","playable","2021-02-22 14:02:42.000" -"0100EFE009424000","Animal Super Squad","UE4;status-playable","playable","2021-04-23 20:50:50.000" -"","Animal Up","status-playable","playable","2020-12-13 15:39:02.000" -"","Animals for Toddlers","services;status-boots","boots","2020-12-15 17:27:27.000" -"","Animated Jigsaws Collection","nvdec;status-playable","playable","2020-12-15 15:58:34.000" -"0100A1900B5B8000","Animated Jigsaws: Beautiful Japanese Scenery DEMO","nvdec;status-playable","playable","2021-02-10 13:49:56.000" -"","Anime Studio Story","status-playable","playable","2020-12-15 18:14:05.000" -"01002B300EB86000","Anime Studio Story Demo","status-playable","playable","2021-02-10 14:50:39.000" -"0100E5A00FD38000","Animus: Harbinger","status-playable","playable","2022-09-13 22:09:20.000" -"","Ankh Guardian - Treasure of the Demon's Temple","status-playable","playable","2020-12-13 15:55:49.000" -"","Anode","status-playable","playable","2020-12-15 17:18:58.000" -"0100CB9018F5A000","Another Code: Recollection","gpu;status-ingame;crash","ingame","2024-09-06 05:58:52.000" -"","Another Sight","UE4;gpu;nvdec;status-ingame","ingame","2020-12-03 16:49:59.000" -"01003C300AAAE000","Another World","slow;status-playable","playable","2022-07-21 10:42:38.000" -"010054C00D842000","Anthill","services;status-menus;nvdec","menus","2021-11-18 09:25:25.000" -"0100596011E20000","Anti-Hero Bundle","status-playable;nvdec","playable","2022-10-21 20:10:30.000" -"","Antiquia Lost","status-playable","playable","2020-05-28 11:57:32.000" -"","Antventor","nvdec;status-playable","playable","2020-12-15 20:09:27.000" -"0100FA100620C000","Ao no Kanata no Four Rhythm","status-playable","playable","2022-07-21 10:50:42.000" -"0100990011866000","Aokana - Four Rhythms Across the Blue","status-playable","playable","2022-10-04 13:50:26.000" -"01005B100C268000","Ape Out","status-playable","playable","2022-09-26 19:04:47.000" -"","Aperion Cyberstorm","status-playable","playable","2020-12-14 00:40:16.000" -"01008CA00D71C000","Aperion Cyberstorm Demo","status-playable","playable","2021-02-10 15:53:21.000" -"","Apocalipsis","deadlock;status-menus","menus","2020-05-27 12:56:37.000" -"","Apocryph","gpu;status-ingame","ingame","2020-12-13 23:24:10.000" -"","Apparition","nvdec;slow;status-ingame","ingame","2020-12-13 23:57:04.000" -"","Aqua Lungers","crash;status-ingame","ingame","2020-12-14 11:25:57.000" -"0100D0D00516A000","Aqua Moto Racing Utopia","status-playable","playable","2021-02-21 21:21:00.000" -"010071800BA74000","Aragami: Shadow Edition","nvdec;status-playable","playable","2021-02-21 20:33:23.000" -"0100C7D00E6A0000","Arc of Alchemist","status-playable;nvdec","playable","2022-10-07 19:15:54.000" -"0100BE80097FA000","Arcade Archives 10-Yard Fight","online;status-playable","playable","2021-03-25 21:26:41.000" -"01005DD00BE08000","Arcade Archives ALPHA MISSION","online;status-playable","playable","2021-04-15 09:20:43.000" -"010083800DC70000","Arcade Archives ALPINE SKI","online;status-playable","playable","2021-04-15 09:28:46.000" -"010014F001DE2000","Arcade Archives ARGUS","online;status-playable","playable","2021-04-16 06:51:25.000" -"0100BEC00C7A2000","Arcade Archives ATHENA","online;status-playable","playable","2021-04-16 07:10:12.000" -"010014F001DE2000","Arcade Archives Armed F","online;status-playable","playable","2021-04-16 07:00:17.000" -"0100426001DE4000","Arcade Archives Atomic Robo-Kid","online;status-playable","playable","2021-04-16 07:20:29.000" -"0100192009824000","Arcade Archives BOMB JACK","online;status-playable","playable","2021-04-16 09:48:26.000" -"0100EDC00E35A000","Arcade Archives CLU CLU LAND","online;status-playable","playable","2021-04-16 10:00:42.000" -"0100BB1001DD6000","Arcade Archives CRAZY CLIMBER","online;status-playable","playable","2021-03-25 22:24:15.000" -"010007A00980C000","Arcade Archives City CONNECTION","online;status-playable","playable","2021-03-25 22:16:15.000" -"","Arcade Archives DONKEY KONG","Needs Update;crash;services;status-menus","menus","2021-03-24 18:18:43.000" -"0100F25001DD0000","Arcade Archives DOUBLE DRAGON","online;status-playable","playable","2021-03-25 22:44:34.000" -"01009E3001DDE000","Arcade Archives DOUBLE DRAGON II The Revenge","online;status-playable","playable","2021-04-12 16:05:29.000" -"0100496006EC8000","Arcade Archives FRONT LINE","online;status-playable","playable","2021-05-05 14:10:49.000" -"01009A4008A30000","Arcade Archives HEROIC EPISODE","online;status-playable","playable","2021-03-25 23:01:26.000" -"01007D200D3FC000","Arcade Archives ICE CLIMBER","online;status-playable","playable","2021-05-05 14:18:34.000" -"010049400C7A8000","Arcade Archives IKARI WARRIORS","online;status-playable","playable","2021-05-05 14:24:46.000" -"010008300C978000","Arcade Archives IMAGE FIGHT","online;status-playable","playable","2021-05-05 14:31:21.000" -"01000DB00980A000","Arcade Archives Ikki","online;status-playable","playable","2021-03-25 23:11:28.000" -"010010B008A36000","Arcade Archives Kid Niki Radical Ninja","audio;status-ingame;online","ingame","2022-07-21 11:02:04.000" -"0100E7C001DE0000","Arcade Archives Kid's Horehore Daisakusen","online;status-playable","playable","2021-04-12 16:21:29.000" -"","Arcade Archives LIFE FORCE","status-playable","playable","2020-09-04 13:26:25.000" -"0100755004608000","Arcade Archives MARIO BROS.","online;status-playable","playable","2021-03-26 11:31:32.000" -"01000BE001DD8000","Arcade Archives MOON CRESTA","online;status-playable","playable","2021-05-05 14:39:29.000" -"01003000097FE000","Arcade Archives MOON PATROL","online;status-playable","playable","2021-03-26 11:42:04.000" -"01003EF00D3B4000","Arcade Archives NINJA GAIDEN","audio;online;status-ingame","ingame","2021-04-12 16:27:53.000" -"01002F300D2C6000","Arcade Archives Ninja Spirit","online;status-playable","playable","2021-05-05 14:45:31.000" -"","Arcade Archives Ninja-Kid","online;status-playable","playable","2021-03-26 20:55:07.000" -"","Arcade Archives OMEGA FIGHTER","crash;services;status-menus","menus","2020-08-18 20:50:54.000" -"","Arcade Archives PLUS ALPHA","audio;status-ingame","ingame","2020-07-04 20:47:55.000" -"0100A6E00D3F8000","Arcade Archives POOYAN","online;status-playable","playable","2021-05-05 17:58:19.000" -"01000D200C7A4000","Arcade Archives PSYCHO SOLDIER","online;status-playable","playable","2021-05-05 18:02:19.000" -"01001530097F8000","Arcade Archives PUNCH-OUT!!","online;status-playable","playable","2021-03-25 22:10:55.000" -"0100FBA00E35C000","Arcade Archives ROAD FIGHTER","online;status-playable","playable","2021-05-05 18:09:17.000" -"010060000BF7C000","Arcade Archives ROUTE 16","online;status-playable","playable","2021-05-05 18:40:41.000" -"0100C2D00981E000","Arcade Archives RYGAR","online;status-playable","playable","2021-04-15 08:48:30.000" -"010081E001DD2000","Arcade Archives Renegade","status-playable;online","playable","2022-07-21 11:45:40.000" -"010069F008A38000","Arcade Archives STAR FORCE","online;status-playable","playable","2021-04-15 08:39:09.000" -"01007A4009834000","Arcade Archives Shusse Ozumo","online;status-playable","playable","2021-05-05 17:52:25.000" -"010008F00B054000","Arcade Archives Sky Skipper","online;status-playable","playable","2021-04-15 08:58:09.000" -"01008C900982E000","Arcade Archives Solomon's Key","online;status-playable","playable","2021-04-19 16:27:18.000" -"","Arcade Archives TERRA CRESTA","crash;services;status-menus","menus","2020-08-18 20:20:55.000" -"0100348001DE6000","Arcade Archives TERRA FORCE","online;status-playable","playable","2021-04-16 20:03:27.000" -"0100DFD016B7A000","Arcade Archives TETRIS THE GRAND MASTER","status-playable","playable","2024-06-23 01:50:29.000" -"0100DC000983A000","Arcade Archives THE NINJA WARRIORS","online;slow;status-ingame","ingame","2021-04-16 19:54:56.000" -"0100AF300D2E8000","Arcade Archives TIME PILOT","online;status-playable","playable","2021-04-16 19:22:31.000" -"010029D006ED8000","Arcade Archives Traverse USA","online;status-playable","playable","2021-04-15 08:11:06.000" -"010042200BE0C000","Arcade Archives URBAN CHAMPION","online;status-playable","playable","2021-04-16 10:20:03.000" -"01004EC00E634000","Arcade Archives VS. GRADIUS","online;status-playable","playable","2021-04-12 14:53:58.000" -"","Arcade Archives VS. SUPER MARIO BROS.","online;status-playable","playable","2021-04-08 14:48:11.000" -"01001B000D8B6000","Arcade Archives WILD WESTERN","online;status-playable","playable","2021-04-16 10:11:36.000" -"010050000D6C4000","Arcade Classics Anniversary Collection","status-playable","playable","2021-06-03 13:55:10.000" -"","Arcade Spirits","status-playable","playable","2020-06-21 11:45:03.000" -"0100E680149DC000","Arcaea","status-playable","playable","2023-03-16 19:31:21.000" -"0100E53013E1C000","Arcanoid Breakout","status-playable","playable","2021-01-25 23:28:02.000" -"","Archaica: Path of LightInd","crash;status-nothing","nothing","2020-10-16 13:22:26.000" -"","Area 86","status-playable","playable","2020-12-16 16:45:52.000" -"0100D4A00B284000","Ark: Survival Evolved","gpu;status-ingame;nvdec;online-broken;UE4;ldn-untested","ingame","2024-04-16 00:53:56.000" -"","Arkanoid vs Space Invaders","services;status-ingame","ingame","2021-01-21 12:50:30.000" -"010069A010606000","Arkham Horror: Mother's Embrace","nvdec;status-playable","playable","2021-04-19 15:40:55.000" -"","Armed 7 DX","status-playable","playable","2020-12-14 11:49:56.000" -"","Armello","nvdec;status-playable","playable","2021-01-07 11:43:26.000" -"0100184011B32000","Arrest of a stone Buddha","status-nothing;crash","nothing","2022-12-07 16:55:00.000" -"","Arrog","status-playable","playable","2020-12-16 17:20:50.000" -"01006AA013086000","Art Sqool","status-playable;nvdec","playable","2022-10-16 20:42:37.000" -"01008EC006BE2000","Art of Balance","gpu;status-ingame;ldn-works","ingame","2022-07-21 17:13:57.000" -"010062F00CAE2000","Art of Balance DEMO","gpu;slow;status-ingame","ingame","2021-02-10 17:17:12.000" -"","Artifact Adventure Gaiden DX","status-playable","playable","2020-12-16 17:49:25.000" -"0100C2500CAB6000","Ary and the Secret of Seasons","status-playable","playable","2022-10-07 20:45:09.000" -"","Asemblance","UE4;gpu;status-ingame","ingame","2020-12-16 18:01:23.000" -"","Ash of Gods: Redemption","deadlock;status-nothing","nothing","2020-08-10 18:08:32.000" -"010027B00E40E000","Ashen","status-playable;nvdec;online-broken;UE4","playable","2022-09-17 12:19:14.000" -"01007B000C834000","Asphalt 9: Legends","services;status-menus;crash;online-broken","menus","2022-12-07 13:28:29.000" -"01007F600B134000","Assassin's Creed III Remastered","status-boots;nvdec","boots","2024-06-25 20:12:11.000" -"010044700DEB0000","Assassin's Creed The Rebel Collection","gpu;status-ingame","ingame","2024-05-19 07:58:56.000" -"0100DF200B24C000","Assault Android Cactus+","status-playable","playable","2021-06-03 13:23:55.000" -"","Assault Chainguns KM","crash;gpu;status-ingame","ingame","2020-12-14 12:48:34.000" -"0100C5E00E540000","Assault on Metaltron Demo","status-playable","playable","2021-02-10 19:48:06.000" -"010057A00C1F6000","Astebreed","status-playable","playable","2022-07-21 17:33:54.000" -"010050400BD38000","Asterix & Obelix XXL 2","deadlock;status-ingame;nvdec","ingame","2022-07-21 17:54:14.000" -"010081500EA1E000","Asterix & Obelix XXL3: The Crystal Menhir","gpu;status-ingame;nvdec;regression","ingame","2022-11-28 14:19:23.000" -"0100F46011B50000","Asterix & Obelix XXL: Romastered","gpu;status-ingame;nvdec;opengl","ingame","2023-08-16 21:22:06.000" -"01007300020FA000","Astral Chain","status-playable","playable","2024-07-17 18:02:19.000" -"","Astro Bears Party","status-playable","playable","2020-05-28 11:21:58.000" -"0100F0400351C000","Astro Duel Deluxe","32-bit;status-playable","playable","2021-06-03 11:21:48.000" -"","AstroWings SpaceWar","status-playable","playable","2020-12-14 13:10:44.000" -"0100B80010C48000","Astrologaster","cpu;status-nothing;32-bit;crash","nothing","2023-06-28 15:39:31.000" -"010099801870E000","Atari 50 The Anniversary Celebration","slow;status-playable","playable","2022-11-14 19:42:10.000" -"0100D9D00EE8C000","Atelier Ayesha: The Alchemist of Dusk DX","status-menus;crash;nvdec;Needs Update","menus","2021-11-24 07:29:54.000" -"0100E5600EE8E000","Atelier Escha & Logy: Alchemists Of The Dusk Sky DX","status-playable;nvdec","playable","2022-11-20 16:01:41.000" -"010023201421E000","Atelier Firis: The Alchemist and the Mysterious Journey DX","gpu;status-ingame;nvdec","ingame","2022-10-25 22:46:19.000" -"","Atelier Lulua ~ The Scion of Arland ~","nvdec;status-playable","playable","2020-12-16 14:29:19.000" -"010009900947A000","Atelier Lydie & Suelle: The Alchemists and the Mysterious Paintings","nvdec;status-playable","playable","2021-06-03 18:37:01.000" -"","Atelier Meruru ~ The Apprentice of Arland ~ DX","nvdec;status-playable","playable","2020-06-12 00:50:48.000" -"010088600C66E000","Atelier Rorona - The Alchemist of Arland - DX","nvdec;status-playable","playable","2021-04-08 15:33:15.000" -"01002D700B906000","Atelier Rorona Arland no Renkinjutsushi DX (JP)","status-playable;nvdec","playable","2022-12-02 17:26:54.000" -"01009A9012022000","Atelier Ryza 2: Lost Legends & the Secret Fairy","status-playable","playable","2022-10-16 21:06:06.000" -"0100D1900EC80000","Atelier Ryza: Ever Darkness & the Secret Hideout","status-playable","playable","2023-10-15 16:36:50.000" -"","Atelier Shallie: Alchemists of the Dusk Sea DX","nvdec;status-playable","playable","2020-11-25 20:54:12.000" -"010082A01538E000","Atelier Sophie 2: The Alchemist of the Mysterious Dream","status-ingame;crash","ingame","2022-12-01 04:34:03.000" -"01001A5014220000","Atelier Sophie: The Alchemist of the Mysterious Book DX","status-playable","playable","2022-10-25 23:06:20.000" -"","Atelier Totori ~ The Adventurer of Arland ~ DX","nvdec;status-playable","playable","2020-06-12 01:04:56.000" -"01005FE00EC4E000","Atomic Heist","status-playable","playable","2022-10-16 21:24:32.000" -"0100AD30095A4000","Atomicrops","status-playable","playable","2022-08-06 10:05:07.000" -"","Attack of the Toy Tanks","slow;status-ingame","ingame","2020-12-14 12:59:12.000" -"","Attack on Titan 2","status-playable","playable","2021-01-04 11:40:01.000" -"","Automachef","status-playable","playable","2020-12-16 19:51:25.000" -"01006B700EA6A000","Automachef Demo","status-playable","playable","2021-02-10 20:35:37.000" -"","Aviary Attorney: Definitive Edition","status-playable","playable","2020-08-09 20:32:12.000" -"","Avicii Invector","status-playable","playable","2020-10-25 12:12:56.000" -"","AvoCuddle","status-playable","playable","2020-09-02 14:50:13.000" -"0100085012D64000","Awakening of Cthulhu","UE4;status-playable","playable","2021-04-26 13:03:07.000" -"01002F1005F3C000","Away: Journey to the Unexpected","status-playable;nvdec;vulkan-backend-bug","playable","2022-11-06 15:31:04.000" -"","Awesome Pea","status-playable","playable","2020-10-11 12:39:23.000" -"010023800D3F2000","Awesome Pea (Demo)","status-playable","playable","2021-02-10 21:48:21.000" -"0100B7D01147E000","Awesome Pea 2","status-playable","playable","2022-10-01 12:34:19.000" -"","Awesome Pea 2 (Demo) - 0100D2011E28000","crash;status-nothing","nothing","2021-02-10 22:08:27.000" -"0100DA3011174000","Axes","status-playable","playable","2021-04-08 13:01:58.000" -"","Axiom Verge","status-playable","playable","2020-10-20 01:07:18.000" -"010075400DEC6000","Ayakashi koi gikyoku Free Trial","status-playable","playable","2021-02-10 22:22:11.000" -"01006AF012FC8000","Azur Lane: Crosswave","UE4;nvdec;status-playable","playable","2021-04-05 15:15:25.000" -"","Azuran Tales: Trials","status-playable","playable","2020-08-12 15:23:07.000" -"01006FB00990E000","Azure Reflections","nvdec;online;status-playable","playable","2021-04-08 13:18:25.000" -"01004E90149AA000","Azure Striker GUNVOLT 3","status-playable","playable","2022-08-10 13:46:49.000" -"0100192003FA4000","Azure Striker Gunvolt: STRIKER PACK","32-bit;status-playable","playable","2024-02-10 23:51:21.000" -"","Azurebreak Heroes","status-playable","playable","2020-12-16 21:26:17.000" -"01009B901145C000","B.ARK","status-playable;nvdec","playable","2022-11-17 13:35:02.000" -"","BAFL","status-playable","playable","2021-01-13 08:32:51.000" -"","BATTLESLOTHS","status-playable","playable","2020-10-03 08:32:22.000" -"","BATTLESTAR GALACTICA Deadlock","nvdec;status-playable","playable","2020-06-27 17:35:44.000" -"","BATTLLOON","status-playable","playable","2020-12-17 15:48:23.000" -"","BEAST Darling! ~Kemomimi Danshi to Himitsu no Ryou~","crash;status-menus","menus","2020-10-04 06:12:08.000" -"","BIG-Bobby-Car - The Big Race","slow;status-playable","playable","2020-12-10 14:25:06.000" -"","BINGO for Nintendo Switch","status-playable","playable","2020-07-23 16:17:36.000" -"0100E62012D3C000","BIT.TRIP RUNNER","status-playable","playable","2022-10-17 14:23:24.000" -"01000AD012D3A000","BIT.TRIP VOID","status-playable","playable","2022-10-17 14:31:23.000" -"0100C4400CB7C000","BLADE ARCUS Rebellion From Shining","status-playable","playable","2022-07-17 18:52:28.000" -"","BLAZBLUE CENTRALFICTION Special Edition","nvdec;status-playable","playable","2020-12-15 23:50:04.000" -"","BOX Align","crash;services;status-nothing","nothing","2020-04-03 17:26:56.000" -"","BOXBOY! + BOXGIRL!","status-playable","playable","2020-11-08 01:11:54.000" -"0100B7200E02E000","BOXBOY! + BOXGIRL! Demo","demo;status-playable","playable","2021-02-13 14:59:08.000" -"","BQM BlockQuest Maker","online;status-playable","playable","2020-07-31 20:56:50.000" -"01003DD00D658000","BULLETSTORM: DUKE OF SWITCH EDITION","status-playable;nvdec","playable","2022-03-03 08:30:24.000" -"","BUSTAFELLOWS","nvdec;status-playable","playable","2020-10-17 20:04:41.000" -"","BUTCHER","status-playable","playable","2021-01-11 18:50:17.000" -"01002CD00A51C000","Baba Is You","status-playable","playable","2022-07-17 05:36:54.000" -"","Back to Bed","nvdec;status-playable","playable","2020-12-16 20:52:04.000" -"0100FEA014316000","Backworlds","status-playable","playable","2022-10-25 23:20:34.000" -"0100EAF00E32E000","BaconMan","status-menus;crash;nvdec","menus","2021-11-20 02:36:21.000" -"01000CB00D094000","Bad Dream: Coma","deadlock;status-boots","boots","2023-08-03 00:54:18.000" -"0100B3B00D81C000","Bad Dream: Fever","status-playable","playable","2021-06-04 18:33:12.000" -"","Bad Dudes","status-playable","playable","2020-12-10 12:30:56.000" -"0100E98006F22000","Bad North","status-playable","playable","2022-07-17 13:44:25.000" -"","Bad North Demo","status-playable","playable","2021-02-10 22:48:38.000" -"010076B011EC8000","Baila Latino","status-playable","playable","2021-04-14 16:40:24.000" -"","Bakugan Champions of Vestroia","status-playable","playable","2020-11-06 19:07:39.000" -"01008260138C4000","Bakumatsu Renka SHINSENGUMI","status-playable","playable","2022-10-25 23:37:31.000" -"0100438012EC8000","Balan Wonderworld","status-playable;nvdec;UE4","playable","2022-10-22 13:08:43.000" -"0100E48013A34000","Balan Wonderworld Demo","gpu;services;status-ingame;UE4;demo","ingame","2023-02-16 20:05:07.000" -"0100CD801CE5E000","Balatro","status-ingame","ingame","2024-04-21 02:01:53.000" -"010010A00DA48000","Baldur's Gate and Baldur's Gate II: Enhanced Editions","32-bit;status-playable","playable","2022-09-12 23:52:15.000" -"0100BC400FB64000","Balthazar's Dreams","status-playable","playable","2022-09-13 00:13:22.000" -"01008D30128E0000","Bamerang","status-playable","playable","2022-10-26 00:29:39.000" -"","Bang Dream Girls Band Party for Nintendo Switch","status-playable","playable","2021-09-19 03:06:58.000" -"","Banner Saga 2","crash;status-boots","boots","2021-01-13 08:56:09.000" -"","Banner Saga 3","slow;status-boots","boots","2021-01-11 16:53:57.000" -"0100CE800B94A000","Banner Saga Trilogy","slow;status-playable","playable","2024-03-06 11:25:20.000" -"010013C010C5C000","Banner of the Maid","status-playable","playable","2021-06-14 15:23:37.000" -"","Baobabs Mauseoleum Ep 1: Ovnifagos Don't Eat Flamingos","status-playable","playable","2020-07-15 05:06:29.000" -"","Baobabs Mausoleum Ep.3: Un Pato en Muertoburgo","nvdec;status-playable","playable","2020-12-17 11:43:10.000" -"","Baobabs Mausoleum Ep2: 1313 Barnabas Dead Ends Drive","status-playable","playable","2020-12-17 11:22:50.000" -"0100D3000AEC2000","Baobabs Mausoleum: DEMO","status-playable","playable","2021-02-10 22:59:25.000" -"01003350102E2000","Barbarous! Tavern of Emyr","status-playable","playable","2022-10-16 21:50:24.000" -"0100F7E01308C000","Barbearian","Needs Update;gpu;status-ingame","ingame","2021-06-28 16:27:50.000" -"010039C0106C6000","Baron: Fur Is Gonna Fly","status-boots;crash","boots","2022-02-06 02:05:43.000" -"","Barry Bradford's Putt Panic Party","nvdec;status-playable","playable","2020-06-17 01:08:34.000" -"01004860080A0000","Baseball Riot","status-playable","playable","2021-06-04 18:07:27.000" -"0100E3100450E000","Bass Pro Shops: The Strike - Championship Edition","gpu;status-boots;32-bit","boots","2022-12-09 15:58:16.000" -"010038600B27E000","Bastion","status-playable","playable","2022-02-15 14:15:24.000" -"","Batbarian: Testament of the Primordials","status-playable","playable","2020-12-17 12:00:59.000" -"0100C07018CA6000","Baten Kaitos I & II HD Remaster (Europe/USA)","services;status-boots;Needs Update","boots","2023-10-01 00:44:32.000" -"0100F28018CA4000","Baten Kaitos I & II HD Remaster (Japan)","services;status-boots;Needs Update","boots","2023-10-24 23:11:54.000" -"","Batman - The Telltale Series","nvdec;slow;status-playable","playable","2021-01-11 18:19:35.000" -"01003f00163ce000","Batman: Arkham City","status-playable","playable","2024-09-11 00:30:19.000" -"0100ACD0163D0000","Batman: Arkham Knight","gpu;status-ingame;mac-bug","ingame","2024-06-25 20:24:42.000" -"","Batman: The Enemy Within","crash;status-nothing","nothing","2020-10-16 05:49:27.000" -"0100747011890000","Battle Axe","status-playable","playable","2022-10-26 00:38:01.000" -"","Battle Chasers: Nightwar","nvdec;slow;status-playable","playable","2021-01-12 12:27:34.000" -"","Battle Chef Brigade","status-playable","playable","2021-01-11 14:16:28.000" -"0100DBB00CAEE000","Battle Chef Brigade Demo","status-playable","playable","2021-02-10 23:15:07.000" -"0100A3B011EDE000","Battle Hunters","gpu;status-ingame","ingame","2022-11-12 09:19:17.000" -"","Battle Planet - Judgement Day","status-playable","playable","2020-12-17 14:06:20.000" -"","Battle Princess Madelyn","status-playable","playable","2021-01-11 13:47:23.000" -"0100A7500DF64000","Battle Princess Madelyn Royal Edition","status-playable","playable","2022-09-26 19:14:49.000" -"010099B00E898000","Battle Supremacy - Evolution","gpu;status-boots;nvdec","boots","2022-02-17 09:02:50.000" -"0100DEB00D5A8000","Battle Worlds: Kronos","nvdec;status-playable","playable","2021-06-04 17:48:02.000" -"","Battle of Kings","slow;status-playable","playable","2020-12-17 12:45:23.000" -"0100650010DD4000","Battleground","status-ingame;crash","ingame","2021-09-06 11:53:23.000" -"01006D800A988000","Battlezone Gold Edition","gpu;ldn-untested;online;status-boots","boots","2021-06-04 18:36:05.000" -"010076F0049A2000","Bayonetta","status-playable;audout","playable","2022-11-20 15:51:59.000" -"01007960049A0000","Bayonetta 2","status-playable;nvdec;ldn-works;LAN","playable","2022-11-26 03:46:09.000" -"01004A4010FEA000","Bayonetta 3","gpu;status-ingame;crash;nvdec;vulkan-backend-bug;opengl-backend-bug;amd-vendor-bug;ASTC","ingame","2024-09-28 14:34:33.000" -"010002801A3FA000","Bayonetta Origins Cereza and the Lost Demon Demo","gpu;status-ingame;demo","ingame","2024-02-17 06:06:28.000" -"0100CF5010FEC000","Bayonetta Origins: Cereza and the Lost Demon","gpu;status-ingame","ingame","2024-02-27 01:39:49.000" -"","Be-A Walker","slow;status-ingame","ingame","2020-09-02 15:00:31.000" -"010095C00406C000","Beach Buggy Racing","online;status-playable","playable","2021-04-13 23:16:50.000" -"010020700DE04000","Bear With Me - The Lost Robots","nvdec;status-playable","playable","2021-02-27 14:20:10.000" -"010024200E97E800","Bear With Me - The Lost Robots Demo","nvdec;status-playable","playable","2021-02-12 22:38:12.000" -"","Bear's Restaurant - 0100CE014A4E000","status-playable","playable","2024-08-11 21:26:59.000" -"","Beat Cop","status-playable","playable","2021-01-06 19:26:48.000" -"01002D20129FC000","Beat Me!","status-playable;online-broken","playable","2022-10-16 21:59:26.000" -"01006B0014590000","Beautiful Desolation","gpu;status-ingame;nvdec","ingame","2022-10-26 10:34:38.000" -"","Bee Simulator","UE4;crash;status-boots","boots","2020-07-15 12:13:13.000" -"010018F007786000","BeeFense BeeMastered","status-playable","playable","2022-11-17 15:38:12.000" -"","Behold the Kickmen","status-playable","playable","2020-06-27 12:49:45.000" -"","Beholder","status-playable","playable","2020-10-16 12:48:58.000" -"01006E1004404000","Ben 10","nvdec;status-playable","playable","2021-02-26 14:08:35.000" -"01009CD00E3AA000","Ben 10: Power Trip","status-playable;nvdec","playable","2022-10-09 10:52:12.000" -"010074500BBC4000","Bendy and the Ink Machine","status-playable","playable","2023-05-06 20:35:39.000" -"010021F00C1C0000","Bertram Fiddle Episode 2: A Bleaker Predicklement","nvdec;status-playable","playable","2021-02-22 14:56:37.000" -"010068600AD16000","Beyblade Burst Battle Zero","services;status-menus;crash;Needs Update","menus","2022-11-20 15:48:32.000" -"010056500CAD8000","Beyond Enemy Lines: Covert Operations","status-playable;UE4","playable","2022-10-01 13:11:50.000" -"0100B8F00DACA000","Beyond Enemy Lines: Essentials","status-playable;nvdec;UE4","playable","2022-09-26 19:48:16.000" -"","Bibi & Tina - Adventures with Horses","nvdec;slow;status-playable","playable","2021-01-13 08:58:09.000" -"010062400E69C000","Bibi & Tina at the horse farm","status-playable","playable","2021-04-06 16:31:39.000" -"","Bibi Blocksberg - Big Broom Race 3","status-playable","playable","2021-01-11 19:07:16.000" -"","Big Buck Hunter Arcade","nvdec;status-playable","playable","2021-01-12 20:31:39.000" -"010088100C35E000","Big Crown: Showdown","status-menus;nvdec;online;ldn-untested","menus","2022-07-17 18:25:32.000" -"0100A42011B28000","Big Dipper","status-playable","playable","2021-06-14 15:08:19.000" -"01002FA00DE72000","Big Drunk Satanic Massacre","status-playable","playable","2021-03-04 21:28:22.000" -"","Big Pharma","status-playable","playable","2020-07-14 15:27:30.000" -"010057700FF7C000","Billion Road","status-playable","playable","2022-11-19 15:57:43.000" -"01002620102C6000","BioShock 2 Remastered","services;status-nothing","nothing","2022-10-29 14:39:22.000" -"0100D560102C8000","BioShock Infinite: The Complete Edition","services-horizon;status-nothing;crash","nothing","2024-08-11 21:35:01.000" -"0100AD10102B2000","BioShock Remastered","services-horizon;status-boots;crash;Needs Update","boots","2024-06-06 01:08:52.000" -"01004BA017CD6000","Biomutant","status-ingame;crash","ingame","2024-05-16 15:46:36.000" -"010053B0117F8000","Biped","status-playable;nvdec","playable","2022-10-01 13:32:58.000" -"01001B700B278000","Bird Game +","status-playable;online","playable","2022-07-17 18:41:57.000" -"0100B6B012FF4000","Birds and Blocks Demo","services;status-boots;demo","boots","2022-04-10 04:53:03.000" -"","Bite the Bullet","status-playable","playable","2020-10-14 23:10:11.000" -"010026E0141C8000","Bitmaster","status-playable","playable","2022-12-13 14:05:51.000" -"","Biz Builder Delux","slow;status-playable","playable","2020-12-15 21:36:25.000" -"0100DD1014AB8000","Black Book","status-playable;nvdec","playable","2022-12-13 16:38:53.000" -"010049000B69E000","Black Future '88","status-playable;nvdec","playable","2022-09-13 11:24:37.000" -"01004BE00A682000","Black Hole Demo","status-playable","playable","2021-02-12 23:02:17.000" -"0100C3200E7E6000","Black Legend","gpu;status-ingame;UE4;vulkan-backend-bug;opengl-backend-bug","ingame","2022-10-22 12:54:48.000" -"","Blackjack Hands","status-playable","playable","2020-11-30 14:04:51.000" -"0100A0A00E660000","Blackmoor2","status-playable;online-broken","playable","2022-09-26 20:26:34.000" -"010032000EA2C000","Blacksad: Under the Skin","status-playable","playable","2022-09-13 11:38:04.000" -"01006B400C178000","Blacksea Odyssey","status-playable;nvdec","playable","2022-10-16 22:14:34.000" -"010068E013450000","Blacksmith of the Sand Kingdom","status-playable","playable","2022-10-16 22:37:44.000" -"0100EA1018A2E000","Blade Assault","audio;status-nothing","nothing","2024-04-29 14:32:50.000" -"01009CC00E224000","Blade II The Return of Evil","audio;status-ingame;crash;UE4","ingame","2021-11-14 02:49:59.000" -"01005950022EC000","Blade Strangers","status-playable;nvdec","playable","2022-07-17 19:02:43.000" -"0100DF0011A6A000","Bladed Fury","status-playable","playable","2022-10-26 11:36:26.000" -"0100CFA00CC74000","Blades of Time","deadlock;status-boots;online","boots","2022-07-17 19:19:58.000" -"01006CC01182C000","Blair Witch","status-playable;nvdec;UE4","playable","2022-10-01 14:06:16.000" -"010039501405E000","Blanc","gpu;slow;status-ingame","ingame","2023-02-22 14:00:13.000" -"0100698009C6E000","Blasphemous","nvdec;status-playable","playable","2021-03-01 12:15:31.000" -"0100302010338000","Blasphemous Demo","status-playable","playable","2021-02-12 23:49:56.000" -"0100225000FEE000","Blaster Master Zero","32-bit;status-playable","playable","2021-03-05 13:22:33.000" -"01005AA00D676000","Blaster Master Zero 2","status-playable","playable","2021-04-08 15:22:59.000" -"010025B002E92000","Blaster Master Zero DEMO","status-playable","playable","2021-02-12 23:59:06.000" -"","BlazBlue: Cross Tag Battle","nvdec;online;status-playable","playable","2021-01-05 20:29:37.000" -"","Blazing Beaks","status-playable","playable","2020-06-04 20:37:06.000" -"","Blazing Chrome","status-playable","playable","2020-11-16 04:56:54.000" -"010091700EA2A000","Bleep Bloop DEMO","nvdec;status-playable","playable","2021-02-13 00:20:53.000" -"010089D011310000","Blind Men","audout;status-playable","playable","2021-02-20 14:15:38.000" -"0100743013D56000","Blizzard Arcade Collection","status-playable;nvdec","playable","2022-08-03 19:37:26.000" -"0100F3500A20C000","BlobCat","status-playable","playable","2021-04-23 17:09:30.000" -"0100E1C00DB6C000","Block-a-Pix Deluxe Demo","status-playable","playable","2021-02-13 00:37:39.000" -"0100C6A01AD56000","Bloo Kid","status-playable","playable","2024-05-01 17:18:04.000" -"010055900FADA000","Bloo Kid 2","status-playable","playable","2024-05-01 17:16:57.000" -"","Blood & Guts Bundle","status-playable","playable","2020-06-27 12:57:35.000" -"01007E700D17E000","Blood Waves","gpu;status-ingame","ingame","2022-07-18 13:04:46.000" -"","Blood will be Spilled","nvdec;status-playable","playable","2020-12-17 03:02:03.000" -"","Bloodstained: Curse of the Moon","status-playable","playable","2020-09-04 10:42:17.000" -"","Bloodstained: Curse of the Moon 2","status-playable","playable","2020-09-04 10:56:27.000" -"010025A00DF2A000","Bloodstained: Ritual of the Night","status-playable;nvdec;UE4","playable","2022-07-18 14:27:35.000" -"0100E510143EC000","Bloody Bunny : The Game","status-playable;nvdec;UE4","playable","2022-10-22 13:18:55.000" -"0100B8400A1C6000","Bloons TD 5","Needs Update;audio;gpu;services;status-boots","boots","2021-04-18 23:02:46.000" -"0100C1000706C000","Blossom Tales","status-playable","playable","2022-07-18 16:43:07.000" -"01000EB01023E000","Blossom Tales Demo","status-playable","playable","2021-02-13 14:22:53.000" -"010073B010F6E000","Blue Fire","status-playable;UE4","playable","2022-10-22 14:46:11.000" -"0100721013510000","Body of Evidence","status-playable","playable","2021-04-25 22:22:11.000" -"0100AD1010CCE000","Bohemian Killing","status-playable;vulkan-backend-bug","playable","2022-09-26 22:41:37.000" -"010093700ECEC000","Boku to Nurse no Kenshuu Nisshi","status-playable","playable","2022-11-21 20:38:34.000" -"01001D900D9AC000","Bokujou Monogatari Saikai no Mineraru Taun (Story of Seasons: Friends of Mineral Town)","slow;status-ingame;crash;Needs Update","ingame","2022-04-24 22:46:04.000" -"0100317014B7C000","Bomb Rush Cyberfunk","status-playable","playable","2023-09-28 19:51:57.000" -"01007900080B6000","Bomber Crew","status-playable","playable","2021-06-03 14:21:28.000" -"0100A1F012948000","Bomber Fox","nvdec;status-playable","playable","2021-04-19 17:58:13.000" -"010087300445A000","Bombslinger","services;status-menus","menus","2022-07-19 12:53:15.000" -"01007A200F452000","Book of Demons","status-playable","playable","2022-09-29 12:03:43.000" -"","Bookbound Brigade","status-playable","playable","2020-10-09 14:30:29.000" -"","Boom Blaster","status-playable","playable","2021-03-24 10:55:56.000" -"010081A00EE62000","Boomerang Fu","status-playable","playable","2024-07-28 01:12:41.000" -"010069F0135C4000","Boomerang Fu Demo Version","demo;status-playable","playable","2021-02-13 14:38:13.000" -"010096F00FF22000","Borderlands 2: Game of the Year Edition","status-playable","playable","2022-04-22 18:35:07.000" -"01009970122E4000","Borderlands 3","gpu;status-ingame","ingame","2024-07-15 04:38:14.000" -"010064800F66A000","Borderlands: Game of the Year Edition","slow;status-ingame;online-broken;ldn-untested","ingame","2023-07-23 21:10:36.000" -"010007400FF24000","Borderlands: The Pre-Sequel Ultimate Edition","nvdec;status-playable","playable","2021-06-09 20:17:10.000" -"01008E500AFF6000","Boreal Blade","gpu;ldn-untested;online;status-ingame","ingame","2021-06-11 15:37:14.000" -"010092C013FB8000","Boris The Rocket","status-playable","playable","2022-10-26 13:23:09.000" -"010076F00EBE4000","Bossgard","status-playable;online-broken","playable","2022-10-04 14:21:13.000" -"010069B00EAC8000","Bot Vice Demo","crash;demo;status-ingame","ingame","2021-02-13 14:52:42.000" -"","Bouncy Bob 2","status-playable","playable","2020-07-14 16:51:53.000" -"0100E1200DC1A000","Bounty Battle","status-playable;nvdec","playable","2022-10-04 14:40:51.000" -"","Bow to Blood: Last Captain Standing","slow;status-playable","playable","2020-10-23 10:51:21.000" -"0100E87017D0E000","Bramble The Mountain King","services-horizon;status-playable","playable","2024-03-06 09:32:17.000" -"","Brave Dungeon + Dark Witch's Story: COMBAT","status-playable","playable","2021-01-12 21:06:34.000" -"010081501371E000","BraveMatch","status-playable;UE4","playable","2022-10-26 13:32:15.000" -"01006DC010326000","Bravely Default II","gpu;status-ingame;crash;Needs Update;UE4","ingame","2024-04-26 06:11:26.000" -"0100B6801137E000","Bravely Default II Demo","gpu;status-ingame;crash;UE4;demo","ingame","2022-09-27 05:39:47.000" -"0100F60017D4E000","Bravery and Greed","gpu;deadlock;status-boots","boots","2022-12-04 02:23:47.000" -"","Brawl","nvdec;slow;status-playable","playable","2020-06-04 14:23:18.000" -"010068F00F444000","Brawl Chess","status-playable;nvdec","playable","2022-10-26 13:59:17.000" -"0100C6800B934000","Brawlhalla","online;opengl;status-playable","playable","2021-06-03 18:26:09.000" -"010060200A4BE000","Brawlout","ldn-untested;online;status-playable","playable","2021-06-04 17:35:35.000" -"0100C1B00E1CA000","Brawlout Demo","demo;status-playable","playable","2021-02-13 22:46:53.000" -"010022C016DC8000","Breakout: Recharged","slow;status-ingame","ingame","2022-11-06 15:32:57.000" -"01000AA013A5E000","Breathedge","UE4;nvdec;status-playable","playable","2021-05-06 15:44:28.000" -"","Breathing Fear","status-playable","playable","2020-07-14 15:12:29.000" -"","Brick Breaker","crash;status-ingame","ingame","2020-12-15 17:03:59.000" -"","Brick Breaker","nvdec;online;status-playable","playable","2020-12-15 18:26:23.000" -"","Bridge 3","status-playable","playable","2020-10-08 20:47:24.000" -"","Bridge Constructor: The Walking Dead","gpu;slow;status-ingame","ingame","2020-12-11 17:31:32.000" -"010011000EA7A000","Brigandine: The Legend of Runersia","status-playable","playable","2021-06-20 06:52:25.000" -"0100703011258000","Brigandine: The Legend of Runersia Demo","status-playable","playable","2021-02-14 14:44:10.000" -"01000BF00BE40000","Bring Them Home","UE4;status-playable","playable","2021-04-12 14:14:43.000" -"010060A00B53C000","Broforce","ldn-untested;online;status-playable","playable","2021-05-28 12:23:38.000" -"0100EDD0068A6000","Broken Age","status-playable","playable","2021-06-04 17:40:32.000" -"","Broken Lines","status-playable","playable","2020-10-16 00:01:37.000" -"01001E60085E6000","Broken Sword 5 - the Serpent's Curse","status-playable","playable","2021-06-04 17:28:59.000" -"0100F19011226000","Brotherhood United Demo","demo;status-playable","playable","2021-02-14 21:10:57.000" -"01000D500D08A000","Brothers: A Tale of Two Sons","status-playable;nvdec;UE4","playable","2022-07-19 14:02:22.000" -"","Brunch Club","status-playable","playable","2020-06-24 13:54:07.000" -"010010900F7B4000","Bubble Bobble 4 Friends","nvdec;status-playable","playable","2021-06-04 15:27:55.000" -"0100DBE00C554000","Bubsy: Paws on Fire!","slow;status-ingame","ingame","2023-08-24 02:44:51.000" -"","Bucket Knight","crash;status-ingame","ingame","2020-09-04 13:11:24.000" -"0100F1B010A90000","Bucket Knight demo","demo;status-playable","playable","2021-02-14 21:23:09.000" -"01000D200AC0C000","Bud Spencer & Terence Hill - Slaps and Beans","status-playable","playable","2022-07-17 12:37:00.000" -"","Bug Fables","status-playable","playable","2020-06-09 11:27:00.000" -"","BurgerTime Party!","slow;status-playable","playable","2020-11-21 14:11:53.000" -"01005780106E8000","BurgerTime Party! Demo","demo;status-playable","playable","2021-02-14 21:34:16.000" -"","Buried Stars","status-playable","playable","2020-09-07 14:11:58.000" -"0100DBF01000A000","Burnout Paradise Remastered","nvdec;online;status-playable","playable","2021-06-13 02:54:46.000" -"","Bury me, my Love","status-playable","playable","2020-11-07 12:47:37.000" -"010030D012FF6000","Bus Driver Simulator","status-playable","playable","2022-10-17 13:55:27.000" -"0100F6400A77E000","CAPCOM BELT ACTION COLLECTION","status-playable;online;ldn-untested","playable","2022-07-21 20:51:23.000" -"0100EAE010560000","CAPTAIN TSUBASA: RISE OF NEW CHAMPIONS","status-playable;online-broken;vulkan-backend-bug","playable","2022-10-09 11:20:50.000" -"01002320137CC000","CAPTAIN TSUBASA: RISE OF NEW CHAMPIONS DEMO VERSION","slow;status-playable","playable","2021-02-14 22:45:35.000" -"","CARRION","crash;status-nothing","nothing","2020-08-13 17:15:12.000" -"0100C4C0132F8000","CASE 2: Animatronics Survival","status-playable;nvdec;UE4;vulkan-backend-bug","playable","2022-10-09 11:45:03.000" -"01007600115CE000","CHAOS CODE -NEW SIGN OF CATASTROPHE-","status-boots;crash;nvdec","boots","2022-04-04 12:24:21.000" -"0100957016B90000","CHAOS;HEAD NOAH","status-playable","playable","2022-06-02 22:57:19.000" -"0100A3A00CC7E000","CLANNAD","status-playable","playable","2021-06-03 17:01:02.000" -"","CLANNAD Side Stories - 01007B01372C000","status-playable","playable","2022-10-26 15:03:04.000" -"01002E700C366000","COCOON","gpu;status-ingame","ingame","2024-03-06 11:33:08.000" -"","CODE SHIFTER","status-playable","playable","2020-08-09 15:20:55.000" -"","COLLECTION of SaGA FINAL FANTASY LEGEND","status-playable","playable","2020-12-30 19:11:16.000" -"010015801308E000","CONARIUM","UE4;nvdec;status-playable","playable","2021-04-26 17:57:53.000" -"","CONTRA: ROGUE CORPS","crash;nvdec;regression;status-menus","menus","2021-01-07 13:23:35.000" -"0100B8200ECA6000","CONTRA: ROGUE CORPS Demo","gpu;status-ingame","ingame","2022-09-04 16:46:52.000" -"01003DD00F94A000","COTTOn Reboot! [ コットン リブート! ]","status-playable","playable","2022-05-24 16:29:24.000" -"01004BC0166CC000","CRISIS CORE –FINAL FANTASY VII– REUNION","status-playable","playable","2022-12-19 15:53:59.000" -"0100E24004510000","Cabela's: The Hunt - Championship Edition","status-menus;32-bit","menus","2022-07-21 20:21:25.000" -"01000B900D8B0000","Cadence of Hyrule Crypt of the NecroDancer Featuring The Legend of Zelda","slow;status-playable;nvdec","playable","2024-04-01 22:43:40.000" -"","Cadence of Hyrule Crypt of the NecroDancer Featuring The Legend of Zelda Demo - 010065700EE0600","demo;gpu;nvdec;status-ingame","ingame","2021-02-14 21:48:15.000" -"010060400D21C000","Cafeteria Nipponica Demo","demo;status-playable","playable","2021-02-14 22:11:35.000" -"","Café Enchanté","status-playable","playable","2020-11-13 14:54:25.000" -"0100699012F82000","Cake Bash Demo","crash;demo;status-ingame","ingame","2021-02-14 22:21:15.000" -"01004FD00D66A000","Caladrius Blaze","deadlock;status-nothing;nvdec","nothing","2022-12-07 16:44:37.000" -"","Calculation Castle: Greco's Ghostly Challenge ""Addition","32-bit;status-playable","playable","2020-11-01 23:40:11.000" -"","Calculation Castle: Greco's Ghostly Challenge ""Division","32-bit;status-playable","playable","2020-11-01 23:54:55.000" -"","Calculation Castle: Greco's Ghostly Challenge ""Multiplication","32-bit;status-playable","playable","2020-11-02 00:04:33.000" -"","Calculation Castle: Greco's Ghostly Challenge ""Subtraction","32-bit;status-playable","playable","2020-11-01 23:47:42.000" -"010004701504A000","Calculator","status-playable","playable","2021-06-11 13:27:20.000" -"010013A00E750000","Calico","status-playable","playable","2022-10-17 14:44:28.000" -"010046000EE40000","Call of Cthulhu","status-playable;nvdec;UE4","playable","2022-12-18 03:08:30.000" -"0100B4700BFC6000","Call of Juarez: Gunslinger","gpu;status-ingame;nvdec","ingame","2022-09-17 16:49:46.000" -"0100593008BDC000","Can't Drive This","status-playable","playable","2022-10-22 14:55:17.000" -"","Candle - The Power of the Flame","nvdec;status-playable","playable","2020-05-26 12:10:20.000" -"01001E0013208000","Capcom Arcade Stadium","status-playable","playable","2021-03-17 05:45:14.000" -"","Capcom Beat 'Em Up Bundle","status-playable","playable","2020-03-23 18:31:24.000" -"01009BF0072D4000","Captain Toad: Treasure Tracker","32-bit;status-playable","playable","2024-04-25 00:50:16.000" -"01002C400B6B6000","Captain Toad: Treasure Tracker Demo","32-bit;demo;status-playable","playable","2021-02-14 22:36:09.000" -"","Car Mechanic Manager","status-playable","playable","2020-07-23 18:50:17.000" -"01007BD00AE70000","Car Quest","deadlock;status-menus","menus","2021-11-18 08:59:18.000" -"0100DA70115E6000","Caretaker","status-playable","playable","2022-10-04 14:52:24.000" -"0100DD6014870000","Cargo Crew Driver","status-playable","playable","2021-04-19 12:54:22.000" -"010088C0092FE000","Carnival Games","status-playable;nvdec","playable","2022-07-21 21:01:22.000" -"","Carnivores: Dinosaur Hunt","status-playable","playable","2022-12-14 18:46:06.000" -"01008D1001512000","Cars 3 Driven to Win","gpu;status-ingame","ingame","2022-07-21 21:21:05.000" -"0100810012A1A000","Carto","status-playable","playable","2022-09-04 15:37:06.000" -"0100C4E004406000","Cartoon Network Adventure Time: Pirates of the Enchiridion","status-playable;nvdec","playable","2022-07-21 21:49:01.000" -"0100085003A2A000","Cartoon Network Battle Crashers","status-playable","playable","2022-07-21 21:55:40.000" -"010066F01A0E0000","Cassette Beasts","status-playable","playable","2024-07-22 20:38:43.000" -"010001300D14A000","Castle Crashers Remastered","gpu;status-boots","boots","2024-08-10 09:21:20.000" -"0100F6D01060E000","Castle Crashers Remastered Demo","gpu;status-boots;demo","boots","2022-04-10 10:57:10.000" -"0100DA2011F18000","Castle Pals","status-playable","playable","2021-03-04 21:00:33.000" -"01003C100445C000","Castle of Heart","status-playable;nvdec","playable","2022-07-21 23:10:45.000" -"0100F5500FA0E000","Castle of No Escape 2","status-playable","playable","2022-09-13 13:51:42.000" -"","CastleStorm 2","UE4;crash;nvdec;status-boots","boots","2020-10-25 11:22:44.000" -"010097C00AB66000","Castlestorm","status-playable;nvdec","playable","2022-07-21 22:49:14.000" -"","Castlevania Anniversary Collection","audio;status-playable","playable","2020-05-23 11:40:29.000" -"010076000C86E000","Cat Girl Without Salad: Amuse-Bouche","status-playable","playable","2022-09-03 13:01:47.000" -"","Cat Quest","status-playable","playable","2020-04-02 23:09:32.000" -"","Cat Quest II","status-playable","playable","2020-07-06 23:52:09.000" -"0100E86010220000","Cat Quest II Demo","demo;status-playable","playable","2021-02-15 14:11:57.000" -"0100BF00112C0000","Catherine Full Body","status-playable;nvdec","playable","2023-04-02 11:00:37.000" -"0100BAE0077E4000","Catherine Full Body for Nintendo Switch (JP)","Needs Update;gpu;status-ingame","ingame","2021-02-21 18:06:11.000" -"010004400B28A000","Cattails","status-playable","playable","2021-06-03 14:36:57.000" -"","Cave Story+","status-playable","playable","2020-05-22 09:57:25.000" -"01001A100C0E8000","Caveblazers","slow;status-ingame","ingame","2021-06-09 17:57:28.000" -"","Caveman Warriors","status-playable","playable","2020-05-22 11:44:20.000" -"","Caveman Warriors Demo","demo;status-playable","playable","2021-02-15 14:44:08.000" -"","Celeste","status-playable","playable","2020-06-17 10:14:40.000" -"01006B000A666000","Cendrillon palikA","gpu;status-ingame;nvdec","ingame","2022-07-21 22:52:24.000" -"0100F52013A66000","Charge Kid","gpu;status-boots;audout","boots","2024-02-11 01:17:47.000" -"","Chasm","status-playable","playable","2020-10-23 11:03:43.000" -"010034301A556000","Chasm: The Rift","gpu;status-ingame","ingame","2024-04-29 19:02:48.000" -"0100A5900472E000","Chess Ultra","status-playable;UE4","playable","2023-08-30 23:06:31.000" -"0100E3C00A118000","Chicken Assassin: Reloaded","status-playable","playable","2021-02-20 13:29:01.000" -"","Chicken Police - Paint it RED!","nvdec;status-playable","playable","2020-12-10 15:10:11.000" -"0100F6C00A016000","Chicken Range","status-playable","playable","2021-04-23 12:14:23.000" -"","Chicken Rider","status-playable","playable","2020-05-22 11:31:17.000" -"0100CAC011C3A000","Chickens Madness DEMO","UE4;demo;gpu;nvdec;status-ingame","ingame","2021-02-15 15:02:10.000" -"","Child of Light","nvdec;status-playable","playable","2020-12-16 10:23:10.000" -"01002DE00C250000","Children of Morta","gpu;status-ingame;nvdec","ingame","2022-09-13 17:48:47.000" -"","Children of Zodiarcs","status-playable","playable","2020-10-04 14:23:33.000" -"010046F012A04000","Chinese Parents","status-playable","playable","2021-04-08 12:56:41.000" -"01006A30124CA000","Chocobo GP","gpu;status-ingame;crash","ingame","2022-06-04 14:52:18.000" -"","Chocobo's Mystery Dungeon Every Buddy!","slow;status-playable","playable","2020-05-26 13:53:13.000" -"","Choices That Matter: And The Sun Went Out","status-playable","playable","2020-12-17 15:44:08.000" -"","Chou no Doku Hana no Kusari: Taishou Irokoi Ibun","gpu;nvdec;status-ingame","ingame","2020-09-28 17:58:04.000" -"","ChromaGun","status-playable","playable","2020-05-26 12:56:42.000" -"","Chronos","UE4;gpu;nvdec;status-ingame","ingame","2020-12-11 22:16:35.000" -"","Circle of Sumo","status-playable","playable","2020-05-22 12:45:21.000" -"01008FA00D686000","Circuits","status-playable","playable","2022-09-19 11:52:50.000" -"","Cities: Skylines - Nintendo Switch Edition","status-playable","playable","2020-12-16 10:34:57.000" -"0100D9C012900000","Citizens Unite!: Earth x Space","gpu;status-ingame","ingame","2023-10-22 06:44:19.000" -"0100E4200D84E000","Citizens of Space","gpu;status-boots","boots","2023-10-22 06:45:44.000" -"01005E501284E000","City Bus Driving Simulator","status-playable","playable","2021-06-15 21:25:59.000" -"01005ED0107F4000","Clash Force","status-playable","playable","2022-10-01 23:45:48.000" -"010009300AA6C000","Claybook","slow;status-playable;nvdec;online;UE4","playable","2022-07-22 11:11:34.000" -"","Clea","crash;status-ingame","ingame","2020-12-15 16:22:56.000" -"010045E0142A4000","Clea 2","status-playable","playable","2021-04-18 14:25:18.000" -"01008C100C572000","Clock Zero ~Shuuen no Ichibyou~ Devote","status-playable;nvdec","playable","2022-12-04 22:19:14.000" -"0100DF9013AD4000","Clocker","status-playable","playable","2021-04-05 15:05:13.000" -"0100B7200DAC6000","Close to the Sun","status-boots;crash;nvdec;UE4","boots","2021-11-04 09:19:41.000" -"010047700D540000","Clubhouse Games: 51 Worldwide Classics","status-playable;ldn-works","playable","2024-05-21 16:12:57.000" -"","Clue","crash;online;status-menus","menus","2020-11-10 09:23:48.000" -"","ClusterPuck 99","status-playable","playable","2021-01-06 00:28:12.000" -"010096900A4D2000","Clustertruck","slow;status-ingame","ingame","2021-02-19 21:07:09.000" -"01005790110F0000","Cobra Kai The Karate Kid Saga Continues","status-playable","playable","2021-06-17 15:59:13.000" -"010034E005C9C000","Code of Princess EX","nvdec;online;status-playable","playable","2021-06-03 10:50:13.000" -"010002400F408000","Code: Realize ~Future Blessings~","status-playable;nvdec","playable","2023-03-31 16:57:47.000" -"0100CF800C810000","Coffee Crisis","status-playable","playable","2021-02-20 12:34:52.000" -"","Coffee Talk","status-playable","playable","2020-08-10 09:48:44.000" -"0100178009648000","Coffin Dodgers","status-playable","playable","2021-02-20 14:57:41.000" -"010035B01706E000","Cold Silence","cpu;status-nothing;crash","nothing","2024-07-11 17:06:14.000" -"010083E00F40E000","Collar X Malice","status-playable;nvdec","playable","2022-10-02 11:51:56.000" -"0100E3B00F412000","Collar X Malice -Unlimited-","status-playable;nvdec","playable","2022-10-04 15:30:40.000" -"","Collection of Mana","status-playable","playable","2020-10-19 19:29:45.000" -"010030800BC36000","Collidalot","status-playable;nvdec","playable","2022-09-13 14:09:27.000" -"","Color Zen","status-playable","playable","2020-05-22 10:56:17.000" -"","Colorgrid","status-playable","playable","2020-10-04 01:50:52.000" -"0100A7000BD28000","Coloring Book","status-playable","playable","2022-07-22 11:17:05.000" -"010020500BD86000","Colors Live","gpu;services;status-boots;crash","boots","2023-02-26 02:51:07.000" -"0100E2F0128B4000","Colossus Down","status-playable","playable","2021-02-04 20:49:50.000" -"0100C4D00D16A000","Commander Keen in Keen Dreams","gpu;status-ingame","ingame","2022-08-04 20:34:20.000" -"0100E400129EC000","Commander Keen in Keen Dreams: Definitive Edition","status-playable","playable","2021-05-11 19:33:54.000" -"010065A01158E000","Commandos 2 HD Remaster","gpu;status-ingame;nvdec","ingame","2022-08-10 21:52:27.000" -"0100971011224000","Concept Destruction","status-playable","playable","2022-09-29 12:28:56.000" -"010043700C9B0000","Conduct TOGETHER!","nvdec;status-playable","playable","2021-02-20 12:59:00.000" -"","Conga Master Party!","status-playable","playable","2020-05-22 13:22:24.000" -"","Connection Haunted","slow;status-playable","playable","2020-12-10 18:57:14.000" -"0100A5600FAC0000","Construction Simulator 3 - Console Edition","status-playable","playable","2023-02-06 09:31:23.000" -"","Constructor Plus","status-playable","playable","2020-05-26 12:37:40.000" -"0100DCA00DA7E000","Contra Anniversary Collection","status-playable","playable","2022-07-22 11:30:12.000" -"01007D701298A000","Contraptions","status-playable","playable","2021-02-08 18:40:50.000" -"0100041013360000","Control Ultimate Edition - Cloud Version","Needs Update;crash;services;status-nothing","nothing","2021-04-18 22:34:06.000" -"","Convoy","status-playable","playable","2020-10-15 14:43:50.000" -"0100B82010B6C000","Cook, Serve, Delicious! 3?!","status-playable","playable","2022-10-09 12:09:34.000" -"010060700EFBA000","Cooking Mama: Cookstar","status-menus;crash;loader-allocator","menus","2021-11-20 03:19:35.000" -"01001E400FD58000","Cooking Simulator","status-playable","playable","2021-04-18 13:25:23.000" -"","Cooking Tycoons 2: 3 in 1 Bundle","status-playable","playable","2020-11-16 22:19:33.000" -"","Cooking Tycoons: 3 in 1 Bundle","status-playable","playable","2020-11-16 22:44:26.000" -"","Copperbell","status-playable","playable","2020-10-04 15:54:36.000" -"010016400B1FE000","Corpse Party: Blood Drive","nvdec;status-playable","playable","2021-03-01 12:44:23.000" -"0100CCB01B1A0000","Cosmic Fantasy Collection","status-ingame","ingame","2024-05-21 17:56:37.000" -"010067C00A776000","Cosmic Star Heroine","status-playable","playable","2021-02-20 14:30:47.000" -"","Cotton/Guardian Saturn Tribute Games","gpu;status-boots","boots","2022-11-27 21:00:51.000" -"01000E301107A000","Couch Co-Op Bundle Vol. 2","status-playable;nvdec","playable","2022-10-02 12:04:21.000" -"0100C1E012A42000","Country Tales","status-playable","playable","2021-06-17 16:45:39.000" -"01003370136EA000","Cozy Grove","gpu;status-ingame","ingame","2023-07-30 22:22:19.000" -"010073401175E000","Crash Bandicoot 4: It's About Time","status-playable;nvdec;UE4","playable","2024-03-17 07:13:45.000" -"0100D1B006744000","Crash Bandicoot N. Sane Trilogy","status-playable","playable","2024-02-11 11:38:14.000" -"","Crash Drive 2","online;status-playable","playable","2020-12-17 02:45:46.000" -"","Crash Dummy","nvdec;status-playable","playable","2020-05-23 11:12:43.000" -"0100F9F00C696000","Crash Team Racing Nitro-Fueled","gpu;status-ingame;nvdec;online-broken","ingame","2023-06-25 02:40:17.000" -"0100BF200CD74000","Crashbots","status-playable","playable","2022-07-22 13:50:52.000" -"010027100BD16000","Crashlands","status-playable","playable","2021-05-27 20:30:06.000" -"","Crawl","status-playable","playable","2020-05-22 10:16:05.000" -"0100C66007E96000","Crayola Scoot","status-playable;nvdec","playable","2022-07-22 14:01:55.000" -"01005BA00F486000","Crayon Shin-chan Ora to Hakase no Natsuyasumi Owaranai Nanokakan no Tabi","status-playable","playable","2021-07-21 10:41:33.000" -"","Crayon Shin-chan The Storm Called Flaming Kasukabe Runner!","services;status-menus","menus","2020-03-20 14:00:57.000" -"","Crazy Strike Bowling EX","UE4;gpu;nvdec;status-ingame","ingame","2020-08-07 18:15:59.000" -"","Crazy Zen Mini Golf","status-playable","playable","2020-08-05 14:00:00.000" -"","Creaks","status-playable","playable","2020-08-15 12:20:52.000" -"","Creature in the Well","UE4;gpu;status-ingame","ingame","2020-11-16 12:52:40.000" -"","Creepy Tale","status-playable","playable","2020-12-15 21:58:03.000" -"","Cresteaju","gpu;status-ingame","ingame","2021-03-24 10:46:06.000" -"010022D00D4F0000","Cricket 19","gpu;status-ingame","ingame","2021-06-14 14:56:07.000" -"0100387017100000","Cricket 22","status-boots;crash","boots","2023-10-18 08:01:57.000" -"01005640080B0000","Crimsonland","status-playable","playable","2021-05-27 20:50:54.000" -"0100B0400EBC4000","Cris Tales","crash;status-ingame","ingame","2021-07-29 15:10:53.000" -"","Croc's World","status-playable","playable","2020-05-22 11:21:09.000" -"","Croc's World 2","status-playable","playable","2020-12-16 20:01:40.000" -"","Croc's World 3","status-playable","playable","2020-12-30 18:53:26.000" -"01000F0007D92000","Croixleur Sigma","status-playable;online","playable","2022-07-22 14:26:54.000" -"01003D90058FC000","CrossCode","status-playable","playable","2024-02-17 10:23:19.000" -"0100B1E00AA56000","Crossing Souls","nvdec;status-playable","playable","2021-02-20 15:42:54.000" -"0100059012BAE000","Crown Trick","status-playable","playable","2021-06-16 19:36:29.000" -"0100B41013C82000","Cruis'n Blast","gpu;status-ingame","ingame","2023-07-30 10:33:47.000" -"01000CC01C108000","Crymachina Trial Edition ( Demo ) [ クライマキナ ]","status-playable;demo","playable","2023-08-06 05:33:21.000" -"0100CEA007D08000","Crypt of the Necrodancer","status-playable;nvdec","playable","2022-11-01 09:52:06.000" -"0100582010AE0000","Crysis 2 Remastered","deadlock;status-menus","menus","2023-09-21 10:46:17.000" -"0100CD3010AE2000","Crysis 3 Remastered","deadlock;status-menus","menus","2023-09-10 16:03:50.000" -"0100E66010ADE000","Crysis Remastered","status-menus;nvdec","menus","2024-08-13 05:23:24.000" -"0100972008234000","Crystal Crisis","nvdec;status-playable","playable","2021-02-20 13:52:44.000" -"","Cthulhu Saves Christmas","status-playable","playable","2020-12-14 00:58:55.000" -"010001600D1E8000","Cube Creator X","status-menus;crash","menus","2021-11-25 08:53:28.000" -"010082E00F1CE000","Cubers: Arena","status-playable;nvdec;UE4","playable","2022-10-04 16:05:40.000" -"010040D011D04000","Cubicity","status-playable","playable","2021-06-14 14:19:51.000" -"0100A5C00D162000","Cuphead","status-playable","playable","2022-02-01 22:45:55.000" -"0100F7E00DFC8000","Cupid Parasite","gpu;status-ingame","ingame","2023-08-21 05:52:36.000" -"","Curious Cases","status-playable","playable","2020-08-10 09:30:48.000" -"0100D4A0118EA000","Curse of the Dead Gods","status-playable","playable","2022-08-30 12:25:38.000" -"0100CE5014026000","Curved Space","status-playable","playable","2023-01-14 22:03:50.000" -"","Cyber Protocol","nvdec;status-playable","playable","2020-09-28 14:47:40.000" -"0100C1F0141AA000","Cyber Shadow","status-playable","playable","2022-07-17 05:37:41.000" -"01006B9013672000","Cybxus Heart","gpu;slow;status-ingame","ingame","2022-01-15 05:00:49.000" -"010063100B2C2000","Cytus α","nvdec;status-playable","playable","2021-02-20 13:40:46.000" -"0100B6400CA56000","DAEMON X MACHINA","UE4;audout;ldn-untested;nvdec;status-playable","playable","2021-06-09 19:22:29.000" -"01004AB00A260000","DARK SOULS™: REMASTERED","gpu;status-ingame;nvdec;online-broken","ingame","2024-04-09 19:47:58.000" -"0100440012FFA000","DARQ Complete Edition","audout;status-playable","playable","2021-04-07 15:26:21.000" -"01009CC00C97C000","DEAD OR ALIVE Xtreme 3 Scarlet","status-playable","playable","2022-07-23 17:05:06.000" -"0100A5000F7AA000","DEAD OR SCHOOL","status-playable;nvdec","playable","2022-09-06 12:04:09.000" -"0100EBE00F22E000","DEADLY PREMONITION Origins","32-bit;status-playable;nvdec","playable","2024-03-25 12:47:46.000" -"01008B10132A2000","DEEMO -Reborn-","status-playable;nvdec;online-broken","playable","2022-10-17 15:18:11.000" -"010023800D64A000","DELTARUNE Chapter 1","status-playable","playable","2023-01-22 04:47:44.000" -"0100BE800E6D8000","DEMON'S TILT","status-playable","playable","2022-09-19 13:22:46.000" -"","DERU - The Art of Cooperation","status-playable","playable","2021-01-07 16:59:59.000" -"","DESTINY CONNECT","UE4;gpu;nvdec;status-ingame","ingame","2020-12-16 12:20:36.000" -"010027400BD24000","DIABOLIK LOVERS CHAOS LINEAGE","gpu;status-ingame;Needs Update","ingame","2023-06-08 02:20:44.000" -"","DISTRAINT 2","status-playable","playable","2020-09-03 16:08:12.000" -"","DISTRAINT: Deluxe Edition","status-playable","playable","2020-06-15 23:42:24.000" -"0100416004C00000","DOOM","gpu;slow;status-ingame;nvdec;online-broken","ingame","2024-09-23 15:40:07.000" -"010018900DD00000","DOOM (1993)","status-menus;nvdec;online-broken","menus","2022-09-06 13:32:19.000" -"01008CB01E52E000","DOOM + DOOM II","status-playable;opengl;ldn-untested;LAN","playable","2024-09-12 07:06:01.000" -"0100D4F00DD02000","DOOM 2","nvdec;online;status-playable","playable","2021-06-03 20:10:01.000" -"010029D00E740000","DOOM 3","status-menus;crash","menus","2024-08-03 05:25:47.000" -"","DOOM 64","nvdec;status-playable;vulkan","playable","2020-10-13 23:47:28.000" -"0100B1A00D8CE000","DOOM Eternal","gpu;slow;status-ingame;nvdec;online-broken","ingame","2024-08-28 15:57:17.000" -"","DORAEMON STORY OF SEASONS","nvdec;status-playable","playable","2020-07-13 20:28:11.000" -"01001AD00E49A000","DOUBLE DRAGON Ⅲ: The Sacred Stones","online;status-playable","playable","2021-06-11 15:41:44.000" -"0100A250097F0000","DRAGON BALL FighterZ","UE4;ldn-broken;nvdec;online;status-playable","playable","2021-06-11 16:19:04.000" -"010051C0134F8000","DRAGON BALL Z: KAKAROT + A NEW POWER AWAKENS SET","status-playable;vulkan-backend-bug","playable","2024-08-28 00:03:50.000" -"0100A77018EA0000","DRAGON QUEST MONSTERS: The Dark Prince","status-playable","playable","2023-12-29 16:10:05.000" -"0100E9A00CB30000","DYNASTY WARRIORS 8: Xtreme Legends Definitive Edition","status-playable;nvdec","playable","2024-06-26 00:16:30.000" -"010008900BC5A000","DYSMANTLE","gpu;status-ingame","ingame","2024-07-15 16:24:12.000" -"010061300DF48000","Dairoku: Ayakashimori","status-nothing;Needs Update;loader-allocator","nothing","2021-11-30 05:09:38.000" -"0100BD2009A1C000","Damsel","status-playable","playable","2022-09-06 11:54:39.000" -"","Dandara","status-playable","playable","2020-05-26 12:42:33.000" -"","Dandy Dungeon: Legend of Brave Yamada","status-playable","playable","2021-01-06 09:48:47.000" -"01003ED0099B0000","Danger Mouse","status-boots;crash;online","boots","2022-07-22 15:49:45.000" -"","Danger Scavenger -","nvdec;status-playable","playable","2021-04-17 15:53:04.000" -"","Danmaku Unlimited 3","status-playable","playable","2020-11-15 00:48:35.000" -"","Darius Cozmic Collection","status-playable","playable","2021-02-19 20:59:06.000" -"010059C00BED4000","Darius Cozmic Collection Special Edition","status-playable","playable","2022-07-22 16:26:50.000" -"010015800F93C000","Dariusburst - Another Chronicle EX+","online;status-playable","playable","2021-04-05 14:21:43.000" -"01003D301357A000","Dark Arcana: The Carnival","gpu;slow;status-ingame","ingame","2022-02-19 08:52:28.000" -"010083A00BF6C000","Dark Devotion","status-playable;nvdec","playable","2022-08-09 09:41:18.000" -"","Dark Quest 2","status-playable","playable","2020-11-16 21:34:52.000" -"","Dark Witch Music Episode: Rudymical","status-playable","playable","2020-05-22 09:44:44.000" -"01008F1008DA6000","Darkest Dungeon","status-playable;nvdec","playable","2022-07-22 18:49:18.000" -"0100F2300D4BA000","Darksiders Genesis","status-playable;nvdec;online-broken;UE4;ldn-broken","playable","2022-09-21 18:06:25.000" -"010071800BA98000","Darksiders II Deathinitive Edition","gpu;status-ingame;nvdec;online-broken","ingame","2024-06-26 00:37:25.000" -"0100E1400BA96000","Darksiders Warmastered Edition","status-playable;nvdec","playable","2023-03-02 18:08:09.000" -"","Darkwood","status-playable","playable","2021-01-08 21:24:06.000" -"0100BA500B660000","Darts Up","status-playable","playable","2021-04-14 17:22:22.000" -"0100F0B0081DA000","Dawn of the Breakers","status-menus;online-broken;vulkan-backend-bug","menus","2022-12-08 14:40:03.000" -"","Day and Night","status-playable","playable","2020-12-17 12:30:51.000" -"","De Blob","nvdec;status-playable","playable","2021-01-06 17:34:46.000" -"01008E900471E000","De Mambo","status-playable","playable","2021-04-10 12:39:40.000" -"0100646009FBE000","Dead Cells","status-playable","playable","2021-09-22 22:18:49.000" -"01004C500BD40000","Dead End Job","status-playable;nvdec","playable","2022-09-19 12:48:44.000" -"0100A24011F52000","Dead Z Meat","UE4;services;status-ingame","ingame","2021-04-14 16:50:16.000" -"01004C400CF96000","Dead by Daylight","status-boots;nvdec;online-broken;UE4","boots","2022-09-13 14:32:13.000" -"","Deadly Days","status-playable","playable","2020-11-27 13:38:55.000" -"0100BAC011928000","Deadly Premonition 2","status-playable","playable","2021-06-15 14:12:36.000" -"","Dear Magi - Mahou Shounen Gakka -","status-playable","playable","2020-11-22 16:45:16.000" -"010012B011AB2000","Death Come True","nvdec;status-playable","playable","2021-06-10 22:30:49.000" -"0100F3B00CF32000","Death Coming","status-nothing;crash","nothing","2022-02-06 07:43:03.000" -"","Death Mark","status-playable","playable","2020-12-13 10:56:25.000" -"0100423009358000","Death Road to Canada","gpu;audio;status-nothing;32-bit;crash","nothing","2023-06-28 15:39:26.000" -"","Death Squared","status-playable","playable","2020-12-04 13:00:15.000" -"","Death Tales","status-playable","playable","2020-12-17 10:55:52.000" -"","Death and Taxes","status-playable","playable","2020-12-15 20:27:49.000" -"0100AEC013DDA000","Death end re;Quest","status-playable","playable","2023-07-09 12:19:54.000" -"0100492011A8A000","Death's Hangover","gpu;status-boots","boots","2023-08-01 22:38:06.000" -"01009120119B4000","Deathsmiles I・II","status-playable","playable","2024-04-08 19:29:00.000" -"010034F00BFC8000","Debris Infinity","nvdec;online;status-playable","playable","2021-05-28 12:14:39.000" -"010027700FD2E000","Decay of Logos","status-playable;nvdec","playable","2022-09-13 14:42:13.000" -"0100EF0015A9A000","Deedlit in Wonder Labyrinth","deadlock;status-ingame;Needs Update;Incomplete","ingame","2022-01-19 10:00:59.000" -"01002CC0062B8000","Deemo","status-playable","playable","2022-07-24 11:34:33.000" -"010026800FA88000","Deep Diving Adventures","status-playable","playable","2022-09-22 16:43:37.000" -"","Deep Ones","services;status-nothing","nothing","2020-04-03 02:54:19.000" -"0100C3E00D68E000","Deep Sky Derelicts Definitive Edition","status-playable","playable","2022-09-27 11:21:08.000" -"","Deep Space Rush","status-playable","playable","2020-07-07 23:30:33.000" -"0100961011BE6000","DeepOne","services-horizon;status-nothing;Needs Update","nothing","2024-01-18 15:01:05.000" -"01008BB00F824000","Defenders of Ekron - Definitive Edition","status-playable","playable","2021-06-11 16:31:03.000" -"0100CDE0136E6000","Defentron","status-playable","playable","2022-10-17 15:47:56.000" -"","Defunct","status-playable","playable","2021-01-08 21:33:46.000" -"","Degrees of Separation","status-playable","playable","2021-01-10 13:40:04.000" -"010071C00CBA4000","Dei Gratia no Rashinban","crash;status-nothing","nothing","2021-07-13 02:25:32.000" -"","Deleveled","slow;status-playable","playable","2020-12-15 21:02:29.000" -"010038B01D2CA000","Dementium: The Ward (Dementium Remastered)","status-boots;crash","boots","2024-09-02 08:28:14.000" -"0100AB600ACB4000","Demetrios - The BIG Cynical Adventure","status-playable","playable","2021-06-04 12:01:01.000" -"010099D00D1A4000","Demolish & Build","status-playable","playable","2021-06-13 15:27:26.000" -"010084600F51C000","Demon Pit","status-playable;nvdec","playable","2022-09-19 13:35:15.000" -"0100A2B00BD88000","Demon's Crystals","status-nothing;crash;regression","nothing","2022-12-07 16:33:17.000" -"","Demon's Rise","status-playable","playable","2020-07-29 12:26:27.000" -"0100E29013818000","Demon's Rise - Lords of Chaos","status-playable","playable","2021-04-06 16:20:06.000" -"0100161011458000","Demon's Tier+","status-playable","playable","2021-06-09 17:25:36.000" -"","Demong Hunter","status-playable","playable","2020-12-12 15:27:08.000" -"0100BC501355A000","Densha de go!! Hashirou Yamanote Sen","status-playable;nvdec;UE4","playable","2023-11-09 07:47:58.000" -"","Depixtion","status-playable","playable","2020-10-10 18:52:37.000" -"01000BF00B6BC000","Deployment","slow;status-playable;online-broken","playable","2022-10-17 16:23:59.000" -"010023600C704000","Deponia","nvdec;status-playable","playable","2021-01-26 17:17:19.000" -"","Descenders","gpu;status-ingame","ingame","2020-12-10 15:22:36.000" -"","Desire remaster ver.","crash;status-boots","boots","2021-01-17 02:34:37.000" -"01008BB011ED6000","Destrobots","status-playable","playable","2021-03-06 14:37:05.000" -"01009E701356A000","Destroy All Humans!","gpu;status-ingame;nvdec;UE4","ingame","2023-01-14 22:23:53.000" -"010030600E65A000","Detective Dolittle","status-playable","playable","2021-03-02 14:03:59.000" -"01009C0009842000","Detective Gallo","status-playable;nvdec","playable","2022-07-24 11:51:04.000" -"","Detective Jinguji Saburo Prism of Eyes","status-playable","playable","2020-10-02 21:54:41.000" -"010007500F27C000","Detective Pikachu Returns","status-playable","playable","2023-10-07 10:24:59.000" -"010031B00CF66000","Devil Engine","status-playable","playable","2021-06-04 11:54:30.000" -"01002F000E8F2000","Devil Kingdom","status-playable","playable","2023-01-31 08:58:44.000" -"","Devil May Cry","nvdec;status-playable","playable","2021-01-04 19:43:08.000" -"01007CF00D5BA000","Devil May Cry 2","status-playable;nvdec","playable","2023-01-24 23:03:20.000" -"01007B600D5BC000","Devil May Cry 3 Special Edition","status-playable;nvdec","playable","2024-07-08 12:33:23.000" -"01003C900EFF6000","Devil Slayer - Raksasi","status-playable","playable","2022-10-26 19:42:32.000" -"01009EA00A320000","Devious Dungeon","status-playable","playable","2021-03-04 13:03:06.000" -"","Dex","nvdec;status-playable","playable","2020-08-12 16:48:12.000" -"","Dexteritrip","status-playable","playable","2021-01-06 12:51:12.000" -"0100AFC00E06A000","Dezatopia","online;status-playable","playable","2021-06-15 21:06:11.000" -"0100726014352000","Diablo 2 Resurrected","gpu;status-ingame;nvdec","ingame","2023-08-18 18:42:47.000" -"01001B300B9BE000","Diablo III: Eternal Collection","status-playable;online-broken;ldn-works","playable","2023-08-21 23:48:03.000" -"0100F73011456000","Diabolic","status-playable","playable","2021-06-11 14:45:08.000" -"0100BBF011394000","Dicey Dungeons","gpu;audio;slow;status-ingame","ingame","2023-08-02 20:30:12.000" -"","Die for Valhalla!","status-playable","playable","2021-01-06 16:09:14.000" -"0100BB900B5B4000","Dies irae Amantes amentes For Nintendo Switch","status-nothing;32-bit;crash","nothing","2022-02-16 07:09:05.000" -"0100A5A00DBB0000","Dig Dog","gpu;status-ingame","ingame","2021-06-02 17:17:51.000" -"010035D0121EC000","Digerati Presents: The Dungeon Crawl Vol. 1","slow;status-ingame","ingame","2021-04-18 14:04:55.000" -"010014E00DB56000","Digimon Story Cyber Sleuth: Complete Edition","status-playable;nvdec;opengl","playable","2022-09-13 15:02:37.000" -"0100F00014254000","Digimon World: Next Order","status-playable","playable","2023-05-09 20:41:06.000" -"","Ding Dong XL","status-playable","playable","2020-07-14 16:13:19.000" -"","Dininho Adventures","status-playable","playable","2020-10-03 17:25:51.000" -"010027E0158A6000","Dininho Space Adventure","status-playable","playable","2023-01-14 22:43:04.000" -"0100A8A013DA4000","Dirt Bike Insanity","status-playable","playable","2021-01-31 13:27:38.000" -"01004CB01378A000","Dirt Trackin Sprint Cars","status-playable;nvdec;online-broken","playable","2022-10-17 16:34:56.000" -"0100918014B02000","Disagaea 6: Defiance of Destiny Demo","status-playable;demo","playable","2022-10-26 20:02:04.000" -"010020700E2A2000","Disaster Report 4: Summer Memories","status-playable;nvdec;UE4","playable","2022-09-27 19:41:31.000" -"0100510004D2C000","Disc Jam","UE4;ldn-untested;nvdec;online;status-playable","playable","2021-04-08 16:40:35.000" -"","Disco Dodgeball Remix","online;status-playable","playable","2020-09-28 23:24:49.000" -"01004B100AF18000","Disgaea 1 Complete","status-playable","playable","2023-01-30 21:45:23.000" -"010068C00F324000","Disgaea 4 Complete+ Demo","status-playable;nvdec","playable","2022-09-13 15:21:59.000" -"","Disgaea 4 Complete Plus","gpu;slow;status-playable","playable","2020-02-18 10:54:28.000" -"01005700031AE000","Disgaea 5 Complete","nvdec;status-playable","playable","2021-03-04 15:32:54.000" -"0100ABC013136000","Disgaea 6: Defiance of Destiny","deadlock;status-ingame","ingame","2023-04-15 00:50:32.000" -"01005EE013888000","Disgaea 6: Defiance of Destiny Demo [ 魔界戦記ディスガイア6 ]","gpu;status-ingame;demo","ingame","2022-12-06 15:27:59.000" -"0100307011D80000","Disgaea 6: Defiance of Destiny [ FG ] [ 魔界戦記ディスガイア6 ]","status-playable","playable","2021-06-08 13:20:33.000" -"01000B70122A2000","Disjunction","gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug","ingame","2024-04-28 23:55:24.000" -"0100A2F00EEFC000","Disney Classic Games: Aladdin and The Lion King","status-playable;online-broken","playable","2022-09-13 15:44:17.000" -"0100DA201EBF8000","Disney Epic Mickey: Rebrushed","status-ingame;crash","ingame","2024-09-26 22:11:51.000" -"0100F0401435E000","Disney SpeedStorm","services;status-boots","boots","2023-11-27 02:15:32.000" -"","Disney Tsum Tsum Festival","crash;status-menus","menus","2020-07-14 14:05:28.000" -"010027400CDC6000","Divinity Original Sin 2","services;status-menus;crash;online-broken;regression","menus","2023-08-13 17:20:03.000" -"01005A001489A000","DoDonPachi Resurrection - 怒首領蜂大復活","status-ingame;32-bit;crash","ingame","2024-01-25 14:37:32.000" -"01001770115C8000","Dodo Peak","status-playable;nvdec;UE4","playable","2022-10-04 16:13:05.000" -"","Dogurai","status-playable","playable","2020-10-04 02:40:16.000" -"010048100D51A000","Dokapon Up! Mugen no Roulette","gpu;status-menus;Needs Update","menus","2022-12-08 19:39:10.000" -"","Dokuro","nvdec;status-playable","playable","2020-12-17 14:47:09.000" -"010007200AC0E000","Don't Die Mr. Robot DX","status-playable;nvdec","playable","2022-09-02 18:34:38.000" -"0100E470067A8000","Don't Knock Twice","status-playable","playable","2024-05-08 22:37:58.000" -"0100C4D00B608000","Don't Sink","gpu;status-ingame","ingame","2021-02-26 15:41:11.000" -"0100751007ADA000","Don't Starve","status-playable;nvdec","playable","2022-02-05 20:43:34.000" -"010088B010DD2000","Dongo Adventure","status-playable","playable","2022-10-04 16:22:26.000" -"0100C1F0051B6000","Donkey Kong Country Tropical Freeze","status-playable","playable","2024-08-05 16:46:10.000" -"","Doodle Derby","status-boots","boots","2020-12-04 22:51:48.000" -"01005ED00CD70000","Door Kickers: Action Squad","status-playable;online-broken;ldn-broken","playable","2022-09-13 16:28:53.000" -"","Double Cross","status-playable","playable","2021-01-07 15:34:22.000" -"","Double Dragon & Kunio-Kun: Retro Brawler Bundle","status-playable","playable","2020-09-01 12:48:46.000" -"01005B10132B2000","Double Dragon Neon","gpu;audio;status-ingame;32-bit","ingame","2022-09-20 18:00:20.000" -"","Double Kick Heroes","gpu;status-ingame","ingame","2020-10-03 14:33:59.000" -"0100A5D00C7C0000","Double Pug Switch","status-playable;nvdec","playable","2022-10-10 10:59:35.000" -"0100FC000EE10000","Double Switch - 25th Anniversary Edition","status-playable;nvdec","playable","2022-09-19 13:41:50.000" -"0100B6600FE06000","Down to Hell","gpu;status-ingame;nvdec","ingame","2022-09-19 14:01:26.000" -"010093D00C726000","Downwell","status-playable","playable","2021-04-25 20:05:24.000" -"0100ED000D390000","Dr Kawashima's Brain Training","services;status-ingame","ingame","2023-06-04 00:06:46.000" -"","Dracula's Legacy","nvdec;status-playable","playable","2020-12-10 13:24:25.000" -"","DragoDino","gpu;nvdec;status-ingame","ingame","2020-08-03 20:49:16.000" -"0100DBC00BD5A000","Dragon Audit","crash;status-ingame","ingame","2021-05-16 14:24:46.000" -"010078D000F88000","Dragon Ball Xenoverse 2","gpu;status-ingame;nvdec;online;ldn-untested","ingame","2022-07-24 12:31:01.000" -"010089700150E000","Dragon Marked for Death: Frontline Fighters (Empress & Warrior)","status-playable;ldn-untested;audout","playable","2022-03-10 06:44:34.000" -"0100EFC00EFB2000","Dragon Quest","gpu;status-boots","boots","2021-11-09 03:31:32.000" -"010008900705C000","Dragon Quest Builders","gpu;status-ingame;nvdec","ingame","2023-08-14 09:54:36.000" -"010042000A986000","Dragon Quest Builders 2","status-playable","playable","2024-04-19 16:36:38.000" -"0100CD3000BDC000","Dragon Quest Heroes I + II (JP)","nvdec;status-playable","playable","2021-04-08 14:27:16.000" -"010062200EFB4000","Dragon Quest II: Luminaries of the Legendary Line","status-playable","playable","2022-09-13 16:44:11.000" -"01003E601E324000","Dragon Quest III HD-2D Remake","status-ingame;vulkan-backend-bug;UE4;audout;mac-bug","ingame","2025-01-07 04:10:27.000" -"010015600EFB6000","Dragon Quest III: The Seeds of Salvation","gpu;status-boots","boots","2021-11-09 03:38:34.000" -"0100217014266000","Dragon Quest Treasures","gpu;status-ingame;UE4","ingame","2023-05-09 11:16:52.000" -"0100E2E0152E4000","Dragon Quest X Awakening Five Races Offline","status-playable;nvdec;UE4","playable","2024-08-20 10:04:24.000" -"01006C300E9F0000","Dragon Quest XI S: Echoes of an Elusive Age - Definitive Edition","status-playable;UE4","playable","2021-11-27 12:27:11.000" -"010032C00AC58000","Dragon's Dogma: Dark Arisen","status-playable","playable","2022-07-24 12:58:33.000" -"","Dragon's Lair Trilogy","nvdec;status-playable","playable","2021-01-13 22:12:07.000" -"","DragonBlaze for Nintendo Switch","32-bit;status-playable","playable","2020-10-14 11:11:28.000" -"","DragonFangZ","status-playable","playable","2020-09-28 21:35:18.000" -"","Dragons Dawn of New Riders","nvdec;status-playable","playable","2021-01-27 20:05:26.000" -"0100F7800A434000","Drawful 2","status-ingame","ingame","2022-07-24 13:50:21.000" -"0100B7E0102E4000","Drawngeon: Dungeons of Ink and Paper","gpu;status-ingame","ingame","2022-09-19 15:41:25.000" -"","Dream","status-playable","playable","2020-12-15 19:55:07.000" -"","Dream Alone - 0100AA0093DC000","nvdec;status-playable","playable","2021-01-27 19:41:50.000" -"","DreamBall","UE4;crash;gpu;status-ingame","ingame","2020-08-05 14:45:25.000" -"0100236011B4C000","DreamWorks Spirit Lucky's Big Adventure","status-playable","playable","2022-10-27 13:30:52.000" -"010058B00F3C0000","Dreaming Canvas","UE4;gpu;status-ingame","ingame","2021-06-13 22:50:07.000" -"0100D24013466000","Dreamo","status-playable;UE4","playable","2022-10-17 18:25:28.000" -"010058C00A916000","Drone Fight","status-playable","playable","2022-07-24 14:31:56.000" -"010052000A574000","Drowning","status-playable","playable","2022-07-25 14:28:26.000" -"","Drums","status-playable","playable","2020-12-17 17:21:51.000" -"01005BC012C66000","Duck Life Adventure","status-playable","playable","2022-10-10 11:27:03.000" -"01007EF00CB88000","Duke Nukem 3D: 20th Anniversary World Tour","32-bit;status-playable;ldn-untested","playable","2022-08-19 22:22:40.000" -"010068D0141F2000","Dull Grey","status-playable","playable","2022-10-27 13:40:38.000" -"0100926013600000","Dungeon Nightmares 1 + 2 Collection","status-playable","playable","2022-10-17 18:54:22.000" -"","Dungeon Stars","status-playable","playable","2021-01-18 14:28:37.000" -"010034300F0E2000","Dungeon of the Endless","nvdec;status-playable","playable","2021-05-27 19:16:26.000" -"","Dungeons & Bombs","status-playable","playable","2021-04-06 12:46:22.000" -"0100EC30140B6000","Dunk Lords","status-playable","playable","2024-06-26 00:07:26.000" -"010011C00E636000","Dusk Diver","status-boots;crash;UE4","boots","2021-11-06 09:01:30.000" -"0100B6E00A420000","Dust: An Elysian Tail","status-playable","playable","2022-07-25 15:28:12.000" -"","Dustoff Z","status-playable","playable","2020-12-04 23:22:29.000" -"01008c8012920000","Dying Light: Platinum Edition","services-horizon;status-boots","boots","2024-03-11 10:43:32.000" -"","Dyna Bomb","status-playable","playable","2020-06-07 13:26:55.000" -"010054E01D878000","EA SPORTS FC 25","status-ingame;crash","ingame","2024-09-25 21:07:50.000" -"01001C8016B4E000","EA SPORTS FIFA 23 Nintendo Switch™ Legacy Edition","gpu;status-ingame;crash","ingame","2024-06-10 23:33:05.000" -"0100BDB01A0E6000","EA Sports FC 24","status-boots","boots","2023-10-04 18:32:59.000" -"01009B7006C88000","EARTH WARS","status-playable","playable","2021-06-05 11:18:33.000" -"0100A9B009678000","EAT BEAT DEADSPIKE-san","audio;status-playable;Needs Update","playable","2022-12-02 19:25:29.000" -"","ELEA: Paradigm Shift","UE4;crash;status-nothing","nothing","2020-10-04 19:07:43.000" -"01000FA0149B6000","EQI","status-playable;nvdec;UE4","playable","2022-10-27 16:42:32.000" -"0100E95010058000","EQQO","UE4;nvdec;status-playable","playable","2021-06-13 23:10:51.000" -"0100F9600E746000","ESP Ra.De. Psi","audio;slow;status-ingame","ingame","2024-03-07 15:05:08.000" -"01007BE0160D6000","EVE ghost enemies","gpu;status-ingame","ingame","2023-01-14 03:13:30.000" -"0100DCF0093EC000","EVERSPACE","status-playable;UE4","playable","2022-08-14 01:16:24.000" -"010037400C7DA000","Eagle Island","status-playable","playable","2021-04-10 13:15:42.000" -"0100B9E012992000","Earth Defense Force World Brothers ( ま~るい地球が四角くなった!? デジボク地球防衛軍 )","status-playable;UE4","playable","2022-12-07 12:59:16.000" -"0100298014030000","Earth Defense Force: World Brothers","status-playable;UE4","playable","2022-10-27 14:13:31.000" -"0100A2E00BB0C000","EarthNight","status-playable","playable","2022-09-19 21:02:20.000" -"0100DFC00E472000","Earthfall: Alien Horde","status-playable;nvdec;UE4;ldn-untested","playable","2022-09-13 17:32:37.000" -"01006E50042EA000","Earthlock","status-playable","playable","2021-06-05 11:51:02.000" -"0100DCE00B756000","Earthworms","status-playable","playable","2022-07-25 16:28:55.000" -"","Earthworms Demo","status-playable","playable","2021-01-05 16:57:11.000" -"0100ECF01800C000","Easy Come Easy Golf","status-playable;online-broken;regression","playable","2024-04-04 16:15:00.000" -"","Eclipse: Edge of Light","status-playable","playable","2020-08-11 23:06:29.000" -"0100ABE00DB4E000","Edna & Harvey: Harvey's New Eyes","nvdec;status-playable","playable","2021-01-26 14:36:08.000" -"01004F000B716000","Edna & Harvey: The Breakout - Anniversary Edition","status-ingame;crash;nvdec","ingame","2022-08-01 16:59:56.000" -"01002550129F0000","Effie","status-playable","playable","2022-10-27 14:36:39.000" -"","Ego Protocol","nvdec;status-playable","playable","2020-12-16 20:16:35.000" -"","Eiga Sumikko Gurashi Tobidasu Ehon to Himitsu no Ko Game de Asobo Ehon no Sekai","status-playable","playable","2020-11-12 00:11:50.000" -"01003AD013BD2000","Eight Dragons","status-playable;nvdec","playable","2022-10-27 14:47:28.000" -"010020A01209C000","El Hijo - A Wild West Tale","nvdec;status-playable","playable","2021-04-19 17:44:08.000" -"","Elden: Path of the Forgotten","status-playable","playable","2020-12-15 00:33:19.000" -"0100A6700AF10000","Element","status-playable","playable","2022-07-25 17:17:16.000" -"0100128003A24000","Elliot Quest","status-playable","playable","2022-07-25 17:46:14.000" -"","Elrador Creatures","slow;status-playable","playable","2020-12-12 12:35:35.000" -"010041A00FEC6000","Ember","status-playable;nvdec","playable","2022-09-19 21:16:11.000" -"","Embracelet","status-playable","playable","2020-12-04 23:45:00.000" -"010017b0102a8000","Emma: Lost in Memories","nvdec;status-playable","playable","2021-01-28 16:19:10.000" -"010068300E08E000","Enchanted in the Moonlight - Kiryu, Chikage & Yukinojo","gpu;status-ingame;nvdec","ingame","2022-11-20 16:18:45.000" -"","Enchanting Mahjong Match","gpu;status-ingame","ingame","2020-04-17 22:01:31.000" -"01004F3011F92000","Endless Fables: Dark Moor","gpu;nvdec;status-ingame","ingame","2021-03-07 15:31:03.000" -"010067B017588000","Endless Ocean Luminous","services-horizon;status-ingame;crash","ingame","2024-05-30 02:05:57.000" -"0100B8700BD14000","Energy Cycle Edge","services;status-ingame","ingame","2021-11-30 05:02:31.000" -"","Energy Invasion","status-playable","playable","2021-01-14 21:32:26.000" -"0100C6200A0AA000","Enigmatis 2: The Mists of Ravenwood","crash;regression;status-boots","boots","2021-06-06 15:15:30.000" -"01009D60076F6000","Enter the Gungeon","status-playable","playable","2022-07-25 20:28:33.000" -"0100262009626000","Epic Loon","status-playable;nvdec","playable","2022-07-25 22:06:13.000" -"","Escape First","status-playable","playable","2020-10-20 22:46:53.000" -"010021201296A000","Escape First 2","status-playable","playable","2021-03-24 11:59:41.000" -"","Escape Game Fort Boyard","status-playable","playable","2020-07-12 12:45:43.000" -"0100FEF00F0AA000","Escape from Chernobyl","status-boots;crash","boots","2022-09-19 21:36:58.000" -"010023E013244000","Escape from Life Inc","status-playable","playable","2021-04-19 17:34:09.000" -"","Escape from Tethys","status-playable","playable","2020-10-14 22:38:25.000" -"010073000FE18000","Esports powerful pro yakyuu 2020","gpu;status-ingame;crash;Needs More Attention","ingame","2024-04-29 05:34:14.000" -"01004F9012FD8000","Estranged: The Departure","status-playable;nvdec;UE4","playable","2022-10-24 10:37:58.000" -"","Eternum Ex","status-playable","playable","2021-01-13 20:28:32.000" -"010092501EB2C000","Europa (Demo)","gpu;status-ingame;crash;UE4","ingame","2024-04-23 10:47:12.000" -"","Event Horizon: Space Defense","status-playable","playable","2020-07-31 20:31:24.000" -"01006F900BF8E000","Everybody 1-2-Switch!","services;deadlock;status-nothing","nothing","2023-07-01 05:52:55.000" -"","Evil Defenders","nvdec;status-playable","playable","2020-09-28 17:11:00.000" -"01006A800FA22000","Evolution Board Game","online;status-playable","playable","2021-01-20 22:37:56.000" -"0100F2D00C7DE000","Exception","status-playable;online-broken","playable","2022-09-20 12:47:10.000" -"0100DD30110CC000","Exit the Gungeon","status-playable","playable","2022-09-22 17:04:43.000" -"0100A82013976000","Exodemon","status-playable","playable","2022-10-27 20:17:52.000" -"0100FA800A1F4000","Exorder","nvdec;status-playable","playable","2021-04-15 14:17:20.000" -"01009B7010B42000","Explosive Jake","status-boots;crash","boots","2021-11-03 07:48:32.000" -"0100EFE00A3C2000","Eyes: The Horror Game","status-playable","playable","2021-01-20 21:59:46.000" -"010022700E7D6000","FAR: Lone Sails","status-playable","playable","2022-09-06 16:33:05.000" -"01008D900B984000","FEZ","gpu;status-ingame","ingame","2021-04-18 17:10:16.000" -"01007510040E8000","FIA European Truck Racing Championship","status-playable;nvdec","playable","2022-09-06 17:51:59.000" -"0100F7B002340000","FIFA 18","gpu;status-ingame;online-broken;ldn-untested","ingame","2022-07-26 12:43:59.000" -"0100FFA0093E8000","FIFA 19","gpu;status-ingame;nvdec;online-broken;ldn-untested","ingame","2022-07-26 13:07:07.000" -"01005DE00D05C000","FIFA 20 Legacy Edition","gpu;status-ingame;nvdec;online-broken;ldn-untested","ingame","2022-09-13 17:57:20.000" -"01000A001171A000","FIFA 21 Legacy Edition","gpu;status-ingame;online-broken","ingame","2023-12-11 22:10:19.000" -"0100216014472000","FIFA 22 Legacy Edition","gpu;status-ingame","ingame","2024-03-02 14:13:48.000" -"0100CE4010AAC000","FINAL FANTASY CRYSTAL CHRONICLES Remastered Edition","status-playable","playable","2023-04-02 23:39:12.000" -"01000EA014150000","FINAL FANTASY I","status-nothing;crash","nothing","2024-09-05 20:55:30.000" -"01006B7014156000","FINAL FANTASY II","status-nothing;crash","nothing","2024-04-13 19:18:04.000" -"01006F000B056000","FINAL FANTASY IX","audout;nvdec;status-playable","playable","2021-06-05 11:35:00.000" -"0100AA201415C000","FINAL FANTASY V","status-playable","playable","2023-04-26 01:11:55.000" -"01008B900DC0A000","FINAL FANTASY VIII REMASTERED","status-playable;nvdec","playable","2023-02-15 10:57:48.000" -"0100BC300CB48000","FINAL FANTASY X/X-2 HD REMASTER","gpu;status-ingame","ingame","2022-08-16 20:29:26.000" -"0100EB100AB42000","FINAL FANTASY XII THE ZODIAC AGE","status-playable;opengl;vulkan-backend-bug","playable","2024-08-11 07:01:54.000" -"","FINAL FANTASY XV POCKET EDITION HD","status-playable","playable","2021-01-05 17:52:08.000" -"0100EDC01990E000","FOOTBALL MANAGER 2023 TOUCH","gpu;status-ingame","ingame","2023-08-01 03:40:53.000" -"","FORMA.8","nvdec;status-playable","playable","2020-11-15 01:04:32.000" -"01008A100A028000","FOX n FORESTS","status-playable","playable","2021-02-16 14:27:49.000" -"0100F1A00A5DC000","FRAMED COLLECTION","status-playable;nvdec","playable","2022-07-27 11:48:15.000" -"010002F00CC20000","FUN! FUN! Animal Park","status-playable","playable","2021-04-14 17:08:52.000" -"0100E1F013674000","FUSER","status-playable;nvdec;UE4","playable","2022-10-17 20:58:32.000" -"010055801134E000","FUZE Player","status-ingame;online-broken;vulkan-backend-bug","ingame","2022-10-18 12:23:53.000" -"0100EAD007E98000","FUZE4","status-playable;vulkan-backend-bug","playable","2022-09-06 19:25:01.000" -"0100E3D0103CE000","Fable of Fairy Stones","status-playable","playable","2021-05-05 21:04:54.000" -"01004200189F4000","Factorio","deadlock;status-boots","boots","2024-06-11 19:26:16.000" -"010073F0189B6000","Fae Farm","status-playable","playable","2024-08-25 15:12:12.000" -"010069100DB08000","Faeria","status-menus;nvdec;online-broken","menus","2022-10-04 16:44:41.000" -"01008A6009758000","Fairune Collection","status-playable","playable","2021-06-06 15:29:56.000" -"0100F6D00B8F2000","Fairy Fencer F™: Advent Dark Force","status-ingame;32-bit;crash;nvdec","ingame","2023-04-16 03:53:48.000" -"0100CF900FA3E000","Fairy Tail","status-playable;nvdec","playable","2022-10-04 23:00:32.000" -"01005A600BE60000","Fall Of Light - Darkest Edition","slow;status-ingame;nvdec","ingame","2024-07-24 04:19:26.000" -"0100AA801258C000","Fallen Legion Revenants","status-menus;crash","menus","2021-11-25 08:53:20.000" -"0100D670126F6000","Famicom Detective Club: The Girl Who Stands Behind","status-playable;nvdec","playable","2022-10-27 20:41:40.000" -"010033F0126F4000","Famicom Detective Club: The Missing Heir","status-playable;nvdec","playable","2022-10-27 20:56:23.000" -"010060200FC44000","Family Feud 2021","status-playable;online-broken","playable","2022-10-10 11:42:21.000" -"0100034012606000","Family Mysteries: Poisonous Promises","audio;status-menus;crash","menus","2021-11-26 12:35:06.000" -"010017C012726000","Fantasy Friends","status-playable","playable","2022-10-17 19:42:39.000" -"0100767008502000","Fantasy Hero Unsigned Legacy","status-playable","playable","2022-07-26 12:28:52.000" -"0100944003820000","Fantasy Strike","online;status-playable","playable","2021-02-27 01:59:18.000" -"01000E2012F6E000","Fantasy Tavern Sextet -Vol.1 New World Days-","gpu;status-ingame;crash;Needs Update","ingame","2022-12-05 16:48:00.000" -"","Fantasy Tavern Sextet -Vol.2 Adventurer's Days-","gpu;slow;status-ingame;crash","ingame","2021-11-06 02:57:29.000" -"","Farabel","status-playable","playable","2020-08-03 17:47:28.000" -"","Farm Expert 2019 for Nintendo Switch","status-playable","playable","2020-07-09 21:42:57.000" -"01000E400ED98000","Farm Mystery","status-playable;nvdec","playable","2022-09-06 16:46:47.000" -"","Farm Together","status-playable","playable","2021-01-19 20:01:19.000" -"0100EB600E914000","Farming Simulator 20","nvdec;status-playable","playable","2021-06-13 10:52:44.000" -"","Farming Simulator Nintendo Switch Edition","nvdec;status-playable","playable","2021-01-19 14:46:44.000" -"0100E99019B3A000","Fashion Dreamer","status-playable","playable","2023-11-12 06:42:52.000" -"01009510001CA000","Fast RMX","slow;status-ingame;crash;ldn-partial","ingame","2024-06-22 20:48:58.000" -"0100BEB015604000","Fatal Frame: Maiden of Black Water","status-playable","playable","2023-07-05 16:01:40.000" -"0100DAE019110000","Fatal Frame: Mask of the Lunar Eclipse","status-playable;Incomplete","playable","2024-04-11 06:01:30.000" -"010053E002EA2000","Fate/EXTELLA","gpu;status-ingame;nvdec;online-broken;vulkan-backend-bug;opengl-backend-bug","ingame","2023-04-24 23:37:55.000" -"010051400B17A000","Fate/EXTELLA LINK","ldn-untested;nvdec;status-playable","playable","2021-01-27 00:45:50.000" -"","Fear Effect Sedna","nvdec;status-playable","playable","2021-01-19 13:10:33.000" -"0100F5501CE12000","Fearmonium","status-boots;crash","boots","2024-03-06 11:26:11.000" -"0100E4300CB3E000","Feather","status-playable","playable","2021-06-03 14:11:27.000" -"","Felix the Reaper","nvdec;status-playable","playable","2020-10-20 23:43:03.000" -"","Feudal Alloy","status-playable","playable","2021-01-14 08:48:14.000" -"01006980127F0000","Fight Crab","status-playable;online-broken;ldn-untested","playable","2022-10-05 10:24:04.000" -"","Fight of Animals","online;status-playable","playable","2020-10-15 15:08:28.000" -"","Fight'N Rage","status-playable","playable","2020-06-16 23:35:19.000" -"0100D02014048000","Fighting EX Layer Another Dash","status-playable;online-broken;UE4","playable","2024-04-07 10:22:33.000" -"0100118009C68000","Figment","nvdec;status-playable","playable","2021-01-27 19:36:05.000" -"","Fill-a-Pix: Phil's Epic Adventure","status-playable","playable","2020-12-22 13:48:22.000" -"0100C3A00BB76000","Fimbul","status-playable;nvdec","playable","2022-07-26 13:31:47.000" -"","Fin and the Ancient Mystery","nvdec;status-playable","playable","2020-12-17 16:40:39.000" -"0100A5B00BDC6000","Final Fantasy VII","status-playable","playable","2022-12-09 17:03:30.000" -"","Final Light, The Prison","status-playable","playable","2020-07-31 21:48:44.000" -"0100FF100FB68000","Finding Teddy 2 : Definitive Edition","gpu;status-ingame","ingame","2024-04-19 16:51:33.000" -"","Fire & Water","status-playable","playable","2020-12-15 15:43:20.000" -"0100F15003E64000","Fire Emblem Warriors","status-playable;nvdec","playable","2023-05-10 01:53:10.000" -"010071F0143EA000","Fire Emblem Warriors: Three Hopes","gpu;status-ingame;nvdec","ingame","2024-05-01 07:07:42.000" -"0100A6301214E000","Fire Emblem: Engage","status-playable;amd-vendor-bug;mac-bug","playable","2024-09-01 23:37:26.000" -"0100A12011CC8000","Fire Emblem: Shadow Dragon and the Blade of Light","status-playable","playable","2022-10-17 19:49:14.000" -"010055D009F78000","Fire Emblem: Three Houses","status-playable;online-broken","playable","2024-09-14 23:53:50.000" -"010025C014798000","Fire: Ungh's Quest","status-playable;nvdec","playable","2022-10-27 21:41:26.000" -"0100434003C58000","Firefighters - The Simulation","status-playable","playable","2021-02-19 13:32:05.000" -"","Firefighters: Airport Fire Department","status-playable","playable","2021-02-15 19:17:00.000" -"0100AC300919A000","Firewatch","status-playable","playable","2021-06-03 10:56:38.000" -"","Firework","status-playable","playable","2020-12-04 20:20:09.000" -"0100DEB00ACE2000","Fishing Star World Tour","status-playable","playable","2022-09-13 19:08:51.000" -"010069800D292000","Fishing Universe Simulator","status-playable","playable","2021-04-15 14:00:43.000" -"0100807008868000","Fit Boxing","status-playable","playable","2022-07-26 19:24:55.000" -"","Fitness Boxing","services;status-ingame","ingame","2020-05-17 14:00:48.000" -"0100E7300AAD4000","Fitness Boxing","status-playable","playable","2021-04-14 20:33:33.000" -"0100073011382000","Fitness Boxing 2: Rhythm & Exercise","crash;status-ingame","ingame","2021-04-14 20:40:48.000" -"","Five Dates","nvdec;status-playable","playable","2020-12-11 15:17:11.000" -"01009060193C4000","Five Nights At Freddy’s Security Breach","gpu;status-ingame;crash;mac-bug","ingame","2023-04-23 22:33:28.000" -"0100B6200D8D2000","Five Nights at Freddy's","status-playable","playable","2022-09-13 19:26:36.000" -"01004EB00E43A000","Five Nights at Freddy's 2","status-playable","playable","2023-02-08 15:48:24.000" -"010056100E43C000","Five Nights at Freddy's 3","status-playable","playable","2022-09-13 20:58:07.000" -"010083800E43E000","Five Nights at Freddy's 4","status-playable","playable","2023-08-19 07:28:03.000" -"0100F7901118C000","Five Nights at Freddy's: Help Wanted","status-playable;UE4","playable","2022-09-29 12:40:09.000" -"01003B200E440000","Five Nights at Freddy's: Sister Location","status-playable","playable","2023-10-06 09:00:58.000" -"010038200E088000","Flan","status-ingame;crash;regression","ingame","2021-11-17 07:39:28.000" -"","Flashback","nvdec;status-playable","playable","2020-05-14 13:57:29.000" -"0100C53004C52000","Flat Heroes","gpu;status-ingame","ingame","2022-07-26 19:37:37.000" -"","Flatland: Prologue","status-playable","playable","2020-12-11 20:41:12.000" -"","Flinthook","online;status-playable","playable","2021-03-25 20:42:29.000" -"010095A004040000","Flip Wars","services;status-ingame;ldn-untested","ingame","2022-05-02 15:39:18.000" -"01009FB002B2E000","Flipping Death","status-playable","playable","2021-02-17 16:12:30.000" -"","Flood of Light","status-playable","playable","2020-05-15 14:15:25.000" -"0100DF9005E7A000","Floor Kids","status-playable;nvdec","playable","2024-08-18 19:38:49.000" -"","Florence","status-playable","playable","2020-09-05 01:22:30.000" -"","Flowlines VS","status-playable","playable","2020-12-17 17:01:53.000" -"","Flux8","nvdec;status-playable","playable","2020-06-19 20:55:11.000" -"","Fly O'Clock VS","status-playable","playable","2020-05-17 13:39:52.000" -"","Fly Punch Boom!","online;status-playable","playable","2020-06-21 12:06:11.000" -"0100419013A8A000","Flying Hero X","status-menus;crash","menus","2021-11-17 07:46:58.000" -"","Fobia","status-playable","playable","2020-12-14 21:05:23.000" -"0100F3900D0F0000","Food Truck Tycoon","status-playable","playable","2022-10-17 20:15:55.000" -"01007CF013152000","Football Manager 2021 Touch","gpu;status-ingame","ingame","2022-10-17 20:08:23.000" -"010097F0099B4000","Football Manager Touch 2018","status-playable","playable","2022-07-26 20:17:56.000" -"010069400B6BE000","For The King","nvdec;status-playable","playable","2021-02-15 18:51:44.000" -"01001D200BCC4000","Forager","status-menus;crash","menus","2021-11-24 07:10:17.000" -"0100AE001256E000","Foreclosed","status-ingame;crash;Needs More Attention;nvdec","ingame","2022-12-06 14:41:12.000" -"","Foregone","deadlock;status-ingame","ingame","2020-12-17 15:26:53.000" -"010059E00B93C000","Forgotton Anne","nvdec;status-playable","playable","2021-02-15 18:28:07.000" -"","Fort Boyard","nvdec;slow;status-playable","playable","2020-05-15 13:22:53.000" -"010025400AECE000","Fortnite","services-horizon;status-nothing","nothing","2024-04-06 18:23:25.000" -"0100CA500756C000","Fossil Hunters","status-playable;nvdec","playable","2022-07-27 11:37:20.000" -"","FoxyLand","status-playable","playable","2020-07-29 20:55:20.000" -"","FoxyLand 2","status-playable","playable","2020-08-06 14:41:30.000" -"01004200099F2000","Fractured Minds","status-playable","playable","2022-09-13 21:21:40.000" -"0100AC40108D8000","Fred3ric","status-playable","playable","2021-04-15 13:30:31.000" -"","Frederic 2","status-playable","playable","2020-07-23 16:44:37.000" -"","Frederic: Resurrection of Music","nvdec;status-playable","playable","2020-07-23 16:59:53.000" -"010082B00EE50000","Freedom Finger","nvdec;status-playable","playable","2021-06-09 19:31:30.000" -"","Freedom Planet","status-playable","playable","2020-05-14 12:23:06.000" -"010003F00BD48000","Friday the 13th: Killer Puzzle","status-playable","playable","2021-01-28 01:33:38.000" -"010092A00C4B6000","Friday the 13th: The Game","status-playable;nvdec;online-broken;UE4","playable","2022-09-06 17:33:27.000" -"0100F200178F4000","Front Mission 1st Remake","status-playable","playable","2023-06-09 07:44:24.000" -"","Frontline Zed","status-playable","playable","2020-10-03 12:55:59.000" -"0100B5300B49A000","Frost","status-playable","playable","2022-07-27 12:00:36.000" -"","Fruitfall Crush","status-playable","playable","2020-10-20 11:33:33.000" -"","FullBlast","status-playable","playable","2020-05-19 10:34:13.000" -"","FunBox Party","status-playable","playable","2020-05-15 12:07:02.000" -"","Funghi Puzzle Funghi Explosion","status-playable","playable","2020-11-23 14:17:41.000" -"01008E10130F8000","Funimation","gpu;status-boots","boots","2021-04-08 13:08:17.000" -"","Funny Bunny Adventures","status-playable","playable","2020-08-05 13:46:56.000" -"01000EC00AF98000","Furi","status-playable","playable","2022-07-27 12:21:20.000" -"01000EC00AF98000","Furi Definitive Edition","status-playable","playable","2022-07-27 12:35:08.000" -"0100A6B00D4EC000","Furwind","status-playable","playable","2021-02-19 19:44:08.000" -"","Fury Unleashed","crash;services;status-ingame","ingame","2020-10-18 11:52:40.000" -"","Fury Unleashed Demo","status-playable","playable","2020-10-08 20:09:21.000" -"","Fushigi no Gensokyo Lotus Labyrinth","Needs Update;audio;gpu;nvdec;status-ingame","ingame","2021-01-20 15:30:02.000" -"01003C300B274000","Futari de! Nyanko Daisensou","status-playable","playable","2024-01-05 22:26:52.000" -"010067600F1A0000","FuzzBall","crash;status-nothing","nothing","2021-03-29 20:13:21.000" -"","G-MODE Archives 06 The strongest ever Julia Miyamoto","status-playable","playable","2020-10-15 13:06:26.000" -"","G.I. Joe Operation Blackout","UE4;crash;status-boots","boots","2020-11-21 12:37:44.000" -"0100C9800A454000","GALAK-Z: Variant S","status-boots;online-broken","boots","2022-07-29 11:59:12.000" -"010045F00BFC2000","GIGA WRECKER Alt.","status-playable","playable","2022-07-29 14:13:54.000" -"0100C1800A9B6000","GO VACATION","status-playable;nvdec;ldn-works","playable","2024-05-13 19:28:53.000" -"01001C700873E000","GOD EATER 3","gpu;status-ingame;nvdec","ingame","2022-07-29 21:33:21.000" -"","GOD WARS THE COMPLETE LEGEND","nvdec;status-playable","playable","2020-05-19 14:37:50.000" -"","GORSD","status-playable","playable","2020-12-04 22:15:21.000" -"010068D00AE68000","GREEN","status-playable","playable","2022-08-01 12:54:15.000" -"0100DFE00F002000","GREEN The Life Algorithm","status-playable","playable","2022-09-27 21:37:13.000" -"0100DC800A602000","GRID Autosport","status-playable;nvdec;online-broken;ldn-untested","playable","2023-03-02 20:14:45.000" -"0100459009A2A000","GRIP","status-playable;nvdec;online-broken;UE4","playable","2022-08-01 15:00:22.000" -"0100E1700C31C000","GRIS","nvdec;status-playable","playable","2021-06-03 13:33:44.000" -"01009D7011B02000","GRISAIA PHANTOM TRIGGER 01&02","status-playable;nvdec","playable","2022-12-04 21:16:06.000" -"0100D970123BA000","GRISAIA PHANTOM TRIGGER 04 -0100D970123BA000","audout;status-playable","playable","2021-01-31 12:40:37.000" -"01002330123BC000","GRISAIA PHANTOM TRIGGER 05","audout;nvdec;status-playable","playable","2021-01-31 12:49:59.000" -"0100CAF013AE6000","GRISAIA PHANTOM TRIGGER 5.5","audout;nvdec;status-playable","playable","2021-01-31 12:59:44.000" -"","GUILTY GEAR XX ACCENT CORE PLUS R","nvdec;status-playable","playable","2021-01-13 09:28:33.000" -"01003C6008940000","GUNBIRD for Nintendo Switch","32-bit;status-playable","playable","2021-06-04 19:16:01.000" -"","GUNBIRD2 for Nintendo Switch","status-playable","playable","2020-10-10 14:41:16.000" -"","Gal Metal - 01B8000C2EA000","status-playable","playable","2022-07-27 20:57:48.000" -"010024700901A000","Gal*Gun 2","status-playable;nvdec;UE4","playable","2022-07-27 12:45:37.000" -"0100047013378000","Gal*Gun Returns [ ぎゃる☆がん りたーんず ]","status-playable;nvdec","playable","2022-10-17 23:50:46.000" -"0100C62011050000","Game Boy - Nintendo Switch Online","status-playable","playable","2023-03-21 12:43:48.000" -"010012F017576000","Game Boy Advance - Nintendo Switch Online","status-playable","playable","2023-02-16 20:38:15.000" -"0100FA5010788000","Game Builder Garage","status-ingame","ingame","2024-04-20 21:46:22.000" -"","Game Dev Story","status-playable","playable","2020-05-20 00:00:38.000" -"01006BD00F8C0000","Game Doraemon Nobita no Shin Kyoryu","gpu;status-ingame","ingame","2023-02-27 02:03:28.000" -"","Garage","status-playable","playable","2020-05-19 20:59:53.000" -"010061E00E8BE000","Garfield Kart Furious Racing","status-playable;ldn-works;loader-allocator","playable","2022-09-13 21:40:25.000" -"","Gates of Hell","slow;status-playable","playable","2020-10-22 12:44:26.000" -"010025500C098000","Gato Roboto","status-playable","playable","2023-01-20 15:04:11.000" -"010065E003FD8000","Gear.Club Unlimited","status-playable","playable","2021-06-08 13:03:19.000" -"010072900AFF0000","Gear.Club Unlimited 2","status-playable;nvdec;online-broken","playable","2022-07-29 12:52:16.000" -"01000F000D9F0000","Geki Yaba Runner Anniversary Edition","status-playable","playable","2021-02-19 18:59:07.000" -"","Gekido Kintaro's Revenge","status-playable","playable","2020-10-27 12:44:05.000" -"01009D000AF3A000","Gelly Break","UE4;status-playable","playable","2021-03-03 16:04:02.000" -"01001A4008192000","Gem Smashers","nvdec;status-playable","playable","2021-06-08 13:40:51.000" -"","Genetic Disaster","status-playable","playable","2020-06-19 21:41:12.000" -"0100D7E0110B2000","Genkai Tokki Moero Crystal H- 極限凸起 萌情水晶 H - 한계돌파 모에로크리스탈 H","32-bit;status-playable","playable","2022-06-06 00:42:09.000" -"010000300C79C000","Gensokyo Defenders","status-playable;online-broken;UE4","playable","2022-07-29 13:48:12.000" -"0100AC600EB4C000","Gensou Rougoku no Kaleidscope","status-menus;crash","menus","2021-11-24 08:45:07.000" -"","Georifters","UE4;crash;nvdec;status-menus","menus","2020-12-04 22:30:50.000" -"","Gerrrms","status-playable","playable","2020-08-15 11:32:52.000" -"","Get 10 Quest","status-playable","playable","2020-08-03 12:48:39.000" -"0100B5B00E77C000","Get Over Here","status-playable","playable","2022-10-28 11:53:52.000" -"0100EEB005ACC000","Ghost 1.0","status-playable","playable","2021-02-19 20:48:47.000" -"010063200C588000","Ghost Blade HD","status-playable;online-broken","playable","2022-09-13 21:51:21.000" -"","Ghost Grab 3000","status-playable","playable","2020-07-11 18:09:52.000" -"","Ghost Parade","status-playable","playable","2020-07-14 00:43:54.000" -"01004B301108C000","Ghost Sweeper","status-playable","playable","2022-10-10 12:45:36.000" -"010029B018432000","Ghost Trick Phantom Detective","status-playable","playable","2023-08-23 14:50:12.000" -"010008A00F632000","Ghostbusters: The Video Game Remastered","status-playable;nvdec","playable","2021-09-17 07:26:57.000" -"","Ghostrunner","UE4;crash;gpu;nvdec;status-ingame","ingame","2020-12-17 13:01:59.000" -"0100D6200F2BA000","Ghosts 'n Goblins Resurrection","status-playable","playable","2023-05-09 12:40:41.000" -"01003830092B8000","Giana Sisters: Twisted Dreams - Owltimate Edition","status-playable","playable","2022-07-29 14:06:12.000" -"0100D95012C0A000","Gibbous - A Cthulhu Adventure","status-playable;nvdec","playable","2022-10-10 12:57:17.000" -"01002C400E526000","Gigantosaurus The Game","status-playable;UE4","playable","2022-09-27 21:20:00.000" -"0100C50007070000","Ginger: Beyond the Crystal","status-playable","playable","2021-02-17 16:27:00.000" -"","Girabox","status-playable","playable","2020-12-12 13:55:05.000" -"","Giraffe and Annika","UE4;crash;status-ingame","ingame","2020-12-04 22:41:57.000" -"01006DD00CC96000","Girls und Panzer Dream Tank Match DX","status-playable;ldn-untested","playable","2022-09-12 16:07:11.000" -"","Glaive: Brick Breaker","status-playable","playable","2020-05-20 12:15:59.000" -"","Glitch's Trip","status-playable","playable","2020-12-17 16:00:57.000" -"0100EB501130E000","Glyph","status-playable","playable","2021-02-08 19:56:51.000" -"","Gnome More War","status-playable","playable","2020-12-17 16:33:07.000" -"","Gnomes Garden 2","status-playable","playable","2021-02-19 20:08:13.000" -"010036C00D0D6000","Gnomes Garden: Lost King","deadlock;status-menus","menus","2021-11-18 11:14:03.000" -"01008EF013A7C000","Gnosia","status-playable","playable","2021-04-05 17:20:30.000" -"01000C800FADC000","Go All Out","status-playable;online-broken","playable","2022-09-21 19:16:34.000" -"010055A0161F4000","Go Rally","gpu;status-ingame","ingame","2023-08-16 21:18:23.000" -"","Go! Fish Go!","status-playable","playable","2020-07-27 13:52:28.000" -"010032600C8CE000","Goat Simulator","32-bit;status-playable","playable","2022-07-29 21:02:33.000" -"0100CFA0111C8000","Gods Will Fall","status-playable","playable","2021-02-08 16:49:59.000" -"","Goetia","status-playable","playable","2020-05-19 12:55:39.000" -"","Going Under","deadlock;nvdec;status-ingame","ingame","2020-12-11 22:29:46.000" -"","Goken","status-playable","playable","2020-08-05 20:22:38.000" -"010013800F0A4000","Golazo - 010013800F0A4000","status-playable","playable","2022-09-13 21:58:37.000" -"01003C000D84C000","Golem Gates","status-ingame;crash;nvdec;online-broken;UE4","ingame","2022-07-30 11:35:11.000" -"","Golf Story","status-playable","playable","2020-05-14 14:56:17.000" -"01006FB00EBE0000","Golf With Your Friends","status-playable;online-broken","playable","2022-09-29 12:55:11.000" -"0100EEC00AA6E000","Gone Home","status-playable","playable","2022-08-01 11:14:20.000" -"","Gonner","status-playable","playable","2020-05-19 12:05:02.000" -"","Good Job!","status-playable","playable","2021-03-02 13:15:55.000" -"01003AD0123A2000","Good Night, Knight","status-nothing;crash","nothing","2023-07-30 23:38:13.000" -"","Good Pizza, Great Pizza","status-playable","playable","2020-12-04 22:59:18.000" -"","Goosebumps Dead of Night","gpu;nvdec;status-ingame","ingame","2020-12-10 20:02:16.000" -"","Goosebumps: The Game","status-playable","playable","2020-05-19 11:56:52.000" -"0100F2A005C98000","Gorogoa","status-playable","playable","2022-08-01 11:55:08.000" -"","Gotcha Racing 2nd","status-playable","playable","2020-07-23 17:14:04.000" -"","Gothic Murder: Adventure That Changes Destiny","deadlock;status-ingame;crash","ingame","2022-09-30 23:16:53.000" -"","Grab the Bottle","status-playable","playable","2020-07-14 17:06:41.000" -"","Graceful Explosion Machine","status-playable","playable","2020-05-19 20:36:55.000" -"","Grand Brix Shooter","slow;status-playable","playable","2020-06-24 13:23:54.000" -"010038100D436000","Grand Guilds","UE4;nvdec;status-playable","playable","2021-04-26 12:49:05.000" -"0100BE600D07A000","Grand Prix Story","status-playable","playable","2022-08-01 12:42:23.000" -"05B1D2ABD3D30000","Grand Theft Auto 3","services;status-nothing;crash;homebrew","nothing","2023-05-01 22:01:58.000" -"0100E0600BBC8000","Grandia HD Collection","status-boots;crash","boots","2024-08-19 04:29:48.000" -"","Grass Cutter","slow;status-ingame","ingame","2020-05-19 18:27:42.000" -"","Grave Danger","status-playable","playable","2020-05-18 17:41:28.000" -"010054A013E0C000","GraviFire","status-playable","playable","2021-04-05 17:13:32.000" -"01002C2011828000","Gravity Rider Zero","gpu;status-ingame;vulkan-backend-bug","ingame","2022-09-29 13:56:13.000" -"","Greedroid","status-playable","playable","2020-12-14 11:14:32.000" -"0100CBB0070EE000","Green Game","nvdec;status-playable","playable","2021-02-19 18:51:55.000" -"0100DA7013792000","Grey Skies: A War of the Worlds Story","status-playable;UE4","playable","2022-10-24 11:13:59.000" -"","Grid Mania","status-playable","playable","2020-05-19 14:11:05.000" -"","Gridd: Retroenhanced","status-playable","playable","2020-05-20 11:32:40.000" -"0100B7900B024000","Grim Fandango Remastered","status-playable;nvdec","playable","2022-08-01 13:55:58.000" -"010078E012D80000","Grim Legends 2: Song Of The Dark Swan","status-playable;nvdec","playable","2022-10-18 12:58:45.000" -"010009F011F90000","Grim Legends: The Forsaken Bride","status-playable;nvdec","playable","2022-10-18 13:14:06.000" -"01001E200F2F8000","Grimshade","status-playable","playable","2022-10-02 12:44:20.000" -"0100538012496000","Grindstone","status-playable","playable","2023-02-08 15:54:06.000" -"01005250123B8000","Grisaia Phantom Trigger 03","audout;status-playable","playable","2021-01-31 12:30:47.000" -"010091300FFA0000","Grizzland","gpu;status-ingame","ingame","2024-07-11 16:28:34.000" -"0100EB500D92E000","Groove Coaster: Wai Wai Party!!!!","status-playable;nvdec;ldn-broken","playable","2021-11-06 14:54:27.000" -"","Guacamelee! 2","status-playable","playable","2020-05-15 14:56:59.000" -"","Guacamelee! Super Turbo Championship Edition","status-playable","playable","2020-05-13 23:44:18.000" -"","Guess The Word","status-playable","playable","2020-07-26 21:34:25.000" -"","Guess the Character","status-playable","playable","2020-05-20 13:14:19.000" -"","Gunka o haita neko","gpu;nvdec;status-ingame","ingame","2020-08-25 12:37:56.000" -"","Gunman Clive HD Collection","status-playable","playable","2020-10-09 12:17:35.000" -"","Guns Gore and Cannoli 2","online;status-playable","playable","2021-01-06 18:43:59.000" -"","Gunvolt Chronicles: Luminous Avenger iX","status-playable","playable","2020-06-16 22:47:07.000" -"0100763015C2E000","Gunvolt Chronicles: Luminous Avenger iX 2","status-nothing;crash;Needs Update","nothing","2022-04-29 15:34:34.000" -"01002C8018554000","Gurimugurimoa OnceMore Demo","status-playable","playable","2022-07-29 22:07:31.000" -"0100AC601DCA8000","Gylt","status-ingame;crash","ingame","2024-03-18 20:16:51.000" -"0100822012D76000","HAAK","gpu;status-ingame","ingame","2023-02-19 14:31:05.000" -"","HARDCORE MECHA","slow;status-playable","playable","2020-11-01 15:06:33.000" -"","HARDCORE Maze Cube","status-playable","playable","2020-12-04 20:01:24.000" -"0100A8B00F0B4000","HYPERCHARGE: Unboxed","status-playable;nvdec;online-broken;UE4;ldn-untested","playable","2022-09-27 21:52:39.000" -"","Habroxia","status-playable","playable","2020-06-16 23:04:42.000" -"0100535012974000","Hades","status-playable;vulkan","playable","2022-10-05 10:45:21.000" -"","Hakoniwa Explorer Plus","slow;status-ingame","ingame","2021-02-19 16:56:19.000" -"","Halloween Pinball","status-playable","playable","2021-01-12 16:00:46.000" -"01006FF014152000","Hamidashi Creative","gpu;status-ingame","ingame","2021-12-19 15:30:51.000" -"01003B9007E86000","Hammerwatch","status-playable;online-broken;ldn-broken","playable","2022-08-01 16:28:46.000" -"01003620068EA000","Hand of Fate 2","status-playable","playable","2022-08-01 15:44:16.000" -"","Hang the Kings","status-playable","playable","2020-07-28 22:56:59.000" -"010066C018E50000","Happy Animals Mini Golf","gpu;status-ingame","ingame","2022-12-04 19:24:28.000" -"0100ECE00D13E000","Hard West","status-nothing;regression","nothing","2022-02-09 07:45:56.000" -"01000C90117FA000","HardCube","status-playable","playable","2021-05-05 18:33:03.000" -"","Hardway Party","status-playable","playable","2020-07-26 12:35:07.000" -"0100D0500AD30000","Harvest Life","status-playable","playable","2022-08-01 16:51:45.000" -"","Harvest Moon One World - 010016B010FDE00","status-playable","playable","2023-05-26 09:17:19.000" -"0100A280187BC000","Harvestella","status-playable;UE4;vulkan-backend-bug;mac-bug","playable","2024-02-13 07:04:11.000" -"","Has-Been Heroes","status-playable","playable","2021-01-13 13:31:48.000" -"01001CC00FA1A000","Hatsune Miku: Project DIVA Mega Mix","audio;status-playable;online-broken","playable","2024-01-07 23:12:57.000" -"01009E6014F18000","Haunted Dawn: The Zombie Apocalypse","status-playable","playable","2022-10-28 12:31:51.000" -"","Haunted Dungeons: Hyakki Castle","status-playable","playable","2020-08-12 14:21:48.000" -"0100E2600DBAA000","Haven","status-playable","playable","2021-03-24 11:52:41.000" -"0100EA900FB2C000","Hayfever","status-playable;loader-allocator","playable","2022-09-22 17:35:41.000" -"0100EFE00E1DC000","Headliner: NoviNews","online;status-playable","playable","2021-03-01 11:36:00.000" -"","Headsnatchers","UE4;crash;status-menus","menus","2020-07-14 13:29:14.000" -"","Headspun","status-playable","playable","2020-07-31 19:46:47.000" -"","Heart and Slash","status-playable","playable","2021-01-13 20:56:32.000" -"","Heaven Dust","status-playable","playable","2020-05-17 14:02:41.000" -"0100FD901000C000","Heaven's Vault","crash;status-ingame","ingame","2021-02-08 18:22:01.000" -"","Helheim Hassle","status-playable","playable","2020-10-14 11:38:36.000" -"01000938017E5C00","Hell Pie0","status-playable;nvdec;UE4","playable","2022-11-03 16:48:46.000" -"0100A4600E27A000","Hell Warders","online;status-playable","playable","2021-02-27 02:31:03.000" -"","Hell is Other Demons","status-playable","playable","2021-01-13 13:23:02.000" -"010044500CF8E000","Hellblade: Senua's Sacrifice","gpu;status-ingame;UE4;vulkan-backend-bug;opengl-backend-bug","ingame","2022-08-01 19:36:50.000" -"010087D0084A8000","Hello Kitty Kruisers With Sanrio Friends","nvdec;status-playable","playable","2021-06-04 19:08:46.000" -"0100FAA00B168000","Hello Neighbor","status-playable;UE4","playable","2022-08-01 21:32:23.000" -"","Hello Neighbor: Hide And Seek","UE4;gpu;slow;status-ingame","ingame","2020-10-24 10:59:57.000" -"010024600C794000","Hellpoint","status-menus","menus","2021-11-26 13:24:20.000" -"","Hero Express","nvdec;status-playable","playable","2020-08-06 13:23:43.000" -"010077D01094C000","Hero-U: Rogue to Redemption","nvdec;status-playable","playable","2021-03-24 11:40:01.000" -"0100D2B00BC54000","Heroes of Hammerwatch","status-playable","playable","2022-08-01 18:30:21.000" -"01001B70080F0000","Heroine Anthem Zero episode 1","status-playable;vulkan-backend-bug","playable","2022-08-01 22:02:36.000" -"010057300B0DC000","Heroki","gpu;status-ingame","ingame","2023-07-30 19:30:01.000" -"","Heroland","status-playable","playable","2020-08-05 15:35:39.000" -"01007AC00E012000","Hexagravity","status-playable","playable","2021-05-28 13:47:48.000" -"01004E800F03C000","Hidden","slow;status-ingame","ingame","2022-10-05 10:56:53.000" -"0100F6A00A684000","Higurashi no Naku Koro ni Hō","audio;status-ingame","ingame","2021-09-18 14:40:28.000" -"0100F8D0129F4000","Himehibi 1 gakki - Princess Days","status-nothing;crash","nothing","2021-11-03 08:34:19.000" -"","Hiragana Pixel Party","status-playable","playable","2021-01-14 08:36:50.000" -"01004990132AC000","Hitman 3 - Cloud Version","Needs Update;crash;services;status-nothing","nothing","2021-04-18 22:35:07.000" -"010083A018262000","Hitman: Blood Money - Reprisal","deadlock;status-ingame","ingame","2024-09-28 16:28:50.000" -"","HoPiKo","status-playable","playable","2021-01-13 20:12:38.000" -"","Hob: The Definitive Edition","status-playable","playable","2021-01-13 09:39:19.000" -"0100F7300ED2C000","Hoggy 2","status-playable","playable","2022-10-10 13:53:35.000" -"0100F7E00C70E000","Hogwarts Legacy 0100F7E00C70E000","status-ingame;slow","ingame","2024-09-03 19:53:58.000" -"0100633007D48000","Hollow Knight","status-playable;nvdec","playable","2023-01-16 15:44:56.000" -"0100F2100061E800","Hollow0","UE4;gpu;status-ingame","ingame","2021-03-03 23:42:56.000" -"","Holy Potatoes! What the Hell?!","status-playable","playable","2020-07-03 10:48:56.000" -"010087800EE5A000","Hopping girl KOHANE Jumping Kingdom: Princess of the Black Rabbit","status-boots;crash","boots","2023-02-19 00:51:21.000" -"010086D011EB8000","Horace","status-playable","playable","2022-10-10 14:03:50.000" -"0100001019F6E000","Horizon Chase 2","deadlock;slow;status-ingame;crash;UE4","ingame","2024-08-19 04:24:06.000" -"01009EA00B714000","Horizon Chase Turbo","status-playable","playable","2021-02-19 19:40:56.000" -"0100E4200FA82000","Horror Pinball Bundle","status-menus;crash","menus","2022-09-13 22:15:34.000" -"0100017007980000","Hotel Transylvania 3: Monsters Overboard","nvdec;status-playable","playable","2021-01-27 18:55:31.000" -"0100D0E00E51E000","Hotline Miami Collection","status-playable;nvdec","playable","2022-09-09 16:41:19.000" -"0100BDE008218000","Hotshot Racing","gpu;status-ingame;nvdec;online-broken;ldn-untested;vulkan-backend-bug","ingame","2024-02-04 21:31:17.000" -"0100CAE00EB02000","House Flipper","status-playable","playable","2021-06-16 18:28:32.000" -"0100F6800910A000","Hover","status-playable;online-broken","playable","2022-09-20 12:54:46.000" -"0100A66003384000","Hulu","status-boots;online-broken","boots","2022-12-09 10:05:00.000" -"","Human Resource Machine","32-bit;status-playable","playable","2020-12-17 21:47:09.000" -"","Human: Fall Flat","status-playable","playable","2021-01-13 18:36:05.000" -"","Hungry Shark World","status-playable","playable","2021-01-13 18:26:08.000" -"0100EBA004726000","Huntdown","status-playable","playable","2021-04-05 16:59:54.000" -"010068000CAC0000","Hunter's Legacy: Purrfect Edition","status-playable","playable","2022-08-02 10:33:31.000" -"0100C460040EA000","Hunting Simulator","status-playable;UE4","playable","2022-08-02 10:54:08.000" -"010061F010C3A000","Hunting Simulator 2","status-playable;UE4","playable","2022-10-10 14:25:51.000" -"","Hyper Jam","UE4;crash;status-boots","boots","2020-12-15 22:52:11.000" -"01003B200B372000","Hyper Light Drifter - Special Edition","status-playable;vulkan-backend-bug","playable","2023-01-13 15:44:48.000" -"","HyperBrawl Tournament","crash;services;status-boots","boots","2020-12-04 23:03:27.000" -"010061400ED90000","HyperParasite","status-playable;nvdec;UE4","playable","2022-09-27 22:05:44.000" -"0100959010466000","Hypnospace Outlaw","status-ingame;nvdec","ingame","2023-08-02 22:46:49.000" -"01002B00111A2000","Hyrule Warriors: Age of Calamity","gpu;deadlock;slow;status-ingame;crash;nvdec;amd-vendor-bug","ingame","2024-02-28 00:47:00.000" -"0100A2C01320E000","Hyrule Warriors: Age of Calamity - Demo Version","slow;status-playable","playable","2022-10-10 17:37:41.000" -"0100AE00096EA000","Hyrule Warriors: Definitive Edition","services-horizon;status-ingame;nvdec","ingame","2024-06-16 10:34:05.000" -"0100849000BDA000","I AM SETSUNA","status-playable","playable","2021-11-28 11:06:11.000" -"01001860140B0000","I Saw Black Clouds","nvdec;status-playable","playable","2021-04-19 17:22:16.000" -"","I, Zombie","status-playable","playable","2021-01-13 14:53:44.000" -"","ICEY","status-playable","playable","2021-01-14 16:16:04.000" -"0100737003190000","IMPLOSION","status-playable;nvdec","playable","2021-12-12 03:52:13.000" -"0100F1401161E000","INMOST","status-playable","playable","2022-10-05 11:27:40.000" -"0100D2D009028000","INSIDE","status-playable","playable","2021-12-25 20:24:56.000" -"010099700D750000","INSTANT SPORTS","status-playable","playable","2022-09-09 12:59:40.000" -"01001D0003B96000","INVERSUS Deluxe","status-playable;online-broken","playable","2022-08-02 14:35:36.000" -"0100F06013710000","ISLAND","status-playable","playable","2021-05-06 15:11:47.000" -"010068700C70A000","ITTA","status-playable","playable","2021-06-07 03:15:52.000" -"01004E5007E92000","Ice Age Scrat's Nutty Adventure","status-playable;nvdec","playable","2022-09-13 22:22:29.000" -"","Ice Cream Surfer","status-playable","playable","2020-07-29 12:04:07.000" -"0100954014718000","Ice Station Z","status-menus;crash","menus","2021-11-21 20:02:15.000" -"0100BC60099FE000","Iconoclasts","status-playable","playable","2021-08-30 21:11:04.000" -"","Idle Champions of the Forgotten Realms","online;status-boots","boots","2020-12-17 18:24:57.000" -"01002EC014BCA000","Idol Days - 愛怒流でいす","gpu;status-ingame;crash","ingame","2021-12-19 15:31:28.000" -"","If Found...","status-playable","playable","2020-12-11 13:43:14.000" -"01001AC00ED72000","If My Heart Had Wings","status-playable","playable","2022-09-29 14:54:57.000" -"01009F20086A0000","Ikaruga","status-playable","playable","2023-04-06 15:00:02.000" -"010040900AF46000","Ikenfell","status-playable","playable","2021-06-16 17:18:44.000" -"01007BC00E55A000","Immortal Planet","status-playable","playable","2022-09-20 13:40:43.000" -"010079501025C000","Immortal Realms: Vampire Wars","nvdec;status-playable","playable","2021-06-17 17:41:46.000" -"","Immortal Redneck - 0100F400435A000","nvdec;status-playable","playable","2021-01-27 18:36:28.000" -"01004A600EC0A000","Immortals Fenyx Rising","gpu;status-menus;crash","menus","2023-02-24 16:19:55.000" -"0100A760129A0000","In rays of the Light","status-playable","playable","2021-04-07 15:18:07.000" -"01004DE011076000","Indie Darling Bundle Vol. 3","status-playable","playable","2022-10-02 13:01:57.000" -"0100A2101107C000","Indie Puzzle Bundle Vol 1","status-playable","playable","2022-09-27 22:23:21.000" -"","Indiecalypse","nvdec;status-playable","playable","2020-06-11 20:19:09.000" -"01001D3003FDE000","Indivisible","status-playable;nvdec","playable","2022-09-29 15:20:57.000" -"01002BD00F626000","Inertial Drift","status-playable;online-broken","playable","2022-10-11 12:22:19.000" -"","Infernium","UE4;regression;status-nothing","nothing","2021-01-13 16:36:07.000" -"","Infinite Minigolf","online;status-playable","playable","2020-09-29 12:26:25.000" -"01001CB00EFD6000","Infliction","status-playable;nvdec;UE4","playable","2022-10-02 13:15:55.000" -"","InnerSpace","status-playable","playable","2021-01-13 19:36:14.000" -"","Inside Grass: A little adventure","status-playable","playable","2020-10-15 15:26:27.000" -"","Instant Sports Summer Games","gpu;status-menus","menus","2020-09-02 13:39:28.000" -"010031B0145B8000","Instant Sports Tennis","status-playable","playable","2022-10-28 16:42:17.000" -"010041501005E000","Interrogation: You will be deceived","status-playable","playable","2022-10-05 11:40:10.000" -"01000F700DECE000","Into the Dead 2","status-playable;nvdec","playable","2022-09-14 12:36:14.000" -"","Invisible Fist","status-playable","playable","2020-08-08 13:25:52.000" -"","Invisible, Inc.","crash;status-nothing","nothing","2021-01-29 16:28:13.000" -"01005F400E644000","Invisigun Reloaded","gpu;online;status-ingame","ingame","2021-06-10 12:13:24.000" -"010041C00D086000","Ion Fury","status-ingame;vulkan-backend-bug","ingame","2022-08-07 08:27:51.000" -"010095C016C14000","Iridium","status-playable","playable","2022-08-05 23:19:53.000" -"0100945012168000","Iris Fall","status-playable;nvdec","playable","2022-10-18 13:40:22.000" -"0100AD300B786000","Iris School of Wizardry - Vinculum Hearts -","status-playable","playable","2022-12-05 13:11:15.000" -"01005270118D6000","Iron Wings","slow;status-ingame","ingame","2022-08-07 08:32:57.000" -"","Ironcast","status-playable","playable","2021-01-13 13:54:29.000" -"0100E5700CD56000","Irony Curtain: From Matryoshka with Love","status-playable","playable","2021-06-04 20:12:37.000" -"","Is It Wrong to Try to Pick Up Girls in a Dungeon? Infinite Combate","status-playable","playable","2020-08-31 13:52:21.000" -"010077900440A000","Island Flight Simulator","status-playable","playable","2021-06-04 19:42:46.000" -"","Island Saver","nvdec;status-playable","playable","2020-10-23 22:07:02.000" -"","Isoland","status-playable","playable","2020-07-26 13:48:16.000" -"","Isoland 2: Ashes of Time","status-playable","playable","2020-07-26 14:29:05.000" -"010001F0145A8000","Isolomus","services;status-boots","boots","2021-11-03 07:48:21.000" -"","Ittle Dew 2+","status-playable","playable","2020-11-17 11:44:32.000" -"0100DEB00F12A000","IxSHE Tell","status-playable;nvdec","playable","2022-12-02 18:00:42.000" -"0100D8E00C874000","Izneo","status-menus;online-broken","menus","2022-08-06 15:56:23.000" -"","JDM Racing","status-playable","playable","2020-08-03 17:02:37.000" -"0100183010F12000","JUMP FORCE Deluxe Edition","status-playable;nvdec;online-broken;UE4","playable","2023-10-01 15:56:05.000" -"0100DDB00DB38000","JUST DANCE 2020","status-playable","playable","2022-01-24 13:31:57.000" -"010035A0044E8000","JYDGE","status-playable","playable","2022-08-02 21:20:13.000" -"","James Pond Operation Robocod","status-playable","playable","2021-01-13 09:48:45.000" -"","Japanese Rail Sim: Journey to Kyoto","nvdec;status-playable","playable","2020-07-29 17:14:21.000" -"","Jenny LeClue - Detectivu","crash;status-nothing","nothing","2020-12-15 21:07:07.000" -"01006E400AE2A000","Jeopardy!","audout;nvdec;online;status-playable","playable","2021-02-22 13:53:46.000" -"0100E4900D266000","Jet Kave Adventure","status-playable;nvdec","playable","2022-09-09 14:50:39.000" -"0100F3500C70C000","Jet Lancer","gpu;status-ingame","ingame","2021-02-15 18:15:47.000" -"0100A5A00AF26000","Jettomero: Hero of the Universe","status-playable","playable","2022-08-02 14:46:43.000" -"01008330134DA000","Jiffy","gpu;status-ingame;opengl","ingame","2024-02-03 23:11:24.000" -"","Jim Is Moving Out!","deadlock;status-ingame","ingame","2020-06-03 22:05:19.000" -"0100F4D00D8BE000","Jinrui no Ninasama he","status-ingame;crash","ingame","2023-03-07 02:04:17.000" -"010038D011F08000","Jisei: The First Case HD","audio;status-playable","playable","2022-10-05 11:43:33.000" -"01008120128C2000","JoJos Bizarre Adventure All-Star Battle R","status-playable","playable","2022-12-03 10:45:10.000" -"","Job the Leprechaun","status-playable","playable","2020-06-05 12:10:06.000" -"01007090104EC000","John Wick Hex","status-playable","playable","2022-08-07 08:29:12.000" -"010069B002CDE000","Johnny Turbo's Arcade Gate of Doom","status-playable","playable","2022-07-29 12:17:50.000" -"010080D002CC6000","Johnny Turbo's Arcade Two Crude Dudes","status-playable","playable","2022-08-02 20:29:50.000" -"0100D230069CC000","Johnny Turbo's Arcade Wizard Fire","status-playable","playable","2022-08-02 20:39:15.000" -"01008B60117EC000","Journey to the Savage Planet","status-playable;nvdec;UE4;ldn-untested","playable","2022-10-02 18:48:12.000" -"0100C7600F654000","Juicy Realm - 0100C7600F654000","status-playable","playable","2023-02-21 19:16:20.000" -"","Jumanji","UE4;crash;status-boots","boots","2020-07-12 13:52:25.000" -"","Jump King","status-playable","playable","2020-06-09 10:12:39.000" -"0100B9C012706000","Jump Rope Challenge","services;status-boots;crash;Needs Update","boots","2023-02-27 01:24:28.000" -"","Jumping Joe & Friends","status-playable","playable","2021-01-13 17:09:42.000" -"","JunkPlanet","status-playable","playable","2020-11-09 12:38:33.000" -"0100CE100A826000","Jurassic Pinball","status-playable","playable","2021-06-04 19:02:37.000" -"010050A011344000","Jurassic World Evolution Complete Edition","cpu;status-menus;crash","menus","2023-08-04 18:06:54.000" -"0100BCE000598000","Just Dance 2017","online;status-playable","playable","2021-03-05 09:46:01.000" -"","Just Dance 2019","gpu;online;status-ingame","ingame","2021-02-27 17:21:27.000" -"0100EA6014BB8000","Just Dance 2022","gpu;services;status-ingame;crash;Needs Update","ingame","2022-10-28 11:01:53.000" -"0100BEE017FC0000","Just Dance 2023","status-nothing","nothing","2023-06-05 16:44:54.000" -"0100AC600CF0A000","Just Die Already","status-playable;UE4","playable","2022-12-13 13:37:50.000" -"","Just Glide","status-playable","playable","2020-08-07 17:38:10.000" -"","Just Shapes & Beats","ldn-untested;nvdec;status-playable","playable","2021-02-09 12:18:36.000" -"0100BDC00A664000","KAMEN RIDER CLIMAX SCRAMBLE","status-playable;nvdec;ldn-untested","playable","2024-07-03 08:51:11.000" -"0100A9801180E000","KAMEN RIDER memory of heroez / Premium Sound Edition","status-playable","playable","2022-12-06 03:14:26.000" -"","KAMIKO","status-playable","playable","2020-05-13 12:48:57.000" -"0100F9800EDFA000","KATANA KAMI: A Way of the Samurai Story","slow;status-playable","playable","2022-04-09 10:40:16.000" -"","KINGDOM HEARTS Melody of Memory","crash;nvdec;status-ingame","ingame","2021-03-03 17:34:12.000" -"","KORG Gadget","status-playable","playable","2020-05-13 13:57:24.000" -"010035A00DF62000","KUNAI","status-playable;nvdec","playable","2022-09-20 13:48:34.000" -"010037500F282000","KUUKIYOMI 2: Consider It More! - New Era","status-nothing;crash;Needs Update","nothing","2021-11-02 09:34:40.000" -"0100D58012FC2000","Kagamihara/Justice","crash;status-nothing","nothing","2021-06-21 16:41:29.000" -"0100D5F00EC52000","Kairobotica","status-playable","playable","2021-05-06 12:17:56.000" -"","Kangokuto Mary Skelter Finale","audio;crash;status-ingame","ingame","2021-01-09 22:39:28.000" -"01007FD00DB20000","Katakoi Contrast - collection of branch -","status-playable;nvdec","playable","2022-12-09 09:41:26.000" -"0100D7000C2C6000","Katamari Damacy REROLL","status-playable","playable","2022-08-02 21:35:05.000" -"010029600D56A000","Katana ZERO","status-playable","playable","2022-08-26 08:09:09.000" -"010038B00F142000","Kaze and the Wild Masks","status-playable","playable","2021-04-19 17:11:03.000" -"","Keen: One Girl Army","status-playable","playable","2020-12-14 23:19:52.000" -"01008D400A584000","Keep Talking and Nobody Explodes","status-playable","playable","2021-02-15 18:05:21.000" -"01004B100BDA2000","Kemono Friends Picross","status-playable","playable","2023-02-08 15:54:34.000" -"","Kentucky Robo Chicken","status-playable","playable","2020-05-12 20:54:17.000" -"0100327005C94000","Kentucky Route Zero [0100327005C94000]","status-playable","playable","2024-04-09 23:22:46.000" -"","KeroBlaster","status-playable","playable","2020-05-12 20:42:52.000" -"0100F680116A2000","Kholat","UE4;nvdec;status-playable","playable","2021-06-17 11:52:48.000" -"","Kid Tripp","crash;status-nothing","nothing","2020-10-15 07:41:23.000" -"","Kill The Bad Guy","status-playable","playable","2020-05-12 22:16:10.000" -"","Kill la Kill - IF","status-playable","playable","2020-06-09 14:47:08.000" -"0100F2900B3E2000","Killer Queen Black","ldn-untested;online;status-playable","playable","2021-04-08 12:46:18.000" -"","Kin'iro no Corda Octave","status-playable","playable","2020-09-22 13:23:12.000" -"010089000F0E8000","Kine","status-playable;UE4","playable","2022-09-14 14:28:37.000" -"0100E6B00FFBA000","King Lucas","status-playable","playable","2022-09-21 19:43:23.000" -"","King Oddball","status-playable","playable","2020-05-13 13:47:57.000" -"01008D80148C8000","King of Seas","status-playable;nvdec;UE4","playable","2022-10-28 18:29:41.000" -"0100515014A94000","King of Seas Demo","status-playable;nvdec;UE4","playable","2022-10-28 18:09:31.000" -"0100A280121F6000","Kingdom Rush","status-nothing;32-bit;crash;Needs More Attention","nothing","2022-10-05 12:34:00.000" -"0100BD9004AB6000","Kingdom: New Lands","status-playable","playable","2022-08-02 21:48:50.000" -"","Kingdom: Two Crowns","status-playable","playable","2020-05-16 19:36:21.000" -"0100EF50132BE000","Kingdoms of Amalur: Re-Reckoning","status-playable","playable","2023-08-10 13:05:08.000" -"0100227010460000","Kirby Fighters 2","ldn-works;online;status-playable","playable","2021-06-17 13:06:39.000" -"01007E3006DDA000","Kirby Star Allies","status-playable;nvdec","playable","2023-11-15 17:06:19.000" -"01004D300C5AE000","Kirby and the Forgotten Land","gpu;status-ingame","ingame","2024-03-11 17:11:21.000" -"010091201605A000","Kirby and the Forgotten Land (Demo version)","status-playable;demo","playable","2022-08-21 21:03:01.000" -"0100A8E016236000","Kirby’s Dream Buffet","status-ingame;crash;online-broken;Needs Update;ldn-works","ingame","2024-03-03 17:04:44.000" -"01006B601380E000","Kirby’s Return to Dream Land Deluxe","status-playable","playable","2024-05-16 19:58:04.000" -"010091D01A57E000","Kirby’s Return to Dream Land Deluxe - Demo","status-playable;demo","playable","2023-02-18 17:21:55.000" -"0100F3A00F4CA000","Kissed by the Baddest Bidder","gpu;status-ingame;nvdec","ingame","2022-12-04 20:57:11.000" -"01000C900A136000","Kitten Squad","status-playable;nvdec","playable","2022-08-03 12:01:59.000" -"","Klondike Solitaire","status-playable","playable","2020-12-13 16:17:27.000" -"","Knight Squad","status-playable","playable","2020-08-09 16:54:51.000" -"010024B00E1D6000","Knight Squad 2","status-playable;nvdec;online-broken","playable","2022-10-28 18:38:09.000" -"","Knight Terrors","status-playable","playable","2020-05-13 13:09:22.000" -"","Knightin'+","status-playable","playable","2020-08-31 18:18:21.000" -"","Knights of Pen and Paper +1 Deluxier Edition","status-playable","playable","2020-05-11 21:46:32.000" -"","Knights of Pen and Paper 2 Deluxiest Edition","status-playable","playable","2020-05-13 14:07:00.000" -"010001A00A1F6000","Knock-Knock","nvdec;status-playable","playable","2021-02-01 20:03:19.000" -"01009EF00DDB4000","Knockout City","services;status-boots;online-broken","boots","2022-12-09 09:48:58.000" -"0100C57019BA2000","Koa and the Five Pirates of Mara","gpu;status-ingame","ingame","2024-07-11 16:14:44.000" -"","Koi DX","status-playable","playable","2020-05-11 21:37:51.000" -"","Koi no Hanasaku Hyakkaen","32-bit;gpu;nvdec;status-ingame","ingame","2020-10-03 14:17:10.000" -"01005D200C9AA000","Koloro","status-playable","playable","2022-08-03 12:34:02.000" -"0100464009294000","Kona","status-playable","playable","2022-08-03 12:48:19.000" -"010016C011AAA000","Kono Subarashii Sekai ni Shukufuku o Kono Yokubo no Isho ni Choai o","status-playable","playable","2023-04-26 09:51:08.000" -"","Koral","UE4;crash;gpu;status-menus","menus","2020-11-16 12:41:26.000" -"010046600CCA4000","Kotodama: The 7 Mysteries of Fujisawa","audout;status-playable","playable","2021-02-01 20:28:37.000" -"010022801242C000","KukkoroDays","status-menus;crash","menus","2021-11-25 08:52:56.000" -"010060400ADD2000","Kunio-Kun: The World Classics Collection","online;status-playable","playable","2021-01-29 20:21:46.000" -"0100894011F62000","Kwaidan ~Azuma manor story~","status-playable","playable","2022-10-05 12:50:44.000" -"0100830004FB6000","L.A. Noire","status-playable","playable","2022-08-03 16:49:35.000" -"","L.F.O. - Lost Future Omega -","UE4;deadlock;status-boots","boots","2020-10-16 12:16:44.000" -"0100F2B0123AE000","L.O.L. Surprise! Remix: We Rule the World","status-playable","playable","2022-10-11 22:48:03.000" -"010026000F662800","LA-MULANA","gpu;status-ingame","ingame","2022-08-12 01:06:21.000" -"0100E5D00F4AE000","LA-MULANA 1 & 2","status-playable","playable","2022-09-22 17:56:36.000" -"01009E100BDD6000","LAST FIGHT","status-playable","playable","2022-09-20 13:54:55.000" -"0100739018020000","LEGO 2K Drive","gpu;status-ingame;ldn-works","ingame","2024-04-09 02:05:12.000" -"010070D009FEC000","LEGO DC Super-Villains","status-playable","playable","2021-05-27 18:10:37.000" -"010052A00B5D2000","LEGO Harry Potter Collection","status-ingame;crash","ingame","2024-01-31 10:28:07.000" -"010073C01AF34000","LEGO Horizon Adventures","status-ingame;vulkan-backend-bug;opengl-backend-bug;UE4","ingame","2025-01-07 04:24:56.000" -"01001C100E772000","LEGO Jurassic World","status-playable","playable","2021-05-27 17:00:20.000" -"01006F600FFC8000","LEGO Marvel Super Heroes","status-playable","playable","2024-09-10 19:02:19.000" -"0100D3A00409E000","LEGO Marvel Super Heroes 2","status-nothing;crash","nothing","2023-03-02 17:12:33.000" -"010042D00D900000","LEGO Star Wars: The Skywalker Saga","gpu;slow;status-ingame","ingame","2024-04-13 20:08:46.000" -"0100A01006E00000","LEGO The Incredibles","status-nothing;crash","nothing","2022-08-03 18:36:59.000" -"","LEGO Worlds","crash;slow;status-ingame","ingame","2020-07-17 13:35:39.000" -"01009C8009026000","LIMBO","cpu;status-boots;32-bit","boots","2023-06-28 15:39:19.000" -"","LITTLE FRIENDS -DOGS & CATS-","status-playable","playable","2020-11-12 12:45:51.000" -"0100CF801776C000","LIVE A LIVE","status-playable;UE4;amd-vendor-bug","playable","2023-02-05 15:12:07.000" -"0100BA000FC9C000","LOCO-SPORTS","status-playable","playable","2022-09-20 14:09:30.000" -"010062A0178A8000","LOOPERS","gpu;slow;status-ingame;crash","ingame","2022-06-17 19:21:45.000" -"010054600AC74000","LOST ORBIT: Terminal Velocity","status-playable","playable","2021-06-14 12:21:12.000" -"","LOST SPHEAR","status-playable","playable","2021-01-10 06:01:21.000" -"0100EC2011A80000","LUXAR","status-playable","playable","2021-03-04 21:11:57.000" -"010038000F644000","La Mulana 2","status-playable","playable","2022-09-03 13:45:57.000" -"010058500B3E0000","Labyrinth of Refrain: Coven of Dusk","status-playable","playable","2021-02-15 17:38:48.000" -"","Labyrinth of the Witch","status-playable","playable","2020-11-01 14:42:37.000" -"0100BAB00E8C0000","Langrisser I and II","status-playable","playable","2021-02-19 15:46:10.000" -"","Lanota","status-playable","playable","2019-09-04 01:58:14.000" -"01005E000D3D8000","Lapis x Labyrinth","status-playable","playable","2021-02-01 18:58:08.000" -"","Laraan","status-playable","playable","2020-12-16 12:45:48.000" -"0100DA700879C000","Last Day of June","nvdec;status-playable","playable","2021-06-08 11:35:32.000" -"0100055007B86000","Late Shift","nvdec;status-playable","playable","2021-02-01 18:43:58.000" -"","Later Daters","status-playable","playable","2020-07-29 16:35:45.000" -"01001730144DA000","Layers of Fear 2","status-playable;nvdec;UE4","playable","2022-10-28 18:49:52.000" -"","Layers of Fear: Legacy","nvdec;status-playable","playable","2021-02-15 16:30:41.000" -"0100CE500D226000","Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy - Deluxe Edition","status-playable;nvdec;opengl","playable","2022-09-14 15:01:57.000" -"0100FDB00AA80000","Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy DX+0","gpu;status-ingame;nvdec;opengl","ingame","2022-09-14 15:15:55.000" -"01009C100390E000","League of Evil","online;status-playable","playable","2021-06-08 11:23:27.000" -"","Left-Right: The Mansion","status-playable","playable","2020-05-13 13:02:12.000" -"010079901C898000","Legacy of Kain™ Soul Reaver 1&2 Remastered","status-playable","playable","2025-01-07 05:50:01.000" -"01002DB007A96000","Legend of Kay Anniversary","nvdec;status-playable","playable","2021-01-29 18:38:29.000" -"","Legend of the Skyfish","status-playable","playable","2020-06-24 13:04:22.000" -"","Legend of the Tetrarchs","deadlock;status-ingame","ingame","2020-07-10 07:54:03.000" -"0100A73006E74000","Legendary Eleven","status-playable","playable","2021-06-08 12:09:03.000" -"0100A7700B46C000","Legendary Fishing","online;status-playable","playable","2021-04-14 15:08:46.000" -"01003A30012C0000","Lego City Undercover","status-playable;nvdec","playable","2024-09-30 08:44:27.000" -"","Legrand Legacy: Tale of the Fatebounds","nvdec;status-playable","playable","2020-07-26 12:27:36.000" -"010031A0135CA000","Leisure Suit Larry - Wet Dreams Dry Twice","status-playable","playable","2022-10-28 19:00:57.000" -"0100A8E00CAA0000","Leisure Suit Larry: Wet Dreams Don't Dry","status-playable","playable","2022-08-03 19:51:44.000" -"01003AB00983C000","Lethal League Blaze","online;status-playable","playable","2021-01-29 20:13:31.000" -"","Letter Quest Remastered","status-playable","playable","2020-05-11 21:30:34.000" -"0100CE301678E800","Letters - a written adventure","gpu;status-ingame","ingame","2023-02-21 20:12:38.000" -"","Levelhead","online;status-ingame","ingame","2020-10-18 11:44:51.000" -"","Levels+","status-playable","playable","2020-05-12 13:51:39.000" -"0100C8000F146000","Liberated","gpu;status-ingame;nvdec","ingame","2024-07-04 04:58:24.000" -"01003A90133A6000","Liberated: Enhanced Edition","gpu;status-ingame;nvdec","ingame","2024-07-04 04:48:48.000" -"","Lichtspeer: Double Speer Edition","status-playable","playable","2020-05-12 16:43:09.000" -"010041F0128AE000","Liege Dragon","status-playable","playable","2022-10-12 10:27:03.000" -"010006300AFFE000","Life Goes On","status-playable","playable","2021-01-29 19:01:20.000" -"0100FD101186C000","Life is Strange 2","status-playable;UE4","playable","2024-07-04 05:05:58.000" -"0100DC301186A000","Life is Strange Remastered","status-playable;UE4","playable","2022-10-03 16:54:44.000" -"010008501186E000","Life is Strange: Before the Storm Remastered","status-playable","playable","2023-09-28 17:15:44.000" -"0100500012AB4000","Life is Strange: True Colors [0100500012AB4000]","gpu;status-ingame;UE4","ingame","2024-04-08 16:11:52.000" -"","Life of Boris: Super Slav","status-ingame","ingame","2020-12-17 11:40:05.000" -"0100B3A0135D6000","Life of Fly","status-playable","playable","2021-01-25 23:41:07.000" -"010069A01506E000","Life of Fly 2","slow;status-playable","playable","2022-10-28 19:26:52.000" -"01005B6008132000","Lifeless Planet","status-playable","playable","2022-08-03 21:25:13.000" -"","Light Fall","nvdec;status-playable","playable","2021-01-18 14:55:36.000" -"010087700D07C000","Light Tracer","nvdec;status-playable","playable","2021-05-05 19:15:43.000" -"","Linelight","status-playable","playable","2020-12-17 12:18:07.000" -"","Lines X","status-playable","playable","2020-05-11 15:28:30.000" -"","Lines XL","status-playable","playable","2020-08-31 17:48:23.000" -"0100943010310000","Little Busters! Converted Edition","status-playable;nvdec","playable","2022-09-29 15:34:56.000" -"","Little Dragons Cafe","status-playable","playable","2020-05-12 00:00:52.000" -"","Little Inferno","32-bit;gpu;nvdec;status-ingame","ingame","2020-12-17 21:43:56.000" -"0100E7000E826000","Little Misfortune","nvdec;status-playable","playable","2021-02-23 20:39:44.000" -"0100FE0014200000","Little Mouse's Encyclopedia","status-playable","playable","2022-10-28 19:38:58.000" -"01002FC00412C000","Little Nightmares","status-playable;nvdec;UE4","playable","2022-08-03 21:45:35.000" -"010097100EDD6000","Little Nightmares II","status-playable;UE4","playable","2023-02-10 18:24:44.000" -"010093A0135D6000","Little Nightmares II DEMO","status-playable;UE4;demo;vulkan-backend-bug","playable","2024-05-16 18:47:20.000" -"0100535014D76000","Little Noah: Scion of Paradise","status-playable;opengl-backend-bug","playable","2022-09-14 04:17:13.000" -"0100E6D00E81C000","Little Racer","status-playable","playable","2022-10-18 16:41:13.000" -"","Little Shopping","status-playable","playable","2020-10-03 16:34:35.000" -"","Little Town Hero","status-playable","playable","2020-10-15 23:28:48.000" -"","Little Triangle","status-playable","playable","2020-06-17 14:46:26.000" -"","Lode Runner Legacy","status-playable","playable","2021-01-10 14:10:28.000" -"","Lofi Ping Pong","crash;status-ingame","ingame","2020-12-15 20:09:22.000" -"0100B6D016EE6000","Lone Ruin","status-ingame;crash;nvdec","ingame","2023-01-17 06:41:19.000" -"0100A0C00E0DE000","Lonely Mountains Downhill","status-playable;online-broken","playable","2024-07-04 05:08:11.000" -"","Lost Horizon","status-playable","playable","2020-09-01 13:41:22.000" -"","Lost Horizon 2","nvdec;status-playable","playable","2020-06-16 12:02:12.000" -"0100156014C6A000","Lost Lands 3: The Golden Curse","status-playable;nvdec","playable","2022-10-24 16:30:00.000" -"0100BDD010AC8000","Lost Lands: Dark Overlord","status-playable","playable","2022-10-03 11:52:58.000" -"0100133014510000","Lost Lands: The Four Horsemen","status-playable;nvdec","playable","2022-10-24 16:41:00.000" -"","Lost Phone Stories","services;status-ingame","ingame","2020-04-05 23:17:33.000" -"01008AD013A86800","Lost Ruins","gpu;status-ingame","ingame","2023-02-19 14:09:00.000" -"0100018013124000","Lost Words: Beyond the Page","status-playable","playable","2022-10-24 17:03:21.000" -"01005FE01291A000","Lost in Random","gpu;status-ingame","ingame","2022-12-18 07:09:28.000" -"0100D36011AD4000","Love Letter from Thief X","gpu;status-ingame;nvdec","ingame","2023-11-14 03:55:31.000" -"","Ludo Mania","crash;services;status-nothing","nothing","2020-04-03 00:33:47.000" -"010048701995E000","Luigi's Mansion 2 HD","status-ingame;ldn-broken;amd-vendor-bug","ingame","2024-09-05 23:47:27.000" -"0100DCA0064A6000","Luigi's Mansion 3","gpu;slow;status-ingame;Needs Update;ldn-works","ingame","2024-09-27 22:17:36.000" -"","Lumini","status-playable","playable","2020-08-09 20:45:09.000" -"0100FF00042EE000","Lumo","status-playable;nvdec","playable","2022-02-11 18:20:30.000" -"","Lust for Darkness","nvdec;status-playable","playable","2020-07-26 12:09:15.000" -"0100F0B00F68E000","Lust for Darkness: Dawn Edition","nvdec;status-playable","playable","2021-06-16 13:47:46.000" -"010002C00C270000","MARIO & SONIC AT THE OLYMPIC GAMES TOKYO 2020","status-ingame;crash;online-broken;ldn-works","ingame","2024-08-23 16:12:55.000" -"0100EEF00CBC0000","MEANDERS","UE4;gpu;status-ingame","ingame","2021-06-11 19:19:33.000" -"010025C00D410000","MEGAMAN ZERO/ZX LEGACY COLLECTION","status-playable","playable","2021-06-14 16:17:32.000" -"","METAGAL","status-playable","playable","2020-06-05 00:05:48.000" -"0100E8F00F6BE000","METAL MAX Xeno Reborn","status-playable","playable","2022-12-05 15:33:53.000" -"0100F5700C9A8000","MIND Path to Thalamus","UE4;status-playable","playable","2021-06-16 17:37:25.000" -"0100A9F01776A000","MLB The Show 22 Tech Test","services;status-nothing;crash;Needs Update;demo","nothing","2022-12-09 10:28:34.000" -"0100E2E01C32E000","MLB The Show 24","services-horizon;status-nothing","nothing","2024-03-31 04:54:11.000" -"0100876015D74000","MLB® The Show™ 22","gpu;slow;status-ingame","ingame","2023-04-25 06:28:43.000" -"0100913019170000","MLB® The Show™ 23","gpu;status-ingame","ingame","2024-07-26 00:56:50.000" -"","MO:Astray","crash;status-ingame","ingame","2020-12-11 21:45:44.000" -"0100B46017500000","MOFUMOFU Sensen","gpu;status-menus","menus","2024-09-21 21:51:08.000" -"0100FBD00ED24000","MONKEY BARRELS","status-playable","playable","2022-09-14 17:28:52.000" -"010042501329E000","MONSTER HUNTER STORIES 2: WINGS OF RUIN Trial Version","status-playable;demo","playable","2022-11-13 22:20:26.000" -"010088400366E000","MONSTER JAM CRUSH IT!™","UE4;nvdec;online;status-playable","playable","2021-04-08 19:29:27.000" -"","MUJO","status-playable","playable","2020-05-08 16:31:04.000" -"","MUSNYX","status-playable","playable","2020-05-08 14:24:43.000" -"0100161009E5C000","MX Nitro","status-playable","playable","2022-09-27 22:34:33.000" -"0100218011E7E000","MX vs ATV All Out","status-playable;nvdec;UE4;vulkan-backend-bug","playable","2022-10-25 19:51:46.000" -"","MXGP3 - The Official Motocross Videogame","UE4;gpu;nvdec;status-ingame","ingame","2020-12-16 14:00:20.000" -"","MY HERO ONE'S JUSTICE","UE4;crash;gpu;online;status-menus","menus","2020-12-10 13:11:04.000" -"","MY HERO ONE'S JUSTICE 2","UE4;gpu;nvdec;status-ingame","ingame","2020-12-18 14:08:47.000" -"0100F2400D434000","Machi Knights Blood bagos","status-playable;nvdec;UE4","playable","2022-09-14 15:08:04.000" -"","Mad Carnage","status-playable","playable","2021-01-10 13:00:07.000" -"","Mad Father","status-playable","playable","2020-11-12 13:22:10.000" -"010061E00EB1E000","Mad Games Tycoon","status-playable","playable","2022-09-20 14:23:14.000" -"01004A200E722000","Magazine Mogul","status-playable;loader-allocator","playable","2022-10-03 12:05:34.000" -"","MagiCat","status-playable","playable","2020-12-11 15:22:07.000" -"","Magicolors","status-playable","playable","2020-08-12 18:39:11.000" -"01008C300B624000","Mahjong Solitaire Refresh","status-boots;crash","boots","2022-12-09 12:02:55.000" -"010099A0145E8000","Mahluk dark demon","status-playable","playable","2021-04-15 13:14:24.000" -"","Mainlining","status-playable","playable","2020-06-05 01:02:00.000" -"0100D9900F220000","Maitetsu: Pure Station","status-playable","playable","2022-09-20 15:12:49.000" -"0100A78017BD6000","Makai Senki Disgaea 7","status-playable","playable","2023-10-05 00:22:18.000" -"","Mana Spark","status-playable","playable","2020-12-10 13:41:01.000" -"010093D00CB22000","Maneater","status-playable;nvdec;UE4","playable","2024-05-21 16:11:57.000" -"","Manifold Garden","status-playable","playable","2020-10-13 20:27:13.000" -"0100C9A00952A000","Manticore - Galaxy on Fire","status-boots;crash;nvdec","boots","2024-02-04 04:37:24.000" -"0100E98002F6E000","Mantis Burn Racing","status-playable;online-broken;ldn-broken","playable","2024-09-02 02:13:04.000" -"01008E800D1FE000","Marble Power Blast","status-playable","playable","2021-06-04 16:00:02.000" -"0100DA7017C9E000","Marco & The Galaxy Dragon Demo","gpu;status-ingame;demo","ingame","2023-06-03 13:05:33.000" -"01006D0017F7A000","Mario & Luigi: Brothership","status-ingame;crash;slow;UE4;mac-bug","ingame","2025-01-07 04:00:00.000" -"010067300059A000","Mario + Rabbids Kingdom Battle","slow;status-playable;opengl-backend-bug","playable","2024-05-06 10:16:54.000" -"0100317013770000","Mario + Rabbids® Sparks of Hope","gpu;status-ingame;Needs Update","ingame","2024-06-20 19:56:19.000" -"0100C9C00E25C000","Mario Golf: Super Rush","gpu;status-ingame","ingame","2024-08-18 21:31:48.000" -"0100152000022000","Mario Kart 8 Deluxe","32-bit;status-playable;ldn-works;LAN;amd-vendor-bug","playable","2024-09-19 11:55:17.000" -"0100ED100BA3A000","Mario Kart Live: Home Circuit","services;status-nothing;crash;Needs More Attention","nothing","2022-12-07 22:36:52.000" -"01006FE013472000","Mario Party Superstars","gpu;status-ingame;ldn-works;mac-bug","ingame","2024-05-16 11:23:34.000" -"010019401051C000","Mario Strikers: Battle League Football","status-boots;crash;nvdec","boots","2024-05-07 06:23:56.000" -"0100BDE00862A000","Mario Tennis Aces","gpu;status-ingame;nvdec;ldn-works;LAN","ingame","2024-09-28 15:54:40.000" -"0100B99019412000","Mario vs. Donkey Kong","status-playable","playable","2024-05-04 21:22:39.000" -"0100D9E01DBB0000","Mario vs. Donkey Kong™ Demo","status-playable","playable","2024-02-18 10:40:06.000" -"01009A700A538000","Mark of the Ninja Remastered","status-playable","playable","2022-08-04 15:48:30.000" -"010044600FDF0000","Marooners","status-playable;nvdec;online-broken","playable","2022-10-18 21:35:26.000" -"010060700AC50000","Marvel Ultimate Alliance 3: The Black Order","status-playable;nvdec;ldn-untested","playable","2024-02-14 19:51:51.000" -"01003DE00C95E000","Mary Skelter 2","status-ingame;crash;regression","ingame","2023-09-12 07:37:28.000" -"0100113008262000","Masquerada: Songs and Shadows","status-playable","playable","2022-09-20 15:18:54.000" -"01004800197F0000","Master Detective Archives: Rain Code","gpu;status-ingame","ingame","2024-04-19 20:11:09.000" -"0100CC7009196000","Masters of Anima","status-playable;nvdec","playable","2022-08-04 16:00:09.000" -"","Mathland","status-playable","playable","2020-09-01 15:40:06.000" -"","Max & The Book of Chaos","status-playable","playable","2020-09-02 12:24:43.000" -"01001C9007614000","Max: The Curse Of Brotherhood","status-playable;nvdec","playable","2022-08-04 16:33:04.000" -"","Maze","status-playable","playable","2020-12-17 16:13:58.000" -"","Mech Rage","status-playable","playable","2020-11-18 12:30:16.000" -"0100C4F005EB4000","Mecho Tales","status-playable","playable","2022-08-04 17:03:19.000" -"0100E4600D31A000","Mechstermination Force","status-playable","playable","2024-07-04 05:39:15.000" -"","Medarot Classics Plus Kabuto Ver","status-playable","playable","2020-11-21 11:31:18.000" -"","Medarot Classics Plus Kuwagata Ver","status-playable","playable","2020-11-21 11:30:40.000" -"0100BBC00CB9A000","Mega Mall Story","slow;status-playable","playable","2022-08-04 17:10:58.000" -"0100B0C0086B0000","Mega Man 11","status-playable","playable","2021-04-26 12:07:53.000" -"0100734016266000","Mega Man Battle Network Legacy Collection Vol. 2","status-playable","playable","2023-08-03 18:04:32.000" -"01002D4007AE0000","Mega Man Legacy Collection Vol.1","gpu;status-ingame","ingame","2021-06-03 18:17:17.000" -"","Mega Man X Legacy Collection","audio;crash;services;status-menus","menus","2020-12-04 04:30:17.000" -"","Megabyte Punch","status-playable","playable","2020-10-16 14:07:18.000" -"","Megadimension Neptunia VII","32-bit;nvdec;status-playable","playable","2020-12-17 20:56:03.000" -"010038E016264000","Megaman Battle Network Legacy Collection Vol 1","status-playable","playable","2023-04-25 03:55:57.000" -"","Megaman Legacy Collection 2","status-playable","playable","2021-01-06 08:47:59.000" -"010082B00E8B8000","Megaquarium","status-playable","playable","2022-09-14 16:50:00.000" -"010005A00B312000","Megaton Rainfall","gpu;status-boots;opengl","boots","2022-08-04 18:29:43.000" -"0100EA100DF92000","Meiji Katsugeki Haikara Ryuuseigumi - Seibai Shimaseu, Yonaoshi Kagyou","32-bit;status-playable;nvdec","playable","2022-12-05 13:19:12.000" -"0100B360068B2000","Mekorama","gpu;status-boots","boots","2021-06-17 16:37:21.000" -"01000FA010340000","Melbits World","status-menus;nvdec;online","menus","2021-11-26 13:51:22.000" -"0100F68019636000","Melon Journey","status-playable","playable","2023-04-23 21:20:01.000" -"","Memories Off -Innocent Fille- for Dearest","status-playable","playable","2020-08-04 07:31:22.000" -"010062F011E7C000","Memory Lane","status-playable;UE4","playable","2022-10-05 14:31:03.000" -"","Meow Motors","UE4;gpu;status-ingame","ingame","2020-12-18 00:24:01.000" -"","Mercenaries Saga Chronicles","status-playable","playable","2021-01-10 12:48:19.000" -"","Mercenaries Wings The False Phoenix","crash;services;status-nothing","nothing","2020-05-08 22:42:12.000" -"","Mercenary Kings","online;status-playable","playable","2020-10-16 13:05:58.000" -"0100E5000D3CA000","Merchants of Kaidan","status-playable","playable","2021-04-15 11:44:28.000" -"010047F01AA10000","Metal Gear Solid Master Collection Vol. 1: Metal Gear Solid 3","services-horizon;status-menus","menus","2024-07-24 06:34:06.000" -"","Metaloid: Origin","status-playable","playable","2020-06-04 20:26:35.000" -"010055200E87E000","Metamorphosis","UE4;audout;gpu;nvdec;status-ingame","ingame","2021-06-16 16:18:11.000" -"0100D4900E82C000","Metro 2033 Redux","gpu;status-ingame","ingame","2022-11-09 10:53:13.000" -"0100F0400E850000","Metro: Last Light Redux","slow;status-ingame;nvdec;vulkan-backend-bug","ingame","2023-11-01 11:53:52.000" -"010093801237C000","Metroid Dread","status-playable","playable","2023-11-13 04:02:36.000" -"010012101468C000","Metroid Prime Remastered","gpu;status-ingame;Needs Update;vulkan-backend-bug;opengl-backend-bug","ingame","2024-05-07 22:48:15.000" -"0100A1200F20C000","Midnight Evil","status-playable","playable","2022-10-18 22:55:19.000" -"0100C1E0135E0000","Mighty Fight Federation","online;status-playable","playable","2021-04-06 18:39:56.000" -"0100AD701344C000","Mighty Goose","status-playable;nvdec","playable","2022-10-28 20:25:38.000" -"","Mighty Gunvolt Burst","status-playable","playable","2020-10-19 16:05:49.000" -"010060D00AE36000","Mighty Switch Force! Collection","status-playable","playable","2022-10-28 20:40:32.000" -"01003DA010E8A000","Miitopia","gpu;services-horizon;status-ingame","ingame","2024-09-06 10:39:13.000" -"01007DA0140E8000","Miitopia Demo","services;status-menus;crash;demo","menus","2023-02-24 11:50:58.000" -"","Miles & Kilo","status-playable","playable","2020-10-22 11:39:49.000" -"0100976008FBE000","Millie","status-playable","playable","2021-01-26 20:47:19.000" -"0100D71004694000","Minecraft","status-ingame;crash;ldn-broken","ingame","2024-09-29 12:08:59.000" -"01006BD001E06000","Minecraft - Nintendo Switch Edition","status-playable;ldn-broken","playable","2023-10-15 01:47:08.000" -"01006C100EC08000","Minecraft Dungeons","status-playable;nvdec;online-broken;UE4","playable","2024-06-26 22:10:43.000" -"01007C6012CC8000","Minecraft Legends","gpu;status-ingame;crash","ingame","2024-03-04 00:32:24.000" -"01003EF007ABA000","Minecraft: Story Mode - Season Two","status-playable;online-broken","playable","2023-03-04 00:30:50.000" -"010059C002AC2000","Minecraft: Story Mode - The Complete Adventure","status-boots;crash;online-broken","boots","2022-08-04 18:56:58.000" -"0100B7500F756000","Minefield","status-playable","playable","2022-10-05 15:03:29.000" -"01003560119A6000","Mini Motor Racing X","status-playable","playable","2021-04-13 17:54:49.000" -"","Mini Trains","status-playable","playable","2020-07-29 23:06:20.000" -"010039200EC66000","Miniature - The Story Puzzle","status-playable;UE4","playable","2022-09-14 17:18:50.000" -"010069200EB80000","Ministry of Broadcast","status-playable","playable","2022-08-10 00:31:16.000" -"0100C3F000BD8000","Minna de Wai Wai! Spelunker","status-nothing;crash","nothing","2021-11-03 07:17:11.000" -"0100FAE010864000","Minoria","status-playable","playable","2022-08-06 18:50:50.000" -"01005AB015994000","Miss Kobayashi's Dragonmaid Burst Forth!! Choro-gon☆Breath","gpu;status-playable","playable","2022-03-28 02:22:24.000" -"0100CFA0138C8000","Missile Dancer","status-playable","playable","2021-01-31 12:22:03.000" -"0100E3601495C000","Missing Features 2D","status-playable","playable","2022-10-28 20:52:54.000" -"010059200CC40000","Mist Hunter","status-playable","playable","2021-06-16 13:58:58.000" -"","Mittelborg: City of Mages","status-playable","playable","2020-08-12 19:58:06.000" -"","Moai VI: Unexpected Guests","slow;status-playable","playable","2020-10-27 16:40:20.000" -"0100D8700B712000","Modern Combat Blackout","crash;status-nothing","nothing","2021-03-29 19:47:15.000" -"010004900D772000","Modern Tales: Age of Invention","slow;status-playable","playable","2022-10-12 11:20:19.000" -"0100B8500D570000","Moero Chronicle Hyper","32-bit;status-playable","playable","2022-08-11 07:21:56.000" -"01004EB0119AC000","Moero Crystal H","32-bit;status-playable;nvdec;vulkan-backend-bug","playable","2023-07-05 12:04:22.000" -"01004A400C320000","Momodora: Revere Under the Moonlight","deadlock;status-nothing","nothing","2022-02-06 03:47:43.000" -"01002CC00BC4C000","Momonga Pinball Adventures","status-playable","playable","2022-09-20 16:00:40.000" -"010093100DA04000","Momotaro Dentetsu Showa, Heisei, Reiwa mo Teiban!","gpu;status-ingame","ingame","2023-09-22 10:21:46.000" -"","Monkey King: Master of the Clouds","status-playable","playable","2020-09-28 22:35:48.000" -"01003030161DC000","Monomals","gpu;status-ingame","ingame","2024-08-06 22:02:51.000" -"0100F3A00FB78000","Mononoke Slashdown","status-menus;crash","menus","2022-05-04 20:55:47.000" -"01005FF013DC2000","Monopoly Madness","status-playable","playable","2022-01-29 21:13:52.000" -"01007430037F6000","Monopoly for Nintendo Switch","status-playable;nvdec;online-broken","playable","2024-02-06 23:13:01.000" -"0100E2D0128E6000","Monster Blast","gpu;status-ingame","ingame","2023-09-02 20:02:32.000" -"01006F7001D10000","Monster Boy and the Cursed Kingdom","status-playable;nvdec","playable","2022-08-04 20:06:32.000" -"","Monster Bugs Eat People","status-playable","playable","2020-07-26 02:05:34.000" -"0100742007266000","Monster Energy Supercross - The Official Videogame","status-playable;nvdec;UE4","playable","2022-08-04 20:25:00.000" -"0100F8100B982000","Monster Energy Supercross - The Official Videogame 2","status-playable;nvdec;UE4;ldn-untested","playable","2022-08-04 21:21:24.000" -"010097800EA20000","Monster Energy Supercross - The Official Videogame 3","UE4;audout;nvdec;online;status-playable","playable","2021-06-14 12:37:54.000" -"0100E9900ED74000","Monster Farm","32-bit;nvdec;status-playable","playable","2021-05-05 19:29:13.000" -"0100770008DD8000","Monster Hunter Generation Ultimate","32-bit;status-playable;online-broken;ldn-works","playable","2024-03-18 14:35:36.000" -"0100B04011742000","Monster Hunter Rise","gpu;slow;status-ingame;crash;nvdec;online-broken;Needs Update;ldn-works","ingame","2024-08-24 11:04:59.000" -"010093A01305C000","Monster Hunter Rise Demo","status-playable;online-broken;ldn-works;demo","playable","2022-10-18 23:04:17.000" -"","Monster Hunter Stories 2: Wings of Ruin ID 0100E2101144600","services;status-ingame","ingame","2022-07-10 19:27:30.000" -"","Monster Hunter XX Demo","32-bit;cpu;status-nothing","nothing","2020-03-22 10:12:28.000" -"0100C3800049C000","Monster Hunter XX Nintendo Switch Ver ( Double Cross )","status-playable","playable","2024-07-21 14:08:09.000" -"010095C00F354000","Monster Jam Steel Titans","status-menus;crash;nvdec;UE4","menus","2021-11-14 09:45:38.000" -"010051B0131F0000","Monster Jam Steel Titans 2","status-playable;nvdec;UE4","playable","2022-10-24 17:17:59.000" -"","Monster Puzzle","status-playable","playable","2020-09-28 22:23:10.000" -"","Monster Sanctuary","crash;status-ingame","ingame","2021-04-04 05:06:41.000" -"0100D30010C42000","Monster Truck Championship","slow;status-playable;nvdec;online-broken;UE4","playable","2022-10-18 23:16:51.000" -"01004E10142FE000","Monster wo taoshite tsuyoi ken ya yoroi wo te ni shinasai. Shinde mo akiramezu ni tsuyoku nari nasai. Yuushatai ga maoh wo taosu sono hi wo shinzite imasu. - モンスターを倒して強い剣や鎧を手にしなさい。死んでも諦めずに強くなりなさい。勇者隊が魔王を倒すその日を信じています。","crash;status-ingame","ingame","2021-07-23 10:56:44.000" -"010039F00EF70000","Monstrum","status-playable","playable","2021-01-31 11:07:26.000" -"","Moonfall Ultimate","nvdec;status-playable","playable","2021-01-17 14:01:25.000" -"0100E3D014ABC000","Moorhuhn Jump and Run Traps and Treasures","status-playable","playable","2024-03-08 15:10:02.000" -"010045C00F274000","Moorkuhn Kart 2","status-playable;online-broken","playable","2022-10-28 21:10:35.000" -"010040E00F642000","Morbid: The Seven Acolytes","status-playable","playable","2022-08-09 17:21:58.000" -"","More Dark","status-playable","playable","2020-12-15 16:01:06.000" -"","Morphies Law","UE4;crash;ldn-untested;nvdec;online;status-menus","menus","2020-11-22 17:05:29.000" -"","Morphite","status-playable","playable","2021-01-05 19:40:55.000" -"01006560184E6000","Mortal Kombat 1","gpu;status-ingame","ingame","2024-09-04 15:45:47.000" -"0100F2200C984000","Mortal Kombat 11","slow;status-ingame;nvdec;online-broken;ldn-broken","ingame","2024-06-19 02:22:17.000" -"","Mosaic","status-playable","playable","2020-08-11 13:07:35.000" -"010040401D564000","Moto GP 24","gpu;status-ingame","ingame","2024-05-10 23:41:00.000" -"01002ED00B01C000","Moto Racer 4","UE4;nvdec;online;status-playable","playable","2021-04-08 19:09:11.000" -"01003F200D0F2000","Moto Rush GT","status-playable","playable","2022-08-05 11:23:55.000" -"0100361007268000","MotoGP 18","status-playable;nvdec;UE4;ldn-untested","playable","2022-08-05 11:41:45.000" -"01004B800D0E8000","MotoGP 19","status-playable;nvdec;online-broken;UE4","playable","2022-08-05 11:54:14.000" -"01001FA00FBBC000","MotoGP 20","status-playable;ldn-untested","playable","2022-09-29 17:58:01.000" -"01000F5013820000","MotoGP 21","gpu;status-ingame;nvdec;online-broken;UE4;ldn-untested","ingame","2022-10-28 21:35:08.000" -"01002A900D6D6000","Motorsport Manager for Nintendo Switch","status-playable;nvdec","playable","2022-08-05 12:48:14.000" -"01009DB00D6E0000","Mountain Rescue Simulator","status-playable","playable","2022-09-20 16:36:48.000" -"0100C4C00E73E000","Moving Out","nvdec;status-playable","playable","2021-06-07 21:17:24.000" -"0100D3300F110000","Mr Blaster","status-playable","playable","2022-09-14 17:56:24.000" -"","Mr. DRILLER DrillLand","nvdec;status-playable","playable","2020-07-24 13:56:48.000" -"","Mr. Shifty","slow;status-playable","playable","2020-05-08 15:28:16.000" -"","Ms. Splosion Man","online;status-playable","playable","2020-05-09 20:45:43.000" -"01009D200952E000","MudRunner - American Wilds","gpu;status-ingame;ldn-untested;vulkan-backend-bug;opengl-backend-bug","ingame","2022-08-16 11:40:52.000" -"","Muddledash","services;status-ingame","ingame","2020-05-08 16:46:14.000" -"010073E008E6E000","Mugsters","status-playable","playable","2021-01-28 17:57:17.000" -"0100211005E94000","Mulaka","status-playable","playable","2021-01-28 18:07:20.000" -"010038B00B9AE000","Mummy Pinball","status-playable","playable","2022-08-05 16:08:11.000" -"","Muse Dash","status-playable","playable","2020-06-06 14:41:29.000" -"","Mushroom Quest","status-playable","playable","2020-05-17 13:07:08.000" -"","Mushroom Wars 2","nvdec;status-playable","playable","2020-09-28 15:26:08.000" -"","Music Racer","status-playable","playable","2020-08-10 08:51:23.000" -"","Musou Orochi 2 Ultimate","crash;nvdec;status-boots","boots","2021-04-09 19:39:16.000" -"0100F6000EAA8000","Must Dash Amigos","status-playable","playable","2022-09-20 16:45:56.000" -"0100C3E00ACAA000","Mutant Football League Dynasty Edition","status-playable;online-broken","playable","2022-08-05 17:01:51.000" -"01004BE004A86000","Mutant Mudds Collection","status-playable","playable","2022-08-05 17:11:38.000" -"0100E6B00DEA4000","Mutant Year Zero: Road to Eden","status-playable;nvdec;UE4","playable","2022-09-10 13:31:10.000" -"01002C6012334000","My Aunt is a Witch","status-playable","playable","2022-10-19 09:21:17.000" -"","My Butler","status-playable","playable","2020-06-27 13:46:23.000" -"010031200B94C000","My Friend Pedro: Blood Bullets Bananas","nvdec;status-playable","playable","2021-05-28 11:19:17.000" -"","My Girlfriend is a Mermaid!?","nvdec;status-playable","playable","2020-05-08 13:32:55.000" -"0100E4701373E000","My Hidden Things","status-playable","playable","2021-04-15 11:26:06.000" -"","My Little Dog Adventure","gpu;status-ingame","ingame","2020-12-10 17:47:37.000" -"","My Little Riding Champion","slow;status-playable","playable","2020-05-08 17:00:53.000" -"010086B00C784000","My Lovely Daughter","status-playable","playable","2022-11-24 17:25:32.000" -"0100E7700C284000","My Memory of Us","status-playable","playable","2022-08-20 11:03:14.000" -"010028F00ABAE000","My Riding Stables - Life with Horses","status-playable","playable","2022-08-05 21:39:07.000" -"010042A00FBF0000","My Riding Stables 2: A New Adventure","status-playable","playable","2021-05-16 14:14:59.000" -"0100E25008E68000","My Time At Portia","status-playable","playable","2021-05-28 12:42:55.000" -"0100CD5011A02000","My Universe - Cooking Star Restaurant","status-playable","playable","2022-10-19 10:00:44.000" -"0100F71011A0A000","My Universe - Fashion Boutique","status-playable;nvdec","playable","2022-10-12 14:54:19.000" -"0100CD5011A02000","My Universe - Pet Clinic Cats & Dogs","status-boots;crash;nvdec","boots","2022-02-06 02:05:53.000" -"01006C301199C000","My Universe - School Teacher","nvdec;status-playable","playable","2021-01-21 16:02:52.000" -"","Märchen Forest - 0100B201D5E000","status-playable","playable","2021-02-04 21:33:34.000" -"01000D5005974000","N++","status-playable","playable","2022-08-05 21:54:58.000" -"","NAIRI: Tower of Shirin","nvdec;status-playable","playable","2020-08-09 19:49:12.000" -"010002F001220000","NAMCO MUSEUM","status-playable;ldn-untested","playable","2024-08-13 07:52:21.000" -"0100DAA00AEE6000","NAMCO MUSEUM ARCADE PAC","status-playable","playable","2021-06-07 21:44:50.000" -"","NAMCOT COLLECTION","audio;status-playable","playable","2020-06-25 13:35:22.000" -"010084D00CF5E000","NARUTO SHIPPUDEN: ULTIMATE NINJA STORM 4 ROAD TO BORUTO","status-playable","playable","2024-06-29 13:04:22.000" -"01006BB00800A000","NARUTO SHIPPUDEN™: Ultimate Ninja Storm 3 Full Burst","status-playable;nvdec","playable","2024-06-16 14:58:05.000" -"0100D2D0190A4000","NARUTO X BARUTO Ultimate Ninja STORM CONNECTIONS","services-horizon;status-nothing","nothing","2024-07-25 05:16:48.000" -"0100715007354000","NARUTO™: Ultimate Ninja® STORM","status-playable;nvdec","playable","2022-08-06 14:10:31.000" -"0100545016D5E000","NASCAR Rivals","status-ingame;crash;Incomplete","ingame","2023-04-21 01:17:47.000" -"01001AE00C1B2000","NBA 2K Playgrounds 2","status-playable;nvdec;online-broken;UE4;vulkan-backend-bug","playable","2022-08-06 14:40:38.000" -"0100760002048000","NBA 2K18","gpu;status-ingame;ldn-untested","ingame","2022-08-06 14:17:51.000" -"01001FF00B544000","NBA 2K19","crash;ldn-untested;services;status-nothing","nothing","2021-04-16 13:07:21.000" -"0100E24011D1E000","NBA 2K21","gpu;status-boots","boots","2022-10-05 15:31:51.000" -"0100ACA017E4E800","NBA 2K23","status-boots","boots","2023-10-10 23:07:14.000" -"010006501A8D8000","NBA 2K24","cpu;gpu;status-boots","boots","2024-08-11 18:23:08.000" -"0100F5A008126000","NBA Playgrounds","status-playable;nvdec;online-broken;UE4","playable","2022-08-06 16:13:44.000" -"010002900294A000","NBA Playgrounds","status-playable;nvdec;online-broken;UE4","playable","2022-08-06 17:06:59.000" -"010006D0128B4000","NEOGEO POCKET COLOR SELECTION Vol.1","status-playable","playable","2023-07-08 20:55:36.000" -"01002AF014F4C000","NINJA GAIDEN 3: Razor's Edge","status-playable;nvdec","playable","2023-08-11 08:25:31.000" -"","NO THING","status-playable","playable","2021-01-04 19:06:01.000" -"","NORTH","nvdec;status-playable","playable","2021-01-05 16:17:44.000" -"0100CB800B07E000","NOT A HERO","status-playable","playable","2021-01-28 19:31:24.000" -"010072B00BDDE000","Narcos: Rise of the Cartels","UE4;crash;nvdec;status-boots","boots","2021-03-22 13:18:47.000" -"0100103011894000","Naught","UE4;status-playable","playable","2021-04-26 13:31:45.000" -"","Need For Speed Hot Pursuit Remastered","audio;online;slow;status-ingame","ingame","2020-10-27 17:46:58.000" -"","Need a Packet?","status-playable","playable","2020-08-12 16:09:01.000" -"010029B0118E8000","Need for Speed Hot Pursuit Remastered","status-playable;online-broken","playable","2024-03-20 21:58:02.000" -"","Nefarious","status-playable","playable","2020-12-17 03:20:33.000" -"01008390136FC000","Negative","nvdec;status-playable","playable","2021-03-24 11:29:41.000" -"010065F00F55A000","Neighbours back From Hell","status-playable;nvdec","playable","2022-10-12 15:36:48.000" -"0100B4900AD3E000","Nekopara Vol.1","status-playable;nvdec","playable","2022-08-06 18:25:54.000" -"","Nekopara Vol.2","status-playable","playable","2020-12-16 11:04:47.000" -"010045000E418000","Nekopara Vol.3","status-playable","playable","2022-10-03 12:49:04.000" -"","Nekopara Vol.4","crash;status-ingame","ingame","2021-01-17 01:47:18.000" -"01006ED00BC76000","Nelke & the Legendary Alchemists ~Ateliers of the New World~","status-playable","playable","2021-01-28 19:39:42.000" -"","Nelly Cootalot","status-playable","playable","2020-06-11 20:55:42.000" -"01001AB0141A8000","Neo : The World Ends with You (DEMO)- 新すばらしきこのせかい (体験版)","crash;status-ingame","ingame","2021-07-18 07:29:18.000" -"0100EBB00D2F4000","Neo Cab","status-playable","playable","2021-04-24 00:27:58.000" -"","Neo Cab Demo","crash;status-boots","boots","2020-06-16 00:14:00.000" -"0100BAB01113A000","Neon Abyss","status-playable","playable","2022-10-05 15:59:44.000" -"010075E0047F8000","Neon Chrome","status-playable","playable","2022-08-06 18:38:34.000" -"010032000EAC6000","Neon Drive","status-playable","playable","2022-09-10 13:45:48.000" -"0100B9201406A000","Neon White","status-ingame;crash","ingame","2023-02-02 22:25:06.000" -"0100743008694000","Neonwall","status-playable;nvdec","playable","2022-08-06 18:49:52.000" -"","Neoverse Trinity Edition - 01001A20133E000","status-playable","playable","2022-10-19 10:28:03.000" -"","Nerdook Bundle Vol. 1","gpu;slow;status-ingame","ingame","2020-10-07 14:27:10.000" -"01008B0010160000","Nerved","status-playable;UE4","playable","2022-09-20 17:14:03.000" -"","NeuroVoider","status-playable","playable","2020-06-04 18:20:05.000" -"0100C20012A54000","Nevaeh","gpu;nvdec;status-ingame","ingame","2021-06-16 17:29:03.000" -"010039801093A000","Never Breakup","status-playable","playable","2022-10-05 16:12:12.000" -"0100F79012600000","Neverending Nightmares","crash;gpu;status-boots","boots","2021-04-24 01:43:35.000" -"","Neverlast","slow;status-ingame","ingame","2020-07-13 23:55:19.000" -"010013700DA4A000","Neverwinter Nights: Enhanced Edition","gpu;status-menus;nvdec","menus","2024-09-30 02:59:19.000" -"","New Frontier Days -Founding Pioneers-","status-playable","playable","2020-12-10 12:45:07.000" -"0100F4300BF2C000","New Pokémon Snap","status-playable","playable","2023-01-15 23:26:57.000" -"010017700B6C2000","New Super Lucky's Tale","status-playable","playable","2024-03-11 14:14:10.000" -"0100EA80032EA000","New Super Mario Bros. U Deluxe","32-bit;status-playable","playable","2023-10-08 02:06:37.000" -"","Newt One","status-playable","playable","2020-10-17 21:21:48.000" -"","Nexomon: Extinction","status-playable","playable","2020-11-30 15:02:22.000" -"0100B69012EC6000","Nexoria: Dungeon Rogue Heroes","gpu;status-ingame","ingame","2021-10-04 18:41:29.000" -"","Next Up Hero","online;status-playable","playable","2021-01-04 22:39:36.000" -"0100E5600D446000","Ni No Kuni Wrath of the White Witch","status-boots;32-bit;nvdec","boots","2024-07-12 04:52:59.000" -"","Nice Slice","nvdec;status-playable","playable","2020-06-17 15:13:27.000" -"","Niche - a genetics survival game","nvdec;status-playable","playable","2020-11-27 14:01:11.000" -"010010701AFB2000","Nickelodeon All-Star Brawl 2","status-playable","playable","2024-06-03 14:15:01.000" -"","Nickelodeon Kart Racers","status-playable","playable","2021-01-07 12:16:49.000" -"0100CEC003A4A000","Nickelodeon Paw Patrol: On a Roll","nvdec;status-playable","playable","2021-01-28 21:14:49.000" -"","Nicky: The Home Alone Golf Ball","status-playable","playable","2020-08-08 13:45:39.000" -"0100A95012668000","Nicole","status-playable;audout","playable","2022-10-05 16:41:44.000" -"0100B8E016F76000","NieR:Automata The End of YoRHa Edition","slow;status-ingame;crash","ingame","2024-05-17 01:06:34.000" -"0100F3A0095A6000","Night Call","status-playable;nvdec","playable","2022-10-03 12:57:00.000" -"0100D8500A692000","Night Trap - 25th Anniversary Edition","status-playable;nvdec","playable","2022-08-08 13:16:14.000" -"0100921006A04000","Night in the Woods","status-playable","playable","2022-12-03 20:17:54.000" -"","Nightmare Boy","status-playable","playable","2021-01-05 15:52:29.000" -"01006E700B702000","Nightmares from the Deep 2: The Siren's Call","status-playable;nvdec","playable","2022-10-19 10:58:53.000" -"0100628004BCE000","Nights of Azure 2: Bride of the New Moon","status-menus;crash;nvdec;regression","menus","2022-11-24 16:00:39.000" -"","Nightshade","nvdec;status-playable","playable","2020-05-10 19:43:31.000" -"","Nihilumbra","status-playable","playable","2020-05-10 16:00:12.000" -"0100746010E4C000","NinNinDays","status-playable","playable","2022-11-20 15:17:29.000" -"0100D03003F0E000","Nine Parchments","status-playable;ldn-untested","playable","2022-08-07 12:32:08.000" -"0100E2F014F46000","Ninja Gaiden Sigma","status-playable;nvdec","playable","2022-11-13 16:27:02.000" -"","Ninja Gaiden Sigma 2 - 0100696014FA000","status-playable;nvdec","playable","2024-07-31 21:53:48.000" -"","Ninja Shodown","status-playable","playable","2020-05-11 12:31:21.000" -"","Ninja Striker","status-playable","playable","2020-12-08 19:33:29.000" -"0100CCD0073EA000","Ninjala","status-boots;online-broken;UE4","boots","2024-07-03 20:04:49.000" -"010003C00B868000","Ninjin: Clash of Carrots","status-playable;online-broken","playable","2024-07-10 05:12:26.000" -"0100C9A00ECE6000","Nintendo 64 - Nintendo Switch Online","gpu;status-ingame;vulkan","ingame","2024-04-23 20:21:07.000" -"0100D870045B6000","Nintendo Entertainment System - Nintendo Switch Online","status-playable;online","playable","2022-07-01 15:45:06.000" -"0100C4B0034B2000","Nintendo Labo - Toy-Con 01: Variety Kit","gpu;status-ingame","ingame","2022-08-07 12:56:07.000" -"01009AB0034E0000","Nintendo Labo Toy-Con 02: Robot Kit","gpu;status-ingame","ingame","2022-08-07 13:03:19.000" -"01001E9003502000","Nintendo Labo Toy-Con 03: Vehicle Kit","services;status-menus;crash","menus","2022-08-03 17:20:11.000" -"0100165003504000","Nintendo Labo Toy-Con 04: VR Kit","services;status-boots;crash","boots","2023-01-17 22:30:24.000" -"0100D2F00D5C0000","Nintendo Switch Sports","deadlock;status-boots","boots","2024-09-10 14:20:24.000" -"01000EE017182000","Nintendo Switch Sports Online Play Test","gpu;status-ingame","ingame","2022-03-16 07:44:12.000" -"010037200C72A000","Nippon Marathon","nvdec;status-playable","playable","2021-01-28 20:32:46.000" -"010020901088A000","Nirvana Pilot Yume","status-playable","playable","2022-10-29 11:49:49.000" -"","No Heroes Here","online;status-playable","playable","2020-05-10 02:41:57.000" -"0100853015E86000","No Man’s Sky","gpu;status-ingame","ingame","2024-07-25 05:18:17.000" -"0100F0400F202000","No More Heroes","32-bit;status-playable","playable","2022-09-13 07:44:27.000" -"010071400F204000","No More Heroes 2 Desperate Struggle","32-bit;status-playable;nvdec","playable","2022-11-19 01:38:13.000" -"01007C600EB42000","No More Heroes 3","gpu;status-ingame;UE4","ingame","2024-03-11 17:06:19.000" -"01009F3011004000","No Straight Roads","status-playable;nvdec","playable","2022-10-05 17:01:38.000" -"0100542012884000","Nongunz: Doppelganger Edition","status-playable","playable","2022-10-29 12:00:39.000" -"","Norman's Great Illusion","status-playable","playable","2020-12-15 19:28:24.000" -"01001A500AD6A000","Norn9 ~Norn + Nonette~ LOFN","status-playable;nvdec;vulkan-backend-bug","playable","2022-12-09 09:29:16.000" -"0100A9E00D97A000","Northgard","status-menus;crash","menus","2022-02-06 02:05:35.000" -"","Not Not a Brain Buster","status-playable","playable","2020-05-10 02:05:26.000" -"0100DAF00D0E2000","Not Tonight","status-playable;nvdec","playable","2022-10-19 11:48:47.000" -"","Nubarron: The adventure of an unlucky gnome","status-playable","playable","2020-12-17 16:45:17.000" -"","Nuclien","status-playable","playable","2020-05-10 05:32:55.000" -"","Numbala","status-playable","playable","2020-05-11 12:01:07.000" -"010020500C8C8000","Number Place 10000","gpu;status-menus","menus","2021-11-24 09:14:23.000" -"010003701002C000","Nurse Love Syndrome","status-playable","playable","2022-10-13 10:05:22.000" -"010049F00EC30000","Nyan Cat: Lost in Space","online;status-playable","playable","2021-06-12 13:22:03.000" -"01002E6014FC4000","O---O","status-playable","playable","2022-10-29 12:12:14.000" -"","OBAKEIDORO!","nvdec;online;status-playable","playable","2020-10-16 16:57:34.000" -"","OK K.O.! Let's Play Heroes","nvdec;status-playable","playable","2021-01-11 18:41:02.000" -"0100276009872000","OKAMI HD","status-playable;nvdec","playable","2024-04-05 06:24:58.000" -"","OLYMPIC GAMES TOKYO 2020","ldn-untested;nvdec;online;status-playable","playable","2021-01-06 01:20:24.000" -"01006DB00D970000","OMG Zombies!","32-bit;status-playable","playable","2021-04-12 18:04:45.000" -"010014E017B14000","OMORI","status-playable","playable","2023-01-07 20:21:02.000" -"01008FE00E2F6000","ONE PIECE: PIRATE WARRIORS 4","status-playable;online-broken;ldn-untested","playable","2022-09-27 22:55:46.000" -"01004A200BE82000","OPUS Collection","status-playable","playable","2021-01-25 15:24:04.000" -"010049C0075F0000","OPUS: The Day We Found Earth","nvdec;status-playable","playable","2021-01-21 18:29:31.000" -"","OTOKOMIZU","status-playable","playable","2020-07-13 21:00:44.000" -"","OTTTD","slow;status-ingame","ingame","2020-10-10 19:31:07.000" -"01005F000CC18000","OVERWHELM","status-playable","playable","2021-01-21 18:37:18.000" -"01002A000C478000","Observer","UE4;gpu;nvdec;status-ingame","ingame","2021-03-03 20:19:45.000" -"","Oceanhorn","status-playable","playable","2021-01-05 13:55:22.000" -"01006CB010840000","Oceanhorn 2 Knights of the Lost Realm","status-playable","playable","2021-05-21 18:26:10.000" -"","Octocopter: Double or Squids","status-playable","playable","2021-01-06 01:30:16.000" -"0100CAB006F54000","Octodad Dadliest Catch","crash;status-boots","boots","2021-04-23 15:26:12.000" -"","Octopath Traveler","UE4;crash;gpu;status-ingame","ingame","2020-08-31 02:34:36.000" -"0100A3501946E000","Octopath Traveler II","gpu;status-ingame;amd-vendor-bug","ingame","2024-09-22 11:39:20.000" -"010084300C816000","Odallus","status-playable","playable","2022-08-08 12:37:58.000" -"0100BB500EE3C000","Oddworld: Munch's Oddysee","gpu;nvdec;status-ingame","ingame","2021-06-17 12:11:50.000" -"01005E700ABB8000","Oddworld: New 'n' Tasty","nvdec;status-playable","playable","2021-06-17 17:51:32.000" -"0100D210177C6000","Oddworld: Soulstorm","services-horizon;status-boots;crash","boots","2024-08-18 13:13:26.000" -"01002EA00ABBA000","Oddworld: Stranger's Wrath HD","status-menus;crash;nvdec;loader-allocator","menus","2021-11-23 09:23:21.000" -"","Odium to the Core","gpu;status-ingame","ingame","2021-01-08 14:03:52.000" -"01006F5013202000","Off And On Again","status-playable","playable","2022-10-29 19:46:26.000" -"01003CD00E8BC000","Offroad Racing","status-playable;online-broken;UE4","playable","2022-09-14 18:53:22.000" -"01003B900AE12000","Oh My Godheads: Party Edition","status-playable","playable","2021-04-15 11:04:11.000" -"","Oh...Sir! The Hollywood Roast","status-ingame","ingame","2020-12-06 00:42:30.000" -"01006AB00BD82000","OkunoKA","status-playable;online-broken","playable","2022-08-08 14:41:51.000" -"0100CE2007A86000","Old Man's Journey","nvdec;status-playable","playable","2021-01-28 19:16:52.000" -"","Old School Musical","status-playable","playable","2020-12-10 12:51:12.000" -"","Old School Racer 2","status-playable","playable","2020-10-19 12:11:26.000" -"0100E0200B980000","OlliOlli: Switch Stance","gpu;status-boots","boots","2024-04-25 08:36:37.000" -"0100F9D00C186000","Olympia Soiree","status-playable","playable","2022-12-04 21:07:12.000" -"01001D600E51A000","Omega Labyrinth Life","status-playable","playable","2021-02-23 21:03:03.000" -"","Omega Vampire","nvdec;status-playable","playable","2020-10-17 19:15:35.000" -"","Omensight: Definitive Edition","UE4;crash;nvdec;status-ingame","ingame","2020-07-26 01:45:14.000" -"","Once Upon A Coma","nvdec;status-playable","playable","2020-08-01 12:09:39.000" -"","One More Dungeon","status-playable","playable","2021-01-06 09:10:58.000" -"","One Person Story","status-playable","playable","2020-07-14 11:51:02.000" -"","One Piece Pirate Warriors 3","nvdec;status-playable","playable","2020-05-10 06:23:52.000" -"","One Piece Unlimited World Red Deluxe Edition","status-playable","playable","2020-05-10 22:26:32.000" -"","OneWayTicket","UE4;status-playable","playable","2020-06-20 17:20:49.000" -"0100463013246000","Oneiros","status-playable","playable","2022-10-13 10:17:22.000" -"0100CF4011B2A000","OniNaki","nvdec;status-playable","playable","2021-02-27 21:52:42.000" -"010057C00D374000","Oniken","status-playable","playable","2022-09-10 14:22:38.000" -"010037900C814000","Oniken: Unstoppable Edition","status-playable","playable","2022-08-08 14:52:06.000" -"","Onimusha: Warlords","nvdec;status-playable","playable","2020-07-31 13:08:39.000" -"0100D5400BD90000","Operación Triunfo 2017","services;status-ingame;nvdec","ingame","2022-08-08 15:06:42.000" -"01006CF00CFA4000","Operencia The Stolen Sun","UE4;nvdec;status-playable","playable","2021-06-08 13:51:07.000" -"","Ord.","status-playable","playable","2020-12-14 11:59:06.000" -"010061D00DB74000","Ori and the Blind Forest: Definitive Edition","status-playable;nvdec;online-broken","playable","2022-09-14 19:58:13.000" -"010005800F46E000","Ori and the Blind Forest: Definitive Edition Demo","status-playable","playable","2022-09-10 14:40:12.000" -"01008DD013200000","Ori and the Will of the Wisps","status-playable","playable","2023-03-07 00:47:13.000" -"","Orn: The Tiny Forest Sprite","UE4;gpu;status-ingame","ingame","2020-08-07 14:25:30.000" -"0100E5900F49A000","Othercide","status-playable;nvdec","playable","2022-10-05 19:04:38.000" -"01006AF013A9E000","Otti house keeper","status-playable","playable","2021-01-31 12:11:24.000" -"","Our World Is Ended.","nvdec;status-playable","playable","2021-01-19 22:46:57.000" -"010097F010FE6000","Our two Bedroom Story","gpu;status-ingame;nvdec","ingame","2023-10-10 17:41:20.000" -"01005A700A166000","Out Of The Box","status-playable","playable","2021-01-28 01:34:27.000" -"0100A0D013464000","Outbreak: Endless Nightmares","status-playable","playable","2022-10-29 12:35:49.000" -"0100C850130FE000","Outbreak: Epidemic","status-playable","playable","2022-10-13 10:27:31.000" -"0100D9F013102000","Outbreak: Lost Hope","crash;status-boots","boots","2021-04-26 18:01:23.000" -"0100B450130FC000","Outbreak: The New Nightmare","status-playable","playable","2022-10-19 15:42:07.000" -"01006EE013100000","Outbreak: The Nightmare Chronicles","status-playable","playable","2022-10-13 10:41:57.000" -"0100B8900EFA6000","Outbuddies DX","gpu;status-ingame","ingame","2022-08-04 22:39:24.000" -"01008D4007A1E000","Outlast","status-playable;nvdec;loader-allocator;vulkan-backend-bug","playable","2024-01-27 04:44:26.000" -"0100DE70085E8000","Outlast 2","status-ingame;crash;nvdec","ingame","2022-01-22 22:28:05.000" -"01006FD0080B2000","Overcooked! 2","status-playable;ldn-untested","playable","2022-08-08 16:48:10.000" -"0100F28011892000","Overcooked! All You Can Eat","ldn-untested;online;status-playable","playable","2021-04-15 10:33:52.000" -"01009B900401E000","Overcooked! Special Edition","status-playable","playable","2022-08-08 20:48:52.000" -"0100D7F00EC64000","Overlanders","status-playable;nvdec;UE4","playable","2022-09-14 20:15:06.000" -"01008EA00E816000","Overpass","status-playable;online-broken;UE4;ldn-untested","playable","2022-10-17 15:29:47.000" -"0100647012F62000","Override 2 Super Mech League","status-playable;online-broken;UE4","playable","2022-10-19 15:56:04.000" -"01008A700F7EE000","Override: Mech City Brawl - Super Charged Mega Edition","status-playable;nvdec;online-broken;UE4","playable","2022-09-20 17:33:32.000" -"0100F8600E21E000","Overwatch®: Legendary Edition","deadlock;status-boots","boots","2022-09-14 20:22:22.000" -"","Owlboy","status-playable","playable","2020-10-19 14:24:45.000" -"0100AD9012510000","PAC-MAN 99","gpu;status-ingame;online-broken","ingame","2024-04-23 00:48:25.000" -"","PAC-MAN CHAMPIONSHIP EDITION 2 PLUS","status-playable","playable","2021-01-19 22:06:18.000" -"0100F0D004CAE000","PAN-PAN A tiny big adventure","audout;status-playable","playable","2021-01-25 14:42:00.000" -"0100360016800000","PAW Patrol: Grand Prix","gpu;status-ingame","ingame","2024-05-03 16:16:11.000" -"0100274004052000","PAYDAY 2","status-playable;nvdec;online-broken;ldn-untested","playable","2022-08-09 12:56:39.000" -"010085700ABC8000","PBA Pro Bowling","status-playable;nvdec;online-broken;UE4","playable","2022-09-14 23:00:49.000" -"0100F95013772000","PBA Pro Bowling 2021","status-playable;online-broken;UE4","playable","2022-10-19 16:46:40.000" -"","PC Building Simulator","status-playable","playable","2020-06-12 00:31:58.000" -"010053401147C000","PGA TOUR 2K21","deadlock;status-ingame;nvdec","ingame","2022-10-05 21:53:50.000" -"0100063005C86000","PHANTOM BREAKER: BATTLE GROUNDS OVER DRIVE","audio;status-playable;nvdec","playable","2024-02-29 14:20:35.000" -"","PHOGS!","online;status-playable","playable","2021-01-18 15:18:37.000" -"","PLANET ALPHA","UE4;gpu;status-ingame","ingame","2020-12-16 14:42:20.000" -"0100EC100A790000","PSYVARIAR DELTA","nvdec;status-playable","playable","2021-01-20 13:01:46.000" -"010016400F07E000","PUSH THE CRATE","status-playable;nvdec;UE4","playable","2022-09-15 13:28:41.000" -"011123900AEE0000","Paladins","online;status-menus","menus","2021-01-21 19:21:37.000" -"010083700B730000","Pang Adventures","status-playable","playable","2021-04-10 12:16:59.000" -"","Pantsu Hunter","status-playable","playable","2021-02-19 15:12:27.000" -"","Panzer Dragoon: Remake","status-playable","playable","2020-10-04 04:03:55.000" -"01004AE0108E0000","Panzer Paladin","status-playable","playable","2021-05-05 18:26:00.000" -"","Paper Dolls Original","UE4;crash;status-boots","boots","2020-07-13 20:26:21.000" -"0100A3900C3E2000","Paper Mario The Origami King","audio;status-playable;Needs Update","playable","2024-08-09 18:27:40.000" -"0100ECD018EBE000","Paper Mario: The Thousand-Year Door","gpu;status-ingame;intel-vendor-bug;slow","ingame","2025-01-07 04:27:35.000" -"01006AD00B82C000","Paperbound Brawlers","status-playable","playable","2021-01-25 14:32:15.000" -"0100DC70174E0000","Paradigm Paradox","status-playable;vulkan-backend-bug","playable","2022-12-03 22:28:13.000" -"01007FB010DC8000","Paradise Killer","status-playable;UE4","playable","2022-10-05 19:33:05.000" -"010063400B2EC000","Paranautical Activity","status-playable","playable","2021-01-25 13:49:19.000" -"01006B5012B32000","Part Time UFO","status-ingame;crash","ingame","2023-03-03 03:13:05.000" -"01007FC00A040000","Party Arcade","status-playable;online-broken;UE4;ldn-untested","playable","2022-08-09 12:32:53.000" -"0100B8E00359E000","Party Golf","status-playable;nvdec","playable","2022-08-09 12:38:30.000" -"010022801217E000","Party Hard 2","status-playable;nvdec","playable","2022-10-05 20:31:48.000" -"","Party Treats","status-playable","playable","2020-07-02 00:05:00.000" -"01001E500EA16000","Path of Sin: Greed","status-menus;crash","menus","2021-11-24 08:00:00.000" -"010031F006E76000","Pato Box","status-playable","playable","2021-01-25 15:17:52.000" -"01001F201121E000","Paw Patrol: Might Pups Save Adventure Bay!","status-playable","playable","2022-10-13 12:17:55.000" -"01000c4015030000","Pawapoke R","services-horizon;status-nothing","nothing","2024-05-14 14:28:32.000" -"0100A56006CEE000","Pawarumi","status-playable;online-broken","playable","2022-09-10 15:19:33.000" -"010002100CDCC000","Peaky Blinders: Mastermind","status-playable","playable","2022-10-19 16:56:35.000" -"","Peasant Knight","status-playable","playable","2020-12-22 09:30:50.000" -"0100CA901AA9C000","Penny's Big Breakaway","status-playable;amd-vendor-bug","playable","2024-05-27 07:58:51.000" -"0100C510049E0000","Penny-Punching Princess","status-playable","playable","2022-08-09 13:37:05.000" -"","Perception","UE4;crash;nvdec;status-menus","menus","2020-12-18 11:49:23.000" -"010011700D1B2000","Perchang","status-playable","playable","2021-01-25 14:19:52.000" -"010089F00A3B4000","Perfect Angle","status-playable","playable","2021-01-21 18:48:45.000" -"01005CD012DC0000","Perky Little Things","status-boots;crash;vulkan","boots","2024-08-04 07:22:46.000" -"","Persephone","status-playable","playable","2021-03-23 22:39:19.000" -"","Perseverance","status-playable","playable","2020-07-13 18:48:27.000" -"010062B01525C000","Persona 4 Golden","status-playable","playable","2024-08-07 17:48:07.000" -"01005CA01580E000","Persona 5 Royal","gpu;status-ingame","ingame","2024-08-17 21:45:15.000" -"010087701B092000","Persona 5 Tactica","status-playable","playable","2024-04-01 22:21:03.000" -"","Persona 5: Scramble","deadlock;status-boots","boots","2020-10-04 03:22:29.000" -"0100801011C3E000","Persona 5: Strikers (US)","status-playable;nvdec;mac-bug","playable","2023-09-26 09:36:01.000" -"010044400EEAE000","Petoons Party","nvdec;status-playable","playable","2021-03-02 21:07:58.000" -"0100DDD00C0EA000","Phantaruk","status-playable","playable","2021-06-11 18:09:54.000" -"010096F00E5B0000","Phantom Doctrine","status-playable;UE4","playable","2022-09-15 10:51:50.000" -"0100C31005A50000","Phantom Trigger","status-playable","playable","2022-08-09 14:27:30.000" -"0100CB000A142000","Phoenix Wright: Ace Attorney Trilogy","status-playable","playable","2023-09-15 22:03:12.000" -"","Physical Contact: 2048","slow;status-playable","playable","2021-01-25 15:18:32.000" -"01008110036FE000","Physical Contact: Speed","status-playable","playable","2022-08-09 14:40:46.000" -"010077300A86C000","Pianista: The Legendary Virtuoso","status-playable;online-broken","playable","2022-08-09 14:52:56.000" -"010012100E8DC000","Picross Lord Of The Nazarick","status-playable","playable","2023-02-08 15:54:56.000" -"","Picross S2","status-playable","playable","2020-10-15 12:01:40.000" -"","Picross S3","status-playable","playable","2020-10-15 11:55:27.000" -"","Picross S4","status-playable","playable","2020-10-15 12:33:46.000" -"0100AC30133EC000","Picross S5","status-playable","playable","2022-10-17 18:51:42.000" -"010025901432A000","Picross S6","status-playable","playable","2022-10-29 17:52:19.000" -"","Picross S7","status-playable","playable","2022-02-16 12:51:25.000" -"010043B00E1CE000","PictoQuest","status-playable","playable","2021-02-27 15:03:16.000" -"","Piczle Lines DX","UE4;crash;nvdec;status-menus","menus","2020-11-16 04:21:31.000" -"","Piczle Lines DX 500 More Puzzles!","UE4;status-playable","playable","2020-12-15 23:42:51.000" -"01000FD00D5CC000","Pig Eat Ball","services;status-ingame","ingame","2021-11-30 01:57:45.000" -"0100AA80194B0000","Pikmin 1","audio;status-ingame","ingame","2024-05-28 18:56:11.000" -"0100D680194B2000","Pikmin 2","gpu;status-ingame","ingame","2023-07-31 08:53:41.000" -"0100F4C009322000","Pikmin 3 Deluxe","gpu;status-ingame;32-bit;nvdec;Needs Update","ingame","2024-09-03 00:28:26.000" -"01001CB0106F8000","Pikmin 3 Deluxe Demo","32-bit;crash;demo;gpu;status-ingame","ingame","2021-06-16 18:38:07.000" -"0100B7C00933A000","Pikmin 4","gpu;status-ingame;crash;UE4","ingame","2024-08-26 03:39:08.000" -"0100E0B019974000","Pikmin 4 Demo","gpu;status-ingame;nvdec;UE4;demo;amd-vendor-bug","ingame","2023-09-22 21:41:08.000" -"0100D6200E130000","Pillars of Eternity","status-playable","playable","2021-02-27 00:24:21.000" -"01007A500B0B2000","Pilot Sports","status-playable","playable","2021-01-20 15:04:17.000" -"0100DA70186D4000","Pinball FX","status-playable","playable","2024-05-03 17:09:11.000" -"0100DB7003828000","Pinball FX3","status-playable;online-broken","playable","2022-11-11 23:49:07.000" -"","Pine","slow;status-ingame","ingame","2020-07-29 16:57:39.000" -"","Pinstripe","status-playable","playable","2020-11-26 10:40:40.000" -"01002B20174EE000","Piofiore: Episodio 1926","status-playable","playable","2022-11-23 18:36:05.000" -"","Piofiore: Fated Memories","nvdec;status-playable","playable","2020-11-30 14:27:50.000" -"0100EA2013BCC000","Pixel Game Maker Series Puzzle Pedestrians","status-playable","playable","2022-10-24 20:15:50.000" -"0100859013CE6000","Pixel Game Maker Series Werewolf Princess Kaguya","crash;services;status-nothing","nothing","2021-03-26 00:23:07.000" -"","Pixel Gladiator","status-playable","playable","2020-07-08 02:41:26.000" -"010000E00E612000","Pixel Puzzle Makeout League","status-playable","playable","2022-10-13 12:34:00.000" -"","PixelJunk Eden 2","crash;status-ingame","ingame","2020-12-17 11:55:52.000" -"0100E4D00A690000","Pixeljunk Monsters 2","status-playable","playable","2021-06-07 03:40:01.000" -"01004A900C352000","Pizza Titan Ultra","nvdec;status-playable","playable","2021-01-20 15:58:42.000" -"05000FD261232000","Pizza Tower","status-ingame;crash","ingame","2024-09-16 00:21:56.000" -"0100FF8005EB2000","Plague Road","status-playable","playable","2022-08-09 15:27:14.000" -"010030B00C316000","Planescape: Torment and Icewind Dale: Enhanced Editions","cpu;status-boots;32-bit;crash;Needs Update","boots","2022-09-10 03:58:26.000" -"01007EA019CFC000","Planet Cube Edge","status-playable","playable","2023-03-22 17:10:12.000" -"010087000428E000","Plantera","status-playable","playable","2022-08-09 15:36:28.000" -"0100C56010FD8000","Plants vs. Zombies: Battle for Neighborville Complete Edition","gpu;audio;status-boots;crash","boots","2024-09-02 12:58:14.000" -"0100E5B011F48000","Ploid Saga","status-playable","playable","2021-04-19 16:58:45.000" -"01009440095FE000","Pode","nvdec;status-playable","playable","2021-01-25 12:58:35.000" -"010086F0064CE000","Poi: Explorer Edition","nvdec;status-playable","playable","2021-01-21 19:32:00.000" -"0100EB6012FD2000","Poison Control","status-playable","playable","2021-05-16 14:01:54.000" -"01005D100807A000","Pokemon Quest","status-playable","playable","2022-02-22 16:12:32.000" -"010030D005AE6000","Pokken Tournament DX Demo","status-playable;demo;opengl-backend-bug","playable","2022-08-10 12:03:19.000" -"0100B3F000BE2000","Pokkén Tournament DX","status-playable;nvdec;ldn-works;opengl-backend-bug;LAN;amd-vendor-bug;intel-vendor-bug","playable","2024-07-18 23:11:08.000" -"0100000011D90000","Pokémon Brilliant Diamond","gpu;status-ingame;ldn-works","ingame","2024-08-28 13:26:35.000" -"010072400E04A000","Pokémon Café Mix","status-playable","playable","2021-08-17 20:00:04.000" -"","Pokémon HOME","Needs Update;crash;services;status-menus","menus","2020-12-06 06:01:51.000" -"01001F5010DFA000","Pokémon Legends: Arceus","gpu;status-ingame;Needs Update;ldn-works","ingame","2024-09-19 10:02:02.000" -"01003D200BAA2000","Pokémon Mystery Dungeon Rescue Team DX","status-playable;mac-bug","playable","2024-01-21 00:16:32.000" -"0100A3D008C5C000","Pokémon Scarlet","gpu;status-ingame;nvdec;ldn-works;amd-vendor-bug","ingame","2023-12-14 13:18:29.000" -"01008DB008C2C000","Pokémon Shield","deadlock;status-ingame;crash;online-broken;ldn-works;LAN","ingame","2024-08-12 07:20:22.000" -"0100ABF008968000","Pokémon Sword","deadlock;status-ingame;crash;online-broken;ldn-works;LAN","ingame","2024-08-26 15:40:37.000" -"01008F6008C5E000","Pokémon Violet","gpu;status-ingame;nvdec;ldn-works;amd-vendor-bug;mac-bug","ingame","2024-07-30 02:51:48.000" -"0100187003A36000","Pokémon: Let's Go, Eevee!","status-ingame;crash;nvdec;online-broken;ldn-broken","ingame","2024-06-01 15:03:04.000" -"010003F003A34000","Pokémon: Let's Go, Pikachu!","status-ingame;crash;nvdec;online-broken;ldn-broken","ingame","2024-03-15 07:55:41.000" -"01009AD008C4C000","Pokémon: Let's Go, Pikachu! demo","slow;status-playable;demo","playable","2023-11-26 11:23:20.000" -"","Polandball: Can Into Space!","status-playable","playable","2020-06-25 15:13:26.000" -"","Poly Bridge","services;status-playable","playable","2020-06-08 23:32:41.000" -"010017600B180000","Polygod","slow;status-ingame;regression","ingame","2022-08-10 14:38:14.000" -"010074B00ED32000","Polyroll","gpu;status-boots","boots","2021-07-01 16:16:50.000" -"","Ponpu","status-playable","playable","2020-12-16 19:09:34.000" -"","Pooplers","status-playable","playable","2020-11-02 11:52:10.000" -"01007EF013CA0000","Port Royale 4","status-menus;crash;nvdec","menus","2022-10-30 14:34:06.000" -"01007BB017812000","Portal","status-playable","playable","2024-06-12 03:48:29.000" -"0100ABD01785C000","Portal 2","gpu;status-ingame","ingame","2023-02-20 22:44:15.000" -"","Portal Dogs","status-playable","playable","2020-09-04 12:55:46.000" -"0100437004170000","Portal Knights","ldn-untested;online;status-playable","playable","2021-05-27 19:29:04.000" -"","Potata: Fairy Flower","nvdec;status-playable","playable","2020-06-17 09:51:34.000" -"01000A4014596000","Potion Party","status-playable","playable","2021-05-06 14:26:54.000" -"","Power Rangers: Battle for the Grid","status-playable","playable","2020-06-21 16:52:42.000" -"01008E100E416000","PowerSlave Exhumed","gpu;status-ingame","ingame","2023-07-31 23:19:10.000" -"0100D1C01C194000","Powerful Pro Baseball 2024-2025","gpu;status-ingame","ingame","2024-08-25 06:40:48.000" -"","Prehistoric Dude","gpu;status-ingame","ingame","2020-10-12 12:38:48.000" -"","Pretty Princess Magical Coordinate","status-playable","playable","2020-10-15 11:43:41.000" -"01007F00128CC000","Pretty Princess Party","status-playable","playable","2022-10-19 17:23:58.000" -"010009300D278000","Preventive Strike","status-playable;nvdec","playable","2022-10-06 10:55:51.000" -"010007F00879E000","PriPara: All Idol Perfect Stage","status-playable","playable","2022-11-22 16:35:52.000" -"0100210019428000","Prince of Persia: The Lost Crown","status-ingame;crash","ingame","2024-06-08 21:31:58.000" -"01007A3009184000","Princess Peach: Showtime!","status-playable;UE4","playable","2024-09-21 13:39:45.000" -"010024701DC2E000","Princess Peach: Showtime! Demo","status-playable;UE4;demo","playable","2024-03-10 17:46:45.000" -"01008FA01187A000","Prinny 2: Dawn of Operation Panties, Dood!","32-bit;status-playable","playable","2022-10-13 12:42:58.000" -"0100A6E01681C000","Prinny Presents NIS Classics Volume 1","status-boots;crash;Needs Update","boots","2023-02-02 07:23:09.000" -"01007A0011878000","Prinny: Can I Really Be the Hero?","32-bit;status-playable;nvdec","playable","2023-10-22 09:25:25.000" -"010029200AB1C000","Prison Architect","status-playable","playable","2021-04-10 12:27:58.000" -"0100C1801B914000","Prison City","gpu;status-ingame","ingame","2024-03-01 08:19:33.000" -"0100F4800F872000","Prison Princess","status-playable","playable","2022-11-20 15:00:25.000" -"0100A9800A1B6000","Professional Construction - The Simulation","slow;status-playable","playable","2022-08-10 15:15:45.000" -"","Professional Farmer: Nintendo Switch Edition","slow;status-playable","playable","2020-12-16 13:38:19.000" -"","Professor Lupo and his Horrible Pets","status-playable","playable","2020-06-12 00:08:45.000" -"0100D1F0132F6000","Professor Lupo: Ocean","status-playable","playable","2021-04-14 16:33:33.000" -"0100BBD00976C000","Project Highrise: Architect's Edition","status-playable","playable","2022-08-10 17:19:12.000" -"0100ACE00DAB6000","Project Nimbus: Complete Edition","status-playable;nvdec;UE4;vulkan-backend-bug","playable","2022-08-10 17:35:43.000" -"01002980140F6000","Project TRIANGLE STRATEGY Debut Demo","status-playable;UE4;demo","playable","2022-10-24 21:40:27.000" -"","Project Warlock","status-playable","playable","2020-06-16 10:50:41.000" -"","Psikyo Collection Vol 1","32-bit;status-playable","playable","2020-10-11 13:18:47.000" -"0100A2300DB78000","Psikyo Collection Vol. 3","status-ingame","ingame","2021-06-07 02:46:23.000" -"01009D400C4A8000","Psikyo Collection Vol.2","32-bit;status-playable","playable","2021-06-07 03:22:07.000" -"01007A200F2E2000","Psikyo Shooting Stars Alpha","32-bit;status-playable","playable","2021-04-13 12:03:43.000" -"0100D7400F2E4000","Psikyo Shooting Stars Bravo","32-bit;status-playable","playable","2021-06-14 12:09:07.000" -"","Puchitto kurasutā","Need-Update;crash;services;status-menus","menus","2020-07-04 16:44:28.000" -"0100861012474000","Pulstario","status-playable","playable","2022-10-06 11:02:01.000" -"01009AE00B788000","Pumped BMX Pro","status-playable;nvdec;online-broken","playable","2022-09-20 17:40:50.000" -"01006C10131F6000","Pumpkin Jack","status-playable;nvdec;UE4","playable","2022-10-13 12:52:32.000" -"0100B60010432000","Push the Crate 2","UE4;gpu;nvdec;status-ingame","ingame","2021-06-10 14:20:01.000" -"","Pushy and Pully in Blockland","status-playable","playable","2020-07-04 11:44:41.000" -"","Puyo Puyo Champions","online;status-playable","playable","2020-06-19 11:35:08.000" -"010038E011940000","Puyo Puyo Tetris 2","status-playable;ldn-untested","playable","2023-09-26 11:35:25.000" -"010079E01A1E0000","Puzzle Bobble Everybubble!","audio;status-playable;ldn-works","playable","2023-06-10 03:53:40.000" -"","Puzzle Book","status-playable","playable","2020-09-28 13:26:01.000" -"0100476004A9E000","Puzzle Box Maker","status-playable;nvdec;online-broken","playable","2022-08-10 18:00:52.000" -"","Puzzle and Dragons GOLD","slow;status-playable","playable","2020-05-13 15:09:34.000" -"0100A4E017372000","Pyramid Quest","gpu;status-ingame","ingame","2023-08-16 21:14:52.000" -"","Q-YO Blaster","gpu;status-ingame","ingame","2020-06-07 22:36:53.000" -"010023600AA34000","Q.U.B.E. 2","UE4;status-playable","playable","2021-03-03 21:38:57.000" -"0100A8D003BAE000","Qbics Paint","gpu;services;status-ingame","ingame","2021-06-07 10:54:09.000" -"0100BA5012E54000","Quake","gpu;status-menus;crash","menus","2022-08-08 12:40:34.000" -"010048F0195E8000","Quake II","status-playable","playable","2023-08-15 03:42:14.000" -"","QuakespasmNX","status-nothing;crash;homebrew","nothing","2022-07-23 19:28:07.000" -"010045101288A000","Quantum Replica","status-playable;nvdec;UE4","playable","2022-10-30 21:17:22.000" -"0100F1400BA88000","Quarantine Circular","status-playable","playable","2021-01-20 15:24:15.000" -"0100DCF00F13A000","Queen's Quest 4: Sacred Truce","status-playable;nvdec","playable","2022-10-13 12:59:21.000" -"0100492012378000","Quell Zen","gpu;status-ingame","ingame","2021-06-11 15:59:53.000" -"01001DE005012000","Quest of Dungeons","status-playable","playable","2021-06-07 10:29:22.000" -"","QuietMansion2","status-playable","playable","2020-09-03 14:59:35.000" -"0100AF100EE76000","Quiplash 2 InterLASHional","status-playable;online-working","playable","2022-10-19 17:43:45.000" -"0100F930136B6000","R-TYPE FINAL 2","slow;status-ingame;nvdec;UE4","ingame","2022-10-30 21:46:29.000" -"01007B0014300000","R-TYPE FINAL 2 Demo","slow;status-ingame;nvdec;UE4;demo","ingame","2022-10-24 21:57:42.000" -"","R-Type Dimensions EX","status-playable","playable","2020-10-09 12:04:43.000" -"0100B5A004302000","R.B.I. Baseball 17","status-playable;online-working","playable","2022-08-11 11:55:47.000" -"01005CC007616000","R.B.I. Baseball 18","status-playable;nvdec;online-working","playable","2022-08-11 11:27:52.000" -"0100FCB00BF40000","R.B.I. Baseball 19","status-playable;nvdec;online-working","playable","2022-08-11 11:43:52.000" -"010061400E7D4000","R.B.I. Baseball 20","status-playable","playable","2021-06-15 21:16:29.000" -"0100B4A0115CA000","R.B.I. Baseball 21","status-playable;online-working","playable","2022-10-24 22:31:45.000" -"010024400C516000","RAD","gpu;status-menus;crash;UE4","menus","2021-11-29 02:01:56.000" -"01008FA00ACEC000","RADIO HAMMER STATION","audout;status-playable","playable","2021-02-26 20:20:06.000" -"","REKT","online;status-playable","playable","2020-09-28 12:33:56.000" -"01002A000CD48000","RESIDENT EVIL 6","status-playable;nvdec","playable","2022-09-15 14:31:47.000" -"010095300212A000","RESIDENT EVIL REVELATIONS 2","status-playable;online-broken;ldn-untested","playable","2022-08-11 12:57:50.000" -"","REZ PLZ","status-playable","playable","2020-10-24 13:26:12.000" -"01009D5009234000","RICO","status-playable;nvdec;online-broken","playable","2022-08-11 20:16:40.000" -"010088E00B816000","RIOT: Civil Unrest","status-playable","playable","2022-08-11 20:27:56.000" -"","RIVE: Ultimate Edition","status-playable","playable","2021-03-24 18:45:55.000" -"","RMX Real Motocross","status-playable","playable","2020-10-08 21:06:15.000" -"","ROBOTICS;NOTES DaSH","status-playable","playable","2020-11-16 23:09:54.000" -"","ROBOTICS;NOTES ELITE","status-playable","playable","2020-11-26 10:28:20.000" -"","RPG Maker MV","nvdec;status-playable","playable","2021-01-05 20:12:01.000" -"0000000000000000","RSDKv5u","status-ingame;homebrew","ingame","2024-04-01 16:25:34.000" -"0100E21013908000","RWBY: Grimm Eclipse","status-playable;online-broken","playable","2022-11-03 10:44:01.000" -"","RXN -Raijin-","nvdec;status-playable","playable","2021-01-10 16:05:43.000" -"01005BF00E4DE000","Rabi-Ribi","status-playable","playable","2022-08-06 17:02:44.000" -"","Race With Ryan","UE4;gpu;nvdec;slow;status-ingame","ingame","2020-11-16 04:35:33.000" -"","Rack N Ruin","status-playable","playable","2020-09-04 15:20:26.000" -"010000600CD54000","Rad Rodgers Radical Edition","status-playable;nvdec;online-broken","playable","2022-08-10 19:57:23.000" -"0100DA400E07E000","Radiation City","status-ingame;crash","ingame","2022-09-30 11:15:04.000" -"01009E40095EE000","Radiation Island","status-ingame;opengl;vulkan-backend-bug","ingame","2022-08-11 10:51:04.000" -"","Radical Rabbit Stew","status-playable","playable","2020-08-03 12:02:56.000" -"0100BAD013B6E000","Radio Commander","nvdec;status-playable","playable","2021-03-24 11:20:46.000" -"01003D00099EC000","Raging Justice","status-playable","playable","2021-06-03 14:06:50.000" -"01005CD013116000","Raiden IV x Mikado Remix [ 雷電Ⅳ×MIKADO remix ]","status-playable","playable","2022-07-29 15:50:13.000" -"01002B000D97E000","Raiden V: Director's Cut","deadlock;status-boots;nvdec","boots","2024-07-12 07:31:46.000" -"01002EE00DC02000","Railway Empire","status-playable;nvdec","playable","2022-10-03 13:53:50.000" -"","Rain City","status-playable","playable","2020-10-08 16:59:03.000" -"010047600BF72000","Rain World","status-playable","playable","2023-05-10 23:34:08.000" -"0100BDD014232000","Rain on Your Parade","status-playable","playable","2021-05-06 19:32:04.000" -"","Rainbows, toilets & unicorns","nvdec;status-playable","playable","2020-10-03 18:08:18.000" -"","Raji An Ancient Epic","UE4;gpu;nvdec;status-ingame","ingame","2020-12-16 10:05:25.000" -"","Rapala Fishing: Pro Series","nvdec;status-playable","playable","2020-12-16 13:26:53.000" -"","Rascal Fight","status-playable","playable","2020-10-08 13:23:30.000" -"","Rawr-Off","crash;nvdec;status-menus","menus","2020-07-02 00:14:44.000" -"01005FF002E2A000","Rayman Legends: Definitive Edition","status-playable;nvdec;ldn-works","playable","2023-05-27 18:33:07.000" -"0100F03011616000","Re:Turn - One Way Trip","status-playable","playable","2022-08-29 22:42:53.000" -"","Re:ZERO -Starting Life in Another World- The Prophecy of the Throne","gpu;status-boots;crash;nvdec;vulkan","boots","2023-03-07 21:27:24.000" -"","Real Drift Racing","status-playable","playable","2020-07-25 14:31:31.000" -"010048600CC16000","Real Heroes: Firefighter","status-playable","playable","2022-09-20 18:18:44.000" -"","Reaper: Tale of a Pale Swordsman","status-playable","playable","2020-12-12 15:12:23.000" -"0100D9B00E22C000","Rebel Cops","status-playable","playable","2022-09-11 10:02:53.000" -"0100CAA01084A000","Rebel Galaxy: Outlaw","status-playable;nvdec","playable","2022-12-01 07:44:56.000" -"0100CF600FF7A000","Red Bow","services;status-ingame","ingame","2021-11-29 03:51:34.000" -"0100351013A06000","Red Colony","status-playable","playable","2021-01-25 20:44:41.000" -"01007820196A6000","Red Dead Redemption","status-playable;amd-vendor-bug","playable","2024-09-13 13:26:13.000" -"","Red Death","status-playable","playable","2020-08-30 13:07:37.000" -"010075000C608000","Red Faction Guerrilla Re-Mars-tered","ldn-untested;nvdec;online;status-playable","playable","2021-06-07 03:02:13.000" -"","Red Game Without a Great Name","status-playable","playable","2021-01-19 21:42:35.000" -"010045400D73E000","Red Siren : Space Defense","UE4;status-playable","playable","2021-04-25 21:21:29.000" -"","Red Wings - Aces of the Sky","status-playable","playable","2020-06-12 01:19:53.000" -"01000D100DCF8000","Redeemer: Enhanced Edition","status-playable;nvdec;UE4;vulkan-backend-bug","playable","2022-09-11 10:20:24.000" -"0100326010B98000","Redout: Space Assault","status-playable;UE4","playable","2022-10-19 23:04:35.000" -"010007C00E558000","Reel Fishing: Road Trip Adventure","status-playable","playable","2021-03-02 16:06:43.000" -"","Reflection of Mine","audio;status-playable","playable","2020-12-17 15:06:37.000" -"","Refreshing Sideways Puzzle Ghost Hammer","status-playable","playable","2020-10-18 12:08:54.000" -"","Refunct","UE4;status-playable","playable","2020-12-15 22:46:21.000" -"0100FDF0083A6000","Regalia: Of Men and Monarchs - Royal Edition","status-playable","playable","2022-08-11 12:24:01.000" -"","Regions of Ruin","status-playable","playable","2020-08-05 11:38:58.000" -"","Reine des Fleurs","cpu;crash;status-boots","boots","2020-09-27 18:50:39.000" -"01002AD013C52000","Relicta","status-playable;nvdec;UE4","playable","2022-10-31 12:48:33.000" -"010095900B436000","Remi Lore","status-playable","playable","2021-06-03 18:58:15.000" -"0100FBD00F5F6000","Remothered: Broken Porcelain","UE4;gpu;nvdec;status-ingame","ingame","2021-06-17 15:13:11.000" -"01001F100E8AE000","Remothered: Tormented Fathers","status-playable;nvdec;UE4","playable","2022-10-19 23:26:50.000" -"","Rento Fortune Monolit","ldn-untested;online;status-playable","playable","2021-01-19 19:52:21.000" -"01007CC0130C6000","Renzo Racer","status-playable","playable","2021-03-23 22:28:05.000" -"01003C400AD42000","Rescue Tale","status-playable","playable","2022-09-20 18:40:18.000" -"010099A00BC1E000","Resident Evil 4","status-playable;nvdec","playable","2022-11-16 21:16:04.000" -"010018100CD46000","Resident Evil 5","status-playable;nvdec","playable","2024-02-18 17:15:29.000" -"0100643002136000","Resident Evil Revelations","status-playable;nvdec;ldn-untested","playable","2022-08-11 12:44:19.000" -"0100E7F00FFB8000","Resolutiion","crash;status-boots","boots","2021-04-25 21:57:56.000" -"0100FF201568E000","Restless Night [0100FF201568E000]","status-nothing;crash","nothing","2022-02-09 10:54:49.000" -"0100069000078000","Retail Interactive Display Menu (DevQuestMenu)- 0100069000078000","services;status-nothing;crash","nothing","2022-08-11 13:19:41.000" -"010086E00BCB2000","Retimed","status-playable","playable","2022-08-11 13:32:39.000" -"","Retro City Rampage DX","status-playable","playable","2021-01-05 17:04:17.000" -"01000ED014A2C000","Retrograde Arena","status-playable;online-broken","playable","2022-10-31 13:38:58.000" -"010032E00E6E2000","Return of the Obra Dinn","status-playable","playable","2022-09-15 19:56:45.000" -"010027400F708000","Revenge of Justice","status-playable;nvdec","playable","2022-11-20 15:43:23.000" -"0100E2E00EA42000","Reventure","status-playable","playable","2022-09-15 20:07:06.000" -"0100729012D18000","Rhythm Fighter","crash;status-nothing","nothing","2021-02-16 18:51:30.000" -"","Rhythm of the Gods","UE4;crash;status-nothing","nothing","2020-10-03 17:39:59.000" -"","RiME","UE4;crash;gpu;status-boots","boots","2020-07-20 15:52:38.000" -"01002C700C326000","Riddled Corpses EX","status-playable","playable","2021-06-06 16:02:44.000" -"0100AC600D898000","Rift Keeper","status-playable","playable","2022-09-20 19:48:20.000" -"01006AC00EE6E000","Rimelands","status-playable","playable","2022-10-13 13:32:56.000" -"01002FF008C24000","Ring Fit Adventure","crash;services;status-nothing","nothing","2021-04-14 19:00:01.000" -"01002A6006AA4000","Riptide GP: Renegade","online;status-playable","playable","2021-04-13 23:33:02.000" -"","Rise and Shine","status-playable","playable","2020-12-12 15:56:43.000" -"","Rise of Insanity","status-playable","playable","2020-08-30 15:42:14.000" -"01006BA00E652000","Rise: Race the Future","status-playable","playable","2021-02-27 13:29:06.000" -"010020C012F48000","Rising Hell","status-playable","playable","2022-10-31 13:54:02.000" -"0100E8300A67A000","Risk","status-playable;nvdec;online-broken","playable","2022-08-01 18:53:28.000" -"010076D00E4BA000","Risk of Rain 2","status-playable;online-broken","playable","2024-03-04 17:01:05.000" -"0100BD300F0EC000","Ritual","status-playable","playable","2021-03-02 13:51:19.000" -"010042500FABA000","Ritual: Crown of Horns","status-playable","playable","2021-01-26 16:01:47.000" -"","Rival Megagun","nvdec;online;status-playable","playable","2021-01-19 14:01:46.000" -"","River City Girls","nvdec;status-playable","playable","2020-06-10 23:44:09.000" -"01002E80168F4000","River City Girls 2","status-playable","playable","2022-12-07 00:46:27.000" -"0100B2100767C000","River City Melee Mach!!","status-playable;online-broken","playable","2022-09-20 20:51:57.000" -"010053000B986000","Road Redemption","status-playable;online-broken","playable","2022-08-12 11:26:20.000" -"010002F009A7A000","Road to Ballhalla","UE4;status-playable","playable","2021-06-07 02:22:36.000" -"","Road to Guangdong","slow;status-playable","playable","2020-10-12 12:15:32.000" -"010068200C5BE000","Roarr!","status-playable","playable","2022-10-19 23:57:45.000" -"0100618004096000","Robonauts","status-playable;nvdec","playable","2022-08-12 11:33:23.000" -"","Robozarro","status-playable","playable","2020-09-03 13:33:40.000" -"","Rock 'N Racing Off Road DX","status-playable","playable","2021-01-10 15:27:15.000" -"","Rock N' Racing Grand Prix","status-playable","playable","2021-01-06 20:23:57.000" -"0100A1B00DB36000","Rock of Ages 3: Make & Break","status-playable;UE4","playable","2022-10-06 12:18:29.000" -"01005EE0036EC000","Rocket League","gpu;status-ingame;online-broken;ldn-untested","ingame","2024-02-08 19:51:36.000" -"","Rocket Wars","status-playable","playable","2020-07-24 14:27:39.000" -"0100EC7009348000","Rogue Aces","gpu;services;status-ingame;nvdec","ingame","2021-11-30 02:18:30.000" -"01009FA010848000","Rogue Heroes: Ruins of Tasos","online;status-playable","playable","2021-04-01 15:41:25.000" -"","Rogue Legacy","status-playable","playable","2020-08-10 19:17:28.000" -"","Rogue Robots","status-playable","playable","2020-06-16 12:16:11.000" -"01001CC00416C000","Rogue Trooper Redux","status-playable;nvdec;online-broken","playable","2022-08-12 11:53:01.000" -"0100C7300C0EC000","RogueCube","status-playable","playable","2021-06-16 12:16:42.000" -"","Roll'd","status-playable","playable","2020-07-04 20:24:01.000" -"01004900113F8000","RollerCoaster Tycoon 3: Complete Edition","32-bit;status-playable","playable","2022-10-17 14:18:01.000" -"","RollerCoaster Tycoon Adventures","nvdec;status-playable","playable","2021-01-05 18:14:18.000" -"010076200CA16000","Rolling Gunner","status-playable","playable","2021-05-26 12:54:18.000" -"0100579011B40000","Rolling Sky 2","status-playable","playable","2022-11-03 10:21:12.000" -"01001F600829A000","Romancing SaGa 2","status-playable","playable","2022-08-12 12:02:24.000" -"","Romancing SaGa 3","audio;gpu;status-ingame","ingame","2020-06-27 20:26:18.000" -"010088100DD42000","Roof Rage","status-boots;crash;regression","boots","2023-11-12 03:47:18.000" -"","Roombo: First Blood","nvdec;status-playable","playable","2020-08-05 12:11:37.000" -"0100936011556000","Root Double -Before Crime * After Days- Xtend Edition","status-nothing;crash","nothing","2022-02-05 02:03:49.000" -"010030A00DA3A000","Root Letter: Last Answer","status-playable;vulkan-backend-bug","playable","2022-09-17 10:25:57.000" -"","Royal Roads","status-playable","playable","2020-11-17 12:54:38.000" -"010009B00D33C000","Rugby Challenge 4","slow;status-playable;online-broken;UE4","playable","2022-10-06 12:45:53.000" -"01006EC00F2CC000","Ruiner","status-playable;UE4","playable","2022-10-03 14:11:33.000" -"010074F00DE4A000","Run the Fan","status-playable","playable","2021-02-27 13:36:28.000" -"","Runbow","online;status-playable","playable","2021-01-08 22:47:44.000" -"0100D37009B8A000","Runbow Deluxe Edition","status-playable;online-broken","playable","2022-08-12 12:20:25.000" -"010081C0191D8000","Rune Factory 3 Special","status-playable","playable","2023-10-15 08:32:49.000" -"010051D00E3A4000","Rune Factory 4 Special","status-ingame;32-bit;crash;nvdec","ingame","2023-05-06 08:49:17.000" -"010014D01216E000","Rune Factory 5 (JP)","gpu;status-ingame","ingame","2021-06-01 12:00:36.000" -"0100B8B012ECA000","S.N.I.P.E.R. Hunter Scope","status-playable","playable","2021-04-19 15:58:09.000" -"","SAMURAI SHODOWN","UE4;crash;nvdec;status-menus","menus","2020-09-06 02:17:00.000" -"0100F6800F48E000","SAMURAI SHOWDOWN NEOGEO COLLECTION","nvdec;status-playable","playable","2021-06-14 17:12:56.000" -"0100829018568000","SD GUNDAM BATTLE ALLIANCE Demo","audio;status-ingame;crash;demo","ingame","2022-08-01 23:01:20.000" -"010055700CEA8000","SD GUNDAM G GENERATION CROSS RAYS","status-playable;nvdec","playable","2022-09-15 20:58:44.000" -"","SD GUNDAM G GENERATION CROSS RAYS PREMIUM G SOUND EDITION - 010022900D3EC00","status-playable;nvdec","playable","2022-09-15 20:45:57.000" -"0100A8900AF04000","SEGA AGES Alex Kidd in Miracle World","online;status-playable","playable","2021-05-05 16:35:47.000" -"01001E600AF08000","SEGA AGES Gain Ground","online;status-playable","playable","2021-05-05 16:16:27.000" -"","SEGA AGES OUTRUN","status-playable","playable","2021-01-11 13:13:59.000" -"","SEGA AGES PHANTASY STAR","status-playable","playable","2021-01-11 12:49:48.000" -"01005F600CB0E000","SEGA AGES Puyo Puyo","online;status-playable","playable","2021-05-05 16:09:28.000" -"01000D200C614000","SEGA AGES SONIC THE HEDGEHOG 2","status-playable","playable","2022-09-21 20:26:35.000" -"","SEGA AGES SPACE HARRIER","status-playable","playable","2021-01-11 12:57:40.000" -"01001E700AC60000","SEGA AGES Wonder Boy: Monster Land","online;status-playable","playable","2021-05-05 16:28:25.000" -"010051F00AC5E000","SEGA Ages: Sonic The Hedgehog","slow;status-playable","playable","2023-03-05 20:16:31.000" -"010054400D2E6000","SEGA Ages: Virtua Racing","status-playable;online-broken","playable","2023-01-29 17:08:39.000" -"0100B3C014BDA000","SEGA Genesis - Nintendo Switch Online","status-nothing;crash;regression","nothing","2022-04-11 07:27:21.000" -"","SEGA Mega Drive Classics","online;status-playable","playable","2021-01-05 11:08:00.000" -"0100D1800D902000","SENRAN KAGURA Peach Ball","status-playable","playable","2021-06-03 15:12:10.000" -"","SENRAN KAGURA Reflexions","status-playable","playable","2020-03-23 19:15:23.000" -"","SENTRY","status-playable","playable","2020-12-13 12:00:24.000" -"","SHIFT QUANTUM","UE4;crash;status-ingame","ingame","2020-11-06 21:54:08.000" -"0100B16009C10000","SINNER: Sacrifice for Redemption","status-playable;nvdec;UE4;vulkan-backend-bug","playable","2022-08-12 20:37:33.000" -"0100A0A00D1AA000","SKYHILL","status-playable","playable","2021-03-05 15:19:11.000" -"","SKYPEACE","status-playable","playable","2020-05-29 14:14:30.000" -"01002AA00C974000","SMASHING THE BATTLE","status-playable","playable","2021-06-11 15:53:57.000" -"01004AB00AEF8000","SNK 40th Anniversary Collection","status-playable","playable","2022-08-14 13:33:15.000" -"010027F00AD6C000","SNK HEROINES Tag Team Frenzy","status-playable;nvdec;online-broken;ldn-untested","playable","2022-08-14 14:19:25.000" -"","SOLDAM Drop, Connect, Erase","status-playable","playable","2020-05-30 09:18:54.000" -"01005EA01C0FC000","SONIC X SHADOW GENERATIONS","status-ingame;crash","ingame","2025-01-07 04:20:45.000" -"","SPACE ELITE FORCE","status-playable","playable","2020-11-27 15:21:05.000" -"0100EBF00E702000","STAR OCEAN First Departure R","nvdec;status-playable","playable","2021-07-05 19:29:16.000" -"010065301A2E0000","STAR OCEAN The Second Story R","status-ingame;crash","ingame","2024-06-01 02:39:59.000" -"010040701B948000","STAR WARS Battlefront Classic Collection","gpu;status-ingame;vulkan","ingame","2024-07-12 19:24:21.000" -"0100BD100FFBE000","STAR WARS Episode I: Racer","slow;status-playable;nvdec","playable","2022-10-03 16:08:36.000" -"0100BB500EACA000","STAR WARS Jedi Knight II Jedi Outcast","gpu;status-ingame","ingame","2022-09-15 22:51:00.000" -"0100153014544000","STAR WARS: The Force Unleashed","status-playable","playable","2024-05-01 17:41:28.000" -"0100616009082000","STAY","crash;services;status-boots","boots","2021-04-23 14:24:52.000" -"0100B61009C60000","STAY COOL, KOBAYASHI-SAN! A RIVER RANSOM STORY","status-playable","playable","2021-01-26 17:37:28.000" -"0100CB400E9BC000","STEINS;GATE: My Darling's Embrace","status-playable;nvdec","playable","2022-11-20 16:48:34.000" -"0100BC800EDA2000","STELLATUM","gpu;status-playable","playable","2021-03-07 16:30:23.000" -"010070D00F640000","STONE","status-playable;UE4","playable","2022-09-30 11:53:32.000" -"010017301007E000","STORY OF SEASONS Pioneers of Olive [ 牧場物語 オリーブタウンと希望の大地 ]","status-playable","playable","2021-03-18 11:42:19.000" -"0100FF5005B76000","STRIKERS1945 for Nintendo Switch","32-bit;status-playable","playable","2021-06-03 19:35:04.000" -"0100720008ED2000","STRIKERS1945II for Nintendo Switch","32-bit;status-playable","playable","2021-06-03 19:43:00.000" -"0100C5500E7AE000","STURMWIND EX","audio;32-bit;status-playable","playable","2022-09-16 12:01:39.000" -"0100B87017D94000","SUPER BOMBERMAN R 2","deadlock;status-boots","boots","2023-09-29 13:19:51.000" -"0100E5E00C464000","SUPER DRAGON BALL HEROES WORLD MISSION","status-playable;nvdec;online-broken","playable","2022-08-17 12:56:30.000" -"","SUPER ROBOT WARS T","online;status-playable","playable","2021-03-25 11:00:40.000" -"","SUPER ROBOT WARS V","online;status-playable","playable","2020-06-23 12:56:37.000" -"","SUPER ROBOT WARS X","online;status-playable","playable","2020-08-05 19:18:51.000" -"01005AB01119C000","SUSHI REVERSI","status-playable","playable","2021-06-11 19:26:58.000" -"01005DF00DC26000","SWORD ART ONLINE: FATAL BULLET COMPLETE EDITION","UE4;gpu;online;status-ingame","ingame","2021-06-09 16:58:50.000" -"01001B600D1D6000","SWORD ART ONLINE: Hollow Realization Deluxe Edition","status-playable;nvdec","playable","2022-08-19 19:19:15.000" -"","SYNAPTIC DRIVE","online;status-playable","playable","2020-09-07 13:44:05.000" -"01009BF00E7D2000","SYNTHETIK: Ultimate","gpu;status-ingame;crash","ingame","2022-08-30 03:19:25.000" -"0100A51013530000","SaGa Frontier Remastered","status-playable;nvdec","playable","2022-11-03 13:54:56.000" -"010003A00D0B4000","SaGa SCARLET GRACE: AMBITIONS","status-playable","playable","2022-10-06 13:20:31.000" -"","Saboteur II: Avenging Angel","Needs Update;cpu;crash;status-nothing","nothing","2021-01-26 14:47:37.000" -"","Saboteur SiO","slow;status-ingame","ingame","2020-12-17 16:59:49.000" -"","Safety First!","status-playable","playable","2021-01-06 09:05:23.000" -"01008D100D43E000","Saints Row IV","status-playable;ldn-untested;LAN","playable","2023-12-04 18:33:37.000" -"0100DE600BEEE000","Saints Row: The Third - The Full Package","slow;status-playable;LAN","playable","2023-08-24 02:40:58.000" -"01007F000EB36000","Sakai and...","status-playable;nvdec","playable","2022-12-15 13:53:19.000" -"0100B1400E8FE000","Sakuna: Of Rice and Ruin","status-playable","playable","2023-07-24 13:47:13.000" -"0100BBF0122B4000","Sally Face","status-playable","playable","2022-06-06 18:41:24.000" -"","Salt And Sanctuary","status-playable","playable","2020-10-22 11:52:19.000" -"","Sam & Max Save the World","status-playable","playable","2020-12-12 13:11:51.000" -"","Samsara","status-playable","playable","2021-01-11 15:14:12.000" -"01006C600E46E000","Samurai Jack Battle Through Time","status-playable;nvdec;UE4","playable","2022-10-06 13:33:59.000" -"0100B6501A360000","Samurai Warrior","status-playable","playable","2023-02-27 18:42:38.000" -"","SamuraiAces for Nintendo Switch","32-bit;status-playable","playable","2020-11-24 20:26:55.000" -"","Sangoku Rensenki ~Otome no Heihou!~","gpu;nvdec;status-ingame","ingame","2020-10-17 19:13:14.000" -"0100A4700BC98000","Satsujin Tantei Jack the Ripper","status-playable","playable","2021-06-21 16:32:54.000" -"0100F0000869C000","Saturday Morning RPG","status-playable;nvdec","playable","2022-08-12 12:41:50.000" -"","Sausage Sports Club","gpu;status-ingame","ingame","2021-01-10 05:37:17.000" -"0100C8300FA90000","Save Koch","status-playable","playable","2022-09-26 17:06:56.000" -"010091000F72C000","Save Your Nuts","status-playable;nvdec;online-broken;UE4","playable","2022-09-27 23:12:02.000" -"","Save the Ninja Clan","status-playable","playable","2021-01-11 13:56:37.000" -"0100AA00128BA000","Saviors of Sapphire Wings & Stranger of Sword City Revisited","status-menus;crash","menus","2022-10-24 23:00:46.000" -"01001C3012912000","Say No! More","status-playable","playable","2021-05-06 13:43:34.000" -"010010A00A95E000","Sayonara Wild Hearts","status-playable","playable","2023-10-23 03:20:01.000" -"0100ACB004006000","Schlag den Star","slow;status-playable;nvdec","playable","2022-08-12 14:28:22.000" -"0100394011C30000","Scott Pilgrim vs The World: The Game","services-horizon;status-nothing;crash","nothing","2024-07-12 08:13:03.000" -"","Scribblenauts Mega Pack","nvdec;status-playable","playable","2020-12-17 22:56:14.000" -"","Scribblenauts Showdown","gpu;nvdec;status-ingame","ingame","2020-12-17 23:05:53.000" -"0100E4A00D066000","Sea King","UE4;nvdec;status-playable","playable","2021-06-04 15:49:22.000" -"0100AFE012BA2000","Sea of Solitude The Director's Cut","gpu;status-ingame","ingame","2024-07-12 18:29:29.000" -"01008C0016544000","Sea of Stars","status-playable","playable","2024-03-15 20:27:12.000" -"010036F0182C4000","Sea of Stars Demo","status-playable;demo","playable","2023-02-12 15:33:56.000" -"","SeaBed","status-playable","playable","2020-05-17 13:25:37.000" -"","Season Match Bundle - Part 1 and 2","status-playable","playable","2021-01-11 13:28:23.000" -"","Season Match Full Bundle - Parts 1, 2 and 3","status-playable","playable","2020-10-27 16:15:22.000" -"","Secret Files 3","nvdec;status-playable","playable","2020-10-24 15:32:39.000" -"010075D0101FA000","Seek Hearts","status-playable","playable","2022-11-22 15:06:26.000" -"","Seers Isle","status-playable","playable","2020-11-17 12:28:50.000" -"","Semispheres","status-playable","playable","2021-01-06 23:08:31.000" -"01009E500D29C000","Sentinels of Freedom","status-playable","playable","2021-06-14 16:42:19.000" -"010059700D4A0000","Sephirothic Stories","services;status-menus","menus","2021-11-25 08:52:17.000" -"010007D00D43A000","Serious Sam Collection","status-boots;vulkan-backend-bug","boots","2022-10-13 13:53:34.000" -"0100B2C00E4DA000","Served! A gourmet race","status-playable;nvdec","playable","2022-09-28 12:46:00.000" -"010018400C24E000","Seven Knights -Time Wanderer-","status-playable;vulkan-backend-bug","playable","2022-10-13 22:08:54.000" -"0100D6F016676000","Seven Pirates H","status-playable","playable","2024-06-03 14:54:12.000" -"","Severed","status-playable","playable","2020-12-15 21:48:48.000" -"0100D5500DA94000","Shadow Blade Reload","nvdec;status-playable","playable","2021-06-11 18:40:43.000" -"0100BE501382A000","Shadow Gangs","cpu;gpu;status-ingame;crash;regression","ingame","2024-04-29 00:07:26.000" -"0100C3A013840000","Shadow Man Remastered","gpu;status-ingame","ingame","2024-05-20 06:01:39.000" -"","Shadowgate","status-playable","playable","2021-04-24 07:32:57.000" -"0100371013B3E000","Shadowrun Returns","gpu;status-ingame;Needs Update","ingame","2022-10-04 21:32:31.000" -"01008310154C4000","Shadowrun: Dragonfall - Director's Cut","gpu;status-ingame;Needs Update","ingame","2022-10-04 20:52:18.000" -"0100C610154CA000","Shadowrun: Hong Kong - Extended Edition","gpu;status-ingame;Needs Update","ingame","2022-10-04 20:53:09.000" -"","Shadows 2: Perfidia","status-playable","playable","2020-08-07 12:43:46.000" -"","Shadows of Adam","status-playable","playable","2021-01-11 13:35:58.000" -"01002A800C064000","Shadowverse Champions Battle","status-playable","playable","2022-10-02 22:59:29.000" -"01003B90136DA000","Shadowverse: Champion’s Battle","status-nothing;crash","nothing","2023-03-06 00:31:50.000" -"0100820013612000","Shady Part of Me","status-playable","playable","2022-10-20 11:31:55.000" -"","Shakedown: Hawaii","status-playable","playable","2021-01-07 09:44:36.000" -"01008DA012EC0000","Shakes on a Plane","status-menus;crash","menus","2021-11-25 08:52:25.000" -"0100B4900E008000","Shalnor Legends: Sacred Lands","status-playable","playable","2021-06-11 14:57:11.000" -"","Shanky: The Vegan's Nightmare - 01000C00CC10000","status-playable","playable","2021-01-26 15:03:55.000" -"0100430013120000","Shantae","status-playable","playable","2021-05-21 04:53:26.000" -"0100EFD00A4FA000","Shantae and the Pirate's Curse","status-playable","playable","2024-04-29 17:21:57.000" -"","Shantae and the Seven Sirens","nvdec;status-playable","playable","2020-06-19 12:23:40.000" -"","Shantae: Half-Genie Hero Ultimate Edition","status-playable","playable","2020-06-04 20:14:20.000" -"0100ADA012370000","Shantae: Risky's Revenge - Director's Cut","status-playable","playable","2022-10-06 20:47:39.000" -"01003AB01062C000","Shaolin vs Wutang : Eastern Heroes","deadlock;status-nothing","nothing","2021-03-29 20:38:54.000" -"0100B250009B9600","Shape Of The World0","UE4;status-playable","playable","2021-03-05 16:42:28.000" -"01004F50085F2000","She Remembered Caterpillars","status-playable","playable","2022-08-12 17:45:14.000" -"01000320110C2000","She Sees Red","status-playable;nvdec","playable","2022-09-30 11:30:15.000" -"01009EB004CB0000","Shelter Generations","status-playable","playable","2021-06-04 16:52:39.000" -"010020F014DBE000","Sherlock Holmes: The Devil's Daughter","gpu;status-ingame","ingame","2022-07-11 00:07:26.000" -"","Shift Happens","status-playable","playable","2021-01-05 21:24:18.000" -"01000750084B2000","Shiftlings","nvdec;status-playable","playable","2021-03-04 13:49:54.000" -"010045800ED1E000","Shin Megami Tensei III NOCTURNE HD REMASTER","gpu;status-ingame;Needs Update","ingame","2022-11-03 19:57:01.000" -"01003B0012DC2000","Shin Megami Tensei III Nocturne HD Remaster","status-playable","playable","2022-11-03 22:53:27.000" -"010063B012DC6000","Shin Megami Tensei V","status-playable;UE4","playable","2024-02-21 06:30:07.000" -"010069C01AB82000","Shin Megami Tensei V: Vengeance","gpu;status-ingame;vulkan-backend-bug","ingame","2024-07-14 11:28:24.000" -"01009050133B4000","Shing! (サムライフォース:斬!)","status-playable;nvdec","playable","2022-10-22 00:48:54.000" -"01009A5009A9E000","Shining Resonance Refrain","status-playable;nvdec","playable","2022-08-12 18:03:01.000" -"01004EE0104F6000","Shinsekai Into the Depths","status-playable","playable","2022-09-28 14:07:51.000" -"0100C2F00A568000","Shio","status-playable","playable","2021-02-22 16:25:09.000" -"","Shipped","status-playable","playable","2020-11-21 14:22:32.000" -"01000E800FCB4000","Ships","status-playable","playable","2021-06-11 16:14:37.000" -"01007430122D0000","Shiren the Wanderer: The Tower of Fortune and the Dice of Fate","status-playable;nvdec","playable","2022-10-20 11:44:36.000" -"","Shiritsu Berubara Gakuen ~Versailles no Bara Re*imagination~","cpu;crash;status-boots","boots","2020-09-27 19:01:25.000" -"01000244016BAE00","Shiro0","gpu;status-ingame","ingame","2024-01-13 08:54:39.000" -"","Shoot 1UP DX","status-playable","playable","2020-12-13 12:32:47.000" -"","Shovel Knight: Specter of Torment","status-playable","playable","2020-05-30 08:34:17.000" -"","Shovel Knight: Treasure Trove","status-playable","playable","2021-02-14 18:24:39.000" -"","Shred!2 - Freeride MTB","status-playable","playable","2020-05-30 14:34:09.000" -"","Shu","nvdec;status-playable","playable","2020-05-30 09:08:59.000" -"","Shut Eye","status-playable","playable","2020-07-23 18:08:35.000" -"010044500C182000","Sid Meier's Civilization VI","status-playable;ldn-untested","playable","2024-04-08 16:03:40.000" -"01007FC00B674000","Sigi - A Fart for Melusina","status-playable","playable","2021-02-22 16:46:58.000" -"0100F1400B0D6000","Silence","nvdec;status-playable","playable","2021-06-03 14:46:17.000" -"","Silent World","status-playable","playable","2020-08-28 13:45:13.000" -"010045500DFE2000","Silk","nvdec;status-playable","playable","2021-06-10 15:34:37.000" -"010016D00A964000","SilverStarChess","status-playable","playable","2021-05-06 15:25:57.000" -"0100E8C019B36000","Simona's Requiem","gpu;status-ingame","ingame","2023-02-21 18:29:19.000" -"01006FE010438000","Sin Slayers","status-playable","playable","2022-10-20 11:53:52.000" -"01002820036A8000","Sine Mora EX","gpu;status-ingame;online-broken","ingame","2022-08-12 19:36:18.000" -"","Singled Out","online;status-playable","playable","2020-08-03 13:06:18.000" -"","Sinless","nvdec;status-playable","playable","2020-08-09 20:18:55.000" -"0100E9201410E000","Sir Lovelot","status-playable","playable","2021-04-05 16:21:46.000" -"0100134011E32000","Skate City","status-playable","playable","2022-11-04 11:37:39.000" -"","Skee-Ball","status-playable","playable","2020-11-16 04:44:07.000" -"01001A900F862000","Skelattack","status-playable","playable","2021-06-09 15:26:26.000" -"01008E700F952000","Skelittle: A Giant Party!!","status-playable","playable","2021-06-09 19:08:34.000" -"","Skelly Selest","status-playable","playable","2020-05-30 15:38:18.000" -"","Skies of Fury","status-playable","playable","2020-05-30 16:40:54.000" -"010046B00DE62000","Skullgirls: 2nd Encore","status-playable","playable","2022-09-15 21:21:25.000" -"","Skulls of the Shogun: Bone-a-fide Edition","status-playable","playable","2020-08-31 18:58:12.000" -"0100D7B011654000","Skully","status-playable;nvdec;UE4","playable","2022-10-06 13:52:59.000" -"010083100B5CA000","Sky Force Anniversary","status-playable;online-broken","playable","2022-08-12 20:50:07.000" -"","Sky Force Reloaded","status-playable","playable","2021-01-04 20:06:57.000" -"010003F00CC98000","Sky Gamblers - Afterburner","gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug","ingame","2022-08-12 21:04:55.000" -"010093D00AC38000","Sky Gamblers: Storm Raiders","gpu;audio;status-ingame;32-bit","ingame","2022-08-12 21:13:36.000" -"010068200E96E000","Sky Gamblers: Storm Raiders 2","gpu;status-ingame","ingame","2022-09-13 12:24:04.000" -"","Sky Racket","status-playable","playable","2020-09-07 12:22:24.000" -"0100DDB004F30000","Sky Ride","status-playable","playable","2021-02-22 16:53:07.000" -"","Sky Rogue","status-playable","playable","2020-05-30 08:26:28.000" -"0100C52011460000","Sky: Children of the Light","cpu;status-nothing;online-broken","nothing","2023-02-23 10:57:10.000" -"","SkyScrappers","status-playable","playable","2020-05-28 22:11:25.000" -"","SkyTime","slow;status-ingame","ingame","2020-05-30 09:24:51.000" -"010041C01014E000","Skybolt Zack","status-playable","playable","2021-04-12 18:28:00.000" -"","Skylanders Imaginators","crash;services;status-boots","boots","2020-05-30 18:49:18.000" -"01003AD00DEAE000","SlabWell","status-playable","playable","2021-02-22 17:02:51.000" -"","Slain","status-playable","playable","2020-05-29 14:26:16.000" -"0100BB100AF4C000","Slain Back from Hell","status-playable","playable","2022-08-12 23:36:19.000" -"010026300BA4A000","Slay the Spire","status-playable","playable","2023-01-20 15:09:26.000" -"0100501006494000","Slayaway Camp: Butcher's Cut","status-playable;opengl-backend-bug","playable","2022-08-12 23:44:05.000" -"01004E900EDDA000","Slayin 2","gpu;status-ingame","ingame","2024-04-19 16:15:26.000" -"01004AC0081DC000","Sleep Tight","gpu;status-ingame;UE4","ingame","2022-08-13 00:17:32.000" -"0100F4500AA4E000","Slice Dice & Rice","online;status-playable","playable","2021-02-22 17:44:23.000" -"010010D011E1C000","Slide Stars","status-menus;crash","menus","2021-11-25 08:53:43.000" -"","Slime-san","status-playable","playable","2020-05-30 16:15:12.000" -"","Slime-san Superslime Edition","status-playable","playable","2020-05-30 19:08:08.000" -"0100C9100B06A000","SmileBASIC 4","gpu;status-menus","menus","2021-07-29 17:35:59.000" -"0100207007EB2000","Smoke and Sacrifice","status-playable","playable","2022-08-14 12:38:27.000" -"01009790186FE000","Smurfs Kart","status-playable","playable","2023-10-18 00:55:00.000" -"0100F2800D46E000","Snack World The Dungeon Crawl Gold","gpu;slow;status-ingame;nvdec;audout","ingame","2022-05-01 21:12:44.000" -"0100C0F0020E8000","Snake Pass","status-playable;nvdec;UE4","playable","2022-01-03 04:31:52.000" -"010075A00BA14000","Sniper Elite 3 Ultimate Edition","status-playable;ldn-untested","playable","2024-04-18 07:47:49.000" -"010007B010FCC000","Sniper Elite 4","gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug","ingame","2024-06-18 17:53:15.000" -"0100BB000A3AA000","Sniper Elite V2 Remastered","slow;status-ingame;nvdec;online-broken;ldn-untested","ingame","2022-08-14 13:23:13.000" -"0100704000B3A000","Snipperclips","status-playable","playable","2022-12-05 12:44:55.000" -"01008E20047DC000","Snipperclips Plus","status-playable","playable","2023-02-14 20:20:13.000" -"01008DA00CBBA000","Snooker 19","status-playable;nvdec;online-broken;UE4","playable","2022-09-11 17:43:22.000" -"010045300516E000","Snow Moto Racing Freedom","gpu;status-ingame;vulkan-backend-bug","ingame","2022-08-15 16:05:14.000" -"","SnowRunner - 0100FBD13AB6000","services;status-boots;crash","boots","2023-10-07 00:01:16.000" -"0100BE200C34A000","Snowboarding the Next Phase","nvdec;status-playable","playable","2021-02-23 12:56:58.000" -"010017B012AFC000","Soccer Club Life: Playing Manager","gpu;status-ingame","ingame","2022-10-25 11:59:22.000" -"0100B5000E05C000","Soccer Pinball","UE4;gpu;status-ingame","ingame","2021-06-15 20:56:51.000" -"","Soccer Slammers","status-playable","playable","2020-05-30 07:48:14.000" -"010095C00F9DE000","Soccer, Tactics & Glory","gpu;status-ingame","ingame","2022-09-26 17:15:58.000" -"0100590009C38000","SolDivide for Nintendo Switch","32-bit;status-playable","playable","2021-06-09 14:13:03.000" -"010008600D1AC000","Solo: Islands of the Heart","gpu;status-ingame;nvdec","ingame","2022-09-11 17:54:43.000" -"01009EE00E91E000","Some Distant Memory","status-playable","playable","2022-09-15 21:48:19.000" -"01004F401BEBE000","Song of Nunu: A League of Legends Story","status-ingame","ingame","2024-07-12 18:53:44.000" -"0100E5400BF94000","Songbird Symphony","status-playable","playable","2021-02-27 02:44:04.000" -"","Songbringer","status-playable","playable","2020-06-22 10:42:02.000" -"0000000000000000","Sonic 1 (2013)","status-ingame;crash;homebrew","ingame","2024-04-06 18:31:20.000" -"0000000000000000","Sonic 2 (2013)","status-ingame;crash;homebrew","ingame","2024-04-01 16:25:30.000" -"0000000000000000","Sonic A.I.R","status-ingame;homebrew","ingame","2024-04-01 16:25:32.000" -"0000000000000000","Sonic CD","status-ingame;crash;homebrew","ingame","2024-04-01 16:25:31.000" -"010040E0116B8000","Sonic Colors Ultimate [010040E0116B8000]","status-playable","playable","2022-11-12 21:24:26.000" -"01001270012B6000","Sonic Forces","status-playable","playable","2024-07-28 13:11:21.000" -"01004AD014BF0000","Sonic Frontiers","gpu;deadlock;status-ingame;amd-vendor-bug;intel-vendor-bug","ingame","2024-09-05 09:18:53.000" -"01009AA000FAA000","Sonic Mania","status-playable","playable","2020-06-08 17:30:57.000" -"01009AA000FAA000","Sonic Mania Plus","status-playable","playable","2022-01-16 04:09:11.000" -"01008F701C074000","Sonic Superstars","gpu;status-ingame;nvdec","ingame","2023-10-28 17:48:07.000" -"010088801C150000","Sonic Superstars Digital Art Book with Mini Digital Soundtrack","status-playable","playable","2024-08-20 13:26:56.000" -"","Soul Axiom Rebooted","nvdec;slow;status-ingame","ingame","2020-09-04 12:41:01.000" -"","Soul Searching","status-playable","playable","2020-07-09 18:39:07.000" -"01008F2005154000","South Park: The Fractured But Whole","slow;status-playable;online-broken","playable","2024-07-08 17:47:28.000" -"","Space Blaze","status-playable","playable","2020-08-30 16:18:05.000" -"","Space Cows","UE4;crash;status-menus","menus","2020-06-15 11:33:20.000" -"010047B010260000","Space Pioneer","status-playable","playable","2022-10-20 12:24:37.000" -"010010A009830000","Space Ribbon","status-playable","playable","2022-08-15 17:17:10.000" -"0000000000000000","SpaceCadetPinball","status-ingame;homebrew","ingame","2024-04-18 19:30:04.000" -"0100D9B0041CE000","Spacecats with Lasers","status-playable","playable","2022-08-15 17:22:44.000" -"","Spaceland","status-playable","playable","2020-11-01 14:31:56.000" -"","Sparkle 2","status-playable","playable","2020-10-19 11:51:39.000" -"01000DC007E90000","Sparkle Unleashed","status-playable","playable","2021-06-03 14:52:15.000" -"","Sparkle ZERO","gpu;slow;status-ingame","ingame","2020-03-23 18:19:18.000" -"01007ED00C032000","Sparklite","status-playable","playable","2022-08-06 11:35:41.000" -"0100E6A009A26000","Spartan","UE4;nvdec;status-playable","playable","2021-03-05 15:53:19.000" -"","Speaking Simulator","status-playable","playable","2020-10-08 13:00:39.000" -"01008B000A5AE000","Spectrum","status-playable","playable","2022-08-16 11:15:59.000" -"0100F18010BA0000","Speed 3: Grand Prix","status-playable;UE4","playable","2022-10-20 12:32:31.000" -"","Speed Brawl","slow;status-playable","playable","2020-09-18 22:08:16.000" -"01000540139F6000","Speed Limit","gpu;status-ingame","ingame","2022-09-02 18:37:40.000" -"010061F013A0E000","Speed Truck Racing","status-playable","playable","2022-10-20 12:57:04.000" -"0100E74007EAC000","Spellspire","status-playable","playable","2022-08-16 11:21:21.000" -"010021F004270000","Spelunker Party!","services;status-boots","boots","2022-08-16 11:25:49.000" -"0100710013ABA000","Spelunky","status-playable","playable","2021-11-20 17:45:03.000" -"0100BD500BA94000","Sphinx and the Cursed Mummy™","gpu;status-ingame;32-bit;opengl","ingame","2024-05-20 06:00:51.000" -"","Spider Solitaire","status-playable","playable","2020-12-16 16:19:30.000" -"010076D0122A8000","Spinch","status-playable","playable","2024-07-12 19:02:10.000" -"01001E40136FE000","Spinny's journey","status-ingame;crash","ingame","2021-11-30 03:39:44.000" -"","Spiral Splatter","status-playable","playable","2020-06-04 14:03:57.000" -"","Spirit Hunter: NG","32-bit;status-playable","playable","2020-12-17 20:38:47.000" -"","Spirit Roots","nvdec;status-playable","playable","2020-07-10 13:33:32.000" -"01005E101122E000","Spirit of the North","status-playable;UE4","playable","2022-09-30 11:40:47.000" -"01009D60080B4000","SpiritSphere DX","status-playable","playable","2021-07-03 23:37:49.000" -"0100BD400DC52000","Spiritfarer","gpu;status-ingame","ingame","2022-10-06 16:31:38.000" -"010042700E3FC000","Spitlings","status-playable;online-broken","playable","2022-10-06 16:42:39.000" -"01003BC0000A0000","Splatoon 2","status-playable;ldn-works;LAN","playable","2024-07-12 19:11:15.000" -"0100C2500FC20000","Splatoon 3","status-playable;ldn-works;opengl-backend-bug;LAN;amd-vendor-bug","playable","2024-08-04 23:49:11.000" -"0100BA0018500000","Splatoon 3: Splatfest World Premiere","gpu;status-ingame;online-broken;demo","ingame","2022-09-19 03:17:12.000" -"01009FB0172F4000","SpongeBob SquarePants The Cosmic Shake","gpu;status-ingame;UE4","ingame","2023-08-01 19:29:53.000" -"010062800D39C000","SpongeBob SquarePants: Battle for Bikini Bottom - Rehydrated","status-playable;online-broken;UE4;ldn-broken;vulkan-backend-bug","playable","2023-08-01 19:29:34.000" -"010097C01336A000","Spooky Chase","status-playable","playable","2022-11-04 12:17:44.000" -"0100C6100D75E000","Spooky Ghosts Dot Com","status-playable","playable","2021-06-15 15:16:11.000" -"0100DE9005170000","Sports Party","nvdec;status-playable","playable","2021-03-05 13:40:42.000" -"0100E04009BD4000","Spot The Difference","status-playable","playable","2022-08-16 11:49:52.000" -"010052100D1B4000","Spot the Differences: Party!","status-playable","playable","2022-08-16 11:55:26.000" -"01000E6015350000","Spy Alarm","services;status-ingame","ingame","2022-12-09 10:12:51.000" -"01005D701264A000","SpyHack","status-playable","playable","2021-04-15 10:53:51.000" -"","Spyro Reignited Trilogy","Needs More Attention;UE4;crash;gpu;nvdec;status-menus","menus","2021-01-22 13:01:56.000" -"010077B00E046000","Spyro Reignited Trilogy","status-playable;nvdec;UE4","playable","2022-09-11 18:38:33.000" -"","Squeakers","status-playable","playable","2020-12-13 12:13:05.000" -"","Squidgies Takeover","status-playable","playable","2020-07-20 22:28:08.000" -"","Squidlit","status-playable","playable","2020-08-06 12:38:32.000" -"","Star Renegades","nvdec;status-playable","playable","2020-12-11 12:19:23.000" -"","Star Story: The Horizon Escape","status-playable","playable","2020-08-11 22:31:38.000" -"01009DF015776000","Star Trek Prodigy: Supernova","status-playable;nvdec;UE4;opengl-backend-bug","playable","2022-10-14 10:18:50.000" -"0100854015868000","Star Wars - Knights Of The Old Republic","gpu;deadlock;status-boots","boots","2024-02-12 10:13:51.000" -"01008CA00FAE8000","Star Wars Jedi Knight: Jedi Academy","gpu;status-boots","boots","2021-06-16 12:35:30.000" -"0100FA10115F8000","Star Wars: Republic Commando","gpu;status-ingame;32-bit","ingame","2023-10-31 15:57:17.000" -"01006DA00DEAC000","Star Wars™ Pinball","status-playable;online-broken","playable","2022-09-11 18:53:31.000" -"01005EB00EA10000","Star-Crossed Myth - The Department of Wishes","gpu;status-ingame","ingame","2021-06-04 19:34:36.000" -"0100E6B0115FC000","Star99","status-menus;online","menus","2021-11-26 14:18:51.000" -"01002100137BA000","Stardash","status-playable","playable","2021-01-21 16:31:19.000" -"0100E65002BB8000","Stardew Valley","status-playable;online-broken;ldn-untested","playable","2024-02-14 03:11:19.000" -"01002CC003FE6000","Starlink: Battle for Atlas","services-horizon;status-nothing;crash;Needs Update","nothing","2024-05-05 17:25:11.000" -"","Starlit Adventures Golden Stars","status-playable","playable","2020-11-21 12:14:43.000" -"","Starship Avenger Operation: Take Back Earth","status-playable","playable","2021-01-12 15:52:55.000" -"","State of Anarchy: Master of Mayhem","nvdec;status-playable","playable","2021-01-12 19:00:05.000" -"","State of Mind","UE4;crash;status-boots","boots","2020-06-22 22:17:50.000" -"01008010118CC000","Steam Prison","nvdec;status-playable","playable","2021-04-01 15:34:11.000" -"0100AE100DAFA000","Steam Tactics","status-playable","playable","2022-10-06 16:53:45.000" -"01009320084A4000","SteamWorld Dig","status-playable","playable","2024-08-19 12:12:23.000" -"0100CA9002322000","SteamWorld Dig 2","status-playable","playable","2022-12-21 19:25:42.000" -"","SteamWorld Quest","nvdec;status-playable","playable","2020-11-09 13:10:04.000" -"","Steamburg","status-playable","playable","2021-01-13 08:42:01.000" -"01001C6014772000","Steel Assault","status-playable","playable","2022-12-06 14:48:30.000" -"","Steins;Gate Elite","status-playable","playable","2020-08-04 07:33:32.000" -"01002DE01043E000","Stela","UE4;status-playable","playable","2021-06-15 13:28:34.000" -"01005A700C954000","Stellar Interface","status-playable","playable","2022-10-20 13:44:33.000" -"","Steredenn","status-playable","playable","2021-01-13 09:19:42.000" -"0100AE0006474000","Stern Pinball Arcade","status-playable","playable","2022-08-16 14:24:41.000" -"","Stikbold! A Dodgeball Adventure DELUXE","status-playable","playable","2021-01-11 20:12:54.000" -"010077B014518000","Stitchy in Tooki Trouble","status-playable","playable","2021-05-06 16:25:53.000" -"010074400F6A8000","Stories Untold","status-playable;nvdec","playable","2022-12-22 01:08:46.000" -"010040D00BCF4000","Storm Boy","status-playable","playable","2022-10-20 14:15:06.000" -"0100B2300B932000","Storm in a Teacup","gpu;status-ingame","ingame","2021-11-06 02:03:19.000" -"0100ED400EEC2000","Story of Seasons: Friends of Mineral Town","status-playable","playable","2022-10-03 16:40:31.000" -"","Story of a Gladiator","status-playable","playable","2020-07-29 15:08:18.000" -"010078D00E8F4000","Stranded Sails: Explorers of the Cursed Islands - 010078D00E8F4000","slow;status-playable;nvdec;UE4","playable","2022-09-16 11:58:38.000" -"01000A6013F86000","Strange Field Football","status-playable","playable","2022-11-04 12:25:57.000" -"","Stranger Things 3: The Game","status-playable","playable","2021-01-11 17:44:09.000" -"0100D7E011C64000","Strawberry Vinegar","status-playable;nvdec","playable","2022-12-05 16:25:40.000" -"010075101EF84000","Stray","status-ingame;crash","ingame","2025-01-07 04:03:00.000" -"0100024008310000","Street Fighter 30th Anniversary Collection","status-playable;online-broken;ldn-partial","playable","2022-08-20 16:50:47.000" -"010012400D202000","Street Outlaws: The List","nvdec;status-playable","playable","2021-06-11 12:15:32.000" -"","Street Power Soccer","UE4;crash;status-boots","boots","2020-11-21 12:28:57.000" -"","Streets of Rage 4","nvdec;online;status-playable","playable","2020-07-07 21:21:22.000" -"0100BDE012928000","Strife: Veteran Edition","gpu;status-ingame","ingame","2022-01-15 05:10:42.000" -"010039100DACC000","Strike Force - War on Terror","status-menus;crash;Needs Update","menus","2021-11-24 08:08:20.000" -"010072500D52E000","Strike Suit Zero: Director's Cut","crash;status-boots","boots","2021-04-23 17:15:14.000" -"","StrikeForce Kitty","nvdec;status-playable","playable","2020-07-29 16:22:15.000" -"","Struggling","status-playable","playable","2020-10-15 20:37:03.000" -"0100AF000B4AE000","Stunt Kite Party","nvdec;status-playable","playable","2021-01-25 17:16:56.000" -"0100E6400BCE8000","Sub Level Zero: Redux","status-playable","playable","2022-09-16 12:30:03.000" -"","Subarashiki Kono Sekai -Final Remix-","services;slow;status-ingame","ingame","2020-02-10 16:21:51.000" -"010001400E474000","Subdivision Infinity DX","UE4;crash;status-boots","boots","2021-03-03 14:26:46.000" -"0100EDA00D866000","Submerged","status-playable;nvdec;UE4;vulkan-backend-bug","playable","2022-08-16 15:17:01.000" -"0100429011144000","Subnautica","status-playable;vulkan-backend-bug","playable","2022-11-04 13:07:29.000" -"010014C011146000","Subnautica Below Zero","status-playable","playable","2022-12-23 14:15:13.000" -"0100BF9012AC6000","Suguru Nature","crash;status-ingame","ingame","2021-07-29 11:36:27.000" -"01005CD00A2A2000","Suicide Guy","status-playable","playable","2021-01-26 13:13:54.000" -"0100DE000C2E4000","Suicide Guy: Sleepin' Deeply","status-ingame;Needs More Attention","ingame","2022-09-20 23:45:25.000" -"01003D50126A4000","Sumire","status-playable","playable","2022-11-12 13:40:43.000" -"01004E500DB9E000","Summer Sweetheart","status-playable;nvdec","playable","2022-09-16 12:51:46.000" -"0100A130109B2000","Summer in Mara","nvdec;status-playable","playable","2021-03-06 14:10:38.000" -"0100BFE014476000","Sunblaze","status-playable","playable","2022-11-12 13:59:23.000" -"01002D3007962000","Sundered: Eldritch Edition","gpu;status-ingame","ingame","2021-06-07 11:46:00.000" -"0100F7000464A000","Super Beat Sports","status-playable;ldn-untested","playable","2022-08-16 16:05:50.000" -"","Super Blood Hockey","status-playable","playable","2020-12-11 20:01:41.000" -"01007AD00013E000","Super Bomberman R","status-playable;nvdec;online-broken;ldn-works","playable","2022-08-16 19:19:14.000" -"0100D9B00DB5E000","Super Cane Magic ZERO","status-playable","playable","2022-09-12 15:33:46.000" -"010065F004E5E000","Super Chariot","status-playable","playable","2021-06-03 13:19:01.000" -"010023100B19A000","Super Dungeon Tactics","status-playable","playable","2022-10-06 17:40:40.000" -"010056800B534000","Super Inefficient Golf","status-playable;UE4","playable","2022-08-17 15:53:45.000" -"","Super Jumpy Ball","status-playable","playable","2020-07-04 18:40:36.000" -"0100196009998000","Super Kickers League","status-playable","playable","2021-01-26 13:36:48.000" -"01003FB00C5A8000","Super Kirby Clash","status-playable;ldn-works","playable","2024-07-30 18:21:55.000" -"010000D00F81A000","Super Korotama","status-playable","playable","2021-06-06 19:06:22.000" -"01003E300FCAE000","Super Loop Drive","status-playable;nvdec;UE4","playable","2022-09-22 10:58:05.000" -"010049900F546000","Super Mario 3D All-Stars","services-horizon;slow;status-ingame;vulkan;amd-vendor-bug","ingame","2024-05-07 02:38:16.000" -"010028600EBDA000","Super Mario 3D World + Bowser's Fury","status-playable;ldn-works","playable","2024-07-31 10:45:37.000" -"054507E0B7552000","Super Mario 64","status-ingame;homebrew","ingame","2024-03-20 16:57:27.000" -"0100277011F1A000","Super Mario Bros. 35","status-menus;online-broken","menus","2022-08-07 16:27:25.000" -"010015100B514000","Super Mario Bros. Wonder","status-playable;amd-vendor-bug","playable","2024-09-06 13:21:21.000" -"01009B90006DC000","Super Mario Maker 2","status-playable;online-broken;ldn-broken","playable","2024-08-25 11:05:19.000" -"0100000000010000","Super Mario Odyssey","status-playable;nvdec;intel-vendor-bug;mac-bug","playable","2024-08-25 01:32:34.000" -"010036B0034E4000","Super Mario Party","gpu;status-ingame;Needs Update;ldn-works","ingame","2024-06-21 05:10:16.000" -"0100BC0018138000","Super Mario RPG","gpu;audio;status-ingame;nvdec","ingame","2024-06-19 17:43:42.000" -"0000000000000000","Super Mario World","status-boots;homebrew","boots","2024-06-13 01:40:31.000" -"","Super Meat Boy","services;status-playable","playable","2020-04-02 23:10:07.000" -"01009C200D60E000","Super Meat Boy Forever","gpu;status-boots","boots","2021-04-26 14:25:39.000" -"","Super Mega Space Blaster Special Turbo","online;status-playable","playable","2020-08-06 12:13:25.000" -"010031F019294000","Super Monkey Ball Banana Rumble","status-playable","playable","2024-06-28 10:39:18.000" -"0100B2A00E1E0000","Super Monkey Ball: Banana Blitz HD","status-playable;online-broken","playable","2022-09-16 13:16:25.000" -"","Super Mutant Alien Assault","status-playable","playable","2020-06-07 23:32:45.000" -"01004D600AC14000","Super Neptunia RPG","status-playable;nvdec","playable","2022-08-17 16:38:52.000" -"","Super Nintendo Entertainment System - Nintendo Switch Online","status-playable","playable","2021-01-05 00:29:48.000" -"0100284007D6C000","Super One More Jump","status-playable","playable","2022-08-17 16:47:47.000" -"01001F90122B2000","Super Punch Patrol","status-playable","playable","2024-07-12 19:49:02.000" -"0100331005E8E000","Super Putty Squad","gpu;status-ingame;32-bit","ingame","2024-04-29 15:51:54.000" -"","Super Saurio Fly","nvdec;status-playable","playable","2020-08-06 13:12:14.000" -"","Super Skelemania","status-playable","playable","2020-06-07 22:59:50.000" -"01006A800016E000","Super Smash Bros. Ultimate","gpu;status-ingame;crash;nvdec;ldn-works;intel-vendor-bug","ingame","2024-09-14 23:05:21.000" -"0100D61012270000","Super Soccer Blast","gpu;status-ingame","ingame","2022-02-16 08:39:12.000" -"0100A9300A4AE000","Super Sportmatchen","status-playable","playable","2022-08-19 12:34:40.000" -"0100FB400F54E000","Super Street: Racer","status-playable;UE4","playable","2022-09-16 13:43:14.000" -"","Super Tennis Blast - 01000500DB50000","status-playable","playable","2022-08-19 16:20:48.000" -"0100C6800D770000","Super Toy Cars 2","gpu;regression;status-ingame","ingame","2021-03-02 20:15:15.000" -"010035B00B3F0000","Super Volley Blast","status-playable","playable","2022-08-19 18:14:40.000" -"0100630010252000","SuperEpic: The Entertainment War","status-playable","playable","2022-10-13 23:02:48.000" -"0100FF60051E2000","Superbeat: Xonic EX","status-ingame;crash;nvdec","ingame","2022-08-19 18:54:40.000" -"01001A500E8B4000","Superhot","status-playable","playable","2021-05-05 19:51:30.000" -"","Superliminal","status-playable","playable","2020-09-03 13:20:50.000" -"0100C01012654000","Supermarket Shriek","status-playable","playable","2022-10-13 23:19:20.000" -"0100A6E01201C000","Supraland","status-playable;nvdec;UE4;opengl-backend-bug","playable","2022-10-14 09:49:11.000" -"010029A00AEB0000","Survive! Mr. Cube","status-playable","playable","2022-10-20 14:44:47.000" -"","Sushi Striker: The Way of Sushido","nvdec;status-playable","playable","2020-06-26 20:49:11.000" -"0100D6D00EC2C000","Sweet Witches","status-playable;nvdec","playable","2022-10-20 14:56:37.000" -"010049D00C8B0000","Swimsanity!","status-menus;online","menus","2021-11-26 14:27:16.000" -"","Sword of the Guardian","status-playable","playable","2020-07-16 12:24:39.000" -"0100E4701355C000","Sword of the Necromancer","status-ingame;crash","ingame","2022-12-10 01:28:39.000" -"01004BB00421E000","Syberia 1 & 2","status-playable","playable","2021-12-24 12:06:25.000" -"010028C003FD6000","Syberia 2","gpu;status-ingame","ingame","2022-08-24 12:43:03.000" -"0100CBE004E6C000","Syberia 3","nvdec;status-playable","playable","2021-01-25 16:15:12.000" -"","Sydney Hunter and the Curse of the Mayan","status-playable","playable","2020-06-15 12:15:57.000" -"01009E700F448000","Synergia","status-playable","playable","2021-04-06 17:58:04.000" -"","TENGAI for Nintendo Switch","32-bit;status-playable","playable","2020-11-25 19:52:26.000" -"010070C00FB56000","TERROR SQUID","status-playable;online-broken","playable","2023-10-30 22:29:29.000" -"010043700EB68000","TERRORHYTHM (TRRT)","status-playable","playable","2021-02-27 13:18:14.000" -"","TETRA for Nintendo Switch","status-playable","playable","2020-06-26 20:49:55.000" -"010040600C5CE000","TETRIS 99","gpu;status-ingame;online-broken;ldn-untested","ingame","2024-05-02 16:36:41.000" -"01003b300e4aa000","THE GRISAIA TRILOGY","status-playable","playable","2021-01-31 15:53:59.000" -"0100AC800D022000","THE LAST REMNANT Remastered","status-playable;nvdec;UE4","playable","2023-02-09 17:24:44.000" -"01005E5013862000","THE LEGEND OF HEROES: ZERO NO KISEKI KAI [英雄傳說 零之軌跡:改]","status-nothing;crash","nothing","2021-09-30 14:41:07.000" -"01001FB00E386000","THE NINJA SAVIORS Return of the Warriors","online;status-playable","playable","2021-03-25 23:48:07.000" -"010024201834A000","THEATRHYTHM FINAL BAR LINE","status-playable","playable","2023-02-19 19:58:57.000" -"010081B01777C000","THEATRHYTHM FINAL BAR LINE","status-ingame;Incomplete","ingame","2024-08-05 14:24:55.000" -"","THOTH","status-playable","playable","2020-08-05 18:35:28.000" -"010074800741A000","TINY METAL","UE4;gpu;nvdec;status-ingame","ingame","2021-03-05 17:11:57.000" -"0100B5E011920000","TOHU","slow;status-playable","playable","2021-02-08 15:40:44.000" -"01003E500F962000","TOKYO DARK - REMEMBRANCE -","nvdec;status-playable","playable","2021-06-10 20:09:49.000" -"0100CC00102B4000","TONY HAWK'S™ PRO SKATER™ 1 + 2","gpu;status-ingame;Needs Update","ingame","2024-09-24 08:18:14.000" -"01007AF011732000","TORICKY-S","deadlock;status-menus","menus","2021-11-25 08:53:36.000" -"01005E500E528000","TRANSFORMERS: BATTLEGROUNDS","online;status-playable","playable","2021-06-17 18:08:19.000" -"0100CC80140F8000","TRIANGLE STRATEGY","gpu;status-ingame;Needs Update;UE4;vulkan-backend-bug","ingame","2024-09-25 20:48:37.000" -"","TT Isle of Man","nvdec;status-playable","playable","2020-06-22 12:25:13.000" -"010000400F582000","TT Isle of Man 2","gpu;status-ingame;nvdec;online-broken","ingame","2022-09-30 22:13:05.000" -"","TTV2","status-playable","playable","2020-11-27 13:21:36.000" -"","TY the Tasmanian Tiger","32-bit;crash;nvdec;status-menus","menus","2020-12-17 21:15:00.000" -"","Table Top Racing World Tour Nitro Edition","status-playable","playable","2020-04-05 23:21:30.000" -"01000F20083A8000","Tactical Mind","status-playable","playable","2021-01-25 18:05:00.000" -"","Tactical Mind 2","status-playable","playable","2020-07-01 23:11:07.000" -"0100E12013C1A000","Tactics Ogre Reborn","status-playable;vulkan-backend-bug","playable","2024-04-09 06:21:35.000" -"01007C7006AEE000","Tactics V: ""Obsidian Brigade","status-playable","playable","2021-02-28 15:09:42.000" -"0100346017304000","Taiko Risshiden V DX","status-nothing;crash","nothing","2022-06-06 16:25:31.000" -"","Taiko no Tatsujin Rhythmic Adventure Pack","status-playable","playable","2020-12-03 07:28:26.000" -"01002C000B552000","Taiko no Tatsujin: Drum 'n' Fun!","status-playable;online-broken;ldn-broken","playable","2023-05-20 15:10:12.000" -"0100BCA0135A0000","Taiko no Tatsujin: Rhythm Festival","status-playable","playable","2023-11-13 13:16:34.000" -"010040A00EA26000","Taimumari: Complete Edition","status-playable","playable","2022-12-06 13:34:49.000" -"0100F0C011A68000","Tales from the Borderlands","status-playable;nvdec","playable","2022-10-25 18:44:14.000" -"01002C0008E52000","Tales of Vesperia: Definitive Edition","status-playable","playable","2024-09-28 03:20:47.000" -"0100408007078000","Tales of the Tiny Planet","status-playable","playable","2021-01-25 15:47:41.000" -"010012800EE3E000","Tamashii","status-playable","playable","2021-06-10 15:26:20.000" -"010008A0128C4000","Tamiku","gpu;status-ingame","ingame","2021-06-15 20:06:55.000" -"","Tangledeep","crash;status-boots","boots","2021-01-05 04:08:41.000" -"01007DB010D2C000","TaniNani","crash;kernel;status-nothing","nothing","2021-04-08 03:06:44.000" -"","Tank Mechanic Simulator","status-playable","playable","2020-12-11 15:10:45.000" -"01007A601318C000","Tanuki Justice","status-playable;opengl","playable","2023-02-21 18:28:10.000" -"01004DF007564000","Tanzia","status-playable","playable","2021-06-07 11:10:25.000" -"","Task Force Kampas","status-playable","playable","2020-11-30 14:44:15.000" -"0100B76011DAA000","Taxi Chaos","slow;status-playable;online-broken;UE4","playable","2022-10-25 19:13:00.000" -"","Tcheco in the Castle of Lucio","status-playable","playable","2020-06-27 13:35:43.000" -"010092B0091D0000","Team Sonic Racing","status-playable;online-broken;ldn-works","playable","2024-02-05 15:05:27.000" -"0100FE701475A000","Teenage Mutant Ninja Turtles: Shredder's Revenge","deadlock;status-boots;crash","boots","2024-09-28 09:31:39.000" -"01005CF01E784000","Teenage Mutant Ninja Turtles: Splintered Fate","status-playable","playable","2024-08-03 13:50:42.000" -"0100FDB0154E4000","Teenage Mutant Ninja Turtles: The Cowabunga Collection","status-playable","playable","2024-01-22 19:39:04.000" -"","Telling Lies","status-playable","playable","2020-10-23 21:14:51.000" -"0100C8B012DEA000","Temtem","status-menus;online-broken","menus","2022-12-17 17:36:11.000" -"","Tennis","status-playable","playable","2020-06-01 20:50:36.000" -"0100092006814000","Tennis World Tour","status-playable;online-broken","playable","2022-08-22 14:27:10.000" -"0100950012F66000","Tennis World Tour 2","status-playable;online-broken","playable","2022-10-14 10:43:16.000" -"01002970080AA000","Tennis in the Face","status-playable","playable","2022-08-22 14:10:54.000" -"0100E46006708000","Terraria","status-playable;online-broken","playable","2022-09-12 16:14:57.000" -"0100FBC007EAE000","Tesla vs Lovecraft","status-playable","playable","2023-11-21 06:19:36.000" -"01005C8005F34000","Teslagrad","status-playable","playable","2021-02-23 14:41:02.000" -"01006F701507A000","Tested on Humans: Escape Room","status-playable","playable","2022-11-12 14:42:52.000" -"","Testra's Escape","status-playable","playable","2020-06-03 18:21:14.000" -"","Tetsumo Party","status-playable","playable","2020-06-09 22:39:55.000" -"01008ED0087A4000","The Adventure Pals","status-playable","playable","2022-08-22 14:48:52.000" -"","The Adventures of 00 Dilly","status-playable","playable","2020-12-30 19:32:29.000" -"","The Adventures of Elena Temple","status-playable","playable","2020-06-03 23:15:35.000" -"010045A00E038000","The Alliance Alive HD Remastered","nvdec;status-playable","playable","2021-03-07 15:43:45.000" -"","The Almost Gone","status-playable","playable","2020-07-05 12:33:07.000" -"0100CD500DDAE000","The Bard's Tale ARPG: Remastered and Resnarkled","gpu;status-ingame;nvdec;online-working","ingame","2024-07-18 12:52:01.000" -"01001E50141BC000","The Battle Cats Unite!","deadlock;status-ingame","ingame","2021-12-14 21:38:34.000" -"010089600E66A000","The Big Journey","status-playable","playable","2022-09-16 14:03:08.000" -"010021C000B6A000","The Binding of Isaac: Afterbirth+","status-playable","playable","2021-04-26 14:11:56.000" -"","The Bluecoats: North & South","nvdec;status-playable","playable","2020-12-10 21:22:29.000" -"010062500BFC0000","The Book of Unwritten Tales 2","status-playable","playable","2021-06-09 14:42:53.000" -"","The Bridge","status-playable","playable","2020-06-03 13:53:26.000" -"","The Bug Butcher","status-playable","playable","2020-06-03 12:02:04.000" -"01001B40086E2000","The Bunker","status-playable;nvdec","playable","2022-09-16 14:24:05.000" -"","The Caligula Effect: Overdose","UE4;gpu;status-ingame","ingame","2021-01-04 11:07:50.000" -"010066800E9F8000","The Childs Sight","status-playable","playable","2021-06-11 19:04:56.000" -"","The Coma 2: Vicious Sisters","gpu;status-ingame","ingame","2020-06-20 12:51:51.000" -"","The Coma: Recut","status-playable","playable","2020-06-03 15:11:23.000" -"01004170113D4000","The Complex","status-playable;nvdec","playable","2022-09-28 14:35:41.000" -"01000F20102AC000","The Copper Canyon Dixie Dash","status-playable;UE4","playable","2022-09-29 11:42:29.000" -"01000850037C0000","The Count Lucanor","status-playable;nvdec","playable","2022-08-22 15:26:37.000" -"0100EBA01548E000","The Cruel King and the Great Hero","gpu;services;status-ingame","ingame","2022-12-02 07:02:08.000" -"","The Dark Crystal","status-playable","playable","2020-08-11 13:43:41.000" -"","The Darkside Detective","status-playable","playable","2020-06-03 22:16:18.000" -"01000A10041EA000","The Elder Scrolls V: Skyrim","gpu;status-ingame;crash","ingame","2024-07-14 03:21:31.000" -"","The End is Nigh","status-playable","playable","2020-06-01 11:26:45.000" -"","The Escapists 2","nvdec;status-playable","playable","2020-09-24 12:31:31.000" -"01001B700BA7C000","The Escapists: Complete Edition","status-playable","playable","2021-02-24 17:50:31.000" -"0100C2E0129A6000","The Executioner","nvdec;status-playable","playable","2021-01-23 00:31:28.000" -"01006050114D4000","The Experiment: Escape Room","gpu;status-ingame","ingame","2022-09-30 13:20:35.000" -"0100B5900DFB2000","The Eyes of Ara","status-playable","playable","2022-09-16 14:44:06.000" -"","The Fall","gpu;status-ingame","ingame","2020-05-31 23:31:16.000" -"","The Fall Part 2: Unbound","status-playable","playable","2021-11-06 02:18:08.000" -"0100CDC00789E000","The Final Station","status-playable;nvdec","playable","2022-08-22 15:54:39.000" -"010098800A1E4000","The First Tree","status-playable","playable","2021-02-24 15:51:05.000" -"0100C38004DCC000","The Flame in the Flood: Complete Edition","gpu;status-ingame;nvdec;UE4","ingame","2022-08-22 16:23:49.000" -"","The Forbidden Arts - 01007700D4AC000","status-playable","playable","2021-01-26 16:26:24.000" -"01006350148DA000","The Gardener and the Wild Vines","gpu;status-ingame","ingame","2024-04-29 16:32:10.000" -"0100B13007A6A000","The Gardens Between","status-playable","playable","2021-01-29 16:16:53.000" -"010036E00FB20000","The Great Ace Attorney Chronicles","status-playable","playable","2023-06-22 21:26:29.000" -"","The Great Perhaps","status-playable","playable","2020-09-02 15:57:04.000" -"","The Hong Kong Massacre","crash;status-ingame","ingame","2021-01-21 12:06:56.000" -"","The House of Da Vinci","status-playable","playable","2021-01-05 14:17:19.000" -"","The House of Da Vinci 2","status-playable","playable","2020-10-23 20:47:17.000" -"01008940086E0000","The Infectious Madness of Doctor Dekker","status-playable;nvdec","playable","2022-08-22 16:45:01.000" -"","The Inner World","nvdec;status-playable","playable","2020-06-03 21:22:29.000" -"","The Inner World - The Last Wind Monk","nvdec;status-playable","playable","2020-11-16 13:09:40.000" -"0100AE5003EE6000","The Jackbox Party Pack","status-playable;online-working","playable","2023-05-28 09:28:40.000" -"010015D003EE4000","The Jackbox Party Pack 2","status-playable;online-working","playable","2022-08-22 18:23:40.000" -"0100CC80013D6000","The Jackbox Party Pack 3","slow;status-playable;online-working","playable","2022-08-22 18:41:06.000" -"0100E1F003EE8000","The Jackbox Party Pack 4","status-playable;online-working","playable","2022-08-22 18:56:34.000" -"010052C00B184000","The Journey Down: Chapter One","nvdec;status-playable","playable","2021-02-24 13:32:41.000" -"01006BC00B188000","The Journey Down: Chapter Three","nvdec;status-playable","playable","2021-02-24 13:45:27.000" -"","The Journey Down: Chapter Two","nvdec;status-playable","playable","2021-02-24 13:32:13.000" -"010020500BD98000","The King's Bird","status-playable","playable","2022-08-22 19:07:46.000" -"010031B00DB34000","The Knight & the Dragon","gpu;status-ingame","ingame","2023-08-14 10:31:43.000" -"0100A4400BE74000","The LEGO Movie 2 - Videogame","status-playable","playable","2023-03-01 11:23:37.000" -"01007FC00206E000","The LEGO NINJAGO Movie Video Game","status-nothing;crash","nothing","2022-08-22 19:12:53.000" -"","The Language of Love","Needs Update;crash;status-nothing","nothing","2020-12-03 17:54:00.000" -"010079C017F5E000","The Lara Croft Collection","services-horizon;deadlock;status-nothing","nothing","2024-07-12 22:45:51.000" -"0100449011506000","The Last Campfire","status-playable","playable","2022-10-20 16:44:19.000" -"0100AAD011592000","The Last Dead End","gpu;status-ingame;UE4","ingame","2022-10-20 16:59:44.000" -"","The Legend of Dark Witch","status-playable","playable","2020-07-12 15:18:33.000" -"01001920156C2000","The Legend of Heroes: Trails from Zero","gpu;status-ingame;mac-bug","ingame","2024-09-14 21:41:41.000" -"","The Legend of Heroes: Trails of Cold Steel III","status-playable","playable","2020-12-16 10:59:18.000" -"01009B101044C000","The Legend of Heroes: Trails of Cold Steel III Demo","demo;nvdec;status-playable","playable","2021-04-23 01:07:32.000" -"0100D3C010DE8000","The Legend of Heroes: Trails of Cold Steel IV","nvdec;status-playable","playable","2021-04-23 14:01:05.000" -"01008CF01BAAC000","The Legend of Zelda Echoes of Wisdom","status-playable;nvdec;ASTC;intel-vendor-bug","playable","2024-10-01 14:11:01.000" -"01007EF00011E000","The Legend of Zelda: Breath of the Wild","gpu;status-ingame;amd-vendor-bug;mac-bug","ingame","2024-09-23 19:35:46.000" -"0100509005AF2000","The Legend of Zelda: Breath of the Wild Demo","status-ingame;demo","ingame","2022-12-24 05:02:58.000" -"01006BB00C6F0000","The Legend of Zelda: Link's Awakening","gpu;status-ingame;nvdec;mac-bug","ingame","2023-08-09 17:37:40.000" -"01002DA013484000","The Legend of Zelda: Skyward Sword HD","gpu;status-ingame","ingame","2024-06-14 16:48:29.000" -"0100F2C0115B6000","The Legend of Zelda: Tears of the Kingdom","gpu;status-ingame;amd-vendor-bug;intel-vendor-bug;mac-bug","ingame","2024-08-24 12:38:30.000" -"010064B00B95C000","The Liar Princess and the Blind Prince","audio;slow;status-playable","playable","2020-06-08 21:23:28.000" -"0100735004898000","The Lion's Song","status-playable","playable","2021-06-09 15:07:16.000" -"0100A5000D590000","The Little Acre","nvdec;status-playable","playable","2021-03-02 20:22:27.000" -"01007A700A87C000","The Long Dark","status-playable","playable","2021-02-21 14:19:52.000" -"010052B003A38000","The Long Reach","nvdec;status-playable","playable","2021-02-24 14:09:48.000" -"","The Long Return","slow;status-playable","playable","2020-12-10 21:05:10.000" -"0100CE1004E72000","The Longest Five Minutes","gpu;status-boots","boots","2023-02-19 18:33:11.000" -"0100F3D0122C2000","The Longing","gpu;status-ingame","ingame","2022-11-12 15:00:58.000" -"010085A00C5E8000","The Lord of the Rings: Adventure Card Game","status-menus;online-broken","menus","2022-09-16 15:19:32.000" -"01008A000A404000","The Lost Child","nvdec;status-playable","playable","2021-02-23 15:44:20.000" -"0100BAB00A116000","The Low Road","status-playable","playable","2021-02-26 13:23:22.000" -"0100F1B00B456000","The MISSING: J.J. Macfield and the Island of Memories","status-playable","playable","2022-08-22 19:36:18.000" -"","The Mahjong","Needs Update;crash;services;status-nothing","nothing","2021-04-01 22:06:22.000" -"","The Messenger","status-playable","playable","2020-03-22 13:51:37.000" -"0100DEC00B2BC000","The Midnight Sanctuary","status-playable;nvdec;UE4;vulkan-backend-bug","playable","2022-10-03 17:17:32.000" -"010033300AC1A000","The Mooseman","status-playable","playable","2021-02-24 12:58:57.000" -"0100496004194000","The Mummy Demastered","status-playable","playable","2021-02-23 13:11:27.000" -"","The Mystery of the Hudson Case","status-playable","playable","2020-06-01 11:03:36.000" -"01000CF0084BC000","The Next Penelope","status-playable","playable","2021-01-29 16:26:11.000" -"0100B080184BC000","The Oregon Trail","gpu;status-ingame","ingame","2022-11-25 16:11:49.000" -"0100B0101265C000","The Otterman Empire","UE4;gpu;status-ingame","ingame","2021-06-17 12:27:15.000" -"01000BC01801A000","The Outbound Ghost","status-nothing","nothing","2024-03-02 17:10:58.000" -"0100626011656000","The Outer Worlds","gpu;status-ingame;nvdec;UE4;vulkan-backend-bug;opengl-backend-bug","ingame","2022-10-03 17:55:32.000" -"","The Park","UE4;crash;gpu;status-ingame","ingame","2020-12-18 12:50:07.000" -"010050101127C000","The Persistence","nvdec;status-playable","playable","2021-06-06 19:15:40.000" -"0100CD300880E000","The Pinball Arcade","status-playable;online-broken","playable","2022-08-22 19:49:46.000" -"01006BD018B54000","The Plucky Squire","status-ingame;crash","ingame","2024-09-27 22:32:33.000" -"0100E6A00B960000","The Princess Guide","status-playable","playable","2021-02-24 14:23:34.000" -"010058A00BF1C000","The Raven Remastered","status-playable;nvdec","playable","2022-08-22 20:02:47.000" -"","The Red Strings Club","status-playable","playable","2020-06-01 10:51:18.000" -"010079400BEE0000","The Room","status-playable","playable","2021-04-14 18:57:05.000" -"010033100EE12000","The Ryuo's Work is Never Done!","status-playable","playable","2022-03-29 00:35:37.000" -"01002BA00C7CE000","The Savior's Gang","gpu;status-ingame;nvdec;UE4","ingame","2022-09-21 12:37:48.000" -"0100F3200E7CA000","The Settlers: New Allies","deadlock;status-nothing","nothing","2023-10-25 00:18:05.000" -"","The Sexy Brutale","status-playable","playable","2021-01-06 17:48:28.000" -"","The Shapeshifting Detective","nvdec;status-playable","playable","2021-01-10 13:10:49.000" -"010028D00BA1A000","The Sinking City","status-playable;nvdec;UE4","playable","2022-09-12 16:41:55.000" -"010041C00A68C000","The Spectrum Retreat","status-playable","playable","2022-10-03 18:52:40.000" -"010029300E5C4000","The Stanley Parable: Ultra Deluxe","gpu;status-ingame","ingame","2024-07-12 23:18:26.000" -"010007F00AF56000","The Station","status-playable","playable","2022-09-28 18:15:27.000" -"0100AA400A238000","The Stretchers","status-playable;nvdec;UE4","playable","2022-09-16 15:40:58.000" -"","The Survivalists","status-playable","playable","2020-10-27 15:51:13.000" -"010040D00B7CE000","The Swindle","status-playable;nvdec","playable","2022-08-22 20:53:52.000" -"","The Swords of Ditto","slow;status-ingame","ingame","2020-12-06 00:13:12.000" -"01009B300D76A000","The Tiny Bang Story","status-playable","playable","2021-03-05 15:39:05.000" -"0100C3300D8C4000","The Touryst","status-ingame;crash","ingame","2023-08-22 01:32:38.000" -"010047300EBA6000","The Tower of Beatrice","status-playable","playable","2022-09-12 16:51:42.000" -"010058000A576000","The Town of Light","gpu;status-playable","playable","2022-09-21 12:51:34.000" -"0100B0E0086F6000","The Trail: Frontier Challenge","slow;status-playable","playable","2022-08-23 15:10:51.000" -"0100EA100F516000","The Turing Test","status-playable;nvdec","playable","2022-09-21 13:24:07.000" -"010064E00ECBC000","The Unicorn Princess","status-playable","playable","2022-09-16 16:20:56.000" -"0100BCF00E970000","The Vanishing of Ethan Carter","UE4;status-playable","playable","2021-06-09 17:14:47.000" -"","The VideoKid","nvdec;status-playable","playable","2021-01-06 09:28:24.000" -"","The Voice","services;status-menus","menus","2020-07-28 20:48:49.000" -"010029200B6AA000","The Walking Dead","status-playable","playable","2021-06-04 13:10:56.000" -"010056E00B4F4000","The Walking Dead: A New Frontier","status-playable","playable","2022-09-21 13:40:48.000" -"","The Walking Dead: Season Two","status-playable","playable","2020-08-09 12:57:06.000" -"010060F00AA70000","The Walking Dead: The Final Season","status-playable;online-broken","playable","2022-08-23 17:22:32.000" -"","The Wanderer: Frankenstein's Creature","status-playable","playable","2020-07-11 12:49:51.000" -"01008B200FC6C000","The Wardrobe: Even Better Edition","status-playable","playable","2022-09-16 19:14:55.000" -"01003D100E9C6000","The Witcher 3: Wild Hunt","status-playable;nvdec;vulkan-backend-bug;amd-vendor-bug","playable","2024-02-22 12:21:51.000" -"0100B1300FF08000","The Wonderful 101: Remastered","slow;status-playable;nvdec","playable","2022-09-30 13:49:28.000" -"0100C1500B82E000","The World Ends With You -Final Remix-","status-playable;ldn-untested","playable","2022-07-09 01:11:21.000" -"0100E6200D56E000","The World Next Door","status-playable","playable","2022-09-21 14:15:23.000" -"010030700CBBC000","The friends of Ringo Ishikawa","status-playable","playable","2022-08-22 16:33:17.000" -"01005E9016BDE000","The movie The Quintessential Bride -Five Memories Spent with You-","status-playable","playable","2023-12-14 14:43:43.000" -"","Thea: The Awakening","status-playable","playable","2021-01-18 15:08:47.000" -"01001C2010D08000","They Bleed Pixels","gpu;status-ingame","ingame","2024-08-09 05:52:18.000" -"","They Came From the Sky","status-playable","playable","2020-06-12 16:38:19.000" -"0100CE400E34E000","Thief Simulator","status-playable","playable","2023-04-22 04:39:11.000" -"0100CE700F62A000","Thief of Thieves","status-nothing;crash;loader-allocator","nothing","2021-11-03 07:16:30.000" -"01009BD003B36000","Thimbleweed Park","status-playable","playable","2022-08-24 11:15:31.000" -"0100F2300A5DA000","Think of the Children","deadlock;status-menus","menus","2021-11-23 09:04:45.000" -"0100066004D68000","This Is the Police","status-playable","playable","2022-08-24 11:37:05.000" -"01004C100A04C000","This Is the Police 2","status-playable","playable","2022-08-24 11:49:17.000" -"","This Strange Realm of Mine","status-playable","playable","2020-08-28 12:07:24.000" -"0100A8700BC2A000","This War of Mine: Complete Edition","gpu;status-ingame;32-bit;nvdec","ingame","2022-08-24 12:00:44.000" -"0100E910103B4000","Thronebreaker: The Witcher Tales","nvdec;status-playable","playable","2021-06-03 16:40:15.000" -"01006F6002840000","Thumper","gpu;status-ingame","ingame","2024-08-12 02:41:07.000" -"01000AC011588000","Thy Sword","status-ingame;crash","ingame","2022-09-30 16:43:14.000" -"","Tick Tock: A Tale for Two","status-menus","menus","2020-07-14 14:49:38.000" -"0100B6D00C2DE000","Tied Together","nvdec;status-playable","playable","2021-04-10 14:03:46.000" -"","Timber Tennis Versus","online;status-playable","playable","2020-10-03 17:07:15.000" -"01004C500B698000","Time Carnage","status-playable","playable","2021-06-16 17:57:28.000" -"0100F770045CA000","Time Recoil","status-playable","playable","2022-08-24 12:44:03.000" -"0100DD300CF3A000","Timespinner","gpu;status-ingame","ingame","2022-08-09 09:39:11.000" -"0100393013A10000","Timothy and the Mysterious Forest","gpu;slow;status-ingame","ingame","2021-06-02 00:42:11.000" -"","Tin & Kuna","status-playable","playable","2020-11-17 12:16:12.000" -"","Tiny Gladiators","status-playable","playable","2020-12-14 00:09:43.000" -"010061A00AE64000","Tiny Hands Adventure","status-playable","playable","2022-08-24 16:07:48.000" -"01005D0011A40000","Tiny Racer","status-playable","playable","2022-10-07 11:13:03.000" -"010002401AE94000","Tiny Thor","gpu;status-ingame","ingame","2024-07-26 08:37:35.000" -"0100A73016576000","Tinykin","gpu;status-ingame","ingame","2023-06-18 12:12:24.000" -"0100FE801185E000","Titan Glory","status-boots","boots","2022-10-07 11:36:40.000" -"0100605008268000","Titan Quest","status-playable;nvdec;online-broken","playable","2022-08-19 21:54:15.000" -"","Titans Pinball","slow;status-playable","playable","2020-06-09 16:53:52.000" -"010019500DB1E000","Tlicolity Eyes - twinkle showtime -","gpu;status-boots","boots","2021-05-29 19:43:44.000" -"","To the Moon","status-playable","playable","2021-03-20 15:33:38.000" -"","Toast Time: Smash Up!","crash;services;status-menus","menus","2020-04-03 12:26:59.000" -"","Toby: The Secret Mine","nvdec;status-playable","playable","2021-01-06 09:22:33.000" -"","ToeJam & Earl: Back in the Groove","status-playable","playable","2021-01-06 22:56:58.000" -"","Toki","nvdec;status-playable","playable","2021-01-06 19:59:23.000" -"0100A9400C9C2000","Tokyo Mirage Sessions #FE Encore","32-bit;status-playable;nvdec","playable","2022-07-07 09:41:07.000" -"0100E2E00CB14000","Tokyo School Life","status-playable","playable","2022-09-16 20:25:54.000" -"010024601BB16000","Tomb Raider I-III Remastered","gpu;status-ingame;opengl","ingame","2024-09-27 12:32:04.000" -"0100D7F01E49C000","Tomba! Special Edition","services-horizon;status-nothing","nothing","2024-09-15 21:59:54.000" -"0100D400100F8000","Tonight we Riot","status-playable","playable","2021-02-26 15:55:09.000" -"","Tools Up!","crash;status-ingame","ingame","2020-07-21 12:58:17.000" -"01009EA00E2B8000","Toon War","status-playable","playable","2021-06-11 16:41:53.000" -"","Torchlight 2","status-playable","playable","2020-07-27 14:18:37.000" -"010075400DDB8000","Torchlight III","status-playable;nvdec;online-broken;UE4","playable","2022-10-14 22:20:17.000" -"","Torn Tales - Rebound Edition","status-playable","playable","2020-11-01 14:11:59.000" -"0100A64010D48000","Total Arcade Racing","status-playable","playable","2022-11-12 15:12:48.000" -"0100512010728000","Totally Reliable Delivery Service","status-playable;online-broken","playable","2024-09-27 19:32:22.000" -"01004E900B082000","Touhou Genso Wanderer RELOADED","gpu;status-ingame;nvdec","ingame","2022-08-25 11:57:36.000" -"","Touhou Kobuto V: Burst Battle","status-playable","playable","2021-01-11 15:28:58.000" -"","Touhou Spell Bubble","status-playable","playable","2020-10-18 11:43:43.000" -"","Tower of Babel","status-playable","playable","2021-01-06 17:05:15.000" -"","Tower of Time","gpu;nvdec;status-ingame","ingame","2020-07-03 11:11:12.000" -"","TowerFall","status-playable","playable","2020-05-16 18:58:07.000" -"","Towertale","status-playable","playable","2020-10-15 13:56:58.000" -"010049E00BA34000","Townsmen - A Kingdom Rebuilt","status-playable;nvdec","playable","2022-10-14 22:48:59.000" -"01009FF00A160000","Toy Stunt Bike: Tiptop's Trials","UE4;status-playable","playable","2021-04-10 13:56:34.000" -"0100192010F5A000","Tracks - Toybox Edition","UE4;crash;status-nothing","nothing","2021-02-08 15:19:18.000" -"0100BCA00843A000","Trailblazers","status-playable","playable","2021-03-02 20:40:49.000" -"010009F004E66000","Transcripted","status-playable","playable","2022-08-25 12:13:11.000" -"","Transistor","status-playable","playable","2020-10-22 11:28:02.000" -"0100A8D010BFA000","Travel Mosaics 2: Roman Holiday","status-playable","playable","2021-05-26 12:33:16.000" -"0100102010BFC000","Travel Mosaics 3: Tokyo Animated","status-playable","playable","2021-05-26 12:06:27.000" -"010096D010BFE000","Travel Mosaics 4: Adventures in Rio","status-playable","playable","2021-05-26 11:54:58.000" -"01004C4010C00000","Travel Mosaics 5: Waltzing Vienna","status-playable","playable","2021-05-26 11:49:35.000" -"0100D520119D6000","Travel Mosaics 6: Christmas Around the World","status-playable","playable","2021-05-26 00:52:47.000" -"","Travel Mosaics 7: Fantastic Berlin -","status-playable","playable","2021-05-22 18:37:34.000" -"01007DB00A226000","Travel Mosaics: A Paris Tour","status-playable","playable","2021-05-26 12:42:26.000" -"010011600C946000","Travis Strikes Again: No More Heroes","status-playable;nvdec;UE4","playable","2022-08-25 12:36:38.000" -"","Treadnauts","status-playable","playable","2021-01-10 14:57:41.000" -"01003E800A102000","Trials Rising","status-playable","playable","2024-02-11 01:36:39.000" -"0100D7800E9E0000","Trials of Mana","status-playable;UE4","playable","2022-09-30 21:50:37.000" -"0100E1D00FBDE000","Trials of Mana Demo","status-playable;nvdec;UE4;demo;vulkan-backend-bug","playable","2022-09-26 18:00:02.000" -"0100D9000A930000","Trine","ldn-untested;nvdec;status-playable","playable","2021-06-03 11:28:15.000" -"010064E00A932000","Trine 2","nvdec;status-playable","playable","2021-06-03 11:45:20.000" -"0100DEC00A934000","Trine 3: The Artifacts of Power","ldn-untested;online;status-playable","playable","2021-06-03 12:01:24.000" -"010055E00CA68000","Trine 4: The Nightmare Prince","gpu;status-nothing","nothing","2025-01-07 05:47:46.000" -"01002D7010A54000","Trinity Trigger","status-ingame;crash","ingame","2023-03-03 03:09:09.000" -"0100868013FFC000","Trivial Pursuit Live! 2","status-boots","boots","2022-12-19 00:04:33.000" -"0100F78002040000","Troll and I","gpu;nvdec;status-ingame","ingame","2021-06-04 16:58:50.000" -"","Trollhunters: Defenders of Arcadia","gpu;nvdec;status-ingame","ingame","2020-11-30 13:27:09.000" -"0100FBE0113CC000","Tropico 6","status-playable;nvdec;UE4","playable","2022-10-14 23:21:03.000" -"0100D06018DCA000","Trouble Witches Final! Episode 01: Daughters of Amalgam","status-playable","playable","2024-04-08 15:08:11.000" -"","Troubleshooter","UE4;crash;status-nothing","nothing","2020-10-04 13:46:50.000" -"","Trover Saves the Universe","UE4;crash;status-nothing","nothing","2020-10-03 10:25:27.000" -"0100E6300D448000","Truberbrook","status-playable","playable","2021-06-04 17:08:00.000" -"0100F2100AA5C000","Truck & Logistics Simulator","status-playable","playable","2021-06-11 13:29:08.000" -"0100CB50107BA000","Truck Driver","status-playable;online-broken","playable","2022-10-20 17:42:33.000" -"","True Fear: Forsaken Souls - Part 1","nvdec;status-playable","playable","2020-12-15 21:39:52.000" -"","Tumblestone","status-playable","playable","2021-01-07 17:49:20.000" -"010085500D5F6000","Turok","gpu;status-ingame","ingame","2021-06-04 13:16:24.000" -"0100CDC00D8D6000","Turok 2: Seeds of Evil","gpu;status-ingame;vulkan","ingame","2022-09-12 17:50:05.000" -"","Turrican Flashback - 01004B0130C8000","status-playable;audout","playable","2021-08-30 10:07:56.000" -"","TurtlePop: Journey to Freedom","status-playable","playable","2020-06-12 17:45:39.000" -"0100047009742000","Twin Robots: Ultimate Edition","status-playable;nvdec","playable","2022-08-25 14:24:03.000" -"010031200E044000","Two Point Hospital","status-ingame;crash;nvdec","ingame","2022-09-22 11:22:23.000" -"010073A00C4B2000","Tyd wag vir Niemand","status-playable","playable","2021-03-02 13:39:53.000" -"","Type:Rider","status-playable","playable","2021-01-06 13:12:55.000" -"","UBERMOSH:SANTICIDE","status-playable","playable","2020-11-27 15:05:01.000" -"01005AA00372A000","UNO","status-playable;nvdec;ldn-untested","playable","2022-07-28 14:49:47.000" -"","Ubongo - Deluxe Edition","status-playable","playable","2021-02-04 21:15:01.000" -"010079000B56C000","UglyDolls: An Imperfect Adventure","status-playable;nvdec;UE4","playable","2022-08-25 14:42:16.000" -"010048901295C000","Ultimate Fishing Simulator","status-playable","playable","2021-06-16 18:38:23.000" -"","Ultimate Racing 2D","status-playable","playable","2020-08-05 17:27:09.000" -"010045200A1C2000","Ultimate Runner","status-playable","playable","2022-08-29 12:52:40.000" -"01006B601117E000","Ultimate Ski Jumping 2020","online;status-playable","playable","2021-03-02 20:54:11.000" -"01002D4012222000","Ultra Hat Dimension","services;audio;status-menus","menus","2021-11-18 09:05:20.000" -"","Ultra Hyperball","status-playable","playable","2021-01-06 10:09:55.000" -"01007330027EE000","Ultra Street Fighter II: The Final Challengers","status-playable;ldn-untested","playable","2021-11-25 07:54:58.000" -"01006A300BA2C000","Umineko no Naku Koro ni Saku - うみねこのなく頃に咲 ~猫箱と夢想の交響曲~","status-playable;audout","playable","2023-05-04 17:25:23.000" -"","UnExplored - Unlocked Edition","status-playable","playable","2021-01-06 10:02:16.000" -"0100592005164000","Unbox: Newbie's Adventure","status-playable;UE4","playable","2022-08-29 13:12:56.000" -"01002D900C5E4000","Uncanny Valley","nvdec;status-playable","playable","2021-06-04 13:28:45.000" -"010076F011F54000","Undead and Beyond","status-playable;nvdec","playable","2022-10-04 09:11:18.000" -"01008F3013E4E000","Under Leaves","status-playable","playable","2021-05-22 18:13:58.000" -"010080B00AD66000","Undertale","status-playable","playable","2022-08-31 17:31:46.000" -"01008F80049C6000","Unepic","status-playable","playable","2024-01-15 17:03:00.000" -"","Unhatched","status-playable","playable","2020-12-11 12:11:09.000" -"010069401ADB8000","Unicorn Overlord","status-playable","playable","2024-09-27 14:04:32.000" -"","Unit 4","status-playable","playable","2020-12-16 18:54:13.000" -"","Unknown Fate","slow;status-ingame","ingame","2020-10-15 12:27:42.000" -"","Unlock the King","status-playable","playable","2020-09-01 13:58:27.000" -"0100A3E011CB0000","Unlock the King 2","status-playable","playable","2021-06-15 20:43:55.000" -"0100E5D00CC0C000","Unravel TWO","status-playable;nvdec","playable","2024-05-23 15:45:05.000" -"","Unruly Heroes","status-playable","playable","2021-01-07 18:09:31.000" -"0100B410138C0000","Unspottable","status-playable","playable","2022-10-25 19:28:49.000" -"","Untitled Goose Game","status-playable","playable","2020-09-26 13:18:06.000" -"0100E49013190000","Unto The End","gpu;status-ingame","ingame","2022-10-21 11:13:29.000" -"","Urban Flow","services;status-playable","playable","2020-07-05 12:51:47.000" -"010054F014016000","Urban Street Fighting","status-playable","playable","2021-02-20 19:16:36.000" -"01001B10068EC000","Urban Trial Playground","UE4;nvdec;online;status-playable","playable","2021-03-25 20:56:51.000" -"0100A2500EB92000","Urban Trial Tricky","status-playable;nvdec;UE4","playable","2022-12-06 13:07:56.000" -"01007C0003AEC000","Use Your Words","status-menus;nvdec;online-broken","menus","2022-08-29 17:22:10.000" -"0100D4300EBF8000","Uta no Prince-sama Amazing Aria & Sweet Serenade LOVE","status-nothing;crash;Needs More Attention;Needs Update","nothing","2022-02-09 08:57:44.000" -"010024200E00A000","Uta no☆Prince-sama♪ Repeat Love","status-playable;nvdec","playable","2022-12-09 09:21:51.000" -"","Utopia 9 - A Volatile Vacation","nvdec;status-playable","playable","2020-12-16 17:06:42.000" -"010064400B138000","V-Rally 4","gpu;nvdec;status-ingame","ingame","2021-06-07 19:37:31.000" -"0100A6700D66E000","VA-11 HALL-A","status-playable","playable","2021-02-26 15:05:34.000" -"010045C0109F2000","VARIABLE BARRICADE NS","status-playable;nvdec","playable","2022-02-26 15:50:13.000" -"0100FE200AF48000","VASARA Collection","nvdec;status-playable","playable","2021-02-28 15:26:10.000" -"0100C7C00AE6C000","VSR: Void Space Racing","status-playable","playable","2021-01-27 14:08:59.000" -"","Vaccine","nvdec;status-playable","playable","2021-01-06 01:02:07.000" -"010089700F30C000","Valfaris","status-playable","playable","2022-09-16 21:37:24.000" -"0100CAF00B744000","Valkyria Chronicles","status-ingame;32-bit;crash;nvdec","ingame","2022-11-23 20:03:32.000" -"01005C600AC68000","Valkyria Chronicles 4","audout;nvdec;status-playable","playable","2021-06-03 18:12:25.000" -"0100FBD00B91E000","Valkyria Chronicles 4 Demo","slow;status-ingame;demo","ingame","2022-08-29 20:39:07.000" -"0100E0E00B108000","Valley","status-playable;nvdec","playable","2022-09-28 19:27:58.000" -"010089A0197E4000","Vampire Survivors","status-ingame","ingame","2024-06-17 09:57:38.000" -"01000BD00CE64000","Vampyr","status-playable;nvdec;UE4","playable","2022-09-16 22:15:51.000" -"01007C500D650000","Vandals","status-playable","playable","2021-01-27 21:45:46.000" -"010030F00CA1E000","Vaporum","nvdec;status-playable","playable","2021-05-28 14:25:33.000" -"","Vasilis","status-playable","playable","2020-09-01 15:05:35.000" -"01009CD003A0A000","Vegas Party","status-playable","playable","2021-04-14 19:21:41.000" -"010098400E39E000","Vektor Wars","status-playable;online-broken;vulkan-backend-bug","playable","2022-10-04 09:23:46.000" -"01003A8018E60000","Vengeful Guardian: Moonrider","deadlock;status-boots","boots","2024-03-17 23:35:37.000" -"010095B00DBC8000","Venture Kid","crash;gpu;status-ingame","ingame","2021-04-18 16:33:17.000" -"","Vera Blanc: Full Moon","audio;status-playable","playable","2020-12-17 12:09:30.000" -"0100379013A62000","Very Very Valet","status-playable;nvdec","playable","2022-11-12 15:25:51.000" -"01006C8014DDA000","Very Very Valet Demo - 01006C8014DDA000","status-boots;crash;Needs Update;demo","boots","2022-11-12 15:26:13.000" -"010057B00712C000","Vesta","status-playable;nvdec","playable","2022-08-29 21:03:39.000" -"0100E81007A06000","Victor Vran Overkill Edition","gpu;deadlock;status-ingame;nvdec;opengl","ingame","2022-08-30 11:46:56.000" -"01005880063AA000","Violett","nvdec;status-playable","playable","2021-01-28 13:09:36.000" -"010037900CB1C000","Viviette","status-playable","playable","2021-06-11 15:33:40.000" -"0100D010113A8000","Void Bastards","status-playable","playable","2022-10-15 00:04:19.000" -"","Volgarr the Viking","status-playable","playable","2020-12-18 15:25:50.000" -"0100A7900E79C000","Volta-X","status-playable;online-broken","playable","2022-10-07 12:20:51.000" -"01004D8007368000","Vostok, Inc.","status-playable","playable","2021-01-27 17:43:59.000" -"0100B1E0100A4000","Voxel Galaxy","status-playable","playable","2022-09-28 22:45:02.000" -"0100AFA011068000","Voxel Pirates","status-playable","playable","2022-09-28 22:55:02.000" -"0100BFB00D1F4000","Voxel Sword","status-playable","playable","2022-08-30 14:57:27.000" -"01004E90028A2000","Vroom in the Night Sky","status-playable;Needs Update;vulkan-backend-bug","playable","2023-02-20 02:32:29.000" -"","VtM Coteries of New York","status-playable","playable","2020-10-04 14:55:22.000" -"","WARBORN","status-playable","playable","2020-06-25 12:36:47.000" -"0100E8500AD58000","WARRIORS OROCHI 4 ULTIMATE","status-playable;nvdec;online-broken","playable","2024-08-07 01:50:37.000" -"0100CFC00A1D8000","WILD GUNS Reloaded","status-playable","playable","2021-01-28 12:29:05.000" -"","WINDJAMMERS","online;status-playable","playable","2020-10-13 11:24:25.000" -"010087800DCEA000","WRC 8 FIA World Rally Championship","status-playable;nvdec","playable","2022-09-16 23:03:36.000" -"01001A0011798000","WRC 9 The Official Game","gpu;slow;status-ingame;nvdec","ingame","2022-10-25 19:47:39.000" -"010081700EDF4000","WWE 2K Battlegrounds","status-playable;nvdec;online-broken;UE4","playable","2022-10-07 12:44:40.000" -"010009800203E000","WWE 2K18","status-playable;nvdec","playable","2023-10-21 17:22:01.000" -"0100B130119D0000","Waifu Uncovered","status-ingame;crash","ingame","2023-02-27 01:17:46.000" -"","Wanba Warriors","status-playable","playable","2020-10-04 17:56:22.000" -"","Wanderjahr TryAgainOrWalkAway","status-playable","playable","2020-12-16 09:46:04.000" -"0100B27010436000","Wanderlust Travel Stories","status-playable","playable","2021-04-07 16:09:12.000" -"0100F8A00853C000","Wandersong","nvdec;status-playable","playable","2021-06-04 15:33:34.000" -"0100D67013910000","Wanna Survive","status-playable","playable","2022-11-12 21:15:43.000" -"01004FA01391A000","War Of Stealth - assassin","status-playable","playable","2021-05-22 17:34:38.000" -"010049500DE56000","War Tech Fighters","status-playable;nvdec","playable","2022-09-16 22:29:31.000" -"010084D00A134000","War Theatre","gpu;status-ingame","ingame","2021-06-07 19:42:45.000" -"0100B6B013B8A000","War Truck Simulator","status-playable","playable","2021-01-31 11:22:54.000" -"","War-Torn Dreams","crash;status-nothing","nothing","2020-10-21 11:36:16.000" -"01000F0002BB6000","WarGroove","status-playable;online-broken","playable","2022-08-31 10:30:45.000" -"010056901285A000","Wardogs: Red's Return","status-playable","playable","2022-11-13 15:29:01.000" -"0100C6000EEA8000","Warhammer 40,000: Mechanicus","nvdec;status-playable","playable","2021-06-13 10:46:38.000" -"0100E5600D7B2000","Warhammer 40,000: Space Wolf","status-playable;online-broken","playable","2022-09-20 21:11:20.000" -"010031201307A000","Warhammer Age of Sigmar: Storm Ground","status-playable;nvdec;online-broken;UE4","playable","2022-11-13 15:46:14.000" -"","Warhammer Quest 2","status-playable","playable","2020-08-04 15:28:03.000" -"0100563010E0C000","WarioWare: Get It Together!","gpu;status-ingame;opengl-backend-bug","ingame","2024-04-23 01:04:56.000" -"010045B018EC2000","Warioware: Move IT!","status-playable","playable","2023-11-14 00:23:51.000" -"","Warlocks 2: God Slayers","status-playable","playable","2020-12-16 17:36:50.000" -"","Warp Shift","nvdec;status-playable","playable","2020-12-15 14:48:48.000" -"","Warparty","nvdec;status-playable","playable","2021-01-27 18:26:32.000" -"010032700EAC4000","WarriOrb","UE4;status-playable","playable","2021-06-17 15:45:14.000" -"","Wartile Complete Edition","UE4;crash;gpu;status-menus","menus","2020-12-11 21:56:10.000" -"010039A00BC64000","Wasteland 2: Director's Cut","nvdec;status-playable","playable","2021-01-27 13:34:11.000" -"","Water Balloon Mania","status-playable","playable","2020-10-23 20:20:59.000" -"0100BA200C378000","Way of the Passive Fist","gpu;status-ingame","ingame","2021-02-26 21:07:06.000" -"","We should talk.","crash;status-nothing","nothing","2020-08-03 12:32:36.000" -"","Welcome to Hanwell","UE4;crash;status-boots","boots","2020-08-03 11:54:57.000" -"0100D7F010B94000","Welcome to Primrose Lake","status-playable","playable","2022-10-21 11:30:57.000" -"","Wenjia","status-playable","playable","2020-06-08 11:38:30.000" -"010031B00A4E8000","West of Loathing","status-playable","playable","2021-01-28 12:35:19.000" -"010038900DFE0000","What Remains of Edith Finch","slow;status-playable;UE4","playable","2022-08-31 19:57:59.000" -"010033600ADE6000","Wheel of Fortune [010033600ADE6000]","status-boots;crash;Needs More Attention;nvdec","boots","2023-11-12 20:29:24.000" -"0100DFC00405E000","Wheels of Aurelia","status-playable","playable","2021-01-27 21:59:25.000" -"010027D011C9C000","Where Angels Cry","gpu;status-ingame;nvdec","ingame","2022-09-30 22:24:47.000" -"0100FDB0092B4000","Where Are My Friends?","status-playable","playable","2022-09-21 14:39:26.000" -"","Where the Bees Make Honey","status-playable","playable","2020-07-15 12:40:49.000" -"","Whipsey and the Lost Atlas","status-playable","playable","2020-06-23 20:24:14.000" -"010015A00AF1E000","Whispering Willows","status-playable;nvdec","playable","2022-09-30 22:33:05.000" -"","Who Wants to Be a Millionaire?","crash;status-nothing","nothing","2020-12-11 20:22:42.000" -"0100C7800CA06000","Widget Satchel","status-playable","playable","2022-09-16 22:41:07.000" -"010071F00D65A000","Wilmot's Warehouse","audio;gpu;status-ingame","ingame","2021-06-02 17:24:32.000" -"010059900BA3C000","Windscape","status-playable","playable","2022-10-21 11:49:42.000" -"","Windstorm","UE4;gpu;nvdec;status-ingame","ingame","2020-12-22 13:17:48.000" -"0100D6800CEAC000","Windstorm - Ari's Arrival","UE4;status-playable","playable","2021-06-07 19:33:19.000" -"","Wing of Darkness - 010035B012F2000","status-playable;UE4","playable","2022-11-13 16:03:51.000" -"0100A4A015FF0000","Winter Games 2023","deadlock;status-menus","menus","2023-11-07 20:47:36.000" -"010012A017F18800","Witch On The Holy Night","status-playable","playable","2023-03-06 23:28:11.000" -"0100454012E32000","Witch Spring 3 Re:Fine -The Story of the Marionette Witch Eirudy-","status-ingame;crash","ingame","2021-08-08 11:56:18.000" -"01002FC00C6D0000","Witch Thief","status-playable","playable","2021-01-27 18:16:07.000" -"010061501904E000","Witch's Garden","gpu;status-ingame;crash;vulkan-backend-bug;opengl-backend-bug","ingame","2023-01-11 02:11:24.000" -"","Witcheye","status-playable","playable","2020-12-14 22:56:08.000" -"0100522007AAA000","Wizard of Legend","status-playable","playable","2021-06-07 12:20:46.000" -"","Wizards of Brandel","status-nothing","nothing","2020-10-14 15:52:33.000" -"0100C7600E77E000","Wizards: Wand of Epicosity","status-playable","playable","2022-10-07 12:32:06.000" -"01009040091E0000","Wolfenstein II The New Colossus","gpu;status-ingame","ingame","2024-04-05 05:39:46.000" -"01003BD00CAAE000","Wolfenstein: Youngblood","status-boots;online-broken","boots","2024-07-12 23:49:20.000" -"","Wonder Blade","status-playable","playable","2020-12-11 17:55:31.000" -"0100B49016FF0000","Wonder Boy Anniversary Collection","deadlock;status-nothing","nothing","2023-04-20 16:01:48.000" -"0100EB2012E36000","Wonder Boy Asha in Monster World [ ワンダーボーイ アーシャ・イン・モンスターワールド ]","status-nothing;crash","nothing","2021-11-03 08:45:06.000" -"0100A6300150C000","Wonder Boy: The Dragon's Trap","status-playable","playable","2021-06-25 04:53:21.000" -"0100F5D00C812000","Wondershot","status-playable","playable","2022-08-31 21:05:31.000" -"","Woodle Tree 2","gpu;slow;status-ingame","ingame","2020-06-04 18:44:00.000" -"0100288012966000","Woodsalt","status-playable","playable","2021-04-06 17:01:48.000" -"","Wordify","status-playable","playable","2020-10-03 09:01:07.000" -"","World Conqueror X","status-playable","playable","2020-12-22 16:10:29.000" -"01008E9007064000","World Neverland","status-playable","playable","2021-01-28 17:44:23.000" -"","World Soccer Pinball","status-playable","playable","2021-01-06 00:37:02.000" -"","World of Final Fantasy Maxima","status-playable","playable","2020-06-07 13:57:23.000" -"010009E001D90000","World of Goo","gpu;status-boots;32-bit;crash;regression","boots","2024-04-12 05:52:14.000" -"010061F01DB7C800","World of Goo 2","status-boots","boots","2024-08-08 22:52:49.000" -"","Worldend Syndrome","status-playable","playable","2021-01-03 14:16:32.000" -"010000301025A000","Worlds of Magic: Planar Conquest","status-playable","playable","2021-06-12 12:51:28.000" -"01009CD012CC0000","Worm Jazz","gpu;services;status-ingame;UE4;regression","ingame","2021-11-10 10:33:04.000" -"01001AE005166000","Worms W.M.D","gpu;status-boots;crash;nvdec;ldn-untested","boots","2023-09-16 21:42:59.000" -"010037500C4DE000","Worse Than Death","status-playable","playable","2021-06-11 16:05:40.000" -"01006F100EB16000","Woven","nvdec;status-playable","playable","2021-06-02 13:41:08.000" -"0100DC0012E48000","Wreckfest","status-playable","playable","2023-02-12 16:13:00.000" -"0100C5D00EDB8000","Wreckin' Ball Adventure","status-playable;UE4","playable","2022-09-12 18:56:28.000" -"010033700418A000","Wulverblade","nvdec;status-playable","playable","2021-01-27 22:29:05.000" -"01001C400482C000","Wunderling","audio;status-ingame;crash","ingame","2022-09-10 13:20:12.000" -"","Wurroom","status-playable","playable","2020-10-07 22:46:21.000" -"","X-Morph: Defense","status-playable","playable","2020-06-22 11:05:31.000" -"0100D0B00FB74000","XCOM 2 Collection","gpu;status-ingame;crash","ingame","2022-10-04 09:38:30.000" -"0100CC9015360000","XEL","gpu;status-ingame","ingame","2022-10-03 10:19:39.000" -"0100E95004038000","Xenoblade Chronicles 2","deadlock;status-ingame;amd-vendor-bug","ingame","2024-03-28 14:31:41.000" -"0100C9F009F7A000","Xenoblade Chronicles 2: Torna - The Golden Country","slow;status-playable;nvdec","playable","2023-01-28 16:47:28.000" -"010074F013262000","Xenoblade Chronicles 3","gpu;status-ingame;crash;nvdec;vulkan-backend-bug;amd-vendor-bug","ingame","2024-08-06 19:56:44.000" -"0100FF500E34A000","Xenoblade Chronicles Definitive Edition","status-playable;nvdec","playable","2024-05-04 20:12:41.000" -"010028600BA16000","Xenon Racer","status-playable;nvdec;UE4","playable","2022-08-31 22:05:30.000" -"010064200C324000","Xenon Valkyrie+","status-playable","playable","2021-06-07 20:25:53.000" -"0100928005BD2000","Xenoraid","status-playable","playable","2022-09-03 13:01:10.000" -"01005B5009364000","Xeodrifter","status-playable","playable","2022-09-03 13:18:39.000" -"","YGGDRA UNION We’ll Never Fight Alone","status-playable","playable","2020-04-03 02:20:47.000" -"0100634008266000","YIIK: A Postmodern RPG","status-playable","playable","2021-01-28 13:38:37.000" -"010037D00DBDC000","YU-NO: A GIRL WHO CHANTS LOVE AT THE BOUND OF THIS WORLD.","nvdec;status-playable","playable","2021-01-26 17:03:52.000" -"01006FB00DB02000","Yaga","status-playable;nvdec","playable","2022-09-16 23:17:17.000" -"","YesterMorrow","crash;status-ingame","ingame","2020-12-17 17:15:25.000" -"","Yet Another Zombie Defense HD","status-playable","playable","2021-01-06 00:18:39.000" -"0100C0000CEEA000","Yo kai watch 1 for Nintendo Switch","gpu;status-ingame;opengl","ingame","2024-05-28 11:11:49.000" -"010086C00AF7C000","Yo-Kai Watch 4++","status-playable","playable","2024-06-18 20:21:44.000" -"010002D00632E000","Yoku's Island Express","status-playable;nvdec","playable","2022-09-03 13:59:02.000" -"0100F47016F26000","Yomawari 3","status-playable","playable","2022-05-10 08:26:51.000" -"010012F00B6F2000","Yomawari: The Long Night Collection","status-playable","playable","2022-09-03 14:36:59.000" -"0100CC600ABB2000","Yonder: The Cloud Catcher Chronicles","status-playable","playable","2021-01-28 14:06:25.000" -"0100BE50042F6000","Yono and the Celestial Elephants","status-playable","playable","2021-01-28 18:23:58.000" -"0100F110029C8000","Yooka-Laylee","status-playable","playable","2021-01-28 14:21:45.000" -"010022F00DA66000","Yooka-Laylee and the Impossible Lair","status-playable","playable","2021-03-05 17:32:21.000" -"01006000040C2000","Yoshi's Crafted World","gpu;status-ingame;audout","ingame","2021-08-30 13:25:51.000" -"","Yoshi's Crafted World Demo Version","gpu;status-boots;status-ingame","boots","2020-12-16 14:57:40.000" -"","Yoshiwara Higanbana Kuon no Chigiri","nvdec;status-playable","playable","2020-10-17 19:14:46.000" -"01003A400C3DA800","YouTube","status-playable","playable","2024-06-08 05:24:10.000" -"00100A7700CCAA40","Youtubers Life00","status-playable;nvdec","playable","2022-09-03 14:56:19.000" -"0100E390124D8000","Ys IX: Monstrum Nox","status-playable","playable","2022-06-12 04:14:42.000" -"0100F90010882000","Ys Origin","status-playable;nvdec","playable","2024-04-17 05:07:33.000" -"01007F200B0C0000","Ys VIII: Lacrimosa of Dana","status-playable;nvdec","playable","2023-08-05 09:26:41.000" -"010022400BE5A000","Yu-Gi-Oh! Legacy of the Duelist: Link Evolution!","status-playable","playable","2024-09-27 21:48:43.000" -"01002D60188DE000","Yu-Gi-Oh! Rush Duel: Dawn of the Battle Royale!! Let's Go! Go Rush!!","status-ingame;crash","ingame","2023-03-17 01:54:01.000" -"0100B56011502000","Yumeutsutsu Re:After","status-playable","playable","2022-11-20 16:09:06.000" -"","Yunohana Spring! - Mellow Times -","audio;crash;status-menus","menus","2020-09-27 19:27:40.000" -"","Yuppie Psycho: Executive Edition","crash;status-ingame","ingame","2020-12-11 10:37:06.000" -"0100FC900963E000","Yuri","status-playable","playable","2021-06-11 13:08:50.000" -"","ZERO GUNNER 2","status-playable","playable","2021-01-04 20:17:14.000" -"","ZOMBIE GOLD RUSH","online;status-playable","playable","2020-09-24 12:56:08.000" -"010092400A678000","Zaccaria Pinball","status-playable;online-broken","playable","2022-09-03 15:44:28.000" -"","Zarvot - 0100E7900C40000","status-playable","playable","2021-01-28 13:51:36.000" -"","ZenChess","status-playable","playable","2020-07-01 22:28:27.000" -"","Zenge","status-playable","playable","2020-10-22 13:23:57.000" -"0100057011E50000","Zengeon","services-horizon;status-boots;crash","boots","2024-04-29 15:43:07.000" -"0100AAC00E692000","Zenith","status-playable","playable","2022-09-17 09:57:02.000" -"01004B001058C000","Zero Strain","services;status-menus;UE4","menus","2021-11-10 07:48:32.000" -"","Zettai kaikyu gakuen","gpu;nvdec;status-ingame","ingame","2020-08-25 15:15:54.000" -"0100D7B013DD0000","Ziggy The Chaser","status-playable","playable","2021-02-04 20:34:27.000" -"010086700EF16000","ZikSquare","gpu;status-ingame","ingame","2021-11-06 02:02:48.000" -"010069C0123D8000","Zoids Wild Blast Unleashed","status-playable;nvdec","playable","2022-10-15 11:26:59.000" -"","Zombie Army Trilogy","ldn-untested;online;status-playable","playable","2020-12-16 12:02:28.000" -"","Zombie Driver","nvdec;status-playable","playable","2020-12-14 23:15:10.000" -"","Zombie's Cool","status-playable","playable","2020-12-17 12:41:26.000" -"01000E5800D32C00","Zombieland: Double Tap - Road Trip0","status-playable","playable","2022-09-17 10:08:45.000" -"","Zombillie","status-playable","playable","2020-07-23 17:42:23.000" -"01001EE00A6B0000","Zotrix: Solar Division","status-playable","playable","2021-06-07 20:34:05.000" -"0100194010422000","bayala - the game","status-playable","playable","2022-10-04 14:09:25.000" -"","de Blob 2","nvdec;status-playable","playable","2021-01-06 13:00:16.000" -"0100BCA016636000","eBaseball Powerful Pro Yakyuu 2022","gpu;services-horizon;status-nothing;crash","nothing","2024-05-26 23:07:19.000" -"","eCrossminton","status-playable","playable","2020-07-11 18:24:27.000" -"010095E01581C000","even if TEMPEST","gpu;status-ingame","ingame","2023-06-22 23:50:25.000" -"","fault - milestone one","nvdec;status-playable","playable","2021-03-24 10:41:49.000" -"","n Verlore Verstand","slow;status-ingame","ingame","2020-12-10 18:00:28.000" -"01009A500E3DA000","n Verlore Verstand - Demo","status-playable","playable","2021-02-09 00:13:32.000" -"01008AE019614000","nOS new Operating System","status-playable","playable","2023-03-22 16:49:08.000" -"0000000000000000","nx-hbmenu","status-boots;Needs Update;homebrew","boots","2024-04-06 22:05:32.000" -"","nxquake2","services;status-nothing;crash;homebrew","nothing","2022-08-04 23:14:04.000" -"010074000BE8E000","oOo: Ascension","status-playable","playable","2021-01-25 14:13:34.000" -"","planetarian HD ~the reverie of a little planet~","status-playable","playable","2020-10-17 20:26:20.000" -"01005CD015986000","rRootage Reloaded [01005CD015986000]","status-playable","playable","2022-08-05 23:20:18.000" -"","realMyst: Masterpiece Edition","nvdec;status-playable","playable","2020-11-30 15:25:42.000" -"0100858010DC4000","the StoryTale","status-playable","playable","2022-09-03 13:00:25.000" -"0100FF7010E7E000","void* tRrLM(); //Void Terrarium","gpu;status-ingame;Needs Update;regression","ingame","2023-02-10 01:13:25.000" -"010078D0175EE000","void* tRrLM2(); //Void Terrarium 2","status-playable","playable","2023-12-21 11:00:41.000" -"","この世の果てで恋を唄う少女YU-NO","audio;status-ingame","ingame","2021-01-22 07:00:16.000" -"","スーパーファミコン Nintendo Switch Online","slow;status-ingame","ingame","2020-03-14 05:48:38.000" -"01000BB01CB8A000","トラブル・マギア ~訳アリ少女は未来を勝ち取るために異国の魔法学校へ留学します~(Trouble Magia ~Wakeari Shoujo wa Mirai o Kachitoru Tame ni Ikoku no Mahou Gakkou e Ryuugaku Shimasu~)","status-nothing","nothing","2024-09-28 07:03:14.000" -"010065500B218000","メモリーズオフ - Innocent Fille","status-playable","playable","2022-12-02 17:36:48.000" -"010032400E700000","二ノ国 白き聖灰の女王","services;status-menus;32-bit","menus","2023-04-16 17:11:06.000" -"0100F3100DA46000","初音ミク Project DIVA MEGA39's","audio;status-playable;loader-allocator","playable","2022-07-29 11:45:52.000" -"0100BF401AF9C000","御伽活劇 豆狸のバケル ~オラクル祭太郎の祭難!!~ (Otogi Katsugeki Mameda no Bakeru Oracle Saitarou no Sainan!!)","slow;status-playable","playable","2023-12-31 14:37:17.000" -"0100AFA01750C000","死神と少女/Shinigami to Shoujo","gpu;status-ingame;Incomplete","ingame","2024-03-22 01:06:45.000" -"01001BA01EBFC000","燃えよ! 乙女道士 ~華遊恋語~ (Moeyo! Otome Doushi Kayu Koigatari)","services-horizon;status-nothing","nothing","2024-09-28 12:22:55.000" -"0100936018EB4000","牧場物語 Welcome!ワンダフルライフ","status-ingame;crash","ingame","2023-04-25 19:43:52.000" -"01009FB016286000","索尼克:起源 / Sonic Origins","status-ingame;crash","ingame","2024-06-02 07:20:15.000" -"0100F4401940A000","超探偵事件簿 レインコード (Master Detective Archives: Rain Code)","status-ingame;crash","ingame","2024-02-12 20:58:31.000" -"010064801a01c000","超次元ゲイム ネプテューヌ GameMaker R:Evolution","status-nothing;crash","nothing","2023-10-30 22:37:40.000" -"010005501E68C000","逆转检察官1&2 御剑精选集 (Ace Attorney Investigations Collection)","status-playable","playable","2024-09-19 16:38:05.000" -"010020D01B890000","逆转裁判四五六 王泥喜精选集 (Apollo Justice: Ace Attorney Trilogy)","status-playable","playable","2024-06-21 21:54:27.000" -"0100309016E7A000","鬼滅之刃:火之神血風譚 / Demon Slayer -Kimetsu no Yaiba- The Hinokami Chronicles","status-playable;UE4","playable","2024-08-08 04:51:49.000" +010099F00EF3E000,"-KLAUS-",nvdec;status-playable,playable,2020-06-27 13:27:30.000 +0100BA9014A02000,".hack//G.U. Last Recode",deadlock;status-boots,boots,2022-03-12 19:15:47.000 +01001E500F7FC000,"#Funtime",status-playable,playable,2020-12-10 16:54:35.000 +01000E50134A4000,"#Halloween, Super Puzzles Dream",nvdec;status-playable,playable,2020-12-10 20:43:58.000 +01004D100C510000,"#KillAllZombies",slow;status-playable,playable,2020-12-16 01:50:25.000 +0100325012C12000,"#NoLimitFantasy, Super Puzzles Dream",nvdec;status-playable,playable,2020-12-12 17:21:32.000 +01005D400E5C8000,"#RaceDieRun",status-playable,playable,2020-07-04 20:23:16.000 +01003DB011AE8000,"#womenUp, Super Puzzles Dream",status-playable,playable,2020-12-12 16:57:25.000 +0100D87012A14000,"#womenUp, Super Puzzles Dream Demo",nvdec;status-playable,playable,2021-02-09 00:03:31.000 +01000320000CC000,"1-2-Switch",services;status-playable,playable,2022-02-18 14:44:03.000 +01004D1007926000,"10 Second Run Returns",gpu;status-ingame,ingame,2022-07-17 13:06:18.000 +0100DC000A472000,"10 Second Run RETURNS Demo",gpu;status-ingame,ingame,2021-02-09 00:17:18.000 +0100D82015774000,"112 Operator",status-playable;nvdec,playable,2022-11-13 22:42:50.000 +010051E012302000,"112th Seed",status-playable,playable,2020-10-03 10:32:38.000 +01007F600D1B8000,"12 is Better Than 6",status-playable,playable,2021-02-22 16:10:12.000 +0100B1A010014000,"12 Labours of Hercules II: The Cretan Bull",cpu;status-nothing;32-bit;crash,nothing,2022-12-07 13:43:10.000 +0100A840047C2000,"12 orbits",status-playable,playable,2020-05-28 16:13:26.000 +01003FC01670C000,"13 Sentinels Aegis Rim",slow;status-ingame,ingame,2024-06-10 20:33:38.000 +0100C54015002000,"13 Sentinels Aegis Rim Demo",status-playable;demo,playable,2022-04-13 14:15:48.000 +01007E600EEE6000,"140",status-playable,playable,2020-08-05 20:01:33.000 +0100B94013D28000,"16-Bit Soccer Demo",status-playable,playable,2021-02-09 00:23:07.000 +01005CA0099AA000,"1917 - The Alien Invasion DX",status-playable,playable,2021-01-08 22:11:16.000 +0100829010F4A000,"1971 PROJECT HELIOS",status-playable,playable,2021-04-14 13:50:19.000 +0100D1000B18C000,"1979 Revolution: Black Friday",nvdec;status-playable,playable,2021-02-21 21:03:43.000 +01007BB00FC8A000,"198X",status-playable,playable,2020-08-07 13:24:38.000 +010075601150A000,"1993 Shenandoah",status-playable,playable,2020-10-24 13:55:42.000 +0100148012550000,"1993 Shenandoah Demo",status-playable,playable,2021-02-09 00:43:43.000 +010096500EA94000,"2048 Battles",status-playable,playable,2020-12-12 14:21:25.000 +010024C0067C4000,"2064: Read Only Memories INTEGRAL",deadlock;status-menus,menus,2020-05-28 16:53:58.000 +0100749009844000,"20XX",gpu;status-ingame,ingame,2023-08-14 09:41:44.000 +01007550131EE000,"2urvive",status-playable,playable,2022-11-17 13:49:37.000 +0100E20012886000,"2weistein – The Curse of the Red Dragon",status-playable;nvdec;UE4,playable,2022-11-18 14:47:07.000 +0100DAC013D0A000,"30 in 1 game collection vol. 2",status-playable;online-broken,playable,2022-10-15 17:22:27.000 +010056D00E234000,"30-in-1 Game Collection",status-playable;online-broken,playable,2022-10-15 17:47:09.000 +0100FB5010D2E000,"3000th Duel",status-playable,playable,2022-09-21 17:12:08.000 +01003670066DE000,"36 Fragments of Midnight",status-playable,playable,2020-05-28 15:12:59.000 +0100AF400C4CE000,"39 Days to Mars",status-playable,playable,2021-02-21 22:12:46.000 +010010C013F2A000,"3D Arcade Fishing",status-playable,playable,2022-10-25 21:50:51.000 +,"3D MiniGolf",status-playable,playable,2021-01-06 09:22:11.000 +,"4x4 Dirt Track",status-playable,playable,2020-12-12 21:41:42.000 +010010100FF14000,"60 Parsecs!",status-playable,playable,2022-09-17 11:01:17.000 +0100969005E98000,"60 Seconds!",services;status-ingame,ingame,2021-11-30 01:04:14.000 +,"6180 the moon",status-playable,playable,2020-05-28 15:39:24.000 +,"64",status-playable,playable,2020-12-12 21:31:58.000 +,"7 Billion Humans",32-bit;status-playable,playable,2020-12-17 21:04:58.000 +,"7th Sector",nvdec;status-playable,playable,2020-08-10 14:22:14.000 +,"8-BIT ADVENTURE STEINS;GATE",audio;status-ingame,ingame,2020-01-12 15:05:06.000 +,"80 Days",status-playable,playable,2020-06-22 21:43:01.000 +,"80's OVERDRIVE",status-playable,playable,2020-10-16 14:33:32.000 +,"88 Heroes",status-playable,playable,2020-05-28 14:13:02.000 +,"9 Monkeys of Shaolin",UE4;gpu;slow;status-ingame,ingame,2020-11-17 11:58:43.000 +0100C5F012E3E000,"9 Monkeys of Shaolin Demo",UE4;gpu;nvdec;status-ingame,ingame,2021-02-09 01:03:30.000 +,"911 Operator Deluxe Edition",status-playable,playable,2020-07-14 13:57:44.000 +,"99Vidas",online;status-playable,playable,2020-10-29 13:00:40.000 +010023500C2F0000,"99Vidas Demo",status-playable,playable,2021-02-09 12:51:31.000 +,"9th Dawn III",status-playable,playable,2020-12-12 22:27:27.000 +010096A00CC80000,"A Ch'ti Bundle",status-playable;nvdec,playable,2022-10-04 12:48:44.000 +,"A Dark Room",gpu;status-ingame,ingame,2020-12-14 16:14:28.000 +0100582012B90000,"A Duel Hand Disaster Trackher: DEMO",crash;demo;nvdec;status-ingame,ingame,2021-03-24 18:45:27.000 +010026B006802000,"A Duel Hand Disaster: Trackher",status-playable;nvdec;online-working,playable,2022-09-04 14:24:55.000 +,"A Frog Game",status-playable,playable,2020-12-14 16:09:53.000 +010056E00853A000,"A Hat In Time",status-playable,playable,2024-06-25 19:52:44.000 +01009E1011EC4000,"A HERO AND A GARDEN",status-playable,playable,2022-12-05 16:37:47.000 +01005EF00CFDA000,"A Knight's Quest",status-playable;UE4,playable,2022-09-12 20:44:20.000 +01008DD006C52000,"A magical high school girl",status-playable,playable,2022-07-19 14:40:50.000 +,"A Short Hike",status-playable,playable,2020-10-15 00:19:58.000 +,"A Sound Plan",crash;status-boots,boots,2020-12-14 16:46:21.000 +01007DD011C4A000,"A Summer with the Shiba Inu",status-playable,playable,2021-06-10 20:51:16.000 +0100A3E010E56000,"A-Train: All Aboard! Tourism",nvdec;status-playable,playable,2021-04-06 17:48:19.000 +010097A00CC0A000,"Aaero",status-playable;nvdec,playable,2022-07-19 14:49:55.000 +,"Aborigenus",status-playable,playable,2020-08-05 19:47:24.000 +,"Absolute Drift",status-playable,playable,2020-12-10 14:02:44.000 +010047F012BE2000,"Abyss of The Sacrifice",status-playable;nvdec,playable,2022-10-21 13:56:28.000 +0100C1300BBC6000,"ABZU",status-playable;UE4,playable,2022-07-19 15:02:52.000 +01003C400871E000,"ACA NEOGEO 2020 SUPER BASEBALL",online;status-playable,playable,2021-04-12 13:23:51.000 +0100FC000AFC6000,"ACA NEOGEO 3 COUNT BOUT",online;status-playable,playable,2021-04-12 13:16:42.000 +0100AC40038F4000,"ACA NEOGEO AERO FIGHTERS 2",online;status-playable,playable,2021-04-08 15:44:09.000 +0100B91008780000,"ACA NEOGEO AERO FIGHTERS 3",online;status-playable,playable,2021-04-12 13:11:17.000 +0100B4800AFBA000,"ACA NEOGEO AGGRESSORS OF DARK KOMBAT",online;status-playable,playable,2021-04-01 22:48:01.000 +01003FE00A2F6000,"ACA NEOGEO BASEBALL STARS PROFESSIONAL",online;status-playable,playable,2021-04-01 21:23:05.000 +,"ACA NEOGEO BLAZING STAR",crash;services;status-menus,menus,2020-05-26 17:29:02.000 +0100D2400AFB0000,"ACA NEOGEO CROSSED SWORDS",online;status-playable,playable,2021-04-01 20:42:59.000 +0100EE6002B48000,"ACA NEOGEO FATAL FURY",online;status-playable,playable,2021-04-01 20:36:23.000 +,"ACA NEOGEO FOOTBALL FRENZY",status-playable,playable,2021-03-29 20:12:12.000 +0100CB2001DB8000,"ACA NEOGEO GAROU: MARK OF THE WOLVES",online;status-playable,playable,2021-04-01 20:31:10.000 +01005D700A2F8000,"ACA NEOGEO GHOST PILOTS",online;status-playable,playable,2021-04-01 20:26:45.000 +01000D10038E6000,"ACA NEOGEO LAST RESORT",online;status-playable,playable,2021-04-01 19:51:22.000 +,"ACA NEOGEO LEAGUE BOWLING",crash;services;status-menus,menus,2020-05-26 17:11:04.000 +,"ACA NEOGEO MAGICAL DROP II",crash;services;status-menus,menus,2020-05-26 16:48:24.000 +01007920038F6000,"ACA NEOGEO MAGICIAN LORD",online;status-playable,playable,2021-04-01 19:33:26.000 +0100EBE002B3E000,"ACA NEOGEO METAL SLUG",status-playable,playable,2021-02-21 13:56:48.000 +010086300486E000,"ACA NEOGEO METAL SLUG 2",online;status-playable,playable,2021-04-01 19:25:52.000 +,"ACA NEOGEO METAL SLUG 3",crash;services;status-menus,menus,2020-05-26 16:32:45.000 +01009CE00AFAE000,"ACA NEOGEO METAL SLUG 4",online;status-playable,playable,2021-04-01 18:12:18.000 +,"ACA NEOGEO Metal Slug X",crash;services;status-menus,menus,2020-05-26 14:07:20.000 +010038F00AFA0000,"ACA NEOGEO Money Puzzle Exchanger",online;status-playable,playable,2021-04-01 17:59:56.000 +01002E70032E8000,"ACA NEOGEO NEO TURF MASTERS",status-playable,playable,2021-02-21 15:12:01.000 +010052A00A306000,"ACA NEOGEO NINJA COMBAT",status-playable,playable,2021-03-29 21:17:28.000 +01007E800AFB6000,"ACA NEOGEO NINJA COMMANDO",online;status-playable,playable,2021-04-01 17:28:18.000 +01003A5001DBA000,"ACA NEOGEO OVER TOP",status-playable,playable,2021-02-21 13:16:25.000 +010088500878C000,"ACA NEOGEO REAL BOUT FATAL FURY SPECIAL",online;status-playable,playable,2021-04-01 17:18:27.000 +01005C9002B42000,"ACA NEOGEO SAMURAI SHODOWN",online;status-playable,playable,2021-04-01 17:11:35.000 +010047F001DBC000,"ACA NEOGEO SAMURAI SHODOWN IV",online;status-playable,playable,2021-04-12 12:58:54.000 +010049F00AFE8000,"ACA NEOGEO SAMURAI SHODOWN SPECIAL V",online;status-playable,playable,2021-04-10 18:07:13.000 +01009B300872A000,"ACA NEOGEO SENGOKU 2",online;status-playable,playable,2021-04-10 17:36:44.000 +01008D000877C000,"ACA NEOGEO SENGOKU 3",online;status-playable,playable,2021-04-10 16:11:53.000 +,"ACA NEOGEO SHOCK TROOPERS",crash;services;status-menus,menus,2020-05-26 15:29:34.000 +01007D1004DBA000,"ACA NEOGEO SPIN MASTER",online;status-playable,playable,2021-04-10 15:50:19.000 +010055A00A300000,"ACA NEOGEO SUPER SIDEKICKS 2",online;status-playable,playable,2021-04-10 16:05:58.000 +0100A4D00A308000,"ACA NEOGEO SUPER SIDEKICKS 3: THE NEXT GLORY",online;status-playable,playable,2021-04-10 15:39:22.000 +,"ACA NEOGEO THE KING OF FIGHTERS '94",crash;services;status-menus,menus,2020-05-26 15:03:44.000 +01009DC001DB6000,"ACA NEOGEO THE KING OF FIGHTERS '95",status-playable,playable,2021-03-29 20:27:35.000 +01006F0004FB4000,"ACA NEOGEO THE KING OF FIGHTERS '96",online;status-playable,playable,2021-04-10 14:49:10.000 +0100170008728000,"ACA NEOGEO THE KING OF FIGHTERS '97",online;status-playable,playable,2021-04-10 14:43:27.000 +,"ACA NEOGEO THE KING OF FIGHTERS '98",crash;services;status-menus,menus,2020-05-26 14:54:20.000 +0100583001DCA000,"ACA NEOGEO THE KING OF FIGHTERS '99",online;status-playable,playable,2021-04-10 14:36:56.000 +0100B97002B44000,"ACA NEOGEO THE KING OF FIGHTERS 2000",online;status-playable,playable,2021-04-10 15:24:35.000 +010048200AFC2000,"ACA NEOGEO THE KING OF FIGHTERS 2001",online;status-playable,playable,2021-04-10 15:16:23.000 +0100CFD00AFDE000,"ACA NEOGEO THE KING OF FIGHTERS 2002",online;status-playable,playable,2021-04-10 15:01:55.000 +0100EF100AFE6000,"ACA NEOGEO THE KING OF FIGHTERS 2003",online;status-playable,playable,2021-04-10 14:54:31.000 +0100699008792000,"ACA NEOGEO THE LAST BLADE 2",online;status-playable,playable,2021-04-10 14:31:54.000 +0100F7F00AFA2000,"ACA NEOGEO THE SUPER SPY",online;status-playable,playable,2021-04-10 14:26:33.000 +0100CEF001DC0000,"ACA NEOGEO WAKU WAKU 7",online;status-playable,playable,2021-04-10 14:20:52.000 +,"ACA NEOGEO WORLD HEROES PERFECT",crash;services;status-menus,menus,2020-05-26 14:14:36.000 +,"ACA NEOGEO ZUPAPA!",online;status-playable,playable,2021-03-25 20:07:33.000 +0100A9900CB5C000,"Access Denied",status-playable,playable,2022-07-19 15:25:10.000 +01007C50132C8000,"Ace Angler: Fishing Spirits",status-menus;crash,menus,2023-03-03 03:21:39.000 +010033401E68E000,"Ace Attorney Investigations Collection DEMO",status-playable,playable,2024-09-07 06:16:42.000 +010039301B7E0000,"Ace Combat 7 - Skies Unknown Deluxe Edition",gpu;status-ingame;UE4,ingame,2024-09-27 14:31:43.000 +0100FF1004D56000,"Ace of Seafood",status-playable,playable,2022-07-19 15:32:25.000 +,"Aces of the Luftwaffe Squadron",nvdec;slow;status-playable,playable,2020-05-27 12:29:42.000 +010054300D822000,"Aces of the Luftwaffe Squadron Demo",nvdec;status-playable,playable,2021-02-09 13:12:28.000 +0100DBC0081A4000,"ACORN Tactics",status-playable,playable,2021-02-22 12:57:40.000 +,"Across the Grooves",status-playable,playable,2020-06-27 12:29:51.000 +,"Acthung! Cthulhu Tactics",status-playable,playable,2020-12-14 18:40:27.000 +010039A010DA0000,"Active Neurons",status-playable,playable,2021-01-27 21:31:21.000 +01000D1011EF0000,"Active Neurons 2",status-playable,playable,2022-10-07 16:21:42.000 +010031C0122B0000,"Active Neurons 2 Demo",status-playable,playable,2021-02-09 13:40:21.000 +0100EE1013E12000,"Active Neurons 3",status-playable,playable,2021-03-24 12:20:20.000 +,"Actual Sunlight",gpu;status-ingame,ingame,2020-12-14 17:18:41.000 +0100C0C0040E4000,"Adam's Venture: Origins",status-playable,playable,2021-03-04 18:43:57.000 +,"Adrenaline Rush - Miami Drive",status-playable,playable,2020-12-12 22:49:50.000 +0100300012F2A000,"Advance Wars 1+2: Re-Boot Camp",status-playable,playable,2024-01-30 18:19:44.000 +,"Adventure Llama",status-playable,playable,2020-12-14 19:32:24.000 +,"Adventure Pinball Bundle",slow;status-playable,playable,2020-12-14 20:31:53.000 +01003B400A00A000,"Adventures of Bertram Fiddle: Episode 1: A Dreadly Business",status-playable;nvdec,playable,2022-09-17 11:07:56.000 +,"Adventures of Chris",status-playable,playable,2020-12-12 23:00:02.000 +0100A0A0136E8000,"Adventures of Chris Demo",status-playable,playable,2021-02-09 13:49:21.000 +,"Adventures of Pip",nvdec;status-playable,playable,2020-12-12 22:11:55.000 +01008C901266E000,"ADVERSE",UE4;status-playable,playable,2021-04-26 14:32:51.000 +010064500AF72000,"Aegis Defenders Demo",status-playable,playable,2021-02-09 14:04:17.000 +01008E6006502000,"Aegis Defenders0",status-playable,playable,2021-02-22 13:29:33.000 +,"Aeolis Tournament",online;status-playable,playable,2020-12-12 22:02:14.000 +01006710122CE000,"Aeolis Tournament Demo",nvdec;status-playable,playable,2021-02-09 14:22:30.000 +0100A0400DDE0000,"AER - Memories of Old",nvdec;status-playable,playable,2021-03-05 18:43:43.000 +0100E9B013D4A000,"Aerial Knight's Never Yield",status-playable,playable,2022-10-25 22:05:00.000 +0100875011D0C000,"Aery",status-playable,playable,2021-03-07 15:25:51.000 +010018E012914000,"Aery - Sky Castle",status-playable,playable,2022-10-21 17:58:49.000 +0100DF8014056000,"Aery - A Journey Beyond Time",status-playable,playable,2021-04-05 15:52:25.000 +0100087012810000,"Aery - Broken Memories",status-playable,playable,2022-10-04 13:11:52.000 +,"Aery - Calm Mind - 0100A801539000",status-playable,playable,2022-11-14 14:26:58.000 +0100B1C00949A000,"AeternoBlade Demo Version",nvdec;status-playable,playable,2021-02-09 14:39:26.000 +,"AeternoBlade I",nvdec;status-playable,playable,2020-12-14 20:06:48.000 +01009D100EA28000,"AeternoBlade II",status-playable;online-broken;UE4;vulkan-backend-bug,playable,2022-09-12 21:11:18.000 +,"AeternoBlade II Demo Version",gpu;nvdec;status-ingame,ingame,2021-02-09 15:10:19.000 +01001B400D334000,"AFL Evolution 2",slow;status-playable;online-broken;UE4,playable,2022-12-07 12:45:56.000 +0100DB100BBCE000,"Afterparty",status-playable,playable,2022-09-22 12:23:19.000 +,"Agatha Christie - The ABC Murders",status-playable,playable,2020-10-27 17:08:23.000 +,"Agatha Knife",status-playable,playable,2020-05-28 12:37:58.000 +,"Agent A: A puzzle in disguise",status-playable,playable,2020-11-16 22:53:27.000 +01008E8012C02000,"Agent A: A puzzle in disguise (Demo)",status-playable,playable,2021-02-09 18:30:41.000 +0100E4700E040000,"Ages of Mages: the Last Keeper",status-playable;vulkan-backend-bug,playable,2022-10-04 11:44:05.000 +010004D00A9C0000,"Aggelos",gpu;status-ingame,ingame,2023-02-19 13:24:23.000 +,"Agony",UE4;crash;status-boots,boots,2020-07-10 16:21:18.000 +010089B00D09C000,"Ai: the Somnium Files",status-playable;nvdec,playable,2022-09-04 14:45:06.000 +0100C1700FB34000,"AI: The Somnium Files Demo",nvdec;status-playable,playable,2021-02-10 12:52:33.000 +,"Ailment",status-playable,playable,2020-12-12 22:30:41.000 +,"Air Conflicts: Pacific Carriers",status-playable,playable,2021-01-04 10:52:50.000 +,"Air Hockey",status-playable,playable,2020-05-28 16:44:37.000 +,"Air Missions: HIND",status-playable,playable,2020-12-13 10:16:45.000 +0100E95011FDC000,"Aircraft Evolution",nvdec;status-playable,playable,2021-06-14 13:30:18.000 +010010A00DB72000,"Airfield Mania Demo",services;status-boots;demo,boots,2022-04-10 03:43:02.000 +01003DD00BFEE000,"AIRHEART - Tales of Broken Wings",status-playable,playable,2021-02-26 15:20:27.000 +01007F100DE52000,"Akane",status-playable;nvdec,playable,2022-07-21 00:12:18.000 +,"Akash Path of the Five",gpu;nvdec;status-ingame,ingame,2020-12-14 22:33:12.000 +010053100B0EA000,"Akihabara - Feel the Rhythm Remixed",status-playable,playable,2021-02-22 14:39:35.000 +,"Akuarium",slow;status-playable,playable,2020-12-12 23:43:36.000 +,"Akuto",status-playable,playable,2020-08-04 19:43:27.000 +0100F5400AB6C000,"Alchemic Jousts",gpu;status-ingame,ingame,2022-12-08 15:06:28.000 +,"Alchemist's Castle",status-playable,playable,2020-12-12 23:54:08.000 +,"Alder's Blood",status-playable,playable,2020-08-28 15:15:23.000 +01004510110C4000,"Alder's Blood Prologue",crash;status-ingame,ingame,2021-02-09 19:03:03.000 +01000E000EEF8000,"Aldred - Knight of Honor",services;status-playable,playable,2021-11-30 01:49:17.000 +010025D01221A000,"Alex Kidd in Miracle World DX",status-playable,playable,2022-11-14 15:01:34.000 +,"Alien Cruise",status-playable,playable,2020-08-12 13:56:05.000 +,"Alien Escape",status-playable,playable,2020-06-03 23:43:18.000 +010075D00E8BA000,"Alien: Isolation",status-playable;nvdec;vulkan-backend-bug,playable,2022-09-17 11:48:41.000 +0100CBD012FB6000,"All Walls Must Fall",status-playable;UE4,playable,2022-10-15 19:16:30.000 +0100C1F00A9B8000,"All-Star Fruit Racing",status-playable;nvdec;UE4,playable,2022-07-21 00:35:37.000 +0100AC501122A000,"Alluris",gpu;status-ingame;UE4,ingame,2023-08-02 23:13:50.000 +,"Almightree the Last Dreamer",slow;status-playable,playable,2020-12-15 13:59:03.000 +,"Along the Edge",status-playable,playable,2020-11-18 15:00:07.000 +,"Alpaca Ball: Allstars",nvdec;status-playable,playable,2020-12-11 12:26:29.000 +,"ALPHA",status-playable,playable,2020-12-13 12:17:45.000 +,"Alphaset by POWGI",status-playable,playable,2020-12-15 15:15:15.000 +,"Alt-Frequencies",status-playable,playable,2020-12-15 19:01:33.000 +,"Alteric",status-playable,playable,2020-11-08 13:53:22.000 +,"Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz",status-playable,playable,2020-08-31 14:17:42.000 +0100A8A00D27E000,"Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz Trial version",status-playable,playable,2021-02-10 13:33:59.000 +010045201487C000,"Aluna: Sentinel of the Shards",status-playable;nvdec,playable,2022-10-25 22:17:03.000 +,"Alwa's Awakening",status-playable,playable,2020-10-13 11:52:01.000 +,"Alwa's Legacy",status-playable,playable,2020-12-13 13:00:57.000 +,"American Fugitive",nvdec;status-playable,playable,2021-01-04 20:45:11.000 +010089D00A3FA000,"American Ninja Warrior: Challenge",nvdec;status-playable,playable,2021-06-09 13:11:17.000 +01003CC00D0BE000,"Amnesia: Collection",status-playable,playable,2022-10-04 13:36:15.000 +010041D00DEB2000,"Amoeba Battle - Microscopic RTS Action",status-playable,playable,2021-05-06 13:33:41.000 +010046500C8D2000,"Among the Sleep - Enhanced Edition",nvdec;status-playable,playable,2021-06-03 15:06:25.000 +0100B0C013912000,"Among Us",status-menus;online;ldn-broken,menus,2021-09-22 15:20:17.000 +010050900E1C6000,"Anarcute",status-playable,playable,2021-02-22 13:17:59.000 +01009EE0111CC000,"Ancestors Legacy",status-playable;nvdec;UE4,playable,2022-10-01 12:25:36.000 +,"Ancient Rush 2",UE4;crash;status-menus,menus,2020-07-14 14:58:47.000 +0100AE000AEBC000,"Angels of Death",nvdec;status-playable,playable,2021-02-22 14:17:15.000 +010001E00A5F6000,"AngerForce: Reloaded for Nintendo Switch",status-playable,playable,2022-07-21 10:37:17.000 +0100F3500D05E000,"Angry Bunnies: Colossal Carrot Crusade",status-playable;online-broken,playable,2022-09-04 14:53:26.000 +,"Angry Video Game Nerd I & II Deluxe",crash;status-ingame,ingame,2020-12-12 23:59:54.000 +01007A400B3F8000,"Anima Gate of Memories: The Nameless Chronicles",status-playable,playable,2021-06-14 14:33:06.000 +010033F00B3FA000,"Anima: Arcane Edition",nvdec;status-playable,playable,2021-01-26 16:55:51.000 +0100706005B6A000,"Anima: Gate of Memories",nvdec;status-playable,playable,2021-06-16 18:13:18.000 +0100F38011CFE000,"Animal Crossing New Horizons Island Transfer Tool",services;status-ingame;Needs Update;Incomplete,ingame,2022-12-07 13:51:19.000 +01006F8002326000,"Animal Crossing: New Horizons",gpu;status-ingame;crash;nvdec;online-broken;ldn-works;mac-bug,ingame,2024-09-23 13:31:49.000 +,"Animal Fight Club",gpu;status-ingame,ingame,2020-12-13 13:13:33.000 +,"Animal Fun for Toddlers and Kids",services;status-boots,boots,2020-12-15 16:45:29.000 +,"Animal Hunter Z",status-playable,playable,2020-12-13 12:50:35.000 +010033C0121DC000,"Animal Pairs - Matching & Concentration Game for Toddlers & Kids",services;status-boots,boots,2021-11-29 23:43:14.000 +010065B009B3A000,"Animal Rivals Switch",status-playable,playable,2021-02-22 14:02:42.000 +0100EFE009424000,"Animal Super Squad",UE4;status-playable,playable,2021-04-23 20:50:50.000 +,"Animal Up",status-playable,playable,2020-12-13 15:39:02.000 +010020D01AD24000,"ANIMAL WELL",status-playable,playable,2024-05-22 18:01:49.000 +,"Animals for Toddlers",services;status-boots,boots,2020-12-15 17:27:27.000 +,"Animated Jigsaws Collection",nvdec;status-playable,playable,2020-12-15 15:58:34.000 +0100A1900B5B8000,"Animated Jigsaws: Beautiful Japanese Scenery DEMO",nvdec;status-playable,playable,2021-02-10 13:49:56.000 +,"Anime Studio Story",status-playable,playable,2020-12-15 18:14:05.000 +01002B300EB86000,"Anime Studio Story Demo",status-playable,playable,2021-02-10 14:50:39.000 +,"ANIMUS",status-playable,playable,2020-12-13 15:11:47.000 +0100E5A00FD38000,"Animus: Harbinger",status-playable,playable,2022-09-13 22:09:20.000 +,"Ankh Guardian - Treasure of the Demon's Temple",status-playable,playable,2020-12-13 15:55:49.000 +,"Anode",status-playable,playable,2020-12-15 17:18:58.000 +0100CB9018F5A000,"Another Code: Recollection",gpu;status-ingame;crash,ingame,2024-09-06 05:58:52.000 +,"Another Sight",UE4;gpu;nvdec;status-ingame,ingame,2020-12-03 16:49:59.000 +01003C300AAAE000,"Another World",slow;status-playable,playable,2022-07-21 10:42:38.000 +01000FD00DF78000,"AnShi",status-playable;nvdec;UE4,playable,2022-10-21 19:37:01.000 +010054C00D842000,"Anthill",services;status-menus;nvdec,menus,2021-11-18 09:25:25.000 +0100596011E20000,"Anti-Hero Bundle",status-playable;nvdec,playable,2022-10-21 20:10:30.000 +,"Antiquia Lost",status-playable,playable,2020-05-28 11:57:32.000 +,"Antventor",nvdec;status-playable,playable,2020-12-15 20:09:27.000 +0100FA100620C000,"Ao no Kanata no Four Rhythm",status-playable,playable,2022-07-21 10:50:42.000 +010047000E9AA000,"AO Tennis 2",status-playable;online-broken,playable,2022-09-17 12:05:07.000 +0100990011866000,"Aokana - Four Rhythms Across the Blue",status-playable,playable,2022-10-04 13:50:26.000 +01005B100C268000,"Ape Out",status-playable,playable,2022-09-26 19:04:47.000 +010054500E6D4000,"APE OUT DEMO",status-playable,playable,2021-02-10 14:33:06.000 +,"Aperion Cyberstorm",status-playable,playable,2020-12-14 00:40:16.000 +01008CA00D71C000,"Aperion Cyberstorm Demo",status-playable,playable,2021-02-10 15:53:21.000 +,"Apocalipsis",deadlock;status-menus,menus,2020-05-27 12:56:37.000 +,"Apocryph",gpu;status-ingame,ingame,2020-12-13 23:24:10.000 +,"Apparition",nvdec;slow;status-ingame,ingame,2020-12-13 23:57:04.000 +0100AC10085CE000,"AQUA KITTY UDX",online;status-playable,playable,2021-04-12 15:34:11.000 +,"Aqua Lungers",crash;status-ingame,ingame,2020-12-14 11:25:57.000 +0100D0D00516A000,"Aqua Moto Racing Utopia",status-playable,playable,2021-02-21 21:21:00.000 +010071800BA74000,"Aragami: Shadow Edition",nvdec;status-playable,playable,2021-02-21 20:33:23.000 +0100C7D00E6A0000,"Arc of Alchemist",status-playable;nvdec,playable,2022-10-07 19:15:54.000 +0100BE80097FA000,"Arcade Archives 10-Yard Fight",online;status-playable,playable,2021-03-25 21:26:41.000 +01005DD00BE08000,"Arcade Archives ALPHA MISSION",online;status-playable,playable,2021-04-15 09:20:43.000 +010083800DC70000,"Arcade Archives ALPINE SKI",online;status-playable,playable,2021-04-15 09:28:46.000 +010014F001DE2000,"Arcade Archives ARGUS",online;status-playable,playable,2021-04-16 06:51:25.000 +010014F001DE2000,"Arcade Archives Armed F",online;status-playable,playable,2021-04-16 07:00:17.000 +0100BEC00C7A2000,"Arcade Archives ATHENA",online;status-playable,playable,2021-04-16 07:10:12.000 +0100426001DE4000,"Arcade Archives Atomic Robo-Kid",online;status-playable,playable,2021-04-16 07:20:29.000 +0100192009824000,"Arcade Archives BOMB JACK",online;status-playable,playable,2021-04-16 09:48:26.000 +010007A00980C000,"Arcade Archives City CONNECTION",online;status-playable,playable,2021-03-25 22:16:15.000 +0100EDC00E35A000,"Arcade Archives CLU CLU LAND",online;status-playable,playable,2021-04-16 10:00:42.000 +0100BB1001DD6000,"Arcade Archives CRAZY CLIMBER",online;status-playable,playable,2021-03-25 22:24:15.000 +,"Arcade Archives DONKEY KONG",Needs Update;crash;services;status-menus,menus,2021-03-24 18:18:43.000 +0100F25001DD0000,"Arcade Archives DOUBLE DRAGON",online;status-playable,playable,2021-03-25 22:44:34.000 +01009E3001DDE000,"Arcade Archives DOUBLE DRAGON II The Revenge",online;status-playable,playable,2021-04-12 16:05:29.000 +0100496006EC8000,"Arcade Archives FRONT LINE",online;status-playable,playable,2021-05-05 14:10:49.000 +01009A4008A30000,"Arcade Archives HEROIC EPISODE",online;status-playable,playable,2021-03-25 23:01:26.000 +01007D200D3FC000,"Arcade Archives ICE CLIMBER",online;status-playable,playable,2021-05-05 14:18:34.000 +010049400C7A8000,"Arcade Archives IKARI WARRIORS",online;status-playable,playable,2021-05-05 14:24:46.000 +01000DB00980A000,"Arcade Archives Ikki",online;status-playable,playable,2021-03-25 23:11:28.000 +010008300C978000,"Arcade Archives IMAGE FIGHT",online;status-playable,playable,2021-05-05 14:31:21.000 +010010B008A36000,"Arcade Archives Kid Niki Radical Ninja",audio;status-ingame;online,ingame,2022-07-21 11:02:04.000 +0100E7C001DE0000,"Arcade Archives Kid's Horehore Daisakusen",online;status-playable,playable,2021-04-12 16:21:29.000 +,"Arcade Archives LIFE FORCE",status-playable,playable,2020-09-04 13:26:25.000 +0100755004608000,"Arcade Archives MARIO BROS.",online;status-playable,playable,2021-03-26 11:31:32.000 +01000BE001DD8000,"Arcade Archives MOON CRESTA",online;status-playable,playable,2021-05-05 14:39:29.000 +01003000097FE000,"Arcade Archives MOON PATROL",online;status-playable,playable,2021-03-26 11:42:04.000 +01003EF00D3B4000,"Arcade Archives NINJA GAIDEN",audio;online;status-ingame,ingame,2021-04-12 16:27:53.000 +01002F300D2C6000,"Arcade Archives Ninja Spirit",online;status-playable,playable,2021-05-05 14:45:31.000 +,"Arcade Archives Ninja-Kid",online;status-playable,playable,2021-03-26 20:55:07.000 +,"Arcade Archives OMEGA FIGHTER",crash;services;status-menus,menus,2020-08-18 20:50:54.000 +,"Arcade Archives PLUS ALPHA",audio;status-ingame,ingame,2020-07-04 20:47:55.000 +0100A6E00D3F8000,"Arcade Archives POOYAN",online;status-playable,playable,2021-05-05 17:58:19.000 +01000D200C7A4000,"Arcade Archives PSYCHO SOLDIER",online;status-playable,playable,2021-05-05 18:02:19.000 +01001530097F8000,"Arcade Archives PUNCH-OUT!!",online;status-playable,playable,2021-03-25 22:10:55.000 +010081E001DD2000,"Arcade Archives Renegade",status-playable;online,playable,2022-07-21 11:45:40.000 +0100FBA00E35C000,"Arcade Archives ROAD FIGHTER",online;status-playable,playable,2021-05-05 18:09:17.000 +010060000BF7C000,"Arcade Archives ROUTE 16",online;status-playable,playable,2021-05-05 18:40:41.000 +0100C2D00981E000,"Arcade Archives RYGAR",online;status-playable,playable,2021-04-15 08:48:30.000 +01007A4009834000,"Arcade Archives Shusse Ozumo",online;status-playable,playable,2021-05-05 17:52:25.000 +010008F00B054000,"Arcade Archives Sky Skipper",online;status-playable,playable,2021-04-15 08:58:09.000 +01008C900982E000,"Arcade Archives Solomon's Key",online;status-playable,playable,2021-04-19 16:27:18.000 +010069F008A38000,"Arcade Archives STAR FORCE",online;status-playable,playable,2021-04-15 08:39:09.000 +,"Arcade Archives TERRA CRESTA",crash;services;status-menus,menus,2020-08-18 20:20:55.000 +0100348001DE6000,"Arcade Archives TERRA FORCE",online;status-playable,playable,2021-04-16 20:03:27.000 +0100DFD016B7A000,"Arcade Archives TETRIS THE GRAND MASTER",status-playable,playable,2024-06-23 01:50:29.000 +0100DC000983A000,"Arcade Archives THE NINJA WARRIORS",online;slow;status-ingame,ingame,2021-04-16 19:54:56.000 +0100AF300D2E8000,"Arcade Archives TIME PILOT",online;status-playable,playable,2021-04-16 19:22:31.000 +010029D006ED8000,"Arcade Archives Traverse USA",online;status-playable,playable,2021-04-15 08:11:06.000 +010042200BE0C000,"Arcade Archives URBAN CHAMPION",online;status-playable,playable,2021-04-16 10:20:03.000 +01004EC00E634000,"Arcade Archives VS. GRADIUS",online;status-playable,playable,2021-04-12 14:53:58.000 +,"Arcade Archives VS. SUPER MARIO BROS.",online;status-playable,playable,2021-04-08 14:48:11.000 +01001B000D8B6000,"Arcade Archives WILD WESTERN",online;status-playable,playable,2021-04-16 10:11:36.000 +010050000D6C4000,"Arcade Classics Anniversary Collection",status-playable,playable,2021-06-03 13:55:10.000 +,"ARCADE FUZZ",status-playable,playable,2020-08-15 12:37:36.000 +,"Arcade Spirits",status-playable,playable,2020-06-21 11:45:03.000 +0100E680149DC000,"Arcaea",status-playable,playable,2023-03-16 19:31:21.000 +0100E53013E1C000,"Arcanoid Breakout",status-playable,playable,2021-01-25 23:28:02.000 +,"Archaica: Path of LightInd",crash;status-nothing,nothing,2020-10-16 13:22:26.000 +,"Area 86",status-playable,playable,2020-12-16 16:45:52.000 +0100691013C46000,"ARIA CHRONICLE",status-playable,playable,2022-11-16 13:50:55.000 +0100D4A00B284000,"Ark: Survival Evolved",gpu;status-ingame;nvdec;online-broken;UE4;ldn-untested,ingame,2024-04-16 00:53:56.000 +,"Arkanoid vs Space Invaders",services;status-ingame,ingame,2021-01-21 12:50:30.000 +010069A010606000,"Arkham Horror: Mother's Embrace",nvdec;status-playable,playable,2021-04-19 15:40:55.000 +,"Armed 7 DX",status-playable,playable,2020-12-14 11:49:56.000 +,"Armello",nvdec;status-playable,playable,2021-01-07 11:43:26.000 +01009B500007C000,"ARMS",status-playable;ldn-works;LAN,playable,2024-08-28 07:49:24.000 +,"ARMS Demo",status-playable,playable,2021-02-10 16:30:13.000 +0100184011B32000,"Arrest of a stone Buddha",status-nothing;crash,nothing,2022-12-07 16:55:00.000 +,"Arrog",status-playable,playable,2020-12-16 17:20:50.000 +01008EC006BE2000,"Art of Balance",gpu;status-ingame;ldn-works,ingame,2022-07-21 17:13:57.000 +010062F00CAE2000,"Art of Balance DEMO",gpu;slow;status-ingame,ingame,2021-02-10 17:17:12.000 +01006AA013086000,"Art Sqool",status-playable;nvdec,playable,2022-10-16 20:42:37.000 +,"Artifact Adventure Gaiden DX",status-playable,playable,2020-12-16 17:49:25.000 +0100C2500CAB6000,"Ary and the Secret of Seasons",status-playable,playable,2022-10-07 20:45:09.000 +,"ASCENDANCE",status-playable,playable,2021-01-05 10:54:40.000 +,"Asemblance",UE4;gpu;status-ingame,ingame,2020-12-16 18:01:23.000 +,"Ash of Gods: Redemption",deadlock;status-nothing,nothing,2020-08-10 18:08:32.000 +010027B00E40E000,"Ashen",status-playable;nvdec;online-broken;UE4,playable,2022-09-17 12:19:14.000 +01007B000C834000,"Asphalt 9: Legends",services;status-menus;crash;online-broken,menus,2022-12-07 13:28:29.000 +01007F600B134000,"Assassin's Creed III Remastered",status-boots;nvdec,boots,2024-06-25 20:12:11.000 +010044700DEB0000,"Assassin's Creed The Rebel Collection",gpu;status-ingame,ingame,2024-05-19 07:58:56.000 +0100DF200B24C000,"Assault Android Cactus+",status-playable,playable,2021-06-03 13:23:55.000 +,"Assault Chainguns KM",crash;gpu;status-ingame,ingame,2020-12-14 12:48:34.000 +0100C5E00E540000,"Assault on Metaltron Demo",status-playable,playable,2021-02-10 19:48:06.000 +010057A00C1F6000,"Astebreed",status-playable,playable,2022-07-21 17:33:54.000 +010050400BD38000,"Asterix & Obelix XXL 2",deadlock;status-ingame;nvdec,ingame,2022-07-21 17:54:14.000 +0100F46011B50000,"Asterix & Obelix XXL: Romastered",gpu;status-ingame;nvdec;opengl,ingame,2023-08-16 21:22:06.000 +010081500EA1E000,"Asterix & Obelix XXL3: The Crystal Menhir",gpu;status-ingame;nvdec;regression,ingame,2022-11-28 14:19:23.000 +01007300020FA000,"Astral Chain",status-playable,playable,2024-07-17 18:02:19.000 +,"Astro Bears Party",status-playable,playable,2020-05-28 11:21:58.000 +0100F0400351C000,"Astro Duel Deluxe",32-bit;status-playable,playable,2021-06-03 11:21:48.000 +0100B80010C48000,"Astrologaster",cpu;status-nothing;32-bit;crash,nothing,2023-06-28 15:39:31.000 +,"AstroWings SpaceWar",status-playable,playable,2020-12-14 13:10:44.000 +010099801870E000,"Atari 50 The Anniversary Celebration",slow;status-playable,playable,2022-11-14 19:42:10.000 +0100D9D00EE8C000,"Atelier Ayesha: The Alchemist of Dusk DX",status-menus;crash;nvdec;Needs Update,menus,2021-11-24 07:29:54.000 +0100E5600EE8E000,"Atelier Escha & Logy: Alchemists Of The Dusk Sky DX",status-playable;nvdec,playable,2022-11-20 16:01:41.000 +010023201421E000,"Atelier Firis: The Alchemist and the Mysterious Journey DX",gpu;status-ingame;nvdec,ingame,2022-10-25 22:46:19.000 +,"Atelier Lulua ~ The Scion of Arland ~",nvdec;status-playable,playable,2020-12-16 14:29:19.000 +010009900947A000,"Atelier Lydie & Suelle: The Alchemists and the Mysterious Paintings",nvdec;status-playable,playable,2021-06-03 18:37:01.000 +,"Atelier Meruru ~ The Apprentice of Arland ~ DX",nvdec;status-playable,playable,2020-06-12 00:50:48.000 +010088600C66E000,"Atelier Rorona - The Alchemist of Arland - DX",nvdec;status-playable,playable,2021-04-08 15:33:15.000 +01002D700B906000,"Atelier Rorona Arland no Renkinjutsushi DX (JP)",status-playable;nvdec,playable,2022-12-02 17:26:54.000 +01009A9012022000,"Atelier Ryza 2: Lost Legends & the Secret Fairy",status-playable,playable,2022-10-16 21:06:06.000 +0100D1900EC80000,"Atelier Ryza: Ever Darkness & the Secret Hideout",status-playable,playable,2023-10-15 16:36:50.000 +,"Atelier Shallie: Alchemists of the Dusk Sea DX",nvdec;status-playable,playable,2020-11-25 20:54:12.000 +010082A01538E000,"Atelier Sophie 2: The Alchemist of the Mysterious Dream",status-ingame;crash,ingame,2022-12-01 04:34:03.000 +01001A5014220000,"Atelier Sophie: The Alchemist of the Mysterious Book DX",status-playable,playable,2022-10-25 23:06:20.000 +,"Atelier Totori ~ The Adventurer of Arland ~ DX",nvdec;status-playable,playable,2020-06-12 01:04:56.000 +0100B9400FA38000,"ATOM RPG",status-playable;nvdec,playable,2022-10-22 10:11:48.000 +01005FE00EC4E000,"Atomic Heist",status-playable,playable,2022-10-16 21:24:32.000 +0100AD30095A4000,"Atomicrops",status-playable,playable,2022-08-06 10:05:07.000 +,"ATOMIK RunGunJumpGun",status-playable,playable,2020-12-14 13:19:24.000 +,"ATOMINE",gpu;nvdec;slow;status-playable,playable,2020-12-14 18:56:50.000 +,"Attack of the Toy Tanks",slow;status-ingame,ingame,2020-12-14 12:59:12.000 +,"Attack on Titan 2",status-playable,playable,2021-01-04 11:40:01.000 +01000F600B01E000,"ATV Drift & Tricks",UE4;online;status-playable,playable,2021-04-08 17:29:17.000 +,"Automachef",status-playable,playable,2020-12-16 19:51:25.000 +01006B700EA6A000,"Automachef Demo",status-playable,playable,2021-02-10 20:35:37.000 +,"Aviary Attorney: Definitive Edition",status-playable,playable,2020-08-09 20:32:12.000 +,"Avicii Invector",status-playable,playable,2020-10-25 12:12:56.000 +0100E100128BA000,"AVICII Invector Demo",status-playable,playable,2021-02-10 21:04:58.000 +,"AvoCuddle",status-playable,playable,2020-09-02 14:50:13.000 +0100085012D64000,"Awakening of Cthulhu",UE4;status-playable,playable,2021-04-26 13:03:07.000 +01002F1005F3C000,"Away: Journey to the Unexpected",status-playable;nvdec;vulkan-backend-bug,playable,2022-11-06 15:31:04.000 +,"Awesome Pea",status-playable,playable,2020-10-11 12:39:23.000 +010023800D3F2000,"Awesome Pea (Demo)",status-playable,playable,2021-02-10 21:48:21.000 +0100B7D01147E000,"Awesome Pea 2",status-playable,playable,2022-10-01 12:34:19.000 +,"Awesome Pea 2 (Demo) - 0100D2011E28000",crash;status-nothing,nothing,2021-02-10 22:08:27.000 +0100DA3011174000,"Axes",status-playable,playable,2021-04-08 13:01:58.000 +,"Axiom Verge",status-playable,playable,2020-10-20 01:07:18.000 +010075400DEC6000,"Ayakashi koi gikyoku Free Trial",status-playable,playable,2021-02-10 22:22:11.000 +01006AF012FC8000,"Azur Lane: Crosswave",UE4;nvdec;status-playable,playable,2021-04-05 15:15:25.000 +,"Azuran Tales: Trials",status-playable,playable,2020-08-12 15:23:07.000 +01006FB00990E000,"Azure Reflections",nvdec;online;status-playable,playable,2021-04-08 13:18:25.000 +01004E90149AA000,"Azure Striker GUNVOLT 3",status-playable,playable,2022-08-10 13:46:49.000 +0100192003FA4000,"Azure Striker Gunvolt: STRIKER PACK",32-bit;status-playable,playable,2024-02-10 23:51:21.000 +,"Azurebreak Heroes",status-playable,playable,2020-12-16 21:26:17.000 +01009B901145C000,"B.ARK",status-playable;nvdec,playable,2022-11-17 13:35:02.000 +01002CD00A51C000,"Baba Is You",status-playable,playable,2022-07-17 05:36:54.000 +,"Back to Bed",nvdec;status-playable,playable,2020-12-16 20:52:04.000 +0100FEA014316000,"Backworlds",status-playable,playable,2022-10-25 23:20:34.000 +0100EAF00E32E000,"BaconMan",status-menus;crash;nvdec,menus,2021-11-20 02:36:21.000 +01000CB00D094000,"Bad Dream: Coma",deadlock;status-boots,boots,2023-08-03 00:54:18.000 +0100B3B00D81C000,"Bad Dream: Fever",status-playable,playable,2021-06-04 18:33:12.000 +,"Bad Dudes",status-playable,playable,2020-12-10 12:30:56.000 +0100E98006F22000,"Bad North",status-playable,playable,2022-07-17 13:44:25.000 +,"Bad North Demo",status-playable,playable,2021-02-10 22:48:38.000 +,"BAFL",status-playable,playable,2021-01-13 08:32:51.000 +010076B011EC8000,"Baila Latino",status-playable,playable,2021-04-14 16:40:24.000 +,"Bakugan Champions of Vestroia",status-playable,playable,2020-11-06 19:07:39.000 +01008260138C4000,"Bakumatsu Renka SHINSENGUMI",status-playable,playable,2022-10-25 23:37:31.000 +0100438012EC8000,"Balan Wonderworld",status-playable;nvdec;UE4,playable,2022-10-22 13:08:43.000 +0100E48013A34000,"Balan Wonderworld Demo",gpu;services;status-ingame;UE4;demo,ingame,2023-02-16 20:05:07.000 +0100CD801CE5E000,"Balatro",status-ingame,ingame,2024-04-21 02:01:53.000 +010010A00DA48000,"Baldur's Gate and Baldur's Gate II: Enhanced Editions",32-bit;status-playable,playable,2022-09-12 23:52:15.000 +0100BC400FB64000,"Balthazar's Dreams",status-playable,playable,2022-09-13 00:13:22.000 +01008D30128E0000,"Bamerang",status-playable,playable,2022-10-26 00:29:39.000 +,"Bang Dream Girls Band Party for Nintendo Switch",status-playable,playable,2021-09-19 03:06:58.000 +010013C010C5C000,"Banner of the Maid",status-playable,playable,2021-06-14 15:23:37.000 +,"Banner Saga 2",crash;status-boots,boots,2021-01-13 08:56:09.000 +,"Banner Saga 3",slow;status-boots,boots,2021-01-11 16:53:57.000 +0100CE800B94A000,"Banner Saga Trilogy",slow;status-playable,playable,2024-03-06 11:25:20.000 +,"Baobabs Mauseoleum Ep 1: Ovnifagos Don't Eat Flamingos",status-playable,playable,2020-07-15 05:06:29.000 +,"Baobabs Mausoleum Ep.3: Un Pato en Muertoburgo",nvdec;status-playable,playable,2020-12-17 11:43:10.000 +,"Baobabs Mausoleum Ep2: 1313 Barnabas Dead Ends Drive",status-playable,playable,2020-12-17 11:22:50.000 +0100D3000AEC2000,"Baobabs Mausoleum: DEMO",status-playable,playable,2021-02-10 22:59:25.000 +01003350102E2000,"Barbarous! Tavern of Emyr",status-playable,playable,2022-10-16 21:50:24.000 +0100F7E01308C000,"Barbearian",Needs Update;gpu;status-ingame,ingame,2021-06-28 16:27:50.000 +010039C0106C6000,"Baron: Fur Is Gonna Fly",status-boots;crash,boots,2022-02-06 02:05:43.000 +,"Barry Bradford's Putt Panic Party",nvdec;status-playable,playable,2020-06-17 01:08:34.000 +01004860080A0000,"Baseball Riot",status-playable,playable,2021-06-04 18:07:27.000 +0100E3100450E000,"Bass Pro Shops: The Strike - Championship Edition",gpu;status-boots;32-bit,boots,2022-12-09 15:58:16.000 +010038600B27E000,"Bastion",status-playable,playable,2022-02-15 14:15:24.000 +,"Batbarian: Testament of the Primordials",status-playable,playable,2020-12-17 12:00:59.000 +0100C07018CA6000,"Baten Kaitos I & II HD Remaster (Europe/USA)",services;status-boots;Needs Update,boots,2023-10-01 00:44:32.000 +0100F28018CA4000,"Baten Kaitos I & II HD Remaster (Japan)",services;status-boots;Needs Update,boots,2023-10-24 23:11:54.000 +,"Batman - The Telltale Series",nvdec;slow;status-playable,playable,2021-01-11 18:19:35.000 +01003f00163ce000,"Batman: Arkham City",status-playable,playable,2024-09-11 00:30:19.000 +0100ACD0163D0000,"Batman: Arkham Knight",gpu;status-ingame;mac-bug,ingame,2024-06-25 20:24:42.000 +,"Batman: The Enemy Within",crash;status-nothing,nothing,2020-10-16 05:49:27.000 +0100747011890000,"Battle Axe",status-playable,playable,2022-10-26 00:38:01.000 +,"Battle Chasers: Nightwar",nvdec;slow;status-playable,playable,2021-01-12 12:27:34.000 +,"Battle Chef Brigade",status-playable,playable,2021-01-11 14:16:28.000 +0100DBB00CAEE000,"Battle Chef Brigade Demo",status-playable,playable,2021-02-10 23:15:07.000 +0100A3B011EDE000,"Battle Hunters",gpu;status-ingame,ingame,2022-11-12 09:19:17.000 +,"Battle of Kings",slow;status-playable,playable,2020-12-17 12:45:23.000 +,"Battle Planet - Judgement Day",status-playable,playable,2020-12-17 14:06:20.000 +,"Battle Princess Madelyn",status-playable,playable,2021-01-11 13:47:23.000 +0100A7500DF64000,"Battle Princess Madelyn Royal Edition",status-playable,playable,2022-09-26 19:14:49.000 +010099B00E898000,"Battle Supremacy - Evolution",gpu;status-boots;nvdec,boots,2022-02-17 09:02:50.000 +0100DEB00D5A8000,"Battle Worlds: Kronos",nvdec;status-playable,playable,2021-06-04 17:48:02.000 +0100650010DD4000,"Battleground",status-ingame;crash,ingame,2021-09-06 11:53:23.000 +,"BATTLESLOTHS",status-playable,playable,2020-10-03 08:32:22.000 +,"BATTLESTAR GALACTICA Deadlock",nvdec;status-playable,playable,2020-06-27 17:35:44.000 +01006D800A988000,"Battlezone Gold Edition",gpu;ldn-untested;online;status-boots,boots,2021-06-04 18:36:05.000 +,"BATTLLOON",status-playable,playable,2020-12-17 15:48:23.000 +0100194010422000,"bayala - the game",status-playable,playable,2022-10-04 14:09:25.000 +010076F0049A2000,"Bayonetta",status-playable;audout,playable,2022-11-20 15:51:59.000 +01007960049A0000,"Bayonetta 2",status-playable;nvdec;ldn-works;LAN,playable,2022-11-26 03:46:09.000 +01004A4010FEA000,"Bayonetta 3",gpu;status-ingame;crash;nvdec;vulkan-backend-bug;opengl-backend-bug;amd-vendor-bug;ASTC,ingame,2024-09-28 14:34:33.000 +010002801A3FA000,"Bayonetta Origins Cereza and the Lost Demon Demo",gpu;status-ingame;demo,ingame,2024-02-17 06:06:28.000 +0100CF5010FEC000,"Bayonetta Origins: Cereza and the Lost Demon",gpu;status-ingame,ingame,2024-02-27 01:39:49.000 +,"Be-A Walker",slow;status-ingame,ingame,2020-09-02 15:00:31.000 +010095C00406C000,"Beach Buggy Racing",online;status-playable,playable,2021-04-13 23:16:50.000 +010020700DE04000,"Bear With Me - The Lost Robots",nvdec;status-playable,playable,2021-02-27 14:20:10.000 +010024200E97E800,"Bear With Me - The Lost Robots Demo",nvdec;status-playable,playable,2021-02-12 22:38:12.000 +,"Bear's Restaurant - 0100CE014A4E000",status-playable,playable,2024-08-11 21:26:59.000 +,"BEAST Darling! ~Kemomimi Danshi to Himitsu no Ryou~",crash;status-menus,menus,2020-10-04 06:12:08.000 +,"Beat Cop",status-playable,playable,2021-01-06 19:26:48.000 +01002D20129FC000,"Beat Me!",status-playable;online-broken,playable,2022-10-16 21:59:26.000 +01006B0014590000,"Beautiful Desolation",gpu;status-ingame;nvdec,ingame,2022-10-26 10:34:38.000 +,"Bee Simulator",UE4;crash;status-boots,boots,2020-07-15 12:13:13.000 +010018F007786000,"BeeFense BeeMastered",status-playable,playable,2022-11-17 15:38:12.000 +,"Behold the Kickmen",status-playable,playable,2020-06-27 12:49:45.000 +,"Beholder",status-playable,playable,2020-10-16 12:48:58.000 +01006E1004404000,"Ben 10",nvdec;status-playable,playable,2021-02-26 14:08:35.000 +01009CD00E3AA000,"Ben 10: Power Trip",status-playable;nvdec,playable,2022-10-09 10:52:12.000 +010074500BBC4000,"Bendy and the Ink Machine",status-playable,playable,2023-05-06 20:35:39.000 +010021F00C1C0000,"Bertram Fiddle Episode 2: A Bleaker Predicklement",nvdec;status-playable,playable,2021-02-22 14:56:37.000 +010068600AD16000,"Beyblade Burst Battle Zero",services;status-menus;crash;Needs Update,menus,2022-11-20 15:48:32.000 +010056500CAD8000,"Beyond Enemy Lines: Covert Operations",status-playable;UE4,playable,2022-10-01 13:11:50.000 +0100B8F00DACA000,"Beyond Enemy Lines: Essentials",status-playable;nvdec;UE4,playable,2022-09-26 19:48:16.000 +,"Bibi & Tina - Adventures with Horses",nvdec;slow;status-playable,playable,2021-01-13 08:58:09.000 +010062400E69C000,"Bibi & Tina at the horse farm",status-playable,playable,2021-04-06 16:31:39.000 +,"Bibi Blocksberg - Big Broom Race 3",status-playable,playable,2021-01-11 19:07:16.000 +,"Big Buck Hunter Arcade",nvdec;status-playable,playable,2021-01-12 20:31:39.000 +010088100C35E000,"Big Crown: Showdown",status-menus;nvdec;online;ldn-untested,menus,2022-07-17 18:25:32.000 +0100A42011B28000,"Big Dipper",status-playable,playable,2021-06-14 15:08:19.000 +01002FA00DE72000,"Big Drunk Satanic Massacre",status-playable,playable,2021-03-04 21:28:22.000 +,"Big Pharma",status-playable,playable,2020-07-14 15:27:30.000 +,"BIG-Bobby-Car - The Big Race",slow;status-playable,playable,2020-12-10 14:25:06.000 +010057700FF7C000,"Billion Road",status-playable,playable,2022-11-19 15:57:43.000 +,"BINGO for Nintendo Switch",status-playable,playable,2020-07-23 16:17:36.000 +01004BA017CD6000,"Biomutant",status-ingame;crash,ingame,2024-05-16 15:46:36.000 +01002620102C6000,"BioShock 2 Remastered",services;status-nothing,nothing,2022-10-29 14:39:22.000 +0100D560102C8000,"BioShock Infinite: The Complete Edition",services-horizon;status-nothing;crash,nothing,2024-08-11 21:35:01.000 +0100AD10102B2000,"BioShock Remastered",services-horizon;status-boots;crash;Needs Update,boots,2024-06-06 01:08:52.000 +010053B0117F8000,"Biped",status-playable;nvdec,playable,2022-10-01 13:32:58.000 +01001B700B278000,"Bird Game +",status-playable;online,playable,2022-07-17 18:41:57.000 +0100B6B012FF4000,"Birds and Blocks Demo",services;status-boots;demo,boots,2022-04-10 04:53:03.000 +0100E62012D3C000,"BIT.TRIP RUNNER",status-playable,playable,2022-10-17 14:23:24.000 +01000AD012D3A000,"BIT.TRIP VOID",status-playable,playable,2022-10-17 14:31:23.000 +,"Bite the Bullet",status-playable,playable,2020-10-14 23:10:11.000 +010026E0141C8000,"Bitmaster",status-playable,playable,2022-12-13 14:05:51.000 +,"Biz Builder Delux",slow;status-playable,playable,2020-12-15 21:36:25.000 +0100DD1014AB8000,"Black Book",status-playable;nvdec,playable,2022-12-13 16:38:53.000 +010049000B69E000,"Black Future '88",status-playable;nvdec,playable,2022-09-13 11:24:37.000 +01004BE00A682000,"Black Hole Demo",status-playable,playable,2021-02-12 23:02:17.000 +0100C3200E7E6000,"Black Legend",gpu;status-ingame;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-10-22 12:54:48.000 +,"Blackjack Hands",status-playable,playable,2020-11-30 14:04:51.000 +0100A0A00E660000,"Blackmoor2",status-playable;online-broken,playable,2022-09-26 20:26:34.000 +010032000EA2C000,"Blacksad: Under the Skin",status-playable,playable,2022-09-13 11:38:04.000 +01006B400C178000,"Blacksea Odyssey",status-playable;nvdec,playable,2022-10-16 22:14:34.000 +010068E013450000,"Blacksmith of the Sand Kingdom",status-playable,playable,2022-10-16 22:37:44.000 +0100C4400CB7C000,"BLADE ARCUS Rebellion From Shining",status-playable,playable,2022-07-17 18:52:28.000 +0100EA1018A2E000,"Blade Assault",audio;status-nothing,nothing,2024-04-29 14:32:50.000 +01009CC00E224000,"Blade II The Return of Evil",audio;status-ingame;crash;UE4,ingame,2021-11-14 02:49:59.000 +01005950022EC000,"Blade Strangers",status-playable;nvdec,playable,2022-07-17 19:02:43.000 +0100DF0011A6A000,"Bladed Fury",status-playable,playable,2022-10-26 11:36:26.000 +0100CFA00CC74000,"Blades of Time",deadlock;status-boots;online,boots,2022-07-17 19:19:58.000 +01006CC01182C000,"Blair Witch",status-playable;nvdec;UE4,playable,2022-10-01 14:06:16.000 +010039501405E000,"Blanc",gpu;slow;status-ingame,ingame,2023-02-22 14:00:13.000 +0100698009C6E000,"Blasphemous",nvdec;status-playable,playable,2021-03-01 12:15:31.000 +0100302010338000,"Blasphemous Demo",status-playable,playable,2021-02-12 23:49:56.000 +0100225000FEE000,"Blaster Master Zero",32-bit;status-playable,playable,2021-03-05 13:22:33.000 +01005AA00D676000,"Blaster Master Zero 2",status-playable,playable,2021-04-08 15:22:59.000 +010025B002E92000,"Blaster Master Zero DEMO",status-playable,playable,2021-02-12 23:59:06.000 +,"BLAZBLUE CENTRALFICTION Special Edition",nvdec;status-playable,playable,2020-12-15 23:50:04.000 +,"BlazBlue: Cross Tag Battle",nvdec;online;status-playable,playable,2021-01-05 20:29:37.000 +,"Blazing Beaks",status-playable,playable,2020-06-04 20:37:06.000 +,"Blazing Chrome",status-playable,playable,2020-11-16 04:56:54.000 +010091700EA2A000,"Bleep Bloop DEMO",nvdec;status-playable,playable,2021-02-13 00:20:53.000 +010089D011310000,"Blind Men",audout;status-playable,playable,2021-02-20 14:15:38.000 +0100743013D56000,"Blizzard Arcade Collection",status-playable;nvdec,playable,2022-08-03 19:37:26.000 +0100F3500A20C000,"BlobCat",status-playable,playable,2021-04-23 17:09:30.000 +0100E1C00DB6C000,"Block-a-Pix Deluxe Demo",status-playable,playable,2021-02-13 00:37:39.000 +0100C6A01AD56000,"Bloo Kid",status-playable,playable,2024-05-01 17:18:04.000 +010055900FADA000,"Bloo Kid 2",status-playable,playable,2024-05-01 17:16:57.000 +,"Blood & Guts Bundle",status-playable,playable,2020-06-27 12:57:35.000 +01007E700D17E000,"Blood Waves",gpu;status-ingame,ingame,2022-07-18 13:04:46.000 +,"Blood will be Spilled",nvdec;status-playable,playable,2020-12-17 03:02:03.000 +,"Bloodstained: Curse of the Moon",status-playable,playable,2020-09-04 10:42:17.000 +,"Bloodstained: Curse of the Moon 2",status-playable,playable,2020-09-04 10:56:27.000 +010025A00DF2A000,"Bloodstained: Ritual of the Night",status-playable;nvdec;UE4,playable,2022-07-18 14:27:35.000 +0100E510143EC000,"Bloody Bunny : The Game",status-playable;nvdec;UE4,playable,2022-10-22 13:18:55.000 +0100B8400A1C6000,"Bloons TD 5",Needs Update;audio;gpu;services;status-boots,boots,2021-04-18 23:02:46.000 +0100C1000706C000,"Blossom Tales",status-playable,playable,2022-07-18 16:43:07.000 +01000EB01023E000,"Blossom Tales Demo",status-playable,playable,2021-02-13 14:22:53.000 +010073B010F6E000,"Blue Fire",status-playable;UE4,playable,2022-10-22 14:46:11.000 +0100721013510000,"Body of Evidence",status-playable,playable,2021-04-25 22:22:11.000 +0100AD1010CCE000,"Bohemian Killing",status-playable;vulkan-backend-bug,playable,2022-09-26 22:41:37.000 +010093700ECEC000,"Boku to Nurse no Kenshuu Nisshi",status-playable,playable,2022-11-21 20:38:34.000 +01001D900D9AC000,"Bokujou Monogatari Saikai no Mineraru Taun (Story of Seasons: Friends of Mineral Town)",slow;status-ingame;crash;Needs Update,ingame,2022-04-24 22:46:04.000 +0100317014B7C000,"Bomb Rush Cyberfunk",status-playable,playable,2023-09-28 19:51:57.000 +01007900080B6000,"Bomber Crew",status-playable,playable,2021-06-03 14:21:28.000 +0100A1F012948000,"Bomber Fox",nvdec;status-playable,playable,2021-04-19 17:58:13.000 +010087300445A000,"Bombslinger",services;status-menus,menus,2022-07-19 12:53:15.000 +01007A200F452000,"Book of Demons",status-playable,playable,2022-09-29 12:03:43.000 +,"Bookbound Brigade",status-playable,playable,2020-10-09 14:30:29.000 +,"Boom Blaster",status-playable,playable,2021-03-24 10:55:56.000 +010081A00EE62000,"Boomerang Fu",status-playable,playable,2024-07-28 01:12:41.000 +010069F0135C4000,"Boomerang Fu Demo Version",demo;status-playable,playable,2021-02-13 14:38:13.000 +010096F00FF22000,"Borderlands 2: Game of the Year Edition",status-playable,playable,2022-04-22 18:35:07.000 +01009970122E4000,"Borderlands 3",gpu;status-ingame,ingame,2024-07-15 04:38:14.000 +010064800F66A000,"Borderlands: Game of the Year Edition",slow;status-ingame;online-broken;ldn-untested,ingame,2023-07-23 21:10:36.000 +010007400FF24000,"Borderlands: The Pre-Sequel Ultimate Edition",nvdec;status-playable,playable,2021-06-09 20:17:10.000 +01008E500AFF6000,"Boreal Blade",gpu;ldn-untested;online;status-ingame,ingame,2021-06-11 15:37:14.000 +010092C013FB8000,"Boris The Rocket",status-playable,playable,2022-10-26 13:23:09.000 +010076F00EBE4000,"Bossgard",status-playable;online-broken,playable,2022-10-04 14:21:13.000 +010069B00EAC8000,"Bot Vice Demo",crash;demo;status-ingame,ingame,2021-02-13 14:52:42.000 +,"Bouncy Bob 2",status-playable,playable,2020-07-14 16:51:53.000 +0100E1200DC1A000,"Bounty Battle",status-playable;nvdec,playable,2022-10-04 14:40:51.000 +,"Bow to Blood: Last Captain Standing",slow;status-playable,playable,2020-10-23 10:51:21.000 +,"BOX Align",crash;services;status-nothing,nothing,2020-04-03 17:26:56.000 +,"BOXBOY! + BOXGIRL!",status-playable,playable,2020-11-08 01:11:54.000 +0100B7200E02E000,"BOXBOY! + BOXGIRL! Demo",demo;status-playable,playable,2021-02-13 14:59:08.000 +,"BQM BlockQuest Maker",online;status-playable,playable,2020-07-31 20:56:50.000 +0100E87017D0E000,"Bramble The Mountain King",services-horizon;status-playable,playable,2024-03-06 09:32:17.000 +,"Brave Dungeon + Dark Witch's Story: COMBAT",status-playable,playable,2021-01-12 21:06:34.000 +01006DC010326000,"Bravely Default II",gpu;status-ingame;crash;Needs Update;UE4,ingame,2024-04-26 06:11:26.000 +0100B6801137E000,"Bravely Default II Demo",gpu;status-ingame;crash;UE4;demo,ingame,2022-09-27 05:39:47.000 +010081501371E000,"BraveMatch",status-playable;UE4,playable,2022-10-26 13:32:15.000 +0100F60017D4E000,"Bravery and Greed",gpu;deadlock;status-boots,boots,2022-12-04 02:23:47.000 +,"Brawl",nvdec;slow;status-playable,playable,2020-06-04 14:23:18.000 +010068F00F444000,"Brawl Chess",status-playable;nvdec,playable,2022-10-26 13:59:17.000 +0100C6800B934000,"Brawlhalla",online;opengl;status-playable,playable,2021-06-03 18:26:09.000 +010060200A4BE000,"Brawlout",ldn-untested;online;status-playable,playable,2021-06-04 17:35:35.000 +0100C1B00E1CA000,"Brawlout Demo",demo;status-playable,playable,2021-02-13 22:46:53.000 +010022C016DC8000,"Breakout: Recharged",slow;status-ingame,ingame,2022-11-06 15:32:57.000 +01000AA013A5E000,"Breathedge",UE4;nvdec;status-playable,playable,2021-05-06 15:44:28.000 +,"Breathing Fear",status-playable,playable,2020-07-14 15:12:29.000 +,"Brick Breaker",crash;status-ingame,ingame,2020-12-15 17:03:59.000 +,"Brick Breaker",nvdec;online;status-playable,playable,2020-12-15 18:26:23.000 +,"Bridge 3",status-playable,playable,2020-10-08 20:47:24.000 +,"Bridge Constructor: The Walking Dead",gpu;slow;status-ingame,ingame,2020-12-11 17:31:32.000 +010011000EA7A000,"Brigandine: The Legend of Runersia",status-playable,playable,2021-06-20 06:52:25.000 +0100703011258000,"Brigandine: The Legend of Runersia Demo",status-playable,playable,2021-02-14 14:44:10.000 +01000BF00BE40000,"Bring Them Home",UE4;status-playable,playable,2021-04-12 14:14:43.000 +010060A00B53C000,"Broforce",ldn-untested;online;status-playable,playable,2021-05-28 12:23:38.000 +0100EDD0068A6000,"Broken Age",status-playable,playable,2021-06-04 17:40:32.000 +,"Broken Lines",status-playable,playable,2020-10-16 00:01:37.000 +01001E60085E6000,"Broken Sword 5 - the Serpent's Curse",status-playable,playable,2021-06-04 17:28:59.000 +0100F19011226000,"Brotherhood United Demo",demo;status-playable,playable,2021-02-14 21:10:57.000 +01000D500D08A000,"Brothers: A Tale of Two Sons",status-playable;nvdec;UE4,playable,2022-07-19 14:02:22.000 +,"Brunch Club",status-playable,playable,2020-06-24 13:54:07.000 +010010900F7B4000,"Bubble Bobble 4 Friends",nvdec;status-playable,playable,2021-06-04 15:27:55.000 +0100DBE00C554000,"Bubsy: Paws on Fire!",slow;status-ingame,ingame,2023-08-24 02:44:51.000 +,"Bucket Knight",crash;status-ingame,ingame,2020-09-04 13:11:24.000 +0100F1B010A90000,"Bucket Knight demo",demo;status-playable,playable,2021-02-14 21:23:09.000 +01000D200AC0C000,"Bud Spencer & Terence Hill - Slaps and Beans",status-playable,playable,2022-07-17 12:37:00.000 +,"Bug Fables",status-playable,playable,2020-06-09 11:27:00.000 +01003DD00D658000,"BULLETSTORM: DUKE OF SWITCH EDITION",status-playable;nvdec,playable,2022-03-03 08:30:24.000 +,"BurgerTime Party!",slow;status-playable,playable,2020-11-21 14:11:53.000 +01005780106E8000,"BurgerTime Party! Demo",demo;status-playable,playable,2021-02-14 21:34:16.000 +,"Buried Stars",status-playable,playable,2020-09-07 14:11:58.000 +0100DBF01000A000,"Burnout Paradise Remastered",nvdec;online;status-playable,playable,2021-06-13 02:54:46.000 +,"Bury me, my Love",status-playable,playable,2020-11-07 12:47:37.000 +010030D012FF6000,"Bus Driver Simulator",status-playable,playable,2022-10-17 13:55:27.000 +,"BUSTAFELLOWS",nvdec;status-playable,playable,2020-10-17 20:04:41.000 +,"BUTCHER",status-playable,playable,2021-01-11 18:50:17.000 +0100E24004510000,"Cabela's: The Hunt - Championship Edition",status-menus;32-bit,menus,2022-07-21 20:21:25.000 +01000B900D8B0000,"Cadence of Hyrule Crypt of the NecroDancer Featuring The Legend of Zelda",slow;status-playable;nvdec,playable,2024-04-01 22:43:40.000 +,"Cadence of Hyrule Crypt of the NecroDancer Featuring The Legend of Zelda Demo - 010065700EE0600",demo;gpu;nvdec;status-ingame,ingame,2021-02-14 21:48:15.000 +,"Café Enchanté",status-playable,playable,2020-11-13 14:54:25.000 +010060400D21C000,"Cafeteria Nipponica Demo",demo;status-playable,playable,2021-02-14 22:11:35.000 +0100699012F82000,"Cake Bash Demo",crash;demo;status-ingame,ingame,2021-02-14 22:21:15.000 +01004FD00D66A000,"Caladrius Blaze",deadlock;status-nothing;nvdec,nothing,2022-12-07 16:44:37.000 +,"Calculation Castle: Greco's Ghostly Challenge ""Addition",32-bit;status-playable,playable,2020-11-01 23:40:11.000 +,"Calculation Castle: Greco's Ghostly Challenge ""Division",32-bit;status-playable,playable,2020-11-01 23:54:55.000 +,"Calculation Castle: Greco's Ghostly Challenge ""Multiplication",32-bit;status-playable,playable,2020-11-02 00:04:33.000 +,"Calculation Castle: Greco's Ghostly Challenge ""Subtraction",32-bit;status-playable,playable,2020-11-01 23:47:42.000 +010004701504A000,"Calculator",status-playable,playable,2021-06-11 13:27:20.000 +010013A00E750000,"Calico",status-playable,playable,2022-10-17 14:44:28.000 +010046000EE40000,"Call of Cthulhu",status-playable;nvdec;UE4,playable,2022-12-18 03:08:30.000 +0100B4700BFC6000,"Call of Juarez: Gunslinger",gpu;status-ingame;nvdec,ingame,2022-09-17 16:49:46.000 +0100593008BDC000,"Can't Drive This",status-playable,playable,2022-10-22 14:55:17.000 +,"Candle - The Power of the Flame",nvdec;status-playable,playable,2020-05-26 12:10:20.000 +01001E0013208000,"Capcom Arcade Stadium",status-playable,playable,2021-03-17 05:45:14.000 +,"Capcom Beat 'Em Up Bundle",status-playable,playable,2020-03-23 18:31:24.000 +0100F6400A77E000,"CAPCOM BELT ACTION COLLECTION",status-playable;online;ldn-untested,playable,2022-07-21 20:51:23.000 +01009BF0072D4000,"Captain Toad: Treasure Tracker",32-bit;status-playable,playable,2024-04-25 00:50:16.000 +01002C400B6B6000,"Captain Toad: Treasure Tracker Demo",32-bit;demo;status-playable,playable,2021-02-14 22:36:09.000 +0100EAE010560000,"CAPTAIN TSUBASA: RISE OF NEW CHAMPIONS",status-playable;online-broken;vulkan-backend-bug,playable,2022-10-09 11:20:50.000 +01002320137CC000,"CAPTAIN TSUBASA: RISE OF NEW CHAMPIONS DEMO VERSION",slow;status-playable,playable,2021-02-14 22:45:35.000 +,"Car Mechanic Manager",status-playable,playable,2020-07-23 18:50:17.000 +01007BD00AE70000,"Car Quest",deadlock;status-menus,menus,2021-11-18 08:59:18.000 +0100DA70115E6000,"Caretaker",status-playable,playable,2022-10-04 14:52:24.000 +0100DD6014870000,"Cargo Crew Driver",status-playable,playable,2021-04-19 12:54:22.000 +010088C0092FE000,"Carnival Games",status-playable;nvdec,playable,2022-07-21 21:01:22.000 +,"Carnivores: Dinosaur Hunt",status-playable,playable,2022-12-14 18:46:06.000 +,"CARRION",crash;status-nothing,nothing,2020-08-13 17:15:12.000 +01008D1001512000,"Cars 3 Driven to Win",gpu;status-ingame,ingame,2022-07-21 21:21:05.000 +0100810012A1A000,"Carto",status-playable,playable,2022-09-04 15:37:06.000 +0100C4E004406000,"Cartoon Network Adventure Time: Pirates of the Enchiridion",status-playable;nvdec,playable,2022-07-21 21:49:01.000 +0100085003A2A000,"Cartoon Network Battle Crashers",status-playable,playable,2022-07-21 21:55:40.000 +0100C4C0132F8000,"CASE 2: Animatronics Survival",status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-10-09 11:45:03.000 +010066F01A0E0000,"Cassette Beasts",status-playable,playable,2024-07-22 20:38:43.000 +010001300D14A000,"Castle Crashers Remastered",gpu;status-boots,boots,2024-08-10 09:21:20.000 +0100F6D01060E000,"Castle Crashers Remastered Demo",gpu;status-boots;demo,boots,2022-04-10 10:57:10.000 +01003C100445C000,"Castle of Heart",status-playable;nvdec,playable,2022-07-21 23:10:45.000 +0100F5500FA0E000,"Castle of No Escape 2",status-playable,playable,2022-09-13 13:51:42.000 +0100DA2011F18000,"Castle Pals",status-playable,playable,2021-03-04 21:00:33.000 +010097C00AB66000,"Castlestorm",status-playable;nvdec,playable,2022-07-21 22:49:14.000 +,"CastleStorm 2",UE4;crash;nvdec;status-boots,boots,2020-10-25 11:22:44.000 +,"Castlevania Anniversary Collection",audio;status-playable,playable,2020-05-23 11:40:29.000 +010076000C86E000,"Cat Girl Without Salad: Amuse-Bouche",status-playable,playable,2022-09-03 13:01:47.000 +,"Cat Quest",status-playable,playable,2020-04-02 23:09:32.000 +,"Cat Quest II",status-playable,playable,2020-07-06 23:52:09.000 +0100E86010220000,"Cat Quest II Demo",demo;status-playable,playable,2021-02-15 14:11:57.000 +0100BF00112C0000,"Catherine Full Body",status-playable;nvdec,playable,2023-04-02 11:00:37.000 +0100BAE0077E4000,"Catherine Full Body for Nintendo Switch (JP)",Needs Update;gpu;status-ingame,ingame,2021-02-21 18:06:11.000 +010004400B28A000,"Cattails",status-playable,playable,2021-06-03 14:36:57.000 +,"Cave Story+",status-playable,playable,2020-05-22 09:57:25.000 +01001A100C0E8000,"Caveblazers",slow;status-ingame,ingame,2021-06-09 17:57:28.000 +,"Caveman Warriors",status-playable,playable,2020-05-22 11:44:20.000 +,"Caveman Warriors Demo",demo;status-playable,playable,2021-02-15 14:44:08.000 +,"Celeste",status-playable,playable,2020-06-17 10:14:40.000 +01006B000A666000,"Cendrillon palikA",gpu;status-ingame;nvdec,ingame,2022-07-21 22:52:24.000 +01007600115CE000,"CHAOS CODE -NEW SIGN OF CATASTROPHE-",status-boots;crash;nvdec,boots,2022-04-04 12:24:21.000 +0100957016B90000,"CHAOS;HEAD NOAH",status-playable,playable,2022-06-02 22:57:19.000 +0100F52013A66000,"Charge Kid",gpu;status-boots;audout,boots,2024-02-11 01:17:47.000 +,"Chasm",status-playable,playable,2020-10-23 11:03:43.000 +010034301A556000,"Chasm: The Rift",gpu;status-ingame,ingame,2024-04-29 19:02:48.000 +0100A5900472E000,"Chess Ultra",status-playable;UE4,playable,2023-08-30 23:06:31.000 +0100E3C00A118000,"Chicken Assassin: Reloaded",status-playable,playable,2021-02-20 13:29:01.000 +,"Chicken Police - Paint it RED!",nvdec;status-playable,playable,2020-12-10 15:10:11.000 +0100F6C00A016000,"Chicken Range",status-playable,playable,2021-04-23 12:14:23.000 +,"Chicken Rider",status-playable,playable,2020-05-22 11:31:17.000 +0100CAC011C3A000,"Chickens Madness DEMO",UE4;demo;gpu;nvdec;status-ingame,ingame,2021-02-15 15:02:10.000 +,"Child of Light",nvdec;status-playable,playable,2020-12-16 10:23:10.000 +01002DE00C250000,"Children of Morta",gpu;status-ingame;nvdec,ingame,2022-09-13 17:48:47.000 +,"Children of Zodiarcs",status-playable,playable,2020-10-04 14:23:33.000 +010046F012A04000,"Chinese Parents",status-playable,playable,2021-04-08 12:56:41.000 +01006A30124CA000,"Chocobo GP",gpu;status-ingame;crash,ingame,2022-06-04 14:52:18.000 +,"Chocobo's Mystery Dungeon Every Buddy!",slow;status-playable,playable,2020-05-26 13:53:13.000 +,"Choices That Matter: And The Sun Went Out",status-playable,playable,2020-12-17 15:44:08.000 +,"Chou no Doku Hana no Kusari: Taishou Irokoi Ibun",gpu;nvdec;status-ingame,ingame,2020-09-28 17:58:04.000 +,"ChromaGun",status-playable,playable,2020-05-26 12:56:42.000 +,"Chronos",UE4;gpu;nvdec;status-ingame,ingame,2020-12-11 22:16:35.000 +,"Circle of Sumo",status-playable,playable,2020-05-22 12:45:21.000 +01008FA00D686000,"Circuits",status-playable,playable,2022-09-19 11:52:50.000 +,"Cities: Skylines - Nintendo Switch Edition",status-playable,playable,2020-12-16 10:34:57.000 +0100E4200D84E000,"Citizens of Space",gpu;status-boots,boots,2023-10-22 06:45:44.000 +0100D9C012900000,"Citizens Unite!: Earth x Space",gpu;status-ingame,ingame,2023-10-22 06:44:19.000 +01005E501284E000,"City Bus Driving Simulator",status-playable,playable,2021-06-15 21:25:59.000 +0100A3A00CC7E000,"CLANNAD",status-playable,playable,2021-06-03 17:01:02.000 +,"CLANNAD Side Stories - 01007B01372C000",status-playable,playable,2022-10-26 15:03:04.000 +01005ED0107F4000,"Clash Force",status-playable,playable,2022-10-01 23:45:48.000 +010009300AA6C000,"Claybook",slow;status-playable;nvdec;online;UE4,playable,2022-07-22 11:11:34.000 +,"Clea",crash;status-ingame,ingame,2020-12-15 16:22:56.000 +010045E0142A4000,"Clea 2",status-playable,playable,2021-04-18 14:25:18.000 +01008C100C572000,"Clock Zero ~Shuuen no Ichibyou~ Devote",status-playable;nvdec,playable,2022-12-04 22:19:14.000 +0100DF9013AD4000,"Clocker",status-playable,playable,2021-04-05 15:05:13.000 +0100B7200DAC6000,"Close to the Sun",status-boots;crash;nvdec;UE4,boots,2021-11-04 09:19:41.000 +010047700D540000,"Clubhouse Games: 51 Worldwide Classics",status-playable;ldn-works,playable,2024-05-21 16:12:57.000 +,"Clue",crash;online;status-menus,menus,2020-11-10 09:23:48.000 +,"ClusterPuck 99",status-playable,playable,2021-01-06 00:28:12.000 +010096900A4D2000,"Clustertruck",slow;status-ingame,ingame,2021-02-19 21:07:09.000 +01005790110F0000,"Cobra Kai The Karate Kid Saga Continues",status-playable,playable,2021-06-17 15:59:13.000 +01002E700C366000,"COCOON",gpu;status-ingame,ingame,2024-03-06 11:33:08.000 +010034E005C9C000,"Code of Princess EX",nvdec;online;status-playable,playable,2021-06-03 10:50:13.000 +,"CODE SHIFTER",status-playable,playable,2020-08-09 15:20:55.000 +010002400F408000,"Code: Realize ~Future Blessings~",status-playable;nvdec,playable,2023-03-31 16:57:47.000 +0100CF800C810000,"Coffee Crisis",status-playable,playable,2021-02-20 12:34:52.000 +,"Coffee Talk",status-playable,playable,2020-08-10 09:48:44.000 +0100178009648000,"Coffin Dodgers",status-playable,playable,2021-02-20 14:57:41.000 +010035B01706E000,"Cold Silence",cpu;status-nothing;crash,nothing,2024-07-11 17:06:14.000 +010083E00F40E000,"Collar X Malice",status-playable;nvdec,playable,2022-10-02 11:51:56.000 +0100E3B00F412000,"Collar X Malice -Unlimited-",status-playable;nvdec,playable,2022-10-04 15:30:40.000 +,"Collection of Mana",status-playable,playable,2020-10-19 19:29:45.000 +,"COLLECTION of SaGA FINAL FANTASY LEGEND",status-playable,playable,2020-12-30 19:11:16.000 +010030800BC36000,"Collidalot",status-playable;nvdec,playable,2022-09-13 14:09:27.000 +,"Color Zen",status-playable,playable,2020-05-22 10:56:17.000 +,"Colorgrid",status-playable,playable,2020-10-04 01:50:52.000 +0100A7000BD28000,"Coloring Book",status-playable,playable,2022-07-22 11:17:05.000 +010020500BD86000,"Colors Live",gpu;services;status-boots;crash,boots,2023-02-26 02:51:07.000 +0100E2F0128B4000,"Colossus Down",status-playable,playable,2021-02-04 20:49:50.000 +0100C4D00D16A000,"Commander Keen in Keen Dreams",gpu;status-ingame,ingame,2022-08-04 20:34:20.000 +0100E400129EC000,"Commander Keen in Keen Dreams: Definitive Edition",status-playable,playable,2021-05-11 19:33:54.000 +010065A01158E000,"Commandos 2 HD Remaster",gpu;status-ingame;nvdec,ingame,2022-08-10 21:52:27.000 +010015801308E000,"CONARIUM",UE4;nvdec;status-playable,playable,2021-04-26 17:57:53.000 +0100971011224000,"Concept Destruction",status-playable,playable,2022-09-29 12:28:56.000 +010043700C9B0000,"Conduct TOGETHER!",nvdec;status-playable,playable,2021-02-20 12:59:00.000 +,"Conga Master Party!",status-playable,playable,2020-05-22 13:22:24.000 +,"Connection Haunted",slow;status-playable,playable,2020-12-10 18:57:14.000 +0100A5600FAC0000,"Construction Simulator 3 - Console Edition",status-playable,playable,2023-02-06 09:31:23.000 +,"Constructor Plus",status-playable,playable,2020-05-26 12:37:40.000 +0100DCA00DA7E000,"Contra Anniversary Collection",status-playable,playable,2022-07-22 11:30:12.000 +,"CONTRA: ROGUE CORPS",crash;nvdec;regression;status-menus,menus,2021-01-07 13:23:35.000 +0100B8200ECA6000,"CONTRA: ROGUE CORPS Demo",gpu;status-ingame,ingame,2022-09-04 16:46:52.000 +01007D701298A000,"Contraptions",status-playable,playable,2021-02-08 18:40:50.000 +0100041013360000,"Control Ultimate Edition - Cloud Version",Needs Update;crash;services;status-nothing,nothing,2021-04-18 22:34:06.000 +,"Convoy",status-playable,playable,2020-10-15 14:43:50.000 +0100B82010B6C000,"Cook, Serve, Delicious! 3?!",status-playable,playable,2022-10-09 12:09:34.000 +010060700EFBA000,"Cooking Mama: Cookstar",status-menus;crash;loader-allocator,menus,2021-11-20 03:19:35.000 +01001E400FD58000,"Cooking Simulator",status-playable,playable,2021-04-18 13:25:23.000 +,"Cooking Tycoons 2: 3 in 1 Bundle",status-playable,playable,2020-11-16 22:19:33.000 +,"Cooking Tycoons: 3 in 1 Bundle",status-playable,playable,2020-11-16 22:44:26.000 +,"Copperbell",status-playable,playable,2020-10-04 15:54:36.000 +010016400B1FE000,"Corpse Party: Blood Drive",nvdec;status-playable,playable,2021-03-01 12:44:23.000 +0100CCB01B1A0000,"Cosmic Fantasy Collection",status-ingame,ingame,2024-05-21 17:56:37.000 +010067C00A776000,"Cosmic Star Heroine",status-playable,playable,2021-02-20 14:30:47.000 +01003DD00F94A000,"COTTOn Reboot! [ コットン リブート! ]",status-playable,playable,2022-05-24 16:29:24.000 +,"Cotton/Guardian Saturn Tribute Games",gpu;status-boots,boots,2022-11-27 21:00:51.000 +01000E301107A000,"Couch Co-Op Bundle Vol. 2",status-playable;nvdec,playable,2022-10-02 12:04:21.000 +0100C1E012A42000,"Country Tales",status-playable,playable,2021-06-17 16:45:39.000 +01003370136EA000,"Cozy Grove",gpu;status-ingame,ingame,2023-07-30 22:22:19.000 +010073401175E000,"Crash Bandicoot 4: It's About Time",status-playable;nvdec;UE4,playable,2024-03-17 07:13:45.000 +0100D1B006744000,"Crash Bandicoot N. Sane Trilogy",status-playable,playable,2024-02-11 11:38:14.000 +,"Crash Drive 2",online;status-playable,playable,2020-12-17 02:45:46.000 +,"Crash Dummy",nvdec;status-playable,playable,2020-05-23 11:12:43.000 +0100F9F00C696000,"Crash Team Racing Nitro-Fueled",gpu;status-ingame;nvdec;online-broken,ingame,2023-06-25 02:40:17.000 +0100BF200CD74000,"Crashbots",status-playable,playable,2022-07-22 13:50:52.000 +010027100BD16000,"Crashlands",status-playable,playable,2021-05-27 20:30:06.000 +,"Crawl",status-playable,playable,2020-05-22 10:16:05.000 +0100C66007E96000,"Crayola Scoot",status-playable;nvdec,playable,2022-07-22 14:01:55.000 +01005BA00F486000,"Crayon Shin-chan Ora to Hakase no Natsuyasumi Owaranai Nanokakan no Tabi",status-playable,playable,2021-07-21 10:41:33.000 +,"Crayon Shin-chan The Storm Called Flaming Kasukabe Runner!",services;status-menus,menus,2020-03-20 14:00:57.000 +,"Crazy Strike Bowling EX",UE4;gpu;nvdec;status-ingame,ingame,2020-08-07 18:15:59.000 +,"Crazy Zen Mini Golf",status-playable,playable,2020-08-05 14:00:00.000 +,"Creaks",status-playable,playable,2020-08-15 12:20:52.000 +,"Creature in the Well",UE4;gpu;status-ingame,ingame,2020-11-16 12:52:40.000 +,"Creepy Tale",status-playable,playable,2020-12-15 21:58:03.000 +,"Cresteaju",gpu;status-ingame,ingame,2021-03-24 10:46:06.000 +010022D00D4F0000,"Cricket 19",gpu;status-ingame,ingame,2021-06-14 14:56:07.000 +0100387017100000,"Cricket 22",status-boots;crash,boots,2023-10-18 08:01:57.000 +01005640080B0000,"Crimsonland",status-playable,playable,2021-05-27 20:50:54.000 +0100B0400EBC4000,"Cris Tales",crash;status-ingame,ingame,2021-07-29 15:10:53.000 +01004BC0166CC000,"CRISIS CORE –FINAL FANTASY VII– REUNION",status-playable,playable,2022-12-19 15:53:59.000 +,"Croc's World",status-playable,playable,2020-05-22 11:21:09.000 +,"Croc's World 2",status-playable,playable,2020-12-16 20:01:40.000 +,"Croc's World 3",status-playable,playable,2020-12-30 18:53:26.000 +01000F0007D92000,"Croixleur Sigma",status-playable;online,playable,2022-07-22 14:26:54.000 +01003D90058FC000,"CrossCode",status-playable,playable,2024-02-17 10:23:19.000 +0100B1E00AA56000,"Crossing Souls",nvdec;status-playable,playable,2021-02-20 15:42:54.000 +0100059012BAE000,"Crown Trick",status-playable,playable,2021-06-16 19:36:29.000 +0100B41013C82000,"Cruis'n Blast",gpu;status-ingame,ingame,2023-07-30 10:33:47.000 +01000CC01C108000,"Crymachina Trial Edition ( Demo ) [ クライマキナ ]",status-playable;demo,playable,2023-08-06 05:33:21.000 +0100CEA007D08000,"Crypt of the Necrodancer",status-playable;nvdec,playable,2022-11-01 09:52:06.000 +0100582010AE0000,"Crysis 2 Remastered",deadlock;status-menus,menus,2023-09-21 10:46:17.000 +0100CD3010AE2000,"Crysis 3 Remastered",deadlock;status-menus,menus,2023-09-10 16:03:50.000 +0100E66010ADE000,"Crysis Remastered",status-menus;nvdec,menus,2024-08-13 05:23:24.000 +0100972008234000,"Crystal Crisis",nvdec;status-playable,playable,2021-02-20 13:52:44.000 +,"Cthulhu Saves Christmas",status-playable,playable,2020-12-14 00:58:55.000 +010001600D1E8000,"Cube Creator X",status-menus;crash,menus,2021-11-25 08:53:28.000 +010082E00F1CE000,"Cubers: Arena",status-playable;nvdec;UE4,playable,2022-10-04 16:05:40.000 +010040D011D04000,"Cubicity",status-playable,playable,2021-06-14 14:19:51.000 +0100A5C00D162000,"Cuphead",status-playable,playable,2022-02-01 22:45:55.000 +0100F7E00DFC8000,"Cupid Parasite",gpu;status-ingame,ingame,2023-08-21 05:52:36.000 +,"Curious Cases",status-playable,playable,2020-08-10 09:30:48.000 +0100D4A0118EA000,"Curse of the Dead Gods",status-playable,playable,2022-08-30 12:25:38.000 +0100CE5014026000,"Curved Space",status-playable,playable,2023-01-14 22:03:50.000 +,"Cyber Protocol",nvdec;status-playable,playable,2020-09-28 14:47:40.000 +0100C1F0141AA000,"Cyber Shadow",status-playable,playable,2022-07-17 05:37:41.000 +01006B9013672000,"Cybxus Heart",gpu;slow;status-ingame,ingame,2022-01-15 05:00:49.000 +010063100B2C2000,"Cytus α",nvdec;status-playable,playable,2021-02-20 13:40:46.000 +0100B6400CA56000,"DAEMON X MACHINA",UE4;audout;ldn-untested;nvdec;status-playable,playable,2021-06-09 19:22:29.000 +010061300DF48000,"Dairoku: Ayakashimori",status-nothing;Needs Update;loader-allocator,nothing,2021-11-30 05:09:38.000 +0100BD2009A1C000,"Damsel",status-playable,playable,2022-09-06 11:54:39.000 +,"Dandara",status-playable,playable,2020-05-26 12:42:33.000 +,"Dandy Dungeon: Legend of Brave Yamada",status-playable,playable,2021-01-06 09:48:47.000 +01003ED0099B0000,"Danger Mouse",status-boots;crash;online,boots,2022-07-22 15:49:45.000 +,"Danger Scavenger -",nvdec;status-playable,playable,2021-04-17 15:53:04.000 +,"Danmaku Unlimited 3",status-playable,playable,2020-11-15 00:48:35.000 +,"Darius Cozmic Collection",status-playable,playable,2021-02-19 20:59:06.000 +010059C00BED4000,"Darius Cozmic Collection Special Edition",status-playable,playable,2022-07-22 16:26:50.000 +010015800F93C000,"Dariusburst - Another Chronicle EX+",online;status-playable,playable,2021-04-05 14:21:43.000 +01003D301357A000,"Dark Arcana: The Carnival",gpu;slow;status-ingame,ingame,2022-02-19 08:52:28.000 +010083A00BF6C000,"Dark Devotion",status-playable;nvdec,playable,2022-08-09 09:41:18.000 +,"Dark Quest 2",status-playable,playable,2020-11-16 21:34:52.000 +01004AB00A260000,"DARK SOULS™: REMASTERED",gpu;status-ingame;nvdec;online-broken,ingame,2024-04-09 19:47:58.000 +,"Dark Witch Music Episode: Rudymical",status-playable,playable,2020-05-22 09:44:44.000 +01008F1008DA6000,"Darkest Dungeon",status-playable;nvdec,playable,2022-07-22 18:49:18.000 +0100F2300D4BA000,"Darksiders Genesis",status-playable;nvdec;online-broken;UE4;ldn-broken,playable,2022-09-21 18:06:25.000 +010071800BA98000,"Darksiders II Deathinitive Edition",gpu;status-ingame;nvdec;online-broken,ingame,2024-06-26 00:37:25.000 +0100E1400BA96000,"Darksiders Warmastered Edition",status-playable;nvdec,playable,2023-03-02 18:08:09.000 +,"Darkwood",status-playable,playable,2021-01-08 21:24:06.000 +0100440012FFA000,"DARQ Complete Edition",audout;status-playable,playable,2021-04-07 15:26:21.000 +0100BA500B660000,"Darts Up",status-playable,playable,2021-04-14 17:22:22.000 +0100F0B0081DA000,"Dawn of the Breakers",status-menus;online-broken;vulkan-backend-bug,menus,2022-12-08 14:40:03.000 +,"Day and Night",status-playable,playable,2020-12-17 12:30:51.000 +,"De Blob",nvdec;status-playable,playable,2021-01-06 17:34:46.000 +,"de Blob 2",nvdec;status-playable,playable,2021-01-06 13:00:16.000 +01008E900471E000,"De Mambo",status-playable,playable,2021-04-10 12:39:40.000 +01004C400CF96000,"Dead by Daylight",status-boots;nvdec;online-broken;UE4,boots,2022-09-13 14:32:13.000 +0100646009FBE000,"Dead Cells",status-playable,playable,2021-09-22 22:18:49.000 +01004C500BD40000,"Dead End Job",status-playable;nvdec,playable,2022-09-19 12:48:44.000 +01009CC00C97C000,"DEAD OR ALIVE Xtreme 3 Scarlet",status-playable,playable,2022-07-23 17:05:06.000 +0100A5000F7AA000,"DEAD OR SCHOOL",status-playable;nvdec,playable,2022-09-06 12:04:09.000 +0100A24011F52000,"Dead Z Meat",UE4;services;status-ingame,ingame,2021-04-14 16:50:16.000 +,"Deadly Days",status-playable,playable,2020-11-27 13:38:55.000 +0100BAC011928000,"Deadly Premonition 2",status-playable,playable,2021-06-15 14:12:36.000 +0100EBE00F22E000,"DEADLY PREMONITION Origins",32-bit;status-playable;nvdec,playable,2024-03-25 12:47:46.000 +,"Dear Magi - Mahou Shounen Gakka -",status-playable,playable,2020-11-22 16:45:16.000 +,"Death and Taxes",status-playable,playable,2020-12-15 20:27:49.000 +010012B011AB2000,"Death Come True",nvdec;status-playable,playable,2021-06-10 22:30:49.000 +0100F3B00CF32000,"Death Coming",status-nothing;crash,nothing,2022-02-06 07:43:03.000 +0100AEC013DDA000,"Death end re;Quest",status-playable,playable,2023-07-09 12:19:54.000 +,"Death Mark",status-playable,playable,2020-12-13 10:56:25.000 +0100423009358000,"Death Road to Canada",gpu;audio;status-nothing;32-bit;crash,nothing,2023-06-28 15:39:26.000 +,"Death Squared",status-playable,playable,2020-12-04 13:00:15.000 +,"Death Tales",status-playable,playable,2020-12-17 10:55:52.000 +0100492011A8A000,"Death's Hangover",gpu;status-boots,boots,2023-08-01 22:38:06.000 +01009120119B4000,"Deathsmiles I・II",status-playable,playable,2024-04-08 19:29:00.000 +010034F00BFC8000,"Debris Infinity",nvdec;online;status-playable,playable,2021-05-28 12:14:39.000 +010027700FD2E000,"Decay of Logos",status-playable;nvdec,playable,2022-09-13 14:42:13.000 +0100EF0015A9A000,"Deedlit in Wonder Labyrinth",deadlock;status-ingame;Needs Update;Incomplete,ingame,2022-01-19 10:00:59.000 +01002CC0062B8000,"Deemo",status-playable,playable,2022-07-24 11:34:33.000 +01008B10132A2000,"DEEMO -Reborn-",status-playable;nvdec;online-broken,playable,2022-10-17 15:18:11.000 +010026800FA88000,"Deep Diving Adventures",status-playable,playable,2022-09-22 16:43:37.000 +,"Deep Ones",services;status-nothing,nothing,2020-04-03 02:54:19.000 +0100C3E00D68E000,"Deep Sky Derelicts Definitive Edition",status-playable,playable,2022-09-27 11:21:08.000 +,"Deep Space Rush",status-playable,playable,2020-07-07 23:30:33.000 +0100961011BE6000,"DeepOne",services-horizon;status-nothing;Needs Update,nothing,2024-01-18 15:01:05.000 +01008BB00F824000,"Defenders of Ekron - Definitive Edition",status-playable,playable,2021-06-11 16:31:03.000 +0100CDE0136E6000,"Defentron",status-playable,playable,2022-10-17 15:47:56.000 +,"Defunct",status-playable,playable,2021-01-08 21:33:46.000 +,"Degrees of Separation",status-playable,playable,2021-01-10 13:40:04.000 +010071C00CBA4000,"Dei Gratia no Rashinban",crash;status-nothing,nothing,2021-07-13 02:25:32.000 +,"Deleveled",slow;status-playable,playable,2020-12-15 21:02:29.000 +010023800D64A000,"DELTARUNE Chapter 1",status-playable,playable,2023-01-22 04:47:44.000 +010038B01D2CA000,"Dementium: The Ward (Dementium Remastered)",status-boots;crash,boots,2024-09-02 08:28:14.000 +0100AB600ACB4000,"Demetrios - The BIG Cynical Adventure",status-playable,playable,2021-06-04 12:01:01.000 +010099D00D1A4000,"Demolish & Build",status-playable,playable,2021-06-13 15:27:26.000 +010084600F51C000,"Demon Pit",status-playable;nvdec,playable,2022-09-19 13:35:15.000 +0100A2B00BD88000,"Demon's Crystals",status-nothing;crash;regression,nothing,2022-12-07 16:33:17.000 +,"Demon's Rise",status-playable,playable,2020-07-29 12:26:27.000 +0100E29013818000,"Demon's Rise - Lords of Chaos",status-playable,playable,2021-04-06 16:20:06.000 +0100161011458000,"Demon's Tier+",status-playable,playable,2021-06-09 17:25:36.000 +0100BE800E6D8000,"DEMON'S TILT",status-playable,playable,2022-09-19 13:22:46.000 +,"Demong Hunter",status-playable,playable,2020-12-12 15:27:08.000 +0100BC501355A000,"Densha de go!! Hashirou Yamanote Sen",status-playable;nvdec;UE4,playable,2023-11-09 07:47:58.000 +,"Depixtion",status-playable,playable,2020-10-10 18:52:37.000 +01000BF00B6BC000,"Deployment",slow;status-playable;online-broken,playable,2022-10-17 16:23:59.000 +010023600C704000,"Deponia",nvdec;status-playable,playable,2021-01-26 17:17:19.000 +,"DERU - The Art of Cooperation",status-playable,playable,2021-01-07 16:59:59.000 +,"Descenders",gpu;status-ingame,ingame,2020-12-10 15:22:36.000 +,"Desire remaster ver.",crash;status-boots,boots,2021-01-17 02:34:37.000 +,"DESTINY CONNECT",UE4;gpu;nvdec;status-ingame,ingame,2020-12-16 12:20:36.000 +01008BB011ED6000,"Destrobots",status-playable,playable,2021-03-06 14:37:05.000 +01009E701356A000,"Destroy All Humans!",gpu;status-ingame;nvdec;UE4,ingame,2023-01-14 22:23:53.000 +010030600E65A000,"Detective Dolittle",status-playable,playable,2021-03-02 14:03:59.000 +01009C0009842000,"Detective Gallo",status-playable;nvdec,playable,2022-07-24 11:51:04.000 +,"Detective Jinguji Saburo Prism of Eyes",status-playable,playable,2020-10-02 21:54:41.000 +010007500F27C000,"Detective Pikachu Returns",status-playable,playable,2023-10-07 10:24:59.000 +010031B00CF66000,"Devil Engine",status-playable,playable,2021-06-04 11:54:30.000 +01002F000E8F2000,"Devil Kingdom",status-playable,playable,2023-01-31 08:58:44.000 +,"Devil May Cry",nvdec;status-playable,playable,2021-01-04 19:43:08.000 +01007CF00D5BA000,"Devil May Cry 2",status-playable;nvdec,playable,2023-01-24 23:03:20.000 +01007B600D5BC000,"Devil May Cry 3 Special Edition",status-playable;nvdec,playable,2024-07-08 12:33:23.000 +01003C900EFF6000,"Devil Slayer - Raksasi",status-playable,playable,2022-10-26 19:42:32.000 +01009EA00A320000,"Devious Dungeon",status-playable,playable,2021-03-04 13:03:06.000 +,"Dex",nvdec;status-playable,playable,2020-08-12 16:48:12.000 +,"Dexteritrip",status-playable,playable,2021-01-06 12:51:12.000 +0100AFC00E06A000,"Dezatopia",online;status-playable,playable,2021-06-15 21:06:11.000 +0100726014352000,"Diablo 2 Resurrected",gpu;status-ingame;nvdec,ingame,2023-08-18 18:42:47.000 +01001B300B9BE000,"Diablo III: Eternal Collection",status-playable;online-broken;ldn-works,playable,2023-08-21 23:48:03.000 +0100F73011456000,"Diabolic",status-playable,playable,2021-06-11 14:45:08.000 +010027400BD24000,"DIABOLIK LOVERS CHAOS LINEAGE",gpu;status-ingame;Needs Update,ingame,2023-06-08 02:20:44.000 +0100BBF011394000,"Dicey Dungeons",gpu;audio;slow;status-ingame,ingame,2023-08-02 20:30:12.000 +,"Die for Valhalla!",status-playable,playable,2021-01-06 16:09:14.000 +0100BB900B5B4000,"Dies irae Amantes amentes For Nintendo Switch",status-nothing;32-bit;crash,nothing,2022-02-16 07:09:05.000 +0100A5A00DBB0000,"Dig Dog",gpu;status-ingame,ingame,2021-06-02 17:17:51.000 +010035D0121EC000,"Digerati Presents: The Dungeon Crawl Vol. 1",slow;status-ingame,ingame,2021-04-18 14:04:55.000 +010014E00DB56000,"Digimon Story Cyber Sleuth: Complete Edition",status-playable;nvdec;opengl,playable,2022-09-13 15:02:37.000 +0100F00014254000,"Digimon World: Next Order",status-playable,playable,2023-05-09 20:41:06.000 +,"Ding Dong XL",status-playable,playable,2020-07-14 16:13:19.000 +,"Dininho Adventures",status-playable,playable,2020-10-03 17:25:51.000 +010027E0158A6000,"Dininho Space Adventure",status-playable,playable,2023-01-14 22:43:04.000 +0100A8A013DA4000,"Dirt Bike Insanity",status-playable,playable,2021-01-31 13:27:38.000 +01004CB01378A000,"Dirt Trackin Sprint Cars",status-playable;nvdec;online-broken,playable,2022-10-17 16:34:56.000 +0100918014B02000,"Disagaea 6: Defiance of Destiny Demo",status-playable;demo,playable,2022-10-26 20:02:04.000 +010020700E2A2000,"Disaster Report 4: Summer Memories",status-playable;nvdec;UE4,playable,2022-09-27 19:41:31.000 +0100510004D2C000,"Disc Jam",UE4;ldn-untested;nvdec;online;status-playable,playable,2021-04-08 16:40:35.000 +,"Disco Dodgeball Remix",online;status-playable,playable,2020-09-28 23:24:49.000 +01004B100AF18000,"Disgaea 1 Complete",status-playable,playable,2023-01-30 21:45:23.000 +,"Disgaea 4 Complete Plus",gpu;slow;status-playable,playable,2020-02-18 10:54:28.000 +010068C00F324000,"Disgaea 4 Complete+ Demo",status-playable;nvdec,playable,2022-09-13 15:21:59.000 +01005700031AE000,"Disgaea 5 Complete",nvdec;status-playable,playable,2021-03-04 15:32:54.000 +0100ABC013136000,"Disgaea 6: Defiance of Destiny",deadlock;status-ingame,ingame,2023-04-15 00:50:32.000 +0100307011D80000,"Disgaea 6: Defiance of Destiny [ FG ] [ 魔界戦記ディスガイア6 ]",status-playable,playable,2021-06-08 13:20:33.000 +01005EE013888000,"Disgaea 6: Defiance of Destiny Demo [ 魔界戦記ディスガイア6 ]",gpu;status-ingame;demo,ingame,2022-12-06 15:27:59.000 +01000B70122A2000,"Disjunction",gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug,ingame,2024-04-28 23:55:24.000 +0100A2F00EEFC000,"Disney Classic Games: Aladdin and The Lion King",status-playable;online-broken,playable,2022-09-13 15:44:17.000 +0100DA201EBF8000,"Disney Epic Mickey: Rebrushed",status-ingame;crash,ingame,2024-09-26 22:11:51.000 +0100F0401435E000,"Disney SpeedStorm",services;status-boots,boots,2023-11-27 02:15:32.000 +,"Disney Tsum Tsum Festival",crash;status-menus,menus,2020-07-14 14:05:28.000 +,"DISTRAINT 2",status-playable,playable,2020-09-03 16:08:12.000 +,"DISTRAINT: Deluxe Edition",status-playable,playable,2020-06-15 23:42:24.000 +010027400CDC6000,"Divinity Original Sin 2",services;status-menus;crash;online-broken;regression,menus,2023-08-13 17:20:03.000 +01001770115C8000,"Dodo Peak",status-playable;nvdec;UE4,playable,2022-10-04 16:13:05.000 +01005A001489A000,"DoDonPachi Resurrection - 怒首領蜂大復活",status-ingame;32-bit;crash,ingame,2024-01-25 14:37:32.000 +,"Dogurai",status-playable,playable,2020-10-04 02:40:16.000 +010048100D51A000,"Dokapon Up! Mugen no Roulette",gpu;status-menus;Needs Update,menus,2022-12-08 19:39:10.000 +,"Dokuro",nvdec;status-playable,playable,2020-12-17 14:47:09.000 +010007200AC0E000,"Don't Die Mr. Robot DX",status-playable;nvdec,playable,2022-09-02 18:34:38.000 +0100E470067A8000,"Don't Knock Twice",status-playable,playable,2024-05-08 22:37:58.000 +0100C4D00B608000,"Don't Sink",gpu;status-ingame,ingame,2021-02-26 15:41:11.000 +0100751007ADA000,"Don't Starve",status-playable;nvdec,playable,2022-02-05 20:43:34.000 +010088B010DD2000,"Dongo Adventure",status-playable,playable,2022-10-04 16:22:26.000 +0100C1F0051B6000,"Donkey Kong Country Tropical Freeze",status-playable,playable,2024-08-05 16:46:10.000 +,"Doodle Derby",status-boots,boots,2020-12-04 22:51:48.000 +0100416004C00000,"DOOM",gpu;slow;status-ingame;nvdec;online-broken,ingame,2024-09-23 15:40:07.000 +010018900DD00000,"DOOM (1993)",status-menus;nvdec;online-broken,menus,2022-09-06 13:32:19.000 +01008CB01E52E000,"DOOM + DOOM II",status-playable;opengl;ldn-untested;LAN,playable,2024-09-12 07:06:01.000 +0100D4F00DD02000,"DOOM 2",nvdec;online;status-playable,playable,2021-06-03 20:10:01.000 +010029D00E740000,"DOOM 3",status-menus;crash,menus,2024-08-03 05:25:47.000 +,"DOOM 64",nvdec;status-playable;vulkan,playable,2020-10-13 23:47:28.000 +0100B1A00D8CE000,"DOOM Eternal",gpu;slow;status-ingame;nvdec;online-broken,ingame,2024-08-28 15:57:17.000 +01005ED00CD70000,"Door Kickers: Action Squad",status-playable;online-broken;ldn-broken,playable,2022-09-13 16:28:53.000 +,"DORAEMON STORY OF SEASONS",nvdec;status-playable,playable,2020-07-13 20:28:11.000 +,"Double Cross",status-playable,playable,2021-01-07 15:34:22.000 +,"Double Dragon & Kunio-Kun: Retro Brawler Bundle",status-playable,playable,2020-09-01 12:48:46.000 +01001AD00E49A000,"DOUBLE DRAGON Ⅲ: The Sacred Stones",online;status-playable,playable,2021-06-11 15:41:44.000 +01005B10132B2000,"Double Dragon Neon",gpu;audio;status-ingame;32-bit,ingame,2022-09-20 18:00:20.000 +,"Double Kick Heroes",gpu;status-ingame,ingame,2020-10-03 14:33:59.000 +0100A5D00C7C0000,"Double Pug Switch",status-playable;nvdec,playable,2022-10-10 10:59:35.000 +0100FC000EE10000,"Double Switch - 25th Anniversary Edition",status-playable;nvdec,playable,2022-09-19 13:41:50.000 +0100B6600FE06000,"Down to Hell",gpu;status-ingame;nvdec,ingame,2022-09-19 14:01:26.000 +010093D00C726000,"Downwell",status-playable,playable,2021-04-25 20:05:24.000 +0100ED000D390000,"Dr Kawashima's Brain Training",services;status-ingame,ingame,2023-06-04 00:06:46.000 +,"Dracula's Legacy",nvdec;status-playable,playable,2020-12-10 13:24:25.000 +,"DragoDino",gpu;nvdec;status-ingame,ingame,2020-08-03 20:49:16.000 +0100DBC00BD5A000,"Dragon Audit",crash;status-ingame,ingame,2021-05-16 14:24:46.000 +0100A250097F0000,"DRAGON BALL FighterZ",UE4;ldn-broken;nvdec;online;status-playable,playable,2021-06-11 16:19:04.000 +010078D000F88000,"Dragon Ball Xenoverse 2",gpu;status-ingame;nvdec;online;ldn-untested,ingame,2022-07-24 12:31:01.000 +010051C0134F8000,"DRAGON BALL Z: KAKAROT + A NEW POWER AWAKENS SET",status-playable;vulkan-backend-bug,playable,2024-08-28 00:03:50.000 +010089700150E000,"Dragon Marked for Death: Frontline Fighters (Empress & Warrior)",status-playable;ldn-untested;audout,playable,2022-03-10 06:44:34.000 +0100EFC00EFB2000,"Dragon Quest",gpu;status-boots,boots,2021-11-09 03:31:32.000 +010008900705C000,"Dragon Quest Builders",gpu;status-ingame;nvdec,ingame,2023-08-14 09:54:36.000 +010042000A986000,"Dragon Quest Builders 2",status-playable,playable,2024-04-19 16:36:38.000 +0100CD3000BDC000,"Dragon Quest Heroes I + II (JP)",nvdec;status-playable,playable,2021-04-08 14:27:16.000 +010062200EFB4000,"Dragon Quest II: Luminaries of the Legendary Line",status-playable,playable,2022-09-13 16:44:11.000 +01003E601E324000,"Dragon Quest III HD-2D Remake",status-ingame;vulkan-backend-bug;UE4;audout;mac-bug,ingame,2025-01-07 04:10:27.000 +010015600EFB6000,"Dragon Quest III: The Seeds of Salvation",gpu;status-boots,boots,2021-11-09 03:38:34.000 +0100A77018EA0000,"DRAGON QUEST MONSTERS: The Dark Prince",status-playable,playable,2023-12-29 16:10:05.000 +0100217014266000,"Dragon Quest Treasures",gpu;status-ingame;UE4,ingame,2023-05-09 11:16:52.000 +0100E2E0152E4000,"Dragon Quest X Awakening Five Races Offline",status-playable;nvdec;UE4,playable,2024-08-20 10:04:24.000 +01006C300E9F0000,"Dragon Quest XI S: Echoes of an Elusive Age - Definitive Edition",status-playable;UE4,playable,2021-11-27 12:27:11.000 +010032C00AC58000,"Dragon's Dogma: Dark Arisen",status-playable,playable,2022-07-24 12:58:33.000 +,"Dragon's Lair Trilogy",nvdec;status-playable,playable,2021-01-13 22:12:07.000 +,"DragonBlaze for Nintendo Switch",32-bit;status-playable,playable,2020-10-14 11:11:28.000 +,"DragonFangZ",status-playable,playable,2020-09-28 21:35:18.000 +,"Dragons Dawn of New Riders",nvdec;status-playable,playable,2021-01-27 20:05:26.000 +0100F7800A434000,"Drawful 2",status-ingame,ingame,2022-07-24 13:50:21.000 +0100B7E0102E4000,"Drawngeon: Dungeons of Ink and Paper",gpu;status-ingame,ingame,2022-09-19 15:41:25.000 +,"Dream",status-playable,playable,2020-12-15 19:55:07.000 +,"Dream Alone - 0100AA0093DC000",nvdec;status-playable,playable,2021-01-27 19:41:50.000 +,"DreamBall",UE4;crash;gpu;status-ingame,ingame,2020-08-05 14:45:25.000 +010058B00F3C0000,"Dreaming Canvas",UE4;gpu;status-ingame,ingame,2021-06-13 22:50:07.000 +0100D24013466000,"Dreamo",status-playable;UE4,playable,2022-10-17 18:25:28.000 +0100236011B4C000,"DreamWorks Spirit Lucky's Big Adventure",status-playable,playable,2022-10-27 13:30:52.000 +010058C00A916000,"Drone Fight",status-playable,playable,2022-07-24 14:31:56.000 +010052000A574000,"Drowning",status-playable,playable,2022-07-25 14:28:26.000 +,"Drums",status-playable,playable,2020-12-17 17:21:51.000 +01005BC012C66000,"Duck Life Adventure",status-playable,playable,2022-10-10 11:27:03.000 +01007EF00CB88000,"Duke Nukem 3D: 20th Anniversary World Tour",32-bit;status-playable;ldn-untested,playable,2022-08-19 22:22:40.000 +010068D0141F2000,"Dull Grey",status-playable,playable,2022-10-27 13:40:38.000 +0100926013600000,"Dungeon Nightmares 1 + 2 Collection",status-playable,playable,2022-10-17 18:54:22.000 +010034300F0E2000,"Dungeon of the Endless",nvdec;status-playable,playable,2021-05-27 19:16:26.000 +,"Dungeon Stars",status-playable,playable,2021-01-18 14:28:37.000 +,"Dungeons & Bombs",status-playable,playable,2021-04-06 12:46:22.000 +0100EC30140B6000,"Dunk Lords",status-playable,playable,2024-06-26 00:07:26.000 +010011C00E636000,"Dusk Diver",status-boots;crash;UE4,boots,2021-11-06 09:01:30.000 +0100B6E00A420000,"Dust: An Elysian Tail",status-playable,playable,2022-07-25 15:28:12.000 +,"Dustoff Z",status-playable,playable,2020-12-04 23:22:29.000 +01008c8012920000,"Dying Light: Platinum Edition",services-horizon;status-boots,boots,2024-03-11 10:43:32.000 +,"Dyna Bomb",status-playable,playable,2020-06-07 13:26:55.000 +0100E9A00CB30000,"DYNASTY WARRIORS 8: Xtreme Legends Definitive Edition",status-playable;nvdec,playable,2024-06-26 00:16:30.000 +010008900BC5A000,"DYSMANTLE",gpu;status-ingame,ingame,2024-07-15 16:24:12.000 +0100BDB01A0E6000,"EA Sports FC 24",status-boots,boots,2023-10-04 18:32:59.000 +010054E01D878000,"EA SPORTS FC 25",status-ingame;crash,ingame,2024-09-25 21:07:50.000 +01001C8016B4E000,"EA SPORTS FIFA 23 Nintendo Switch™ Legacy Edition",gpu;status-ingame;crash,ingame,2024-06-10 23:33:05.000 +010037400C7DA000,"Eagle Island",status-playable,playable,2021-04-10 13:15:42.000 +0100B9E012992000,"Earth Defense Force World Brothers ( ま~るい地球が四角くなった!? デジボク地球防衛軍 )",status-playable;UE4,playable,2022-12-07 12:59:16.000 +0100298014030000,"Earth Defense Force: World Brothers",status-playable;UE4,playable,2022-10-27 14:13:31.000 +01009B7006C88000,"EARTH WARS",status-playable,playable,2021-06-05 11:18:33.000 +0100DFC00E472000,"Earthfall: Alien Horde",status-playable;nvdec;UE4;ldn-untested,playable,2022-09-13 17:32:37.000 +01006E50042EA000,"Earthlock",status-playable,playable,2021-06-05 11:51:02.000 +0100A2E00BB0C000,"EarthNight",status-playable,playable,2022-09-19 21:02:20.000 +0100DCE00B756000,"Earthworms",status-playable,playable,2022-07-25 16:28:55.000 +,"Earthworms Demo",status-playable,playable,2021-01-05 16:57:11.000 +0100ECF01800C000,"Easy Come Easy Golf",status-playable;online-broken;regression,playable,2024-04-04 16:15:00.000 +0100A9B009678000,"EAT BEAT DEADSPIKE-san",audio;status-playable;Needs Update,playable,2022-12-02 19:25:29.000 +0100BCA016636000,"eBaseball Powerful Pro Yakyuu 2022",gpu;services-horizon;status-nothing;crash,nothing,2024-05-26 23:07:19.000 +,"Eclipse: Edge of Light",status-playable,playable,2020-08-11 23:06:29.000 +,"eCrossminton",status-playable,playable,2020-07-11 18:24:27.000 +0100ABE00DB4E000,"Edna & Harvey: Harvey's New Eyes",nvdec;status-playable,playable,2021-01-26 14:36:08.000 +01004F000B716000,"Edna & Harvey: The Breakout - Anniversary Edition",status-ingame;crash;nvdec,ingame,2022-08-01 16:59:56.000 +01002550129F0000,"Effie",status-playable,playable,2022-10-27 14:36:39.000 +,"Ego Protocol",nvdec;status-playable,playable,2020-12-16 20:16:35.000 +,"Eiga Sumikko Gurashi Tobidasu Ehon to Himitsu no Ko Game de Asobo Ehon no Sekai",status-playable,playable,2020-11-12 00:11:50.000 +01003AD013BD2000,"Eight Dragons",status-playable;nvdec,playable,2022-10-27 14:47:28.000 +010020A01209C000,"El Hijo - A Wild West Tale",nvdec;status-playable,playable,2021-04-19 17:44:08.000 +,"Elden: Path of the Forgotten",status-playable,playable,2020-12-15 00:33:19.000 +,"ELEA: Paradigm Shift",UE4;crash;status-nothing,nothing,2020-10-04 19:07:43.000 +0100A6700AF10000,"Element",status-playable,playable,2022-07-25 17:17:16.000 +0100128003A24000,"Elliot Quest",status-playable,playable,2022-07-25 17:46:14.000 +,"Elrador Creatures",slow;status-playable,playable,2020-12-12 12:35:35.000 +010041A00FEC6000,"Ember",status-playable;nvdec,playable,2022-09-19 21:16:11.000 +,"Embracelet",status-playable,playable,2020-12-04 23:45:00.000 +010017b0102a8000,"Emma: Lost in Memories",nvdec;status-playable,playable,2021-01-28 16:19:10.000 +010068300E08E000,"Enchanted in the Moonlight - Kiryu, Chikage & Yukinojo",gpu;status-ingame;nvdec,ingame,2022-11-20 16:18:45.000 +,"Enchanting Mahjong Match",gpu;status-ingame,ingame,2020-04-17 22:01:31.000 +01004F3011F92000,"Endless Fables: Dark Moor",gpu;nvdec;status-ingame,ingame,2021-03-07 15:31:03.000 +010067B017588000,"Endless Ocean Luminous",services-horizon;status-ingame;crash,ingame,2024-05-30 02:05:57.000 +0100B8700BD14000,"Energy Cycle Edge",services;status-ingame,ingame,2021-11-30 05:02:31.000 +,"Energy Invasion",status-playable,playable,2021-01-14 21:32:26.000 +0100C6200A0AA000,"Enigmatis 2: The Mists of Ravenwood",crash;regression;status-boots,boots,2021-06-06 15:15:30.000 +01009D60076F6000,"Enter the Gungeon",status-playable,playable,2022-07-25 20:28:33.000 +0100262009626000,"Epic Loon",status-playable;nvdec,playable,2022-07-25 22:06:13.000 +01000FA0149B6000,"EQI",status-playable;nvdec;UE4,playable,2022-10-27 16:42:32.000 +0100E95010058000,"EQQO",UE4;nvdec;status-playable,playable,2021-06-13 23:10:51.000 +,"Escape First",status-playable,playable,2020-10-20 22:46:53.000 +010021201296A000,"Escape First 2",status-playable,playable,2021-03-24 11:59:41.000 +0100FEF00F0AA000,"Escape from Chernobyl",status-boots;crash,boots,2022-09-19 21:36:58.000 +010023E013244000,"Escape from Life Inc",status-playable,playable,2021-04-19 17:34:09.000 +,"Escape from Tethys",status-playable,playable,2020-10-14 22:38:25.000 +,"Escape Game Fort Boyard",status-playable,playable,2020-07-12 12:45:43.000 +0100F9600E746000,"ESP Ra.De. Psi",audio;slow;status-ingame,ingame,2024-03-07 15:05:08.000 +010073000FE18000,"Esports powerful pro yakyuu 2020",gpu;status-ingame;crash;Needs More Attention,ingame,2024-04-29 05:34:14.000 +01004F9012FD8000,"Estranged: The Departure",status-playable;nvdec;UE4,playable,2022-10-24 10:37:58.000 +,"Eternum Ex",status-playable,playable,2021-01-13 20:28:32.000 +010092501EB2C000,"Europa (Demo)",gpu;status-ingame;crash;UE4,ingame,2024-04-23 10:47:12.000 +01007BE0160D6000,"EVE ghost enemies",gpu;status-ingame,ingame,2023-01-14 03:13:30.000 +010095E01581C000,"even if TEMPEST",gpu;status-ingame,ingame,2023-06-22 23:50:25.000 +,"Event Horizon: Space Defense",status-playable,playable,2020-07-31 20:31:24.000 +0100DCF0093EC000,"EVERSPACE",status-playable;UE4,playable,2022-08-14 01:16:24.000 +01006F900BF8E000,"Everybody 1-2-Switch!",services;deadlock;status-nothing,nothing,2023-07-01 05:52:55.000 +,"Evil Defenders",nvdec;status-playable,playable,2020-09-28 17:11:00.000 +01006A800FA22000,"Evolution Board Game",online;status-playable,playable,2021-01-20 22:37:56.000 +0100F2D00C7DE000,"Exception",status-playable;online-broken,playable,2022-09-20 12:47:10.000 +0100DD30110CC000,"Exit the Gungeon",status-playable,playable,2022-09-22 17:04:43.000 +0100A82013976000,"Exodemon",status-playable,playable,2022-10-27 20:17:52.000 +0100FA800A1F4000,"Exorder",nvdec;status-playable,playable,2021-04-15 14:17:20.000 +01009B7010B42000,"Explosive Jake",status-boots;crash,boots,2021-11-03 07:48:32.000 +0100EFE00A3C2000,"Eyes: The Horror Game",status-playable,playable,2021-01-20 21:59:46.000 +0100E3D0103CE000,"Fable of Fairy Stones",status-playable,playable,2021-05-05 21:04:54.000 +01004200189F4000,"Factorio",deadlock;status-boots,boots,2024-06-11 19:26:16.000 +010073F0189B6000,"Fae Farm",status-playable,playable,2024-08-25 15:12:12.000 +010069100DB08000,"Faeria",status-menus;nvdec;online-broken,menus,2022-10-04 16:44:41.000 +01008A6009758000,"Fairune Collection",status-playable,playable,2021-06-06 15:29:56.000 +0100F6D00B8F2000,"Fairy Fencer F™: Advent Dark Force",status-ingame;32-bit;crash;nvdec,ingame,2023-04-16 03:53:48.000 +0100CF900FA3E000,"Fairy Tail",status-playable;nvdec,playable,2022-10-04 23:00:32.000 +01005A600BE60000,"Fall Of Light - Darkest Edition",slow;status-ingame;nvdec,ingame,2024-07-24 04:19:26.000 +0100AA801258C000,"Fallen Legion Revenants",status-menus;crash,menus,2021-11-25 08:53:20.000 +0100D670126F6000,"Famicom Detective Club: The Girl Who Stands Behind",status-playable;nvdec,playable,2022-10-27 20:41:40.000 +010033F0126F4000,"Famicom Detective Club: The Missing Heir",status-playable;nvdec,playable,2022-10-27 20:56:23.000 +010060200FC44000,"Family Feud 2021",status-playable;online-broken,playable,2022-10-10 11:42:21.000 +0100034012606000,"Family Mysteries: Poisonous Promises",audio;status-menus;crash,menus,2021-11-26 12:35:06.000 +010017C012726000,"Fantasy Friends",status-playable,playable,2022-10-17 19:42:39.000 +0100767008502000,"Fantasy Hero Unsigned Legacy",status-playable,playable,2022-07-26 12:28:52.000 +0100944003820000,"Fantasy Strike",online;status-playable,playable,2021-02-27 01:59:18.000 +01000E2012F6E000,"Fantasy Tavern Sextet -Vol.1 New World Days-",gpu;status-ingame;crash;Needs Update,ingame,2022-12-05 16:48:00.000 +,"Fantasy Tavern Sextet -Vol.2 Adventurer's Days-",gpu;slow;status-ingame;crash,ingame,2021-11-06 02:57:29.000 +010022700E7D6000,"FAR: Lone Sails",status-playable,playable,2022-09-06 16:33:05.000 +,"Farabel",status-playable,playable,2020-08-03 17:47:28.000 +,"Farm Expert 2019 for Nintendo Switch",status-playable,playable,2020-07-09 21:42:57.000 +01000E400ED98000,"Farm Mystery",status-playable;nvdec,playable,2022-09-06 16:46:47.000 +,"Farm Together",status-playable,playable,2021-01-19 20:01:19.000 +0100EB600E914000,"Farming Simulator 20",nvdec;status-playable,playable,2021-06-13 10:52:44.000 +,"Farming Simulator Nintendo Switch Edition",nvdec;status-playable,playable,2021-01-19 14:46:44.000 +0100E99019B3A000,"Fashion Dreamer",status-playable,playable,2023-11-12 06:42:52.000 +01009510001CA000,"Fast RMX",slow;status-ingame;crash;ldn-partial,ingame,2024-06-22 20:48:58.000 +0100BEB015604000,"Fatal Frame: Maiden of Black Water",status-playable,playable,2023-07-05 16:01:40.000 +0100DAE019110000,"Fatal Frame: Mask of the Lunar Eclipse",status-playable;Incomplete,playable,2024-04-11 06:01:30.000 +010053E002EA2000,"Fate/EXTELLA",gpu;status-ingame;nvdec;online-broken;vulkan-backend-bug;opengl-backend-bug,ingame,2023-04-24 23:37:55.000 +010051400B17A000,"Fate/EXTELLA LINK",ldn-untested;nvdec;status-playable,playable,2021-01-27 00:45:50.000 +,"fault - milestone one",nvdec;status-playable,playable,2021-03-24 10:41:49.000 +,"Fear Effect Sedna",nvdec;status-playable,playable,2021-01-19 13:10:33.000 +0100F5501CE12000,"Fearmonium",status-boots;crash,boots,2024-03-06 11:26:11.000 +0100E4300CB3E000,"Feather",status-playable,playable,2021-06-03 14:11:27.000 +,"Felix the Reaper",nvdec;status-playable,playable,2020-10-20 23:43:03.000 +,"Feudal Alloy",status-playable,playable,2021-01-14 08:48:14.000 +01008D900B984000,"FEZ",gpu;status-ingame,ingame,2021-04-18 17:10:16.000 +01007510040E8000,"FIA European Truck Racing Championship",status-playable;nvdec,playable,2022-09-06 17:51:59.000 +0100F7B002340000,"FIFA 18",gpu;status-ingame;online-broken;ldn-untested,ingame,2022-07-26 12:43:59.000 +0100FFA0093E8000,"FIFA 19",gpu;status-ingame;nvdec;online-broken;ldn-untested,ingame,2022-07-26 13:07:07.000 +01005DE00D05C000,"FIFA 20 Legacy Edition",gpu;status-ingame;nvdec;online-broken;ldn-untested,ingame,2022-09-13 17:57:20.000 +01000A001171A000,"FIFA 21 Legacy Edition",gpu;status-ingame;online-broken,ingame,2023-12-11 22:10:19.000 +0100216014472000,"FIFA 22 Legacy Edition",gpu;status-ingame,ingame,2024-03-02 14:13:48.000 +01006980127F0000,"Fight Crab",status-playable;online-broken;ldn-untested,playable,2022-10-05 10:24:04.000 +,"Fight of Animals",online;status-playable,playable,2020-10-15 15:08:28.000 +,"Fight'N Rage",status-playable,playable,2020-06-16 23:35:19.000 +0100D02014048000,"Fighting EX Layer Another Dash",status-playable;online-broken;UE4,playable,2024-04-07 10:22:33.000 +0100118009C68000,"Figment",nvdec;status-playable,playable,2021-01-27 19:36:05.000 +,"Fill-a-Pix: Phil's Epic Adventure",status-playable,playable,2020-12-22 13:48:22.000 +0100C3A00BB76000,"Fimbul",status-playable;nvdec,playable,2022-07-26 13:31:47.000 +,"Fin and the Ancient Mystery",nvdec;status-playable,playable,2020-12-17 16:40:39.000 +0100CE4010AAC000,"FINAL FANTASY CRYSTAL CHRONICLES Remastered Edition",status-playable,playable,2023-04-02 23:39:12.000 +01000EA014150000,"FINAL FANTASY I",status-nothing;crash,nothing,2024-09-05 20:55:30.000 +01006B7014156000,"FINAL FANTASY II",status-nothing;crash,nothing,2024-04-13 19:18:04.000 +01006F000B056000,"FINAL FANTASY IX",audout;nvdec;status-playable,playable,2021-06-05 11:35:00.000 +0100AA201415C000,"FINAL FANTASY V",status-playable,playable,2023-04-26 01:11:55.000 +0100A5B00BDC6000,"Final Fantasy VII",status-playable,playable,2022-12-09 17:03:30.000 +01008B900DC0A000,"FINAL FANTASY VIII REMASTERED",status-playable;nvdec,playable,2023-02-15 10:57:48.000 +0100BC300CB48000,"FINAL FANTASY X/X-2 HD REMASTER",gpu;status-ingame,ingame,2022-08-16 20:29:26.000 +0100EB100AB42000,"FINAL FANTASY XII THE ZODIAC AGE",status-playable;opengl;vulkan-backend-bug,playable,2024-08-11 07:01:54.000 +,"FINAL FANTASY XV POCKET EDITION HD",status-playable,playable,2021-01-05 17:52:08.000 +,"Final Light, The Prison",status-playable,playable,2020-07-31 21:48:44.000 +0100FF100FB68000,"Finding Teddy 2 : Definitive Edition",gpu;status-ingame,ingame,2024-04-19 16:51:33.000 +,"Fire & Water",status-playable,playable,2020-12-15 15:43:20.000 +0100F15003E64000,"Fire Emblem Warriors",status-playable;nvdec,playable,2023-05-10 01:53:10.000 +010071F0143EA000,"Fire Emblem Warriors: Three Hopes",gpu;status-ingame;nvdec,ingame,2024-05-01 07:07:42.000 +0100A6301214E000,"Fire Emblem: Engage",status-playable;amd-vendor-bug;mac-bug,playable,2024-09-01 23:37:26.000 +0100A12011CC8000,"Fire Emblem: Shadow Dragon and the Blade of Light",status-playable,playable,2022-10-17 19:49:14.000 +010055D009F78000,"Fire Emblem: Three Houses",status-playable;online-broken,playable,2024-09-14 23:53:50.000 +010025C014798000,"Fire: Ungh's Quest",status-playable;nvdec,playable,2022-10-27 21:41:26.000 +0100434003C58000,"Firefighters - The Simulation",status-playable,playable,2021-02-19 13:32:05.000 +,"Firefighters: Airport Fire Department",status-playable,playable,2021-02-15 19:17:00.000 +0100AC300919A000,"Firewatch",status-playable,playable,2021-06-03 10:56:38.000 +,"Firework",status-playable,playable,2020-12-04 20:20:09.000 +0100DEB00ACE2000,"Fishing Star World Tour",status-playable,playable,2022-09-13 19:08:51.000 +010069800D292000,"Fishing Universe Simulator",status-playable,playable,2021-04-15 14:00:43.000 +0100807008868000,"Fit Boxing",status-playable,playable,2022-07-26 19:24:55.000 +,"Fitness Boxing",services;status-ingame,ingame,2020-05-17 14:00:48.000 +0100E7300AAD4000,"Fitness Boxing",status-playable,playable,2021-04-14 20:33:33.000 +0100073011382000,"Fitness Boxing 2: Rhythm & Exercise",crash;status-ingame,ingame,2021-04-14 20:40:48.000 +,"Five Dates",nvdec;status-playable,playable,2020-12-11 15:17:11.000 +0100B6200D8D2000,"Five Nights at Freddy's",status-playable,playable,2022-09-13 19:26:36.000 +01004EB00E43A000,"Five Nights at Freddy's 2",status-playable,playable,2023-02-08 15:48:24.000 +010056100E43C000,"Five Nights at Freddy's 3",status-playable,playable,2022-09-13 20:58:07.000 +010083800E43E000,"Five Nights at Freddy's 4",status-playable,playable,2023-08-19 07:28:03.000 +0100F7901118C000,"Five Nights at Freddy's: Help Wanted",status-playable;UE4,playable,2022-09-29 12:40:09.000 +01003B200E440000,"Five Nights at Freddy's: Sister Location",status-playable,playable,2023-10-06 09:00:58.000 +01009060193C4000,"Five Nights At Freddy’s Security Breach",gpu;status-ingame;crash;mac-bug,ingame,2023-04-23 22:33:28.000 +010038200E088000,"Flan",status-ingame;crash;regression,ingame,2021-11-17 07:39:28.000 +,"Flashback",nvdec;status-playable,playable,2020-05-14 13:57:29.000 +0100C53004C52000,"Flat Heroes",gpu;status-ingame,ingame,2022-07-26 19:37:37.000 +,"Flatland: Prologue",status-playable,playable,2020-12-11 20:41:12.000 +,"Flinthook",online;status-playable,playable,2021-03-25 20:42:29.000 +010095A004040000,"Flip Wars",services;status-ingame;ldn-untested,ingame,2022-05-02 15:39:18.000 +01009FB002B2E000,"Flipping Death",status-playable,playable,2021-02-17 16:12:30.000 +,"Flood of Light",status-playable,playable,2020-05-15 14:15:25.000 +0100DF9005E7A000,"Floor Kids",status-playable;nvdec,playable,2024-08-18 19:38:49.000 +,"Florence",status-playable,playable,2020-09-05 01:22:30.000 +,"Flowlines VS",status-playable,playable,2020-12-17 17:01:53.000 +,"Flux8",nvdec;status-playable,playable,2020-06-19 20:55:11.000 +,"Fly O'Clock VS",status-playable,playable,2020-05-17 13:39:52.000 +,"Fly Punch Boom!",online;status-playable,playable,2020-06-21 12:06:11.000 +0100419013A8A000,"Flying Hero X",status-menus;crash,menus,2021-11-17 07:46:58.000 +,"Fobia",status-playable,playable,2020-12-14 21:05:23.000 +0100F3900D0F0000,"Food Truck Tycoon",status-playable,playable,2022-10-17 20:15:55.000 +01007CF013152000,"Football Manager 2021 Touch",gpu;status-ingame,ingame,2022-10-17 20:08:23.000 +0100EDC01990E000,"FOOTBALL MANAGER 2023 TOUCH",gpu;status-ingame,ingame,2023-08-01 03:40:53.000 +010097F0099B4000,"Football Manager Touch 2018",status-playable,playable,2022-07-26 20:17:56.000 +010069400B6BE000,"For The King",nvdec;status-playable,playable,2021-02-15 18:51:44.000 +01001D200BCC4000,"Forager",status-menus;crash,menus,2021-11-24 07:10:17.000 +0100AE001256E000,"Foreclosed",status-ingame;crash;Needs More Attention;nvdec,ingame,2022-12-06 14:41:12.000 +,"Foregone",deadlock;status-ingame,ingame,2020-12-17 15:26:53.000 +010059E00B93C000,"Forgotton Anne",nvdec;status-playable,playable,2021-02-15 18:28:07.000 +,"FORMA.8",nvdec;status-playable,playable,2020-11-15 01:04:32.000 +,"Fort Boyard",nvdec;slow;status-playable,playable,2020-05-15 13:22:53.000 +010025400AECE000,"Fortnite",services-horizon;status-nothing,nothing,2024-04-06 18:23:25.000 +0100CA500756C000,"Fossil Hunters",status-playable;nvdec,playable,2022-07-27 11:37:20.000 +01008A100A028000,"FOX n FORESTS",status-playable,playable,2021-02-16 14:27:49.000 +,"FoxyLand",status-playable,playable,2020-07-29 20:55:20.000 +,"FoxyLand 2",status-playable,playable,2020-08-06 14:41:30.000 +01004200099F2000,"Fractured Minds",status-playable,playable,2022-09-13 21:21:40.000 +0100F1A00A5DC000,"FRAMED COLLECTION",status-playable;nvdec,playable,2022-07-27 11:48:15.000 +0100AC40108D8000,"Fred3ric",status-playable,playable,2021-04-15 13:30:31.000 +,"Frederic 2",status-playable,playable,2020-07-23 16:44:37.000 +,"Frederic: Resurrection of Music",nvdec;status-playable,playable,2020-07-23 16:59:53.000 +010082B00EE50000,"Freedom Finger",nvdec;status-playable,playable,2021-06-09 19:31:30.000 +,"Freedom Planet",status-playable,playable,2020-05-14 12:23:06.000 +010003F00BD48000,"Friday the 13th: Killer Puzzle",status-playable,playable,2021-01-28 01:33:38.000 +010092A00C4B6000,"Friday the 13th: The Game",status-playable;nvdec;online-broken;UE4,playable,2022-09-06 17:33:27.000 +0100F200178F4000,"Front Mission 1st Remake",status-playable,playable,2023-06-09 07:44:24.000 +,"Frontline Zed",status-playable,playable,2020-10-03 12:55:59.000 +0100B5300B49A000,"Frost",status-playable,playable,2022-07-27 12:00:36.000 +,"Fruitfall Crush",status-playable,playable,2020-10-20 11:33:33.000 +,"FullBlast",status-playable,playable,2020-05-19 10:34:13.000 +010002F00CC20000,"FUN! FUN! Animal Park",status-playable,playable,2021-04-14 17:08:52.000 +,"FunBox Party",status-playable,playable,2020-05-15 12:07:02.000 +,"Funghi Puzzle Funghi Explosion",status-playable,playable,2020-11-23 14:17:41.000 +01008E10130F8000,"Funimation",gpu;status-boots,boots,2021-04-08 13:08:17.000 +,"Funny Bunny Adventures",status-playable,playable,2020-08-05 13:46:56.000 +01000EC00AF98000,"Furi",status-playable,playable,2022-07-27 12:21:20.000 +01000EC00AF98000,"Furi Definitive Edition",status-playable,playable,2022-07-27 12:35:08.000 +0100A6B00D4EC000,"Furwind",status-playable,playable,2021-02-19 19:44:08.000 +,"Fury Unleashed",crash;services;status-ingame,ingame,2020-10-18 11:52:40.000 +,"Fury Unleashed Demo",status-playable,playable,2020-10-08 20:09:21.000 +0100E1F013674000,"FUSER",status-playable;nvdec;UE4,playable,2022-10-17 20:58:32.000 +,"Fushigi no Gensokyo Lotus Labyrinth",Needs Update;audio;gpu;nvdec;status-ingame,ingame,2021-01-20 15:30:02.000 +01003C300B274000,"Futari de! Nyanko Daisensou",status-playable,playable,2024-01-05 22:26:52.000 +010055801134E000,"FUZE Player",status-ingame;online-broken;vulkan-backend-bug,ingame,2022-10-18 12:23:53.000 +0100EAD007E98000,"FUZE4",status-playable;vulkan-backend-bug,playable,2022-09-06 19:25:01.000 +010067600F1A0000,"FuzzBall",crash;status-nothing,nothing,2021-03-29 20:13:21.000 +,"G-MODE Archives 06 The strongest ever Julia Miyamoto",status-playable,playable,2020-10-15 13:06:26.000 +,"G.I. Joe Operation Blackout",UE4;crash;status-boots,boots,2020-11-21 12:37:44.000 +,"Gal Metal - 01B8000C2EA000",status-playable,playable,2022-07-27 20:57:48.000 +010024700901A000,"Gal*Gun 2",status-playable;nvdec;UE4,playable,2022-07-27 12:45:37.000 +0100047013378000,"Gal*Gun Returns [ ぎゃる☆がん りたーんず ]",status-playable;nvdec,playable,2022-10-17 23:50:46.000 +0100C9800A454000,"GALAK-Z: Variant S",status-boots;online-broken,boots,2022-07-29 11:59:12.000 +0100C62011050000,"Game Boy - Nintendo Switch Online",status-playable,playable,2023-03-21 12:43:48.000 +010012F017576000,"Game Boy Advance - Nintendo Switch Online",status-playable,playable,2023-02-16 20:38:15.000 +0100FA5010788000,"Game Builder Garage",status-ingame,ingame,2024-04-20 21:46:22.000 +,"Game Dev Story",status-playable,playable,2020-05-20 00:00:38.000 +01006BD00F8C0000,"Game Doraemon Nobita no Shin Kyoryu",gpu;status-ingame,ingame,2023-02-27 02:03:28.000 +,"Garage",status-playable,playable,2020-05-19 20:59:53.000 +010061E00E8BE000,"Garfield Kart Furious Racing",status-playable;ldn-works;loader-allocator,playable,2022-09-13 21:40:25.000 +,"Gates of Hell",slow;status-playable,playable,2020-10-22 12:44:26.000 +010025500C098000,"Gato Roboto",status-playable,playable,2023-01-20 15:04:11.000 +010065E003FD8000,"Gear.Club Unlimited",status-playable,playable,2021-06-08 13:03:19.000 +010072900AFF0000,"Gear.Club Unlimited 2",status-playable;nvdec;online-broken,playable,2022-07-29 12:52:16.000 +01000F000D9F0000,"Geki Yaba Runner Anniversary Edition",status-playable,playable,2021-02-19 18:59:07.000 +,"Gekido Kintaro's Revenge",status-playable,playable,2020-10-27 12:44:05.000 +01009D000AF3A000,"Gelly Break",UE4;status-playable,playable,2021-03-03 16:04:02.000 +01001A4008192000,"Gem Smashers",nvdec;status-playable,playable,2021-06-08 13:40:51.000 +,"Genetic Disaster",status-playable,playable,2020-06-19 21:41:12.000 +0100D7E0110B2000,"Genkai Tokki Moero Crystal H- 極限凸起 萌情水晶 H - 한계돌파 모에로크리스탈 H",32-bit;status-playable,playable,2022-06-06 00:42:09.000 +010000300C79C000,"Gensokyo Defenders",status-playable;online-broken;UE4,playable,2022-07-29 13:48:12.000 +0100AC600EB4C000,"Gensou Rougoku no Kaleidscope",status-menus;crash,menus,2021-11-24 08:45:07.000 +,"Georifters",UE4;crash;nvdec;status-menus,menus,2020-12-04 22:30:50.000 +,"Gerrrms",status-playable,playable,2020-08-15 11:32:52.000 +,"Get 10 Quest",status-playable,playable,2020-08-03 12:48:39.000 +0100B5B00E77C000,"Get Over Here",status-playable,playable,2022-10-28 11:53:52.000 +0100EEB005ACC000,"Ghost 1.0",status-playable,playable,2021-02-19 20:48:47.000 +010063200C588000,"Ghost Blade HD",status-playable;online-broken,playable,2022-09-13 21:51:21.000 +,"Ghost Grab 3000",status-playable,playable,2020-07-11 18:09:52.000 +,"Ghost Parade",status-playable,playable,2020-07-14 00:43:54.000 +01004B301108C000,"Ghost Sweeper",status-playable,playable,2022-10-10 12:45:36.000 +010029B018432000,"Ghost Trick Phantom Detective",status-playable,playable,2023-08-23 14:50:12.000 +010008A00F632000,"Ghostbusters: The Video Game Remastered",status-playable;nvdec,playable,2021-09-17 07:26:57.000 +,"Ghostrunner",UE4;crash;gpu;nvdec;status-ingame,ingame,2020-12-17 13:01:59.000 +0100D6200F2BA000,"Ghosts 'n Goblins Resurrection",status-playable,playable,2023-05-09 12:40:41.000 +01003830092B8000,"Giana Sisters: Twisted Dreams - Owltimate Edition",status-playable,playable,2022-07-29 14:06:12.000 +0100D95012C0A000,"Gibbous - A Cthulhu Adventure",status-playable;nvdec,playable,2022-10-10 12:57:17.000 +010045F00BFC2000,"GIGA WRECKER Alt.",status-playable,playable,2022-07-29 14:13:54.000 +01002C400E526000,"Gigantosaurus The Game",status-playable;UE4,playable,2022-09-27 21:20:00.000 +0100C50007070000,"Ginger: Beyond the Crystal",status-playable,playable,2021-02-17 16:27:00.000 +,"Girabox",status-playable,playable,2020-12-12 13:55:05.000 +,"Giraffe and Annika",UE4;crash;status-ingame,ingame,2020-12-04 22:41:57.000 +01006DD00CC96000,"Girls und Panzer Dream Tank Match DX",status-playable;ldn-untested,playable,2022-09-12 16:07:11.000 +,"Glaive: Brick Breaker",status-playable,playable,2020-05-20 12:15:59.000 +,"Glitch's Trip",status-playable,playable,2020-12-17 16:00:57.000 +0100EB501130E000,"Glyph",status-playable,playable,2021-02-08 19:56:51.000 +,"Gnome More War",status-playable,playable,2020-12-17 16:33:07.000 +,"Gnomes Garden 2",status-playable,playable,2021-02-19 20:08:13.000 +010036C00D0D6000,"Gnomes Garden: Lost King",deadlock;status-menus,menus,2021-11-18 11:14:03.000 +01008EF013A7C000,"Gnosia",status-playable,playable,2021-04-05 17:20:30.000 +01000C800FADC000,"Go All Out",status-playable;online-broken,playable,2022-09-21 19:16:34.000 +010055A0161F4000,"Go Rally",gpu;status-ingame,ingame,2023-08-16 21:18:23.000 +0100C1800A9B6000,"GO VACATION",status-playable;nvdec;ldn-works,playable,2024-05-13 19:28:53.000 +,"Go! Fish Go!",status-playable,playable,2020-07-27 13:52:28.000 +010032600C8CE000,"Goat Simulator",32-bit;status-playable,playable,2022-07-29 21:02:33.000 +01001C700873E000,"GOD EATER 3",gpu;status-ingame;nvdec,ingame,2022-07-29 21:33:21.000 +,"GOD WARS THE COMPLETE LEGEND",nvdec;status-playable,playable,2020-05-19 14:37:50.000 +0100CFA0111C8000,"Gods Will Fall",status-playable,playable,2021-02-08 16:49:59.000 +,"Goetia",status-playable,playable,2020-05-19 12:55:39.000 +,"Going Under",deadlock;nvdec;status-ingame,ingame,2020-12-11 22:29:46.000 +,"Goken",status-playable,playable,2020-08-05 20:22:38.000 +010013800F0A4000,"Golazo - 010013800F0A4000",status-playable,playable,2022-09-13 21:58:37.000 +01003C000D84C000,"Golem Gates",status-ingame;crash;nvdec;online-broken;UE4,ingame,2022-07-30 11:35:11.000 +,"Golf Story",status-playable,playable,2020-05-14 14:56:17.000 +01006FB00EBE0000,"Golf With Your Friends",status-playable;online-broken,playable,2022-09-29 12:55:11.000 +0100EEC00AA6E000,"Gone Home",status-playable,playable,2022-08-01 11:14:20.000 +,"Gonner",status-playable,playable,2020-05-19 12:05:02.000 +,"Good Job!",status-playable,playable,2021-03-02 13:15:55.000 +01003AD0123A2000,"Good Night, Knight",status-nothing;crash,nothing,2023-07-30 23:38:13.000 +,"Good Pizza, Great Pizza",status-playable,playable,2020-12-04 22:59:18.000 +,"Goosebumps Dead of Night",gpu;nvdec;status-ingame,ingame,2020-12-10 20:02:16.000 +,"Goosebumps: The Game",status-playable,playable,2020-05-19 11:56:52.000 +0100F2A005C98000,"Gorogoa",status-playable,playable,2022-08-01 11:55:08.000 +,"GORSD",status-playable,playable,2020-12-04 22:15:21.000 +,"Gotcha Racing 2nd",status-playable,playable,2020-07-23 17:14:04.000 +,"Gothic Murder: Adventure That Changes Destiny",deadlock;status-ingame;crash,ingame,2022-09-30 23:16:53.000 +,"Grab the Bottle",status-playable,playable,2020-07-14 17:06:41.000 +,"Graceful Explosion Machine",status-playable,playable,2020-05-19 20:36:55.000 +,"Grand Brix Shooter",slow;status-playable,playable,2020-06-24 13:23:54.000 +010038100D436000,"Grand Guilds",UE4;nvdec;status-playable,playable,2021-04-26 12:49:05.000 +0100BE600D07A000,"Grand Prix Story",status-playable,playable,2022-08-01 12:42:23.000 +05B1D2ABD3D30000,"Grand Theft Auto 3",services;status-nothing;crash;homebrew,nothing,2023-05-01 22:01:58.000 +0100E0600BBC8000,"Grandia HD Collection",status-boots;crash,boots,2024-08-19 04:29:48.000 +,"Grass Cutter",slow;status-ingame,ingame,2020-05-19 18:27:42.000 +,"Grave Danger",status-playable,playable,2020-05-18 17:41:28.000 +010054A013E0C000,"GraviFire",status-playable,playable,2021-04-05 17:13:32.000 +01002C2011828000,"Gravity Rider Zero",gpu;status-ingame;vulkan-backend-bug,ingame,2022-09-29 13:56:13.000 +,"Greedroid",status-playable,playable,2020-12-14 11:14:32.000 +010068D00AE68000,"GREEN",status-playable,playable,2022-08-01 12:54:15.000 +0100CBB0070EE000,"Green Game",nvdec;status-playable,playable,2021-02-19 18:51:55.000 +0100DFE00F002000,"GREEN The Life Algorithm",status-playable,playable,2022-09-27 21:37:13.000 +0100DA7013792000,"Grey Skies: A War of the Worlds Story",status-playable;UE4,playable,2022-10-24 11:13:59.000 +0100DC800A602000,"GRID Autosport",status-playable;nvdec;online-broken;ldn-untested,playable,2023-03-02 20:14:45.000 +,"Grid Mania",status-playable,playable,2020-05-19 14:11:05.000 +,"Gridd: Retroenhanced",status-playable,playable,2020-05-20 11:32:40.000 +0100B7900B024000,"Grim Fandango Remastered",status-playable;nvdec,playable,2022-08-01 13:55:58.000 +010078E012D80000,"Grim Legends 2: Song Of The Dark Swan",status-playable;nvdec,playable,2022-10-18 12:58:45.000 +010009F011F90000,"Grim Legends: The Forsaken Bride",status-playable;nvdec,playable,2022-10-18 13:14:06.000 +01001E200F2F8000,"Grimshade",status-playable,playable,2022-10-02 12:44:20.000 +0100538012496000,"Grindstone",status-playable,playable,2023-02-08 15:54:06.000 +0100459009A2A000,"GRIP",status-playable;nvdec;online-broken;UE4,playable,2022-08-01 15:00:22.000 +0100E1700C31C000,"GRIS",nvdec;status-playable,playable,2021-06-03 13:33:44.000 +01009D7011B02000,"GRISAIA PHANTOM TRIGGER 01&02",status-playable;nvdec,playable,2022-12-04 21:16:06.000 +01005250123B8000,"Grisaia Phantom Trigger 03",audout;status-playable,playable,2021-01-31 12:30:47.000 +0100D970123BA000,"GRISAIA PHANTOM TRIGGER 04 -0100D970123BA000",audout;status-playable,playable,2021-01-31 12:40:37.000 +01002330123BC000,"GRISAIA PHANTOM TRIGGER 05",audout;nvdec;status-playable,playable,2021-01-31 12:49:59.000 +0100CAF013AE6000,"GRISAIA PHANTOM TRIGGER 5.5",audout;nvdec;status-playable,playable,2021-01-31 12:59:44.000 +010091300FFA0000,"Grizzland",gpu;status-ingame,ingame,2024-07-11 16:28:34.000 +0100EB500D92E000,"Groove Coaster: Wai Wai Party!!!!",status-playable;nvdec;ldn-broken,playable,2021-11-06 14:54:27.000 +,"Guacamelee! 2",status-playable,playable,2020-05-15 14:56:59.000 +,"Guacamelee! Super Turbo Championship Edition",status-playable,playable,2020-05-13 23:44:18.000 +,"Guess the Character",status-playable,playable,2020-05-20 13:14:19.000 +,"Guess The Word",status-playable,playable,2020-07-26 21:34:25.000 +,"GUILTY GEAR XX ACCENT CORE PLUS R",nvdec;status-playable,playable,2021-01-13 09:28:33.000 +01003C6008940000,"GUNBIRD for Nintendo Switch",32-bit;status-playable,playable,2021-06-04 19:16:01.000 +,"GUNBIRD2 for Nintendo Switch",status-playable,playable,2020-10-10 14:41:16.000 +,"Gunka o haita neko",gpu;nvdec;status-ingame,ingame,2020-08-25 12:37:56.000 +,"Gunman Clive HD Collection",status-playable,playable,2020-10-09 12:17:35.000 +,"Guns Gore and Cannoli 2",online;status-playable,playable,2021-01-06 18:43:59.000 +,"Gunvolt Chronicles: Luminous Avenger iX",status-playable,playable,2020-06-16 22:47:07.000 +0100763015C2E000,"Gunvolt Chronicles: Luminous Avenger iX 2",status-nothing;crash;Needs Update,nothing,2022-04-29 15:34:34.000 +01002C8018554000,"Gurimugurimoa OnceMore Demo",status-playable,playable,2022-07-29 22:07:31.000 +0100AC601DCA8000,"Gylt",status-ingame;crash,ingame,2024-03-18 20:16:51.000 +0100822012D76000,"HAAK",gpu;status-ingame,ingame,2023-02-19 14:31:05.000 +,"Habroxia",status-playable,playable,2020-06-16 23:04:42.000 +0100535012974000,"Hades",status-playable;vulkan,playable,2022-10-05 10:45:21.000 +,"Hakoniwa Explorer Plus",slow;status-ingame,ingame,2021-02-19 16:56:19.000 +,"Halloween Pinball",status-playable,playable,2021-01-12 16:00:46.000 +01006FF014152000,"Hamidashi Creative",gpu;status-ingame,ingame,2021-12-19 15:30:51.000 +01003B9007E86000,"Hammerwatch",status-playable;online-broken;ldn-broken,playable,2022-08-01 16:28:46.000 +01003620068EA000,"Hand of Fate 2",status-playable,playable,2022-08-01 15:44:16.000 +,"Hang the Kings",status-playable,playable,2020-07-28 22:56:59.000 +010066C018E50000,"Happy Animals Mini Golf",gpu;status-ingame,ingame,2022-12-04 19:24:28.000 +0100ECE00D13E000,"Hard West",status-nothing;regression,nothing,2022-02-09 07:45:56.000 +,"HARDCORE Maze Cube",status-playable,playable,2020-12-04 20:01:24.000 +,"HARDCORE MECHA",slow;status-playable,playable,2020-11-01 15:06:33.000 +01000C90117FA000,"HardCube",status-playable,playable,2021-05-05 18:33:03.000 +,"Hardway Party",status-playable,playable,2020-07-26 12:35:07.000 +0100D0500AD30000,"Harvest Life",status-playable,playable,2022-08-01 16:51:45.000 +,"Harvest Moon One World - 010016B010FDE00",status-playable,playable,2023-05-26 09:17:19.000 +0100A280187BC000,"Harvestella",status-playable;UE4;vulkan-backend-bug;mac-bug,playable,2024-02-13 07:04:11.000 +,"Has-Been Heroes",status-playable,playable,2021-01-13 13:31:48.000 +01001CC00FA1A000,"Hatsune Miku: Project DIVA Mega Mix",audio;status-playable;online-broken,playable,2024-01-07 23:12:57.000 +01009E6014F18000,"Haunted Dawn: The Zombie Apocalypse",status-playable,playable,2022-10-28 12:31:51.000 +,"Haunted Dungeons: Hyakki Castle",status-playable,playable,2020-08-12 14:21:48.000 +0100E2600DBAA000,"Haven",status-playable,playable,2021-03-24 11:52:41.000 +0100EA900FB2C000,"Hayfever",status-playable;loader-allocator,playable,2022-09-22 17:35:41.000 +0100EFE00E1DC000,"Headliner: NoviNews",online;status-playable,playable,2021-03-01 11:36:00.000 +,"Headsnatchers",UE4;crash;status-menus,menus,2020-07-14 13:29:14.000 +,"Headspun",status-playable,playable,2020-07-31 19:46:47.000 +,"Heart and Slash",status-playable,playable,2021-01-13 20:56:32.000 +,"Heaven Dust",status-playable,playable,2020-05-17 14:02:41.000 +0100FD901000C000,"Heaven's Vault",crash;status-ingame,ingame,2021-02-08 18:22:01.000 +,"Helheim Hassle",status-playable,playable,2020-10-14 11:38:36.000 +,"Hell is Other Demons",status-playable,playable,2021-01-13 13:23:02.000 +01000938017E5C00,"Hell Pie0",status-playable;nvdec;UE4,playable,2022-11-03 16:48:46.000 +0100A4600E27A000,"Hell Warders",online;status-playable,playable,2021-02-27 02:31:03.000 +010044500CF8E000,"Hellblade: Senua's Sacrifice",gpu;status-ingame;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-01 19:36:50.000 +010087D0084A8000,"Hello Kitty Kruisers With Sanrio Friends",nvdec;status-playable,playable,2021-06-04 19:08:46.000 +0100FAA00B168000,"Hello Neighbor",status-playable;UE4,playable,2022-08-01 21:32:23.000 +,"Hello Neighbor: Hide And Seek",UE4;gpu;slow;status-ingame,ingame,2020-10-24 10:59:57.000 +010024600C794000,"Hellpoint",status-menus,menus,2021-11-26 13:24:20.000 +,"Hero Express",nvdec;status-playable,playable,2020-08-06 13:23:43.000 +010077D01094C000,"Hero-U: Rogue to Redemption",nvdec;status-playable,playable,2021-03-24 11:40:01.000 +0100D2B00BC54000,"Heroes of Hammerwatch",status-playable,playable,2022-08-01 18:30:21.000 +01001B70080F0000,"Heroine Anthem Zero episode 1",status-playable;vulkan-backend-bug,playable,2022-08-01 22:02:36.000 +010057300B0DC000,"Heroki",gpu;status-ingame,ingame,2023-07-30 19:30:01.000 +,"Heroland",status-playable,playable,2020-08-05 15:35:39.000 +01007AC00E012000,"Hexagravity",status-playable,playable,2021-05-28 13:47:48.000 +01004E800F03C000,"Hidden",slow;status-ingame,ingame,2022-10-05 10:56:53.000 +0100F6A00A684000,"Higurashi no Naku Koro ni Hō",audio;status-ingame,ingame,2021-09-18 14:40:28.000 +0100F8D0129F4000,"Himehibi 1 gakki - Princess Days",status-nothing;crash,nothing,2021-11-03 08:34:19.000 +,"Hiragana Pixel Party",status-playable,playable,2021-01-14 08:36:50.000 +01004990132AC000,"Hitman 3 - Cloud Version",Needs Update;crash;services;status-nothing,nothing,2021-04-18 22:35:07.000 +010083A018262000,"Hitman: Blood Money - Reprisal",deadlock;status-ingame,ingame,2024-09-28 16:28:50.000 +,"Hob: The Definitive Edition",status-playable,playable,2021-01-13 09:39:19.000 +0100F7300ED2C000,"Hoggy 2",status-playable,playable,2022-10-10 13:53:35.000 +0100F7E00C70E000,"Hogwarts Legacy 0100F7E00C70E000",status-ingame;slow,ingame,2024-09-03 19:53:58.000 +0100633007D48000,"Hollow Knight",status-playable;nvdec,playable,2023-01-16 15:44:56.000 +0100F2100061E800,"Hollow0",UE4;gpu;status-ingame,ingame,2021-03-03 23:42:56.000 +,"Holy Potatoes! What the Hell?!",status-playable,playable,2020-07-03 10:48:56.000 +,"HoPiKo",status-playable,playable,2021-01-13 20:12:38.000 +010087800EE5A000,"Hopping girl KOHANE Jumping Kingdom: Princess of the Black Rabbit",status-boots;crash,boots,2023-02-19 00:51:21.000 +010086D011EB8000,"Horace",status-playable,playable,2022-10-10 14:03:50.000 +0100001019F6E000,"Horizon Chase 2",deadlock;slow;status-ingame;crash;UE4,ingame,2024-08-19 04:24:06.000 +01009EA00B714000,"Horizon Chase Turbo",status-playable,playable,2021-02-19 19:40:56.000 +0100E4200FA82000,"Horror Pinball Bundle",status-menus;crash,menus,2022-09-13 22:15:34.000 +0100017007980000,"Hotel Transylvania 3: Monsters Overboard",nvdec;status-playable,playable,2021-01-27 18:55:31.000 +0100D0E00E51E000,"Hotline Miami Collection",status-playable;nvdec,playable,2022-09-09 16:41:19.000 +0100BDE008218000,"Hotshot Racing",gpu;status-ingame;nvdec;online-broken;ldn-untested;vulkan-backend-bug,ingame,2024-02-04 21:31:17.000 +0100CAE00EB02000,"House Flipper",status-playable,playable,2021-06-16 18:28:32.000 +0100F6800910A000,"Hover",status-playable;online-broken,playable,2022-09-20 12:54:46.000 +0100A66003384000,"Hulu",status-boots;online-broken,boots,2022-12-09 10:05:00.000 +,"Human Resource Machine",32-bit;status-playable,playable,2020-12-17 21:47:09.000 +,"Human: Fall Flat",status-playable,playable,2021-01-13 18:36:05.000 +,"Hungry Shark World",status-playable,playable,2021-01-13 18:26:08.000 +0100EBA004726000,"Huntdown",status-playable,playable,2021-04-05 16:59:54.000 +010068000CAC0000,"Hunter's Legacy: Purrfect Edition",status-playable,playable,2022-08-02 10:33:31.000 +0100C460040EA000,"Hunting Simulator",status-playable;UE4,playable,2022-08-02 10:54:08.000 +010061F010C3A000,"Hunting Simulator 2",status-playable;UE4,playable,2022-10-10 14:25:51.000 +,"Hyper Jam",UE4;crash;status-boots,boots,2020-12-15 22:52:11.000 +01003B200B372000,"Hyper Light Drifter - Special Edition",status-playable;vulkan-backend-bug,playable,2023-01-13 15:44:48.000 +,"HyperBrawl Tournament",crash;services;status-boots,boots,2020-12-04 23:03:27.000 +0100A8B00F0B4000,"HYPERCHARGE: Unboxed",status-playable;nvdec;online-broken;UE4;ldn-untested,playable,2022-09-27 21:52:39.000 +010061400ED90000,"HyperParasite",status-playable;nvdec;UE4,playable,2022-09-27 22:05:44.000 +0100959010466000,"Hypnospace Outlaw",status-ingame;nvdec,ingame,2023-08-02 22:46:49.000 +01002B00111A2000,"Hyrule Warriors: Age of Calamity",gpu;deadlock;slow;status-ingame;crash;nvdec;amd-vendor-bug,ingame,2024-02-28 00:47:00.000 +0100A2C01320E000,"Hyrule Warriors: Age of Calamity - Demo Version",slow;status-playable,playable,2022-10-10 17:37:41.000 +0100AE00096EA000,"Hyrule Warriors: Definitive Edition",services-horizon;status-ingame;nvdec,ingame,2024-06-16 10:34:05.000 +0100849000BDA000,"I AM SETSUNA",status-playable,playable,2021-11-28 11:06:11.000 +01001860140B0000,"I Saw Black Clouds",nvdec;status-playable,playable,2021-04-19 17:22:16.000 +,"I, Zombie",status-playable,playable,2021-01-13 14:53:44.000 +01004E5007E92000,"Ice Age Scrat's Nutty Adventure",status-playable;nvdec,playable,2022-09-13 22:22:29.000 +,"Ice Cream Surfer",status-playable,playable,2020-07-29 12:04:07.000 +0100954014718000,"Ice Station Z",status-menus;crash,menus,2021-11-21 20:02:15.000 +,"ICEY",status-playable,playable,2021-01-14 16:16:04.000 +0100BC60099FE000,"Iconoclasts",status-playable,playable,2021-08-30 21:11:04.000 +,"Idle Champions of the Forgotten Realms",online;status-boots,boots,2020-12-17 18:24:57.000 +01002EC014BCA000,"Idol Days - 愛怒流でいす",gpu;status-ingame;crash,ingame,2021-12-19 15:31:28.000 +,"If Found...",status-playable,playable,2020-12-11 13:43:14.000 +01001AC00ED72000,"If My Heart Had Wings",status-playable,playable,2022-09-29 14:54:57.000 +01009F20086A0000,"Ikaruga",status-playable,playable,2023-04-06 15:00:02.000 +010040900AF46000,"Ikenfell",status-playable,playable,2021-06-16 17:18:44.000 +01007BC00E55A000,"Immortal Planet",status-playable,playable,2022-09-20 13:40:43.000 +010079501025C000,"Immortal Realms: Vampire Wars",nvdec;status-playable,playable,2021-06-17 17:41:46.000 +,"Immortal Redneck - 0100F400435A000",nvdec;status-playable,playable,2021-01-27 18:36:28.000 +01004A600EC0A000,"Immortals Fenyx Rising",gpu;status-menus;crash,menus,2023-02-24 16:19:55.000 +0100737003190000,"IMPLOSION",status-playable;nvdec,playable,2021-12-12 03:52:13.000 +0100A760129A0000,"In rays of the Light",status-playable,playable,2021-04-07 15:18:07.000 +01004DE011076000,"Indie Darling Bundle Vol. 3",status-playable,playable,2022-10-02 13:01:57.000 +0100A2101107C000,"Indie Puzzle Bundle Vol 1",status-playable,playable,2022-09-27 22:23:21.000 +,"Indiecalypse",nvdec;status-playable,playable,2020-06-11 20:19:09.000 +01001D3003FDE000,"Indivisible",status-playable;nvdec,playable,2022-09-29 15:20:57.000 +01002BD00F626000,"Inertial Drift",status-playable;online-broken,playable,2022-10-11 12:22:19.000 +,"Infernium",UE4;regression;status-nothing,nothing,2021-01-13 16:36:07.000 +,"Infinite Minigolf",online;status-playable,playable,2020-09-29 12:26:25.000 +01001CB00EFD6000,"Infliction",status-playable;nvdec;UE4,playable,2022-10-02 13:15:55.000 +0100F1401161E000,"INMOST",status-playable,playable,2022-10-05 11:27:40.000 +,"InnerSpace",status-playable,playable,2021-01-13 19:36:14.000 +0100D2D009028000,"INSIDE",status-playable,playable,2021-12-25 20:24:56.000 +,"Inside Grass: A little adventure",status-playable,playable,2020-10-15 15:26:27.000 +010099700D750000,"INSTANT SPORTS",status-playable,playable,2022-09-09 12:59:40.000 +,"Instant Sports Summer Games",gpu;status-menus,menus,2020-09-02 13:39:28.000 +010031B0145B8000,"Instant Sports Tennis",status-playable,playable,2022-10-28 16:42:17.000 +010041501005E000,"Interrogation: You will be deceived",status-playable,playable,2022-10-05 11:40:10.000 +01000F700DECE000,"Into the Dead 2",status-playable;nvdec,playable,2022-09-14 12:36:14.000 +01001D0003B96000,"INVERSUS Deluxe",status-playable;online-broken,playable,2022-08-02 14:35:36.000 +,"Invisible Fist",status-playable,playable,2020-08-08 13:25:52.000 +,"Invisible, Inc.",crash;status-nothing,nothing,2021-01-29 16:28:13.000 +01005F400E644000,"Invisigun Reloaded",gpu;online;status-ingame,ingame,2021-06-10 12:13:24.000 +010041C00D086000,"Ion Fury",status-ingame;vulkan-backend-bug,ingame,2022-08-07 08:27:51.000 +010095C016C14000,"Iridium",status-playable,playable,2022-08-05 23:19:53.000 +0100945012168000,"Iris Fall",status-playable;nvdec,playable,2022-10-18 13:40:22.000 +0100AD300B786000,"Iris School of Wizardry - Vinculum Hearts -",status-playable,playable,2022-12-05 13:11:15.000 +01005270118D6000,"Iron Wings",slow;status-ingame,ingame,2022-08-07 08:32:57.000 +,"Ironcast",status-playable,playable,2021-01-13 13:54:29.000 +0100E5700CD56000,"Irony Curtain: From Matryoshka with Love",status-playable,playable,2021-06-04 20:12:37.000 +,"Is It Wrong to Try to Pick Up Girls in a Dungeon? Infinite Combate",status-playable,playable,2020-08-31 13:52:21.000 +0100F06013710000,"ISLAND",status-playable,playable,2021-05-06 15:11:47.000 +010077900440A000,"Island Flight Simulator",status-playable,playable,2021-06-04 19:42:46.000 +,"Island Saver",nvdec;status-playable,playable,2020-10-23 22:07:02.000 +,"Isoland",status-playable,playable,2020-07-26 13:48:16.000 +,"Isoland 2: Ashes of Time",status-playable,playable,2020-07-26 14:29:05.000 +010001F0145A8000,"Isolomus",services;status-boots,boots,2021-11-03 07:48:21.000 +010068700C70A000,"ITTA",status-playable,playable,2021-06-07 03:15:52.000 +,"Ittle Dew 2+",status-playable,playable,2020-11-17 11:44:32.000 +0100DEB00F12A000,"IxSHE Tell",status-playable;nvdec,playable,2022-12-02 18:00:42.000 +0100D8E00C874000,"Izneo",status-menus;online-broken,menus,2022-08-06 15:56:23.000 +,"James Pond Operation Robocod",status-playable,playable,2021-01-13 09:48:45.000 +,"Japanese Rail Sim: Journey to Kyoto",nvdec;status-playable,playable,2020-07-29 17:14:21.000 +,"JDM Racing",status-playable,playable,2020-08-03 17:02:37.000 +,"Jenny LeClue - Detectivu",crash;status-nothing,nothing,2020-12-15 21:07:07.000 +01006E400AE2A000,"Jeopardy!",audout;nvdec;online;status-playable,playable,2021-02-22 13:53:46.000 +0100E4900D266000,"Jet Kave Adventure",status-playable;nvdec,playable,2022-09-09 14:50:39.000 +0100F3500C70C000,"Jet Lancer",gpu;status-ingame,ingame,2021-02-15 18:15:47.000 +0100A5A00AF26000,"Jettomero: Hero of the Universe",status-playable,playable,2022-08-02 14:46:43.000 +01008330134DA000,"Jiffy",gpu;status-ingame;opengl,ingame,2024-02-03 23:11:24.000 +,"Jim Is Moving Out!",deadlock;status-ingame,ingame,2020-06-03 22:05:19.000 +0100F4D00D8BE000,"Jinrui no Ninasama he",status-ingame;crash,ingame,2023-03-07 02:04:17.000 +010038D011F08000,"Jisei: The First Case HD",audio;status-playable,playable,2022-10-05 11:43:33.000 +,"Job the Leprechaun",status-playable,playable,2020-06-05 12:10:06.000 +01007090104EC000,"John Wick Hex",status-playable,playable,2022-08-07 08:29:12.000 +010069B002CDE000,"Johnny Turbo's Arcade Gate of Doom",status-playable,playable,2022-07-29 12:17:50.000 +010080D002CC6000,"Johnny Turbo's Arcade Two Crude Dudes",status-playable,playable,2022-08-02 20:29:50.000 +0100D230069CC000,"Johnny Turbo's Arcade Wizard Fire",status-playable,playable,2022-08-02 20:39:15.000 +01008120128C2000,"JoJos Bizarre Adventure All-Star Battle R",status-playable,playable,2022-12-03 10:45:10.000 +01008B60117EC000,"Journey to the Savage Planet",status-playable;nvdec;UE4;ldn-untested,playable,2022-10-02 18:48:12.000 +0100C7600F654000,"Juicy Realm - 0100C7600F654000",status-playable,playable,2023-02-21 19:16:20.000 +,"Jumanji",UE4;crash;status-boots,boots,2020-07-12 13:52:25.000 +0100183010F12000,"JUMP FORCE Deluxe Edition",status-playable;nvdec;online-broken;UE4,playable,2023-10-01 15:56:05.000 +,"Jump King",status-playable,playable,2020-06-09 10:12:39.000 +0100B9C012706000,"Jump Rope Challenge",services;status-boots;crash;Needs Update,boots,2023-02-27 01:24:28.000 +,"Jumping Joe & Friends",status-playable,playable,2021-01-13 17:09:42.000 +,"JunkPlanet",status-playable,playable,2020-11-09 12:38:33.000 +0100CE100A826000,"Jurassic Pinball",status-playable,playable,2021-06-04 19:02:37.000 +010050A011344000,"Jurassic World Evolution Complete Edition",cpu;status-menus;crash,menus,2023-08-04 18:06:54.000 +0100BCE000598000,"Just Dance 2017",online;status-playable,playable,2021-03-05 09:46:01.000 +,"Just Dance 2019",gpu;online;status-ingame,ingame,2021-02-27 17:21:27.000 +0100DDB00DB38000,"JUST DANCE 2020",status-playable,playable,2022-01-24 13:31:57.000 +0100EA6014BB8000,"Just Dance 2022",gpu;services;status-ingame;crash;Needs Update,ingame,2022-10-28 11:01:53.000 +0100BEE017FC0000,"Just Dance 2023",status-nothing,nothing,2023-06-05 16:44:54.000 +0100AC600CF0A000,"Just Die Already",status-playable;UE4,playable,2022-12-13 13:37:50.000 +,"Just Glide",status-playable,playable,2020-08-07 17:38:10.000 +,"Just Shapes & Beats",ldn-untested;nvdec;status-playable,playable,2021-02-09 12:18:36.000 +010035A0044E8000,"JYDGE",status-playable,playable,2022-08-02 21:20:13.000 +0100D58012FC2000,"Kagamihara/Justice",crash;status-nothing,nothing,2021-06-21 16:41:29.000 +0100D5F00EC52000,"Kairobotica",status-playable,playable,2021-05-06 12:17:56.000 +0100BDC00A664000,"KAMEN RIDER CLIMAX SCRAMBLE",status-playable;nvdec;ldn-untested,playable,2024-07-03 08:51:11.000 +0100A9801180E000,"KAMEN RIDER memory of heroez / Premium Sound Edition",status-playable,playable,2022-12-06 03:14:26.000 +,"KAMIKO",status-playable,playable,2020-05-13 12:48:57.000 +,"Kangokuto Mary Skelter Finale",audio;crash;status-ingame,ingame,2021-01-09 22:39:28.000 +01007FD00DB20000,"Katakoi Contrast - collection of branch -",status-playable;nvdec,playable,2022-12-09 09:41:26.000 +0100D7000C2C6000,"Katamari Damacy REROLL",status-playable,playable,2022-08-02 21:35:05.000 +0100F9800EDFA000,"KATANA KAMI: A Way of the Samurai Story",slow;status-playable,playable,2022-04-09 10:40:16.000 +010029600D56A000,"Katana ZERO",status-playable,playable,2022-08-26 08:09:09.000 +010038B00F142000,"Kaze and the Wild Masks",status-playable,playable,2021-04-19 17:11:03.000 +,"Keen: One Girl Army",status-playable,playable,2020-12-14 23:19:52.000 +01008D400A584000,"Keep Talking and Nobody Explodes",status-playable,playable,2021-02-15 18:05:21.000 +01004B100BDA2000,"Kemono Friends Picross",status-playable,playable,2023-02-08 15:54:34.000 +,"Kentucky Robo Chicken",status-playable,playable,2020-05-12 20:54:17.000 +0100327005C94000,"Kentucky Route Zero [0100327005C94000]",status-playable,playable,2024-04-09 23:22:46.000 +,"KeroBlaster",status-playable,playable,2020-05-12 20:42:52.000 +0100F680116A2000,"Kholat",UE4;nvdec;status-playable,playable,2021-06-17 11:52:48.000 +,"Kid Tripp",crash;status-nothing,nothing,2020-10-15 07:41:23.000 +,"Kill la Kill - IF",status-playable,playable,2020-06-09 14:47:08.000 +,"Kill The Bad Guy",status-playable,playable,2020-05-12 22:16:10.000 +0100F2900B3E2000,"Killer Queen Black",ldn-untested;online;status-playable,playable,2021-04-08 12:46:18.000 +,"Kin'iro no Corda Octave",status-playable,playable,2020-09-22 13:23:12.000 +010089000F0E8000,"Kine",status-playable;UE4,playable,2022-09-14 14:28:37.000 +0100E6B00FFBA000,"King Lucas",status-playable,playable,2022-09-21 19:43:23.000 +,"King Oddball",status-playable,playable,2020-05-13 13:47:57.000 +01008D80148C8000,"King of Seas",status-playable;nvdec;UE4,playable,2022-10-28 18:29:41.000 +0100515014A94000,"King of Seas Demo",status-playable;nvdec;UE4,playable,2022-10-28 18:09:31.000 +,"KINGDOM HEARTS Melody of Memory",crash;nvdec;status-ingame,ingame,2021-03-03 17:34:12.000 +0100A280121F6000,"Kingdom Rush",status-nothing;32-bit;crash;Needs More Attention,nothing,2022-10-05 12:34:00.000 +0100BD9004AB6000,"Kingdom: New Lands",status-playable,playable,2022-08-02 21:48:50.000 +,"Kingdom: Two Crowns",status-playable,playable,2020-05-16 19:36:21.000 +0100EF50132BE000,"Kingdoms of Amalur: Re-Reckoning",status-playable,playable,2023-08-10 13:05:08.000 +01004D300C5AE000,"Kirby and the Forgotten Land",gpu;status-ingame,ingame,2024-03-11 17:11:21.000 +010091201605A000,"Kirby and the Forgotten Land (Demo version)",status-playable;demo,playable,2022-08-21 21:03:01.000 +0100227010460000,"Kirby Fighters 2",ldn-works;online;status-playable,playable,2021-06-17 13:06:39.000 +01007E3006DDA000,"Kirby Star Allies",status-playable;nvdec,playable,2023-11-15 17:06:19.000 +0100A8E016236000,"Kirby’s Dream Buffet",status-ingame;crash;online-broken;Needs Update;ldn-works,ingame,2024-03-03 17:04:44.000 +01006B601380E000,"Kirby’s Return to Dream Land Deluxe",status-playable,playable,2024-05-16 19:58:04.000 +010091D01A57E000,"Kirby’s Return to Dream Land Deluxe - Demo",status-playable;demo,playable,2023-02-18 17:21:55.000 +0100F3A00F4CA000,"Kissed by the Baddest Bidder",gpu;status-ingame;nvdec,ingame,2022-12-04 20:57:11.000 +01000C900A136000,"Kitten Squad",status-playable;nvdec,playable,2022-08-03 12:01:59.000 +,"Klondike Solitaire",status-playable,playable,2020-12-13 16:17:27.000 +,"Knight Squad",status-playable,playable,2020-08-09 16:54:51.000 +010024B00E1D6000,"Knight Squad 2",status-playable;nvdec;online-broken,playable,2022-10-28 18:38:09.000 +,"Knight Terrors",status-playable,playable,2020-05-13 13:09:22.000 +,"Knightin'+",status-playable,playable,2020-08-31 18:18:21.000 +,"Knights of Pen and Paper +1 Deluxier Edition",status-playable,playable,2020-05-11 21:46:32.000 +,"Knights of Pen and Paper 2 Deluxiest Edition",status-playable,playable,2020-05-13 14:07:00.000 +010001A00A1F6000,"Knock-Knock",nvdec;status-playable,playable,2021-02-01 20:03:19.000 +01009EF00DDB4000,"Knockout City",services;status-boots;online-broken,boots,2022-12-09 09:48:58.000 +0100C57019BA2000,"Koa and the Five Pirates of Mara",gpu;status-ingame,ingame,2024-07-11 16:14:44.000 +,"Koi DX",status-playable,playable,2020-05-11 21:37:51.000 +,"Koi no Hanasaku Hyakkaen",32-bit;gpu;nvdec;status-ingame,ingame,2020-10-03 14:17:10.000 +01005D200C9AA000,"Koloro",status-playable,playable,2022-08-03 12:34:02.000 +0100464009294000,"Kona",status-playable,playable,2022-08-03 12:48:19.000 +010016C011AAA000,"Kono Subarashii Sekai ni Shukufuku o Kono Yokubo no Isho ni Choai o",status-playable,playable,2023-04-26 09:51:08.000 +,"Koral",UE4;crash;gpu;status-menus,menus,2020-11-16 12:41:26.000 +,"KORG Gadget",status-playable,playable,2020-05-13 13:57:24.000 +010046600CCA4000,"Kotodama: The 7 Mysteries of Fujisawa",audout;status-playable,playable,2021-02-01 20:28:37.000 +010022801242C000,"KukkoroDays",status-menus;crash,menus,2021-11-25 08:52:56.000 +010035A00DF62000,"KUNAI",status-playable;nvdec,playable,2022-09-20 13:48:34.000 +010060400ADD2000,"Kunio-Kun: The World Classics Collection",online;status-playable,playable,2021-01-29 20:21:46.000 +010037500F282000,"KUUKIYOMI 2: Consider It More! - New Era",status-nothing;crash;Needs Update,nothing,2021-11-02 09:34:40.000 +0100894011F62000,"Kwaidan ~Azuma manor story~",status-playable,playable,2022-10-05 12:50:44.000 +0100830004FB6000,"L.A. Noire",status-playable,playable,2022-08-03 16:49:35.000 +,"L.F.O. - Lost Future Omega -",UE4;deadlock;status-boots,boots,2020-10-16 12:16:44.000 +0100F2B0123AE000,"L.O.L. Surprise! Remix: We Rule the World",status-playable,playable,2022-10-11 22:48:03.000 +010038000F644000,"La Mulana 2",status-playable,playable,2022-09-03 13:45:57.000 +010026000F662800,"LA-MULANA",gpu;status-ingame,ingame,2022-08-12 01:06:21.000 +0100E5D00F4AE000,"LA-MULANA 1 & 2",status-playable,playable,2022-09-22 17:56:36.000 +010058500B3E0000,"Labyrinth of Refrain: Coven of Dusk",status-playable,playable,2021-02-15 17:38:48.000 +,"Labyrinth of the Witch",status-playable,playable,2020-11-01 14:42:37.000 +0100BAB00E8C0000,"Langrisser I and II",status-playable,playable,2021-02-19 15:46:10.000 +,"Lanota",status-playable,playable,2019-09-04 01:58:14.000 +01005E000D3D8000,"Lapis x Labyrinth",status-playable,playable,2021-02-01 18:58:08.000 +,"Laraan",status-playable,playable,2020-12-16 12:45:48.000 +0100DA700879C000,"Last Day of June",nvdec;status-playable,playable,2021-06-08 11:35:32.000 +01009E100BDD6000,"LAST FIGHT",status-playable,playable,2022-09-20 13:54:55.000 +0100055007B86000,"Late Shift",nvdec;status-playable,playable,2021-02-01 18:43:58.000 +,"Later Daters",status-playable,playable,2020-07-29 16:35:45.000 +01001730144DA000,"Layers of Fear 2",status-playable;nvdec;UE4,playable,2022-10-28 18:49:52.000 +,"Layers of Fear: Legacy",nvdec;status-playable,playable,2021-02-15 16:30:41.000 +0100CE500D226000,"Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy - Deluxe Edition",status-playable;nvdec;opengl,playable,2022-09-14 15:01:57.000 +0100FDB00AA80000,"Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy DX+0",gpu;status-ingame;nvdec;opengl,ingame,2022-09-14 15:15:55.000 +01009C100390E000,"League of Evil",online;status-playable,playable,2021-06-08 11:23:27.000 +,"Left-Right: The Mansion",status-playable,playable,2020-05-13 13:02:12.000 +010079901C898000,"Legacy of Kain™ Soul Reaver 1&2 Remastered",status-playable,playable,2025-01-07 05:50:01.000 +01002DB007A96000,"Legend of Kay Anniversary",nvdec;status-playable,playable,2021-01-29 18:38:29.000 +,"Legend of the Skyfish",status-playable,playable,2020-06-24 13:04:22.000 +,"Legend of the Tetrarchs",deadlock;status-ingame,ingame,2020-07-10 07:54:03.000 +0100A73006E74000,"Legendary Eleven",status-playable,playable,2021-06-08 12:09:03.000 +0100A7700B46C000,"Legendary Fishing",online;status-playable,playable,2021-04-14 15:08:46.000 +0100739018020000,"LEGO 2K Drive",gpu;status-ingame;ldn-works,ingame,2024-04-09 02:05:12.000 +01003A30012C0000,"Lego City Undercover",status-playable;nvdec,playable,2024-09-30 08:44:27.000 +010070D009FEC000,"LEGO DC Super-Villains",status-playable,playable,2021-05-27 18:10:37.000 +010052A00B5D2000,"LEGO Harry Potter Collection",status-ingame;crash,ingame,2024-01-31 10:28:07.000 +010073C01AF34000,"LEGO Horizon Adventures",status-ingame;vulkan-backend-bug;opengl-backend-bug;UE4,ingame,2025-01-07 04:24:56.000 +01001C100E772000,"LEGO Jurassic World",status-playable,playable,2021-05-27 17:00:20.000 +01006F600FFC8000,"LEGO Marvel Super Heroes",status-playable,playable,2024-09-10 19:02:19.000 +0100D3A00409E000,"LEGO Marvel Super Heroes 2",status-nothing;crash,nothing,2023-03-02 17:12:33.000 +010042D00D900000,"LEGO Star Wars: The Skywalker Saga",gpu;slow;status-ingame,ingame,2024-04-13 20:08:46.000 +0100A01006E00000,"LEGO The Incredibles",status-nothing;crash,nothing,2022-08-03 18:36:59.000 +,"LEGO Worlds",crash;slow;status-ingame,ingame,2020-07-17 13:35:39.000 +,"Legrand Legacy: Tale of the Fatebounds",nvdec;status-playable,playable,2020-07-26 12:27:36.000 +010031A0135CA000,"Leisure Suit Larry - Wet Dreams Dry Twice",status-playable,playable,2022-10-28 19:00:57.000 +0100A8E00CAA0000,"Leisure Suit Larry: Wet Dreams Don't Dry",status-playable,playable,2022-08-03 19:51:44.000 +01003AB00983C000,"Lethal League Blaze",online;status-playable,playable,2021-01-29 20:13:31.000 +,"Letter Quest Remastered",status-playable,playable,2020-05-11 21:30:34.000 +0100CE301678E800,"Letters - a written adventure",gpu;status-ingame,ingame,2023-02-21 20:12:38.000 +,"Levelhead",online;status-ingame,ingame,2020-10-18 11:44:51.000 +,"Levels+",status-playable,playable,2020-05-12 13:51:39.000 +0100C8000F146000,"Liberated",gpu;status-ingame;nvdec,ingame,2024-07-04 04:58:24.000 +01003A90133A6000,"Liberated: Enhanced Edition",gpu;status-ingame;nvdec,ingame,2024-07-04 04:48:48.000 +,"Lichtspeer: Double Speer Edition",status-playable,playable,2020-05-12 16:43:09.000 +010041F0128AE000,"Liege Dragon",status-playable,playable,2022-10-12 10:27:03.000 +010006300AFFE000,"Life Goes On",status-playable,playable,2021-01-29 19:01:20.000 +0100FD101186C000,"Life is Strange 2",status-playable;UE4,playable,2024-07-04 05:05:58.000 +0100DC301186A000,"Life is Strange Remastered",status-playable;UE4,playable,2022-10-03 16:54:44.000 +010008501186E000,"Life is Strange: Before the Storm Remastered",status-playable,playable,2023-09-28 17:15:44.000 +0100500012AB4000,"Life is Strange: True Colors [0100500012AB4000]",gpu;status-ingame;UE4,ingame,2024-04-08 16:11:52.000 +,"Life of Boris: Super Slav",status-ingame,ingame,2020-12-17 11:40:05.000 +0100B3A0135D6000,"Life of Fly",status-playable,playable,2021-01-25 23:41:07.000 +010069A01506E000,"Life of Fly 2",slow;status-playable,playable,2022-10-28 19:26:52.000 +01005B6008132000,"Lifeless Planet",status-playable,playable,2022-08-03 21:25:13.000 +,"Light Fall",nvdec;status-playable,playable,2021-01-18 14:55:36.000 +010087700D07C000,"Light Tracer",nvdec;status-playable,playable,2021-05-05 19:15:43.000 +01009C8009026000,"LIMBO",cpu;status-boots;32-bit,boots,2023-06-28 15:39:19.000 +,"Linelight",status-playable,playable,2020-12-17 12:18:07.000 +,"Lines X",status-playable,playable,2020-05-11 15:28:30.000 +,"Lines XL",status-playable,playable,2020-08-31 17:48:23.000 +0100943010310000,"Little Busters! Converted Edition",status-playable;nvdec,playable,2022-09-29 15:34:56.000 +,"Little Dragons Cafe",status-playable,playable,2020-05-12 00:00:52.000 +,"LITTLE FRIENDS -DOGS & CATS-",status-playable,playable,2020-11-12 12:45:51.000 +,"Little Inferno",32-bit;gpu;nvdec;status-ingame,ingame,2020-12-17 21:43:56.000 +0100E7000E826000,"Little Misfortune",nvdec;status-playable,playable,2021-02-23 20:39:44.000 +0100FE0014200000,"Little Mouse's Encyclopedia",status-playable,playable,2022-10-28 19:38:58.000 +01002FC00412C000,"Little Nightmares",status-playable;nvdec;UE4,playable,2022-08-03 21:45:35.000 +010097100EDD6000,"Little Nightmares II",status-playable;UE4,playable,2023-02-10 18:24:44.000 +010093A0135D6000,"Little Nightmares II DEMO",status-playable;UE4;demo;vulkan-backend-bug,playable,2024-05-16 18:47:20.000 +0100535014D76000,"Little Noah: Scion of Paradise",status-playable;opengl-backend-bug,playable,2022-09-14 04:17:13.000 +0100E6D00E81C000,"Little Racer",status-playable,playable,2022-10-18 16:41:13.000 +,"Little Shopping",status-playable,playable,2020-10-03 16:34:35.000 +,"Little Town Hero",status-playable,playable,2020-10-15 23:28:48.000 +,"Little Triangle",status-playable,playable,2020-06-17 14:46:26.000 +0100CF801776C000,"LIVE A LIVE",status-playable;UE4;amd-vendor-bug,playable,2023-02-05 15:12:07.000 +0100BA000FC9C000,"LOCO-SPORTS",status-playable,playable,2022-09-20 14:09:30.000 +,"Lode Runner Legacy",status-playable,playable,2021-01-10 14:10:28.000 +,"Lofi Ping Pong",crash;status-ingame,ingame,2020-12-15 20:09:22.000 +0100B6D016EE6000,"Lone Ruin",status-ingame;crash;nvdec,ingame,2023-01-17 06:41:19.000 +0100A0C00E0DE000,"Lonely Mountains Downhill",status-playable;online-broken,playable,2024-07-04 05:08:11.000 +010062A0178A8000,"LOOPERS",gpu;slow;status-ingame;crash,ingame,2022-06-17 19:21:45.000 +,"Lost Horizon",status-playable,playable,2020-09-01 13:41:22.000 +,"Lost Horizon 2",nvdec;status-playable,playable,2020-06-16 12:02:12.000 +01005FE01291A000,"Lost in Random",gpu;status-ingame,ingame,2022-12-18 07:09:28.000 +0100156014C6A000,"Lost Lands 3: The Golden Curse",status-playable;nvdec,playable,2022-10-24 16:30:00.000 +0100BDD010AC8000,"Lost Lands: Dark Overlord",status-playable,playable,2022-10-03 11:52:58.000 +0100133014510000,"Lost Lands: The Four Horsemen",status-playable;nvdec,playable,2022-10-24 16:41:00.000 +010054600AC74000,"LOST ORBIT: Terminal Velocity",status-playable,playable,2021-06-14 12:21:12.000 +,"Lost Phone Stories",services;status-ingame,ingame,2020-04-05 23:17:33.000 +01008AD013A86800,"Lost Ruins",gpu;status-ingame,ingame,2023-02-19 14:09:00.000 +,"LOST SPHEAR",status-playable,playable,2021-01-10 06:01:21.000 +0100018013124000,"Lost Words: Beyond the Page",status-playable,playable,2022-10-24 17:03:21.000 +0100D36011AD4000,"Love Letter from Thief X",gpu;status-ingame;nvdec,ingame,2023-11-14 03:55:31.000 +,"Ludo Mania",crash;services;status-nothing,nothing,2020-04-03 00:33:47.000 +010048701995E000,"Luigi's Mansion 2 HD",status-ingame;ldn-broken;amd-vendor-bug,ingame,2024-09-05 23:47:27.000 +0100DCA0064A6000,"Luigi's Mansion 3",gpu;slow;status-ingame;Needs Update;ldn-works,ingame,2024-09-27 22:17:36.000 +,"Lumini",status-playable,playable,2020-08-09 20:45:09.000 +0100FF00042EE000,"Lumo",status-playable;nvdec,playable,2022-02-11 18:20:30.000 +,"Lust for Darkness",nvdec;status-playable,playable,2020-07-26 12:09:15.000 +0100F0B00F68E000,"Lust for Darkness: Dawn Edition",nvdec;status-playable,playable,2021-06-16 13:47:46.000 +0100EC2011A80000,"LUXAR",status-playable,playable,2021-03-04 21:11:57.000 +0100F2400D434000,"Machi Knights Blood bagos",status-playable;nvdec;UE4,playable,2022-09-14 15:08:04.000 +,"Mad Carnage",status-playable,playable,2021-01-10 13:00:07.000 +,"Mad Father",status-playable,playable,2020-11-12 13:22:10.000 +010061E00EB1E000,"Mad Games Tycoon",status-playable,playable,2022-09-20 14:23:14.000 +01004A200E722000,"Magazine Mogul",status-playable;loader-allocator,playable,2022-10-03 12:05:34.000 +,"MagiCat",status-playable,playable,2020-12-11 15:22:07.000 +,"Magicolors",status-playable,playable,2020-08-12 18:39:11.000 +01008C300B624000,"Mahjong Solitaire Refresh",status-boots;crash,boots,2022-12-09 12:02:55.000 +010099A0145E8000,"Mahluk dark demon",status-playable,playable,2021-04-15 13:14:24.000 +,"Mainlining",status-playable,playable,2020-06-05 01:02:00.000 +0100D9900F220000,"Maitetsu: Pure Station",status-playable,playable,2022-09-20 15:12:49.000 +0100A78017BD6000,"Makai Senki Disgaea 7",status-playable,playable,2023-10-05 00:22:18.000 +,"Mana Spark",status-playable,playable,2020-12-10 13:41:01.000 +010093D00CB22000,"Maneater",status-playable;nvdec;UE4,playable,2024-05-21 16:11:57.000 +,"Manifold Garden",status-playable,playable,2020-10-13 20:27:13.000 +0100C9A00952A000,"Manticore - Galaxy on Fire",status-boots;crash;nvdec,boots,2024-02-04 04:37:24.000 +0100E98002F6E000,"Mantis Burn Racing",status-playable;online-broken;ldn-broken,playable,2024-09-02 02:13:04.000 +01008E800D1FE000,"Marble Power Blast",status-playable,playable,2021-06-04 16:00:02.000 +,"Märchen Forest - 0100B201D5E000",status-playable,playable,2021-02-04 21:33:34.000 +0100DA7017C9E000,"Marco & The Galaxy Dragon Demo",gpu;status-ingame;demo,ingame,2023-06-03 13:05:33.000 +01006D0017F7A000,"Mario & Luigi: Brothership",status-ingame;crash;slow;UE4;mac-bug,ingame,2025-01-07 04:00:00.000 +010002C00C270000,"MARIO & SONIC AT THE OLYMPIC GAMES TOKYO 2020",status-ingame;crash;online-broken;ldn-works,ingame,2024-08-23 16:12:55.000 +010067300059A000,"Mario + Rabbids Kingdom Battle",slow;status-playable;opengl-backend-bug,playable,2024-05-06 10:16:54.000 +0100317013770000,"Mario + Rabbids® Sparks of Hope",gpu;status-ingame;Needs Update,ingame,2024-06-20 19:56:19.000 +0100C9C00E25C000,"Mario Golf: Super Rush",gpu;status-ingame,ingame,2024-08-18 21:31:48.000 +0100152000022000,"Mario Kart 8 Deluxe",32-bit;status-playable;ldn-works;LAN;amd-vendor-bug,playable,2024-09-19 11:55:17.000 +0100ED100BA3A000,"Mario Kart Live: Home Circuit",services;status-nothing;crash;Needs More Attention,nothing,2022-12-07 22:36:52.000 +01006FE013472000,"Mario Party Superstars",gpu;status-ingame;ldn-works;mac-bug,ingame,2024-05-16 11:23:34.000 +010019401051C000,"Mario Strikers: Battle League Football",status-boots;crash;nvdec,boots,2024-05-07 06:23:56.000 +0100BDE00862A000,"Mario Tennis Aces",gpu;status-ingame;nvdec;ldn-works;LAN,ingame,2024-09-28 15:54:40.000 +0100B99019412000,"Mario vs. Donkey Kong",status-playable,playable,2024-05-04 21:22:39.000 +0100D9E01DBB0000,"Mario vs. Donkey Kong™ Demo",status-playable,playable,2024-02-18 10:40:06.000 +01009A700A538000,"Mark of the Ninja Remastered",status-playable,playable,2022-08-04 15:48:30.000 +010044600FDF0000,"Marooners",status-playable;nvdec;online-broken,playable,2022-10-18 21:35:26.000 +010060700AC50000,"Marvel Ultimate Alliance 3: The Black Order",status-playable;nvdec;ldn-untested,playable,2024-02-14 19:51:51.000 +01003DE00C95E000,"Mary Skelter 2",status-ingame;crash;regression,ingame,2023-09-12 07:37:28.000 +0100113008262000,"Masquerada: Songs and Shadows",status-playable,playable,2022-09-20 15:18:54.000 +01004800197F0000,"Master Detective Archives: Rain Code",gpu;status-ingame,ingame,2024-04-19 20:11:09.000 +0100CC7009196000,"Masters of Anima",status-playable;nvdec,playable,2022-08-04 16:00:09.000 +,"Mathland",status-playable,playable,2020-09-01 15:40:06.000 +,"Max & The Book of Chaos",status-playable,playable,2020-09-02 12:24:43.000 +01001C9007614000,"Max: The Curse Of Brotherhood",status-playable;nvdec,playable,2022-08-04 16:33:04.000 +,"Maze",status-playable,playable,2020-12-17 16:13:58.000 +0100EEF00CBC0000,"MEANDERS",UE4;gpu;status-ingame,ingame,2021-06-11 19:19:33.000 +,"Mech Rage",status-playable,playable,2020-11-18 12:30:16.000 +0100C4F005EB4000,"Mecho Tales",status-playable,playable,2022-08-04 17:03:19.000 +0100E4600D31A000,"Mechstermination Force",status-playable,playable,2024-07-04 05:39:15.000 +,"Medarot Classics Plus Kabuto Ver",status-playable,playable,2020-11-21 11:31:18.000 +,"Medarot Classics Plus Kuwagata Ver",status-playable,playable,2020-11-21 11:30:40.000 +0100BBC00CB9A000,"Mega Mall Story",slow;status-playable,playable,2022-08-04 17:10:58.000 +0100B0C0086B0000,"Mega Man 11",status-playable,playable,2021-04-26 12:07:53.000 +0100734016266000,"Mega Man Battle Network Legacy Collection Vol. 2",status-playable,playable,2023-08-03 18:04:32.000 +01002D4007AE0000,"Mega Man Legacy Collection Vol.1",gpu;status-ingame,ingame,2021-06-03 18:17:17.000 +,"Mega Man X Legacy Collection",audio;crash;services;status-menus,menus,2020-12-04 04:30:17.000 +,"Megabyte Punch",status-playable,playable,2020-10-16 14:07:18.000 +,"Megadimension Neptunia VII",32-bit;nvdec;status-playable,playable,2020-12-17 20:56:03.000 +010038E016264000,"Megaman Battle Network Legacy Collection Vol 1",status-playable,playable,2023-04-25 03:55:57.000 +,"Megaman Legacy Collection 2",status-playable,playable,2021-01-06 08:47:59.000 +010025C00D410000,"MEGAMAN ZERO/ZX LEGACY COLLECTION",status-playable,playable,2021-06-14 16:17:32.000 +010082B00E8B8000,"Megaquarium",status-playable,playable,2022-09-14 16:50:00.000 +010005A00B312000,"Megaton Rainfall",gpu;status-boots;opengl,boots,2022-08-04 18:29:43.000 +0100EA100DF92000,"Meiji Katsugeki Haikara Ryuuseigumi - Seibai Shimaseu, Yonaoshi Kagyou",32-bit;status-playable;nvdec,playable,2022-12-05 13:19:12.000 +0100B360068B2000,"Mekorama",gpu;status-boots,boots,2021-06-17 16:37:21.000 +01000FA010340000,"Melbits World",status-menus;nvdec;online,menus,2021-11-26 13:51:22.000 +0100F68019636000,"Melon Journey",status-playable,playable,2023-04-23 21:20:01.000 +,"Memories Off -Innocent Fille- for Dearest",status-playable,playable,2020-08-04 07:31:22.000 +010062F011E7C000,"Memory Lane",status-playable;UE4,playable,2022-10-05 14:31:03.000 +,"Meow Motors",UE4;gpu;status-ingame,ingame,2020-12-18 00:24:01.000 +,"Mercenaries Saga Chronicles",status-playable,playable,2021-01-10 12:48:19.000 +,"Mercenaries Wings The False Phoenix",crash;services;status-nothing,nothing,2020-05-08 22:42:12.000 +,"Mercenary Kings",online;status-playable,playable,2020-10-16 13:05:58.000 +0100E5000D3CA000,"Merchants of Kaidan",status-playable,playable,2021-04-15 11:44:28.000 +,"METAGAL",status-playable,playable,2020-06-05 00:05:48.000 +010047F01AA10000,"Metal Gear Solid Master Collection Vol. 1: Metal Gear Solid 3",services-horizon;status-menus,menus,2024-07-24 06:34:06.000 +0100E8F00F6BE000,"METAL MAX Xeno Reborn",status-playable,playable,2022-12-05 15:33:53.000 +,"Metaloid: Origin",status-playable,playable,2020-06-04 20:26:35.000 +010055200E87E000,"Metamorphosis",UE4;audout;gpu;nvdec;status-ingame,ingame,2021-06-16 16:18:11.000 +0100D4900E82C000,"Metro 2033 Redux",gpu;status-ingame,ingame,2022-11-09 10:53:13.000 +0100F0400E850000,"Metro: Last Light Redux",slow;status-ingame;nvdec;vulkan-backend-bug,ingame,2023-11-01 11:53:52.000 +010093801237C000,"Metroid Dread",status-playable,playable,2023-11-13 04:02:36.000 +010012101468C000,"Metroid Prime Remastered",gpu;status-ingame;Needs Update;vulkan-backend-bug;opengl-backend-bug,ingame,2024-05-07 22:48:15.000 +0100A1200F20C000,"Midnight Evil",status-playable,playable,2022-10-18 22:55:19.000 +0100C1E0135E0000,"Mighty Fight Federation",online;status-playable,playable,2021-04-06 18:39:56.000 +0100AD701344C000,"Mighty Goose",status-playable;nvdec,playable,2022-10-28 20:25:38.000 +,"Mighty Gunvolt Burst",status-playable,playable,2020-10-19 16:05:49.000 +010060D00AE36000,"Mighty Switch Force! Collection",status-playable,playable,2022-10-28 20:40:32.000 +01003DA010E8A000,"Miitopia",gpu;services-horizon;status-ingame,ingame,2024-09-06 10:39:13.000 +01007DA0140E8000,"Miitopia Demo",services;status-menus;crash;demo,menus,2023-02-24 11:50:58.000 +,"Miles & Kilo",status-playable,playable,2020-10-22 11:39:49.000 +0100976008FBE000,"Millie",status-playable,playable,2021-01-26 20:47:19.000 +0100F5700C9A8000,"MIND Path to Thalamus",UE4;status-playable,playable,2021-06-16 17:37:25.000 +0100D71004694000,"Minecraft",status-ingame;crash;ldn-broken,ingame,2024-09-29 12:08:59.000 +01006BD001E06000,"Minecraft - Nintendo Switch Edition",status-playable;ldn-broken,playable,2023-10-15 01:47:08.000 +01006C100EC08000,"Minecraft Dungeons",status-playable;nvdec;online-broken;UE4,playable,2024-06-26 22:10:43.000 +01007C6012CC8000,"Minecraft Legends",gpu;status-ingame;crash,ingame,2024-03-04 00:32:24.000 +01003EF007ABA000,"Minecraft: Story Mode - Season Two",status-playable;online-broken,playable,2023-03-04 00:30:50.000 +010059C002AC2000,"Minecraft: Story Mode - The Complete Adventure",status-boots;crash;online-broken,boots,2022-08-04 18:56:58.000 +0100B7500F756000,"Minefield",status-playable,playable,2022-10-05 15:03:29.000 +01003560119A6000,"Mini Motor Racing X",status-playable,playable,2021-04-13 17:54:49.000 +,"Mini Trains",status-playable,playable,2020-07-29 23:06:20.000 +010039200EC66000,"Miniature - The Story Puzzle",status-playable;UE4,playable,2022-09-14 17:18:50.000 +010069200EB80000,"Ministry of Broadcast",status-playable,playable,2022-08-10 00:31:16.000 +0100C3F000BD8000,"Minna de Wai Wai! Spelunker",status-nothing;crash,nothing,2021-11-03 07:17:11.000 +0100FAE010864000,"Minoria",status-playable,playable,2022-08-06 18:50:50.000 +01005AB015994000,"Miss Kobayashi's Dragonmaid Burst Forth!! Choro-gon☆Breath",gpu;status-playable,playable,2022-03-28 02:22:24.000 +0100CFA0138C8000,"Missile Dancer",status-playable,playable,2021-01-31 12:22:03.000 +0100E3601495C000,"Missing Features 2D",status-playable,playable,2022-10-28 20:52:54.000 +010059200CC40000,"Mist Hunter",status-playable,playable,2021-06-16 13:58:58.000 +,"Mittelborg: City of Mages",status-playable,playable,2020-08-12 19:58:06.000 +0100A9F01776A000,"MLB The Show 22 Tech Test",services;status-nothing;crash;Needs Update;demo,nothing,2022-12-09 10:28:34.000 +0100E2E01C32E000,"MLB The Show 24",services-horizon;status-nothing,nothing,2024-03-31 04:54:11.000 +0100876015D74000,"MLB® The Show™ 22",gpu;slow;status-ingame,ingame,2023-04-25 06:28:43.000 +0100913019170000,"MLB® The Show™ 23",gpu;status-ingame,ingame,2024-07-26 00:56:50.000 +,"MO:Astray",crash;status-ingame,ingame,2020-12-11 21:45:44.000 +,"Moai VI: Unexpected Guests",slow;status-playable,playable,2020-10-27 16:40:20.000 +0100D8700B712000,"Modern Combat Blackout",crash;status-nothing,nothing,2021-03-29 19:47:15.000 +010004900D772000,"Modern Tales: Age of Invention",slow;status-playable,playable,2022-10-12 11:20:19.000 +0100B8500D570000,"Moero Chronicle Hyper",32-bit;status-playable,playable,2022-08-11 07:21:56.000 +01004EB0119AC000,"Moero Crystal H",32-bit;status-playable;nvdec;vulkan-backend-bug,playable,2023-07-05 12:04:22.000 +0100B46017500000,"MOFUMOFU Sensen",gpu;status-menus,menus,2024-09-21 21:51:08.000 +01004A400C320000,"Momodora: Revere Under the Moonlight",deadlock;status-nothing,nothing,2022-02-06 03:47:43.000 +01002CC00BC4C000,"Momonga Pinball Adventures",status-playable,playable,2022-09-20 16:00:40.000 +010093100DA04000,"Momotaro Dentetsu Showa, Heisei, Reiwa mo Teiban!",gpu;status-ingame,ingame,2023-09-22 10:21:46.000 +0100FBD00ED24000,"MONKEY BARRELS",status-playable,playable,2022-09-14 17:28:52.000 +,"Monkey King: Master of the Clouds",status-playable,playable,2020-09-28 22:35:48.000 +01003030161DC000,"Monomals",gpu;status-ingame,ingame,2024-08-06 22:02:51.000 +0100F3A00FB78000,"Mononoke Slashdown",status-menus;crash,menus,2022-05-04 20:55:47.000 +01007430037F6000,"Monopoly for Nintendo Switch",status-playable;nvdec;online-broken,playable,2024-02-06 23:13:01.000 +01005FF013DC2000,"Monopoly Madness",status-playable,playable,2022-01-29 21:13:52.000 +0100E2D0128E6000,"Monster Blast",gpu;status-ingame,ingame,2023-09-02 20:02:32.000 +01006F7001D10000,"Monster Boy and the Cursed Kingdom",status-playable;nvdec,playable,2022-08-04 20:06:32.000 +,"Monster Bugs Eat People",status-playable,playable,2020-07-26 02:05:34.000 +0100742007266000,"Monster Energy Supercross - The Official Videogame",status-playable;nvdec;UE4,playable,2022-08-04 20:25:00.000 +0100F8100B982000,"Monster Energy Supercross - The Official Videogame 2",status-playable;nvdec;UE4;ldn-untested,playable,2022-08-04 21:21:24.000 +010097800EA20000,"Monster Energy Supercross - The Official Videogame 3",UE4;audout;nvdec;online;status-playable,playable,2021-06-14 12:37:54.000 +0100E9900ED74000,"Monster Farm",32-bit;nvdec;status-playable,playable,2021-05-05 19:29:13.000 +0100770008DD8000,"Monster Hunter Generation Ultimate",32-bit;status-playable;online-broken;ldn-works,playable,2024-03-18 14:35:36.000 +0100B04011742000,"Monster Hunter Rise",gpu;slow;status-ingame;crash;nvdec;online-broken;Needs Update;ldn-works,ingame,2024-08-24 11:04:59.000 +010093A01305C000,"Monster Hunter Rise Demo",status-playable;online-broken;ldn-works;demo,playable,2022-10-18 23:04:17.000 +,"Monster Hunter Stories 2: Wings of Ruin ID 0100E2101144600",services;status-ingame,ingame,2022-07-10 19:27:30.000 +010042501329E000,"MONSTER HUNTER STORIES 2: WINGS OF RUIN Trial Version",status-playable;demo,playable,2022-11-13 22:20:26.000 +,"Monster Hunter XX Demo",32-bit;cpu;status-nothing,nothing,2020-03-22 10:12:28.000 +0100C3800049C000,"Monster Hunter XX Nintendo Switch Ver ( Double Cross )",status-playable,playable,2024-07-21 14:08:09.000 +010088400366E000,"MONSTER JAM CRUSH IT!™",UE4;nvdec;online;status-playable,playable,2021-04-08 19:29:27.000 +010095C00F354000,"Monster Jam Steel Titans",status-menus;crash;nvdec;UE4,menus,2021-11-14 09:45:38.000 +010051B0131F0000,"Monster Jam Steel Titans 2",status-playable;nvdec;UE4,playable,2022-10-24 17:17:59.000 +,"Monster Puzzle",status-playable,playable,2020-09-28 22:23:10.000 +,"Monster Sanctuary",crash;status-ingame,ingame,2021-04-04 05:06:41.000 +0100D30010C42000,"Monster Truck Championship",slow;status-playable;nvdec;online-broken;UE4,playable,2022-10-18 23:16:51.000 +01004E10142FE000,"Monster wo taoshite tsuyoi ken ya yoroi wo te ni shinasai. Shinde mo akiramezu ni tsuyoku nari nasai. Yuushatai ga maoh wo taosu sono hi wo shinzite imasu. - モンスターを倒して強い剣や鎧を手にしなさい。死んでも諦めずに強くなりなさい。勇者隊が魔王を倒すその日を信じています。",crash;status-ingame,ingame,2021-07-23 10:56:44.000 +010039F00EF70000,"Monstrum",status-playable,playable,2021-01-31 11:07:26.000 +,"Moonfall Ultimate",nvdec;status-playable,playable,2021-01-17 14:01:25.000 +0100E3D014ABC000,"Moorhuhn Jump and Run Traps and Treasures",status-playable,playable,2024-03-08 15:10:02.000 +010045C00F274000,"Moorkuhn Kart 2",status-playable;online-broken,playable,2022-10-28 21:10:35.000 +010040E00F642000,"Morbid: The Seven Acolytes",status-playable,playable,2022-08-09 17:21:58.000 +,"More Dark",status-playable,playable,2020-12-15 16:01:06.000 +,"Morphies Law",UE4;crash;ldn-untested;nvdec;online;status-menus,menus,2020-11-22 17:05:29.000 +,"Morphite",status-playable,playable,2021-01-05 19:40:55.000 +01006560184E6000,"Mortal Kombat 1",gpu;status-ingame,ingame,2024-09-04 15:45:47.000 +0100F2200C984000,"Mortal Kombat 11",slow;status-ingame;nvdec;online-broken;ldn-broken,ingame,2024-06-19 02:22:17.000 +,"Mosaic",status-playable,playable,2020-08-11 13:07:35.000 +010040401D564000,"Moto GP 24",gpu;status-ingame,ingame,2024-05-10 23:41:00.000 +01002ED00B01C000,"Moto Racer 4",UE4;nvdec;online;status-playable,playable,2021-04-08 19:09:11.000 +01003F200D0F2000,"Moto Rush GT",status-playable,playable,2022-08-05 11:23:55.000 +0100361007268000,"MotoGP 18",status-playable;nvdec;UE4;ldn-untested,playable,2022-08-05 11:41:45.000 +01004B800D0E8000,"MotoGP 19",status-playable;nvdec;online-broken;UE4,playable,2022-08-05 11:54:14.000 +01001FA00FBBC000,"MotoGP 20",status-playable;ldn-untested,playable,2022-09-29 17:58:01.000 +01000F5013820000,"MotoGP 21",gpu;status-ingame;nvdec;online-broken;UE4;ldn-untested,ingame,2022-10-28 21:35:08.000 +01002A900D6D6000,"Motorsport Manager for Nintendo Switch",status-playable;nvdec,playable,2022-08-05 12:48:14.000 +01009DB00D6E0000,"Mountain Rescue Simulator",status-playable,playable,2022-09-20 16:36:48.000 +0100C4C00E73E000,"Moving Out",nvdec;status-playable,playable,2021-06-07 21:17:24.000 +0100D3300F110000,"Mr Blaster",status-playable,playable,2022-09-14 17:56:24.000 +,"Mr. DRILLER DrillLand",nvdec;status-playable,playable,2020-07-24 13:56:48.000 +,"Mr. Shifty",slow;status-playable,playable,2020-05-08 15:28:16.000 +,"Ms. Splosion Man",online;status-playable,playable,2020-05-09 20:45:43.000 +,"Muddledash",services;status-ingame,ingame,2020-05-08 16:46:14.000 +01009D200952E000,"MudRunner - American Wilds",gpu;status-ingame;ldn-untested;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-16 11:40:52.000 +010073E008E6E000,"Mugsters",status-playable,playable,2021-01-28 17:57:17.000 +,"MUJO",status-playable,playable,2020-05-08 16:31:04.000 +0100211005E94000,"Mulaka",status-playable,playable,2021-01-28 18:07:20.000 +010038B00B9AE000,"Mummy Pinball",status-playable,playable,2022-08-05 16:08:11.000 +,"Muse Dash",status-playable,playable,2020-06-06 14:41:29.000 +,"Mushroom Quest",status-playable,playable,2020-05-17 13:07:08.000 +,"Mushroom Wars 2",nvdec;status-playable,playable,2020-09-28 15:26:08.000 +,"Music Racer",status-playable,playable,2020-08-10 08:51:23.000 +,"MUSNYX",status-playable,playable,2020-05-08 14:24:43.000 +,"Musou Orochi 2 Ultimate",crash;nvdec;status-boots,boots,2021-04-09 19:39:16.000 +0100F6000EAA8000,"Must Dash Amigos",status-playable,playable,2022-09-20 16:45:56.000 +0100C3E00ACAA000,"Mutant Football League Dynasty Edition",status-playable;online-broken,playable,2022-08-05 17:01:51.000 +01004BE004A86000,"Mutant Mudds Collection",status-playable,playable,2022-08-05 17:11:38.000 +0100E6B00DEA4000,"Mutant Year Zero: Road to Eden",status-playable;nvdec;UE4,playable,2022-09-10 13:31:10.000 +0100161009E5C000,"MX Nitro",status-playable,playable,2022-09-27 22:34:33.000 +0100218011E7E000,"MX vs ATV All Out",status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-10-25 19:51:46.000 +,"MXGP3 - The Official Motocross Videogame",UE4;gpu;nvdec;status-ingame,ingame,2020-12-16 14:00:20.000 +01002C6012334000,"My Aunt is a Witch",status-playable,playable,2022-10-19 09:21:17.000 +,"My Butler",status-playable,playable,2020-06-27 13:46:23.000 +010031200B94C000,"My Friend Pedro: Blood Bullets Bananas",nvdec;status-playable,playable,2021-05-28 11:19:17.000 +,"My Girlfriend is a Mermaid!?",nvdec;status-playable,playable,2020-05-08 13:32:55.000 +,"MY HERO ONE'S JUSTICE",UE4;crash;gpu;online;status-menus,menus,2020-12-10 13:11:04.000 +,"MY HERO ONE'S JUSTICE 2",UE4;gpu;nvdec;status-ingame,ingame,2020-12-18 14:08:47.000 +0100E4701373E000,"My Hidden Things",status-playable,playable,2021-04-15 11:26:06.000 +,"My Little Dog Adventure",gpu;status-ingame,ingame,2020-12-10 17:47:37.000 +,"My Little Riding Champion",slow;status-playable,playable,2020-05-08 17:00:53.000 +010086B00C784000,"My Lovely Daughter",status-playable,playable,2022-11-24 17:25:32.000 +0100E7700C284000,"My Memory of Us",status-playable,playable,2022-08-20 11:03:14.000 +010028F00ABAE000,"My Riding Stables - Life with Horses",status-playable,playable,2022-08-05 21:39:07.000 +010042A00FBF0000,"My Riding Stables 2: A New Adventure",status-playable,playable,2021-05-16 14:14:59.000 +0100E25008E68000,"My Time At Portia",status-playable,playable,2021-05-28 12:42:55.000 +0100CD5011A02000,"My Universe - Cooking Star Restaurant",status-playable,playable,2022-10-19 10:00:44.000 +0100F71011A0A000,"My Universe - Fashion Boutique",status-playable;nvdec,playable,2022-10-12 14:54:19.000 +0100CD5011A02000,"My Universe - Pet Clinic Cats & Dogs",status-boots;crash;nvdec,boots,2022-02-06 02:05:53.000 +01006C301199C000,"My Universe - School Teacher",nvdec;status-playable,playable,2021-01-21 16:02:52.000 +,"n Verlore Verstand",slow;status-ingame,ingame,2020-12-10 18:00:28.000 +01009A500E3DA000,"n Verlore Verstand - Demo",status-playable,playable,2021-02-09 00:13:32.000 +01000D5005974000,"N++",status-playable,playable,2022-08-05 21:54:58.000 +,"NAIRI: Tower of Shirin",nvdec;status-playable,playable,2020-08-09 19:49:12.000 +010002F001220000,"NAMCO MUSEUM",status-playable;ldn-untested,playable,2024-08-13 07:52:21.000 +0100DAA00AEE6000,"NAMCO MUSEUM ARCADE PAC",status-playable,playable,2021-06-07 21:44:50.000 +,"NAMCOT COLLECTION",audio;status-playable,playable,2020-06-25 13:35:22.000 +010072B00BDDE000,"Narcos: Rise of the Cartels",UE4;crash;nvdec;status-boots,boots,2021-03-22 13:18:47.000 +010084D00CF5E000,"NARUTO SHIPPUDEN: ULTIMATE NINJA STORM 4 ROAD TO BORUTO",status-playable,playable,2024-06-29 13:04:22.000 +01006BB00800A000,"NARUTO SHIPPUDEN™: Ultimate Ninja Storm 3 Full Burst",status-playable;nvdec,playable,2024-06-16 14:58:05.000 +0100D2D0190A4000,"NARUTO X BARUTO Ultimate Ninja STORM CONNECTIONS",services-horizon;status-nothing,nothing,2024-07-25 05:16:48.000 +0100715007354000,"NARUTO™: Ultimate Ninja® STORM",status-playable;nvdec,playable,2022-08-06 14:10:31.000 +0100545016D5E000,"NASCAR Rivals",status-ingame;crash;Incomplete,ingame,2023-04-21 01:17:47.000 +0100103011894000,"Naught",UE4;status-playable,playable,2021-04-26 13:31:45.000 +01001AE00C1B2000,"NBA 2K Playgrounds 2",status-playable;nvdec;online-broken;UE4;vulkan-backend-bug,playable,2022-08-06 14:40:38.000 +0100760002048000,"NBA 2K18",gpu;status-ingame;ldn-untested,ingame,2022-08-06 14:17:51.000 +01001FF00B544000,"NBA 2K19",crash;ldn-untested;services;status-nothing,nothing,2021-04-16 13:07:21.000 +0100E24011D1E000,"NBA 2K21",gpu;status-boots,boots,2022-10-05 15:31:51.000 +0100ACA017E4E800,"NBA 2K23",status-boots,boots,2023-10-10 23:07:14.000 +010006501A8D8000,"NBA 2K24",cpu;gpu;status-boots,boots,2024-08-11 18:23:08.000 +0100F5A008126000,"NBA Playgrounds",status-playable;nvdec;online-broken;UE4,playable,2022-08-06 16:13:44.000 +010002900294A000,"NBA Playgrounds",status-playable;nvdec;online-broken;UE4,playable,2022-08-06 17:06:59.000 +,"Need a Packet?",status-playable,playable,2020-08-12 16:09:01.000 +010029B0118E8000,"Need for Speed Hot Pursuit Remastered",status-playable;online-broken,playable,2024-03-20 21:58:02.000 +,"Need For Speed Hot Pursuit Remastered",audio;online;slow;status-ingame,ingame,2020-10-27 17:46:58.000 +,"Nefarious",status-playable,playable,2020-12-17 03:20:33.000 +01008390136FC000,"Negative",nvdec;status-playable,playable,2021-03-24 11:29:41.000 +010065F00F55A000,"Neighbours back From Hell",status-playable;nvdec,playable,2022-10-12 15:36:48.000 +0100B4900AD3E000,"Nekopara Vol.1",status-playable;nvdec,playable,2022-08-06 18:25:54.000 +,"Nekopara Vol.2",status-playable,playable,2020-12-16 11:04:47.000 +010045000E418000,"Nekopara Vol.3",status-playable,playable,2022-10-03 12:49:04.000 +,"Nekopara Vol.4",crash;status-ingame,ingame,2021-01-17 01:47:18.000 +01006ED00BC76000,"Nelke & the Legendary Alchemists ~Ateliers of the New World~",status-playable,playable,2021-01-28 19:39:42.000 +,"Nelly Cootalot",status-playable,playable,2020-06-11 20:55:42.000 +01001AB0141A8000,"Neo : The World Ends with You (DEMO)- 新すばらしきこのせかい (体験版)",crash;status-ingame,ingame,2021-07-18 07:29:18.000 +0100EBB00D2F4000,"Neo Cab",status-playable,playable,2021-04-24 00:27:58.000 +,"Neo Cab Demo",crash;status-boots,boots,2020-06-16 00:14:00.000 +010006D0128B4000,"NEOGEO POCKET COLOR SELECTION Vol.1",status-playable,playable,2023-07-08 20:55:36.000 +0100BAB01113A000,"Neon Abyss",status-playable,playable,2022-10-05 15:59:44.000 +010075E0047F8000,"Neon Chrome",status-playable,playable,2022-08-06 18:38:34.000 +010032000EAC6000,"Neon Drive",status-playable,playable,2022-09-10 13:45:48.000 +0100B9201406A000,"Neon White",status-ingame;crash,ingame,2023-02-02 22:25:06.000 +0100743008694000,"Neonwall",status-playable;nvdec,playable,2022-08-06 18:49:52.000 +,"Neoverse Trinity Edition - 01001A20133E000",status-playable,playable,2022-10-19 10:28:03.000 +,"Nerdook Bundle Vol. 1",gpu;slow;status-ingame,ingame,2020-10-07 14:27:10.000 +01008B0010160000,"Nerved",status-playable;UE4,playable,2022-09-20 17:14:03.000 +,"NeuroVoider",status-playable,playable,2020-06-04 18:20:05.000 +0100C20012A54000,"Nevaeh",gpu;nvdec;status-ingame,ingame,2021-06-16 17:29:03.000 +010039801093A000,"Never Breakup",status-playable,playable,2022-10-05 16:12:12.000 +0100F79012600000,"Neverending Nightmares",crash;gpu;status-boots,boots,2021-04-24 01:43:35.000 +,"Neverlast",slow;status-ingame,ingame,2020-07-13 23:55:19.000 +010013700DA4A000,"Neverwinter Nights: Enhanced Edition",gpu;status-menus;nvdec,menus,2024-09-30 02:59:19.000 +,"New Frontier Days -Founding Pioneers-",status-playable,playable,2020-12-10 12:45:07.000 +0100F4300BF2C000,"New Pokémon Snap",status-playable,playable,2023-01-15 23:26:57.000 +010017700B6C2000,"New Super Lucky's Tale",status-playable,playable,2024-03-11 14:14:10.000 +0100EA80032EA000,"New Super Mario Bros. U Deluxe",32-bit;status-playable,playable,2023-10-08 02:06:37.000 +,"Newt One",status-playable,playable,2020-10-17 21:21:48.000 +,"Nexomon: Extinction",status-playable,playable,2020-11-30 15:02:22.000 +0100B69012EC6000,"Nexoria: Dungeon Rogue Heroes",gpu;status-ingame,ingame,2021-10-04 18:41:29.000 +,"Next Up Hero",online;status-playable,playable,2021-01-04 22:39:36.000 +0100E5600D446000,"Ni No Kuni Wrath of the White Witch",status-boots;32-bit;nvdec,boots,2024-07-12 04:52:59.000 +,"Nice Slice",nvdec;status-playable,playable,2020-06-17 15:13:27.000 +,"Niche - a genetics survival game",nvdec;status-playable,playable,2020-11-27 14:01:11.000 +010010701AFB2000,"Nickelodeon All-Star Brawl 2",status-playable,playable,2024-06-03 14:15:01.000 +,"Nickelodeon Kart Racers",status-playable,playable,2021-01-07 12:16:49.000 +0100CEC003A4A000,"Nickelodeon Paw Patrol: On a Roll",nvdec;status-playable,playable,2021-01-28 21:14:49.000 +,"Nicky: The Home Alone Golf Ball",status-playable,playable,2020-08-08 13:45:39.000 +0100A95012668000,"Nicole",status-playable;audout,playable,2022-10-05 16:41:44.000 +0100B8E016F76000,"NieR:Automata The End of YoRHa Edition",slow;status-ingame;crash,ingame,2024-05-17 01:06:34.000 +0100F3A0095A6000,"Night Call",status-playable;nvdec,playable,2022-10-03 12:57:00.000 +0100921006A04000,"Night in the Woods",status-playable,playable,2022-12-03 20:17:54.000 +0100D8500A692000,"Night Trap - 25th Anniversary Edition",status-playable;nvdec,playable,2022-08-08 13:16:14.000 +,"Nightmare Boy",status-playable,playable,2021-01-05 15:52:29.000 +01006E700B702000,"Nightmares from the Deep 2: The Siren's Call",status-playable;nvdec,playable,2022-10-19 10:58:53.000 +0100628004BCE000,"Nights of Azure 2: Bride of the New Moon",status-menus;crash;nvdec;regression,menus,2022-11-24 16:00:39.000 +,"Nightshade",nvdec;status-playable,playable,2020-05-10 19:43:31.000 +,"Nihilumbra",status-playable,playable,2020-05-10 16:00:12.000 +0100D03003F0E000,"Nine Parchments",status-playable;ldn-untested,playable,2022-08-07 12:32:08.000 +01002AF014F4C000,"NINJA GAIDEN 3: Razor's Edge",status-playable;nvdec,playable,2023-08-11 08:25:31.000 +0100E2F014F46000,"Ninja Gaiden Sigma",status-playable;nvdec,playable,2022-11-13 16:27:02.000 +,"Ninja Gaiden Sigma 2 - 0100696014FA000",status-playable;nvdec,playable,2024-07-31 21:53:48.000 +,"Ninja Shodown",status-playable,playable,2020-05-11 12:31:21.000 +,"Ninja Striker",status-playable,playable,2020-12-08 19:33:29.000 +0100CCD0073EA000,"Ninjala",status-boots;online-broken;UE4,boots,2024-07-03 20:04:49.000 +010003C00B868000,"Ninjin: Clash of Carrots",status-playable;online-broken,playable,2024-07-10 05:12:26.000 +0100746010E4C000,"NinNinDays",status-playable,playable,2022-11-20 15:17:29.000 +0100C9A00ECE6000,"Nintendo 64 - Nintendo Switch Online",gpu;status-ingame;vulkan,ingame,2024-04-23 20:21:07.000 +0100D870045B6000,"Nintendo Entertainment System - Nintendo Switch Online",status-playable;online,playable,2022-07-01 15:45:06.000 +0100C4B0034B2000,"Nintendo Labo - Toy-Con 01: Variety Kit",gpu;status-ingame,ingame,2022-08-07 12:56:07.000 +01009AB0034E0000,"Nintendo Labo Toy-Con 02: Robot Kit",gpu;status-ingame,ingame,2022-08-07 13:03:19.000 +01001E9003502000,"Nintendo Labo Toy-Con 03: Vehicle Kit",services;status-menus;crash,menus,2022-08-03 17:20:11.000 +0100165003504000,"Nintendo Labo Toy-Con 04: VR Kit",services;status-boots;crash,boots,2023-01-17 22:30:24.000 +0100D2F00D5C0000,"Nintendo Switch Sports",deadlock;status-boots,boots,2024-09-10 14:20:24.000 +01000EE017182000,"Nintendo Switch Sports Online Play Test",gpu;status-ingame,ingame,2022-03-16 07:44:12.000 +010037200C72A000,"Nippon Marathon",nvdec;status-playable,playable,2021-01-28 20:32:46.000 +010020901088A000,"Nirvana Pilot Yume",status-playable,playable,2022-10-29 11:49:49.000 +,"No Heroes Here",online;status-playable,playable,2020-05-10 02:41:57.000 +0100853015E86000,"No Man’s Sky",gpu;status-ingame,ingame,2024-07-25 05:18:17.000 +0100F0400F202000,"No More Heroes",32-bit;status-playable,playable,2022-09-13 07:44:27.000 +010071400F204000,"No More Heroes 2 Desperate Struggle",32-bit;status-playable;nvdec,playable,2022-11-19 01:38:13.000 +01007C600EB42000,"No More Heroes 3",gpu;status-ingame;UE4,ingame,2024-03-11 17:06:19.000 +01009F3011004000,"No Straight Roads",status-playable;nvdec,playable,2022-10-05 17:01:38.000 +,"NO THING",status-playable,playable,2021-01-04 19:06:01.000 +0100542012884000,"Nongunz: Doppelganger Edition",status-playable,playable,2022-10-29 12:00:39.000 +,"Norman's Great Illusion",status-playable,playable,2020-12-15 19:28:24.000 +01001A500AD6A000,"Norn9 ~Norn + Nonette~ LOFN",status-playable;nvdec;vulkan-backend-bug,playable,2022-12-09 09:29:16.000 +,"NORTH",nvdec;status-playable,playable,2021-01-05 16:17:44.000 +0100A9E00D97A000,"Northgard",status-menus;crash,menus,2022-02-06 02:05:35.000 +01008AE019614000,"nOS new Operating System",status-playable,playable,2023-03-22 16:49:08.000 +0100CB800B07E000,"NOT A HERO",status-playable,playable,2021-01-28 19:31:24.000 +,"Not Not a Brain Buster",status-playable,playable,2020-05-10 02:05:26.000 +0100DAF00D0E2000,"Not Tonight",status-playable;nvdec,playable,2022-10-19 11:48:47.000 +,"Nubarron: The adventure of an unlucky gnome",status-playable,playable,2020-12-17 16:45:17.000 +,"Nuclien",status-playable,playable,2020-05-10 05:32:55.000 +,"Numbala",status-playable,playable,2020-05-11 12:01:07.000 +010020500C8C8000,"Number Place 10000",gpu;status-menus,menus,2021-11-24 09:14:23.000 +010003701002C000,"Nurse Love Syndrome",status-playable,playable,2022-10-13 10:05:22.000 +0000000000000000,"nx-hbmenu",status-boots;Needs Update;homebrew,boots,2024-04-06 22:05:32.000 +,"nxquake2",services;status-nothing;crash;homebrew,nothing,2022-08-04 23:14:04.000 +010049F00EC30000,"Nyan Cat: Lost in Space",online;status-playable,playable,2021-06-12 13:22:03.000 +01002E6014FC4000,"O---O",status-playable,playable,2022-10-29 12:12:14.000 +,"OBAKEIDORO!",nvdec;online;status-playable,playable,2020-10-16 16:57:34.000 +01002A000C478000,"Observer",UE4;gpu;nvdec;status-ingame,ingame,2021-03-03 20:19:45.000 +,"Oceanhorn",status-playable,playable,2021-01-05 13:55:22.000 +01006CB010840000,"Oceanhorn 2 Knights of the Lost Realm",status-playable,playable,2021-05-21 18:26:10.000 +,"Octocopter: Double or Squids",status-playable,playable,2021-01-06 01:30:16.000 +0100CAB006F54000,"Octodad Dadliest Catch",crash;status-boots,boots,2021-04-23 15:26:12.000 +,"Octopath Traveler",UE4;crash;gpu;status-ingame,ingame,2020-08-31 02:34:36.000 +0100A3501946E000,"Octopath Traveler II",gpu;status-ingame;amd-vendor-bug,ingame,2024-09-22 11:39:20.000 +010084300C816000,"Odallus",status-playable,playable,2022-08-08 12:37:58.000 +0100BB500EE3C000,"Oddworld: Munch's Oddysee",gpu;nvdec;status-ingame,ingame,2021-06-17 12:11:50.000 +01005E700ABB8000,"Oddworld: New 'n' Tasty",nvdec;status-playable,playable,2021-06-17 17:51:32.000 +0100D210177C6000,"Oddworld: Soulstorm",services-horizon;status-boots;crash,boots,2024-08-18 13:13:26.000 +01002EA00ABBA000,"Oddworld: Stranger's Wrath HD",status-menus;crash;nvdec;loader-allocator,menus,2021-11-23 09:23:21.000 +,"Odium to the Core",gpu;status-ingame,ingame,2021-01-08 14:03:52.000 +01006F5013202000,"Off And On Again",status-playable,playable,2022-10-29 19:46:26.000 +01003CD00E8BC000,"Offroad Racing",status-playable;online-broken;UE4,playable,2022-09-14 18:53:22.000 +01003B900AE12000,"Oh My Godheads: Party Edition",status-playable,playable,2021-04-15 11:04:11.000 +,"Oh...Sir! The Hollywood Roast",status-ingame,ingame,2020-12-06 00:42:30.000 +,"OK K.O.! Let's Play Heroes",nvdec;status-playable,playable,2021-01-11 18:41:02.000 +0100276009872000,"OKAMI HD",status-playable;nvdec,playable,2024-04-05 06:24:58.000 +01006AB00BD82000,"OkunoKA",status-playable;online-broken,playable,2022-08-08 14:41:51.000 +0100CE2007A86000,"Old Man's Journey",nvdec;status-playable,playable,2021-01-28 19:16:52.000 +,"Old School Musical",status-playable,playable,2020-12-10 12:51:12.000 +,"Old School Racer 2",status-playable,playable,2020-10-19 12:11:26.000 +0100E0200B980000,"OlliOlli: Switch Stance",gpu;status-boots,boots,2024-04-25 08:36:37.000 +0100F9D00C186000,"Olympia Soiree",status-playable,playable,2022-12-04 21:07:12.000 +,"OLYMPIC GAMES TOKYO 2020",ldn-untested;nvdec;online;status-playable,playable,2021-01-06 01:20:24.000 +01001D600E51A000,"Omega Labyrinth Life",status-playable,playable,2021-02-23 21:03:03.000 +,"Omega Vampire",nvdec;status-playable,playable,2020-10-17 19:15:35.000 +,"Omensight: Definitive Edition",UE4;crash;nvdec;status-ingame,ingame,2020-07-26 01:45:14.000 +01006DB00D970000,"OMG Zombies!",32-bit;status-playable,playable,2021-04-12 18:04:45.000 +010014E017B14000,"OMORI",status-playable,playable,2023-01-07 20:21:02.000 +,"Once Upon A Coma",nvdec;status-playable,playable,2020-08-01 12:09:39.000 +,"One More Dungeon",status-playable,playable,2021-01-06 09:10:58.000 +,"One Person Story",status-playable,playable,2020-07-14 11:51:02.000 +,"One Piece Pirate Warriors 3",nvdec;status-playable,playable,2020-05-10 06:23:52.000 +,"One Piece Unlimited World Red Deluxe Edition",status-playable,playable,2020-05-10 22:26:32.000 +01008FE00E2F6000,"ONE PIECE: PIRATE WARRIORS 4",status-playable;online-broken;ldn-untested,playable,2022-09-27 22:55:46.000 +0100463013246000,"Oneiros",status-playable,playable,2022-10-13 10:17:22.000 +,"OneWayTicket",UE4;status-playable,playable,2020-06-20 17:20:49.000 +010057C00D374000,"Oniken",status-playable,playable,2022-09-10 14:22:38.000 +010037900C814000,"Oniken: Unstoppable Edition",status-playable,playable,2022-08-08 14:52:06.000 +,"Onimusha: Warlords",nvdec;status-playable,playable,2020-07-31 13:08:39.000 +0100CF4011B2A000,"OniNaki",nvdec;status-playable,playable,2021-02-27 21:52:42.000 +010074000BE8E000,"oOo: Ascension",status-playable,playable,2021-01-25 14:13:34.000 +0100D5400BD90000,"Operación Triunfo 2017",services;status-ingame;nvdec,ingame,2022-08-08 15:06:42.000 +01006CF00CFA4000,"Operencia The Stolen Sun",UE4;nvdec;status-playable,playable,2021-06-08 13:51:07.000 +01004A200BE82000,"OPUS Collection",status-playable,playable,2021-01-25 15:24:04.000 +010049C0075F0000,"OPUS: The Day We Found Earth",nvdec;status-playable,playable,2021-01-21 18:29:31.000 +,"Ord.",status-playable,playable,2020-12-14 11:59:06.000 +010061D00DB74000,"Ori and the Blind Forest: Definitive Edition",status-playable;nvdec;online-broken,playable,2022-09-14 19:58:13.000 +010005800F46E000,"Ori and the Blind Forest: Definitive Edition Demo",status-playable,playable,2022-09-10 14:40:12.000 +01008DD013200000,"Ori and the Will of the Wisps",status-playable,playable,2023-03-07 00:47:13.000 +,"Orn: The Tiny Forest Sprite",UE4;gpu;status-ingame,ingame,2020-08-07 14:25:30.000 +0100E5900F49A000,"Othercide",status-playable;nvdec,playable,2022-10-05 19:04:38.000 +,"OTOKOMIZU",status-playable,playable,2020-07-13 21:00:44.000 +01006AF013A9E000,"Otti house keeper",status-playable,playable,2021-01-31 12:11:24.000 +,"OTTTD",slow;status-ingame,ingame,2020-10-10 19:31:07.000 +010097F010FE6000,"Our two Bedroom Story",gpu;status-ingame;nvdec,ingame,2023-10-10 17:41:20.000 +,"Our World Is Ended.",nvdec;status-playable,playable,2021-01-19 22:46:57.000 +01005A700A166000,"Out Of The Box",status-playable,playable,2021-01-28 01:34:27.000 +0100A0D013464000,"Outbreak: Endless Nightmares",status-playable,playable,2022-10-29 12:35:49.000 +0100C850130FE000,"Outbreak: Epidemic",status-playable,playable,2022-10-13 10:27:31.000 +0100D9F013102000,"Outbreak: Lost Hope",crash;status-boots,boots,2021-04-26 18:01:23.000 +0100B450130FC000,"Outbreak: The New Nightmare",status-playable,playable,2022-10-19 15:42:07.000 +01006EE013100000,"Outbreak: The Nightmare Chronicles",status-playable,playable,2022-10-13 10:41:57.000 +0100B8900EFA6000,"Outbuddies DX",gpu;status-ingame,ingame,2022-08-04 22:39:24.000 +01008D4007A1E000,"Outlast",status-playable;nvdec;loader-allocator;vulkan-backend-bug,playable,2024-01-27 04:44:26.000 +0100DE70085E8000,"Outlast 2",status-ingame;crash;nvdec,ingame,2022-01-22 22:28:05.000 +01006FD0080B2000,"Overcooked! 2",status-playable;ldn-untested,playable,2022-08-08 16:48:10.000 +0100F28011892000,"Overcooked! All You Can Eat",ldn-untested;online;status-playable,playable,2021-04-15 10:33:52.000 +01009B900401E000,"Overcooked! Special Edition",status-playable,playable,2022-08-08 20:48:52.000 +0100D7F00EC64000,"Overlanders",status-playable;nvdec;UE4,playable,2022-09-14 20:15:06.000 +01008EA00E816000,"Overpass",status-playable;online-broken;UE4;ldn-untested,playable,2022-10-17 15:29:47.000 +0100647012F62000,"Override 2 Super Mech League",status-playable;online-broken;UE4,playable,2022-10-19 15:56:04.000 +01008A700F7EE000,"Override: Mech City Brawl - Super Charged Mega Edition",status-playable;nvdec;online-broken;UE4,playable,2022-09-20 17:33:32.000 +0100F8600E21E000,"Overwatch®: Legendary Edition",deadlock;status-boots,boots,2022-09-14 20:22:22.000 +01005F000CC18000,"OVERWHELM",status-playable,playable,2021-01-21 18:37:18.000 +,"Owlboy",status-playable,playable,2020-10-19 14:24:45.000 +0100AD9012510000,"PAC-MAN 99",gpu;status-ingame;online-broken,ingame,2024-04-23 00:48:25.000 +,"PAC-MAN CHAMPIONSHIP EDITION 2 PLUS",status-playable,playable,2021-01-19 22:06:18.000 +011123900AEE0000,"Paladins",online;status-menus,menus,2021-01-21 19:21:37.000 +0100F0D004CAE000,"PAN-PAN A tiny big adventure",audout;status-playable,playable,2021-01-25 14:42:00.000 +010083700B730000,"Pang Adventures",status-playable,playable,2021-04-10 12:16:59.000 +,"Pantsu Hunter",status-playable,playable,2021-02-19 15:12:27.000 +,"Panzer Dragoon: Remake",status-playable,playable,2020-10-04 04:03:55.000 +01004AE0108E0000,"Panzer Paladin",status-playable,playable,2021-05-05 18:26:00.000 +,"Paper Dolls Original",UE4;crash;status-boots,boots,2020-07-13 20:26:21.000 +0100A3900C3E2000,"Paper Mario The Origami King",audio;status-playable;Needs Update,playable,2024-08-09 18:27:40.000 +0100ECD018EBE000,"Paper Mario: The Thousand-Year Door",gpu;status-ingame;intel-vendor-bug;slow,ingame,2025-01-07 04:27:35.000 +01006AD00B82C000,"Paperbound Brawlers",status-playable,playable,2021-01-25 14:32:15.000 +0100DC70174E0000,"Paradigm Paradox",status-playable;vulkan-backend-bug,playable,2022-12-03 22:28:13.000 +01007FB010DC8000,"Paradise Killer",status-playable;UE4,playable,2022-10-05 19:33:05.000 +010063400B2EC000,"Paranautical Activity",status-playable,playable,2021-01-25 13:49:19.000 +01006B5012B32000,"Part Time UFO",status-ingame;crash,ingame,2023-03-03 03:13:05.000 +01007FC00A040000,"Party Arcade",status-playable;online-broken;UE4;ldn-untested,playable,2022-08-09 12:32:53.000 +0100B8E00359E000,"Party Golf",status-playable;nvdec,playable,2022-08-09 12:38:30.000 +010022801217E000,"Party Hard 2",status-playable;nvdec,playable,2022-10-05 20:31:48.000 +,"Party Treats",status-playable,playable,2020-07-02 00:05:00.000 +01001E500EA16000,"Path of Sin: Greed",status-menus;crash,menus,2021-11-24 08:00:00.000 +010031F006E76000,"Pato Box",status-playable,playable,2021-01-25 15:17:52.000 +0100360016800000,"PAW Patrol: Grand Prix",gpu;status-ingame,ingame,2024-05-03 16:16:11.000 +01001F201121E000,"Paw Patrol: Might Pups Save Adventure Bay!",status-playable,playable,2022-10-13 12:17:55.000 +01000c4015030000,"Pawapoke R",services-horizon;status-nothing,nothing,2024-05-14 14:28:32.000 +0100A56006CEE000,"Pawarumi",status-playable;online-broken,playable,2022-09-10 15:19:33.000 +0100274004052000,"PAYDAY 2",status-playable;nvdec;online-broken;ldn-untested,playable,2022-08-09 12:56:39.000 +010085700ABC8000,"PBA Pro Bowling",status-playable;nvdec;online-broken;UE4,playable,2022-09-14 23:00:49.000 +0100F95013772000,"PBA Pro Bowling 2021",status-playable;online-broken;UE4,playable,2022-10-19 16:46:40.000 +,"PC Building Simulator",status-playable,playable,2020-06-12 00:31:58.000 +010002100CDCC000,"Peaky Blinders: Mastermind",status-playable,playable,2022-10-19 16:56:35.000 +,"Peasant Knight",status-playable,playable,2020-12-22 09:30:50.000 +0100C510049E0000,"Penny-Punching Princess",status-playable,playable,2022-08-09 13:37:05.000 +0100CA901AA9C000,"Penny's Big Breakaway",status-playable;amd-vendor-bug,playable,2024-05-27 07:58:51.000 +,"Perception",UE4;crash;nvdec;status-menus,menus,2020-12-18 11:49:23.000 +010011700D1B2000,"Perchang",status-playable,playable,2021-01-25 14:19:52.000 +010089F00A3B4000,"Perfect Angle",status-playable,playable,2021-01-21 18:48:45.000 +01005CD012DC0000,"Perky Little Things",status-boots;crash;vulkan,boots,2024-08-04 07:22:46.000 +,"Persephone",status-playable,playable,2021-03-23 22:39:19.000 +,"Perseverance",status-playable,playable,2020-07-13 18:48:27.000 +010062B01525C000,"Persona 4 Golden",status-playable,playable,2024-08-07 17:48:07.000 +01005CA01580E000,"Persona 5 Royal",gpu;status-ingame,ingame,2024-08-17 21:45:15.000 +010087701B092000,"Persona 5 Tactica",status-playable,playable,2024-04-01 22:21:03.000 +,"Persona 5: Scramble",deadlock;status-boots,boots,2020-10-04 03:22:29.000 +0100801011C3E000,"Persona 5: Strikers (US)",status-playable;nvdec;mac-bug,playable,2023-09-26 09:36:01.000 +010044400EEAE000,"Petoons Party",nvdec;status-playable,playable,2021-03-02 21:07:58.000 +010053401147C000,"PGA TOUR 2K21",deadlock;status-ingame;nvdec,ingame,2022-10-05 21:53:50.000 +0100DDD00C0EA000,"Phantaruk",status-playable,playable,2021-06-11 18:09:54.000 +0100063005C86000,"PHANTOM BREAKER: BATTLE GROUNDS OVER DRIVE",audio;status-playable;nvdec,playable,2024-02-29 14:20:35.000 +010096F00E5B0000,"Phantom Doctrine",status-playable;UE4,playable,2022-09-15 10:51:50.000 +0100C31005A50000,"Phantom Trigger",status-playable,playable,2022-08-09 14:27:30.000 +0100CB000A142000,"Phoenix Wright: Ace Attorney Trilogy",status-playable,playable,2023-09-15 22:03:12.000 +,"PHOGS!",online;status-playable,playable,2021-01-18 15:18:37.000 +,"Physical Contact: 2048",slow;status-playable,playable,2021-01-25 15:18:32.000 +01008110036FE000,"Physical Contact: Speed",status-playable,playable,2022-08-09 14:40:46.000 +010077300A86C000,"Pianista: The Legendary Virtuoso",status-playable;online-broken,playable,2022-08-09 14:52:56.000 +010012100E8DC000,"Picross Lord Of The Nazarick",status-playable,playable,2023-02-08 15:54:56.000 +,"Picross S2",status-playable,playable,2020-10-15 12:01:40.000 +,"Picross S3",status-playable,playable,2020-10-15 11:55:27.000 +,"Picross S4",status-playable,playable,2020-10-15 12:33:46.000 +0100AC30133EC000,"Picross S5",status-playable,playable,2022-10-17 18:51:42.000 +010025901432A000,"Picross S6",status-playable,playable,2022-10-29 17:52:19.000 +,"Picross S7",status-playable,playable,2022-02-16 12:51:25.000 +010043B00E1CE000,"PictoQuest",status-playable,playable,2021-02-27 15:03:16.000 +,"Piczle Lines DX",UE4;crash;nvdec;status-menus,menus,2020-11-16 04:21:31.000 +,"Piczle Lines DX 500 More Puzzles!",UE4;status-playable,playable,2020-12-15 23:42:51.000 +01000FD00D5CC000,"Pig Eat Ball",services;status-ingame,ingame,2021-11-30 01:57:45.000 +0100AA80194B0000,"Pikmin 1",audio;status-ingame,ingame,2024-05-28 18:56:11.000 +0100D680194B2000,"Pikmin 2",gpu;status-ingame,ingame,2023-07-31 08:53:41.000 +0100F4C009322000,"Pikmin 3 Deluxe",gpu;status-ingame;32-bit;nvdec;Needs Update,ingame,2024-09-03 00:28:26.000 +01001CB0106F8000,"Pikmin 3 Deluxe Demo",32-bit;crash;demo;gpu;status-ingame,ingame,2021-06-16 18:38:07.000 +0100B7C00933A000,"Pikmin 4",gpu;status-ingame;crash;UE4,ingame,2024-08-26 03:39:08.000 +0100E0B019974000,"Pikmin 4 Demo",gpu;status-ingame;nvdec;UE4;demo;amd-vendor-bug,ingame,2023-09-22 21:41:08.000 +0100D6200E130000,"Pillars of Eternity",status-playable,playable,2021-02-27 00:24:21.000 +01007A500B0B2000,"Pilot Sports",status-playable,playable,2021-01-20 15:04:17.000 +0100DA70186D4000,"Pinball FX",status-playable,playable,2024-05-03 17:09:11.000 +0100DB7003828000,"Pinball FX3",status-playable;online-broken,playable,2022-11-11 23:49:07.000 +,"Pine",slow;status-ingame,ingame,2020-07-29 16:57:39.000 +,"Pinstripe",status-playable,playable,2020-11-26 10:40:40.000 +01002B20174EE000,"Piofiore: Episodio 1926",status-playable,playable,2022-11-23 18:36:05.000 +,"Piofiore: Fated Memories",nvdec;status-playable,playable,2020-11-30 14:27:50.000 +0100EA2013BCC000,"Pixel Game Maker Series Puzzle Pedestrians",status-playable,playable,2022-10-24 20:15:50.000 +0100859013CE6000,"Pixel Game Maker Series Werewolf Princess Kaguya",crash;services;status-nothing,nothing,2021-03-26 00:23:07.000 +,"Pixel Gladiator",status-playable,playable,2020-07-08 02:41:26.000 +010000E00E612000,"Pixel Puzzle Makeout League",status-playable,playable,2022-10-13 12:34:00.000 +,"PixelJunk Eden 2",crash;status-ingame,ingame,2020-12-17 11:55:52.000 +0100E4D00A690000,"Pixeljunk Monsters 2",status-playable,playable,2021-06-07 03:40:01.000 +01004A900C352000,"Pizza Titan Ultra",nvdec;status-playable,playable,2021-01-20 15:58:42.000 +05000FD261232000,"Pizza Tower",status-ingame;crash,ingame,2024-09-16 00:21:56.000 +0100FF8005EB2000,"Plague Road",status-playable,playable,2022-08-09 15:27:14.000 +010030B00C316000,"Planescape: Torment and Icewind Dale: Enhanced Editions",cpu;status-boots;32-bit;crash;Needs Update,boots,2022-09-10 03:58:26.000 +,"PLANET ALPHA",UE4;gpu;status-ingame,ingame,2020-12-16 14:42:20.000 +01007EA019CFC000,"Planet Cube Edge",status-playable,playable,2023-03-22 17:10:12.000 +,"planetarian HD ~the reverie of a little planet~",status-playable,playable,2020-10-17 20:26:20.000 +010087000428E000,"Plantera",status-playable,playable,2022-08-09 15:36:28.000 +0100C56010FD8000,"Plants vs. Zombies: Battle for Neighborville Complete Edition",gpu;audio;status-boots;crash,boots,2024-09-02 12:58:14.000 +0100E5B011F48000,"Ploid Saga",status-playable,playable,2021-04-19 16:58:45.000 +01009440095FE000,"Pode",nvdec;status-playable,playable,2021-01-25 12:58:35.000 +010086F0064CE000,"Poi: Explorer Edition",nvdec;status-playable,playable,2021-01-21 19:32:00.000 +0100EB6012FD2000,"Poison Control",status-playable,playable,2021-05-16 14:01:54.000 +0100000011D90000,"Pokémon Brilliant Diamond",gpu;status-ingame;ldn-works,ingame,2024-08-28 13:26:35.000 +010072400E04A000,"Pokémon Café Mix",status-playable,playable,2021-08-17 20:00:04.000 +,"Pokémon HOME",Needs Update;crash;services;status-menus,menus,2020-12-06 06:01:51.000 +01001F5010DFA000,"Pokémon Legends: Arceus",gpu;status-ingame;Needs Update;ldn-works,ingame,2024-09-19 10:02:02.000 +01003D200BAA2000,"Pokémon Mystery Dungeon Rescue Team DX",status-playable;mac-bug,playable,2024-01-21 00:16:32.000 +01005D100807A000,"Pokemon Quest",status-playable,playable,2022-02-22 16:12:32.000 +0100A3D008C5C000,"Pokémon Scarlet",gpu;status-ingame;nvdec;ldn-works;amd-vendor-bug,ingame,2023-12-14 13:18:29.000 +01008DB008C2C000,"Pokémon Shield",deadlock;status-ingame;crash;online-broken;ldn-works;LAN,ingame,2024-08-12 07:20:22.000 +0100ABF008968000,"Pokémon Sword",deadlock;status-ingame;crash;online-broken;ldn-works;LAN,ingame,2024-08-26 15:40:37.000 +01008F6008C5E000,"Pokémon Violet",gpu;status-ingame;nvdec;ldn-works;amd-vendor-bug;mac-bug,ingame,2024-07-30 02:51:48.000 +0100187003A36000,"Pokémon: Let's Go, Eevee!",status-ingame;crash;nvdec;online-broken;ldn-broken,ingame,2024-06-01 15:03:04.000 +010003F003A34000,"Pokémon: Let's Go, Pikachu!",status-ingame;crash;nvdec;online-broken;ldn-broken,ingame,2024-03-15 07:55:41.000 +01009AD008C4C000,"Pokémon: Let's Go, Pikachu! demo",slow;status-playable;demo,playable,2023-11-26 11:23:20.000 +0100B3F000BE2000,"Pokkén Tournament DX",status-playable;nvdec;ldn-works;opengl-backend-bug;LAN;amd-vendor-bug;intel-vendor-bug,playable,2024-07-18 23:11:08.000 +010030D005AE6000,"Pokken Tournament DX Demo",status-playable;demo;opengl-backend-bug,playable,2022-08-10 12:03:19.000 +,"Polandball: Can Into Space!",status-playable,playable,2020-06-25 15:13:26.000 +,"Poly Bridge",services;status-playable,playable,2020-06-08 23:32:41.000 +010017600B180000,"Polygod",slow;status-ingame;regression,ingame,2022-08-10 14:38:14.000 +010074B00ED32000,"Polyroll",gpu;status-boots,boots,2021-07-01 16:16:50.000 +,"Ponpu",status-playable,playable,2020-12-16 19:09:34.000 +,"Pooplers",status-playable,playable,2020-11-02 11:52:10.000 +01007EF013CA0000,"Port Royale 4",status-menus;crash;nvdec,menus,2022-10-30 14:34:06.000 +01007BB017812000,"Portal",status-playable,playable,2024-06-12 03:48:29.000 +0100ABD01785C000,"Portal 2",gpu;status-ingame,ingame,2023-02-20 22:44:15.000 +,"Portal Dogs",status-playable,playable,2020-09-04 12:55:46.000 +0100437004170000,"Portal Knights",ldn-untested;online;status-playable,playable,2021-05-27 19:29:04.000 +,"Potata: Fairy Flower",nvdec;status-playable,playable,2020-06-17 09:51:34.000 +01000A4014596000,"Potion Party",status-playable,playable,2021-05-06 14:26:54.000 +,"Power Rangers: Battle for the Grid",status-playable,playable,2020-06-21 16:52:42.000 +0100D1C01C194000,"Powerful Pro Baseball 2024-2025",gpu;status-ingame,ingame,2024-08-25 06:40:48.000 +01008E100E416000,"PowerSlave Exhumed",gpu;status-ingame,ingame,2023-07-31 23:19:10.000 +,"Prehistoric Dude",gpu;status-ingame,ingame,2020-10-12 12:38:48.000 +,"Pretty Princess Magical Coordinate",status-playable,playable,2020-10-15 11:43:41.000 +01007F00128CC000,"Pretty Princess Party",status-playable,playable,2022-10-19 17:23:58.000 +010009300D278000,"Preventive Strike",status-playable;nvdec,playable,2022-10-06 10:55:51.000 +0100210019428000,"Prince of Persia: The Lost Crown",status-ingame;crash,ingame,2024-06-08 21:31:58.000 +01007A3009184000,"Princess Peach: Showtime!",status-playable;UE4,playable,2024-09-21 13:39:45.000 +010024701DC2E000,"Princess Peach: Showtime! Demo",status-playable;UE4;demo,playable,2024-03-10 17:46:45.000 +01008FA01187A000,"Prinny 2: Dawn of Operation Panties, Dood!",32-bit;status-playable,playable,2022-10-13 12:42:58.000 +0100A6E01681C000,"Prinny Presents NIS Classics Volume 1",status-boots;crash;Needs Update,boots,2023-02-02 07:23:09.000 +01007A0011878000,"Prinny: Can I Really Be the Hero?",32-bit;status-playable;nvdec,playable,2023-10-22 09:25:25.000 +010007F00879E000,"PriPara: All Idol Perfect Stage",status-playable,playable,2022-11-22 16:35:52.000 +010029200AB1C000,"Prison Architect",status-playable,playable,2021-04-10 12:27:58.000 +0100C1801B914000,"Prison City",gpu;status-ingame,ingame,2024-03-01 08:19:33.000 +0100F4800F872000,"Prison Princess",status-playable,playable,2022-11-20 15:00:25.000 +0100A9800A1B6000,"Professional Construction - The Simulation",slow;status-playable,playable,2022-08-10 15:15:45.000 +,"Professional Farmer: Nintendo Switch Edition",slow;status-playable,playable,2020-12-16 13:38:19.000 +,"Professor Lupo and his Horrible Pets",status-playable,playable,2020-06-12 00:08:45.000 +0100D1F0132F6000,"Professor Lupo: Ocean",status-playable,playable,2021-04-14 16:33:33.000 +0100BBD00976C000,"Project Highrise: Architect's Edition",status-playable,playable,2022-08-10 17:19:12.000 +0100ACE00DAB6000,"Project Nimbus: Complete Edition",status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-08-10 17:35:43.000 +01002980140F6000,"Project TRIANGLE STRATEGY Debut Demo",status-playable;UE4;demo,playable,2022-10-24 21:40:27.000 +,"Project Warlock",status-playable,playable,2020-06-16 10:50:41.000 +,"Psikyo Collection Vol 1",32-bit;status-playable,playable,2020-10-11 13:18:47.000 +0100A2300DB78000,"Psikyo Collection Vol. 3",status-ingame,ingame,2021-06-07 02:46:23.000 +01009D400C4A8000,"Psikyo Collection Vol.2",32-bit;status-playable,playable,2021-06-07 03:22:07.000 +01007A200F2E2000,"Psikyo Shooting Stars Alpha",32-bit;status-playable,playable,2021-04-13 12:03:43.000 +0100D7400F2E4000,"Psikyo Shooting Stars Bravo",32-bit;status-playable,playable,2021-06-14 12:09:07.000 +0100EC100A790000,"PSYVARIAR DELTA",nvdec;status-playable,playable,2021-01-20 13:01:46.000 +,"Puchitto kurasutā",Need-Update;crash;services;status-menus,menus,2020-07-04 16:44:28.000 +0100861012474000,"Pulstario",status-playable,playable,2022-10-06 11:02:01.000 +01009AE00B788000,"Pumped BMX Pro",status-playable;nvdec;online-broken,playable,2022-09-20 17:40:50.000 +01006C10131F6000,"Pumpkin Jack",status-playable;nvdec;UE4,playable,2022-10-13 12:52:32.000 +010016400F07E000,"PUSH THE CRATE",status-playable;nvdec;UE4,playable,2022-09-15 13:28:41.000 +0100B60010432000,"Push the Crate 2",UE4;gpu;nvdec;status-ingame,ingame,2021-06-10 14:20:01.000 +,"Pushy and Pully in Blockland",status-playable,playable,2020-07-04 11:44:41.000 +,"Puyo Puyo Champions",online;status-playable,playable,2020-06-19 11:35:08.000 +010038E011940000,"Puyo Puyo Tetris 2",status-playable;ldn-untested,playable,2023-09-26 11:35:25.000 +,"Puzzle and Dragons GOLD",slow;status-playable,playable,2020-05-13 15:09:34.000 +010079E01A1E0000,"Puzzle Bobble Everybubble!",audio;status-playable;ldn-works,playable,2023-06-10 03:53:40.000 +,"Puzzle Book",status-playable,playable,2020-09-28 13:26:01.000 +0100476004A9E000,"Puzzle Box Maker",status-playable;nvdec;online-broken,playable,2022-08-10 18:00:52.000 +0100A4E017372000,"Pyramid Quest",gpu;status-ingame,ingame,2023-08-16 21:14:52.000 +,"Q-YO Blaster",gpu;status-ingame,ingame,2020-06-07 22:36:53.000 +010023600AA34000,"Q.U.B.E. 2",UE4;status-playable,playable,2021-03-03 21:38:57.000 +0100A8D003BAE000,"Qbics Paint",gpu;services;status-ingame,ingame,2021-06-07 10:54:09.000 +0100BA5012E54000,"Quake",gpu;status-menus;crash,menus,2022-08-08 12:40:34.000 +010048F0195E8000,"Quake II",status-playable,playable,2023-08-15 03:42:14.000 +,"QuakespasmNX",status-nothing;crash;homebrew,nothing,2022-07-23 19:28:07.000 +010045101288A000,"Quantum Replica",status-playable;nvdec;UE4,playable,2022-10-30 21:17:22.000 +0100F1400BA88000,"Quarantine Circular",status-playable,playable,2021-01-20 15:24:15.000 +0100DCF00F13A000,"Queen's Quest 4: Sacred Truce",status-playable;nvdec,playable,2022-10-13 12:59:21.000 +0100492012378000,"Quell Zen",gpu;status-ingame,ingame,2021-06-11 15:59:53.000 +01001DE005012000,"Quest of Dungeons",status-playable,playable,2021-06-07 10:29:22.000 +,"QuietMansion2",status-playable,playable,2020-09-03 14:59:35.000 +0100AF100EE76000,"Quiplash 2 InterLASHional",status-playable;online-working,playable,2022-10-19 17:43:45.000 +,"R-Type Dimensions EX",status-playable,playable,2020-10-09 12:04:43.000 +0100F930136B6000,"R-TYPE FINAL 2",slow;status-ingame;nvdec;UE4,ingame,2022-10-30 21:46:29.000 +01007B0014300000,"R-TYPE FINAL 2 Demo",slow;status-ingame;nvdec;UE4;demo,ingame,2022-10-24 21:57:42.000 +0100B5A004302000,"R.B.I. Baseball 17",status-playable;online-working,playable,2022-08-11 11:55:47.000 +01005CC007616000,"R.B.I. Baseball 18",status-playable;nvdec;online-working,playable,2022-08-11 11:27:52.000 +0100FCB00BF40000,"R.B.I. Baseball 19",status-playable;nvdec;online-working,playable,2022-08-11 11:43:52.000 +010061400E7D4000,"R.B.I. Baseball 20",status-playable,playable,2021-06-15 21:16:29.000 +0100B4A0115CA000,"R.B.I. Baseball 21",status-playable;online-working,playable,2022-10-24 22:31:45.000 +01005BF00E4DE000,"Rabi-Ribi",status-playable,playable,2022-08-06 17:02:44.000 +,"Race With Ryan",UE4;gpu;nvdec;slow;status-ingame,ingame,2020-11-16 04:35:33.000 +,"Rack N Ruin",status-playable,playable,2020-09-04 15:20:26.000 +010024400C516000,"RAD",gpu;status-menus;crash;UE4,menus,2021-11-29 02:01:56.000 +010000600CD54000,"Rad Rodgers Radical Edition",status-playable;nvdec;online-broken,playable,2022-08-10 19:57:23.000 +0100DA400E07E000,"Radiation City",status-ingame;crash,ingame,2022-09-30 11:15:04.000 +01009E40095EE000,"Radiation Island",status-ingame;opengl;vulkan-backend-bug,ingame,2022-08-11 10:51:04.000 +,"Radical Rabbit Stew",status-playable,playable,2020-08-03 12:02:56.000 +0100BAD013B6E000,"Radio Commander",nvdec;status-playable,playable,2021-03-24 11:20:46.000 +01008FA00ACEC000,"RADIO HAMMER STATION",audout;status-playable,playable,2021-02-26 20:20:06.000 +01003D00099EC000,"Raging Justice",status-playable,playable,2021-06-03 14:06:50.000 +01005CD013116000,"Raiden IV x Mikado Remix [ 雷電Ⅳ×MIKADO remix ]",status-playable,playable,2022-07-29 15:50:13.000 +01002B000D97E000,"Raiden V: Director's Cut",deadlock;status-boots;nvdec,boots,2024-07-12 07:31:46.000 +01002EE00DC02000,"Railway Empire",status-playable;nvdec,playable,2022-10-03 13:53:50.000 +,"Rain City",status-playable,playable,2020-10-08 16:59:03.000 +0100BDD014232000,"Rain on Your Parade",status-playable,playable,2021-05-06 19:32:04.000 +010047600BF72000,"Rain World",status-playable,playable,2023-05-10 23:34:08.000 +,"Rainbows, toilets & unicorns",nvdec;status-playable,playable,2020-10-03 18:08:18.000 +,"Raji An Ancient Epic",UE4;gpu;nvdec;status-ingame,ingame,2020-12-16 10:05:25.000 +,"Rapala Fishing: Pro Series",nvdec;status-playable,playable,2020-12-16 13:26:53.000 +,"Rascal Fight",status-playable,playable,2020-10-08 13:23:30.000 +,"Rawr-Off",crash;nvdec;status-menus,menus,2020-07-02 00:14:44.000 +01005FF002E2A000,"Rayman Legends: Definitive Edition",status-playable;nvdec;ldn-works,playable,2023-05-27 18:33:07.000 +0100F03011616000,"Re:Turn - One Way Trip",status-playable,playable,2022-08-29 22:42:53.000 +,"Re:ZERO -Starting Life in Another World- The Prophecy of the Throne",gpu;status-boots;crash;nvdec;vulkan,boots,2023-03-07 21:27:24.000 +,"Real Drift Racing",status-playable,playable,2020-07-25 14:31:31.000 +010048600CC16000,"Real Heroes: Firefighter",status-playable,playable,2022-09-20 18:18:44.000 +,"realMyst: Masterpiece Edition",nvdec;status-playable,playable,2020-11-30 15:25:42.000 +,"Reaper: Tale of a Pale Swordsman",status-playable,playable,2020-12-12 15:12:23.000 +0100D9B00E22C000,"Rebel Cops",status-playable,playable,2022-09-11 10:02:53.000 +0100CAA01084A000,"Rebel Galaxy: Outlaw",status-playable;nvdec,playable,2022-12-01 07:44:56.000 +0100CF600FF7A000,"Red Bow",services;status-ingame,ingame,2021-11-29 03:51:34.000 +0100351013A06000,"Red Colony",status-playable,playable,2021-01-25 20:44:41.000 +01007820196A6000,"Red Dead Redemption",status-playable;amd-vendor-bug,playable,2024-09-13 13:26:13.000 +,"Red Death",status-playable,playable,2020-08-30 13:07:37.000 +010075000C608000,"Red Faction Guerrilla Re-Mars-tered",ldn-untested;nvdec;online;status-playable,playable,2021-06-07 03:02:13.000 +,"Red Game Without a Great Name",status-playable,playable,2021-01-19 21:42:35.000 +010045400D73E000,"Red Siren : Space Defense",UE4;status-playable,playable,2021-04-25 21:21:29.000 +,"Red Wings - Aces of the Sky",status-playable,playable,2020-06-12 01:19:53.000 +01000D100DCF8000,"Redeemer: Enhanced Edition",status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-09-11 10:20:24.000 +0100326010B98000,"Redout: Space Assault",status-playable;UE4,playable,2022-10-19 23:04:35.000 +010007C00E558000,"Reel Fishing: Road Trip Adventure",status-playable,playable,2021-03-02 16:06:43.000 +,"Reflection of Mine",audio;status-playable,playable,2020-12-17 15:06:37.000 +,"Refreshing Sideways Puzzle Ghost Hammer",status-playable,playable,2020-10-18 12:08:54.000 +,"Refunct",UE4;status-playable,playable,2020-12-15 22:46:21.000 +0100FDF0083A6000,"Regalia: Of Men and Monarchs - Royal Edition",status-playable,playable,2022-08-11 12:24:01.000 +,"Regions of Ruin",status-playable,playable,2020-08-05 11:38:58.000 +,"Reine des Fleurs",cpu;crash;status-boots,boots,2020-09-27 18:50:39.000 +,"REKT",online;status-playable,playable,2020-09-28 12:33:56.000 +01002AD013C52000,"Relicta",status-playable;nvdec;UE4,playable,2022-10-31 12:48:33.000 +010095900B436000,"Remi Lore",status-playable,playable,2021-06-03 18:58:15.000 +0100FBD00F5F6000,"Remothered: Broken Porcelain",UE4;gpu;nvdec;status-ingame,ingame,2021-06-17 15:13:11.000 +01001F100E8AE000,"Remothered: Tormented Fathers",status-playable;nvdec;UE4,playable,2022-10-19 23:26:50.000 +,"Rento Fortune Monolit",ldn-untested;online;status-playable,playable,2021-01-19 19:52:21.000 +01007CC0130C6000,"Renzo Racer",status-playable,playable,2021-03-23 22:28:05.000 +01003C400AD42000,"Rescue Tale",status-playable,playable,2022-09-20 18:40:18.000 +010099A00BC1E000,"Resident Evil 4",status-playable;nvdec,playable,2022-11-16 21:16:04.000 +010018100CD46000,"Resident Evil 5",status-playable;nvdec,playable,2024-02-18 17:15:29.000 +01002A000CD48000,"RESIDENT EVIL 6",status-playable;nvdec,playable,2022-09-15 14:31:47.000 +0100643002136000,"Resident Evil Revelations",status-playable;nvdec;ldn-untested,playable,2022-08-11 12:44:19.000 +010095300212A000,"RESIDENT EVIL REVELATIONS 2",status-playable;online-broken;ldn-untested,playable,2022-08-11 12:57:50.000 +0100E7F00FFB8000,"Resolutiion",crash;status-boots,boots,2021-04-25 21:57:56.000 +0100FF201568E000,"Restless Night [0100FF201568E000]",status-nothing;crash,nothing,2022-02-09 10:54:49.000 +0100069000078000,"Retail Interactive Display Menu (DevQuestMenu)- 0100069000078000",services;status-nothing;crash,nothing,2022-08-11 13:19:41.000 +010086E00BCB2000,"Retimed",status-playable,playable,2022-08-11 13:32:39.000 +,"Retro City Rampage DX",status-playable,playable,2021-01-05 17:04:17.000 +01000ED014A2C000,"Retrograde Arena",status-playable;online-broken,playable,2022-10-31 13:38:58.000 +010032E00E6E2000,"Return of the Obra Dinn",status-playable,playable,2022-09-15 19:56:45.000 +010027400F708000,"Revenge of Justice",status-playable;nvdec,playable,2022-11-20 15:43:23.000 +0100E2E00EA42000,"Reventure",status-playable,playable,2022-09-15 20:07:06.000 +,"REZ PLZ",status-playable,playable,2020-10-24 13:26:12.000 +0100729012D18000,"Rhythm Fighter",crash;status-nothing,nothing,2021-02-16 18:51:30.000 +,"Rhythm of the Gods",UE4;crash;status-nothing,nothing,2020-10-03 17:39:59.000 +01009D5009234000,"RICO",status-playable;nvdec;online-broken,playable,2022-08-11 20:16:40.000 +01002C700C326000,"Riddled Corpses EX",status-playable,playable,2021-06-06 16:02:44.000 +0100AC600D898000,"Rift Keeper",status-playable,playable,2022-09-20 19:48:20.000 +,"RiME",UE4;crash;gpu;status-boots,boots,2020-07-20 15:52:38.000 +01006AC00EE6E000,"Rimelands",status-playable,playable,2022-10-13 13:32:56.000 +01002FF008C24000,"Ring Fit Adventure",crash;services;status-nothing,nothing,2021-04-14 19:00:01.000 +010088E00B816000,"RIOT: Civil Unrest",status-playable,playable,2022-08-11 20:27:56.000 +01002A6006AA4000,"Riptide GP: Renegade",online;status-playable,playable,2021-04-13 23:33:02.000 +,"Rise and Shine",status-playable,playable,2020-12-12 15:56:43.000 +,"Rise of Insanity",status-playable,playable,2020-08-30 15:42:14.000 +01006BA00E652000,"Rise: Race the Future",status-playable,playable,2021-02-27 13:29:06.000 +010020C012F48000,"Rising Hell",status-playable,playable,2022-10-31 13:54:02.000 +0100E8300A67A000,"Risk",status-playable;nvdec;online-broken,playable,2022-08-01 18:53:28.000 +010076D00E4BA000,"Risk of Rain 2",status-playable;online-broken,playable,2024-03-04 17:01:05.000 +0100BD300F0EC000,"Ritual",status-playable,playable,2021-03-02 13:51:19.000 +010042500FABA000,"Ritual: Crown of Horns",status-playable,playable,2021-01-26 16:01:47.000 +,"Rival Megagun",nvdec;online;status-playable,playable,2021-01-19 14:01:46.000 +,"RIVE: Ultimate Edition",status-playable,playable,2021-03-24 18:45:55.000 +,"River City Girls",nvdec;status-playable,playable,2020-06-10 23:44:09.000 +01002E80168F4000,"River City Girls 2",status-playable,playable,2022-12-07 00:46:27.000 +0100B2100767C000,"River City Melee Mach!!",status-playable;online-broken,playable,2022-09-20 20:51:57.000 +,"RMX Real Motocross",status-playable,playable,2020-10-08 21:06:15.000 +010053000B986000,"Road Redemption",status-playable;online-broken,playable,2022-08-12 11:26:20.000 +010002F009A7A000,"Road to Ballhalla",UE4;status-playable,playable,2021-06-07 02:22:36.000 +,"Road to Guangdong",slow;status-playable,playable,2020-10-12 12:15:32.000 +010068200C5BE000,"Roarr!",status-playable,playable,2022-10-19 23:57:45.000 +0100618004096000,"Robonauts",status-playable;nvdec,playable,2022-08-12 11:33:23.000 +,"ROBOTICS;NOTES DaSH",status-playable,playable,2020-11-16 23:09:54.000 +,"ROBOTICS;NOTES ELITE",status-playable,playable,2020-11-26 10:28:20.000 +,"Robozarro",status-playable,playable,2020-09-03 13:33:40.000 +,"Rock 'N Racing Off Road DX",status-playable,playable,2021-01-10 15:27:15.000 +,"Rock N' Racing Grand Prix",status-playable,playable,2021-01-06 20:23:57.000 +0100A1B00DB36000,"Rock of Ages 3: Make & Break",status-playable;UE4,playable,2022-10-06 12:18:29.000 +01005EE0036EC000,"Rocket League",gpu;status-ingame;online-broken;ldn-untested,ingame,2024-02-08 19:51:36.000 +,"Rocket Wars",status-playable,playable,2020-07-24 14:27:39.000 +0100EC7009348000,"Rogue Aces",gpu;services;status-ingame;nvdec,ingame,2021-11-30 02:18:30.000 +01009FA010848000,"Rogue Heroes: Ruins of Tasos",online;status-playable,playable,2021-04-01 15:41:25.000 +,"Rogue Legacy",status-playable,playable,2020-08-10 19:17:28.000 +,"Rogue Robots",status-playable,playable,2020-06-16 12:16:11.000 +01001CC00416C000,"Rogue Trooper Redux",status-playable;nvdec;online-broken,playable,2022-08-12 11:53:01.000 +0100C7300C0EC000,"RogueCube",status-playable,playable,2021-06-16 12:16:42.000 +,"Roll'd",status-playable,playable,2020-07-04 20:24:01.000 +01004900113F8000,"RollerCoaster Tycoon 3: Complete Edition",32-bit;status-playable,playable,2022-10-17 14:18:01.000 +,"RollerCoaster Tycoon Adventures",nvdec;status-playable,playable,2021-01-05 18:14:18.000 +010076200CA16000,"Rolling Gunner",status-playable,playable,2021-05-26 12:54:18.000 +0100579011B40000,"Rolling Sky 2",status-playable,playable,2022-11-03 10:21:12.000 +01001F600829A000,"Romancing SaGa 2",status-playable,playable,2022-08-12 12:02:24.000 +,"Romancing SaGa 3",audio;gpu;status-ingame,ingame,2020-06-27 20:26:18.000 +010088100DD42000,"Roof Rage",status-boots;crash;regression,boots,2023-11-12 03:47:18.000 +,"Roombo: First Blood",nvdec;status-playable,playable,2020-08-05 12:11:37.000 +0100936011556000,"Root Double -Before Crime * After Days- Xtend Edition",status-nothing;crash,nothing,2022-02-05 02:03:49.000 +010030A00DA3A000,"Root Letter: Last Answer",status-playable;vulkan-backend-bug,playable,2022-09-17 10:25:57.000 +,"Royal Roads",status-playable,playable,2020-11-17 12:54:38.000 +,"RPG Maker MV",nvdec;status-playable,playable,2021-01-05 20:12:01.000 +01005CD015986000,"rRootage Reloaded [01005CD015986000]",status-playable,playable,2022-08-05 23:20:18.000 +0000000000000000,"RSDKv5u",status-ingame;homebrew,ingame,2024-04-01 16:25:34.000 +010009B00D33C000,"Rugby Challenge 4",slow;status-playable;online-broken;UE4,playable,2022-10-06 12:45:53.000 +01006EC00F2CC000,"Ruiner",status-playable;UE4,playable,2022-10-03 14:11:33.000 +010074F00DE4A000,"Run the Fan",status-playable,playable,2021-02-27 13:36:28.000 +,"Runbow",online;status-playable,playable,2021-01-08 22:47:44.000 +0100D37009B8A000,"Runbow Deluxe Edition",status-playable;online-broken,playable,2022-08-12 12:20:25.000 +010081C0191D8000,"Rune Factory 3 Special",status-playable,playable,2023-10-15 08:32:49.000 +010051D00E3A4000,"Rune Factory 4 Special",status-ingame;32-bit;crash;nvdec,ingame,2023-05-06 08:49:17.000 +010014D01216E000,"Rune Factory 5 (JP)",gpu;status-ingame,ingame,2021-06-01 12:00:36.000 +0100E21013908000,"RWBY: Grimm Eclipse",status-playable;online-broken,playable,2022-11-03 10:44:01.000 +,"RXN -Raijin-",nvdec;status-playable,playable,2021-01-10 16:05:43.000 +0100B8B012ECA000,"S.N.I.P.E.R. Hunter Scope",status-playable,playable,2021-04-19 15:58:09.000 +,"Saboteur II: Avenging Angel",Needs Update;cpu;crash;status-nothing,nothing,2021-01-26 14:47:37.000 +,"Saboteur SiO",slow;status-ingame,ingame,2020-12-17 16:59:49.000 +,"Safety First!",status-playable,playable,2021-01-06 09:05:23.000 +0100A51013530000,"SaGa Frontier Remastered",status-playable;nvdec,playable,2022-11-03 13:54:56.000 +010003A00D0B4000,"SaGa SCARLET GRACE: AMBITIONS",status-playable,playable,2022-10-06 13:20:31.000 +01008D100D43E000,"Saints Row IV",status-playable;ldn-untested;LAN,playable,2023-12-04 18:33:37.000 +0100DE600BEEE000,"Saints Row: The Third - The Full Package",slow;status-playable;LAN,playable,2023-08-24 02:40:58.000 +01007F000EB36000,"Sakai and...",status-playable;nvdec,playable,2022-12-15 13:53:19.000 +0100B1400E8FE000,"Sakuna: Of Rice and Ruin",status-playable,playable,2023-07-24 13:47:13.000 +0100BBF0122B4000,"Sally Face",status-playable,playable,2022-06-06 18:41:24.000 +,"Salt And Sanctuary",status-playable,playable,2020-10-22 11:52:19.000 +,"Sam & Max Save the World",status-playable,playable,2020-12-12 13:11:51.000 +,"Samsara",status-playable,playable,2021-01-11 15:14:12.000 +01006C600E46E000,"Samurai Jack Battle Through Time",status-playable;nvdec;UE4,playable,2022-10-06 13:33:59.000 +,"SAMURAI SHODOWN",UE4;crash;nvdec;status-menus,menus,2020-09-06 02:17:00.000 +0100F6800F48E000,"SAMURAI SHOWDOWN NEOGEO COLLECTION",nvdec;status-playable,playable,2021-06-14 17:12:56.000 +0100B6501A360000,"Samurai Warrior",status-playable,playable,2023-02-27 18:42:38.000 +,"SamuraiAces for Nintendo Switch",32-bit;status-playable,playable,2020-11-24 20:26:55.000 +,"Sangoku Rensenki ~Otome no Heihou!~",gpu;nvdec;status-ingame,ingame,2020-10-17 19:13:14.000 +0100A4700BC98000,"Satsujin Tantei Jack the Ripper",status-playable,playable,2021-06-21 16:32:54.000 +0100F0000869C000,"Saturday Morning RPG",status-playable;nvdec,playable,2022-08-12 12:41:50.000 +,"Sausage Sports Club",gpu;status-ingame,ingame,2021-01-10 05:37:17.000 +0100C8300FA90000,"Save Koch",status-playable,playable,2022-09-26 17:06:56.000 +,"Save the Ninja Clan",status-playable,playable,2021-01-11 13:56:37.000 +010091000F72C000,"Save Your Nuts",status-playable;nvdec;online-broken;UE4,playable,2022-09-27 23:12:02.000 +0100AA00128BA000,"Saviors of Sapphire Wings & Stranger of Sword City Revisited",status-menus;crash,menus,2022-10-24 23:00:46.000 +01001C3012912000,"Say No! More",status-playable,playable,2021-05-06 13:43:34.000 +010010A00A95E000,"Sayonara Wild Hearts",status-playable,playable,2023-10-23 03:20:01.000 +0100ACB004006000,"Schlag den Star",slow;status-playable;nvdec,playable,2022-08-12 14:28:22.000 +0100394011C30000,"Scott Pilgrim vs The World: The Game",services-horizon;status-nothing;crash,nothing,2024-07-12 08:13:03.000 +,"Scribblenauts Mega Pack",nvdec;status-playable,playable,2020-12-17 22:56:14.000 +,"Scribblenauts Showdown",gpu;nvdec;status-ingame,ingame,2020-12-17 23:05:53.000 +0100829018568000,"SD GUNDAM BATTLE ALLIANCE Demo",audio;status-ingame;crash;demo,ingame,2022-08-01 23:01:20.000 +010055700CEA8000,"SD GUNDAM G GENERATION CROSS RAYS",status-playable;nvdec,playable,2022-09-15 20:58:44.000 +,"SD GUNDAM G GENERATION CROSS RAYS PREMIUM G SOUND EDITION - 010022900D3EC00",status-playable;nvdec,playable,2022-09-15 20:45:57.000 +0100E4A00D066000,"Sea King",UE4;nvdec;status-playable,playable,2021-06-04 15:49:22.000 +0100AFE012BA2000,"Sea of Solitude The Director's Cut",gpu;status-ingame,ingame,2024-07-12 18:29:29.000 +01008C0016544000,"Sea of Stars",status-playable,playable,2024-03-15 20:27:12.000 +010036F0182C4000,"Sea of Stars Demo",status-playable;demo,playable,2023-02-12 15:33:56.000 +,"SeaBed",status-playable,playable,2020-05-17 13:25:37.000 +,"Season Match Bundle - Part 1 and 2",status-playable,playable,2021-01-11 13:28:23.000 +,"Season Match Full Bundle - Parts 1, 2 and 3",status-playable,playable,2020-10-27 16:15:22.000 +,"Secret Files 3",nvdec;status-playable,playable,2020-10-24 15:32:39.000 +010075D0101FA000,"Seek Hearts",status-playable,playable,2022-11-22 15:06:26.000 +,"Seers Isle",status-playable,playable,2020-11-17 12:28:50.000 +0100A8900AF04000,"SEGA AGES Alex Kidd in Miracle World",online;status-playable,playable,2021-05-05 16:35:47.000 +01001E600AF08000,"SEGA AGES Gain Ground",online;status-playable,playable,2021-05-05 16:16:27.000 +,"SEGA AGES OUTRUN",status-playable,playable,2021-01-11 13:13:59.000 +,"SEGA AGES PHANTASY STAR",status-playable,playable,2021-01-11 12:49:48.000 +01005F600CB0E000,"SEGA AGES Puyo Puyo",online;status-playable,playable,2021-05-05 16:09:28.000 +01000D200C614000,"SEGA AGES SONIC THE HEDGEHOG 2",status-playable,playable,2022-09-21 20:26:35.000 +,"SEGA AGES SPACE HARRIER",status-playable,playable,2021-01-11 12:57:40.000 +01001E700AC60000,"SEGA AGES Wonder Boy: Monster Land",online;status-playable,playable,2021-05-05 16:28:25.000 +010051F00AC5E000,"SEGA Ages: Sonic The Hedgehog",slow;status-playable,playable,2023-03-05 20:16:31.000 +010054400D2E6000,"SEGA Ages: Virtua Racing",status-playable;online-broken,playable,2023-01-29 17:08:39.000 +0100B3C014BDA000,"SEGA Genesis - Nintendo Switch Online",status-nothing;crash;regression,nothing,2022-04-11 07:27:21.000 +,"SEGA Mega Drive Classics",online;status-playable,playable,2021-01-05 11:08:00.000 +,"Semispheres",status-playable,playable,2021-01-06 23:08:31.000 +0100D1800D902000,"SENRAN KAGURA Peach Ball",status-playable,playable,2021-06-03 15:12:10.000 +,"SENRAN KAGURA Reflexions",status-playable,playable,2020-03-23 19:15:23.000 +01009E500D29C000,"Sentinels of Freedom",status-playable,playable,2021-06-14 16:42:19.000 +,"SENTRY",status-playable,playable,2020-12-13 12:00:24.000 +010059700D4A0000,"Sephirothic Stories",services;status-menus,menus,2021-11-25 08:52:17.000 +010007D00D43A000,"Serious Sam Collection",status-boots;vulkan-backend-bug,boots,2022-10-13 13:53:34.000 +0100B2C00E4DA000,"Served! A gourmet race",status-playable;nvdec,playable,2022-09-28 12:46:00.000 +010018400C24E000,"Seven Knights -Time Wanderer-",status-playable;vulkan-backend-bug,playable,2022-10-13 22:08:54.000 +0100D6F016676000,"Seven Pirates H",status-playable,playable,2024-06-03 14:54:12.000 +,"Severed",status-playable,playable,2020-12-15 21:48:48.000 +0100D5500DA94000,"Shadow Blade Reload",nvdec;status-playable,playable,2021-06-11 18:40:43.000 +0100BE501382A000,"Shadow Gangs",cpu;gpu;status-ingame;crash;regression,ingame,2024-04-29 00:07:26.000 +0100C3A013840000,"Shadow Man Remastered",gpu;status-ingame,ingame,2024-05-20 06:01:39.000 +,"Shadowgate",status-playable,playable,2021-04-24 07:32:57.000 +0100371013B3E000,"Shadowrun Returns",gpu;status-ingame;Needs Update,ingame,2022-10-04 21:32:31.000 +01008310154C4000,"Shadowrun: Dragonfall - Director's Cut",gpu;status-ingame;Needs Update,ingame,2022-10-04 20:52:18.000 +0100C610154CA000,"Shadowrun: Hong Kong - Extended Edition",gpu;status-ingame;Needs Update,ingame,2022-10-04 20:53:09.000 +,"Shadows 2: Perfidia",status-playable,playable,2020-08-07 12:43:46.000 +,"Shadows of Adam",status-playable,playable,2021-01-11 13:35:58.000 +01002A800C064000,"Shadowverse Champions Battle",status-playable,playable,2022-10-02 22:59:29.000 +01003B90136DA000,"Shadowverse: Champion’s Battle",status-nothing;crash,nothing,2023-03-06 00:31:50.000 +0100820013612000,"Shady Part of Me",status-playable,playable,2022-10-20 11:31:55.000 +,"Shakedown: Hawaii",status-playable,playable,2021-01-07 09:44:36.000 +01008DA012EC0000,"Shakes on a Plane",status-menus;crash,menus,2021-11-25 08:52:25.000 +0100B4900E008000,"Shalnor Legends: Sacred Lands",status-playable,playable,2021-06-11 14:57:11.000 +,"Shanky: The Vegan's Nightmare - 01000C00CC10000",status-playable,playable,2021-01-26 15:03:55.000 +0100430013120000,"Shantae",status-playable,playable,2021-05-21 04:53:26.000 +0100EFD00A4FA000,"Shantae and the Pirate's Curse",status-playable,playable,2024-04-29 17:21:57.000 +,"Shantae and the Seven Sirens",nvdec;status-playable,playable,2020-06-19 12:23:40.000 +,"Shantae: Half-Genie Hero Ultimate Edition",status-playable,playable,2020-06-04 20:14:20.000 +0100ADA012370000,"Shantae: Risky's Revenge - Director's Cut",status-playable,playable,2022-10-06 20:47:39.000 +01003AB01062C000,"Shaolin vs Wutang : Eastern Heroes",deadlock;status-nothing,nothing,2021-03-29 20:38:54.000 +0100B250009B9600,"Shape Of The World0",UE4;status-playable,playable,2021-03-05 16:42:28.000 +01004F50085F2000,"She Remembered Caterpillars",status-playable,playable,2022-08-12 17:45:14.000 +01000320110C2000,"She Sees Red",status-playable;nvdec,playable,2022-09-30 11:30:15.000 +01009EB004CB0000,"Shelter Generations",status-playable,playable,2021-06-04 16:52:39.000 +010020F014DBE000,"Sherlock Holmes: The Devil's Daughter",gpu;status-ingame,ingame,2022-07-11 00:07:26.000 +,"Shift Happens",status-playable,playable,2021-01-05 21:24:18.000 +,"SHIFT QUANTUM",UE4;crash;status-ingame,ingame,2020-11-06 21:54:08.000 +01000750084B2000,"Shiftlings",nvdec;status-playable,playable,2021-03-04 13:49:54.000 +01003B0012DC2000,"Shin Megami Tensei III Nocturne HD Remaster",status-playable,playable,2022-11-03 22:53:27.000 +010045800ED1E000,"Shin Megami Tensei III NOCTURNE HD REMASTER",gpu;status-ingame;Needs Update,ingame,2022-11-03 19:57:01.000 +010063B012DC6000,"Shin Megami Tensei V",status-playable;UE4,playable,2024-02-21 06:30:07.000 +010069C01AB82000,"Shin Megami Tensei V: Vengeance",gpu;status-ingame;vulkan-backend-bug,ingame,2024-07-14 11:28:24.000 +01009050133B4000,"Shing! (サムライフォース:斬!)",status-playable;nvdec,playable,2022-10-22 00:48:54.000 +01009A5009A9E000,"Shining Resonance Refrain",status-playable;nvdec,playable,2022-08-12 18:03:01.000 +01004EE0104F6000,"Shinsekai Into the Depths",status-playable,playable,2022-09-28 14:07:51.000 +0100C2F00A568000,"Shio",status-playable,playable,2021-02-22 16:25:09.000 +,"Shipped",status-playable,playable,2020-11-21 14:22:32.000 +01000E800FCB4000,"Ships",status-playable,playable,2021-06-11 16:14:37.000 +01007430122D0000,"Shiren the Wanderer: The Tower of Fortune and the Dice of Fate",status-playable;nvdec,playable,2022-10-20 11:44:36.000 +,"Shiritsu Berubara Gakuen ~Versailles no Bara Re*imagination~",cpu;crash;status-boots,boots,2020-09-27 19:01:25.000 +01000244016BAE00,"Shiro0",gpu;status-ingame,ingame,2024-01-13 08:54:39.000 +,"Shoot 1UP DX",status-playable,playable,2020-12-13 12:32:47.000 +,"Shovel Knight: Specter of Torment",status-playable,playable,2020-05-30 08:34:17.000 +,"Shovel Knight: Treasure Trove",status-playable,playable,2021-02-14 18:24:39.000 +,"Shred!2 - Freeride MTB",status-playable,playable,2020-05-30 14:34:09.000 +,"Shu",nvdec;status-playable,playable,2020-05-30 09:08:59.000 +,"Shut Eye",status-playable,playable,2020-07-23 18:08:35.000 +010044500C182000,"Sid Meier's Civilization VI",status-playable;ldn-untested,playable,2024-04-08 16:03:40.000 +01007FC00B674000,"Sigi - A Fart for Melusina",status-playable,playable,2021-02-22 16:46:58.000 +0100F1400B0D6000,"Silence",nvdec;status-playable,playable,2021-06-03 14:46:17.000 +,"Silent World",status-playable,playable,2020-08-28 13:45:13.000 +010045500DFE2000,"Silk",nvdec;status-playable,playable,2021-06-10 15:34:37.000 +010016D00A964000,"SilverStarChess",status-playable,playable,2021-05-06 15:25:57.000 +0100E8C019B36000,"Simona's Requiem",gpu;status-ingame,ingame,2023-02-21 18:29:19.000 +01006FE010438000,"Sin Slayers",status-playable,playable,2022-10-20 11:53:52.000 +01002820036A8000,"Sine Mora EX",gpu;status-ingame;online-broken,ingame,2022-08-12 19:36:18.000 +,"Singled Out",online;status-playable,playable,2020-08-03 13:06:18.000 +,"Sinless",nvdec;status-playable,playable,2020-08-09 20:18:55.000 +0100B16009C10000,"SINNER: Sacrifice for Redemption",status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-08-12 20:37:33.000 +0100E9201410E000,"Sir Lovelot",status-playable,playable,2021-04-05 16:21:46.000 +0100134011E32000,"Skate City",status-playable,playable,2022-11-04 11:37:39.000 +,"Skee-Ball",status-playable,playable,2020-11-16 04:44:07.000 +01001A900F862000,"Skelattack",status-playable,playable,2021-06-09 15:26:26.000 +01008E700F952000,"Skelittle: A Giant Party!!",status-playable,playable,2021-06-09 19:08:34.000 +,"Skelly Selest",status-playable,playable,2020-05-30 15:38:18.000 +,"Skies of Fury",status-playable,playable,2020-05-30 16:40:54.000 +010046B00DE62000,"Skullgirls: 2nd Encore",status-playable,playable,2022-09-15 21:21:25.000 +,"Skulls of the Shogun: Bone-a-fide Edition",status-playable,playable,2020-08-31 18:58:12.000 +0100D7B011654000,"Skully",status-playable;nvdec;UE4,playable,2022-10-06 13:52:59.000 +010083100B5CA000,"Sky Force Anniversary",status-playable;online-broken,playable,2022-08-12 20:50:07.000 +,"Sky Force Reloaded",status-playable,playable,2021-01-04 20:06:57.000 +010003F00CC98000,"Sky Gamblers - Afterburner",gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-12 21:04:55.000 +010093D00AC38000,"Sky Gamblers: Storm Raiders",gpu;audio;status-ingame;32-bit,ingame,2022-08-12 21:13:36.000 +010068200E96E000,"Sky Gamblers: Storm Raiders 2",gpu;status-ingame,ingame,2022-09-13 12:24:04.000 +,"Sky Racket",status-playable,playable,2020-09-07 12:22:24.000 +0100DDB004F30000,"Sky Ride",status-playable,playable,2021-02-22 16:53:07.000 +,"Sky Rogue",status-playable,playable,2020-05-30 08:26:28.000 +0100C52011460000,"Sky: Children of the Light",cpu;status-nothing;online-broken,nothing,2023-02-23 10:57:10.000 +010041C01014E000,"Skybolt Zack",status-playable,playable,2021-04-12 18:28:00.000 +0100A0A00D1AA000,"SKYHILL",status-playable,playable,2021-03-05 15:19:11.000 +,"Skylanders Imaginators",crash;services;status-boots,boots,2020-05-30 18:49:18.000 +,"SKYPEACE",status-playable,playable,2020-05-29 14:14:30.000 +,"SkyScrappers",status-playable,playable,2020-05-28 22:11:25.000 +,"SkyTime",slow;status-ingame,ingame,2020-05-30 09:24:51.000 +01003AD00DEAE000,"SlabWell",status-playable,playable,2021-02-22 17:02:51.000 +,"Slain",status-playable,playable,2020-05-29 14:26:16.000 +0100BB100AF4C000,"Slain Back from Hell",status-playable,playable,2022-08-12 23:36:19.000 +010026300BA4A000,"Slay the Spire",status-playable,playable,2023-01-20 15:09:26.000 +0100501006494000,"Slayaway Camp: Butcher's Cut",status-playable;opengl-backend-bug,playable,2022-08-12 23:44:05.000 +01004E900EDDA000,"Slayin 2",gpu;status-ingame,ingame,2024-04-19 16:15:26.000 +01004AC0081DC000,"Sleep Tight",gpu;status-ingame;UE4,ingame,2022-08-13 00:17:32.000 +0100F4500AA4E000,"Slice Dice & Rice",online;status-playable,playable,2021-02-22 17:44:23.000 +010010D011E1C000,"Slide Stars",status-menus;crash,menus,2021-11-25 08:53:43.000 +,"Slime-san",status-playable,playable,2020-05-30 16:15:12.000 +,"Slime-san Superslime Edition",status-playable,playable,2020-05-30 19:08:08.000 +01002AA00C974000,"SMASHING THE BATTLE",status-playable,playable,2021-06-11 15:53:57.000 +0100C9100B06A000,"SmileBASIC 4",gpu;status-menus,menus,2021-07-29 17:35:59.000 +0100207007EB2000,"Smoke and Sacrifice",status-playable,playable,2022-08-14 12:38:27.000 +01009790186FE000,"Smurfs Kart",status-playable,playable,2023-10-18 00:55:00.000 +0100F2800D46E000,"Snack World The Dungeon Crawl Gold",gpu;slow;status-ingame;nvdec;audout,ingame,2022-05-01 21:12:44.000 +0100C0F0020E8000,"Snake Pass",status-playable;nvdec;UE4,playable,2022-01-03 04:31:52.000 +010075A00BA14000,"Sniper Elite 3 Ultimate Edition",status-playable;ldn-untested,playable,2024-04-18 07:47:49.000 +010007B010FCC000,"Sniper Elite 4",gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug,ingame,2024-06-18 17:53:15.000 +0100BB000A3AA000,"Sniper Elite V2 Remastered",slow;status-ingame;nvdec;online-broken;ldn-untested,ingame,2022-08-14 13:23:13.000 +0100704000B3A000,"Snipperclips",status-playable,playable,2022-12-05 12:44:55.000 +01008E20047DC000,"Snipperclips Plus",status-playable,playable,2023-02-14 20:20:13.000 +01004AB00AEF8000,"SNK 40th Anniversary Collection",status-playable,playable,2022-08-14 13:33:15.000 +010027F00AD6C000,"SNK HEROINES Tag Team Frenzy",status-playable;nvdec;online-broken;ldn-untested,playable,2022-08-14 14:19:25.000 +01008DA00CBBA000,"Snooker 19",status-playable;nvdec;online-broken;UE4,playable,2022-09-11 17:43:22.000 +010045300516E000,"Snow Moto Racing Freedom",gpu;status-ingame;vulkan-backend-bug,ingame,2022-08-15 16:05:14.000 +0100BE200C34A000,"Snowboarding the Next Phase",nvdec;status-playable,playable,2021-02-23 12:56:58.000 +,"SnowRunner - 0100FBD13AB6000",services;status-boots;crash,boots,2023-10-07 00:01:16.000 +010017B012AFC000,"Soccer Club Life: Playing Manager",gpu;status-ingame,ingame,2022-10-25 11:59:22.000 +0100B5000E05C000,"Soccer Pinball",UE4;gpu;status-ingame,ingame,2021-06-15 20:56:51.000 +,"Soccer Slammers",status-playable,playable,2020-05-30 07:48:14.000 +010095C00F9DE000,"Soccer, Tactics & Glory",gpu;status-ingame,ingame,2022-09-26 17:15:58.000 +,"SOLDAM Drop, Connect, Erase",status-playable,playable,2020-05-30 09:18:54.000 +0100590009C38000,"SolDivide for Nintendo Switch",32-bit;status-playable,playable,2021-06-09 14:13:03.000 +010008600D1AC000,"Solo: Islands of the Heart",gpu;status-ingame;nvdec,ingame,2022-09-11 17:54:43.000 +01009EE00E91E000,"Some Distant Memory",status-playable,playable,2022-09-15 21:48:19.000 +01004F401BEBE000,"Song of Nunu: A League of Legends Story",status-ingame,ingame,2024-07-12 18:53:44.000 +0100E5400BF94000,"Songbird Symphony",status-playable,playable,2021-02-27 02:44:04.000 +,"Songbringer",status-playable,playable,2020-06-22 10:42:02.000 +0000000000000000,"Sonic 1 (2013)",status-ingame;crash;homebrew,ingame,2024-04-06 18:31:20.000 +0000000000000000,"Sonic 2 (2013)",status-ingame;crash;homebrew,ingame,2024-04-01 16:25:30.000 +0000000000000000,"Sonic A.I.R",status-ingame;homebrew,ingame,2024-04-01 16:25:32.000 +0000000000000000,"Sonic CD",status-ingame;crash;homebrew,ingame,2024-04-01 16:25:31.000 +010040E0116B8000,"Sonic Colors Ultimate [010040E0116B8000]",status-playable,playable,2022-11-12 21:24:26.000 +01001270012B6000,"Sonic Forces",status-playable,playable,2024-07-28 13:11:21.000 +01004AD014BF0000,"Sonic Frontiers",gpu;deadlock;status-ingame;amd-vendor-bug;intel-vendor-bug,ingame,2024-09-05 09:18:53.000 +01009AA000FAA000,"Sonic Mania",status-playable,playable,2020-06-08 17:30:57.000 +01009AA000FAA000,"Sonic Mania Plus",status-playable,playable,2022-01-16 04:09:11.000 +01008F701C074000,"Sonic Superstars",gpu;status-ingame;nvdec,ingame,2023-10-28 17:48:07.000 +010088801C150000,"Sonic Superstars Digital Art Book with Mini Digital Soundtrack",status-playable,playable,2024-08-20 13:26:56.000 +01005EA01C0FC000,"SONIC X SHADOW GENERATIONS",status-ingame;crash,ingame,2025-01-07 04:20:45.000 +,"Soul Axiom Rebooted",nvdec;slow;status-ingame,ingame,2020-09-04 12:41:01.000 +,"Soul Searching",status-playable,playable,2020-07-09 18:39:07.000 +01008F2005154000,"South Park: The Fractured But Whole",slow;status-playable;online-broken,playable,2024-07-08 17:47:28.000 +,"Space Blaze",status-playable,playable,2020-08-30 16:18:05.000 +,"Space Cows",UE4;crash;status-menus,menus,2020-06-15 11:33:20.000 +,"SPACE ELITE FORCE",status-playable,playable,2020-11-27 15:21:05.000 +010047B010260000,"Space Pioneer",status-playable,playable,2022-10-20 12:24:37.000 +010010A009830000,"Space Ribbon",status-playable,playable,2022-08-15 17:17:10.000 +0000000000000000,"SpaceCadetPinball",status-ingame;homebrew,ingame,2024-04-18 19:30:04.000 +0100D9B0041CE000,"Spacecats with Lasers",status-playable,playable,2022-08-15 17:22:44.000 +,"Spaceland",status-playable,playable,2020-11-01 14:31:56.000 +,"Sparkle 2",status-playable,playable,2020-10-19 11:51:39.000 +01000DC007E90000,"Sparkle Unleashed",status-playable,playable,2021-06-03 14:52:15.000 +,"Sparkle ZERO",gpu;slow;status-ingame,ingame,2020-03-23 18:19:18.000 +01007ED00C032000,"Sparklite",status-playable,playable,2022-08-06 11:35:41.000 +0100E6A009A26000,"Spartan",UE4;nvdec;status-playable,playable,2021-03-05 15:53:19.000 +,"Speaking Simulator",status-playable,playable,2020-10-08 13:00:39.000 +01008B000A5AE000,"Spectrum",status-playable,playable,2022-08-16 11:15:59.000 +0100F18010BA0000,"Speed 3: Grand Prix",status-playable;UE4,playable,2022-10-20 12:32:31.000 +,"Speed Brawl",slow;status-playable,playable,2020-09-18 22:08:16.000 +01000540139F6000,"Speed Limit",gpu;status-ingame,ingame,2022-09-02 18:37:40.000 +010061F013A0E000,"Speed Truck Racing",status-playable,playable,2022-10-20 12:57:04.000 +0100E74007EAC000,"Spellspire",status-playable,playable,2022-08-16 11:21:21.000 +010021F004270000,"Spelunker Party!",services;status-boots,boots,2022-08-16 11:25:49.000 +0100710013ABA000,"Spelunky",status-playable,playable,2021-11-20 17:45:03.000 +0100BD500BA94000,"Sphinx and the Cursed Mummy™",gpu;status-ingame;32-bit;opengl,ingame,2024-05-20 06:00:51.000 +,"Spider Solitaire",status-playable,playable,2020-12-16 16:19:30.000 +010076D0122A8000,"Spinch",status-playable,playable,2024-07-12 19:02:10.000 +01001E40136FE000,"Spinny's journey",status-ingame;crash,ingame,2021-11-30 03:39:44.000 +,"Spiral Splatter",status-playable,playable,2020-06-04 14:03:57.000 +,"Spirit Hunter: NG",32-bit;status-playable,playable,2020-12-17 20:38:47.000 +01005E101122E000,"Spirit of the North",status-playable;UE4,playable,2022-09-30 11:40:47.000 +,"Spirit Roots",nvdec;status-playable,playable,2020-07-10 13:33:32.000 +0100BD400DC52000,"Spiritfarer",gpu;status-ingame,ingame,2022-10-06 16:31:38.000 +01009D60080B4000,"SpiritSphere DX",status-playable,playable,2021-07-03 23:37:49.000 +010042700E3FC000,"Spitlings",status-playable;online-broken,playable,2022-10-06 16:42:39.000 +01003BC0000A0000,"Splatoon 2",status-playable;ldn-works;LAN,playable,2024-07-12 19:11:15.000 +0100C2500FC20000,"Splatoon 3",status-playable;ldn-works;opengl-backend-bug;LAN;amd-vendor-bug,playable,2024-08-04 23:49:11.000 +0100BA0018500000,"Splatoon 3: Splatfest World Premiere",gpu;status-ingame;online-broken;demo,ingame,2022-09-19 03:17:12.000 +01009FB0172F4000,"SpongeBob SquarePants The Cosmic Shake",gpu;status-ingame;UE4,ingame,2023-08-01 19:29:53.000 +010062800D39C000,"SpongeBob SquarePants: Battle for Bikini Bottom - Rehydrated",status-playable;online-broken;UE4;ldn-broken;vulkan-backend-bug,playable,2023-08-01 19:29:34.000 +010097C01336A000,"Spooky Chase",status-playable,playable,2022-11-04 12:17:44.000 +0100C6100D75E000,"Spooky Ghosts Dot Com",status-playable,playable,2021-06-15 15:16:11.000 +0100DE9005170000,"Sports Party",nvdec;status-playable,playable,2021-03-05 13:40:42.000 +0100E04009BD4000,"Spot The Difference",status-playable,playable,2022-08-16 11:49:52.000 +010052100D1B4000,"Spot the Differences: Party!",status-playable,playable,2022-08-16 11:55:26.000 +01000E6015350000,"Spy Alarm",services;status-ingame,ingame,2022-12-09 10:12:51.000 +01005D701264A000,"SpyHack",status-playable,playable,2021-04-15 10:53:51.000 +,"Spyro Reignited Trilogy",Needs More Attention;UE4;crash;gpu;nvdec;status-menus,menus,2021-01-22 13:01:56.000 +010077B00E046000,"Spyro Reignited Trilogy",status-playable;nvdec;UE4,playable,2022-09-11 18:38:33.000 +,"Squeakers",status-playable,playable,2020-12-13 12:13:05.000 +,"Squidgies Takeover",status-playable,playable,2020-07-20 22:28:08.000 +,"Squidlit",status-playable,playable,2020-08-06 12:38:32.000 +0100EBF00E702000,"STAR OCEAN First Departure R",nvdec;status-playable,playable,2021-07-05 19:29:16.000 +010065301A2E0000,"STAR OCEAN The Second Story R",status-ingame;crash,ingame,2024-06-01 02:39:59.000 +,"Star Renegades",nvdec;status-playable,playable,2020-12-11 12:19:23.000 +,"Star Story: The Horizon Escape",status-playable,playable,2020-08-11 22:31:38.000 +01009DF015776000,"Star Trek Prodigy: Supernova",status-playable;nvdec;UE4;opengl-backend-bug,playable,2022-10-14 10:18:50.000 +0100854015868000,"Star Wars - Knights Of The Old Republic",gpu;deadlock;status-boots,boots,2024-02-12 10:13:51.000 +010040701B948000,"STAR WARS Battlefront Classic Collection",gpu;status-ingame;vulkan,ingame,2024-07-12 19:24:21.000 +0100BD100FFBE000,"STAR WARS Episode I: Racer",slow;status-playable;nvdec,playable,2022-10-03 16:08:36.000 +0100BB500EACA000,"STAR WARS Jedi Knight II Jedi Outcast",gpu;status-ingame,ingame,2022-09-15 22:51:00.000 +01008CA00FAE8000,"Star Wars Jedi Knight: Jedi Academy",gpu;status-boots,boots,2021-06-16 12:35:30.000 +0100FA10115F8000,"Star Wars: Republic Commando",gpu;status-ingame;32-bit,ingame,2023-10-31 15:57:17.000 +0100153014544000,"STAR WARS: The Force Unleashed",status-playable,playable,2024-05-01 17:41:28.000 +01006DA00DEAC000,"Star Wars™ Pinball",status-playable;online-broken,playable,2022-09-11 18:53:31.000 +01005EB00EA10000,"Star-Crossed Myth - The Department of Wishes",gpu;status-ingame,ingame,2021-06-04 19:34:36.000 +0100E6B0115FC000,"Star99",status-menus;online,menus,2021-11-26 14:18:51.000 +01002100137BA000,"Stardash",status-playable,playable,2021-01-21 16:31:19.000 +0100E65002BB8000,"Stardew Valley",status-playable;online-broken;ldn-untested,playable,2024-02-14 03:11:19.000 +01002CC003FE6000,"Starlink: Battle for Atlas",services-horizon;status-nothing;crash;Needs Update,nothing,2024-05-05 17:25:11.000 +,"Starlit Adventures Golden Stars",status-playable,playable,2020-11-21 12:14:43.000 +,"Starship Avenger Operation: Take Back Earth",status-playable,playable,2021-01-12 15:52:55.000 +,"State of Anarchy: Master of Mayhem",nvdec;status-playable,playable,2021-01-12 19:00:05.000 +,"State of Mind",UE4;crash;status-boots,boots,2020-06-22 22:17:50.000 +0100616009082000,"STAY",crash;services;status-boots,boots,2021-04-23 14:24:52.000 +0100B61009C60000,"STAY COOL, KOBAYASHI-SAN! A RIVER RANSOM STORY",status-playable,playable,2021-01-26 17:37:28.000 +01008010118CC000,"Steam Prison",nvdec;status-playable,playable,2021-04-01 15:34:11.000 +0100AE100DAFA000,"Steam Tactics",status-playable,playable,2022-10-06 16:53:45.000 +,"Steamburg",status-playable,playable,2021-01-13 08:42:01.000 +01009320084A4000,"SteamWorld Dig",status-playable,playable,2024-08-19 12:12:23.000 +0100CA9002322000,"SteamWorld Dig 2",status-playable,playable,2022-12-21 19:25:42.000 +,"SteamWorld Quest",nvdec;status-playable,playable,2020-11-09 13:10:04.000 +01001C6014772000,"Steel Assault",status-playable,playable,2022-12-06 14:48:30.000 +,"Steins;Gate Elite",status-playable,playable,2020-08-04 07:33:32.000 +0100CB400E9BC000,"STEINS;GATE: My Darling's Embrace",status-playable;nvdec,playable,2022-11-20 16:48:34.000 +01002DE01043E000,"Stela",UE4;status-playable,playable,2021-06-15 13:28:34.000 +01005A700C954000,"Stellar Interface",status-playable,playable,2022-10-20 13:44:33.000 +0100BC800EDA2000,"STELLATUM",gpu;status-playable,playable,2021-03-07 16:30:23.000 +,"Steredenn",status-playable,playable,2021-01-13 09:19:42.000 +0100AE0006474000,"Stern Pinball Arcade",status-playable,playable,2022-08-16 14:24:41.000 +,"Stikbold! A Dodgeball Adventure DELUXE",status-playable,playable,2021-01-11 20:12:54.000 +010077B014518000,"Stitchy in Tooki Trouble",status-playable,playable,2021-05-06 16:25:53.000 +010070D00F640000,"STONE",status-playable;UE4,playable,2022-09-30 11:53:32.000 +010074400F6A8000,"Stories Untold",status-playable;nvdec,playable,2022-12-22 01:08:46.000 +010040D00BCF4000,"Storm Boy",status-playable,playable,2022-10-20 14:15:06.000 +0100B2300B932000,"Storm in a Teacup",gpu;status-ingame,ingame,2021-11-06 02:03:19.000 +,"Story of a Gladiator",status-playable,playable,2020-07-29 15:08:18.000 +010017301007E000,"STORY OF SEASONS Pioneers of Olive [ 牧場物語 オリーブタウンと希望の大地 ]",status-playable,playable,2021-03-18 11:42:19.000 +0100ED400EEC2000,"Story of Seasons: Friends of Mineral Town",status-playable,playable,2022-10-03 16:40:31.000 +010078D00E8F4000,"Stranded Sails: Explorers of the Cursed Islands - 010078D00E8F4000",slow;status-playable;nvdec;UE4,playable,2022-09-16 11:58:38.000 +01000A6013F86000,"Strange Field Football",status-playable,playable,2022-11-04 12:25:57.000 +,"Stranger Things 3: The Game",status-playable,playable,2021-01-11 17:44:09.000 +0100D7E011C64000,"Strawberry Vinegar",status-playable;nvdec,playable,2022-12-05 16:25:40.000 +010075101EF84000,"Stray",status-ingame;crash,ingame,2025-01-07 04:03:00.000 +0100024008310000,"Street Fighter 30th Anniversary Collection",status-playable;online-broken;ldn-partial,playable,2022-08-20 16:50:47.000 +010012400D202000,"Street Outlaws: The List",nvdec;status-playable,playable,2021-06-11 12:15:32.000 +,"Street Power Soccer",UE4;crash;status-boots,boots,2020-11-21 12:28:57.000 +,"Streets of Rage 4",nvdec;online;status-playable,playable,2020-07-07 21:21:22.000 +0100BDE012928000,"Strife: Veteran Edition",gpu;status-ingame,ingame,2022-01-15 05:10:42.000 +010039100DACC000,"Strike Force - War on Terror",status-menus;crash;Needs Update,menus,2021-11-24 08:08:20.000 +010072500D52E000,"Strike Suit Zero: Director's Cut",crash;status-boots,boots,2021-04-23 17:15:14.000 +,"StrikeForce Kitty",nvdec;status-playable,playable,2020-07-29 16:22:15.000 +0100FF5005B76000,"STRIKERS1945 for Nintendo Switch",32-bit;status-playable,playable,2021-06-03 19:35:04.000 +0100720008ED2000,"STRIKERS1945II for Nintendo Switch",32-bit;status-playable,playable,2021-06-03 19:43:00.000 +,"Struggling",status-playable,playable,2020-10-15 20:37:03.000 +0100AF000B4AE000,"Stunt Kite Party",nvdec;status-playable,playable,2021-01-25 17:16:56.000 +0100C5500E7AE000,"STURMWIND EX",audio;32-bit;status-playable,playable,2022-09-16 12:01:39.000 +0100E6400BCE8000,"Sub Level Zero: Redux",status-playable,playable,2022-09-16 12:30:03.000 +,"Subarashiki Kono Sekai -Final Remix-",services;slow;status-ingame,ingame,2020-02-10 16:21:51.000 +010001400E474000,"Subdivision Infinity DX",UE4;crash;status-boots,boots,2021-03-03 14:26:46.000 +0100EDA00D866000,"Submerged",status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-08-16 15:17:01.000 +0100429011144000,"Subnautica",status-playable;vulkan-backend-bug,playable,2022-11-04 13:07:29.000 +010014C011146000,"Subnautica Below Zero",status-playable,playable,2022-12-23 14:15:13.000 +0100BF9012AC6000,"Suguru Nature",crash;status-ingame,ingame,2021-07-29 11:36:27.000 +01005CD00A2A2000,"Suicide Guy",status-playable,playable,2021-01-26 13:13:54.000 +0100DE000C2E4000,"Suicide Guy: Sleepin' Deeply",status-ingame;Needs More Attention,ingame,2022-09-20 23:45:25.000 +01003D50126A4000,"Sumire",status-playable,playable,2022-11-12 13:40:43.000 +0100A130109B2000,"Summer in Mara",nvdec;status-playable,playable,2021-03-06 14:10:38.000 +01004E500DB9E000,"Summer Sweetheart",status-playable;nvdec,playable,2022-09-16 12:51:46.000 +0100BFE014476000,"Sunblaze",status-playable,playable,2022-11-12 13:59:23.000 +01002D3007962000,"Sundered: Eldritch Edition",gpu;status-ingame,ingame,2021-06-07 11:46:00.000 +0100F7000464A000,"Super Beat Sports",status-playable;ldn-untested,playable,2022-08-16 16:05:50.000 +,"Super Blood Hockey",status-playable,playable,2020-12-11 20:01:41.000 +01007AD00013E000,"Super Bomberman R",status-playable;nvdec;online-broken;ldn-works,playable,2022-08-16 19:19:14.000 +0100B87017D94000,"SUPER BOMBERMAN R 2",deadlock;status-boots,boots,2023-09-29 13:19:51.000 +0100D9B00DB5E000,"Super Cane Magic ZERO",status-playable,playable,2022-09-12 15:33:46.000 +010065F004E5E000,"Super Chariot",status-playable,playable,2021-06-03 13:19:01.000 +0100E5E00C464000,"SUPER DRAGON BALL HEROES WORLD MISSION",status-playable;nvdec;online-broken,playable,2022-08-17 12:56:30.000 +010023100B19A000,"Super Dungeon Tactics",status-playable,playable,2022-10-06 17:40:40.000 +010056800B534000,"Super Inefficient Golf",status-playable;UE4,playable,2022-08-17 15:53:45.000 +,"Super Jumpy Ball",status-playable,playable,2020-07-04 18:40:36.000 +0100196009998000,"Super Kickers League",status-playable,playable,2021-01-26 13:36:48.000 +01003FB00C5A8000,"Super Kirby Clash",status-playable;ldn-works,playable,2024-07-30 18:21:55.000 +010000D00F81A000,"Super Korotama",status-playable,playable,2021-06-06 19:06:22.000 +01003E300FCAE000,"Super Loop Drive",status-playable;nvdec;UE4,playable,2022-09-22 10:58:05.000 +010049900F546000,"Super Mario 3D All-Stars",services-horizon;slow;status-ingame;vulkan;amd-vendor-bug,ingame,2024-05-07 02:38:16.000 +010028600EBDA000,"Super Mario 3D World + Bowser's Fury",status-playable;ldn-works,playable,2024-07-31 10:45:37.000 +054507E0B7552000,"Super Mario 64",status-ingame;homebrew,ingame,2024-03-20 16:57:27.000 +0100277011F1A000,"Super Mario Bros. 35",status-menus;online-broken,menus,2022-08-07 16:27:25.000 +010015100B514000,"Super Mario Bros. Wonder",status-playable;amd-vendor-bug,playable,2024-09-06 13:21:21.000 +01009B90006DC000,"Super Mario Maker 2",status-playable;online-broken;ldn-broken,playable,2024-08-25 11:05:19.000 +0100000000010000,"Super Mario Odyssey",status-playable;nvdec;intel-vendor-bug;mac-bug,playable,2024-08-25 01:32:34.000 +010036B0034E4000,"Super Mario Party",gpu;status-ingame;Needs Update;ldn-works,ingame,2024-06-21 05:10:16.000 +0100BC0018138000,"Super Mario RPG",gpu;audio;status-ingame;nvdec,ingame,2024-06-19 17:43:42.000 +0000000000000000,"Super Mario World",status-boots;homebrew,boots,2024-06-13 01:40:31.000 +,"Super Meat Boy",services;status-playable,playable,2020-04-02 23:10:07.000 +01009C200D60E000,"Super Meat Boy Forever",gpu;status-boots,boots,2021-04-26 14:25:39.000 +,"Super Mega Space Blaster Special Turbo",online;status-playable,playable,2020-08-06 12:13:25.000 +010031F019294000,"Super Monkey Ball Banana Rumble",status-playable,playable,2024-06-28 10:39:18.000 +0100B2A00E1E0000,"Super Monkey Ball: Banana Blitz HD",status-playable;online-broken,playable,2022-09-16 13:16:25.000 +,"Super Mutant Alien Assault",status-playable,playable,2020-06-07 23:32:45.000 +01004D600AC14000,"Super Neptunia RPG",status-playable;nvdec,playable,2022-08-17 16:38:52.000 +,"Super Nintendo Entertainment System - Nintendo Switch Online",status-playable,playable,2021-01-05 00:29:48.000 +0100284007D6C000,"Super One More Jump",status-playable,playable,2022-08-17 16:47:47.000 +01001F90122B2000,"Super Punch Patrol",status-playable,playable,2024-07-12 19:49:02.000 +0100331005E8E000,"Super Putty Squad",gpu;status-ingame;32-bit,ingame,2024-04-29 15:51:54.000 +,"SUPER ROBOT WARS T",online;status-playable,playable,2021-03-25 11:00:40.000 +,"SUPER ROBOT WARS V",online;status-playable,playable,2020-06-23 12:56:37.000 +,"SUPER ROBOT WARS X",online;status-playable,playable,2020-08-05 19:18:51.000 +,"Super Saurio Fly",nvdec;status-playable,playable,2020-08-06 13:12:14.000 +,"Super Skelemania",status-playable,playable,2020-06-07 22:59:50.000 +01006A800016E000,"Super Smash Bros. Ultimate",gpu;status-ingame;crash;nvdec;ldn-works;intel-vendor-bug,ingame,2024-09-14 23:05:21.000 +0100D61012270000,"Super Soccer Blast",gpu;status-ingame,ingame,2022-02-16 08:39:12.000 +0100A9300A4AE000,"Super Sportmatchen",status-playable,playable,2022-08-19 12:34:40.000 +0100FB400F54E000,"Super Street: Racer",status-playable;UE4,playable,2022-09-16 13:43:14.000 +,"Super Tennis Blast - 01000500DB50000",status-playable,playable,2022-08-19 16:20:48.000 +0100C6800D770000,"Super Toy Cars 2",gpu;regression;status-ingame,ingame,2021-03-02 20:15:15.000 +010035B00B3F0000,"Super Volley Blast",status-playable,playable,2022-08-19 18:14:40.000 +0100FF60051E2000,"Superbeat: Xonic EX",status-ingame;crash;nvdec,ingame,2022-08-19 18:54:40.000 +0100630010252000,"SuperEpic: The Entertainment War",status-playable,playable,2022-10-13 23:02:48.000 +01001A500E8B4000,"Superhot",status-playable,playable,2021-05-05 19:51:30.000 +,"Superliminal",status-playable,playable,2020-09-03 13:20:50.000 +0100C01012654000,"Supermarket Shriek",status-playable,playable,2022-10-13 23:19:20.000 +0100A6E01201C000,"Supraland",status-playable;nvdec;UE4;opengl-backend-bug,playable,2022-10-14 09:49:11.000 +010029A00AEB0000,"Survive! Mr. Cube",status-playable,playable,2022-10-20 14:44:47.000 +01005AB01119C000,"SUSHI REVERSI",status-playable,playable,2021-06-11 19:26:58.000 +,"Sushi Striker: The Way of Sushido",nvdec;status-playable,playable,2020-06-26 20:49:11.000 +0100D6D00EC2C000,"Sweet Witches",status-playable;nvdec,playable,2022-10-20 14:56:37.000 +010049D00C8B0000,"Swimsanity!",status-menus;online,menus,2021-11-26 14:27:16.000 +01005DF00DC26000,"SWORD ART ONLINE: FATAL BULLET COMPLETE EDITION",UE4;gpu;online;status-ingame,ingame,2021-06-09 16:58:50.000 +01001B600D1D6000,"SWORD ART ONLINE: Hollow Realization Deluxe Edition",status-playable;nvdec,playable,2022-08-19 19:19:15.000 +,"Sword of the Guardian",status-playable,playable,2020-07-16 12:24:39.000 +0100E4701355C000,"Sword of the Necromancer",status-ingame;crash,ingame,2022-12-10 01:28:39.000 +01004BB00421E000,"Syberia 1 & 2",status-playable,playable,2021-12-24 12:06:25.000 +010028C003FD6000,"Syberia 2",gpu;status-ingame,ingame,2022-08-24 12:43:03.000 +0100CBE004E6C000,"Syberia 3",nvdec;status-playable,playable,2021-01-25 16:15:12.000 +,"Sydney Hunter and the Curse of the Mayan",status-playable,playable,2020-06-15 12:15:57.000 +,"SYNAPTIC DRIVE",online;status-playable,playable,2020-09-07 13:44:05.000 +01009E700F448000,"Synergia",status-playable,playable,2021-04-06 17:58:04.000 +01009BF00E7D2000,"SYNTHETIK: Ultimate",gpu;status-ingame;crash,ingame,2022-08-30 03:19:25.000 +,"Table Top Racing World Tour Nitro Edition",status-playable,playable,2020-04-05 23:21:30.000 +01000F20083A8000,"Tactical Mind",status-playable,playable,2021-01-25 18:05:00.000 +,"Tactical Mind 2",status-playable,playable,2020-07-01 23:11:07.000 +0100E12013C1A000,"Tactics Ogre Reborn",status-playable;vulkan-backend-bug,playable,2024-04-09 06:21:35.000 +01007C7006AEE000,"Tactics V: ""Obsidian Brigade",status-playable,playable,2021-02-28 15:09:42.000 +,"Taiko no Tatsujin Rhythmic Adventure Pack",status-playable,playable,2020-12-03 07:28:26.000 +01002C000B552000,"Taiko no Tatsujin: Drum 'n' Fun!",status-playable;online-broken;ldn-broken,playable,2023-05-20 15:10:12.000 +0100BCA0135A0000,"Taiko no Tatsujin: Rhythm Festival",status-playable,playable,2023-11-13 13:16:34.000 +0100346017304000,"Taiko Risshiden V DX",status-nothing;crash,nothing,2022-06-06 16:25:31.000 +010040A00EA26000,"Taimumari: Complete Edition",status-playable,playable,2022-12-06 13:34:49.000 +0100F0C011A68000,"Tales from the Borderlands",status-playable;nvdec,playable,2022-10-25 18:44:14.000 +0100408007078000,"Tales of the Tiny Planet",status-playable,playable,2021-01-25 15:47:41.000 +01002C0008E52000,"Tales of Vesperia: Definitive Edition",status-playable,playable,2024-09-28 03:20:47.000 +010012800EE3E000,"Tamashii",status-playable,playable,2021-06-10 15:26:20.000 +010008A0128C4000,"Tamiku",gpu;status-ingame,ingame,2021-06-15 20:06:55.000 +,"Tangledeep",crash;status-boots,boots,2021-01-05 04:08:41.000 +01007DB010D2C000,"TaniNani",crash;kernel;status-nothing,nothing,2021-04-08 03:06:44.000 +,"Tank Mechanic Simulator",status-playable,playable,2020-12-11 15:10:45.000 +01007A601318C000,"Tanuki Justice",status-playable;opengl,playable,2023-02-21 18:28:10.000 +01004DF007564000,"Tanzia",status-playable,playable,2021-06-07 11:10:25.000 +,"Task Force Kampas",status-playable,playable,2020-11-30 14:44:15.000 +0100B76011DAA000,"Taxi Chaos",slow;status-playable;online-broken;UE4,playable,2022-10-25 19:13:00.000 +,"Tcheco in the Castle of Lucio",status-playable,playable,2020-06-27 13:35:43.000 +010092B0091D0000,"Team Sonic Racing",status-playable;online-broken;ldn-works,playable,2024-02-05 15:05:27.000 +0100FE701475A000,"Teenage Mutant Ninja Turtles: Shredder's Revenge",deadlock;status-boots;crash,boots,2024-09-28 09:31:39.000 +01005CF01E784000,"Teenage Mutant Ninja Turtles: Splintered Fate",status-playable,playable,2024-08-03 13:50:42.000 +0100FDB0154E4000,"Teenage Mutant Ninja Turtles: The Cowabunga Collection",status-playable,playable,2024-01-22 19:39:04.000 +,"Telling Lies",status-playable,playable,2020-10-23 21:14:51.000 +0100C8B012DEA000,"Temtem",status-menus;online-broken,menus,2022-12-17 17:36:11.000 +,"TENGAI for Nintendo Switch",32-bit;status-playable,playable,2020-11-25 19:52:26.000 +,"Tennis",status-playable,playable,2020-06-01 20:50:36.000 +01002970080AA000,"Tennis in the Face",status-playable,playable,2022-08-22 14:10:54.000 +0100092006814000,"Tennis World Tour",status-playable;online-broken,playable,2022-08-22 14:27:10.000 +0100950012F66000,"Tennis World Tour 2",status-playable;online-broken,playable,2022-10-14 10:43:16.000 +0100E46006708000,"Terraria",status-playable;online-broken,playable,2022-09-12 16:14:57.000 +010070C00FB56000,"TERROR SQUID",status-playable;online-broken,playable,2023-10-30 22:29:29.000 +010043700EB68000,"TERRORHYTHM (TRRT)",status-playable,playable,2021-02-27 13:18:14.000 +0100FBC007EAE000,"Tesla vs Lovecraft",status-playable,playable,2023-11-21 06:19:36.000 +01005C8005F34000,"Teslagrad",status-playable,playable,2021-02-23 14:41:02.000 +01006F701507A000,"Tested on Humans: Escape Room",status-playable,playable,2022-11-12 14:42:52.000 +,"Testra's Escape",status-playable,playable,2020-06-03 18:21:14.000 +,"TETRA for Nintendo Switch",status-playable,playable,2020-06-26 20:49:55.000 +010040600C5CE000,"TETRIS 99",gpu;status-ingame;online-broken;ldn-untested,ingame,2024-05-02 16:36:41.000 +,"Tetsumo Party",status-playable,playable,2020-06-09 22:39:55.000 +01008ED0087A4000,"The Adventure Pals",status-playable,playable,2022-08-22 14:48:52.000 +,"The Adventures of 00 Dilly",status-playable,playable,2020-12-30 19:32:29.000 +,"The Adventures of Elena Temple",status-playable,playable,2020-06-03 23:15:35.000 +010045A00E038000,"The Alliance Alive HD Remastered",nvdec;status-playable,playable,2021-03-07 15:43:45.000 +,"The Almost Gone",status-playable,playable,2020-07-05 12:33:07.000 +0100CD500DDAE000,"The Bard's Tale ARPG: Remastered and Resnarkled",gpu;status-ingame;nvdec;online-working,ingame,2024-07-18 12:52:01.000 +01001E50141BC000,"The Battle Cats Unite!",deadlock;status-ingame,ingame,2021-12-14 21:38:34.000 +010089600E66A000,"The Big Journey",status-playable,playable,2022-09-16 14:03:08.000 +010021C000B6A000,"The Binding of Isaac: Afterbirth+",status-playable,playable,2021-04-26 14:11:56.000 +,"The Bluecoats: North & South",nvdec;status-playable,playable,2020-12-10 21:22:29.000 +010062500BFC0000,"The Book of Unwritten Tales 2",status-playable,playable,2021-06-09 14:42:53.000 +,"The Bridge",status-playable,playable,2020-06-03 13:53:26.000 +,"The Bug Butcher",status-playable,playable,2020-06-03 12:02:04.000 +01001B40086E2000,"The Bunker",status-playable;nvdec,playable,2022-09-16 14:24:05.000 +,"The Caligula Effect: Overdose",UE4;gpu;status-ingame,ingame,2021-01-04 11:07:50.000 +010066800E9F8000,"The Childs Sight",status-playable,playable,2021-06-11 19:04:56.000 +,"The Coma 2: Vicious Sisters",gpu;status-ingame,ingame,2020-06-20 12:51:51.000 +,"The Coma: Recut",status-playable,playable,2020-06-03 15:11:23.000 +01004170113D4000,"The Complex",status-playable;nvdec,playable,2022-09-28 14:35:41.000 +01000F20102AC000,"The Copper Canyon Dixie Dash",status-playable;UE4,playable,2022-09-29 11:42:29.000 +01000850037C0000,"The Count Lucanor",status-playable;nvdec,playable,2022-08-22 15:26:37.000 +0100EBA01548E000,"The Cruel King and the Great Hero",gpu;services;status-ingame,ingame,2022-12-02 07:02:08.000 +,"The Dark Crystal",status-playable,playable,2020-08-11 13:43:41.000 +,"The Darkside Detective",status-playable,playable,2020-06-03 22:16:18.000 +01000A10041EA000,"The Elder Scrolls V: Skyrim",gpu;status-ingame;crash,ingame,2024-07-14 03:21:31.000 +,"The End is Nigh",status-playable,playable,2020-06-01 11:26:45.000 +,"The Escapists 2",nvdec;status-playable,playable,2020-09-24 12:31:31.000 +01001B700BA7C000,"The Escapists: Complete Edition",status-playable,playable,2021-02-24 17:50:31.000 +0100C2E0129A6000,"The Executioner",nvdec;status-playable,playable,2021-01-23 00:31:28.000 +01006050114D4000,"The Experiment: Escape Room",gpu;status-ingame,ingame,2022-09-30 13:20:35.000 +0100B5900DFB2000,"The Eyes of Ara",status-playable,playable,2022-09-16 14:44:06.000 +,"The Fall",gpu;status-ingame,ingame,2020-05-31 23:31:16.000 +,"The Fall Part 2: Unbound",status-playable,playable,2021-11-06 02:18:08.000 +0100CDC00789E000,"The Final Station",status-playable;nvdec,playable,2022-08-22 15:54:39.000 +010098800A1E4000,"The First Tree",status-playable,playable,2021-02-24 15:51:05.000 +0100C38004DCC000,"The Flame in the Flood: Complete Edition",gpu;status-ingame;nvdec;UE4,ingame,2022-08-22 16:23:49.000 +,"The Forbidden Arts - 01007700D4AC000",status-playable,playable,2021-01-26 16:26:24.000 +010030700CBBC000,"The friends of Ringo Ishikawa",status-playable,playable,2022-08-22 16:33:17.000 +01006350148DA000,"The Gardener and the Wild Vines",gpu;status-ingame,ingame,2024-04-29 16:32:10.000 +0100B13007A6A000,"The Gardens Between",status-playable,playable,2021-01-29 16:16:53.000 +010036E00FB20000,"The Great Ace Attorney Chronicles",status-playable,playable,2023-06-22 21:26:29.000 +,"The Great Perhaps",status-playable,playable,2020-09-02 15:57:04.000 +01003b300e4aa000,"THE GRISAIA TRILOGY",status-playable,playable,2021-01-31 15:53:59.000 +,"The Hong Kong Massacre",crash;status-ingame,ingame,2021-01-21 12:06:56.000 +,"The House of Da Vinci",status-playable,playable,2021-01-05 14:17:19.000 +,"The House of Da Vinci 2",status-playable,playable,2020-10-23 20:47:17.000 +01008940086E0000,"The Infectious Madness of Doctor Dekker",status-playable;nvdec,playable,2022-08-22 16:45:01.000 +,"The Inner World",nvdec;status-playable,playable,2020-06-03 21:22:29.000 +,"The Inner World - The Last Wind Monk",nvdec;status-playable,playable,2020-11-16 13:09:40.000 +0100AE5003EE6000,"The Jackbox Party Pack",status-playable;online-working,playable,2023-05-28 09:28:40.000 +010015D003EE4000,"The Jackbox Party Pack 2",status-playable;online-working,playable,2022-08-22 18:23:40.000 +0100CC80013D6000,"The Jackbox Party Pack 3",slow;status-playable;online-working,playable,2022-08-22 18:41:06.000 +0100E1F003EE8000,"The Jackbox Party Pack 4",status-playable;online-working,playable,2022-08-22 18:56:34.000 +010052C00B184000,"The Journey Down: Chapter One",nvdec;status-playable,playable,2021-02-24 13:32:41.000 +01006BC00B188000,"The Journey Down: Chapter Three",nvdec;status-playable,playable,2021-02-24 13:45:27.000 +,"The Journey Down: Chapter Two",nvdec;status-playable,playable,2021-02-24 13:32:13.000 +010020500BD98000,"The King's Bird",status-playable,playable,2022-08-22 19:07:46.000 +010031B00DB34000,"The Knight & the Dragon",gpu;status-ingame,ingame,2023-08-14 10:31:43.000 +,"The Language of Love",Needs Update;crash;status-nothing,nothing,2020-12-03 17:54:00.000 +010079C017F5E000,"The Lara Croft Collection",services-horizon;deadlock;status-nothing,nothing,2024-07-12 22:45:51.000 +0100449011506000,"The Last Campfire",status-playable,playable,2022-10-20 16:44:19.000 +0100AAD011592000,"The Last Dead End",gpu;status-ingame;UE4,ingame,2022-10-20 16:59:44.000 +0100AC800D022000,"THE LAST REMNANT Remastered",status-playable;nvdec;UE4,playable,2023-02-09 17:24:44.000 +,"The Legend of Dark Witch",status-playable,playable,2020-07-12 15:18:33.000 +01001920156C2000,"The Legend of Heroes: Trails from Zero",gpu;status-ingame;mac-bug,ingame,2024-09-14 21:41:41.000 +,"The Legend of Heroes: Trails of Cold Steel III",status-playable,playable,2020-12-16 10:59:18.000 +01009B101044C000,"The Legend of Heroes: Trails of Cold Steel III Demo",demo;nvdec;status-playable,playable,2021-04-23 01:07:32.000 +0100D3C010DE8000,"The Legend of Heroes: Trails of Cold Steel IV",nvdec;status-playable,playable,2021-04-23 14:01:05.000 +01005E5013862000,"THE LEGEND OF HEROES: ZERO NO KISEKI KAI [英雄傳說 零之軌跡:改]",status-nothing;crash,nothing,2021-09-30 14:41:07.000 +01008CF01BAAC000,"The Legend of Zelda Echoes of Wisdom",status-playable;nvdec;ASTC;intel-vendor-bug,playable,2024-10-01 14:11:01.000 +01007EF00011E000,"The Legend of Zelda: Breath of the Wild",gpu;status-ingame;amd-vendor-bug;mac-bug,ingame,2024-09-23 19:35:46.000 +0100509005AF2000,"The Legend of Zelda: Breath of the Wild Demo",status-ingame;demo,ingame,2022-12-24 05:02:58.000 +01006BB00C6F0000,"The Legend of Zelda: Link's Awakening",gpu;status-ingame;nvdec;mac-bug,ingame,2023-08-09 17:37:40.000 +01002DA013484000,"The Legend of Zelda: Skyward Sword HD",gpu;status-ingame,ingame,2024-06-14 16:48:29.000 +0100F2C0115B6000,"The Legend of Zelda: Tears of the Kingdom",gpu;status-ingame;amd-vendor-bug;intel-vendor-bug;mac-bug,ingame,2024-08-24 12:38:30.000 +0100A4400BE74000,"The LEGO Movie 2 - Videogame",status-playable,playable,2023-03-01 11:23:37.000 +01007FC00206E000,"The LEGO NINJAGO Movie Video Game",status-nothing;crash,nothing,2022-08-22 19:12:53.000 +010064B00B95C000,"The Liar Princess and the Blind Prince",audio;slow;status-playable,playable,2020-06-08 21:23:28.000 +0100735004898000,"The Lion's Song",status-playable,playable,2021-06-09 15:07:16.000 +0100A5000D590000,"The Little Acre",nvdec;status-playable,playable,2021-03-02 20:22:27.000 +01007A700A87C000,"The Long Dark",status-playable,playable,2021-02-21 14:19:52.000 +010052B003A38000,"The Long Reach",nvdec;status-playable,playable,2021-02-24 14:09:48.000 +,"The Long Return",slow;status-playable,playable,2020-12-10 21:05:10.000 +0100CE1004E72000,"The Longest Five Minutes",gpu;status-boots,boots,2023-02-19 18:33:11.000 +0100F3D0122C2000,"The Longing",gpu;status-ingame,ingame,2022-11-12 15:00:58.000 +010085A00C5E8000,"The Lord of the Rings: Adventure Card Game",status-menus;online-broken,menus,2022-09-16 15:19:32.000 +01008A000A404000,"The Lost Child",nvdec;status-playable,playable,2021-02-23 15:44:20.000 +0100BAB00A116000,"The Low Road",status-playable,playable,2021-02-26 13:23:22.000 +,"The Mahjong",Needs Update;crash;services;status-nothing,nothing,2021-04-01 22:06:22.000 +,"The Messenger",status-playable,playable,2020-03-22 13:51:37.000 +0100DEC00B2BC000,"The Midnight Sanctuary",status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-10-03 17:17:32.000 +0100F1B00B456000,"The MISSING: J.J. Macfield and the Island of Memories",status-playable,playable,2022-08-22 19:36:18.000 +010033300AC1A000,"The Mooseman",status-playable,playable,2021-02-24 12:58:57.000 +01005E9016BDE000,"The movie The Quintessential Bride -Five Memories Spent with You-",status-playable,playable,2023-12-14 14:43:43.000 +0100496004194000,"The Mummy Demastered",status-playable,playable,2021-02-23 13:11:27.000 +,"The Mystery of the Hudson Case",status-playable,playable,2020-06-01 11:03:36.000 +01000CF0084BC000,"The Next Penelope",status-playable,playable,2021-01-29 16:26:11.000 +01001FB00E386000,"THE NINJA SAVIORS Return of the Warriors",online;status-playable,playable,2021-03-25 23:48:07.000 +0100B080184BC000,"The Oregon Trail",gpu;status-ingame,ingame,2022-11-25 16:11:49.000 +0100B0101265C000,"The Otterman Empire",UE4;gpu;status-ingame,ingame,2021-06-17 12:27:15.000 +01000BC01801A000,"The Outbound Ghost",status-nothing,nothing,2024-03-02 17:10:58.000 +0100626011656000,"The Outer Worlds",gpu;status-ingame;nvdec;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-10-03 17:55:32.000 +,"The Park",UE4;crash;gpu;status-ingame,ingame,2020-12-18 12:50:07.000 +010050101127C000,"The Persistence",nvdec;status-playable,playable,2021-06-06 19:15:40.000 +0100CD300880E000,"The Pinball Arcade",status-playable;online-broken,playable,2022-08-22 19:49:46.000 +01006BD018B54000,"The Plucky Squire",status-ingame;crash,ingame,2024-09-27 22:32:33.000 +0100E6A00B960000,"The Princess Guide",status-playable,playable,2021-02-24 14:23:34.000 +010058A00BF1C000,"The Raven Remastered",status-playable;nvdec,playable,2022-08-22 20:02:47.000 +,"The Red Strings Club",status-playable,playable,2020-06-01 10:51:18.000 +010079400BEE0000,"The Room",status-playable,playable,2021-04-14 18:57:05.000 +010033100EE12000,"The Ryuo's Work is Never Done!",status-playable,playable,2022-03-29 00:35:37.000 +01002BA00C7CE000,"The Savior's Gang",gpu;status-ingame;nvdec;UE4,ingame,2022-09-21 12:37:48.000 +0100F3200E7CA000,"The Settlers: New Allies",deadlock;status-nothing,nothing,2023-10-25 00:18:05.000 +,"The Sexy Brutale",status-playable,playable,2021-01-06 17:48:28.000 +,"The Shapeshifting Detective",nvdec;status-playable,playable,2021-01-10 13:10:49.000 +010028D00BA1A000,"The Sinking City",status-playable;nvdec;UE4,playable,2022-09-12 16:41:55.000 +010041C00A68C000,"The Spectrum Retreat",status-playable,playable,2022-10-03 18:52:40.000 +010029300E5C4000,"The Stanley Parable: Ultra Deluxe",gpu;status-ingame,ingame,2024-07-12 23:18:26.000 +010007F00AF56000,"The Station",status-playable,playable,2022-09-28 18:15:27.000 +0100858010DC4000,"the StoryTale",status-playable,playable,2022-09-03 13:00:25.000 +0100AA400A238000,"The Stretchers",status-playable;nvdec;UE4,playable,2022-09-16 15:40:58.000 +,"The Survivalists",status-playable,playable,2020-10-27 15:51:13.000 +010040D00B7CE000,"The Swindle",status-playable;nvdec,playable,2022-08-22 20:53:52.000 +,"The Swords of Ditto",slow;status-ingame,ingame,2020-12-06 00:13:12.000 +01009B300D76A000,"The Tiny Bang Story",status-playable,playable,2021-03-05 15:39:05.000 +0100C3300D8C4000,"The Touryst",status-ingame;crash,ingame,2023-08-22 01:32:38.000 +010047300EBA6000,"The Tower of Beatrice",status-playable,playable,2022-09-12 16:51:42.000 +010058000A576000,"The Town of Light",gpu;status-playable,playable,2022-09-21 12:51:34.000 +0100B0E0086F6000,"The Trail: Frontier Challenge",slow;status-playable,playable,2022-08-23 15:10:51.000 +0100EA100F516000,"The Turing Test",status-playable;nvdec,playable,2022-09-21 13:24:07.000 +010064E00ECBC000,"The Unicorn Princess",status-playable,playable,2022-09-16 16:20:56.000 +0100BCF00E970000,"The Vanishing of Ethan Carter",UE4;status-playable,playable,2021-06-09 17:14:47.000 +,"The VideoKid",nvdec;status-playable,playable,2021-01-06 09:28:24.000 +,"The Voice",services;status-menus,menus,2020-07-28 20:48:49.000 +010029200B6AA000,"The Walking Dead",status-playable,playable,2021-06-04 13:10:56.000 +010056E00B4F4000,"The Walking Dead: A New Frontier",status-playable,playable,2022-09-21 13:40:48.000 +,"The Walking Dead: Season Two",status-playable,playable,2020-08-09 12:57:06.000 +010060F00AA70000,"The Walking Dead: The Final Season",status-playable;online-broken,playable,2022-08-23 17:22:32.000 +,"The Wanderer: Frankenstein's Creature",status-playable,playable,2020-07-11 12:49:51.000 +01008B200FC6C000,"The Wardrobe: Even Better Edition",status-playable,playable,2022-09-16 19:14:55.000 +01003D100E9C6000,"The Witcher 3: Wild Hunt",status-playable;nvdec;vulkan-backend-bug;amd-vendor-bug,playable,2024-02-22 12:21:51.000 +0100B1300FF08000,"The Wonderful 101: Remastered",slow;status-playable;nvdec,playable,2022-09-30 13:49:28.000 +0100C1500B82E000,"The World Ends With You -Final Remix-",status-playable;ldn-untested,playable,2022-07-09 01:11:21.000 +0100E6200D56E000,"The World Next Door",status-playable,playable,2022-09-21 14:15:23.000 +,"Thea: The Awakening",status-playable,playable,2021-01-18 15:08:47.000 +010024201834A000,"THEATRHYTHM FINAL BAR LINE",status-playable,playable,2023-02-19 19:58:57.000 +010081B01777C000,"THEATRHYTHM FINAL BAR LINE",status-ingame;Incomplete,ingame,2024-08-05 14:24:55.000 +01001C2010D08000,"They Bleed Pixels",gpu;status-ingame,ingame,2024-08-09 05:52:18.000 +,"They Came From the Sky",status-playable,playable,2020-06-12 16:38:19.000 +0100CE700F62A000,"Thief of Thieves",status-nothing;crash;loader-allocator,nothing,2021-11-03 07:16:30.000 +0100CE400E34E000,"Thief Simulator",status-playable,playable,2023-04-22 04:39:11.000 +01009BD003B36000,"Thimbleweed Park",status-playable,playable,2022-08-24 11:15:31.000 +0100F2300A5DA000,"Think of the Children",deadlock;status-menus,menus,2021-11-23 09:04:45.000 +0100066004D68000,"This Is the Police",status-playable,playable,2022-08-24 11:37:05.000 +01004C100A04C000,"This Is the Police 2",status-playable,playable,2022-08-24 11:49:17.000 +,"This Strange Realm of Mine",status-playable,playable,2020-08-28 12:07:24.000 +0100A8700BC2A000,"This War of Mine: Complete Edition",gpu;status-ingame;32-bit;nvdec,ingame,2022-08-24 12:00:44.000 +,"THOTH",status-playable,playable,2020-08-05 18:35:28.000 +0100E910103B4000,"Thronebreaker: The Witcher Tales",nvdec;status-playable,playable,2021-06-03 16:40:15.000 +01006F6002840000,"Thumper",gpu;status-ingame,ingame,2024-08-12 02:41:07.000 +01000AC011588000,"Thy Sword",status-ingame;crash,ingame,2022-09-30 16:43:14.000 +,"Tick Tock: A Tale for Two",status-menus,menus,2020-07-14 14:49:38.000 +0100B6D00C2DE000,"Tied Together",nvdec;status-playable,playable,2021-04-10 14:03:46.000 +,"Timber Tennis Versus",online;status-playable,playable,2020-10-03 17:07:15.000 +01004C500B698000,"Time Carnage",status-playable,playable,2021-06-16 17:57:28.000 +0100F770045CA000,"Time Recoil",status-playable,playable,2022-08-24 12:44:03.000 +0100DD300CF3A000,"Timespinner",gpu;status-ingame,ingame,2022-08-09 09:39:11.000 +0100393013A10000,"Timothy and the Mysterious Forest",gpu;slow;status-ingame,ingame,2021-06-02 00:42:11.000 +,"Tin & Kuna",status-playable,playable,2020-11-17 12:16:12.000 +,"Tiny Gladiators",status-playable,playable,2020-12-14 00:09:43.000 +010061A00AE64000,"Tiny Hands Adventure",status-playable,playable,2022-08-24 16:07:48.000 +010074800741A000,"TINY METAL",UE4;gpu;nvdec;status-ingame,ingame,2021-03-05 17:11:57.000 +01005D0011A40000,"Tiny Racer",status-playable,playable,2022-10-07 11:13:03.000 +010002401AE94000,"Tiny Thor",gpu;status-ingame,ingame,2024-07-26 08:37:35.000 +0100A73016576000,"Tinykin",gpu;status-ingame,ingame,2023-06-18 12:12:24.000 +0100FE801185E000,"Titan Glory",status-boots,boots,2022-10-07 11:36:40.000 +0100605008268000,"Titan Quest",status-playable;nvdec;online-broken,playable,2022-08-19 21:54:15.000 +,"Titans Pinball",slow;status-playable,playable,2020-06-09 16:53:52.000 +010019500DB1E000,"Tlicolity Eyes - twinkle showtime -",gpu;status-boots,boots,2021-05-29 19:43:44.000 +,"To the Moon",status-playable,playable,2021-03-20 15:33:38.000 +,"Toast Time: Smash Up!",crash;services;status-menus,menus,2020-04-03 12:26:59.000 +,"Toby: The Secret Mine",nvdec;status-playable,playable,2021-01-06 09:22:33.000 +,"ToeJam & Earl: Back in the Groove",status-playable,playable,2021-01-06 22:56:58.000 +0100B5E011920000,"TOHU",slow;status-playable,playable,2021-02-08 15:40:44.000 +,"Toki",nvdec;status-playable,playable,2021-01-06 19:59:23.000 +01003E500F962000,"TOKYO DARK - REMEMBRANCE -",nvdec;status-playable,playable,2021-06-10 20:09:49.000 +0100A9400C9C2000,"Tokyo Mirage Sessions #FE Encore",32-bit;status-playable;nvdec,playable,2022-07-07 09:41:07.000 +0100E2E00CB14000,"Tokyo School Life",status-playable,playable,2022-09-16 20:25:54.000 +010024601BB16000,"Tomb Raider I-III Remastered",gpu;status-ingame;opengl,ingame,2024-09-27 12:32:04.000 +0100D7F01E49C000,"Tomba! Special Edition",services-horizon;status-nothing,nothing,2024-09-15 21:59:54.000 +0100D400100F8000,"Tonight we Riot",status-playable,playable,2021-02-26 15:55:09.000 +0100CC00102B4000,"TONY HAWK'S™ PRO SKATER™ 1 + 2",gpu;status-ingame;Needs Update,ingame,2024-09-24 08:18:14.000 +,"Tools Up!",crash;status-ingame,ingame,2020-07-21 12:58:17.000 +01009EA00E2B8000,"Toon War",status-playable,playable,2021-06-11 16:41:53.000 +,"Torchlight 2",status-playable,playable,2020-07-27 14:18:37.000 +010075400DDB8000,"Torchlight III",status-playable;nvdec;online-broken;UE4,playable,2022-10-14 22:20:17.000 +01007AF011732000,"TORICKY-S",deadlock;status-menus,menus,2021-11-25 08:53:36.000 +,"Torn Tales - Rebound Edition",status-playable,playable,2020-11-01 14:11:59.000 +0100A64010D48000,"Total Arcade Racing",status-playable,playable,2022-11-12 15:12:48.000 +0100512010728000,"Totally Reliable Delivery Service",status-playable;online-broken,playable,2024-09-27 19:32:22.000 +01004E900B082000,"Touhou Genso Wanderer RELOADED",gpu;status-ingame;nvdec,ingame,2022-08-25 11:57:36.000 +,"Touhou Kobuto V: Burst Battle",status-playable,playable,2021-01-11 15:28:58.000 +,"Touhou Spell Bubble",status-playable,playable,2020-10-18 11:43:43.000 +,"Tower of Babel",status-playable,playable,2021-01-06 17:05:15.000 +,"Tower of Time",gpu;nvdec;status-ingame,ingame,2020-07-03 11:11:12.000 +,"TowerFall",status-playable,playable,2020-05-16 18:58:07.000 +,"Towertale",status-playable,playable,2020-10-15 13:56:58.000 +010049E00BA34000,"Townsmen - A Kingdom Rebuilt",status-playable;nvdec,playable,2022-10-14 22:48:59.000 +01009FF00A160000,"Toy Stunt Bike: Tiptop's Trials",UE4;status-playable,playable,2021-04-10 13:56:34.000 +0100192010F5A000,"Tracks - Toybox Edition",UE4;crash;status-nothing,nothing,2021-02-08 15:19:18.000 +0100BCA00843A000,"Trailblazers",status-playable,playable,2021-03-02 20:40:49.000 +010009F004E66000,"Transcripted",status-playable,playable,2022-08-25 12:13:11.000 +01005E500E528000,"TRANSFORMERS: BATTLEGROUNDS",online;status-playable,playable,2021-06-17 18:08:19.000 +,"Transistor",status-playable,playable,2020-10-22 11:28:02.000 +0100A8D010BFA000,"Travel Mosaics 2: Roman Holiday",status-playable,playable,2021-05-26 12:33:16.000 +0100102010BFC000,"Travel Mosaics 3: Tokyo Animated",status-playable,playable,2021-05-26 12:06:27.000 +010096D010BFE000,"Travel Mosaics 4: Adventures in Rio",status-playable,playable,2021-05-26 11:54:58.000 +01004C4010C00000,"Travel Mosaics 5: Waltzing Vienna",status-playable,playable,2021-05-26 11:49:35.000 +0100D520119D6000,"Travel Mosaics 6: Christmas Around the World",status-playable,playable,2021-05-26 00:52:47.000 +,"Travel Mosaics 7: Fantastic Berlin -",status-playable,playable,2021-05-22 18:37:34.000 +01007DB00A226000,"Travel Mosaics: A Paris Tour",status-playable,playable,2021-05-26 12:42:26.000 +010011600C946000,"Travis Strikes Again: No More Heroes",status-playable;nvdec;UE4,playable,2022-08-25 12:36:38.000 +,"Treadnauts",status-playable,playable,2021-01-10 14:57:41.000 +0100D7800E9E0000,"Trials of Mana",status-playable;UE4,playable,2022-09-30 21:50:37.000 +0100E1D00FBDE000,"Trials of Mana Demo",status-playable;nvdec;UE4;demo;vulkan-backend-bug,playable,2022-09-26 18:00:02.000 +01003E800A102000,"Trials Rising",status-playable,playable,2024-02-11 01:36:39.000 +0100CC80140F8000,"TRIANGLE STRATEGY",gpu;status-ingame;Needs Update;UE4;vulkan-backend-bug,ingame,2024-09-25 20:48:37.000 +0100D9000A930000,"Trine",ldn-untested;nvdec;status-playable,playable,2021-06-03 11:28:15.000 +010064E00A932000,"Trine 2",nvdec;status-playable,playable,2021-06-03 11:45:20.000 +0100DEC00A934000,"Trine 3: The Artifacts of Power",ldn-untested;online;status-playable,playable,2021-06-03 12:01:24.000 +010055E00CA68000,"Trine 4: The Nightmare Prince",gpu;status-nothing,nothing,2025-01-07 05:47:46.000 +01002D7010A54000,"Trinity Trigger",status-ingame;crash,ingame,2023-03-03 03:09:09.000 +0100868013FFC000,"Trivial Pursuit Live! 2",status-boots,boots,2022-12-19 00:04:33.000 +0100F78002040000,"Troll and I",gpu;nvdec;status-ingame,ingame,2021-06-04 16:58:50.000 +,"Trollhunters: Defenders of Arcadia",gpu;nvdec;status-ingame,ingame,2020-11-30 13:27:09.000 +0100FBE0113CC000,"Tropico 6",status-playable;nvdec;UE4,playable,2022-10-14 23:21:03.000 +0100D06018DCA000,"Trouble Witches Final! Episode 01: Daughters of Amalgam",status-playable,playable,2024-04-08 15:08:11.000 +,"Troubleshooter",UE4;crash;status-nothing,nothing,2020-10-04 13:46:50.000 +,"Trover Saves the Universe",UE4;crash;status-nothing,nothing,2020-10-03 10:25:27.000 +0100E6300D448000,"Truberbrook",status-playable,playable,2021-06-04 17:08:00.000 +0100F2100AA5C000,"Truck & Logistics Simulator",status-playable,playable,2021-06-11 13:29:08.000 +0100CB50107BA000,"Truck Driver",status-playable;online-broken,playable,2022-10-20 17:42:33.000 +,"True Fear: Forsaken Souls - Part 1",nvdec;status-playable,playable,2020-12-15 21:39:52.000 +,"TT Isle of Man",nvdec;status-playable,playable,2020-06-22 12:25:13.000 +010000400F582000,"TT Isle of Man 2",gpu;status-ingame;nvdec;online-broken,ingame,2022-09-30 22:13:05.000 +,"TTV2",status-playable,playable,2020-11-27 13:21:36.000 +,"Tumblestone",status-playable,playable,2021-01-07 17:49:20.000 +010085500D5F6000,"Turok",gpu;status-ingame,ingame,2021-06-04 13:16:24.000 +0100CDC00D8D6000,"Turok 2: Seeds of Evil",gpu;status-ingame;vulkan,ingame,2022-09-12 17:50:05.000 +,"Turrican Flashback - 01004B0130C8000",status-playable;audout,playable,2021-08-30 10:07:56.000 +,"TurtlePop: Journey to Freedom",status-playable,playable,2020-06-12 17:45:39.000 +0100047009742000,"Twin Robots: Ultimate Edition",status-playable;nvdec,playable,2022-08-25 14:24:03.000 +010031200E044000,"Two Point Hospital",status-ingame;crash;nvdec,ingame,2022-09-22 11:22:23.000 +,"TY the Tasmanian Tiger",32-bit;crash;nvdec;status-menus,menus,2020-12-17 21:15:00.000 +010073A00C4B2000,"Tyd wag vir Niemand",status-playable,playable,2021-03-02 13:39:53.000 +,"Type:Rider",status-playable,playable,2021-01-06 13:12:55.000 +,"UBERMOSH:SANTICIDE",status-playable,playable,2020-11-27 15:05:01.000 +,"Ubongo - Deluxe Edition",status-playable,playable,2021-02-04 21:15:01.000 +010079000B56C000,"UglyDolls: An Imperfect Adventure",status-playable;nvdec;UE4,playable,2022-08-25 14:42:16.000 +010048901295C000,"Ultimate Fishing Simulator",status-playable,playable,2021-06-16 18:38:23.000 +,"Ultimate Racing 2D",status-playable,playable,2020-08-05 17:27:09.000 +010045200A1C2000,"Ultimate Runner",status-playable,playable,2022-08-29 12:52:40.000 +01006B601117E000,"Ultimate Ski Jumping 2020",online;status-playable,playable,2021-03-02 20:54:11.000 +01002D4012222000,"Ultra Hat Dimension",services;audio;status-menus,menus,2021-11-18 09:05:20.000 +,"Ultra Hyperball",status-playable,playable,2021-01-06 10:09:55.000 +01007330027EE000,"Ultra Street Fighter II: The Final Challengers",status-playable;ldn-untested,playable,2021-11-25 07:54:58.000 +01006A300BA2C000,"Umineko no Naku Koro ni Saku - うみねこのなく頃に咲 ~猫箱と夢想の交響曲~",status-playable;audout,playable,2023-05-04 17:25:23.000 +0100592005164000,"Unbox: Newbie's Adventure",status-playable;UE4,playable,2022-08-29 13:12:56.000 +01002D900C5E4000,"Uncanny Valley",nvdec;status-playable,playable,2021-06-04 13:28:45.000 +010076F011F54000,"Undead and Beyond",status-playable;nvdec,playable,2022-10-04 09:11:18.000 +01008F3013E4E000,"Under Leaves",status-playable,playable,2021-05-22 18:13:58.000 +010080B00AD66000,"Undertale",status-playable,playable,2022-08-31 17:31:46.000 +01008F80049C6000,"Unepic",status-playable,playable,2024-01-15 17:03:00.000 +,"UnExplored - Unlocked Edition",status-playable,playable,2021-01-06 10:02:16.000 +,"Unhatched",status-playable,playable,2020-12-11 12:11:09.000 +010069401ADB8000,"Unicorn Overlord",status-playable,playable,2024-09-27 14:04:32.000 +,"Unit 4",status-playable,playable,2020-12-16 18:54:13.000 +,"Unknown Fate",slow;status-ingame,ingame,2020-10-15 12:27:42.000 +,"Unlock the King",status-playable,playable,2020-09-01 13:58:27.000 +0100A3E011CB0000,"Unlock the King 2",status-playable,playable,2021-06-15 20:43:55.000 +01005AA00372A000,"UNO",status-playable;nvdec;ldn-untested,playable,2022-07-28 14:49:47.000 +0100E5D00CC0C000,"Unravel TWO",status-playable;nvdec,playable,2024-05-23 15:45:05.000 +,"Unruly Heroes",status-playable,playable,2021-01-07 18:09:31.000 +0100B410138C0000,"Unspottable",status-playable,playable,2022-10-25 19:28:49.000 +,"Untitled Goose Game",status-playable,playable,2020-09-26 13:18:06.000 +0100E49013190000,"Unto The End",gpu;status-ingame,ingame,2022-10-21 11:13:29.000 +,"Urban Flow",services;status-playable,playable,2020-07-05 12:51:47.000 +010054F014016000,"Urban Street Fighting",status-playable,playable,2021-02-20 19:16:36.000 +01001B10068EC000,"Urban Trial Playground",UE4;nvdec;online;status-playable,playable,2021-03-25 20:56:51.000 +0100A2500EB92000,"Urban Trial Tricky",status-playable;nvdec;UE4,playable,2022-12-06 13:07:56.000 +01007C0003AEC000,"Use Your Words",status-menus;nvdec;online-broken,menus,2022-08-29 17:22:10.000 +0100D4300EBF8000,"Uta no Prince-sama Amazing Aria & Sweet Serenade LOVE",status-nothing;crash;Needs More Attention;Needs Update,nothing,2022-02-09 08:57:44.000 +010024200E00A000,"Uta no☆Prince-sama♪ Repeat Love",status-playable;nvdec,playable,2022-12-09 09:21:51.000 +,"Utopia 9 - A Volatile Vacation",nvdec;status-playable,playable,2020-12-16 17:06:42.000 +010064400B138000,"V-Rally 4",gpu;nvdec;status-ingame,ingame,2021-06-07 19:37:31.000 +0100A6700D66E000,"VA-11 HALL-A",status-playable,playable,2021-02-26 15:05:34.000 +,"Vaccine",nvdec;status-playable,playable,2021-01-06 01:02:07.000 +010089700F30C000,"Valfaris",status-playable,playable,2022-09-16 21:37:24.000 +0100CAF00B744000,"Valkyria Chronicles",status-ingame;32-bit;crash;nvdec,ingame,2022-11-23 20:03:32.000 +01005C600AC68000,"Valkyria Chronicles 4",audout;nvdec;status-playable,playable,2021-06-03 18:12:25.000 +0100FBD00B91E000,"Valkyria Chronicles 4 Demo",slow;status-ingame;demo,ingame,2022-08-29 20:39:07.000 +0100E0E00B108000,"Valley",status-playable;nvdec,playable,2022-09-28 19:27:58.000 +010089A0197E4000,"Vampire Survivors",status-ingame,ingame,2024-06-17 09:57:38.000 +01000BD00CE64000,"Vampyr",status-playable;nvdec;UE4,playable,2022-09-16 22:15:51.000 +01007C500D650000,"Vandals",status-playable,playable,2021-01-27 21:45:46.000 +010030F00CA1E000,"Vaporum",nvdec;status-playable,playable,2021-05-28 14:25:33.000 +010045C0109F2000,"VARIABLE BARRICADE NS",status-playable;nvdec,playable,2022-02-26 15:50:13.000 +0100FE200AF48000,"VASARA Collection",nvdec;status-playable,playable,2021-02-28 15:26:10.000 +,"Vasilis",status-playable,playable,2020-09-01 15:05:35.000 +01009CD003A0A000,"Vegas Party",status-playable,playable,2021-04-14 19:21:41.000 +010098400E39E000,"Vektor Wars",status-playable;online-broken;vulkan-backend-bug,playable,2022-10-04 09:23:46.000 +01003A8018E60000,"Vengeful Guardian: Moonrider",deadlock;status-boots,boots,2024-03-17 23:35:37.000 +010095B00DBC8000,"Venture Kid",crash;gpu;status-ingame,ingame,2021-04-18 16:33:17.000 +,"Vera Blanc: Full Moon",audio;status-playable,playable,2020-12-17 12:09:30.000 +0100379013A62000,"Very Very Valet",status-playable;nvdec,playable,2022-11-12 15:25:51.000 +01006C8014DDA000,"Very Very Valet Demo - 01006C8014DDA000",status-boots;crash;Needs Update;demo,boots,2022-11-12 15:26:13.000 +010057B00712C000,"Vesta",status-playable;nvdec,playable,2022-08-29 21:03:39.000 +0100E81007A06000,"Victor Vran Overkill Edition",gpu;deadlock;status-ingame;nvdec;opengl,ingame,2022-08-30 11:46:56.000 +01005880063AA000,"Violett",nvdec;status-playable,playable,2021-01-28 13:09:36.000 +010037900CB1C000,"Viviette",status-playable,playable,2021-06-11 15:33:40.000 +0100D010113A8000,"Void Bastards",status-playable,playable,2022-10-15 00:04:19.000 +0100FF7010E7E000,"void* tRrLM(); //Void Terrarium",gpu;status-ingame;Needs Update;regression,ingame,2023-02-10 01:13:25.000 +010078D0175EE000,"void* tRrLM2(); //Void Terrarium 2",status-playable,playable,2023-12-21 11:00:41.000 +,"Volgarr the Viking",status-playable,playable,2020-12-18 15:25:50.000 +0100A7900E79C000,"Volta-X",status-playable;online-broken,playable,2022-10-07 12:20:51.000 +01004D8007368000,"Vostok, Inc.",status-playable,playable,2021-01-27 17:43:59.000 +0100B1E0100A4000,"Voxel Galaxy",status-playable,playable,2022-09-28 22:45:02.000 +0100AFA011068000,"Voxel Pirates",status-playable,playable,2022-09-28 22:55:02.000 +0100BFB00D1F4000,"Voxel Sword",status-playable,playable,2022-08-30 14:57:27.000 +01004E90028A2000,"Vroom in the Night Sky",status-playable;Needs Update;vulkan-backend-bug,playable,2023-02-20 02:32:29.000 +0100C7C00AE6C000,"VSR: Void Space Racing",status-playable,playable,2021-01-27 14:08:59.000 +,"VtM Coteries of New York",status-playable,playable,2020-10-04 14:55:22.000 +0100B130119D0000,"Waifu Uncovered",status-ingame;crash,ingame,2023-02-27 01:17:46.000 +,"Wanba Warriors",status-playable,playable,2020-10-04 17:56:22.000 +,"Wanderjahr TryAgainOrWalkAway",status-playable,playable,2020-12-16 09:46:04.000 +0100B27010436000,"Wanderlust Travel Stories",status-playable,playable,2021-04-07 16:09:12.000 +0100F8A00853C000,"Wandersong",nvdec;status-playable,playable,2021-06-04 15:33:34.000 +0100D67013910000,"Wanna Survive",status-playable,playable,2022-11-12 21:15:43.000 +01004FA01391A000,"War Of Stealth - assassin",status-playable,playable,2021-05-22 17:34:38.000 +010049500DE56000,"War Tech Fighters",status-playable;nvdec,playable,2022-09-16 22:29:31.000 +010084D00A134000,"War Theatre",gpu;status-ingame,ingame,2021-06-07 19:42:45.000 +0100B6B013B8A000,"War Truck Simulator",status-playable,playable,2021-01-31 11:22:54.000 +,"War-Torn Dreams",crash;status-nothing,nothing,2020-10-21 11:36:16.000 +,"WARBORN",status-playable,playable,2020-06-25 12:36:47.000 +010056901285A000,"Wardogs: Red's Return",status-playable,playable,2022-11-13 15:29:01.000 +01000F0002BB6000,"WarGroove",status-playable;online-broken,playable,2022-08-31 10:30:45.000 +0100C6000EEA8000,"Warhammer 40,000: Mechanicus",nvdec;status-playable,playable,2021-06-13 10:46:38.000 +0100E5600D7B2000,"Warhammer 40,000: Space Wolf",status-playable;online-broken,playable,2022-09-20 21:11:20.000 +010031201307A000,"Warhammer Age of Sigmar: Storm Ground",status-playable;nvdec;online-broken;UE4,playable,2022-11-13 15:46:14.000 +,"Warhammer Quest 2",status-playable,playable,2020-08-04 15:28:03.000 +0100563010E0C000,"WarioWare: Get It Together!",gpu;status-ingame;opengl-backend-bug,ingame,2024-04-23 01:04:56.000 +010045B018EC2000,"Warioware: Move IT!",status-playable,playable,2023-11-14 00:23:51.000 +,"Warlocks 2: God Slayers",status-playable,playable,2020-12-16 17:36:50.000 +,"Warp Shift",nvdec;status-playable,playable,2020-12-15 14:48:48.000 +,"Warparty",nvdec;status-playable,playable,2021-01-27 18:26:32.000 +010032700EAC4000,"WarriOrb",UE4;status-playable,playable,2021-06-17 15:45:14.000 +0100E8500AD58000,"WARRIORS OROCHI 4 ULTIMATE",status-playable;nvdec;online-broken,playable,2024-08-07 01:50:37.000 +,"Wartile Complete Edition",UE4;crash;gpu;status-menus,menus,2020-12-11 21:56:10.000 +010039A00BC64000,"Wasteland 2: Director's Cut",nvdec;status-playable,playable,2021-01-27 13:34:11.000 +,"Water Balloon Mania",status-playable,playable,2020-10-23 20:20:59.000 +0100BA200C378000,"Way of the Passive Fist",gpu;status-ingame,ingame,2021-02-26 21:07:06.000 +,"We should talk.",crash;status-nothing,nothing,2020-08-03 12:32:36.000 +,"Welcome to Hanwell",UE4;crash;status-boots,boots,2020-08-03 11:54:57.000 +0100D7F010B94000,"Welcome to Primrose Lake",status-playable,playable,2022-10-21 11:30:57.000 +,"Wenjia",status-playable,playable,2020-06-08 11:38:30.000 +010031B00A4E8000,"West of Loathing",status-playable,playable,2021-01-28 12:35:19.000 +010038900DFE0000,"What Remains of Edith Finch",slow;status-playable;UE4,playable,2022-08-31 19:57:59.000 +010033600ADE6000,"Wheel of Fortune [010033600ADE6000]",status-boots;crash;Needs More Attention;nvdec,boots,2023-11-12 20:29:24.000 +0100DFC00405E000,"Wheels of Aurelia",status-playable,playable,2021-01-27 21:59:25.000 +010027D011C9C000,"Where Angels Cry",gpu;status-ingame;nvdec,ingame,2022-09-30 22:24:47.000 +0100FDB0092B4000,"Where Are My Friends?",status-playable,playable,2022-09-21 14:39:26.000 +,"Where the Bees Make Honey",status-playable,playable,2020-07-15 12:40:49.000 +,"Whipsey and the Lost Atlas",status-playable,playable,2020-06-23 20:24:14.000 +010015A00AF1E000,"Whispering Willows",status-playable;nvdec,playable,2022-09-30 22:33:05.000 +,"Who Wants to Be a Millionaire?",crash;status-nothing,nothing,2020-12-11 20:22:42.000 +0100C7800CA06000,"Widget Satchel",status-playable,playable,2022-09-16 22:41:07.000 +0100CFC00A1D8000,"WILD GUNS Reloaded",status-playable,playable,2021-01-28 12:29:05.000 +010071F00D65A000,"Wilmot's Warehouse",audio;gpu;status-ingame,ingame,2021-06-02 17:24:32.000 +,"WINDJAMMERS",online;status-playable,playable,2020-10-13 11:24:25.000 +010059900BA3C000,"Windscape",status-playable,playable,2022-10-21 11:49:42.000 +,"Windstorm",UE4;gpu;nvdec;status-ingame,ingame,2020-12-22 13:17:48.000 +0100D6800CEAC000,"Windstorm - Ari's Arrival",UE4;status-playable,playable,2021-06-07 19:33:19.000 +,"Wing of Darkness - 010035B012F2000",status-playable;UE4,playable,2022-11-13 16:03:51.000 +0100A4A015FF0000,"Winter Games 2023",deadlock;status-menus,menus,2023-11-07 20:47:36.000 +010012A017F18800,"Witch On The Holy Night",status-playable,playable,2023-03-06 23:28:11.000 +0100454012E32000,"Witch Spring 3 Re:Fine -The Story of the Marionette Witch Eirudy-",status-ingame;crash,ingame,2021-08-08 11:56:18.000 +01002FC00C6D0000,"Witch Thief",status-playable,playable,2021-01-27 18:16:07.000 +010061501904E000,"Witch's Garden",gpu;status-ingame;crash;vulkan-backend-bug;opengl-backend-bug,ingame,2023-01-11 02:11:24.000 +,"Witcheye",status-playable,playable,2020-12-14 22:56:08.000 +0100522007AAA000,"Wizard of Legend",status-playable,playable,2021-06-07 12:20:46.000 +,"Wizards of Brandel",status-nothing,nothing,2020-10-14 15:52:33.000 +0100C7600E77E000,"Wizards: Wand of Epicosity",status-playable,playable,2022-10-07 12:32:06.000 +01009040091E0000,"Wolfenstein II The New Colossus",gpu;status-ingame,ingame,2024-04-05 05:39:46.000 +01003BD00CAAE000,"Wolfenstein: Youngblood",status-boots;online-broken,boots,2024-07-12 23:49:20.000 +,"Wonder Blade",status-playable,playable,2020-12-11 17:55:31.000 +0100B49016FF0000,"Wonder Boy Anniversary Collection",deadlock;status-nothing,nothing,2023-04-20 16:01:48.000 +0100EB2012E36000,"Wonder Boy Asha in Monster World [ ワンダーボーイ アーシャ・イン・モンスターワールド ]",status-nothing;crash,nothing,2021-11-03 08:45:06.000 +0100A6300150C000,"Wonder Boy: The Dragon's Trap",status-playable,playable,2021-06-25 04:53:21.000 +0100F5D00C812000,"Wondershot",status-playable,playable,2022-08-31 21:05:31.000 +,"Woodle Tree 2",gpu;slow;status-ingame,ingame,2020-06-04 18:44:00.000 +0100288012966000,"Woodsalt",status-playable,playable,2021-04-06 17:01:48.000 +,"Wordify",status-playable,playable,2020-10-03 09:01:07.000 +,"World Conqueror X",status-playable,playable,2020-12-22 16:10:29.000 +01008E9007064000,"World Neverland",status-playable,playable,2021-01-28 17:44:23.000 +,"World of Final Fantasy Maxima",status-playable,playable,2020-06-07 13:57:23.000 +010009E001D90000,"World of Goo",gpu;status-boots;32-bit;crash;regression,boots,2024-04-12 05:52:14.000 +010061F01DB7C800,"World of Goo 2",status-boots,boots,2024-08-08 22:52:49.000 +,"World Soccer Pinball",status-playable,playable,2021-01-06 00:37:02.000 +,"Worldend Syndrome",status-playable,playable,2021-01-03 14:16:32.000 +010000301025A000,"Worlds of Magic: Planar Conquest",status-playable,playable,2021-06-12 12:51:28.000 +01009CD012CC0000,"Worm Jazz",gpu;services;status-ingame;UE4;regression,ingame,2021-11-10 10:33:04.000 +01001AE005166000,"Worms W.M.D",gpu;status-boots;crash;nvdec;ldn-untested,boots,2023-09-16 21:42:59.000 +010037500C4DE000,"Worse Than Death",status-playable,playable,2021-06-11 16:05:40.000 +01006F100EB16000,"Woven",nvdec;status-playable,playable,2021-06-02 13:41:08.000 +010087800DCEA000,"WRC 8 FIA World Rally Championship",status-playable;nvdec,playable,2022-09-16 23:03:36.000 +01001A0011798000,"WRC 9 The Official Game",gpu;slow;status-ingame;nvdec,ingame,2022-10-25 19:47:39.000 +0100DC0012E48000,"Wreckfest",status-playable,playable,2023-02-12 16:13:00.000 +0100C5D00EDB8000,"Wreckin' Ball Adventure",status-playable;UE4,playable,2022-09-12 18:56:28.000 +010033700418A000,"Wulverblade",nvdec;status-playable,playable,2021-01-27 22:29:05.000 +01001C400482C000,"Wunderling",audio;status-ingame;crash,ingame,2022-09-10 13:20:12.000 +,"Wurroom",status-playable,playable,2020-10-07 22:46:21.000 +010081700EDF4000,"WWE 2K Battlegrounds",status-playable;nvdec;online-broken;UE4,playable,2022-10-07 12:44:40.000 +010009800203E000,"WWE 2K18",status-playable;nvdec,playable,2023-10-21 17:22:01.000 +,"X-Morph: Defense",status-playable,playable,2020-06-22 11:05:31.000 +0100D0B00FB74000,"XCOM 2 Collection",gpu;status-ingame;crash,ingame,2022-10-04 09:38:30.000 +0100CC9015360000,"XEL",gpu;status-ingame,ingame,2022-10-03 10:19:39.000 +0100E95004038000,"Xenoblade Chronicles 2",deadlock;status-ingame;amd-vendor-bug,ingame,2024-03-28 14:31:41.000 +0100C9F009F7A000,"Xenoblade Chronicles 2: Torna - The Golden Country",slow;status-playable;nvdec,playable,2023-01-28 16:47:28.000 +010074F013262000,"Xenoblade Chronicles 3",gpu;status-ingame;crash;nvdec;vulkan-backend-bug;amd-vendor-bug,ingame,2024-08-06 19:56:44.000 +0100FF500E34A000,"Xenoblade Chronicles Definitive Edition",status-playable;nvdec,playable,2024-05-04 20:12:41.000 +010028600BA16000,"Xenon Racer",status-playable;nvdec;UE4,playable,2022-08-31 22:05:30.000 +010064200C324000,"Xenon Valkyrie+",status-playable,playable,2021-06-07 20:25:53.000 +0100928005BD2000,"Xenoraid",status-playable,playable,2022-09-03 13:01:10.000 +01005B5009364000,"Xeodrifter",status-playable,playable,2022-09-03 13:18:39.000 +01006FB00DB02000,"Yaga",status-playable;nvdec,playable,2022-09-16 23:17:17.000 +,"YesterMorrow",crash;status-ingame,ingame,2020-12-17 17:15:25.000 +,"Yet Another Zombie Defense HD",status-playable,playable,2021-01-06 00:18:39.000 +,"YGGDRA UNION We’ll Never Fight Alone",status-playable,playable,2020-04-03 02:20:47.000 +0100634008266000,"YIIK: A Postmodern RPG",status-playable,playable,2021-01-28 13:38:37.000 +0100C0000CEEA000,"Yo kai watch 1 for Nintendo Switch",gpu;status-ingame;opengl,ingame,2024-05-28 11:11:49.000 +010086C00AF7C000,"Yo-Kai Watch 4++",status-playable,playable,2024-06-18 20:21:44.000 +010002D00632E000,"Yoku's Island Express",status-playable;nvdec,playable,2022-09-03 13:59:02.000 +0100F47016F26000,"Yomawari 3",status-playable,playable,2022-05-10 08:26:51.000 +010012F00B6F2000,"Yomawari: The Long Night Collection",status-playable,playable,2022-09-03 14:36:59.000 +0100CC600ABB2000,"Yonder: The Cloud Catcher Chronicles",status-playable,playable,2021-01-28 14:06:25.000 +0100BE50042F6000,"Yono and the Celestial Elephants",status-playable,playable,2021-01-28 18:23:58.000 +0100F110029C8000,"Yooka-Laylee",status-playable,playable,2021-01-28 14:21:45.000 +010022F00DA66000,"Yooka-Laylee and the Impossible Lair",status-playable,playable,2021-03-05 17:32:21.000 +01006000040C2000,"Yoshi's Crafted World",gpu;status-ingame;audout,ingame,2021-08-30 13:25:51.000 +,"Yoshi's Crafted World Demo Version",gpu;status-boots;status-ingame,boots,2020-12-16 14:57:40.000 +,"Yoshiwara Higanbana Kuon no Chigiri",nvdec;status-playable,playable,2020-10-17 19:14:46.000 +01003A400C3DA800,"YouTube",status-playable,playable,2024-06-08 05:24:10.000 +00100A7700CCAA40,"Youtubers Life00",status-playable;nvdec,playable,2022-09-03 14:56:19.000 +0100E390124D8000,"Ys IX: Monstrum Nox",status-playable,playable,2022-06-12 04:14:42.000 +0100F90010882000,"Ys Origin",status-playable;nvdec,playable,2024-04-17 05:07:33.000 +01007F200B0C0000,"Ys VIII: Lacrimosa of Dana",status-playable;nvdec,playable,2023-08-05 09:26:41.000 +010022400BE5A000,"Yu-Gi-Oh! Legacy of the Duelist: Link Evolution!",status-playable,playable,2024-09-27 21:48:43.000 +01002D60188DE000,"Yu-Gi-Oh! Rush Duel: Dawn of the Battle Royale!! Let's Go! Go Rush!!",status-ingame;crash,ingame,2023-03-17 01:54:01.000 +010037D00DBDC000,"YU-NO: A GIRL WHO CHANTS LOVE AT THE BOUND OF THIS WORLD.",nvdec;status-playable,playable,2021-01-26 17:03:52.000 +0100B56011502000,"Yumeutsutsu Re:After",status-playable,playable,2022-11-20 16:09:06.000 +,"Yunohana Spring! - Mellow Times -",audio;crash;status-menus,menus,2020-09-27 19:27:40.000 +,"Yuppie Psycho: Executive Edition",crash;status-ingame,ingame,2020-12-11 10:37:06.000 +0100FC900963E000,"Yuri",status-playable,playable,2021-06-11 13:08:50.000 +010092400A678000,"Zaccaria Pinball",status-playable;online-broken,playable,2022-09-03 15:44:28.000 +,"Zarvot - 0100E7900C40000",status-playable,playable,2021-01-28 13:51:36.000 +,"ZenChess",status-playable,playable,2020-07-01 22:28:27.000 +,"Zenge",status-playable,playable,2020-10-22 13:23:57.000 +0100057011E50000,"Zengeon",services-horizon;status-boots;crash,boots,2024-04-29 15:43:07.000 +0100AAC00E692000,"Zenith",status-playable,playable,2022-09-17 09:57:02.000 +,"ZERO GUNNER 2",status-playable,playable,2021-01-04 20:17:14.000 +01004B001058C000,"Zero Strain",services;status-menus;UE4,menus,2021-11-10 07:48:32.000 +,"Zettai kaikyu gakuen",gpu;nvdec;status-ingame,ingame,2020-08-25 15:15:54.000 +0100D7B013DD0000,"Ziggy The Chaser",status-playable,playable,2021-02-04 20:34:27.000 +010086700EF16000,"ZikSquare",gpu;status-ingame,ingame,2021-11-06 02:02:48.000 +010069C0123D8000,"Zoids Wild Blast Unleashed",status-playable;nvdec,playable,2022-10-15 11:26:59.000 +,"Zombie Army Trilogy",ldn-untested;online;status-playable,playable,2020-12-16 12:02:28.000 +,"Zombie Driver",nvdec;status-playable,playable,2020-12-14 23:15:10.000 +,"ZOMBIE GOLD RUSH",online;status-playable,playable,2020-09-24 12:56:08.000 +,"Zombie's Cool",status-playable,playable,2020-12-17 12:41:26.000 +01000E5800D32C00,"Zombieland: Double Tap - Road Trip0",status-playable,playable,2022-09-17 10:08:45.000 +,"Zombillie",status-playable,playable,2020-07-23 17:42:23.000 +01001EE00A6B0000,"Zotrix: Solar Division",status-playable,playable,2021-06-07 20:34:05.000 +,"この世の果てで恋を唄う少女YU-NO",audio;status-ingame,ingame,2021-01-22 07:00:16.000 +,"スーパーファミコン Nintendo Switch Online",slow;status-ingame,ingame,2020-03-14 05:48:38.000 +01000BB01CB8A000,"トラブル・マギア ~訳アリ少女は未来を勝ち取るために異国の魔法学校へ留学します~(Trouble Magia ~Wakeari Shoujo wa Mirai o Kachitoru Tame ni Ikoku no Mahou Gakkou e Ryuugaku Shimasu~)",status-nothing,nothing,2024-09-28 07:03:14.000 +010065500B218000,"メモリーズオフ - Innocent Fille",status-playable,playable,2022-12-02 17:36:48.000 +010032400E700000,"二ノ国 白き聖灰の女王",services;status-menus;32-bit,menus,2023-04-16 17:11:06.000 +0100F3100DA46000,"初音ミク Project DIVA MEGA39's",audio;status-playable;loader-allocator,playable,2022-07-29 11:45:52.000 +0100BF401AF9C000,"御伽活劇 豆狸のバケル ~オラクル祭太郎の祭難!!~ (Otogi Katsugeki Mameda no Bakeru Oracle Saitarou no Sainan!!)",slow;status-playable,playable,2023-12-31 14:37:17.000 +0100AFA01750C000,"死神と少女/Shinigami to Shoujo",gpu;status-ingame;Incomplete,ingame,2024-03-22 01:06:45.000 +01001BA01EBFC000,"燃えよ! 乙女道士 ~華遊恋語~ (Moeyo! Otome Doushi Kayu Koigatari)",services-horizon;status-nothing,nothing,2024-09-28 12:22:55.000 +0100936018EB4000,"牧場物語 Welcome!ワンダフルライフ",status-ingame;crash,ingame,2023-04-25 19:43:52.000 +01009FB016286000,"索尼克:起源 / Sonic Origins",status-ingame;crash,ingame,2024-06-02 07:20:15.000 +0100F4401940A000,"超探偵事件簿 レインコード (Master Detective Archives: Rain Code)",status-ingame;crash,ingame,2024-02-12 20:58:31.000 +010064801a01c000,"超次元ゲイム ネプテューヌ GameMaker R:Evolution",status-nothing;crash,nothing,2023-10-30 22:37:40.000 +010005501E68C000,"逆转检察官1&2 御剑精选集 (Ace Attorney Investigations Collection)",status-playable,playable,2024-09-19 16:38:05.000 +010020D01B890000,"逆转裁判四五六 王泥喜精选集 (Apollo Justice: Ace Attorney Trilogy)",status-playable,playable,2024-06-21 21:54:27.000 +0100309016E7A000,"鬼滅之刃:火之神血風譚 / Demon Slayer -Kimetsu no Yaiba- The Hinokami Chronicles",status-playable;UE4,playable,2024-08-08 04:51:49.000 \ No newline at end of file From f580521e998ab96e2dbedd60c7ad98be7b7ee4df Mon Sep 17 00:00:00 2001 From: Vita Chumakova Date: Thu, 9 Jan 2025 23:18:27 +0400 Subject: [PATCH 39/69] Update game data in the compatibility database (#507) The entries were matched with the game database from https://github.com/blawar/titledb/blob/master/US.en.json, allowing to fill missing title IDs and fix game names. --- docs/compatibility.csv | 6857 ++++++++++++++++++++-------------------- 1 file changed, 3424 insertions(+), 3433 deletions(-) diff --git a/docs/compatibility.csv b/docs/compatibility.csv index 94ff62ab3..b95e93072 100644 --- a/docs/compatibility.csv +++ b/docs/compatibility.csv @@ -1,3433 +1,3424 @@ -"title_id","game_name","labels","status","last_updated" -010099F00EF3E000,"-KLAUS-",nvdec;status-playable,playable,2020-06-27 13:27:30.000 -0100BA9014A02000,".hack//G.U. Last Recode",deadlock;status-boots,boots,2022-03-12 19:15:47.000 -01001E500F7FC000,"#Funtime",status-playable,playable,2020-12-10 16:54:35.000 -01000E50134A4000,"#Halloween, Super Puzzles Dream",nvdec;status-playable,playable,2020-12-10 20:43:58.000 -01004D100C510000,"#KillAllZombies",slow;status-playable,playable,2020-12-16 01:50:25.000 -0100325012C12000,"#NoLimitFantasy, Super Puzzles Dream",nvdec;status-playable,playable,2020-12-12 17:21:32.000 -01005D400E5C8000,"#RaceDieRun",status-playable,playable,2020-07-04 20:23:16.000 -01003DB011AE8000,"#womenUp, Super Puzzles Dream",status-playable,playable,2020-12-12 16:57:25.000 -0100D87012A14000,"#womenUp, Super Puzzles Dream Demo",nvdec;status-playable,playable,2021-02-09 00:03:31.000 -01000320000CC000,"1-2-Switch",services;status-playable,playable,2022-02-18 14:44:03.000 -01004D1007926000,"10 Second Run Returns",gpu;status-ingame,ingame,2022-07-17 13:06:18.000 -0100DC000A472000,"10 Second Run RETURNS Demo",gpu;status-ingame,ingame,2021-02-09 00:17:18.000 -0100D82015774000,"112 Operator",status-playable;nvdec,playable,2022-11-13 22:42:50.000 -010051E012302000,"112th Seed",status-playable,playable,2020-10-03 10:32:38.000 -01007F600D1B8000,"12 is Better Than 6",status-playable,playable,2021-02-22 16:10:12.000 -0100B1A010014000,"12 Labours of Hercules II: The Cretan Bull",cpu;status-nothing;32-bit;crash,nothing,2022-12-07 13:43:10.000 -0100A840047C2000,"12 orbits",status-playable,playable,2020-05-28 16:13:26.000 -01003FC01670C000,"13 Sentinels Aegis Rim",slow;status-ingame,ingame,2024-06-10 20:33:38.000 -0100C54015002000,"13 Sentinels Aegis Rim Demo",status-playable;demo,playable,2022-04-13 14:15:48.000 -01007E600EEE6000,"140",status-playable,playable,2020-08-05 20:01:33.000 -0100B94013D28000,"16-Bit Soccer Demo",status-playable,playable,2021-02-09 00:23:07.000 -01005CA0099AA000,"1917 - The Alien Invasion DX",status-playable,playable,2021-01-08 22:11:16.000 -0100829010F4A000,"1971 PROJECT HELIOS",status-playable,playable,2021-04-14 13:50:19.000 -0100D1000B18C000,"1979 Revolution: Black Friday",nvdec;status-playable,playable,2021-02-21 21:03:43.000 -01007BB00FC8A000,"198X",status-playable,playable,2020-08-07 13:24:38.000 -010075601150A000,"1993 Shenandoah",status-playable,playable,2020-10-24 13:55:42.000 -0100148012550000,"1993 Shenandoah Demo",status-playable,playable,2021-02-09 00:43:43.000 -010096500EA94000,"2048 Battles",status-playable,playable,2020-12-12 14:21:25.000 -010024C0067C4000,"2064: Read Only Memories INTEGRAL",deadlock;status-menus,menus,2020-05-28 16:53:58.000 -0100749009844000,"20XX",gpu;status-ingame,ingame,2023-08-14 09:41:44.000 -01007550131EE000,"2urvive",status-playable,playable,2022-11-17 13:49:37.000 -0100E20012886000,"2weistein – The Curse of the Red Dragon",status-playable;nvdec;UE4,playable,2022-11-18 14:47:07.000 -0100DAC013D0A000,"30 in 1 game collection vol. 2",status-playable;online-broken,playable,2022-10-15 17:22:27.000 -010056D00E234000,"30-in-1 Game Collection",status-playable;online-broken,playable,2022-10-15 17:47:09.000 -0100FB5010D2E000,"3000th Duel",status-playable,playable,2022-09-21 17:12:08.000 -01003670066DE000,"36 Fragments of Midnight",status-playable,playable,2020-05-28 15:12:59.000 -0100AF400C4CE000,"39 Days to Mars",status-playable,playable,2021-02-21 22:12:46.000 -010010C013F2A000,"3D Arcade Fishing",status-playable,playable,2022-10-25 21:50:51.000 -,"3D MiniGolf",status-playable,playable,2021-01-06 09:22:11.000 -,"4x4 Dirt Track",status-playable,playable,2020-12-12 21:41:42.000 -010010100FF14000,"60 Parsecs!",status-playable,playable,2022-09-17 11:01:17.000 -0100969005E98000,"60 Seconds!",services;status-ingame,ingame,2021-11-30 01:04:14.000 -,"6180 the moon",status-playable,playable,2020-05-28 15:39:24.000 -,"64",status-playable,playable,2020-12-12 21:31:58.000 -,"7 Billion Humans",32-bit;status-playable,playable,2020-12-17 21:04:58.000 -,"7th Sector",nvdec;status-playable,playable,2020-08-10 14:22:14.000 -,"8-BIT ADVENTURE STEINS;GATE",audio;status-ingame,ingame,2020-01-12 15:05:06.000 -,"80 Days",status-playable,playable,2020-06-22 21:43:01.000 -,"80's OVERDRIVE",status-playable,playable,2020-10-16 14:33:32.000 -,"88 Heroes",status-playable,playable,2020-05-28 14:13:02.000 -,"9 Monkeys of Shaolin",UE4;gpu;slow;status-ingame,ingame,2020-11-17 11:58:43.000 -0100C5F012E3E000,"9 Monkeys of Shaolin Demo",UE4;gpu;nvdec;status-ingame,ingame,2021-02-09 01:03:30.000 -,"911 Operator Deluxe Edition",status-playable,playable,2020-07-14 13:57:44.000 -,"99Vidas",online;status-playable,playable,2020-10-29 13:00:40.000 -010023500C2F0000,"99Vidas Demo",status-playable,playable,2021-02-09 12:51:31.000 -,"9th Dawn III",status-playable,playable,2020-12-12 22:27:27.000 -010096A00CC80000,"A Ch'ti Bundle",status-playable;nvdec,playable,2022-10-04 12:48:44.000 -,"A Dark Room",gpu;status-ingame,ingame,2020-12-14 16:14:28.000 -0100582012B90000,"A Duel Hand Disaster Trackher: DEMO",crash;demo;nvdec;status-ingame,ingame,2021-03-24 18:45:27.000 -010026B006802000,"A Duel Hand Disaster: Trackher",status-playable;nvdec;online-working,playable,2022-09-04 14:24:55.000 -,"A Frog Game",status-playable,playable,2020-12-14 16:09:53.000 -010056E00853A000,"A Hat In Time",status-playable,playable,2024-06-25 19:52:44.000 -01009E1011EC4000,"A HERO AND A GARDEN",status-playable,playable,2022-12-05 16:37:47.000 -01005EF00CFDA000,"A Knight's Quest",status-playable;UE4,playable,2022-09-12 20:44:20.000 -01008DD006C52000,"A magical high school girl",status-playable,playable,2022-07-19 14:40:50.000 -,"A Short Hike",status-playable,playable,2020-10-15 00:19:58.000 -,"A Sound Plan",crash;status-boots,boots,2020-12-14 16:46:21.000 -01007DD011C4A000,"A Summer with the Shiba Inu",status-playable,playable,2021-06-10 20:51:16.000 -0100A3E010E56000,"A-Train: All Aboard! Tourism",nvdec;status-playable,playable,2021-04-06 17:48:19.000 -010097A00CC0A000,"Aaero",status-playable;nvdec,playable,2022-07-19 14:49:55.000 -,"Aborigenus",status-playable,playable,2020-08-05 19:47:24.000 -,"Absolute Drift",status-playable,playable,2020-12-10 14:02:44.000 -010047F012BE2000,"Abyss of The Sacrifice",status-playable;nvdec,playable,2022-10-21 13:56:28.000 -0100C1300BBC6000,"ABZU",status-playable;UE4,playable,2022-07-19 15:02:52.000 -01003C400871E000,"ACA NEOGEO 2020 SUPER BASEBALL",online;status-playable,playable,2021-04-12 13:23:51.000 -0100FC000AFC6000,"ACA NEOGEO 3 COUNT BOUT",online;status-playable,playable,2021-04-12 13:16:42.000 -0100AC40038F4000,"ACA NEOGEO AERO FIGHTERS 2",online;status-playable,playable,2021-04-08 15:44:09.000 -0100B91008780000,"ACA NEOGEO AERO FIGHTERS 3",online;status-playable,playable,2021-04-12 13:11:17.000 -0100B4800AFBA000,"ACA NEOGEO AGGRESSORS OF DARK KOMBAT",online;status-playable,playable,2021-04-01 22:48:01.000 -01003FE00A2F6000,"ACA NEOGEO BASEBALL STARS PROFESSIONAL",online;status-playable,playable,2021-04-01 21:23:05.000 -,"ACA NEOGEO BLAZING STAR",crash;services;status-menus,menus,2020-05-26 17:29:02.000 -0100D2400AFB0000,"ACA NEOGEO CROSSED SWORDS",online;status-playable,playable,2021-04-01 20:42:59.000 -0100EE6002B48000,"ACA NEOGEO FATAL FURY",online;status-playable,playable,2021-04-01 20:36:23.000 -,"ACA NEOGEO FOOTBALL FRENZY",status-playable,playable,2021-03-29 20:12:12.000 -0100CB2001DB8000,"ACA NEOGEO GAROU: MARK OF THE WOLVES",online;status-playable,playable,2021-04-01 20:31:10.000 -01005D700A2F8000,"ACA NEOGEO GHOST PILOTS",online;status-playable,playable,2021-04-01 20:26:45.000 -01000D10038E6000,"ACA NEOGEO LAST RESORT",online;status-playable,playable,2021-04-01 19:51:22.000 -,"ACA NEOGEO LEAGUE BOWLING",crash;services;status-menus,menus,2020-05-26 17:11:04.000 -,"ACA NEOGEO MAGICAL DROP II",crash;services;status-menus,menus,2020-05-26 16:48:24.000 -01007920038F6000,"ACA NEOGEO MAGICIAN LORD",online;status-playable,playable,2021-04-01 19:33:26.000 -0100EBE002B3E000,"ACA NEOGEO METAL SLUG",status-playable,playable,2021-02-21 13:56:48.000 -010086300486E000,"ACA NEOGEO METAL SLUG 2",online;status-playable,playable,2021-04-01 19:25:52.000 -,"ACA NEOGEO METAL SLUG 3",crash;services;status-menus,menus,2020-05-26 16:32:45.000 -01009CE00AFAE000,"ACA NEOGEO METAL SLUG 4",online;status-playable,playable,2021-04-01 18:12:18.000 -,"ACA NEOGEO Metal Slug X",crash;services;status-menus,menus,2020-05-26 14:07:20.000 -010038F00AFA0000,"ACA NEOGEO Money Puzzle Exchanger",online;status-playable,playable,2021-04-01 17:59:56.000 -01002E70032E8000,"ACA NEOGEO NEO TURF MASTERS",status-playable,playable,2021-02-21 15:12:01.000 -010052A00A306000,"ACA NEOGEO NINJA COMBAT",status-playable,playable,2021-03-29 21:17:28.000 -01007E800AFB6000,"ACA NEOGEO NINJA COMMANDO",online;status-playable,playable,2021-04-01 17:28:18.000 -01003A5001DBA000,"ACA NEOGEO OVER TOP",status-playable,playable,2021-02-21 13:16:25.000 -010088500878C000,"ACA NEOGEO REAL BOUT FATAL FURY SPECIAL",online;status-playable,playable,2021-04-01 17:18:27.000 -01005C9002B42000,"ACA NEOGEO SAMURAI SHODOWN",online;status-playable,playable,2021-04-01 17:11:35.000 -010047F001DBC000,"ACA NEOGEO SAMURAI SHODOWN IV",online;status-playable,playable,2021-04-12 12:58:54.000 -010049F00AFE8000,"ACA NEOGEO SAMURAI SHODOWN SPECIAL V",online;status-playable,playable,2021-04-10 18:07:13.000 -01009B300872A000,"ACA NEOGEO SENGOKU 2",online;status-playable,playable,2021-04-10 17:36:44.000 -01008D000877C000,"ACA NEOGEO SENGOKU 3",online;status-playable,playable,2021-04-10 16:11:53.000 -,"ACA NEOGEO SHOCK TROOPERS",crash;services;status-menus,menus,2020-05-26 15:29:34.000 -01007D1004DBA000,"ACA NEOGEO SPIN MASTER",online;status-playable,playable,2021-04-10 15:50:19.000 -010055A00A300000,"ACA NEOGEO SUPER SIDEKICKS 2",online;status-playable,playable,2021-04-10 16:05:58.000 -0100A4D00A308000,"ACA NEOGEO SUPER SIDEKICKS 3: THE NEXT GLORY",online;status-playable,playable,2021-04-10 15:39:22.000 -,"ACA NEOGEO THE KING OF FIGHTERS '94",crash;services;status-menus,menus,2020-05-26 15:03:44.000 -01009DC001DB6000,"ACA NEOGEO THE KING OF FIGHTERS '95",status-playable,playable,2021-03-29 20:27:35.000 -01006F0004FB4000,"ACA NEOGEO THE KING OF FIGHTERS '96",online;status-playable,playable,2021-04-10 14:49:10.000 -0100170008728000,"ACA NEOGEO THE KING OF FIGHTERS '97",online;status-playable,playable,2021-04-10 14:43:27.000 -,"ACA NEOGEO THE KING OF FIGHTERS '98",crash;services;status-menus,menus,2020-05-26 14:54:20.000 -0100583001DCA000,"ACA NEOGEO THE KING OF FIGHTERS '99",online;status-playable,playable,2021-04-10 14:36:56.000 -0100B97002B44000,"ACA NEOGEO THE KING OF FIGHTERS 2000",online;status-playable,playable,2021-04-10 15:24:35.000 -010048200AFC2000,"ACA NEOGEO THE KING OF FIGHTERS 2001",online;status-playable,playable,2021-04-10 15:16:23.000 -0100CFD00AFDE000,"ACA NEOGEO THE KING OF FIGHTERS 2002",online;status-playable,playable,2021-04-10 15:01:55.000 -0100EF100AFE6000,"ACA NEOGEO THE KING OF FIGHTERS 2003",online;status-playable,playable,2021-04-10 14:54:31.000 -0100699008792000,"ACA NEOGEO THE LAST BLADE 2",online;status-playable,playable,2021-04-10 14:31:54.000 -0100F7F00AFA2000,"ACA NEOGEO THE SUPER SPY",online;status-playable,playable,2021-04-10 14:26:33.000 -0100CEF001DC0000,"ACA NEOGEO WAKU WAKU 7",online;status-playable,playable,2021-04-10 14:20:52.000 -,"ACA NEOGEO WORLD HEROES PERFECT",crash;services;status-menus,menus,2020-05-26 14:14:36.000 -,"ACA NEOGEO ZUPAPA!",online;status-playable,playable,2021-03-25 20:07:33.000 -0100A9900CB5C000,"Access Denied",status-playable,playable,2022-07-19 15:25:10.000 -01007C50132C8000,"Ace Angler: Fishing Spirits",status-menus;crash,menus,2023-03-03 03:21:39.000 -010033401E68E000,"Ace Attorney Investigations Collection DEMO",status-playable,playable,2024-09-07 06:16:42.000 -010039301B7E0000,"Ace Combat 7 - Skies Unknown Deluxe Edition",gpu;status-ingame;UE4,ingame,2024-09-27 14:31:43.000 -0100FF1004D56000,"Ace of Seafood",status-playable,playable,2022-07-19 15:32:25.000 -,"Aces of the Luftwaffe Squadron",nvdec;slow;status-playable,playable,2020-05-27 12:29:42.000 -010054300D822000,"Aces of the Luftwaffe Squadron Demo",nvdec;status-playable,playable,2021-02-09 13:12:28.000 -0100DBC0081A4000,"ACORN Tactics",status-playable,playable,2021-02-22 12:57:40.000 -,"Across the Grooves",status-playable,playable,2020-06-27 12:29:51.000 -,"Acthung! Cthulhu Tactics",status-playable,playable,2020-12-14 18:40:27.000 -010039A010DA0000,"Active Neurons",status-playable,playable,2021-01-27 21:31:21.000 -01000D1011EF0000,"Active Neurons 2",status-playable,playable,2022-10-07 16:21:42.000 -010031C0122B0000,"Active Neurons 2 Demo",status-playable,playable,2021-02-09 13:40:21.000 -0100EE1013E12000,"Active Neurons 3",status-playable,playable,2021-03-24 12:20:20.000 -,"Actual Sunlight",gpu;status-ingame,ingame,2020-12-14 17:18:41.000 -0100C0C0040E4000,"Adam's Venture: Origins",status-playable,playable,2021-03-04 18:43:57.000 -,"Adrenaline Rush - Miami Drive",status-playable,playable,2020-12-12 22:49:50.000 -0100300012F2A000,"Advance Wars 1+2: Re-Boot Camp",status-playable,playable,2024-01-30 18:19:44.000 -,"Adventure Llama",status-playable,playable,2020-12-14 19:32:24.000 -,"Adventure Pinball Bundle",slow;status-playable,playable,2020-12-14 20:31:53.000 -01003B400A00A000,"Adventures of Bertram Fiddle: Episode 1: A Dreadly Business",status-playable;nvdec,playable,2022-09-17 11:07:56.000 -,"Adventures of Chris",status-playable,playable,2020-12-12 23:00:02.000 -0100A0A0136E8000,"Adventures of Chris Demo",status-playable,playable,2021-02-09 13:49:21.000 -,"Adventures of Pip",nvdec;status-playable,playable,2020-12-12 22:11:55.000 -01008C901266E000,"ADVERSE",UE4;status-playable,playable,2021-04-26 14:32:51.000 -010064500AF72000,"Aegis Defenders Demo",status-playable,playable,2021-02-09 14:04:17.000 -01008E6006502000,"Aegis Defenders0",status-playable,playable,2021-02-22 13:29:33.000 -,"Aeolis Tournament",online;status-playable,playable,2020-12-12 22:02:14.000 -01006710122CE000,"Aeolis Tournament Demo",nvdec;status-playable,playable,2021-02-09 14:22:30.000 -0100A0400DDE0000,"AER - Memories of Old",nvdec;status-playable,playable,2021-03-05 18:43:43.000 -0100E9B013D4A000,"Aerial Knight's Never Yield",status-playable,playable,2022-10-25 22:05:00.000 -0100875011D0C000,"Aery",status-playable,playable,2021-03-07 15:25:51.000 -010018E012914000,"Aery - Sky Castle",status-playable,playable,2022-10-21 17:58:49.000 -0100DF8014056000,"Aery - A Journey Beyond Time",status-playable,playable,2021-04-05 15:52:25.000 -0100087012810000,"Aery - Broken Memories",status-playable,playable,2022-10-04 13:11:52.000 -,"Aery - Calm Mind - 0100A801539000",status-playable,playable,2022-11-14 14:26:58.000 -0100B1C00949A000,"AeternoBlade Demo Version",nvdec;status-playable,playable,2021-02-09 14:39:26.000 -,"AeternoBlade I",nvdec;status-playable,playable,2020-12-14 20:06:48.000 -01009D100EA28000,"AeternoBlade II",status-playable;online-broken;UE4;vulkan-backend-bug,playable,2022-09-12 21:11:18.000 -,"AeternoBlade II Demo Version",gpu;nvdec;status-ingame,ingame,2021-02-09 15:10:19.000 -01001B400D334000,"AFL Evolution 2",slow;status-playable;online-broken;UE4,playable,2022-12-07 12:45:56.000 -0100DB100BBCE000,"Afterparty",status-playable,playable,2022-09-22 12:23:19.000 -,"Agatha Christie - The ABC Murders",status-playable,playable,2020-10-27 17:08:23.000 -,"Agatha Knife",status-playable,playable,2020-05-28 12:37:58.000 -,"Agent A: A puzzle in disguise",status-playable,playable,2020-11-16 22:53:27.000 -01008E8012C02000,"Agent A: A puzzle in disguise (Demo)",status-playable,playable,2021-02-09 18:30:41.000 -0100E4700E040000,"Ages of Mages: the Last Keeper",status-playable;vulkan-backend-bug,playable,2022-10-04 11:44:05.000 -010004D00A9C0000,"Aggelos",gpu;status-ingame,ingame,2023-02-19 13:24:23.000 -,"Agony",UE4;crash;status-boots,boots,2020-07-10 16:21:18.000 -010089B00D09C000,"Ai: the Somnium Files",status-playable;nvdec,playable,2022-09-04 14:45:06.000 -0100C1700FB34000,"AI: The Somnium Files Demo",nvdec;status-playable,playable,2021-02-10 12:52:33.000 -,"Ailment",status-playable,playable,2020-12-12 22:30:41.000 -,"Air Conflicts: Pacific Carriers",status-playable,playable,2021-01-04 10:52:50.000 -,"Air Hockey",status-playable,playable,2020-05-28 16:44:37.000 -,"Air Missions: HIND",status-playable,playable,2020-12-13 10:16:45.000 -0100E95011FDC000,"Aircraft Evolution",nvdec;status-playable,playable,2021-06-14 13:30:18.000 -010010A00DB72000,"Airfield Mania Demo",services;status-boots;demo,boots,2022-04-10 03:43:02.000 -01003DD00BFEE000,"AIRHEART - Tales of Broken Wings",status-playable,playable,2021-02-26 15:20:27.000 -01007F100DE52000,"Akane",status-playable;nvdec,playable,2022-07-21 00:12:18.000 -,"Akash Path of the Five",gpu;nvdec;status-ingame,ingame,2020-12-14 22:33:12.000 -010053100B0EA000,"Akihabara - Feel the Rhythm Remixed",status-playable,playable,2021-02-22 14:39:35.000 -,"Akuarium",slow;status-playable,playable,2020-12-12 23:43:36.000 -,"Akuto",status-playable,playable,2020-08-04 19:43:27.000 -0100F5400AB6C000,"Alchemic Jousts",gpu;status-ingame,ingame,2022-12-08 15:06:28.000 -,"Alchemist's Castle",status-playable,playable,2020-12-12 23:54:08.000 -,"Alder's Blood",status-playable,playable,2020-08-28 15:15:23.000 -01004510110C4000,"Alder's Blood Prologue",crash;status-ingame,ingame,2021-02-09 19:03:03.000 -01000E000EEF8000,"Aldred - Knight of Honor",services;status-playable,playable,2021-11-30 01:49:17.000 -010025D01221A000,"Alex Kidd in Miracle World DX",status-playable,playable,2022-11-14 15:01:34.000 -,"Alien Cruise",status-playable,playable,2020-08-12 13:56:05.000 -,"Alien Escape",status-playable,playable,2020-06-03 23:43:18.000 -010075D00E8BA000,"Alien: Isolation",status-playable;nvdec;vulkan-backend-bug,playable,2022-09-17 11:48:41.000 -0100CBD012FB6000,"All Walls Must Fall",status-playable;UE4,playable,2022-10-15 19:16:30.000 -0100C1F00A9B8000,"All-Star Fruit Racing",status-playable;nvdec;UE4,playable,2022-07-21 00:35:37.000 -0100AC501122A000,"Alluris",gpu;status-ingame;UE4,ingame,2023-08-02 23:13:50.000 -,"Almightree the Last Dreamer",slow;status-playable,playable,2020-12-15 13:59:03.000 -,"Along the Edge",status-playable,playable,2020-11-18 15:00:07.000 -,"Alpaca Ball: Allstars",nvdec;status-playable,playable,2020-12-11 12:26:29.000 -,"ALPHA",status-playable,playable,2020-12-13 12:17:45.000 -,"Alphaset by POWGI",status-playable,playable,2020-12-15 15:15:15.000 -,"Alt-Frequencies",status-playable,playable,2020-12-15 19:01:33.000 -,"Alteric",status-playable,playable,2020-11-08 13:53:22.000 -,"Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz",status-playable,playable,2020-08-31 14:17:42.000 -0100A8A00D27E000,"Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz Trial version",status-playable,playable,2021-02-10 13:33:59.000 -010045201487C000,"Aluna: Sentinel of the Shards",status-playable;nvdec,playable,2022-10-25 22:17:03.000 -,"Alwa's Awakening",status-playable,playable,2020-10-13 11:52:01.000 -,"Alwa's Legacy",status-playable,playable,2020-12-13 13:00:57.000 -,"American Fugitive",nvdec;status-playable,playable,2021-01-04 20:45:11.000 -010089D00A3FA000,"American Ninja Warrior: Challenge",nvdec;status-playable,playable,2021-06-09 13:11:17.000 -01003CC00D0BE000,"Amnesia: Collection",status-playable,playable,2022-10-04 13:36:15.000 -010041D00DEB2000,"Amoeba Battle - Microscopic RTS Action",status-playable,playable,2021-05-06 13:33:41.000 -010046500C8D2000,"Among the Sleep - Enhanced Edition",nvdec;status-playable,playable,2021-06-03 15:06:25.000 -0100B0C013912000,"Among Us",status-menus;online;ldn-broken,menus,2021-09-22 15:20:17.000 -010050900E1C6000,"Anarcute",status-playable,playable,2021-02-22 13:17:59.000 -01009EE0111CC000,"Ancestors Legacy",status-playable;nvdec;UE4,playable,2022-10-01 12:25:36.000 -,"Ancient Rush 2",UE4;crash;status-menus,menus,2020-07-14 14:58:47.000 -0100AE000AEBC000,"Angels of Death",nvdec;status-playable,playable,2021-02-22 14:17:15.000 -010001E00A5F6000,"AngerForce: Reloaded for Nintendo Switch",status-playable,playable,2022-07-21 10:37:17.000 -0100F3500D05E000,"Angry Bunnies: Colossal Carrot Crusade",status-playable;online-broken,playable,2022-09-04 14:53:26.000 -,"Angry Video Game Nerd I & II Deluxe",crash;status-ingame,ingame,2020-12-12 23:59:54.000 -01007A400B3F8000,"Anima Gate of Memories: The Nameless Chronicles",status-playable,playable,2021-06-14 14:33:06.000 -010033F00B3FA000,"Anima: Arcane Edition",nvdec;status-playable,playable,2021-01-26 16:55:51.000 -0100706005B6A000,"Anima: Gate of Memories",nvdec;status-playable,playable,2021-06-16 18:13:18.000 -0100F38011CFE000,"Animal Crossing New Horizons Island Transfer Tool",services;status-ingame;Needs Update;Incomplete,ingame,2022-12-07 13:51:19.000 -01006F8002326000,"Animal Crossing: New Horizons",gpu;status-ingame;crash;nvdec;online-broken;ldn-works;mac-bug,ingame,2024-09-23 13:31:49.000 -,"Animal Fight Club",gpu;status-ingame,ingame,2020-12-13 13:13:33.000 -,"Animal Fun for Toddlers and Kids",services;status-boots,boots,2020-12-15 16:45:29.000 -,"Animal Hunter Z",status-playable,playable,2020-12-13 12:50:35.000 -010033C0121DC000,"Animal Pairs - Matching & Concentration Game for Toddlers & Kids",services;status-boots,boots,2021-11-29 23:43:14.000 -010065B009B3A000,"Animal Rivals Switch",status-playable,playable,2021-02-22 14:02:42.000 -0100EFE009424000,"Animal Super Squad",UE4;status-playable,playable,2021-04-23 20:50:50.000 -,"Animal Up",status-playable,playable,2020-12-13 15:39:02.000 -010020D01AD24000,"ANIMAL WELL",status-playable,playable,2024-05-22 18:01:49.000 -,"Animals for Toddlers",services;status-boots,boots,2020-12-15 17:27:27.000 -,"Animated Jigsaws Collection",nvdec;status-playable,playable,2020-12-15 15:58:34.000 -0100A1900B5B8000,"Animated Jigsaws: Beautiful Japanese Scenery DEMO",nvdec;status-playable,playable,2021-02-10 13:49:56.000 -,"Anime Studio Story",status-playable,playable,2020-12-15 18:14:05.000 -01002B300EB86000,"Anime Studio Story Demo",status-playable,playable,2021-02-10 14:50:39.000 -,"ANIMUS",status-playable,playable,2020-12-13 15:11:47.000 -0100E5A00FD38000,"Animus: Harbinger",status-playable,playable,2022-09-13 22:09:20.000 -,"Ankh Guardian - Treasure of the Demon's Temple",status-playable,playable,2020-12-13 15:55:49.000 -,"Anode",status-playable,playable,2020-12-15 17:18:58.000 -0100CB9018F5A000,"Another Code: Recollection",gpu;status-ingame;crash,ingame,2024-09-06 05:58:52.000 -,"Another Sight",UE4;gpu;nvdec;status-ingame,ingame,2020-12-03 16:49:59.000 -01003C300AAAE000,"Another World",slow;status-playable,playable,2022-07-21 10:42:38.000 -01000FD00DF78000,"AnShi",status-playable;nvdec;UE4,playable,2022-10-21 19:37:01.000 -010054C00D842000,"Anthill",services;status-menus;nvdec,menus,2021-11-18 09:25:25.000 -0100596011E20000,"Anti-Hero Bundle",status-playable;nvdec,playable,2022-10-21 20:10:30.000 -,"Antiquia Lost",status-playable,playable,2020-05-28 11:57:32.000 -,"Antventor",nvdec;status-playable,playable,2020-12-15 20:09:27.000 -0100FA100620C000,"Ao no Kanata no Four Rhythm",status-playable,playable,2022-07-21 10:50:42.000 -010047000E9AA000,"AO Tennis 2",status-playable;online-broken,playable,2022-09-17 12:05:07.000 -0100990011866000,"Aokana - Four Rhythms Across the Blue",status-playable,playable,2022-10-04 13:50:26.000 -01005B100C268000,"Ape Out",status-playable,playable,2022-09-26 19:04:47.000 -010054500E6D4000,"APE OUT DEMO",status-playable,playable,2021-02-10 14:33:06.000 -,"Aperion Cyberstorm",status-playable,playable,2020-12-14 00:40:16.000 -01008CA00D71C000,"Aperion Cyberstorm Demo",status-playable,playable,2021-02-10 15:53:21.000 -,"Apocalipsis",deadlock;status-menus,menus,2020-05-27 12:56:37.000 -,"Apocryph",gpu;status-ingame,ingame,2020-12-13 23:24:10.000 -,"Apparition",nvdec;slow;status-ingame,ingame,2020-12-13 23:57:04.000 -0100AC10085CE000,"AQUA KITTY UDX",online;status-playable,playable,2021-04-12 15:34:11.000 -,"Aqua Lungers",crash;status-ingame,ingame,2020-12-14 11:25:57.000 -0100D0D00516A000,"Aqua Moto Racing Utopia",status-playable,playable,2021-02-21 21:21:00.000 -010071800BA74000,"Aragami: Shadow Edition",nvdec;status-playable,playable,2021-02-21 20:33:23.000 -0100C7D00E6A0000,"Arc of Alchemist",status-playable;nvdec,playable,2022-10-07 19:15:54.000 -0100BE80097FA000,"Arcade Archives 10-Yard Fight",online;status-playable,playable,2021-03-25 21:26:41.000 -01005DD00BE08000,"Arcade Archives ALPHA MISSION",online;status-playable,playable,2021-04-15 09:20:43.000 -010083800DC70000,"Arcade Archives ALPINE SKI",online;status-playable,playable,2021-04-15 09:28:46.000 -010014F001DE2000,"Arcade Archives ARGUS",online;status-playable,playable,2021-04-16 06:51:25.000 -010014F001DE2000,"Arcade Archives Armed F",online;status-playable,playable,2021-04-16 07:00:17.000 -0100BEC00C7A2000,"Arcade Archives ATHENA",online;status-playable,playable,2021-04-16 07:10:12.000 -0100426001DE4000,"Arcade Archives Atomic Robo-Kid",online;status-playable,playable,2021-04-16 07:20:29.000 -0100192009824000,"Arcade Archives BOMB JACK",online;status-playable,playable,2021-04-16 09:48:26.000 -010007A00980C000,"Arcade Archives City CONNECTION",online;status-playable,playable,2021-03-25 22:16:15.000 -0100EDC00E35A000,"Arcade Archives CLU CLU LAND",online;status-playable,playable,2021-04-16 10:00:42.000 -0100BB1001DD6000,"Arcade Archives CRAZY CLIMBER",online;status-playable,playable,2021-03-25 22:24:15.000 -,"Arcade Archives DONKEY KONG",Needs Update;crash;services;status-menus,menus,2021-03-24 18:18:43.000 -0100F25001DD0000,"Arcade Archives DOUBLE DRAGON",online;status-playable,playable,2021-03-25 22:44:34.000 -01009E3001DDE000,"Arcade Archives DOUBLE DRAGON II The Revenge",online;status-playable,playable,2021-04-12 16:05:29.000 -0100496006EC8000,"Arcade Archives FRONT LINE",online;status-playable,playable,2021-05-05 14:10:49.000 -01009A4008A30000,"Arcade Archives HEROIC EPISODE",online;status-playable,playable,2021-03-25 23:01:26.000 -01007D200D3FC000,"Arcade Archives ICE CLIMBER",online;status-playable,playable,2021-05-05 14:18:34.000 -010049400C7A8000,"Arcade Archives IKARI WARRIORS",online;status-playable,playable,2021-05-05 14:24:46.000 -01000DB00980A000,"Arcade Archives Ikki",online;status-playable,playable,2021-03-25 23:11:28.000 -010008300C978000,"Arcade Archives IMAGE FIGHT",online;status-playable,playable,2021-05-05 14:31:21.000 -010010B008A36000,"Arcade Archives Kid Niki Radical Ninja",audio;status-ingame;online,ingame,2022-07-21 11:02:04.000 -0100E7C001DE0000,"Arcade Archives Kid's Horehore Daisakusen",online;status-playable,playable,2021-04-12 16:21:29.000 -,"Arcade Archives LIFE FORCE",status-playable,playable,2020-09-04 13:26:25.000 -0100755004608000,"Arcade Archives MARIO BROS.",online;status-playable,playable,2021-03-26 11:31:32.000 -01000BE001DD8000,"Arcade Archives MOON CRESTA",online;status-playable,playable,2021-05-05 14:39:29.000 -01003000097FE000,"Arcade Archives MOON PATROL",online;status-playable,playable,2021-03-26 11:42:04.000 -01003EF00D3B4000,"Arcade Archives NINJA GAIDEN",audio;online;status-ingame,ingame,2021-04-12 16:27:53.000 -01002F300D2C6000,"Arcade Archives Ninja Spirit",online;status-playable,playable,2021-05-05 14:45:31.000 -,"Arcade Archives Ninja-Kid",online;status-playable,playable,2021-03-26 20:55:07.000 -,"Arcade Archives OMEGA FIGHTER",crash;services;status-menus,menus,2020-08-18 20:50:54.000 -,"Arcade Archives PLUS ALPHA",audio;status-ingame,ingame,2020-07-04 20:47:55.000 -0100A6E00D3F8000,"Arcade Archives POOYAN",online;status-playable,playable,2021-05-05 17:58:19.000 -01000D200C7A4000,"Arcade Archives PSYCHO SOLDIER",online;status-playable,playable,2021-05-05 18:02:19.000 -01001530097F8000,"Arcade Archives PUNCH-OUT!!",online;status-playable,playable,2021-03-25 22:10:55.000 -010081E001DD2000,"Arcade Archives Renegade",status-playable;online,playable,2022-07-21 11:45:40.000 -0100FBA00E35C000,"Arcade Archives ROAD FIGHTER",online;status-playable,playable,2021-05-05 18:09:17.000 -010060000BF7C000,"Arcade Archives ROUTE 16",online;status-playable,playable,2021-05-05 18:40:41.000 -0100C2D00981E000,"Arcade Archives RYGAR",online;status-playable,playable,2021-04-15 08:48:30.000 -01007A4009834000,"Arcade Archives Shusse Ozumo",online;status-playable,playable,2021-05-05 17:52:25.000 -010008F00B054000,"Arcade Archives Sky Skipper",online;status-playable,playable,2021-04-15 08:58:09.000 -01008C900982E000,"Arcade Archives Solomon's Key",online;status-playable,playable,2021-04-19 16:27:18.000 -010069F008A38000,"Arcade Archives STAR FORCE",online;status-playable,playable,2021-04-15 08:39:09.000 -,"Arcade Archives TERRA CRESTA",crash;services;status-menus,menus,2020-08-18 20:20:55.000 -0100348001DE6000,"Arcade Archives TERRA FORCE",online;status-playable,playable,2021-04-16 20:03:27.000 -0100DFD016B7A000,"Arcade Archives TETRIS THE GRAND MASTER",status-playable,playable,2024-06-23 01:50:29.000 -0100DC000983A000,"Arcade Archives THE NINJA WARRIORS",online;slow;status-ingame,ingame,2021-04-16 19:54:56.000 -0100AF300D2E8000,"Arcade Archives TIME PILOT",online;status-playable,playable,2021-04-16 19:22:31.000 -010029D006ED8000,"Arcade Archives Traverse USA",online;status-playable,playable,2021-04-15 08:11:06.000 -010042200BE0C000,"Arcade Archives URBAN CHAMPION",online;status-playable,playable,2021-04-16 10:20:03.000 -01004EC00E634000,"Arcade Archives VS. GRADIUS",online;status-playable,playable,2021-04-12 14:53:58.000 -,"Arcade Archives VS. SUPER MARIO BROS.",online;status-playable,playable,2021-04-08 14:48:11.000 -01001B000D8B6000,"Arcade Archives WILD WESTERN",online;status-playable,playable,2021-04-16 10:11:36.000 -010050000D6C4000,"Arcade Classics Anniversary Collection",status-playable,playable,2021-06-03 13:55:10.000 -,"ARCADE FUZZ",status-playable,playable,2020-08-15 12:37:36.000 -,"Arcade Spirits",status-playable,playable,2020-06-21 11:45:03.000 -0100E680149DC000,"Arcaea",status-playable,playable,2023-03-16 19:31:21.000 -0100E53013E1C000,"Arcanoid Breakout",status-playable,playable,2021-01-25 23:28:02.000 -,"Archaica: Path of LightInd",crash;status-nothing,nothing,2020-10-16 13:22:26.000 -,"Area 86",status-playable,playable,2020-12-16 16:45:52.000 -0100691013C46000,"ARIA CHRONICLE",status-playable,playable,2022-11-16 13:50:55.000 -0100D4A00B284000,"Ark: Survival Evolved",gpu;status-ingame;nvdec;online-broken;UE4;ldn-untested,ingame,2024-04-16 00:53:56.000 -,"Arkanoid vs Space Invaders",services;status-ingame,ingame,2021-01-21 12:50:30.000 -010069A010606000,"Arkham Horror: Mother's Embrace",nvdec;status-playable,playable,2021-04-19 15:40:55.000 -,"Armed 7 DX",status-playable,playable,2020-12-14 11:49:56.000 -,"Armello",nvdec;status-playable,playable,2021-01-07 11:43:26.000 -01009B500007C000,"ARMS",status-playable;ldn-works;LAN,playable,2024-08-28 07:49:24.000 -,"ARMS Demo",status-playable,playable,2021-02-10 16:30:13.000 -0100184011B32000,"Arrest of a stone Buddha",status-nothing;crash,nothing,2022-12-07 16:55:00.000 -,"Arrog",status-playable,playable,2020-12-16 17:20:50.000 -01008EC006BE2000,"Art of Balance",gpu;status-ingame;ldn-works,ingame,2022-07-21 17:13:57.000 -010062F00CAE2000,"Art of Balance DEMO",gpu;slow;status-ingame,ingame,2021-02-10 17:17:12.000 -01006AA013086000,"Art Sqool",status-playable;nvdec,playable,2022-10-16 20:42:37.000 -,"Artifact Adventure Gaiden DX",status-playable,playable,2020-12-16 17:49:25.000 -0100C2500CAB6000,"Ary and the Secret of Seasons",status-playable,playable,2022-10-07 20:45:09.000 -,"ASCENDANCE",status-playable,playable,2021-01-05 10:54:40.000 -,"Asemblance",UE4;gpu;status-ingame,ingame,2020-12-16 18:01:23.000 -,"Ash of Gods: Redemption",deadlock;status-nothing,nothing,2020-08-10 18:08:32.000 -010027B00E40E000,"Ashen",status-playable;nvdec;online-broken;UE4,playable,2022-09-17 12:19:14.000 -01007B000C834000,"Asphalt 9: Legends",services;status-menus;crash;online-broken,menus,2022-12-07 13:28:29.000 -01007F600B134000,"Assassin's Creed III Remastered",status-boots;nvdec,boots,2024-06-25 20:12:11.000 -010044700DEB0000,"Assassin's Creed The Rebel Collection",gpu;status-ingame,ingame,2024-05-19 07:58:56.000 -0100DF200B24C000,"Assault Android Cactus+",status-playable,playable,2021-06-03 13:23:55.000 -,"Assault Chainguns KM",crash;gpu;status-ingame,ingame,2020-12-14 12:48:34.000 -0100C5E00E540000,"Assault on Metaltron Demo",status-playable,playable,2021-02-10 19:48:06.000 -010057A00C1F6000,"Astebreed",status-playable,playable,2022-07-21 17:33:54.000 -010050400BD38000,"Asterix & Obelix XXL 2",deadlock;status-ingame;nvdec,ingame,2022-07-21 17:54:14.000 -0100F46011B50000,"Asterix & Obelix XXL: Romastered",gpu;status-ingame;nvdec;opengl,ingame,2023-08-16 21:22:06.000 -010081500EA1E000,"Asterix & Obelix XXL3: The Crystal Menhir",gpu;status-ingame;nvdec;regression,ingame,2022-11-28 14:19:23.000 -01007300020FA000,"Astral Chain",status-playable,playable,2024-07-17 18:02:19.000 -,"Astro Bears Party",status-playable,playable,2020-05-28 11:21:58.000 -0100F0400351C000,"Astro Duel Deluxe",32-bit;status-playable,playable,2021-06-03 11:21:48.000 -0100B80010C48000,"Astrologaster",cpu;status-nothing;32-bit;crash,nothing,2023-06-28 15:39:31.000 -,"AstroWings SpaceWar",status-playable,playable,2020-12-14 13:10:44.000 -010099801870E000,"Atari 50 The Anniversary Celebration",slow;status-playable,playable,2022-11-14 19:42:10.000 -0100D9D00EE8C000,"Atelier Ayesha: The Alchemist of Dusk DX",status-menus;crash;nvdec;Needs Update,menus,2021-11-24 07:29:54.000 -0100E5600EE8E000,"Atelier Escha & Logy: Alchemists Of The Dusk Sky DX",status-playable;nvdec,playable,2022-11-20 16:01:41.000 -010023201421E000,"Atelier Firis: The Alchemist and the Mysterious Journey DX",gpu;status-ingame;nvdec,ingame,2022-10-25 22:46:19.000 -,"Atelier Lulua ~ The Scion of Arland ~",nvdec;status-playable,playable,2020-12-16 14:29:19.000 -010009900947A000,"Atelier Lydie & Suelle: The Alchemists and the Mysterious Paintings",nvdec;status-playable,playable,2021-06-03 18:37:01.000 -,"Atelier Meruru ~ The Apprentice of Arland ~ DX",nvdec;status-playable,playable,2020-06-12 00:50:48.000 -010088600C66E000,"Atelier Rorona - The Alchemist of Arland - DX",nvdec;status-playable,playable,2021-04-08 15:33:15.000 -01002D700B906000,"Atelier Rorona Arland no Renkinjutsushi DX (JP)",status-playable;nvdec,playable,2022-12-02 17:26:54.000 -01009A9012022000,"Atelier Ryza 2: Lost Legends & the Secret Fairy",status-playable,playable,2022-10-16 21:06:06.000 -0100D1900EC80000,"Atelier Ryza: Ever Darkness & the Secret Hideout",status-playable,playable,2023-10-15 16:36:50.000 -,"Atelier Shallie: Alchemists of the Dusk Sea DX",nvdec;status-playable,playable,2020-11-25 20:54:12.000 -010082A01538E000,"Atelier Sophie 2: The Alchemist of the Mysterious Dream",status-ingame;crash,ingame,2022-12-01 04:34:03.000 -01001A5014220000,"Atelier Sophie: The Alchemist of the Mysterious Book DX",status-playable,playable,2022-10-25 23:06:20.000 -,"Atelier Totori ~ The Adventurer of Arland ~ DX",nvdec;status-playable,playable,2020-06-12 01:04:56.000 -0100B9400FA38000,"ATOM RPG",status-playable;nvdec,playable,2022-10-22 10:11:48.000 -01005FE00EC4E000,"Atomic Heist",status-playable,playable,2022-10-16 21:24:32.000 -0100AD30095A4000,"Atomicrops",status-playable,playable,2022-08-06 10:05:07.000 -,"ATOMIK RunGunJumpGun",status-playable,playable,2020-12-14 13:19:24.000 -,"ATOMINE",gpu;nvdec;slow;status-playable,playable,2020-12-14 18:56:50.000 -,"Attack of the Toy Tanks",slow;status-ingame,ingame,2020-12-14 12:59:12.000 -,"Attack on Titan 2",status-playable,playable,2021-01-04 11:40:01.000 -01000F600B01E000,"ATV Drift & Tricks",UE4;online;status-playable,playable,2021-04-08 17:29:17.000 -,"Automachef",status-playable,playable,2020-12-16 19:51:25.000 -01006B700EA6A000,"Automachef Demo",status-playable,playable,2021-02-10 20:35:37.000 -,"Aviary Attorney: Definitive Edition",status-playable,playable,2020-08-09 20:32:12.000 -,"Avicii Invector",status-playable,playable,2020-10-25 12:12:56.000 -0100E100128BA000,"AVICII Invector Demo",status-playable,playable,2021-02-10 21:04:58.000 -,"AvoCuddle",status-playable,playable,2020-09-02 14:50:13.000 -0100085012D64000,"Awakening of Cthulhu",UE4;status-playable,playable,2021-04-26 13:03:07.000 -01002F1005F3C000,"Away: Journey to the Unexpected",status-playable;nvdec;vulkan-backend-bug,playable,2022-11-06 15:31:04.000 -,"Awesome Pea",status-playable,playable,2020-10-11 12:39:23.000 -010023800D3F2000,"Awesome Pea (Demo)",status-playable,playable,2021-02-10 21:48:21.000 -0100B7D01147E000,"Awesome Pea 2",status-playable,playable,2022-10-01 12:34:19.000 -,"Awesome Pea 2 (Demo) - 0100D2011E28000",crash;status-nothing,nothing,2021-02-10 22:08:27.000 -0100DA3011174000,"Axes",status-playable,playable,2021-04-08 13:01:58.000 -,"Axiom Verge",status-playable,playable,2020-10-20 01:07:18.000 -010075400DEC6000,"Ayakashi koi gikyoku Free Trial",status-playable,playable,2021-02-10 22:22:11.000 -01006AF012FC8000,"Azur Lane: Crosswave",UE4;nvdec;status-playable,playable,2021-04-05 15:15:25.000 -,"Azuran Tales: Trials",status-playable,playable,2020-08-12 15:23:07.000 -01006FB00990E000,"Azure Reflections",nvdec;online;status-playable,playable,2021-04-08 13:18:25.000 -01004E90149AA000,"Azure Striker GUNVOLT 3",status-playable,playable,2022-08-10 13:46:49.000 -0100192003FA4000,"Azure Striker Gunvolt: STRIKER PACK",32-bit;status-playable,playable,2024-02-10 23:51:21.000 -,"Azurebreak Heroes",status-playable,playable,2020-12-16 21:26:17.000 -01009B901145C000,"B.ARK",status-playable;nvdec,playable,2022-11-17 13:35:02.000 -01002CD00A51C000,"Baba Is You",status-playable,playable,2022-07-17 05:36:54.000 -,"Back to Bed",nvdec;status-playable,playable,2020-12-16 20:52:04.000 -0100FEA014316000,"Backworlds",status-playable,playable,2022-10-25 23:20:34.000 -0100EAF00E32E000,"BaconMan",status-menus;crash;nvdec,menus,2021-11-20 02:36:21.000 -01000CB00D094000,"Bad Dream: Coma",deadlock;status-boots,boots,2023-08-03 00:54:18.000 -0100B3B00D81C000,"Bad Dream: Fever",status-playable,playable,2021-06-04 18:33:12.000 -,"Bad Dudes",status-playable,playable,2020-12-10 12:30:56.000 -0100E98006F22000,"Bad North",status-playable,playable,2022-07-17 13:44:25.000 -,"Bad North Demo",status-playable,playable,2021-02-10 22:48:38.000 -,"BAFL",status-playable,playable,2021-01-13 08:32:51.000 -010076B011EC8000,"Baila Latino",status-playable,playable,2021-04-14 16:40:24.000 -,"Bakugan Champions of Vestroia",status-playable,playable,2020-11-06 19:07:39.000 -01008260138C4000,"Bakumatsu Renka SHINSENGUMI",status-playable,playable,2022-10-25 23:37:31.000 -0100438012EC8000,"Balan Wonderworld",status-playable;nvdec;UE4,playable,2022-10-22 13:08:43.000 -0100E48013A34000,"Balan Wonderworld Demo",gpu;services;status-ingame;UE4;demo,ingame,2023-02-16 20:05:07.000 -0100CD801CE5E000,"Balatro",status-ingame,ingame,2024-04-21 02:01:53.000 -010010A00DA48000,"Baldur's Gate and Baldur's Gate II: Enhanced Editions",32-bit;status-playable,playable,2022-09-12 23:52:15.000 -0100BC400FB64000,"Balthazar's Dreams",status-playable,playable,2022-09-13 00:13:22.000 -01008D30128E0000,"Bamerang",status-playable,playable,2022-10-26 00:29:39.000 -,"Bang Dream Girls Band Party for Nintendo Switch",status-playable,playable,2021-09-19 03:06:58.000 -010013C010C5C000,"Banner of the Maid",status-playable,playable,2021-06-14 15:23:37.000 -,"Banner Saga 2",crash;status-boots,boots,2021-01-13 08:56:09.000 -,"Banner Saga 3",slow;status-boots,boots,2021-01-11 16:53:57.000 -0100CE800B94A000,"Banner Saga Trilogy",slow;status-playable,playable,2024-03-06 11:25:20.000 -,"Baobabs Mauseoleum Ep 1: Ovnifagos Don't Eat Flamingos",status-playable,playable,2020-07-15 05:06:29.000 -,"Baobabs Mausoleum Ep.3: Un Pato en Muertoburgo",nvdec;status-playable,playable,2020-12-17 11:43:10.000 -,"Baobabs Mausoleum Ep2: 1313 Barnabas Dead Ends Drive",status-playable,playable,2020-12-17 11:22:50.000 -0100D3000AEC2000,"Baobabs Mausoleum: DEMO",status-playable,playable,2021-02-10 22:59:25.000 -01003350102E2000,"Barbarous! Tavern of Emyr",status-playable,playable,2022-10-16 21:50:24.000 -0100F7E01308C000,"Barbearian",Needs Update;gpu;status-ingame,ingame,2021-06-28 16:27:50.000 -010039C0106C6000,"Baron: Fur Is Gonna Fly",status-boots;crash,boots,2022-02-06 02:05:43.000 -,"Barry Bradford's Putt Panic Party",nvdec;status-playable,playable,2020-06-17 01:08:34.000 -01004860080A0000,"Baseball Riot",status-playable,playable,2021-06-04 18:07:27.000 -0100E3100450E000,"Bass Pro Shops: The Strike - Championship Edition",gpu;status-boots;32-bit,boots,2022-12-09 15:58:16.000 -010038600B27E000,"Bastion",status-playable,playable,2022-02-15 14:15:24.000 -,"Batbarian: Testament of the Primordials",status-playable,playable,2020-12-17 12:00:59.000 -0100C07018CA6000,"Baten Kaitos I & II HD Remaster (Europe/USA)",services;status-boots;Needs Update,boots,2023-10-01 00:44:32.000 -0100F28018CA4000,"Baten Kaitos I & II HD Remaster (Japan)",services;status-boots;Needs Update,boots,2023-10-24 23:11:54.000 -,"Batman - The Telltale Series",nvdec;slow;status-playable,playable,2021-01-11 18:19:35.000 -01003f00163ce000,"Batman: Arkham City",status-playable,playable,2024-09-11 00:30:19.000 -0100ACD0163D0000,"Batman: Arkham Knight",gpu;status-ingame;mac-bug,ingame,2024-06-25 20:24:42.000 -,"Batman: The Enemy Within",crash;status-nothing,nothing,2020-10-16 05:49:27.000 -0100747011890000,"Battle Axe",status-playable,playable,2022-10-26 00:38:01.000 -,"Battle Chasers: Nightwar",nvdec;slow;status-playable,playable,2021-01-12 12:27:34.000 -,"Battle Chef Brigade",status-playable,playable,2021-01-11 14:16:28.000 -0100DBB00CAEE000,"Battle Chef Brigade Demo",status-playable,playable,2021-02-10 23:15:07.000 -0100A3B011EDE000,"Battle Hunters",gpu;status-ingame,ingame,2022-11-12 09:19:17.000 -,"Battle of Kings",slow;status-playable,playable,2020-12-17 12:45:23.000 -,"Battle Planet - Judgement Day",status-playable,playable,2020-12-17 14:06:20.000 -,"Battle Princess Madelyn",status-playable,playable,2021-01-11 13:47:23.000 -0100A7500DF64000,"Battle Princess Madelyn Royal Edition",status-playable,playable,2022-09-26 19:14:49.000 -010099B00E898000,"Battle Supremacy - Evolution",gpu;status-boots;nvdec,boots,2022-02-17 09:02:50.000 -0100DEB00D5A8000,"Battle Worlds: Kronos",nvdec;status-playable,playable,2021-06-04 17:48:02.000 -0100650010DD4000,"Battleground",status-ingame;crash,ingame,2021-09-06 11:53:23.000 -,"BATTLESLOTHS",status-playable,playable,2020-10-03 08:32:22.000 -,"BATTLESTAR GALACTICA Deadlock",nvdec;status-playable,playable,2020-06-27 17:35:44.000 -01006D800A988000,"Battlezone Gold Edition",gpu;ldn-untested;online;status-boots,boots,2021-06-04 18:36:05.000 -,"BATTLLOON",status-playable,playable,2020-12-17 15:48:23.000 -0100194010422000,"bayala - the game",status-playable,playable,2022-10-04 14:09:25.000 -010076F0049A2000,"Bayonetta",status-playable;audout,playable,2022-11-20 15:51:59.000 -01007960049A0000,"Bayonetta 2",status-playable;nvdec;ldn-works;LAN,playable,2022-11-26 03:46:09.000 -01004A4010FEA000,"Bayonetta 3",gpu;status-ingame;crash;nvdec;vulkan-backend-bug;opengl-backend-bug;amd-vendor-bug;ASTC,ingame,2024-09-28 14:34:33.000 -010002801A3FA000,"Bayonetta Origins Cereza and the Lost Demon Demo",gpu;status-ingame;demo,ingame,2024-02-17 06:06:28.000 -0100CF5010FEC000,"Bayonetta Origins: Cereza and the Lost Demon",gpu;status-ingame,ingame,2024-02-27 01:39:49.000 -,"Be-A Walker",slow;status-ingame,ingame,2020-09-02 15:00:31.000 -010095C00406C000,"Beach Buggy Racing",online;status-playable,playable,2021-04-13 23:16:50.000 -010020700DE04000,"Bear With Me - The Lost Robots",nvdec;status-playable,playable,2021-02-27 14:20:10.000 -010024200E97E800,"Bear With Me - The Lost Robots Demo",nvdec;status-playable,playable,2021-02-12 22:38:12.000 -,"Bear's Restaurant - 0100CE014A4E000",status-playable,playable,2024-08-11 21:26:59.000 -,"BEAST Darling! ~Kemomimi Danshi to Himitsu no Ryou~",crash;status-menus,menus,2020-10-04 06:12:08.000 -,"Beat Cop",status-playable,playable,2021-01-06 19:26:48.000 -01002D20129FC000,"Beat Me!",status-playable;online-broken,playable,2022-10-16 21:59:26.000 -01006B0014590000,"Beautiful Desolation",gpu;status-ingame;nvdec,ingame,2022-10-26 10:34:38.000 -,"Bee Simulator",UE4;crash;status-boots,boots,2020-07-15 12:13:13.000 -010018F007786000,"BeeFense BeeMastered",status-playable,playable,2022-11-17 15:38:12.000 -,"Behold the Kickmen",status-playable,playable,2020-06-27 12:49:45.000 -,"Beholder",status-playable,playable,2020-10-16 12:48:58.000 -01006E1004404000,"Ben 10",nvdec;status-playable,playable,2021-02-26 14:08:35.000 -01009CD00E3AA000,"Ben 10: Power Trip",status-playable;nvdec,playable,2022-10-09 10:52:12.000 -010074500BBC4000,"Bendy and the Ink Machine",status-playable,playable,2023-05-06 20:35:39.000 -010021F00C1C0000,"Bertram Fiddle Episode 2: A Bleaker Predicklement",nvdec;status-playable,playable,2021-02-22 14:56:37.000 -010068600AD16000,"Beyblade Burst Battle Zero",services;status-menus;crash;Needs Update,menus,2022-11-20 15:48:32.000 -010056500CAD8000,"Beyond Enemy Lines: Covert Operations",status-playable;UE4,playable,2022-10-01 13:11:50.000 -0100B8F00DACA000,"Beyond Enemy Lines: Essentials",status-playable;nvdec;UE4,playable,2022-09-26 19:48:16.000 -,"Bibi & Tina - Adventures with Horses",nvdec;slow;status-playable,playable,2021-01-13 08:58:09.000 -010062400E69C000,"Bibi & Tina at the horse farm",status-playable,playable,2021-04-06 16:31:39.000 -,"Bibi Blocksberg - Big Broom Race 3",status-playable,playable,2021-01-11 19:07:16.000 -,"Big Buck Hunter Arcade",nvdec;status-playable,playable,2021-01-12 20:31:39.000 -010088100C35E000,"Big Crown: Showdown",status-menus;nvdec;online;ldn-untested,menus,2022-07-17 18:25:32.000 -0100A42011B28000,"Big Dipper",status-playable,playable,2021-06-14 15:08:19.000 -01002FA00DE72000,"Big Drunk Satanic Massacre",status-playable,playable,2021-03-04 21:28:22.000 -,"Big Pharma",status-playable,playable,2020-07-14 15:27:30.000 -,"BIG-Bobby-Car - The Big Race",slow;status-playable,playable,2020-12-10 14:25:06.000 -010057700FF7C000,"Billion Road",status-playable,playable,2022-11-19 15:57:43.000 -,"BINGO for Nintendo Switch",status-playable,playable,2020-07-23 16:17:36.000 -01004BA017CD6000,"Biomutant",status-ingame;crash,ingame,2024-05-16 15:46:36.000 -01002620102C6000,"BioShock 2 Remastered",services;status-nothing,nothing,2022-10-29 14:39:22.000 -0100D560102C8000,"BioShock Infinite: The Complete Edition",services-horizon;status-nothing;crash,nothing,2024-08-11 21:35:01.000 -0100AD10102B2000,"BioShock Remastered",services-horizon;status-boots;crash;Needs Update,boots,2024-06-06 01:08:52.000 -010053B0117F8000,"Biped",status-playable;nvdec,playable,2022-10-01 13:32:58.000 -01001B700B278000,"Bird Game +",status-playable;online,playable,2022-07-17 18:41:57.000 -0100B6B012FF4000,"Birds and Blocks Demo",services;status-boots;demo,boots,2022-04-10 04:53:03.000 -0100E62012D3C000,"BIT.TRIP RUNNER",status-playable,playable,2022-10-17 14:23:24.000 -01000AD012D3A000,"BIT.TRIP VOID",status-playable,playable,2022-10-17 14:31:23.000 -,"Bite the Bullet",status-playable,playable,2020-10-14 23:10:11.000 -010026E0141C8000,"Bitmaster",status-playable,playable,2022-12-13 14:05:51.000 -,"Biz Builder Delux",slow;status-playable,playable,2020-12-15 21:36:25.000 -0100DD1014AB8000,"Black Book",status-playable;nvdec,playable,2022-12-13 16:38:53.000 -010049000B69E000,"Black Future '88",status-playable;nvdec,playable,2022-09-13 11:24:37.000 -01004BE00A682000,"Black Hole Demo",status-playable,playable,2021-02-12 23:02:17.000 -0100C3200E7E6000,"Black Legend",gpu;status-ingame;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-10-22 12:54:48.000 -,"Blackjack Hands",status-playable,playable,2020-11-30 14:04:51.000 -0100A0A00E660000,"Blackmoor2",status-playable;online-broken,playable,2022-09-26 20:26:34.000 -010032000EA2C000,"Blacksad: Under the Skin",status-playable,playable,2022-09-13 11:38:04.000 -01006B400C178000,"Blacksea Odyssey",status-playable;nvdec,playable,2022-10-16 22:14:34.000 -010068E013450000,"Blacksmith of the Sand Kingdom",status-playable,playable,2022-10-16 22:37:44.000 -0100C4400CB7C000,"BLADE ARCUS Rebellion From Shining",status-playable,playable,2022-07-17 18:52:28.000 -0100EA1018A2E000,"Blade Assault",audio;status-nothing,nothing,2024-04-29 14:32:50.000 -01009CC00E224000,"Blade II The Return of Evil",audio;status-ingame;crash;UE4,ingame,2021-11-14 02:49:59.000 -01005950022EC000,"Blade Strangers",status-playable;nvdec,playable,2022-07-17 19:02:43.000 -0100DF0011A6A000,"Bladed Fury",status-playable,playable,2022-10-26 11:36:26.000 -0100CFA00CC74000,"Blades of Time",deadlock;status-boots;online,boots,2022-07-17 19:19:58.000 -01006CC01182C000,"Blair Witch",status-playable;nvdec;UE4,playable,2022-10-01 14:06:16.000 -010039501405E000,"Blanc",gpu;slow;status-ingame,ingame,2023-02-22 14:00:13.000 -0100698009C6E000,"Blasphemous",nvdec;status-playable,playable,2021-03-01 12:15:31.000 -0100302010338000,"Blasphemous Demo",status-playable,playable,2021-02-12 23:49:56.000 -0100225000FEE000,"Blaster Master Zero",32-bit;status-playable,playable,2021-03-05 13:22:33.000 -01005AA00D676000,"Blaster Master Zero 2",status-playable,playable,2021-04-08 15:22:59.000 -010025B002E92000,"Blaster Master Zero DEMO",status-playable,playable,2021-02-12 23:59:06.000 -,"BLAZBLUE CENTRALFICTION Special Edition",nvdec;status-playable,playable,2020-12-15 23:50:04.000 -,"BlazBlue: Cross Tag Battle",nvdec;online;status-playable,playable,2021-01-05 20:29:37.000 -,"Blazing Beaks",status-playable,playable,2020-06-04 20:37:06.000 -,"Blazing Chrome",status-playable,playable,2020-11-16 04:56:54.000 -010091700EA2A000,"Bleep Bloop DEMO",nvdec;status-playable,playable,2021-02-13 00:20:53.000 -010089D011310000,"Blind Men",audout;status-playable,playable,2021-02-20 14:15:38.000 -0100743013D56000,"Blizzard Arcade Collection",status-playable;nvdec,playable,2022-08-03 19:37:26.000 -0100F3500A20C000,"BlobCat",status-playable,playable,2021-04-23 17:09:30.000 -0100E1C00DB6C000,"Block-a-Pix Deluxe Demo",status-playable,playable,2021-02-13 00:37:39.000 -0100C6A01AD56000,"Bloo Kid",status-playable,playable,2024-05-01 17:18:04.000 -010055900FADA000,"Bloo Kid 2",status-playable,playable,2024-05-01 17:16:57.000 -,"Blood & Guts Bundle",status-playable,playable,2020-06-27 12:57:35.000 -01007E700D17E000,"Blood Waves",gpu;status-ingame,ingame,2022-07-18 13:04:46.000 -,"Blood will be Spilled",nvdec;status-playable,playable,2020-12-17 03:02:03.000 -,"Bloodstained: Curse of the Moon",status-playable,playable,2020-09-04 10:42:17.000 -,"Bloodstained: Curse of the Moon 2",status-playable,playable,2020-09-04 10:56:27.000 -010025A00DF2A000,"Bloodstained: Ritual of the Night",status-playable;nvdec;UE4,playable,2022-07-18 14:27:35.000 -0100E510143EC000,"Bloody Bunny : The Game",status-playable;nvdec;UE4,playable,2022-10-22 13:18:55.000 -0100B8400A1C6000,"Bloons TD 5",Needs Update;audio;gpu;services;status-boots,boots,2021-04-18 23:02:46.000 -0100C1000706C000,"Blossom Tales",status-playable,playable,2022-07-18 16:43:07.000 -01000EB01023E000,"Blossom Tales Demo",status-playable,playable,2021-02-13 14:22:53.000 -010073B010F6E000,"Blue Fire",status-playable;UE4,playable,2022-10-22 14:46:11.000 -0100721013510000,"Body of Evidence",status-playable,playable,2021-04-25 22:22:11.000 -0100AD1010CCE000,"Bohemian Killing",status-playable;vulkan-backend-bug,playable,2022-09-26 22:41:37.000 -010093700ECEC000,"Boku to Nurse no Kenshuu Nisshi",status-playable,playable,2022-11-21 20:38:34.000 -01001D900D9AC000,"Bokujou Monogatari Saikai no Mineraru Taun (Story of Seasons: Friends of Mineral Town)",slow;status-ingame;crash;Needs Update,ingame,2022-04-24 22:46:04.000 -0100317014B7C000,"Bomb Rush Cyberfunk",status-playable,playable,2023-09-28 19:51:57.000 -01007900080B6000,"Bomber Crew",status-playable,playable,2021-06-03 14:21:28.000 -0100A1F012948000,"Bomber Fox",nvdec;status-playable,playable,2021-04-19 17:58:13.000 -010087300445A000,"Bombslinger",services;status-menus,menus,2022-07-19 12:53:15.000 -01007A200F452000,"Book of Demons",status-playable,playable,2022-09-29 12:03:43.000 -,"Bookbound Brigade",status-playable,playable,2020-10-09 14:30:29.000 -,"Boom Blaster",status-playable,playable,2021-03-24 10:55:56.000 -010081A00EE62000,"Boomerang Fu",status-playable,playable,2024-07-28 01:12:41.000 -010069F0135C4000,"Boomerang Fu Demo Version",demo;status-playable,playable,2021-02-13 14:38:13.000 -010096F00FF22000,"Borderlands 2: Game of the Year Edition",status-playable,playable,2022-04-22 18:35:07.000 -01009970122E4000,"Borderlands 3",gpu;status-ingame,ingame,2024-07-15 04:38:14.000 -010064800F66A000,"Borderlands: Game of the Year Edition",slow;status-ingame;online-broken;ldn-untested,ingame,2023-07-23 21:10:36.000 -010007400FF24000,"Borderlands: The Pre-Sequel Ultimate Edition",nvdec;status-playable,playable,2021-06-09 20:17:10.000 -01008E500AFF6000,"Boreal Blade",gpu;ldn-untested;online;status-ingame,ingame,2021-06-11 15:37:14.000 -010092C013FB8000,"Boris The Rocket",status-playable,playable,2022-10-26 13:23:09.000 -010076F00EBE4000,"Bossgard",status-playable;online-broken,playable,2022-10-04 14:21:13.000 -010069B00EAC8000,"Bot Vice Demo",crash;demo;status-ingame,ingame,2021-02-13 14:52:42.000 -,"Bouncy Bob 2",status-playable,playable,2020-07-14 16:51:53.000 -0100E1200DC1A000,"Bounty Battle",status-playable;nvdec,playable,2022-10-04 14:40:51.000 -,"Bow to Blood: Last Captain Standing",slow;status-playable,playable,2020-10-23 10:51:21.000 -,"BOX Align",crash;services;status-nothing,nothing,2020-04-03 17:26:56.000 -,"BOXBOY! + BOXGIRL!",status-playable,playable,2020-11-08 01:11:54.000 -0100B7200E02E000,"BOXBOY! + BOXGIRL! Demo",demo;status-playable,playable,2021-02-13 14:59:08.000 -,"BQM BlockQuest Maker",online;status-playable,playable,2020-07-31 20:56:50.000 -0100E87017D0E000,"Bramble The Mountain King",services-horizon;status-playable,playable,2024-03-06 09:32:17.000 -,"Brave Dungeon + Dark Witch's Story: COMBAT",status-playable,playable,2021-01-12 21:06:34.000 -01006DC010326000,"Bravely Default II",gpu;status-ingame;crash;Needs Update;UE4,ingame,2024-04-26 06:11:26.000 -0100B6801137E000,"Bravely Default II Demo",gpu;status-ingame;crash;UE4;demo,ingame,2022-09-27 05:39:47.000 -010081501371E000,"BraveMatch",status-playable;UE4,playable,2022-10-26 13:32:15.000 -0100F60017D4E000,"Bravery and Greed",gpu;deadlock;status-boots,boots,2022-12-04 02:23:47.000 -,"Brawl",nvdec;slow;status-playable,playable,2020-06-04 14:23:18.000 -010068F00F444000,"Brawl Chess",status-playable;nvdec,playable,2022-10-26 13:59:17.000 -0100C6800B934000,"Brawlhalla",online;opengl;status-playable,playable,2021-06-03 18:26:09.000 -010060200A4BE000,"Brawlout",ldn-untested;online;status-playable,playable,2021-06-04 17:35:35.000 -0100C1B00E1CA000,"Brawlout Demo",demo;status-playable,playable,2021-02-13 22:46:53.000 -010022C016DC8000,"Breakout: Recharged",slow;status-ingame,ingame,2022-11-06 15:32:57.000 -01000AA013A5E000,"Breathedge",UE4;nvdec;status-playable,playable,2021-05-06 15:44:28.000 -,"Breathing Fear",status-playable,playable,2020-07-14 15:12:29.000 -,"Brick Breaker",crash;status-ingame,ingame,2020-12-15 17:03:59.000 -,"Brick Breaker",nvdec;online;status-playable,playable,2020-12-15 18:26:23.000 -,"Bridge 3",status-playable,playable,2020-10-08 20:47:24.000 -,"Bridge Constructor: The Walking Dead",gpu;slow;status-ingame,ingame,2020-12-11 17:31:32.000 -010011000EA7A000,"Brigandine: The Legend of Runersia",status-playable,playable,2021-06-20 06:52:25.000 -0100703011258000,"Brigandine: The Legend of Runersia Demo",status-playable,playable,2021-02-14 14:44:10.000 -01000BF00BE40000,"Bring Them Home",UE4;status-playable,playable,2021-04-12 14:14:43.000 -010060A00B53C000,"Broforce",ldn-untested;online;status-playable,playable,2021-05-28 12:23:38.000 -0100EDD0068A6000,"Broken Age",status-playable,playable,2021-06-04 17:40:32.000 -,"Broken Lines",status-playable,playable,2020-10-16 00:01:37.000 -01001E60085E6000,"Broken Sword 5 - the Serpent's Curse",status-playable,playable,2021-06-04 17:28:59.000 -0100F19011226000,"Brotherhood United Demo",demo;status-playable,playable,2021-02-14 21:10:57.000 -01000D500D08A000,"Brothers: A Tale of Two Sons",status-playable;nvdec;UE4,playable,2022-07-19 14:02:22.000 -,"Brunch Club",status-playable,playable,2020-06-24 13:54:07.000 -010010900F7B4000,"Bubble Bobble 4 Friends",nvdec;status-playable,playable,2021-06-04 15:27:55.000 -0100DBE00C554000,"Bubsy: Paws on Fire!",slow;status-ingame,ingame,2023-08-24 02:44:51.000 -,"Bucket Knight",crash;status-ingame,ingame,2020-09-04 13:11:24.000 -0100F1B010A90000,"Bucket Knight demo",demo;status-playable,playable,2021-02-14 21:23:09.000 -01000D200AC0C000,"Bud Spencer & Terence Hill - Slaps and Beans",status-playable,playable,2022-07-17 12:37:00.000 -,"Bug Fables",status-playable,playable,2020-06-09 11:27:00.000 -01003DD00D658000,"BULLETSTORM: DUKE OF SWITCH EDITION",status-playable;nvdec,playable,2022-03-03 08:30:24.000 -,"BurgerTime Party!",slow;status-playable,playable,2020-11-21 14:11:53.000 -01005780106E8000,"BurgerTime Party! Demo",demo;status-playable,playable,2021-02-14 21:34:16.000 -,"Buried Stars",status-playable,playable,2020-09-07 14:11:58.000 -0100DBF01000A000,"Burnout Paradise Remastered",nvdec;online;status-playable,playable,2021-06-13 02:54:46.000 -,"Bury me, my Love",status-playable,playable,2020-11-07 12:47:37.000 -010030D012FF6000,"Bus Driver Simulator",status-playable,playable,2022-10-17 13:55:27.000 -,"BUSTAFELLOWS",nvdec;status-playable,playable,2020-10-17 20:04:41.000 -,"BUTCHER",status-playable,playable,2021-01-11 18:50:17.000 -0100E24004510000,"Cabela's: The Hunt - Championship Edition",status-menus;32-bit,menus,2022-07-21 20:21:25.000 -01000B900D8B0000,"Cadence of Hyrule Crypt of the NecroDancer Featuring The Legend of Zelda",slow;status-playable;nvdec,playable,2024-04-01 22:43:40.000 -,"Cadence of Hyrule Crypt of the NecroDancer Featuring The Legend of Zelda Demo - 010065700EE0600",demo;gpu;nvdec;status-ingame,ingame,2021-02-14 21:48:15.000 -,"Café Enchanté",status-playable,playable,2020-11-13 14:54:25.000 -010060400D21C000,"Cafeteria Nipponica Demo",demo;status-playable,playable,2021-02-14 22:11:35.000 -0100699012F82000,"Cake Bash Demo",crash;demo;status-ingame,ingame,2021-02-14 22:21:15.000 -01004FD00D66A000,"Caladrius Blaze",deadlock;status-nothing;nvdec,nothing,2022-12-07 16:44:37.000 -,"Calculation Castle: Greco's Ghostly Challenge ""Addition",32-bit;status-playable,playable,2020-11-01 23:40:11.000 -,"Calculation Castle: Greco's Ghostly Challenge ""Division",32-bit;status-playable,playable,2020-11-01 23:54:55.000 -,"Calculation Castle: Greco's Ghostly Challenge ""Multiplication",32-bit;status-playable,playable,2020-11-02 00:04:33.000 -,"Calculation Castle: Greco's Ghostly Challenge ""Subtraction",32-bit;status-playable,playable,2020-11-01 23:47:42.000 -010004701504A000,"Calculator",status-playable,playable,2021-06-11 13:27:20.000 -010013A00E750000,"Calico",status-playable,playable,2022-10-17 14:44:28.000 -010046000EE40000,"Call of Cthulhu",status-playable;nvdec;UE4,playable,2022-12-18 03:08:30.000 -0100B4700BFC6000,"Call of Juarez: Gunslinger",gpu;status-ingame;nvdec,ingame,2022-09-17 16:49:46.000 -0100593008BDC000,"Can't Drive This",status-playable,playable,2022-10-22 14:55:17.000 -,"Candle - The Power of the Flame",nvdec;status-playable,playable,2020-05-26 12:10:20.000 -01001E0013208000,"Capcom Arcade Stadium",status-playable,playable,2021-03-17 05:45:14.000 -,"Capcom Beat 'Em Up Bundle",status-playable,playable,2020-03-23 18:31:24.000 -0100F6400A77E000,"CAPCOM BELT ACTION COLLECTION",status-playable;online;ldn-untested,playable,2022-07-21 20:51:23.000 -01009BF0072D4000,"Captain Toad: Treasure Tracker",32-bit;status-playable,playable,2024-04-25 00:50:16.000 -01002C400B6B6000,"Captain Toad: Treasure Tracker Demo",32-bit;demo;status-playable,playable,2021-02-14 22:36:09.000 -0100EAE010560000,"CAPTAIN TSUBASA: RISE OF NEW CHAMPIONS",status-playable;online-broken;vulkan-backend-bug,playable,2022-10-09 11:20:50.000 -01002320137CC000,"CAPTAIN TSUBASA: RISE OF NEW CHAMPIONS DEMO VERSION",slow;status-playable,playable,2021-02-14 22:45:35.000 -,"Car Mechanic Manager",status-playable,playable,2020-07-23 18:50:17.000 -01007BD00AE70000,"Car Quest",deadlock;status-menus,menus,2021-11-18 08:59:18.000 -0100DA70115E6000,"Caretaker",status-playable,playable,2022-10-04 14:52:24.000 -0100DD6014870000,"Cargo Crew Driver",status-playable,playable,2021-04-19 12:54:22.000 -010088C0092FE000,"Carnival Games",status-playable;nvdec,playable,2022-07-21 21:01:22.000 -,"Carnivores: Dinosaur Hunt",status-playable,playable,2022-12-14 18:46:06.000 -,"CARRION",crash;status-nothing,nothing,2020-08-13 17:15:12.000 -01008D1001512000,"Cars 3 Driven to Win",gpu;status-ingame,ingame,2022-07-21 21:21:05.000 -0100810012A1A000,"Carto",status-playable,playable,2022-09-04 15:37:06.000 -0100C4E004406000,"Cartoon Network Adventure Time: Pirates of the Enchiridion",status-playable;nvdec,playable,2022-07-21 21:49:01.000 -0100085003A2A000,"Cartoon Network Battle Crashers",status-playable,playable,2022-07-21 21:55:40.000 -0100C4C0132F8000,"CASE 2: Animatronics Survival",status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-10-09 11:45:03.000 -010066F01A0E0000,"Cassette Beasts",status-playable,playable,2024-07-22 20:38:43.000 -010001300D14A000,"Castle Crashers Remastered",gpu;status-boots,boots,2024-08-10 09:21:20.000 -0100F6D01060E000,"Castle Crashers Remastered Demo",gpu;status-boots;demo,boots,2022-04-10 10:57:10.000 -01003C100445C000,"Castle of Heart",status-playable;nvdec,playable,2022-07-21 23:10:45.000 -0100F5500FA0E000,"Castle of No Escape 2",status-playable,playable,2022-09-13 13:51:42.000 -0100DA2011F18000,"Castle Pals",status-playable,playable,2021-03-04 21:00:33.000 -010097C00AB66000,"Castlestorm",status-playable;nvdec,playable,2022-07-21 22:49:14.000 -,"CastleStorm 2",UE4;crash;nvdec;status-boots,boots,2020-10-25 11:22:44.000 -,"Castlevania Anniversary Collection",audio;status-playable,playable,2020-05-23 11:40:29.000 -010076000C86E000,"Cat Girl Without Salad: Amuse-Bouche",status-playable,playable,2022-09-03 13:01:47.000 -,"Cat Quest",status-playable,playable,2020-04-02 23:09:32.000 -,"Cat Quest II",status-playable,playable,2020-07-06 23:52:09.000 -0100E86010220000,"Cat Quest II Demo",demo;status-playable,playable,2021-02-15 14:11:57.000 -0100BF00112C0000,"Catherine Full Body",status-playable;nvdec,playable,2023-04-02 11:00:37.000 -0100BAE0077E4000,"Catherine Full Body for Nintendo Switch (JP)",Needs Update;gpu;status-ingame,ingame,2021-02-21 18:06:11.000 -010004400B28A000,"Cattails",status-playable,playable,2021-06-03 14:36:57.000 -,"Cave Story+",status-playable,playable,2020-05-22 09:57:25.000 -01001A100C0E8000,"Caveblazers",slow;status-ingame,ingame,2021-06-09 17:57:28.000 -,"Caveman Warriors",status-playable,playable,2020-05-22 11:44:20.000 -,"Caveman Warriors Demo",demo;status-playable,playable,2021-02-15 14:44:08.000 -,"Celeste",status-playable,playable,2020-06-17 10:14:40.000 -01006B000A666000,"Cendrillon palikA",gpu;status-ingame;nvdec,ingame,2022-07-21 22:52:24.000 -01007600115CE000,"CHAOS CODE -NEW SIGN OF CATASTROPHE-",status-boots;crash;nvdec,boots,2022-04-04 12:24:21.000 -0100957016B90000,"CHAOS;HEAD NOAH",status-playable,playable,2022-06-02 22:57:19.000 -0100F52013A66000,"Charge Kid",gpu;status-boots;audout,boots,2024-02-11 01:17:47.000 -,"Chasm",status-playable,playable,2020-10-23 11:03:43.000 -010034301A556000,"Chasm: The Rift",gpu;status-ingame,ingame,2024-04-29 19:02:48.000 -0100A5900472E000,"Chess Ultra",status-playable;UE4,playable,2023-08-30 23:06:31.000 -0100E3C00A118000,"Chicken Assassin: Reloaded",status-playable,playable,2021-02-20 13:29:01.000 -,"Chicken Police - Paint it RED!",nvdec;status-playable,playable,2020-12-10 15:10:11.000 -0100F6C00A016000,"Chicken Range",status-playable,playable,2021-04-23 12:14:23.000 -,"Chicken Rider",status-playable,playable,2020-05-22 11:31:17.000 -0100CAC011C3A000,"Chickens Madness DEMO",UE4;demo;gpu;nvdec;status-ingame,ingame,2021-02-15 15:02:10.000 -,"Child of Light",nvdec;status-playable,playable,2020-12-16 10:23:10.000 -01002DE00C250000,"Children of Morta",gpu;status-ingame;nvdec,ingame,2022-09-13 17:48:47.000 -,"Children of Zodiarcs",status-playable,playable,2020-10-04 14:23:33.000 -010046F012A04000,"Chinese Parents",status-playable,playable,2021-04-08 12:56:41.000 -01006A30124CA000,"Chocobo GP",gpu;status-ingame;crash,ingame,2022-06-04 14:52:18.000 -,"Chocobo's Mystery Dungeon Every Buddy!",slow;status-playable,playable,2020-05-26 13:53:13.000 -,"Choices That Matter: And The Sun Went Out",status-playable,playable,2020-12-17 15:44:08.000 -,"Chou no Doku Hana no Kusari: Taishou Irokoi Ibun",gpu;nvdec;status-ingame,ingame,2020-09-28 17:58:04.000 -,"ChromaGun",status-playable,playable,2020-05-26 12:56:42.000 -,"Chronos",UE4;gpu;nvdec;status-ingame,ingame,2020-12-11 22:16:35.000 -,"Circle of Sumo",status-playable,playable,2020-05-22 12:45:21.000 -01008FA00D686000,"Circuits",status-playable,playable,2022-09-19 11:52:50.000 -,"Cities: Skylines - Nintendo Switch Edition",status-playable,playable,2020-12-16 10:34:57.000 -0100E4200D84E000,"Citizens of Space",gpu;status-boots,boots,2023-10-22 06:45:44.000 -0100D9C012900000,"Citizens Unite!: Earth x Space",gpu;status-ingame,ingame,2023-10-22 06:44:19.000 -01005E501284E000,"City Bus Driving Simulator",status-playable,playable,2021-06-15 21:25:59.000 -0100A3A00CC7E000,"CLANNAD",status-playable,playable,2021-06-03 17:01:02.000 -,"CLANNAD Side Stories - 01007B01372C000",status-playable,playable,2022-10-26 15:03:04.000 -01005ED0107F4000,"Clash Force",status-playable,playable,2022-10-01 23:45:48.000 -010009300AA6C000,"Claybook",slow;status-playable;nvdec;online;UE4,playable,2022-07-22 11:11:34.000 -,"Clea",crash;status-ingame,ingame,2020-12-15 16:22:56.000 -010045E0142A4000,"Clea 2",status-playable,playable,2021-04-18 14:25:18.000 -01008C100C572000,"Clock Zero ~Shuuen no Ichibyou~ Devote",status-playable;nvdec,playable,2022-12-04 22:19:14.000 -0100DF9013AD4000,"Clocker",status-playable,playable,2021-04-05 15:05:13.000 -0100B7200DAC6000,"Close to the Sun",status-boots;crash;nvdec;UE4,boots,2021-11-04 09:19:41.000 -010047700D540000,"Clubhouse Games: 51 Worldwide Classics",status-playable;ldn-works,playable,2024-05-21 16:12:57.000 -,"Clue",crash;online;status-menus,menus,2020-11-10 09:23:48.000 -,"ClusterPuck 99",status-playable,playable,2021-01-06 00:28:12.000 -010096900A4D2000,"Clustertruck",slow;status-ingame,ingame,2021-02-19 21:07:09.000 -01005790110F0000,"Cobra Kai The Karate Kid Saga Continues",status-playable,playable,2021-06-17 15:59:13.000 -01002E700C366000,"COCOON",gpu;status-ingame,ingame,2024-03-06 11:33:08.000 -010034E005C9C000,"Code of Princess EX",nvdec;online;status-playable,playable,2021-06-03 10:50:13.000 -,"CODE SHIFTER",status-playable,playable,2020-08-09 15:20:55.000 -010002400F408000,"Code: Realize ~Future Blessings~",status-playable;nvdec,playable,2023-03-31 16:57:47.000 -0100CF800C810000,"Coffee Crisis",status-playable,playable,2021-02-20 12:34:52.000 -,"Coffee Talk",status-playable,playable,2020-08-10 09:48:44.000 -0100178009648000,"Coffin Dodgers",status-playable,playable,2021-02-20 14:57:41.000 -010035B01706E000,"Cold Silence",cpu;status-nothing;crash,nothing,2024-07-11 17:06:14.000 -010083E00F40E000,"Collar X Malice",status-playable;nvdec,playable,2022-10-02 11:51:56.000 -0100E3B00F412000,"Collar X Malice -Unlimited-",status-playable;nvdec,playable,2022-10-04 15:30:40.000 -,"Collection of Mana",status-playable,playable,2020-10-19 19:29:45.000 -,"COLLECTION of SaGA FINAL FANTASY LEGEND",status-playable,playable,2020-12-30 19:11:16.000 -010030800BC36000,"Collidalot",status-playable;nvdec,playable,2022-09-13 14:09:27.000 -,"Color Zen",status-playable,playable,2020-05-22 10:56:17.000 -,"Colorgrid",status-playable,playable,2020-10-04 01:50:52.000 -0100A7000BD28000,"Coloring Book",status-playable,playable,2022-07-22 11:17:05.000 -010020500BD86000,"Colors Live",gpu;services;status-boots;crash,boots,2023-02-26 02:51:07.000 -0100E2F0128B4000,"Colossus Down",status-playable,playable,2021-02-04 20:49:50.000 -0100C4D00D16A000,"Commander Keen in Keen Dreams",gpu;status-ingame,ingame,2022-08-04 20:34:20.000 -0100E400129EC000,"Commander Keen in Keen Dreams: Definitive Edition",status-playable,playable,2021-05-11 19:33:54.000 -010065A01158E000,"Commandos 2 HD Remaster",gpu;status-ingame;nvdec,ingame,2022-08-10 21:52:27.000 -010015801308E000,"CONARIUM",UE4;nvdec;status-playable,playable,2021-04-26 17:57:53.000 -0100971011224000,"Concept Destruction",status-playable,playable,2022-09-29 12:28:56.000 -010043700C9B0000,"Conduct TOGETHER!",nvdec;status-playable,playable,2021-02-20 12:59:00.000 -,"Conga Master Party!",status-playable,playable,2020-05-22 13:22:24.000 -,"Connection Haunted",slow;status-playable,playable,2020-12-10 18:57:14.000 -0100A5600FAC0000,"Construction Simulator 3 - Console Edition",status-playable,playable,2023-02-06 09:31:23.000 -,"Constructor Plus",status-playable,playable,2020-05-26 12:37:40.000 -0100DCA00DA7E000,"Contra Anniversary Collection",status-playable,playable,2022-07-22 11:30:12.000 -,"CONTRA: ROGUE CORPS",crash;nvdec;regression;status-menus,menus,2021-01-07 13:23:35.000 -0100B8200ECA6000,"CONTRA: ROGUE CORPS Demo",gpu;status-ingame,ingame,2022-09-04 16:46:52.000 -01007D701298A000,"Contraptions",status-playable,playable,2021-02-08 18:40:50.000 -0100041013360000,"Control Ultimate Edition - Cloud Version",Needs Update;crash;services;status-nothing,nothing,2021-04-18 22:34:06.000 -,"Convoy",status-playable,playable,2020-10-15 14:43:50.000 -0100B82010B6C000,"Cook, Serve, Delicious! 3?!",status-playable,playable,2022-10-09 12:09:34.000 -010060700EFBA000,"Cooking Mama: Cookstar",status-menus;crash;loader-allocator,menus,2021-11-20 03:19:35.000 -01001E400FD58000,"Cooking Simulator",status-playable,playable,2021-04-18 13:25:23.000 -,"Cooking Tycoons 2: 3 in 1 Bundle",status-playable,playable,2020-11-16 22:19:33.000 -,"Cooking Tycoons: 3 in 1 Bundle",status-playable,playable,2020-11-16 22:44:26.000 -,"Copperbell",status-playable,playable,2020-10-04 15:54:36.000 -010016400B1FE000,"Corpse Party: Blood Drive",nvdec;status-playable,playable,2021-03-01 12:44:23.000 -0100CCB01B1A0000,"Cosmic Fantasy Collection",status-ingame,ingame,2024-05-21 17:56:37.000 -010067C00A776000,"Cosmic Star Heroine",status-playable,playable,2021-02-20 14:30:47.000 -01003DD00F94A000,"COTTOn Reboot! [ コットン リブート! ]",status-playable,playable,2022-05-24 16:29:24.000 -,"Cotton/Guardian Saturn Tribute Games",gpu;status-boots,boots,2022-11-27 21:00:51.000 -01000E301107A000,"Couch Co-Op Bundle Vol. 2",status-playable;nvdec,playable,2022-10-02 12:04:21.000 -0100C1E012A42000,"Country Tales",status-playable,playable,2021-06-17 16:45:39.000 -01003370136EA000,"Cozy Grove",gpu;status-ingame,ingame,2023-07-30 22:22:19.000 -010073401175E000,"Crash Bandicoot 4: It's About Time",status-playable;nvdec;UE4,playable,2024-03-17 07:13:45.000 -0100D1B006744000,"Crash Bandicoot N. Sane Trilogy",status-playable,playable,2024-02-11 11:38:14.000 -,"Crash Drive 2",online;status-playable,playable,2020-12-17 02:45:46.000 -,"Crash Dummy",nvdec;status-playable,playable,2020-05-23 11:12:43.000 -0100F9F00C696000,"Crash Team Racing Nitro-Fueled",gpu;status-ingame;nvdec;online-broken,ingame,2023-06-25 02:40:17.000 -0100BF200CD74000,"Crashbots",status-playable,playable,2022-07-22 13:50:52.000 -010027100BD16000,"Crashlands",status-playable,playable,2021-05-27 20:30:06.000 -,"Crawl",status-playable,playable,2020-05-22 10:16:05.000 -0100C66007E96000,"Crayola Scoot",status-playable;nvdec,playable,2022-07-22 14:01:55.000 -01005BA00F486000,"Crayon Shin-chan Ora to Hakase no Natsuyasumi Owaranai Nanokakan no Tabi",status-playable,playable,2021-07-21 10:41:33.000 -,"Crayon Shin-chan The Storm Called Flaming Kasukabe Runner!",services;status-menus,menus,2020-03-20 14:00:57.000 -,"Crazy Strike Bowling EX",UE4;gpu;nvdec;status-ingame,ingame,2020-08-07 18:15:59.000 -,"Crazy Zen Mini Golf",status-playable,playable,2020-08-05 14:00:00.000 -,"Creaks",status-playable,playable,2020-08-15 12:20:52.000 -,"Creature in the Well",UE4;gpu;status-ingame,ingame,2020-11-16 12:52:40.000 -,"Creepy Tale",status-playable,playable,2020-12-15 21:58:03.000 -,"Cresteaju",gpu;status-ingame,ingame,2021-03-24 10:46:06.000 -010022D00D4F0000,"Cricket 19",gpu;status-ingame,ingame,2021-06-14 14:56:07.000 -0100387017100000,"Cricket 22",status-boots;crash,boots,2023-10-18 08:01:57.000 -01005640080B0000,"Crimsonland",status-playable,playable,2021-05-27 20:50:54.000 -0100B0400EBC4000,"Cris Tales",crash;status-ingame,ingame,2021-07-29 15:10:53.000 -01004BC0166CC000,"CRISIS CORE –FINAL FANTASY VII– REUNION",status-playable,playable,2022-12-19 15:53:59.000 -,"Croc's World",status-playable,playable,2020-05-22 11:21:09.000 -,"Croc's World 2",status-playable,playable,2020-12-16 20:01:40.000 -,"Croc's World 3",status-playable,playable,2020-12-30 18:53:26.000 -01000F0007D92000,"Croixleur Sigma",status-playable;online,playable,2022-07-22 14:26:54.000 -01003D90058FC000,"CrossCode",status-playable,playable,2024-02-17 10:23:19.000 -0100B1E00AA56000,"Crossing Souls",nvdec;status-playable,playable,2021-02-20 15:42:54.000 -0100059012BAE000,"Crown Trick",status-playable,playable,2021-06-16 19:36:29.000 -0100B41013C82000,"Cruis'n Blast",gpu;status-ingame,ingame,2023-07-30 10:33:47.000 -01000CC01C108000,"Crymachina Trial Edition ( Demo ) [ クライマキナ ]",status-playable;demo,playable,2023-08-06 05:33:21.000 -0100CEA007D08000,"Crypt of the Necrodancer",status-playable;nvdec,playable,2022-11-01 09:52:06.000 -0100582010AE0000,"Crysis 2 Remastered",deadlock;status-menus,menus,2023-09-21 10:46:17.000 -0100CD3010AE2000,"Crysis 3 Remastered",deadlock;status-menus,menus,2023-09-10 16:03:50.000 -0100E66010ADE000,"Crysis Remastered",status-menus;nvdec,menus,2024-08-13 05:23:24.000 -0100972008234000,"Crystal Crisis",nvdec;status-playable,playable,2021-02-20 13:52:44.000 -,"Cthulhu Saves Christmas",status-playable,playable,2020-12-14 00:58:55.000 -010001600D1E8000,"Cube Creator X",status-menus;crash,menus,2021-11-25 08:53:28.000 -010082E00F1CE000,"Cubers: Arena",status-playable;nvdec;UE4,playable,2022-10-04 16:05:40.000 -010040D011D04000,"Cubicity",status-playable,playable,2021-06-14 14:19:51.000 -0100A5C00D162000,"Cuphead",status-playable,playable,2022-02-01 22:45:55.000 -0100F7E00DFC8000,"Cupid Parasite",gpu;status-ingame,ingame,2023-08-21 05:52:36.000 -,"Curious Cases",status-playable,playable,2020-08-10 09:30:48.000 -0100D4A0118EA000,"Curse of the Dead Gods",status-playable,playable,2022-08-30 12:25:38.000 -0100CE5014026000,"Curved Space",status-playable,playable,2023-01-14 22:03:50.000 -,"Cyber Protocol",nvdec;status-playable,playable,2020-09-28 14:47:40.000 -0100C1F0141AA000,"Cyber Shadow",status-playable,playable,2022-07-17 05:37:41.000 -01006B9013672000,"Cybxus Heart",gpu;slow;status-ingame,ingame,2022-01-15 05:00:49.000 -010063100B2C2000,"Cytus α",nvdec;status-playable,playable,2021-02-20 13:40:46.000 -0100B6400CA56000,"DAEMON X MACHINA",UE4;audout;ldn-untested;nvdec;status-playable,playable,2021-06-09 19:22:29.000 -010061300DF48000,"Dairoku: Ayakashimori",status-nothing;Needs Update;loader-allocator,nothing,2021-11-30 05:09:38.000 -0100BD2009A1C000,"Damsel",status-playable,playable,2022-09-06 11:54:39.000 -,"Dandara",status-playable,playable,2020-05-26 12:42:33.000 -,"Dandy Dungeon: Legend of Brave Yamada",status-playable,playable,2021-01-06 09:48:47.000 -01003ED0099B0000,"Danger Mouse",status-boots;crash;online,boots,2022-07-22 15:49:45.000 -,"Danger Scavenger -",nvdec;status-playable,playable,2021-04-17 15:53:04.000 -,"Danmaku Unlimited 3",status-playable,playable,2020-11-15 00:48:35.000 -,"Darius Cozmic Collection",status-playable,playable,2021-02-19 20:59:06.000 -010059C00BED4000,"Darius Cozmic Collection Special Edition",status-playable,playable,2022-07-22 16:26:50.000 -010015800F93C000,"Dariusburst - Another Chronicle EX+",online;status-playable,playable,2021-04-05 14:21:43.000 -01003D301357A000,"Dark Arcana: The Carnival",gpu;slow;status-ingame,ingame,2022-02-19 08:52:28.000 -010083A00BF6C000,"Dark Devotion",status-playable;nvdec,playable,2022-08-09 09:41:18.000 -,"Dark Quest 2",status-playable,playable,2020-11-16 21:34:52.000 -01004AB00A260000,"DARK SOULS™: REMASTERED",gpu;status-ingame;nvdec;online-broken,ingame,2024-04-09 19:47:58.000 -,"Dark Witch Music Episode: Rudymical",status-playable,playable,2020-05-22 09:44:44.000 -01008F1008DA6000,"Darkest Dungeon",status-playable;nvdec,playable,2022-07-22 18:49:18.000 -0100F2300D4BA000,"Darksiders Genesis",status-playable;nvdec;online-broken;UE4;ldn-broken,playable,2022-09-21 18:06:25.000 -010071800BA98000,"Darksiders II Deathinitive Edition",gpu;status-ingame;nvdec;online-broken,ingame,2024-06-26 00:37:25.000 -0100E1400BA96000,"Darksiders Warmastered Edition",status-playable;nvdec,playable,2023-03-02 18:08:09.000 -,"Darkwood",status-playable,playable,2021-01-08 21:24:06.000 -0100440012FFA000,"DARQ Complete Edition",audout;status-playable,playable,2021-04-07 15:26:21.000 -0100BA500B660000,"Darts Up",status-playable,playable,2021-04-14 17:22:22.000 -0100F0B0081DA000,"Dawn of the Breakers",status-menus;online-broken;vulkan-backend-bug,menus,2022-12-08 14:40:03.000 -,"Day and Night",status-playable,playable,2020-12-17 12:30:51.000 -,"De Blob",nvdec;status-playable,playable,2021-01-06 17:34:46.000 -,"de Blob 2",nvdec;status-playable,playable,2021-01-06 13:00:16.000 -01008E900471E000,"De Mambo",status-playable,playable,2021-04-10 12:39:40.000 -01004C400CF96000,"Dead by Daylight",status-boots;nvdec;online-broken;UE4,boots,2022-09-13 14:32:13.000 -0100646009FBE000,"Dead Cells",status-playable,playable,2021-09-22 22:18:49.000 -01004C500BD40000,"Dead End Job",status-playable;nvdec,playable,2022-09-19 12:48:44.000 -01009CC00C97C000,"DEAD OR ALIVE Xtreme 3 Scarlet",status-playable,playable,2022-07-23 17:05:06.000 -0100A5000F7AA000,"DEAD OR SCHOOL",status-playable;nvdec,playable,2022-09-06 12:04:09.000 -0100A24011F52000,"Dead Z Meat",UE4;services;status-ingame,ingame,2021-04-14 16:50:16.000 -,"Deadly Days",status-playable,playable,2020-11-27 13:38:55.000 -0100BAC011928000,"Deadly Premonition 2",status-playable,playable,2021-06-15 14:12:36.000 -0100EBE00F22E000,"DEADLY PREMONITION Origins",32-bit;status-playable;nvdec,playable,2024-03-25 12:47:46.000 -,"Dear Magi - Mahou Shounen Gakka -",status-playable,playable,2020-11-22 16:45:16.000 -,"Death and Taxes",status-playable,playable,2020-12-15 20:27:49.000 -010012B011AB2000,"Death Come True",nvdec;status-playable,playable,2021-06-10 22:30:49.000 -0100F3B00CF32000,"Death Coming",status-nothing;crash,nothing,2022-02-06 07:43:03.000 -0100AEC013DDA000,"Death end re;Quest",status-playable,playable,2023-07-09 12:19:54.000 -,"Death Mark",status-playable,playable,2020-12-13 10:56:25.000 -0100423009358000,"Death Road to Canada",gpu;audio;status-nothing;32-bit;crash,nothing,2023-06-28 15:39:26.000 -,"Death Squared",status-playable,playable,2020-12-04 13:00:15.000 -,"Death Tales",status-playable,playable,2020-12-17 10:55:52.000 -0100492011A8A000,"Death's Hangover",gpu;status-boots,boots,2023-08-01 22:38:06.000 -01009120119B4000,"Deathsmiles I・II",status-playable,playable,2024-04-08 19:29:00.000 -010034F00BFC8000,"Debris Infinity",nvdec;online;status-playable,playable,2021-05-28 12:14:39.000 -010027700FD2E000,"Decay of Logos",status-playable;nvdec,playable,2022-09-13 14:42:13.000 -0100EF0015A9A000,"Deedlit in Wonder Labyrinth",deadlock;status-ingame;Needs Update;Incomplete,ingame,2022-01-19 10:00:59.000 -01002CC0062B8000,"Deemo",status-playable,playable,2022-07-24 11:34:33.000 -01008B10132A2000,"DEEMO -Reborn-",status-playable;nvdec;online-broken,playable,2022-10-17 15:18:11.000 -010026800FA88000,"Deep Diving Adventures",status-playable,playable,2022-09-22 16:43:37.000 -,"Deep Ones",services;status-nothing,nothing,2020-04-03 02:54:19.000 -0100C3E00D68E000,"Deep Sky Derelicts Definitive Edition",status-playable,playable,2022-09-27 11:21:08.000 -,"Deep Space Rush",status-playable,playable,2020-07-07 23:30:33.000 -0100961011BE6000,"DeepOne",services-horizon;status-nothing;Needs Update,nothing,2024-01-18 15:01:05.000 -01008BB00F824000,"Defenders of Ekron - Definitive Edition",status-playable,playable,2021-06-11 16:31:03.000 -0100CDE0136E6000,"Defentron",status-playable,playable,2022-10-17 15:47:56.000 -,"Defunct",status-playable,playable,2021-01-08 21:33:46.000 -,"Degrees of Separation",status-playable,playable,2021-01-10 13:40:04.000 -010071C00CBA4000,"Dei Gratia no Rashinban",crash;status-nothing,nothing,2021-07-13 02:25:32.000 -,"Deleveled",slow;status-playable,playable,2020-12-15 21:02:29.000 -010023800D64A000,"DELTARUNE Chapter 1",status-playable,playable,2023-01-22 04:47:44.000 -010038B01D2CA000,"Dementium: The Ward (Dementium Remastered)",status-boots;crash,boots,2024-09-02 08:28:14.000 -0100AB600ACB4000,"Demetrios - The BIG Cynical Adventure",status-playable,playable,2021-06-04 12:01:01.000 -010099D00D1A4000,"Demolish & Build",status-playable,playable,2021-06-13 15:27:26.000 -010084600F51C000,"Demon Pit",status-playable;nvdec,playable,2022-09-19 13:35:15.000 -0100A2B00BD88000,"Demon's Crystals",status-nothing;crash;regression,nothing,2022-12-07 16:33:17.000 -,"Demon's Rise",status-playable,playable,2020-07-29 12:26:27.000 -0100E29013818000,"Demon's Rise - Lords of Chaos",status-playable,playable,2021-04-06 16:20:06.000 -0100161011458000,"Demon's Tier+",status-playable,playable,2021-06-09 17:25:36.000 -0100BE800E6D8000,"DEMON'S TILT",status-playable,playable,2022-09-19 13:22:46.000 -,"Demong Hunter",status-playable,playable,2020-12-12 15:27:08.000 -0100BC501355A000,"Densha de go!! Hashirou Yamanote Sen",status-playable;nvdec;UE4,playable,2023-11-09 07:47:58.000 -,"Depixtion",status-playable,playable,2020-10-10 18:52:37.000 -01000BF00B6BC000,"Deployment",slow;status-playable;online-broken,playable,2022-10-17 16:23:59.000 -010023600C704000,"Deponia",nvdec;status-playable,playable,2021-01-26 17:17:19.000 -,"DERU - The Art of Cooperation",status-playable,playable,2021-01-07 16:59:59.000 -,"Descenders",gpu;status-ingame,ingame,2020-12-10 15:22:36.000 -,"Desire remaster ver.",crash;status-boots,boots,2021-01-17 02:34:37.000 -,"DESTINY CONNECT",UE4;gpu;nvdec;status-ingame,ingame,2020-12-16 12:20:36.000 -01008BB011ED6000,"Destrobots",status-playable,playable,2021-03-06 14:37:05.000 -01009E701356A000,"Destroy All Humans!",gpu;status-ingame;nvdec;UE4,ingame,2023-01-14 22:23:53.000 -010030600E65A000,"Detective Dolittle",status-playable,playable,2021-03-02 14:03:59.000 -01009C0009842000,"Detective Gallo",status-playable;nvdec,playable,2022-07-24 11:51:04.000 -,"Detective Jinguji Saburo Prism of Eyes",status-playable,playable,2020-10-02 21:54:41.000 -010007500F27C000,"Detective Pikachu Returns",status-playable,playable,2023-10-07 10:24:59.000 -010031B00CF66000,"Devil Engine",status-playable,playable,2021-06-04 11:54:30.000 -01002F000E8F2000,"Devil Kingdom",status-playable,playable,2023-01-31 08:58:44.000 -,"Devil May Cry",nvdec;status-playable,playable,2021-01-04 19:43:08.000 -01007CF00D5BA000,"Devil May Cry 2",status-playable;nvdec,playable,2023-01-24 23:03:20.000 -01007B600D5BC000,"Devil May Cry 3 Special Edition",status-playable;nvdec,playable,2024-07-08 12:33:23.000 -01003C900EFF6000,"Devil Slayer - Raksasi",status-playable,playable,2022-10-26 19:42:32.000 -01009EA00A320000,"Devious Dungeon",status-playable,playable,2021-03-04 13:03:06.000 -,"Dex",nvdec;status-playable,playable,2020-08-12 16:48:12.000 -,"Dexteritrip",status-playable,playable,2021-01-06 12:51:12.000 -0100AFC00E06A000,"Dezatopia",online;status-playable,playable,2021-06-15 21:06:11.000 -0100726014352000,"Diablo 2 Resurrected",gpu;status-ingame;nvdec,ingame,2023-08-18 18:42:47.000 -01001B300B9BE000,"Diablo III: Eternal Collection",status-playable;online-broken;ldn-works,playable,2023-08-21 23:48:03.000 -0100F73011456000,"Diabolic",status-playable,playable,2021-06-11 14:45:08.000 -010027400BD24000,"DIABOLIK LOVERS CHAOS LINEAGE",gpu;status-ingame;Needs Update,ingame,2023-06-08 02:20:44.000 -0100BBF011394000,"Dicey Dungeons",gpu;audio;slow;status-ingame,ingame,2023-08-02 20:30:12.000 -,"Die for Valhalla!",status-playable,playable,2021-01-06 16:09:14.000 -0100BB900B5B4000,"Dies irae Amantes amentes For Nintendo Switch",status-nothing;32-bit;crash,nothing,2022-02-16 07:09:05.000 -0100A5A00DBB0000,"Dig Dog",gpu;status-ingame,ingame,2021-06-02 17:17:51.000 -010035D0121EC000,"Digerati Presents: The Dungeon Crawl Vol. 1",slow;status-ingame,ingame,2021-04-18 14:04:55.000 -010014E00DB56000,"Digimon Story Cyber Sleuth: Complete Edition",status-playable;nvdec;opengl,playable,2022-09-13 15:02:37.000 -0100F00014254000,"Digimon World: Next Order",status-playable,playable,2023-05-09 20:41:06.000 -,"Ding Dong XL",status-playable,playable,2020-07-14 16:13:19.000 -,"Dininho Adventures",status-playable,playable,2020-10-03 17:25:51.000 -010027E0158A6000,"Dininho Space Adventure",status-playable,playable,2023-01-14 22:43:04.000 -0100A8A013DA4000,"Dirt Bike Insanity",status-playable,playable,2021-01-31 13:27:38.000 -01004CB01378A000,"Dirt Trackin Sprint Cars",status-playable;nvdec;online-broken,playable,2022-10-17 16:34:56.000 -0100918014B02000,"Disagaea 6: Defiance of Destiny Demo",status-playable;demo,playable,2022-10-26 20:02:04.000 -010020700E2A2000,"Disaster Report 4: Summer Memories",status-playable;nvdec;UE4,playable,2022-09-27 19:41:31.000 -0100510004D2C000,"Disc Jam",UE4;ldn-untested;nvdec;online;status-playable,playable,2021-04-08 16:40:35.000 -,"Disco Dodgeball Remix",online;status-playable,playable,2020-09-28 23:24:49.000 -01004B100AF18000,"Disgaea 1 Complete",status-playable,playable,2023-01-30 21:45:23.000 -,"Disgaea 4 Complete Plus",gpu;slow;status-playable,playable,2020-02-18 10:54:28.000 -010068C00F324000,"Disgaea 4 Complete+ Demo",status-playable;nvdec,playable,2022-09-13 15:21:59.000 -01005700031AE000,"Disgaea 5 Complete",nvdec;status-playable,playable,2021-03-04 15:32:54.000 -0100ABC013136000,"Disgaea 6: Defiance of Destiny",deadlock;status-ingame,ingame,2023-04-15 00:50:32.000 -0100307011D80000,"Disgaea 6: Defiance of Destiny [ FG ] [ 魔界戦記ディスガイア6 ]",status-playable,playable,2021-06-08 13:20:33.000 -01005EE013888000,"Disgaea 6: Defiance of Destiny Demo [ 魔界戦記ディスガイア6 ]",gpu;status-ingame;demo,ingame,2022-12-06 15:27:59.000 -01000B70122A2000,"Disjunction",gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug,ingame,2024-04-28 23:55:24.000 -0100A2F00EEFC000,"Disney Classic Games: Aladdin and The Lion King",status-playable;online-broken,playable,2022-09-13 15:44:17.000 -0100DA201EBF8000,"Disney Epic Mickey: Rebrushed",status-ingame;crash,ingame,2024-09-26 22:11:51.000 -0100F0401435E000,"Disney SpeedStorm",services;status-boots,boots,2023-11-27 02:15:32.000 -,"Disney Tsum Tsum Festival",crash;status-menus,menus,2020-07-14 14:05:28.000 -,"DISTRAINT 2",status-playable,playable,2020-09-03 16:08:12.000 -,"DISTRAINT: Deluxe Edition",status-playable,playable,2020-06-15 23:42:24.000 -010027400CDC6000,"Divinity Original Sin 2",services;status-menus;crash;online-broken;regression,menus,2023-08-13 17:20:03.000 -01001770115C8000,"Dodo Peak",status-playable;nvdec;UE4,playable,2022-10-04 16:13:05.000 -01005A001489A000,"DoDonPachi Resurrection - 怒首領蜂大復活",status-ingame;32-bit;crash,ingame,2024-01-25 14:37:32.000 -,"Dogurai",status-playable,playable,2020-10-04 02:40:16.000 -010048100D51A000,"Dokapon Up! Mugen no Roulette",gpu;status-menus;Needs Update,menus,2022-12-08 19:39:10.000 -,"Dokuro",nvdec;status-playable,playable,2020-12-17 14:47:09.000 -010007200AC0E000,"Don't Die Mr. Robot DX",status-playable;nvdec,playable,2022-09-02 18:34:38.000 -0100E470067A8000,"Don't Knock Twice",status-playable,playable,2024-05-08 22:37:58.000 -0100C4D00B608000,"Don't Sink",gpu;status-ingame,ingame,2021-02-26 15:41:11.000 -0100751007ADA000,"Don't Starve",status-playable;nvdec,playable,2022-02-05 20:43:34.000 -010088B010DD2000,"Dongo Adventure",status-playable,playable,2022-10-04 16:22:26.000 -0100C1F0051B6000,"Donkey Kong Country Tropical Freeze",status-playable,playable,2024-08-05 16:46:10.000 -,"Doodle Derby",status-boots,boots,2020-12-04 22:51:48.000 -0100416004C00000,"DOOM",gpu;slow;status-ingame;nvdec;online-broken,ingame,2024-09-23 15:40:07.000 -010018900DD00000,"DOOM (1993)",status-menus;nvdec;online-broken,menus,2022-09-06 13:32:19.000 -01008CB01E52E000,"DOOM + DOOM II",status-playable;opengl;ldn-untested;LAN,playable,2024-09-12 07:06:01.000 -0100D4F00DD02000,"DOOM 2",nvdec;online;status-playable,playable,2021-06-03 20:10:01.000 -010029D00E740000,"DOOM 3",status-menus;crash,menus,2024-08-03 05:25:47.000 -,"DOOM 64",nvdec;status-playable;vulkan,playable,2020-10-13 23:47:28.000 -0100B1A00D8CE000,"DOOM Eternal",gpu;slow;status-ingame;nvdec;online-broken,ingame,2024-08-28 15:57:17.000 -01005ED00CD70000,"Door Kickers: Action Squad",status-playable;online-broken;ldn-broken,playable,2022-09-13 16:28:53.000 -,"DORAEMON STORY OF SEASONS",nvdec;status-playable,playable,2020-07-13 20:28:11.000 -,"Double Cross",status-playable,playable,2021-01-07 15:34:22.000 -,"Double Dragon & Kunio-Kun: Retro Brawler Bundle",status-playable,playable,2020-09-01 12:48:46.000 -01001AD00E49A000,"DOUBLE DRAGON Ⅲ: The Sacred Stones",online;status-playable,playable,2021-06-11 15:41:44.000 -01005B10132B2000,"Double Dragon Neon",gpu;audio;status-ingame;32-bit,ingame,2022-09-20 18:00:20.000 -,"Double Kick Heroes",gpu;status-ingame,ingame,2020-10-03 14:33:59.000 -0100A5D00C7C0000,"Double Pug Switch",status-playable;nvdec,playable,2022-10-10 10:59:35.000 -0100FC000EE10000,"Double Switch - 25th Anniversary Edition",status-playable;nvdec,playable,2022-09-19 13:41:50.000 -0100B6600FE06000,"Down to Hell",gpu;status-ingame;nvdec,ingame,2022-09-19 14:01:26.000 -010093D00C726000,"Downwell",status-playable,playable,2021-04-25 20:05:24.000 -0100ED000D390000,"Dr Kawashima's Brain Training",services;status-ingame,ingame,2023-06-04 00:06:46.000 -,"Dracula's Legacy",nvdec;status-playable,playable,2020-12-10 13:24:25.000 -,"DragoDino",gpu;nvdec;status-ingame,ingame,2020-08-03 20:49:16.000 -0100DBC00BD5A000,"Dragon Audit",crash;status-ingame,ingame,2021-05-16 14:24:46.000 -0100A250097F0000,"DRAGON BALL FighterZ",UE4;ldn-broken;nvdec;online;status-playable,playable,2021-06-11 16:19:04.000 -010078D000F88000,"Dragon Ball Xenoverse 2",gpu;status-ingame;nvdec;online;ldn-untested,ingame,2022-07-24 12:31:01.000 -010051C0134F8000,"DRAGON BALL Z: KAKAROT + A NEW POWER AWAKENS SET",status-playable;vulkan-backend-bug,playable,2024-08-28 00:03:50.000 -010089700150E000,"Dragon Marked for Death: Frontline Fighters (Empress & Warrior)",status-playable;ldn-untested;audout,playable,2022-03-10 06:44:34.000 -0100EFC00EFB2000,"Dragon Quest",gpu;status-boots,boots,2021-11-09 03:31:32.000 -010008900705C000,"Dragon Quest Builders",gpu;status-ingame;nvdec,ingame,2023-08-14 09:54:36.000 -010042000A986000,"Dragon Quest Builders 2",status-playable,playable,2024-04-19 16:36:38.000 -0100CD3000BDC000,"Dragon Quest Heroes I + II (JP)",nvdec;status-playable,playable,2021-04-08 14:27:16.000 -010062200EFB4000,"Dragon Quest II: Luminaries of the Legendary Line",status-playable,playable,2022-09-13 16:44:11.000 -01003E601E324000,"Dragon Quest III HD-2D Remake",status-ingame;vulkan-backend-bug;UE4;audout;mac-bug,ingame,2025-01-07 04:10:27.000 -010015600EFB6000,"Dragon Quest III: The Seeds of Salvation",gpu;status-boots,boots,2021-11-09 03:38:34.000 -0100A77018EA0000,"DRAGON QUEST MONSTERS: The Dark Prince",status-playable,playable,2023-12-29 16:10:05.000 -0100217014266000,"Dragon Quest Treasures",gpu;status-ingame;UE4,ingame,2023-05-09 11:16:52.000 -0100E2E0152E4000,"Dragon Quest X Awakening Five Races Offline",status-playable;nvdec;UE4,playable,2024-08-20 10:04:24.000 -01006C300E9F0000,"Dragon Quest XI S: Echoes of an Elusive Age - Definitive Edition",status-playable;UE4,playable,2021-11-27 12:27:11.000 -010032C00AC58000,"Dragon's Dogma: Dark Arisen",status-playable,playable,2022-07-24 12:58:33.000 -,"Dragon's Lair Trilogy",nvdec;status-playable,playable,2021-01-13 22:12:07.000 -,"DragonBlaze for Nintendo Switch",32-bit;status-playable,playable,2020-10-14 11:11:28.000 -,"DragonFangZ",status-playable,playable,2020-09-28 21:35:18.000 -,"Dragons Dawn of New Riders",nvdec;status-playable,playable,2021-01-27 20:05:26.000 -0100F7800A434000,"Drawful 2",status-ingame,ingame,2022-07-24 13:50:21.000 -0100B7E0102E4000,"Drawngeon: Dungeons of Ink and Paper",gpu;status-ingame,ingame,2022-09-19 15:41:25.000 -,"Dream",status-playable,playable,2020-12-15 19:55:07.000 -,"Dream Alone - 0100AA0093DC000",nvdec;status-playable,playable,2021-01-27 19:41:50.000 -,"DreamBall",UE4;crash;gpu;status-ingame,ingame,2020-08-05 14:45:25.000 -010058B00F3C0000,"Dreaming Canvas",UE4;gpu;status-ingame,ingame,2021-06-13 22:50:07.000 -0100D24013466000,"Dreamo",status-playable;UE4,playable,2022-10-17 18:25:28.000 -0100236011B4C000,"DreamWorks Spirit Lucky's Big Adventure",status-playable,playable,2022-10-27 13:30:52.000 -010058C00A916000,"Drone Fight",status-playable,playable,2022-07-24 14:31:56.000 -010052000A574000,"Drowning",status-playable,playable,2022-07-25 14:28:26.000 -,"Drums",status-playable,playable,2020-12-17 17:21:51.000 -01005BC012C66000,"Duck Life Adventure",status-playable,playable,2022-10-10 11:27:03.000 -01007EF00CB88000,"Duke Nukem 3D: 20th Anniversary World Tour",32-bit;status-playable;ldn-untested,playable,2022-08-19 22:22:40.000 -010068D0141F2000,"Dull Grey",status-playable,playable,2022-10-27 13:40:38.000 -0100926013600000,"Dungeon Nightmares 1 + 2 Collection",status-playable,playable,2022-10-17 18:54:22.000 -010034300F0E2000,"Dungeon of the Endless",nvdec;status-playable,playable,2021-05-27 19:16:26.000 -,"Dungeon Stars",status-playable,playable,2021-01-18 14:28:37.000 -,"Dungeons & Bombs",status-playable,playable,2021-04-06 12:46:22.000 -0100EC30140B6000,"Dunk Lords",status-playable,playable,2024-06-26 00:07:26.000 -010011C00E636000,"Dusk Diver",status-boots;crash;UE4,boots,2021-11-06 09:01:30.000 -0100B6E00A420000,"Dust: An Elysian Tail",status-playable,playable,2022-07-25 15:28:12.000 -,"Dustoff Z",status-playable,playable,2020-12-04 23:22:29.000 -01008c8012920000,"Dying Light: Platinum Edition",services-horizon;status-boots,boots,2024-03-11 10:43:32.000 -,"Dyna Bomb",status-playable,playable,2020-06-07 13:26:55.000 -0100E9A00CB30000,"DYNASTY WARRIORS 8: Xtreme Legends Definitive Edition",status-playable;nvdec,playable,2024-06-26 00:16:30.000 -010008900BC5A000,"DYSMANTLE",gpu;status-ingame,ingame,2024-07-15 16:24:12.000 -0100BDB01A0E6000,"EA Sports FC 24",status-boots,boots,2023-10-04 18:32:59.000 -010054E01D878000,"EA SPORTS FC 25",status-ingame;crash,ingame,2024-09-25 21:07:50.000 -01001C8016B4E000,"EA SPORTS FIFA 23 Nintendo Switch™ Legacy Edition",gpu;status-ingame;crash,ingame,2024-06-10 23:33:05.000 -010037400C7DA000,"Eagle Island",status-playable,playable,2021-04-10 13:15:42.000 -0100B9E012992000,"Earth Defense Force World Brothers ( ま~るい地球が四角くなった!? デジボク地球防衛軍 )",status-playable;UE4,playable,2022-12-07 12:59:16.000 -0100298014030000,"Earth Defense Force: World Brothers",status-playable;UE4,playable,2022-10-27 14:13:31.000 -01009B7006C88000,"EARTH WARS",status-playable,playable,2021-06-05 11:18:33.000 -0100DFC00E472000,"Earthfall: Alien Horde",status-playable;nvdec;UE4;ldn-untested,playable,2022-09-13 17:32:37.000 -01006E50042EA000,"Earthlock",status-playable,playable,2021-06-05 11:51:02.000 -0100A2E00BB0C000,"EarthNight",status-playable,playable,2022-09-19 21:02:20.000 -0100DCE00B756000,"Earthworms",status-playable,playable,2022-07-25 16:28:55.000 -,"Earthworms Demo",status-playable,playable,2021-01-05 16:57:11.000 -0100ECF01800C000,"Easy Come Easy Golf",status-playable;online-broken;regression,playable,2024-04-04 16:15:00.000 -0100A9B009678000,"EAT BEAT DEADSPIKE-san",audio;status-playable;Needs Update,playable,2022-12-02 19:25:29.000 -0100BCA016636000,"eBaseball Powerful Pro Yakyuu 2022",gpu;services-horizon;status-nothing;crash,nothing,2024-05-26 23:07:19.000 -,"Eclipse: Edge of Light",status-playable,playable,2020-08-11 23:06:29.000 -,"eCrossminton",status-playable,playable,2020-07-11 18:24:27.000 -0100ABE00DB4E000,"Edna & Harvey: Harvey's New Eyes",nvdec;status-playable,playable,2021-01-26 14:36:08.000 -01004F000B716000,"Edna & Harvey: The Breakout - Anniversary Edition",status-ingame;crash;nvdec,ingame,2022-08-01 16:59:56.000 -01002550129F0000,"Effie",status-playable,playable,2022-10-27 14:36:39.000 -,"Ego Protocol",nvdec;status-playable,playable,2020-12-16 20:16:35.000 -,"Eiga Sumikko Gurashi Tobidasu Ehon to Himitsu no Ko Game de Asobo Ehon no Sekai",status-playable,playable,2020-11-12 00:11:50.000 -01003AD013BD2000,"Eight Dragons",status-playable;nvdec,playable,2022-10-27 14:47:28.000 -010020A01209C000,"El Hijo - A Wild West Tale",nvdec;status-playable,playable,2021-04-19 17:44:08.000 -,"Elden: Path of the Forgotten",status-playable,playable,2020-12-15 00:33:19.000 -,"ELEA: Paradigm Shift",UE4;crash;status-nothing,nothing,2020-10-04 19:07:43.000 -0100A6700AF10000,"Element",status-playable,playable,2022-07-25 17:17:16.000 -0100128003A24000,"Elliot Quest",status-playable,playable,2022-07-25 17:46:14.000 -,"Elrador Creatures",slow;status-playable,playable,2020-12-12 12:35:35.000 -010041A00FEC6000,"Ember",status-playable;nvdec,playable,2022-09-19 21:16:11.000 -,"Embracelet",status-playable,playable,2020-12-04 23:45:00.000 -010017b0102a8000,"Emma: Lost in Memories",nvdec;status-playable,playable,2021-01-28 16:19:10.000 -010068300E08E000,"Enchanted in the Moonlight - Kiryu, Chikage & Yukinojo",gpu;status-ingame;nvdec,ingame,2022-11-20 16:18:45.000 -,"Enchanting Mahjong Match",gpu;status-ingame,ingame,2020-04-17 22:01:31.000 -01004F3011F92000,"Endless Fables: Dark Moor",gpu;nvdec;status-ingame,ingame,2021-03-07 15:31:03.000 -010067B017588000,"Endless Ocean Luminous",services-horizon;status-ingame;crash,ingame,2024-05-30 02:05:57.000 -0100B8700BD14000,"Energy Cycle Edge",services;status-ingame,ingame,2021-11-30 05:02:31.000 -,"Energy Invasion",status-playable,playable,2021-01-14 21:32:26.000 -0100C6200A0AA000,"Enigmatis 2: The Mists of Ravenwood",crash;regression;status-boots,boots,2021-06-06 15:15:30.000 -01009D60076F6000,"Enter the Gungeon",status-playable,playable,2022-07-25 20:28:33.000 -0100262009626000,"Epic Loon",status-playable;nvdec,playable,2022-07-25 22:06:13.000 -01000FA0149B6000,"EQI",status-playable;nvdec;UE4,playable,2022-10-27 16:42:32.000 -0100E95010058000,"EQQO",UE4;nvdec;status-playable,playable,2021-06-13 23:10:51.000 -,"Escape First",status-playable,playable,2020-10-20 22:46:53.000 -010021201296A000,"Escape First 2",status-playable,playable,2021-03-24 11:59:41.000 -0100FEF00F0AA000,"Escape from Chernobyl",status-boots;crash,boots,2022-09-19 21:36:58.000 -010023E013244000,"Escape from Life Inc",status-playable,playable,2021-04-19 17:34:09.000 -,"Escape from Tethys",status-playable,playable,2020-10-14 22:38:25.000 -,"Escape Game Fort Boyard",status-playable,playable,2020-07-12 12:45:43.000 -0100F9600E746000,"ESP Ra.De. Psi",audio;slow;status-ingame,ingame,2024-03-07 15:05:08.000 -010073000FE18000,"Esports powerful pro yakyuu 2020",gpu;status-ingame;crash;Needs More Attention,ingame,2024-04-29 05:34:14.000 -01004F9012FD8000,"Estranged: The Departure",status-playable;nvdec;UE4,playable,2022-10-24 10:37:58.000 -,"Eternum Ex",status-playable,playable,2021-01-13 20:28:32.000 -010092501EB2C000,"Europa (Demo)",gpu;status-ingame;crash;UE4,ingame,2024-04-23 10:47:12.000 -01007BE0160D6000,"EVE ghost enemies",gpu;status-ingame,ingame,2023-01-14 03:13:30.000 -010095E01581C000,"even if TEMPEST",gpu;status-ingame,ingame,2023-06-22 23:50:25.000 -,"Event Horizon: Space Defense",status-playable,playable,2020-07-31 20:31:24.000 -0100DCF0093EC000,"EVERSPACE",status-playable;UE4,playable,2022-08-14 01:16:24.000 -01006F900BF8E000,"Everybody 1-2-Switch!",services;deadlock;status-nothing,nothing,2023-07-01 05:52:55.000 -,"Evil Defenders",nvdec;status-playable,playable,2020-09-28 17:11:00.000 -01006A800FA22000,"Evolution Board Game",online;status-playable,playable,2021-01-20 22:37:56.000 -0100F2D00C7DE000,"Exception",status-playable;online-broken,playable,2022-09-20 12:47:10.000 -0100DD30110CC000,"Exit the Gungeon",status-playable,playable,2022-09-22 17:04:43.000 -0100A82013976000,"Exodemon",status-playable,playable,2022-10-27 20:17:52.000 -0100FA800A1F4000,"Exorder",nvdec;status-playable,playable,2021-04-15 14:17:20.000 -01009B7010B42000,"Explosive Jake",status-boots;crash,boots,2021-11-03 07:48:32.000 -0100EFE00A3C2000,"Eyes: The Horror Game",status-playable,playable,2021-01-20 21:59:46.000 -0100E3D0103CE000,"Fable of Fairy Stones",status-playable,playable,2021-05-05 21:04:54.000 -01004200189F4000,"Factorio",deadlock;status-boots,boots,2024-06-11 19:26:16.000 -010073F0189B6000,"Fae Farm",status-playable,playable,2024-08-25 15:12:12.000 -010069100DB08000,"Faeria",status-menus;nvdec;online-broken,menus,2022-10-04 16:44:41.000 -01008A6009758000,"Fairune Collection",status-playable,playable,2021-06-06 15:29:56.000 -0100F6D00B8F2000,"Fairy Fencer F™: Advent Dark Force",status-ingame;32-bit;crash;nvdec,ingame,2023-04-16 03:53:48.000 -0100CF900FA3E000,"Fairy Tail",status-playable;nvdec,playable,2022-10-04 23:00:32.000 -01005A600BE60000,"Fall Of Light - Darkest Edition",slow;status-ingame;nvdec,ingame,2024-07-24 04:19:26.000 -0100AA801258C000,"Fallen Legion Revenants",status-menus;crash,menus,2021-11-25 08:53:20.000 -0100D670126F6000,"Famicom Detective Club: The Girl Who Stands Behind",status-playable;nvdec,playable,2022-10-27 20:41:40.000 -010033F0126F4000,"Famicom Detective Club: The Missing Heir",status-playable;nvdec,playable,2022-10-27 20:56:23.000 -010060200FC44000,"Family Feud 2021",status-playable;online-broken,playable,2022-10-10 11:42:21.000 -0100034012606000,"Family Mysteries: Poisonous Promises",audio;status-menus;crash,menus,2021-11-26 12:35:06.000 -010017C012726000,"Fantasy Friends",status-playable,playable,2022-10-17 19:42:39.000 -0100767008502000,"Fantasy Hero Unsigned Legacy",status-playable,playable,2022-07-26 12:28:52.000 -0100944003820000,"Fantasy Strike",online;status-playable,playable,2021-02-27 01:59:18.000 -01000E2012F6E000,"Fantasy Tavern Sextet -Vol.1 New World Days-",gpu;status-ingame;crash;Needs Update,ingame,2022-12-05 16:48:00.000 -,"Fantasy Tavern Sextet -Vol.2 Adventurer's Days-",gpu;slow;status-ingame;crash,ingame,2021-11-06 02:57:29.000 -010022700E7D6000,"FAR: Lone Sails",status-playable,playable,2022-09-06 16:33:05.000 -,"Farabel",status-playable,playable,2020-08-03 17:47:28.000 -,"Farm Expert 2019 for Nintendo Switch",status-playable,playable,2020-07-09 21:42:57.000 -01000E400ED98000,"Farm Mystery",status-playable;nvdec,playable,2022-09-06 16:46:47.000 -,"Farm Together",status-playable,playable,2021-01-19 20:01:19.000 -0100EB600E914000,"Farming Simulator 20",nvdec;status-playable,playable,2021-06-13 10:52:44.000 -,"Farming Simulator Nintendo Switch Edition",nvdec;status-playable,playable,2021-01-19 14:46:44.000 -0100E99019B3A000,"Fashion Dreamer",status-playable,playable,2023-11-12 06:42:52.000 -01009510001CA000,"Fast RMX",slow;status-ingame;crash;ldn-partial,ingame,2024-06-22 20:48:58.000 -0100BEB015604000,"Fatal Frame: Maiden of Black Water",status-playable,playable,2023-07-05 16:01:40.000 -0100DAE019110000,"Fatal Frame: Mask of the Lunar Eclipse",status-playable;Incomplete,playable,2024-04-11 06:01:30.000 -010053E002EA2000,"Fate/EXTELLA",gpu;status-ingame;nvdec;online-broken;vulkan-backend-bug;opengl-backend-bug,ingame,2023-04-24 23:37:55.000 -010051400B17A000,"Fate/EXTELLA LINK",ldn-untested;nvdec;status-playable,playable,2021-01-27 00:45:50.000 -,"fault - milestone one",nvdec;status-playable,playable,2021-03-24 10:41:49.000 -,"Fear Effect Sedna",nvdec;status-playable,playable,2021-01-19 13:10:33.000 -0100F5501CE12000,"Fearmonium",status-boots;crash,boots,2024-03-06 11:26:11.000 -0100E4300CB3E000,"Feather",status-playable,playable,2021-06-03 14:11:27.000 -,"Felix the Reaper",nvdec;status-playable,playable,2020-10-20 23:43:03.000 -,"Feudal Alloy",status-playable,playable,2021-01-14 08:48:14.000 -01008D900B984000,"FEZ",gpu;status-ingame,ingame,2021-04-18 17:10:16.000 -01007510040E8000,"FIA European Truck Racing Championship",status-playable;nvdec,playable,2022-09-06 17:51:59.000 -0100F7B002340000,"FIFA 18",gpu;status-ingame;online-broken;ldn-untested,ingame,2022-07-26 12:43:59.000 -0100FFA0093E8000,"FIFA 19",gpu;status-ingame;nvdec;online-broken;ldn-untested,ingame,2022-07-26 13:07:07.000 -01005DE00D05C000,"FIFA 20 Legacy Edition",gpu;status-ingame;nvdec;online-broken;ldn-untested,ingame,2022-09-13 17:57:20.000 -01000A001171A000,"FIFA 21 Legacy Edition",gpu;status-ingame;online-broken,ingame,2023-12-11 22:10:19.000 -0100216014472000,"FIFA 22 Legacy Edition",gpu;status-ingame,ingame,2024-03-02 14:13:48.000 -01006980127F0000,"Fight Crab",status-playable;online-broken;ldn-untested,playable,2022-10-05 10:24:04.000 -,"Fight of Animals",online;status-playable,playable,2020-10-15 15:08:28.000 -,"Fight'N Rage",status-playable,playable,2020-06-16 23:35:19.000 -0100D02014048000,"Fighting EX Layer Another Dash",status-playable;online-broken;UE4,playable,2024-04-07 10:22:33.000 -0100118009C68000,"Figment",nvdec;status-playable,playable,2021-01-27 19:36:05.000 -,"Fill-a-Pix: Phil's Epic Adventure",status-playable,playable,2020-12-22 13:48:22.000 -0100C3A00BB76000,"Fimbul",status-playable;nvdec,playable,2022-07-26 13:31:47.000 -,"Fin and the Ancient Mystery",nvdec;status-playable,playable,2020-12-17 16:40:39.000 -0100CE4010AAC000,"FINAL FANTASY CRYSTAL CHRONICLES Remastered Edition",status-playable,playable,2023-04-02 23:39:12.000 -01000EA014150000,"FINAL FANTASY I",status-nothing;crash,nothing,2024-09-05 20:55:30.000 -01006B7014156000,"FINAL FANTASY II",status-nothing;crash,nothing,2024-04-13 19:18:04.000 -01006F000B056000,"FINAL FANTASY IX",audout;nvdec;status-playable,playable,2021-06-05 11:35:00.000 -0100AA201415C000,"FINAL FANTASY V",status-playable,playable,2023-04-26 01:11:55.000 -0100A5B00BDC6000,"Final Fantasy VII",status-playable,playable,2022-12-09 17:03:30.000 -01008B900DC0A000,"FINAL FANTASY VIII REMASTERED",status-playable;nvdec,playable,2023-02-15 10:57:48.000 -0100BC300CB48000,"FINAL FANTASY X/X-2 HD REMASTER",gpu;status-ingame,ingame,2022-08-16 20:29:26.000 -0100EB100AB42000,"FINAL FANTASY XII THE ZODIAC AGE",status-playable;opengl;vulkan-backend-bug,playable,2024-08-11 07:01:54.000 -,"FINAL FANTASY XV POCKET EDITION HD",status-playable,playable,2021-01-05 17:52:08.000 -,"Final Light, The Prison",status-playable,playable,2020-07-31 21:48:44.000 -0100FF100FB68000,"Finding Teddy 2 : Definitive Edition",gpu;status-ingame,ingame,2024-04-19 16:51:33.000 -,"Fire & Water",status-playable,playable,2020-12-15 15:43:20.000 -0100F15003E64000,"Fire Emblem Warriors",status-playable;nvdec,playable,2023-05-10 01:53:10.000 -010071F0143EA000,"Fire Emblem Warriors: Three Hopes",gpu;status-ingame;nvdec,ingame,2024-05-01 07:07:42.000 -0100A6301214E000,"Fire Emblem: Engage",status-playable;amd-vendor-bug;mac-bug,playable,2024-09-01 23:37:26.000 -0100A12011CC8000,"Fire Emblem: Shadow Dragon and the Blade of Light",status-playable,playable,2022-10-17 19:49:14.000 -010055D009F78000,"Fire Emblem: Three Houses",status-playable;online-broken,playable,2024-09-14 23:53:50.000 -010025C014798000,"Fire: Ungh's Quest",status-playable;nvdec,playable,2022-10-27 21:41:26.000 -0100434003C58000,"Firefighters - The Simulation",status-playable,playable,2021-02-19 13:32:05.000 -,"Firefighters: Airport Fire Department",status-playable,playable,2021-02-15 19:17:00.000 -0100AC300919A000,"Firewatch",status-playable,playable,2021-06-03 10:56:38.000 -,"Firework",status-playable,playable,2020-12-04 20:20:09.000 -0100DEB00ACE2000,"Fishing Star World Tour",status-playable,playable,2022-09-13 19:08:51.000 -010069800D292000,"Fishing Universe Simulator",status-playable,playable,2021-04-15 14:00:43.000 -0100807008868000,"Fit Boxing",status-playable,playable,2022-07-26 19:24:55.000 -,"Fitness Boxing",services;status-ingame,ingame,2020-05-17 14:00:48.000 -0100E7300AAD4000,"Fitness Boxing",status-playable,playable,2021-04-14 20:33:33.000 -0100073011382000,"Fitness Boxing 2: Rhythm & Exercise",crash;status-ingame,ingame,2021-04-14 20:40:48.000 -,"Five Dates",nvdec;status-playable,playable,2020-12-11 15:17:11.000 -0100B6200D8D2000,"Five Nights at Freddy's",status-playable,playable,2022-09-13 19:26:36.000 -01004EB00E43A000,"Five Nights at Freddy's 2",status-playable,playable,2023-02-08 15:48:24.000 -010056100E43C000,"Five Nights at Freddy's 3",status-playable,playable,2022-09-13 20:58:07.000 -010083800E43E000,"Five Nights at Freddy's 4",status-playable,playable,2023-08-19 07:28:03.000 -0100F7901118C000,"Five Nights at Freddy's: Help Wanted",status-playable;UE4,playable,2022-09-29 12:40:09.000 -01003B200E440000,"Five Nights at Freddy's: Sister Location",status-playable,playable,2023-10-06 09:00:58.000 -01009060193C4000,"Five Nights At Freddy’s Security Breach",gpu;status-ingame;crash;mac-bug,ingame,2023-04-23 22:33:28.000 -010038200E088000,"Flan",status-ingame;crash;regression,ingame,2021-11-17 07:39:28.000 -,"Flashback",nvdec;status-playable,playable,2020-05-14 13:57:29.000 -0100C53004C52000,"Flat Heroes",gpu;status-ingame,ingame,2022-07-26 19:37:37.000 -,"Flatland: Prologue",status-playable,playable,2020-12-11 20:41:12.000 -,"Flinthook",online;status-playable,playable,2021-03-25 20:42:29.000 -010095A004040000,"Flip Wars",services;status-ingame;ldn-untested,ingame,2022-05-02 15:39:18.000 -01009FB002B2E000,"Flipping Death",status-playable,playable,2021-02-17 16:12:30.000 -,"Flood of Light",status-playable,playable,2020-05-15 14:15:25.000 -0100DF9005E7A000,"Floor Kids",status-playable;nvdec,playable,2024-08-18 19:38:49.000 -,"Florence",status-playable,playable,2020-09-05 01:22:30.000 -,"Flowlines VS",status-playable,playable,2020-12-17 17:01:53.000 -,"Flux8",nvdec;status-playable,playable,2020-06-19 20:55:11.000 -,"Fly O'Clock VS",status-playable,playable,2020-05-17 13:39:52.000 -,"Fly Punch Boom!",online;status-playable,playable,2020-06-21 12:06:11.000 -0100419013A8A000,"Flying Hero X",status-menus;crash,menus,2021-11-17 07:46:58.000 -,"Fobia",status-playable,playable,2020-12-14 21:05:23.000 -0100F3900D0F0000,"Food Truck Tycoon",status-playable,playable,2022-10-17 20:15:55.000 -01007CF013152000,"Football Manager 2021 Touch",gpu;status-ingame,ingame,2022-10-17 20:08:23.000 -0100EDC01990E000,"FOOTBALL MANAGER 2023 TOUCH",gpu;status-ingame,ingame,2023-08-01 03:40:53.000 -010097F0099B4000,"Football Manager Touch 2018",status-playable,playable,2022-07-26 20:17:56.000 -010069400B6BE000,"For The King",nvdec;status-playable,playable,2021-02-15 18:51:44.000 -01001D200BCC4000,"Forager",status-menus;crash,menus,2021-11-24 07:10:17.000 -0100AE001256E000,"Foreclosed",status-ingame;crash;Needs More Attention;nvdec,ingame,2022-12-06 14:41:12.000 -,"Foregone",deadlock;status-ingame,ingame,2020-12-17 15:26:53.000 -010059E00B93C000,"Forgotton Anne",nvdec;status-playable,playable,2021-02-15 18:28:07.000 -,"FORMA.8",nvdec;status-playable,playable,2020-11-15 01:04:32.000 -,"Fort Boyard",nvdec;slow;status-playable,playable,2020-05-15 13:22:53.000 -010025400AECE000,"Fortnite",services-horizon;status-nothing,nothing,2024-04-06 18:23:25.000 -0100CA500756C000,"Fossil Hunters",status-playable;nvdec,playable,2022-07-27 11:37:20.000 -01008A100A028000,"FOX n FORESTS",status-playable,playable,2021-02-16 14:27:49.000 -,"FoxyLand",status-playable,playable,2020-07-29 20:55:20.000 -,"FoxyLand 2",status-playable,playable,2020-08-06 14:41:30.000 -01004200099F2000,"Fractured Minds",status-playable,playable,2022-09-13 21:21:40.000 -0100F1A00A5DC000,"FRAMED COLLECTION",status-playable;nvdec,playable,2022-07-27 11:48:15.000 -0100AC40108D8000,"Fred3ric",status-playable,playable,2021-04-15 13:30:31.000 -,"Frederic 2",status-playable,playable,2020-07-23 16:44:37.000 -,"Frederic: Resurrection of Music",nvdec;status-playable,playable,2020-07-23 16:59:53.000 -010082B00EE50000,"Freedom Finger",nvdec;status-playable,playable,2021-06-09 19:31:30.000 -,"Freedom Planet",status-playable,playable,2020-05-14 12:23:06.000 -010003F00BD48000,"Friday the 13th: Killer Puzzle",status-playable,playable,2021-01-28 01:33:38.000 -010092A00C4B6000,"Friday the 13th: The Game",status-playable;nvdec;online-broken;UE4,playable,2022-09-06 17:33:27.000 -0100F200178F4000,"Front Mission 1st Remake",status-playable,playable,2023-06-09 07:44:24.000 -,"Frontline Zed",status-playable,playable,2020-10-03 12:55:59.000 -0100B5300B49A000,"Frost",status-playable,playable,2022-07-27 12:00:36.000 -,"Fruitfall Crush",status-playable,playable,2020-10-20 11:33:33.000 -,"FullBlast",status-playable,playable,2020-05-19 10:34:13.000 -010002F00CC20000,"FUN! FUN! Animal Park",status-playable,playable,2021-04-14 17:08:52.000 -,"FunBox Party",status-playable,playable,2020-05-15 12:07:02.000 -,"Funghi Puzzle Funghi Explosion",status-playable,playable,2020-11-23 14:17:41.000 -01008E10130F8000,"Funimation",gpu;status-boots,boots,2021-04-08 13:08:17.000 -,"Funny Bunny Adventures",status-playable,playable,2020-08-05 13:46:56.000 -01000EC00AF98000,"Furi",status-playable,playable,2022-07-27 12:21:20.000 -01000EC00AF98000,"Furi Definitive Edition",status-playable,playable,2022-07-27 12:35:08.000 -0100A6B00D4EC000,"Furwind",status-playable,playable,2021-02-19 19:44:08.000 -,"Fury Unleashed",crash;services;status-ingame,ingame,2020-10-18 11:52:40.000 -,"Fury Unleashed Demo",status-playable,playable,2020-10-08 20:09:21.000 -0100E1F013674000,"FUSER",status-playable;nvdec;UE4,playable,2022-10-17 20:58:32.000 -,"Fushigi no Gensokyo Lotus Labyrinth",Needs Update;audio;gpu;nvdec;status-ingame,ingame,2021-01-20 15:30:02.000 -01003C300B274000,"Futari de! Nyanko Daisensou",status-playable,playable,2024-01-05 22:26:52.000 -010055801134E000,"FUZE Player",status-ingame;online-broken;vulkan-backend-bug,ingame,2022-10-18 12:23:53.000 -0100EAD007E98000,"FUZE4",status-playable;vulkan-backend-bug,playable,2022-09-06 19:25:01.000 -010067600F1A0000,"FuzzBall",crash;status-nothing,nothing,2021-03-29 20:13:21.000 -,"G-MODE Archives 06 The strongest ever Julia Miyamoto",status-playable,playable,2020-10-15 13:06:26.000 -,"G.I. Joe Operation Blackout",UE4;crash;status-boots,boots,2020-11-21 12:37:44.000 -,"Gal Metal - 01B8000C2EA000",status-playable,playable,2022-07-27 20:57:48.000 -010024700901A000,"Gal*Gun 2",status-playable;nvdec;UE4,playable,2022-07-27 12:45:37.000 -0100047013378000,"Gal*Gun Returns [ ぎゃる☆がん りたーんず ]",status-playable;nvdec,playable,2022-10-17 23:50:46.000 -0100C9800A454000,"GALAK-Z: Variant S",status-boots;online-broken,boots,2022-07-29 11:59:12.000 -0100C62011050000,"Game Boy - Nintendo Switch Online",status-playable,playable,2023-03-21 12:43:48.000 -010012F017576000,"Game Boy Advance - Nintendo Switch Online",status-playable,playable,2023-02-16 20:38:15.000 -0100FA5010788000,"Game Builder Garage",status-ingame,ingame,2024-04-20 21:46:22.000 -,"Game Dev Story",status-playable,playable,2020-05-20 00:00:38.000 -01006BD00F8C0000,"Game Doraemon Nobita no Shin Kyoryu",gpu;status-ingame,ingame,2023-02-27 02:03:28.000 -,"Garage",status-playable,playable,2020-05-19 20:59:53.000 -010061E00E8BE000,"Garfield Kart Furious Racing",status-playable;ldn-works;loader-allocator,playable,2022-09-13 21:40:25.000 -,"Gates of Hell",slow;status-playable,playable,2020-10-22 12:44:26.000 -010025500C098000,"Gato Roboto",status-playable,playable,2023-01-20 15:04:11.000 -010065E003FD8000,"Gear.Club Unlimited",status-playable,playable,2021-06-08 13:03:19.000 -010072900AFF0000,"Gear.Club Unlimited 2",status-playable;nvdec;online-broken,playable,2022-07-29 12:52:16.000 -01000F000D9F0000,"Geki Yaba Runner Anniversary Edition",status-playable,playable,2021-02-19 18:59:07.000 -,"Gekido Kintaro's Revenge",status-playable,playable,2020-10-27 12:44:05.000 -01009D000AF3A000,"Gelly Break",UE4;status-playable,playable,2021-03-03 16:04:02.000 -01001A4008192000,"Gem Smashers",nvdec;status-playable,playable,2021-06-08 13:40:51.000 -,"Genetic Disaster",status-playable,playable,2020-06-19 21:41:12.000 -0100D7E0110B2000,"Genkai Tokki Moero Crystal H- 極限凸起 萌情水晶 H - 한계돌파 모에로크리스탈 H",32-bit;status-playable,playable,2022-06-06 00:42:09.000 -010000300C79C000,"Gensokyo Defenders",status-playable;online-broken;UE4,playable,2022-07-29 13:48:12.000 -0100AC600EB4C000,"Gensou Rougoku no Kaleidscope",status-menus;crash,menus,2021-11-24 08:45:07.000 -,"Georifters",UE4;crash;nvdec;status-menus,menus,2020-12-04 22:30:50.000 -,"Gerrrms",status-playable,playable,2020-08-15 11:32:52.000 -,"Get 10 Quest",status-playable,playable,2020-08-03 12:48:39.000 -0100B5B00E77C000,"Get Over Here",status-playable,playable,2022-10-28 11:53:52.000 -0100EEB005ACC000,"Ghost 1.0",status-playable,playable,2021-02-19 20:48:47.000 -010063200C588000,"Ghost Blade HD",status-playable;online-broken,playable,2022-09-13 21:51:21.000 -,"Ghost Grab 3000",status-playable,playable,2020-07-11 18:09:52.000 -,"Ghost Parade",status-playable,playable,2020-07-14 00:43:54.000 -01004B301108C000,"Ghost Sweeper",status-playable,playable,2022-10-10 12:45:36.000 -010029B018432000,"Ghost Trick Phantom Detective",status-playable,playable,2023-08-23 14:50:12.000 -010008A00F632000,"Ghostbusters: The Video Game Remastered",status-playable;nvdec,playable,2021-09-17 07:26:57.000 -,"Ghostrunner",UE4;crash;gpu;nvdec;status-ingame,ingame,2020-12-17 13:01:59.000 -0100D6200F2BA000,"Ghosts 'n Goblins Resurrection",status-playable,playable,2023-05-09 12:40:41.000 -01003830092B8000,"Giana Sisters: Twisted Dreams - Owltimate Edition",status-playable,playable,2022-07-29 14:06:12.000 -0100D95012C0A000,"Gibbous - A Cthulhu Adventure",status-playable;nvdec,playable,2022-10-10 12:57:17.000 -010045F00BFC2000,"GIGA WRECKER Alt.",status-playable,playable,2022-07-29 14:13:54.000 -01002C400E526000,"Gigantosaurus The Game",status-playable;UE4,playable,2022-09-27 21:20:00.000 -0100C50007070000,"Ginger: Beyond the Crystal",status-playable,playable,2021-02-17 16:27:00.000 -,"Girabox",status-playable,playable,2020-12-12 13:55:05.000 -,"Giraffe and Annika",UE4;crash;status-ingame,ingame,2020-12-04 22:41:57.000 -01006DD00CC96000,"Girls und Panzer Dream Tank Match DX",status-playable;ldn-untested,playable,2022-09-12 16:07:11.000 -,"Glaive: Brick Breaker",status-playable,playable,2020-05-20 12:15:59.000 -,"Glitch's Trip",status-playable,playable,2020-12-17 16:00:57.000 -0100EB501130E000,"Glyph",status-playable,playable,2021-02-08 19:56:51.000 -,"Gnome More War",status-playable,playable,2020-12-17 16:33:07.000 -,"Gnomes Garden 2",status-playable,playable,2021-02-19 20:08:13.000 -010036C00D0D6000,"Gnomes Garden: Lost King",deadlock;status-menus,menus,2021-11-18 11:14:03.000 -01008EF013A7C000,"Gnosia",status-playable,playable,2021-04-05 17:20:30.000 -01000C800FADC000,"Go All Out",status-playable;online-broken,playable,2022-09-21 19:16:34.000 -010055A0161F4000,"Go Rally",gpu;status-ingame,ingame,2023-08-16 21:18:23.000 -0100C1800A9B6000,"GO VACATION",status-playable;nvdec;ldn-works,playable,2024-05-13 19:28:53.000 -,"Go! Fish Go!",status-playable,playable,2020-07-27 13:52:28.000 -010032600C8CE000,"Goat Simulator",32-bit;status-playable,playable,2022-07-29 21:02:33.000 -01001C700873E000,"GOD EATER 3",gpu;status-ingame;nvdec,ingame,2022-07-29 21:33:21.000 -,"GOD WARS THE COMPLETE LEGEND",nvdec;status-playable,playable,2020-05-19 14:37:50.000 -0100CFA0111C8000,"Gods Will Fall",status-playable,playable,2021-02-08 16:49:59.000 -,"Goetia",status-playable,playable,2020-05-19 12:55:39.000 -,"Going Under",deadlock;nvdec;status-ingame,ingame,2020-12-11 22:29:46.000 -,"Goken",status-playable,playable,2020-08-05 20:22:38.000 -010013800F0A4000,"Golazo - 010013800F0A4000",status-playable,playable,2022-09-13 21:58:37.000 -01003C000D84C000,"Golem Gates",status-ingame;crash;nvdec;online-broken;UE4,ingame,2022-07-30 11:35:11.000 -,"Golf Story",status-playable,playable,2020-05-14 14:56:17.000 -01006FB00EBE0000,"Golf With Your Friends",status-playable;online-broken,playable,2022-09-29 12:55:11.000 -0100EEC00AA6E000,"Gone Home",status-playable,playable,2022-08-01 11:14:20.000 -,"Gonner",status-playable,playable,2020-05-19 12:05:02.000 -,"Good Job!",status-playable,playable,2021-03-02 13:15:55.000 -01003AD0123A2000,"Good Night, Knight",status-nothing;crash,nothing,2023-07-30 23:38:13.000 -,"Good Pizza, Great Pizza",status-playable,playable,2020-12-04 22:59:18.000 -,"Goosebumps Dead of Night",gpu;nvdec;status-ingame,ingame,2020-12-10 20:02:16.000 -,"Goosebumps: The Game",status-playable,playable,2020-05-19 11:56:52.000 -0100F2A005C98000,"Gorogoa",status-playable,playable,2022-08-01 11:55:08.000 -,"GORSD",status-playable,playable,2020-12-04 22:15:21.000 -,"Gotcha Racing 2nd",status-playable,playable,2020-07-23 17:14:04.000 -,"Gothic Murder: Adventure That Changes Destiny",deadlock;status-ingame;crash,ingame,2022-09-30 23:16:53.000 -,"Grab the Bottle",status-playable,playable,2020-07-14 17:06:41.000 -,"Graceful Explosion Machine",status-playable,playable,2020-05-19 20:36:55.000 -,"Grand Brix Shooter",slow;status-playable,playable,2020-06-24 13:23:54.000 -010038100D436000,"Grand Guilds",UE4;nvdec;status-playable,playable,2021-04-26 12:49:05.000 -0100BE600D07A000,"Grand Prix Story",status-playable,playable,2022-08-01 12:42:23.000 -05B1D2ABD3D30000,"Grand Theft Auto 3",services;status-nothing;crash;homebrew,nothing,2023-05-01 22:01:58.000 -0100E0600BBC8000,"Grandia HD Collection",status-boots;crash,boots,2024-08-19 04:29:48.000 -,"Grass Cutter",slow;status-ingame,ingame,2020-05-19 18:27:42.000 -,"Grave Danger",status-playable,playable,2020-05-18 17:41:28.000 -010054A013E0C000,"GraviFire",status-playable,playable,2021-04-05 17:13:32.000 -01002C2011828000,"Gravity Rider Zero",gpu;status-ingame;vulkan-backend-bug,ingame,2022-09-29 13:56:13.000 -,"Greedroid",status-playable,playable,2020-12-14 11:14:32.000 -010068D00AE68000,"GREEN",status-playable,playable,2022-08-01 12:54:15.000 -0100CBB0070EE000,"Green Game",nvdec;status-playable,playable,2021-02-19 18:51:55.000 -0100DFE00F002000,"GREEN The Life Algorithm",status-playable,playable,2022-09-27 21:37:13.000 -0100DA7013792000,"Grey Skies: A War of the Worlds Story",status-playable;UE4,playable,2022-10-24 11:13:59.000 -0100DC800A602000,"GRID Autosport",status-playable;nvdec;online-broken;ldn-untested,playable,2023-03-02 20:14:45.000 -,"Grid Mania",status-playable,playable,2020-05-19 14:11:05.000 -,"Gridd: Retroenhanced",status-playable,playable,2020-05-20 11:32:40.000 -0100B7900B024000,"Grim Fandango Remastered",status-playable;nvdec,playable,2022-08-01 13:55:58.000 -010078E012D80000,"Grim Legends 2: Song Of The Dark Swan",status-playable;nvdec,playable,2022-10-18 12:58:45.000 -010009F011F90000,"Grim Legends: The Forsaken Bride",status-playable;nvdec,playable,2022-10-18 13:14:06.000 -01001E200F2F8000,"Grimshade",status-playable,playable,2022-10-02 12:44:20.000 -0100538012496000,"Grindstone",status-playable,playable,2023-02-08 15:54:06.000 -0100459009A2A000,"GRIP",status-playable;nvdec;online-broken;UE4,playable,2022-08-01 15:00:22.000 -0100E1700C31C000,"GRIS",nvdec;status-playable,playable,2021-06-03 13:33:44.000 -01009D7011B02000,"GRISAIA PHANTOM TRIGGER 01&02",status-playable;nvdec,playable,2022-12-04 21:16:06.000 -01005250123B8000,"Grisaia Phantom Trigger 03",audout;status-playable,playable,2021-01-31 12:30:47.000 -0100D970123BA000,"GRISAIA PHANTOM TRIGGER 04 -0100D970123BA000",audout;status-playable,playable,2021-01-31 12:40:37.000 -01002330123BC000,"GRISAIA PHANTOM TRIGGER 05",audout;nvdec;status-playable,playable,2021-01-31 12:49:59.000 -0100CAF013AE6000,"GRISAIA PHANTOM TRIGGER 5.5",audout;nvdec;status-playable,playable,2021-01-31 12:59:44.000 -010091300FFA0000,"Grizzland",gpu;status-ingame,ingame,2024-07-11 16:28:34.000 -0100EB500D92E000,"Groove Coaster: Wai Wai Party!!!!",status-playable;nvdec;ldn-broken,playable,2021-11-06 14:54:27.000 -,"Guacamelee! 2",status-playable,playable,2020-05-15 14:56:59.000 -,"Guacamelee! Super Turbo Championship Edition",status-playable,playable,2020-05-13 23:44:18.000 -,"Guess the Character",status-playable,playable,2020-05-20 13:14:19.000 -,"Guess The Word",status-playable,playable,2020-07-26 21:34:25.000 -,"GUILTY GEAR XX ACCENT CORE PLUS R",nvdec;status-playable,playable,2021-01-13 09:28:33.000 -01003C6008940000,"GUNBIRD for Nintendo Switch",32-bit;status-playable,playable,2021-06-04 19:16:01.000 -,"GUNBIRD2 for Nintendo Switch",status-playable,playable,2020-10-10 14:41:16.000 -,"Gunka o haita neko",gpu;nvdec;status-ingame,ingame,2020-08-25 12:37:56.000 -,"Gunman Clive HD Collection",status-playable,playable,2020-10-09 12:17:35.000 -,"Guns Gore and Cannoli 2",online;status-playable,playable,2021-01-06 18:43:59.000 -,"Gunvolt Chronicles: Luminous Avenger iX",status-playable,playable,2020-06-16 22:47:07.000 -0100763015C2E000,"Gunvolt Chronicles: Luminous Avenger iX 2",status-nothing;crash;Needs Update,nothing,2022-04-29 15:34:34.000 -01002C8018554000,"Gurimugurimoa OnceMore Demo",status-playable,playable,2022-07-29 22:07:31.000 -0100AC601DCA8000,"Gylt",status-ingame;crash,ingame,2024-03-18 20:16:51.000 -0100822012D76000,"HAAK",gpu;status-ingame,ingame,2023-02-19 14:31:05.000 -,"Habroxia",status-playable,playable,2020-06-16 23:04:42.000 -0100535012974000,"Hades",status-playable;vulkan,playable,2022-10-05 10:45:21.000 -,"Hakoniwa Explorer Plus",slow;status-ingame,ingame,2021-02-19 16:56:19.000 -,"Halloween Pinball",status-playable,playable,2021-01-12 16:00:46.000 -01006FF014152000,"Hamidashi Creative",gpu;status-ingame,ingame,2021-12-19 15:30:51.000 -01003B9007E86000,"Hammerwatch",status-playable;online-broken;ldn-broken,playable,2022-08-01 16:28:46.000 -01003620068EA000,"Hand of Fate 2",status-playable,playable,2022-08-01 15:44:16.000 -,"Hang the Kings",status-playable,playable,2020-07-28 22:56:59.000 -010066C018E50000,"Happy Animals Mini Golf",gpu;status-ingame,ingame,2022-12-04 19:24:28.000 -0100ECE00D13E000,"Hard West",status-nothing;regression,nothing,2022-02-09 07:45:56.000 -,"HARDCORE Maze Cube",status-playable,playable,2020-12-04 20:01:24.000 -,"HARDCORE MECHA",slow;status-playable,playable,2020-11-01 15:06:33.000 -01000C90117FA000,"HardCube",status-playable,playable,2021-05-05 18:33:03.000 -,"Hardway Party",status-playable,playable,2020-07-26 12:35:07.000 -0100D0500AD30000,"Harvest Life",status-playable,playable,2022-08-01 16:51:45.000 -,"Harvest Moon One World - 010016B010FDE00",status-playable,playable,2023-05-26 09:17:19.000 -0100A280187BC000,"Harvestella",status-playable;UE4;vulkan-backend-bug;mac-bug,playable,2024-02-13 07:04:11.000 -,"Has-Been Heroes",status-playable,playable,2021-01-13 13:31:48.000 -01001CC00FA1A000,"Hatsune Miku: Project DIVA Mega Mix",audio;status-playable;online-broken,playable,2024-01-07 23:12:57.000 -01009E6014F18000,"Haunted Dawn: The Zombie Apocalypse",status-playable,playable,2022-10-28 12:31:51.000 -,"Haunted Dungeons: Hyakki Castle",status-playable,playable,2020-08-12 14:21:48.000 -0100E2600DBAA000,"Haven",status-playable,playable,2021-03-24 11:52:41.000 -0100EA900FB2C000,"Hayfever",status-playable;loader-allocator,playable,2022-09-22 17:35:41.000 -0100EFE00E1DC000,"Headliner: NoviNews",online;status-playable,playable,2021-03-01 11:36:00.000 -,"Headsnatchers",UE4;crash;status-menus,menus,2020-07-14 13:29:14.000 -,"Headspun",status-playable,playable,2020-07-31 19:46:47.000 -,"Heart and Slash",status-playable,playable,2021-01-13 20:56:32.000 -,"Heaven Dust",status-playable,playable,2020-05-17 14:02:41.000 -0100FD901000C000,"Heaven's Vault",crash;status-ingame,ingame,2021-02-08 18:22:01.000 -,"Helheim Hassle",status-playable,playable,2020-10-14 11:38:36.000 -,"Hell is Other Demons",status-playable,playable,2021-01-13 13:23:02.000 -01000938017E5C00,"Hell Pie0",status-playable;nvdec;UE4,playable,2022-11-03 16:48:46.000 -0100A4600E27A000,"Hell Warders",online;status-playable,playable,2021-02-27 02:31:03.000 -010044500CF8E000,"Hellblade: Senua's Sacrifice",gpu;status-ingame;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-01 19:36:50.000 -010087D0084A8000,"Hello Kitty Kruisers With Sanrio Friends",nvdec;status-playable,playable,2021-06-04 19:08:46.000 -0100FAA00B168000,"Hello Neighbor",status-playable;UE4,playable,2022-08-01 21:32:23.000 -,"Hello Neighbor: Hide And Seek",UE4;gpu;slow;status-ingame,ingame,2020-10-24 10:59:57.000 -010024600C794000,"Hellpoint",status-menus,menus,2021-11-26 13:24:20.000 -,"Hero Express",nvdec;status-playable,playable,2020-08-06 13:23:43.000 -010077D01094C000,"Hero-U: Rogue to Redemption",nvdec;status-playable,playable,2021-03-24 11:40:01.000 -0100D2B00BC54000,"Heroes of Hammerwatch",status-playable,playable,2022-08-01 18:30:21.000 -01001B70080F0000,"Heroine Anthem Zero episode 1",status-playable;vulkan-backend-bug,playable,2022-08-01 22:02:36.000 -010057300B0DC000,"Heroki",gpu;status-ingame,ingame,2023-07-30 19:30:01.000 -,"Heroland",status-playable,playable,2020-08-05 15:35:39.000 -01007AC00E012000,"Hexagravity",status-playable,playable,2021-05-28 13:47:48.000 -01004E800F03C000,"Hidden",slow;status-ingame,ingame,2022-10-05 10:56:53.000 -0100F6A00A684000,"Higurashi no Naku Koro ni Hō",audio;status-ingame,ingame,2021-09-18 14:40:28.000 -0100F8D0129F4000,"Himehibi 1 gakki - Princess Days",status-nothing;crash,nothing,2021-11-03 08:34:19.000 -,"Hiragana Pixel Party",status-playable,playable,2021-01-14 08:36:50.000 -01004990132AC000,"Hitman 3 - Cloud Version",Needs Update;crash;services;status-nothing,nothing,2021-04-18 22:35:07.000 -010083A018262000,"Hitman: Blood Money - Reprisal",deadlock;status-ingame,ingame,2024-09-28 16:28:50.000 -,"Hob: The Definitive Edition",status-playable,playable,2021-01-13 09:39:19.000 -0100F7300ED2C000,"Hoggy 2",status-playable,playable,2022-10-10 13:53:35.000 -0100F7E00C70E000,"Hogwarts Legacy 0100F7E00C70E000",status-ingame;slow,ingame,2024-09-03 19:53:58.000 -0100633007D48000,"Hollow Knight",status-playable;nvdec,playable,2023-01-16 15:44:56.000 -0100F2100061E800,"Hollow0",UE4;gpu;status-ingame,ingame,2021-03-03 23:42:56.000 -,"Holy Potatoes! What the Hell?!",status-playable,playable,2020-07-03 10:48:56.000 -,"HoPiKo",status-playable,playable,2021-01-13 20:12:38.000 -010087800EE5A000,"Hopping girl KOHANE Jumping Kingdom: Princess of the Black Rabbit",status-boots;crash,boots,2023-02-19 00:51:21.000 -010086D011EB8000,"Horace",status-playable,playable,2022-10-10 14:03:50.000 -0100001019F6E000,"Horizon Chase 2",deadlock;slow;status-ingame;crash;UE4,ingame,2024-08-19 04:24:06.000 -01009EA00B714000,"Horizon Chase Turbo",status-playable,playable,2021-02-19 19:40:56.000 -0100E4200FA82000,"Horror Pinball Bundle",status-menus;crash,menus,2022-09-13 22:15:34.000 -0100017007980000,"Hotel Transylvania 3: Monsters Overboard",nvdec;status-playable,playable,2021-01-27 18:55:31.000 -0100D0E00E51E000,"Hotline Miami Collection",status-playable;nvdec,playable,2022-09-09 16:41:19.000 -0100BDE008218000,"Hotshot Racing",gpu;status-ingame;nvdec;online-broken;ldn-untested;vulkan-backend-bug,ingame,2024-02-04 21:31:17.000 -0100CAE00EB02000,"House Flipper",status-playable,playable,2021-06-16 18:28:32.000 -0100F6800910A000,"Hover",status-playable;online-broken,playable,2022-09-20 12:54:46.000 -0100A66003384000,"Hulu",status-boots;online-broken,boots,2022-12-09 10:05:00.000 -,"Human Resource Machine",32-bit;status-playable,playable,2020-12-17 21:47:09.000 -,"Human: Fall Flat",status-playable,playable,2021-01-13 18:36:05.000 -,"Hungry Shark World",status-playable,playable,2021-01-13 18:26:08.000 -0100EBA004726000,"Huntdown",status-playable,playable,2021-04-05 16:59:54.000 -010068000CAC0000,"Hunter's Legacy: Purrfect Edition",status-playable,playable,2022-08-02 10:33:31.000 -0100C460040EA000,"Hunting Simulator",status-playable;UE4,playable,2022-08-02 10:54:08.000 -010061F010C3A000,"Hunting Simulator 2",status-playable;UE4,playable,2022-10-10 14:25:51.000 -,"Hyper Jam",UE4;crash;status-boots,boots,2020-12-15 22:52:11.000 -01003B200B372000,"Hyper Light Drifter - Special Edition",status-playable;vulkan-backend-bug,playable,2023-01-13 15:44:48.000 -,"HyperBrawl Tournament",crash;services;status-boots,boots,2020-12-04 23:03:27.000 -0100A8B00F0B4000,"HYPERCHARGE: Unboxed",status-playable;nvdec;online-broken;UE4;ldn-untested,playable,2022-09-27 21:52:39.000 -010061400ED90000,"HyperParasite",status-playable;nvdec;UE4,playable,2022-09-27 22:05:44.000 -0100959010466000,"Hypnospace Outlaw",status-ingame;nvdec,ingame,2023-08-02 22:46:49.000 -01002B00111A2000,"Hyrule Warriors: Age of Calamity",gpu;deadlock;slow;status-ingame;crash;nvdec;amd-vendor-bug,ingame,2024-02-28 00:47:00.000 -0100A2C01320E000,"Hyrule Warriors: Age of Calamity - Demo Version",slow;status-playable,playable,2022-10-10 17:37:41.000 -0100AE00096EA000,"Hyrule Warriors: Definitive Edition",services-horizon;status-ingame;nvdec,ingame,2024-06-16 10:34:05.000 -0100849000BDA000,"I AM SETSUNA",status-playable,playable,2021-11-28 11:06:11.000 -01001860140B0000,"I Saw Black Clouds",nvdec;status-playable,playable,2021-04-19 17:22:16.000 -,"I, Zombie",status-playable,playable,2021-01-13 14:53:44.000 -01004E5007E92000,"Ice Age Scrat's Nutty Adventure",status-playable;nvdec,playable,2022-09-13 22:22:29.000 -,"Ice Cream Surfer",status-playable,playable,2020-07-29 12:04:07.000 -0100954014718000,"Ice Station Z",status-menus;crash,menus,2021-11-21 20:02:15.000 -,"ICEY",status-playable,playable,2021-01-14 16:16:04.000 -0100BC60099FE000,"Iconoclasts",status-playable,playable,2021-08-30 21:11:04.000 -,"Idle Champions of the Forgotten Realms",online;status-boots,boots,2020-12-17 18:24:57.000 -01002EC014BCA000,"Idol Days - 愛怒流でいす",gpu;status-ingame;crash,ingame,2021-12-19 15:31:28.000 -,"If Found...",status-playable,playable,2020-12-11 13:43:14.000 -01001AC00ED72000,"If My Heart Had Wings",status-playable,playable,2022-09-29 14:54:57.000 -01009F20086A0000,"Ikaruga",status-playable,playable,2023-04-06 15:00:02.000 -010040900AF46000,"Ikenfell",status-playable,playable,2021-06-16 17:18:44.000 -01007BC00E55A000,"Immortal Planet",status-playable,playable,2022-09-20 13:40:43.000 -010079501025C000,"Immortal Realms: Vampire Wars",nvdec;status-playable,playable,2021-06-17 17:41:46.000 -,"Immortal Redneck - 0100F400435A000",nvdec;status-playable,playable,2021-01-27 18:36:28.000 -01004A600EC0A000,"Immortals Fenyx Rising",gpu;status-menus;crash,menus,2023-02-24 16:19:55.000 -0100737003190000,"IMPLOSION",status-playable;nvdec,playable,2021-12-12 03:52:13.000 -0100A760129A0000,"In rays of the Light",status-playable,playable,2021-04-07 15:18:07.000 -01004DE011076000,"Indie Darling Bundle Vol. 3",status-playable,playable,2022-10-02 13:01:57.000 -0100A2101107C000,"Indie Puzzle Bundle Vol 1",status-playable,playable,2022-09-27 22:23:21.000 -,"Indiecalypse",nvdec;status-playable,playable,2020-06-11 20:19:09.000 -01001D3003FDE000,"Indivisible",status-playable;nvdec,playable,2022-09-29 15:20:57.000 -01002BD00F626000,"Inertial Drift",status-playable;online-broken,playable,2022-10-11 12:22:19.000 -,"Infernium",UE4;regression;status-nothing,nothing,2021-01-13 16:36:07.000 -,"Infinite Minigolf",online;status-playable,playable,2020-09-29 12:26:25.000 -01001CB00EFD6000,"Infliction",status-playable;nvdec;UE4,playable,2022-10-02 13:15:55.000 -0100F1401161E000,"INMOST",status-playable,playable,2022-10-05 11:27:40.000 -,"InnerSpace",status-playable,playable,2021-01-13 19:36:14.000 -0100D2D009028000,"INSIDE",status-playable,playable,2021-12-25 20:24:56.000 -,"Inside Grass: A little adventure",status-playable,playable,2020-10-15 15:26:27.000 -010099700D750000,"INSTANT SPORTS",status-playable,playable,2022-09-09 12:59:40.000 -,"Instant Sports Summer Games",gpu;status-menus,menus,2020-09-02 13:39:28.000 -010031B0145B8000,"Instant Sports Tennis",status-playable,playable,2022-10-28 16:42:17.000 -010041501005E000,"Interrogation: You will be deceived",status-playable,playable,2022-10-05 11:40:10.000 -01000F700DECE000,"Into the Dead 2",status-playable;nvdec,playable,2022-09-14 12:36:14.000 -01001D0003B96000,"INVERSUS Deluxe",status-playable;online-broken,playable,2022-08-02 14:35:36.000 -,"Invisible Fist",status-playable,playable,2020-08-08 13:25:52.000 -,"Invisible, Inc.",crash;status-nothing,nothing,2021-01-29 16:28:13.000 -01005F400E644000,"Invisigun Reloaded",gpu;online;status-ingame,ingame,2021-06-10 12:13:24.000 -010041C00D086000,"Ion Fury",status-ingame;vulkan-backend-bug,ingame,2022-08-07 08:27:51.000 -010095C016C14000,"Iridium",status-playable,playable,2022-08-05 23:19:53.000 -0100945012168000,"Iris Fall",status-playable;nvdec,playable,2022-10-18 13:40:22.000 -0100AD300B786000,"Iris School of Wizardry - Vinculum Hearts -",status-playable,playable,2022-12-05 13:11:15.000 -01005270118D6000,"Iron Wings",slow;status-ingame,ingame,2022-08-07 08:32:57.000 -,"Ironcast",status-playable,playable,2021-01-13 13:54:29.000 -0100E5700CD56000,"Irony Curtain: From Matryoshka with Love",status-playable,playable,2021-06-04 20:12:37.000 -,"Is It Wrong to Try to Pick Up Girls in a Dungeon? Infinite Combate",status-playable,playable,2020-08-31 13:52:21.000 -0100F06013710000,"ISLAND",status-playable,playable,2021-05-06 15:11:47.000 -010077900440A000,"Island Flight Simulator",status-playable,playable,2021-06-04 19:42:46.000 -,"Island Saver",nvdec;status-playable,playable,2020-10-23 22:07:02.000 -,"Isoland",status-playable,playable,2020-07-26 13:48:16.000 -,"Isoland 2: Ashes of Time",status-playable,playable,2020-07-26 14:29:05.000 -010001F0145A8000,"Isolomus",services;status-boots,boots,2021-11-03 07:48:21.000 -010068700C70A000,"ITTA",status-playable,playable,2021-06-07 03:15:52.000 -,"Ittle Dew 2+",status-playable,playable,2020-11-17 11:44:32.000 -0100DEB00F12A000,"IxSHE Tell",status-playable;nvdec,playable,2022-12-02 18:00:42.000 -0100D8E00C874000,"Izneo",status-menus;online-broken,menus,2022-08-06 15:56:23.000 -,"James Pond Operation Robocod",status-playable,playable,2021-01-13 09:48:45.000 -,"Japanese Rail Sim: Journey to Kyoto",nvdec;status-playable,playable,2020-07-29 17:14:21.000 -,"JDM Racing",status-playable,playable,2020-08-03 17:02:37.000 -,"Jenny LeClue - Detectivu",crash;status-nothing,nothing,2020-12-15 21:07:07.000 -01006E400AE2A000,"Jeopardy!",audout;nvdec;online;status-playable,playable,2021-02-22 13:53:46.000 -0100E4900D266000,"Jet Kave Adventure",status-playable;nvdec,playable,2022-09-09 14:50:39.000 -0100F3500C70C000,"Jet Lancer",gpu;status-ingame,ingame,2021-02-15 18:15:47.000 -0100A5A00AF26000,"Jettomero: Hero of the Universe",status-playable,playable,2022-08-02 14:46:43.000 -01008330134DA000,"Jiffy",gpu;status-ingame;opengl,ingame,2024-02-03 23:11:24.000 -,"Jim Is Moving Out!",deadlock;status-ingame,ingame,2020-06-03 22:05:19.000 -0100F4D00D8BE000,"Jinrui no Ninasama he",status-ingame;crash,ingame,2023-03-07 02:04:17.000 -010038D011F08000,"Jisei: The First Case HD",audio;status-playable,playable,2022-10-05 11:43:33.000 -,"Job the Leprechaun",status-playable,playable,2020-06-05 12:10:06.000 -01007090104EC000,"John Wick Hex",status-playable,playable,2022-08-07 08:29:12.000 -010069B002CDE000,"Johnny Turbo's Arcade Gate of Doom",status-playable,playable,2022-07-29 12:17:50.000 -010080D002CC6000,"Johnny Turbo's Arcade Two Crude Dudes",status-playable,playable,2022-08-02 20:29:50.000 -0100D230069CC000,"Johnny Turbo's Arcade Wizard Fire",status-playable,playable,2022-08-02 20:39:15.000 -01008120128C2000,"JoJos Bizarre Adventure All-Star Battle R",status-playable,playable,2022-12-03 10:45:10.000 -01008B60117EC000,"Journey to the Savage Planet",status-playable;nvdec;UE4;ldn-untested,playable,2022-10-02 18:48:12.000 -0100C7600F654000,"Juicy Realm - 0100C7600F654000",status-playable,playable,2023-02-21 19:16:20.000 -,"Jumanji",UE4;crash;status-boots,boots,2020-07-12 13:52:25.000 -0100183010F12000,"JUMP FORCE Deluxe Edition",status-playable;nvdec;online-broken;UE4,playable,2023-10-01 15:56:05.000 -,"Jump King",status-playable,playable,2020-06-09 10:12:39.000 -0100B9C012706000,"Jump Rope Challenge",services;status-boots;crash;Needs Update,boots,2023-02-27 01:24:28.000 -,"Jumping Joe & Friends",status-playable,playable,2021-01-13 17:09:42.000 -,"JunkPlanet",status-playable,playable,2020-11-09 12:38:33.000 -0100CE100A826000,"Jurassic Pinball",status-playable,playable,2021-06-04 19:02:37.000 -010050A011344000,"Jurassic World Evolution Complete Edition",cpu;status-menus;crash,menus,2023-08-04 18:06:54.000 -0100BCE000598000,"Just Dance 2017",online;status-playable,playable,2021-03-05 09:46:01.000 -,"Just Dance 2019",gpu;online;status-ingame,ingame,2021-02-27 17:21:27.000 -0100DDB00DB38000,"JUST DANCE 2020",status-playable,playable,2022-01-24 13:31:57.000 -0100EA6014BB8000,"Just Dance 2022",gpu;services;status-ingame;crash;Needs Update,ingame,2022-10-28 11:01:53.000 -0100BEE017FC0000,"Just Dance 2023",status-nothing,nothing,2023-06-05 16:44:54.000 -0100AC600CF0A000,"Just Die Already",status-playable;UE4,playable,2022-12-13 13:37:50.000 -,"Just Glide",status-playable,playable,2020-08-07 17:38:10.000 -,"Just Shapes & Beats",ldn-untested;nvdec;status-playable,playable,2021-02-09 12:18:36.000 -010035A0044E8000,"JYDGE",status-playable,playable,2022-08-02 21:20:13.000 -0100D58012FC2000,"Kagamihara/Justice",crash;status-nothing,nothing,2021-06-21 16:41:29.000 -0100D5F00EC52000,"Kairobotica",status-playable,playable,2021-05-06 12:17:56.000 -0100BDC00A664000,"KAMEN RIDER CLIMAX SCRAMBLE",status-playable;nvdec;ldn-untested,playable,2024-07-03 08:51:11.000 -0100A9801180E000,"KAMEN RIDER memory of heroez / Premium Sound Edition",status-playable,playable,2022-12-06 03:14:26.000 -,"KAMIKO",status-playable,playable,2020-05-13 12:48:57.000 -,"Kangokuto Mary Skelter Finale",audio;crash;status-ingame,ingame,2021-01-09 22:39:28.000 -01007FD00DB20000,"Katakoi Contrast - collection of branch -",status-playable;nvdec,playable,2022-12-09 09:41:26.000 -0100D7000C2C6000,"Katamari Damacy REROLL",status-playable,playable,2022-08-02 21:35:05.000 -0100F9800EDFA000,"KATANA KAMI: A Way of the Samurai Story",slow;status-playable,playable,2022-04-09 10:40:16.000 -010029600D56A000,"Katana ZERO",status-playable,playable,2022-08-26 08:09:09.000 -010038B00F142000,"Kaze and the Wild Masks",status-playable,playable,2021-04-19 17:11:03.000 -,"Keen: One Girl Army",status-playable,playable,2020-12-14 23:19:52.000 -01008D400A584000,"Keep Talking and Nobody Explodes",status-playable,playable,2021-02-15 18:05:21.000 -01004B100BDA2000,"Kemono Friends Picross",status-playable,playable,2023-02-08 15:54:34.000 -,"Kentucky Robo Chicken",status-playable,playable,2020-05-12 20:54:17.000 -0100327005C94000,"Kentucky Route Zero [0100327005C94000]",status-playable,playable,2024-04-09 23:22:46.000 -,"KeroBlaster",status-playable,playable,2020-05-12 20:42:52.000 -0100F680116A2000,"Kholat",UE4;nvdec;status-playable,playable,2021-06-17 11:52:48.000 -,"Kid Tripp",crash;status-nothing,nothing,2020-10-15 07:41:23.000 -,"Kill la Kill - IF",status-playable,playable,2020-06-09 14:47:08.000 -,"Kill The Bad Guy",status-playable,playable,2020-05-12 22:16:10.000 -0100F2900B3E2000,"Killer Queen Black",ldn-untested;online;status-playable,playable,2021-04-08 12:46:18.000 -,"Kin'iro no Corda Octave",status-playable,playable,2020-09-22 13:23:12.000 -010089000F0E8000,"Kine",status-playable;UE4,playable,2022-09-14 14:28:37.000 -0100E6B00FFBA000,"King Lucas",status-playable,playable,2022-09-21 19:43:23.000 -,"King Oddball",status-playable,playable,2020-05-13 13:47:57.000 -01008D80148C8000,"King of Seas",status-playable;nvdec;UE4,playable,2022-10-28 18:29:41.000 -0100515014A94000,"King of Seas Demo",status-playable;nvdec;UE4,playable,2022-10-28 18:09:31.000 -,"KINGDOM HEARTS Melody of Memory",crash;nvdec;status-ingame,ingame,2021-03-03 17:34:12.000 -0100A280121F6000,"Kingdom Rush",status-nothing;32-bit;crash;Needs More Attention,nothing,2022-10-05 12:34:00.000 -0100BD9004AB6000,"Kingdom: New Lands",status-playable,playable,2022-08-02 21:48:50.000 -,"Kingdom: Two Crowns",status-playable,playable,2020-05-16 19:36:21.000 -0100EF50132BE000,"Kingdoms of Amalur: Re-Reckoning",status-playable,playable,2023-08-10 13:05:08.000 -01004D300C5AE000,"Kirby and the Forgotten Land",gpu;status-ingame,ingame,2024-03-11 17:11:21.000 -010091201605A000,"Kirby and the Forgotten Land (Demo version)",status-playable;demo,playable,2022-08-21 21:03:01.000 -0100227010460000,"Kirby Fighters 2",ldn-works;online;status-playable,playable,2021-06-17 13:06:39.000 -01007E3006DDA000,"Kirby Star Allies",status-playable;nvdec,playable,2023-11-15 17:06:19.000 -0100A8E016236000,"Kirby’s Dream Buffet",status-ingame;crash;online-broken;Needs Update;ldn-works,ingame,2024-03-03 17:04:44.000 -01006B601380E000,"Kirby’s Return to Dream Land Deluxe",status-playable,playable,2024-05-16 19:58:04.000 -010091D01A57E000,"Kirby’s Return to Dream Land Deluxe - Demo",status-playable;demo,playable,2023-02-18 17:21:55.000 -0100F3A00F4CA000,"Kissed by the Baddest Bidder",gpu;status-ingame;nvdec,ingame,2022-12-04 20:57:11.000 -01000C900A136000,"Kitten Squad",status-playable;nvdec,playable,2022-08-03 12:01:59.000 -,"Klondike Solitaire",status-playable,playable,2020-12-13 16:17:27.000 -,"Knight Squad",status-playable,playable,2020-08-09 16:54:51.000 -010024B00E1D6000,"Knight Squad 2",status-playable;nvdec;online-broken,playable,2022-10-28 18:38:09.000 -,"Knight Terrors",status-playable,playable,2020-05-13 13:09:22.000 -,"Knightin'+",status-playable,playable,2020-08-31 18:18:21.000 -,"Knights of Pen and Paper +1 Deluxier Edition",status-playable,playable,2020-05-11 21:46:32.000 -,"Knights of Pen and Paper 2 Deluxiest Edition",status-playable,playable,2020-05-13 14:07:00.000 -010001A00A1F6000,"Knock-Knock",nvdec;status-playable,playable,2021-02-01 20:03:19.000 -01009EF00DDB4000,"Knockout City",services;status-boots;online-broken,boots,2022-12-09 09:48:58.000 -0100C57019BA2000,"Koa and the Five Pirates of Mara",gpu;status-ingame,ingame,2024-07-11 16:14:44.000 -,"Koi DX",status-playable,playable,2020-05-11 21:37:51.000 -,"Koi no Hanasaku Hyakkaen",32-bit;gpu;nvdec;status-ingame,ingame,2020-10-03 14:17:10.000 -01005D200C9AA000,"Koloro",status-playable,playable,2022-08-03 12:34:02.000 -0100464009294000,"Kona",status-playable,playable,2022-08-03 12:48:19.000 -010016C011AAA000,"Kono Subarashii Sekai ni Shukufuku o Kono Yokubo no Isho ni Choai o",status-playable,playable,2023-04-26 09:51:08.000 -,"Koral",UE4;crash;gpu;status-menus,menus,2020-11-16 12:41:26.000 -,"KORG Gadget",status-playable,playable,2020-05-13 13:57:24.000 -010046600CCA4000,"Kotodama: The 7 Mysteries of Fujisawa",audout;status-playable,playable,2021-02-01 20:28:37.000 -010022801242C000,"KukkoroDays",status-menus;crash,menus,2021-11-25 08:52:56.000 -010035A00DF62000,"KUNAI",status-playable;nvdec,playable,2022-09-20 13:48:34.000 -010060400ADD2000,"Kunio-Kun: The World Classics Collection",online;status-playable,playable,2021-01-29 20:21:46.000 -010037500F282000,"KUUKIYOMI 2: Consider It More! - New Era",status-nothing;crash;Needs Update,nothing,2021-11-02 09:34:40.000 -0100894011F62000,"Kwaidan ~Azuma manor story~",status-playable,playable,2022-10-05 12:50:44.000 -0100830004FB6000,"L.A. Noire",status-playable,playable,2022-08-03 16:49:35.000 -,"L.F.O. - Lost Future Omega -",UE4;deadlock;status-boots,boots,2020-10-16 12:16:44.000 -0100F2B0123AE000,"L.O.L. Surprise! Remix: We Rule the World",status-playable,playable,2022-10-11 22:48:03.000 -010038000F644000,"La Mulana 2",status-playable,playable,2022-09-03 13:45:57.000 -010026000F662800,"LA-MULANA",gpu;status-ingame,ingame,2022-08-12 01:06:21.000 -0100E5D00F4AE000,"LA-MULANA 1 & 2",status-playable,playable,2022-09-22 17:56:36.000 -010058500B3E0000,"Labyrinth of Refrain: Coven of Dusk",status-playable,playable,2021-02-15 17:38:48.000 -,"Labyrinth of the Witch",status-playable,playable,2020-11-01 14:42:37.000 -0100BAB00E8C0000,"Langrisser I and II",status-playable,playable,2021-02-19 15:46:10.000 -,"Lanota",status-playable,playable,2019-09-04 01:58:14.000 -01005E000D3D8000,"Lapis x Labyrinth",status-playable,playable,2021-02-01 18:58:08.000 -,"Laraan",status-playable,playable,2020-12-16 12:45:48.000 -0100DA700879C000,"Last Day of June",nvdec;status-playable,playable,2021-06-08 11:35:32.000 -01009E100BDD6000,"LAST FIGHT",status-playable,playable,2022-09-20 13:54:55.000 -0100055007B86000,"Late Shift",nvdec;status-playable,playable,2021-02-01 18:43:58.000 -,"Later Daters",status-playable,playable,2020-07-29 16:35:45.000 -01001730144DA000,"Layers of Fear 2",status-playable;nvdec;UE4,playable,2022-10-28 18:49:52.000 -,"Layers of Fear: Legacy",nvdec;status-playable,playable,2021-02-15 16:30:41.000 -0100CE500D226000,"Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy - Deluxe Edition",status-playable;nvdec;opengl,playable,2022-09-14 15:01:57.000 -0100FDB00AA80000,"Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy DX+0",gpu;status-ingame;nvdec;opengl,ingame,2022-09-14 15:15:55.000 -01009C100390E000,"League of Evil",online;status-playable,playable,2021-06-08 11:23:27.000 -,"Left-Right: The Mansion",status-playable,playable,2020-05-13 13:02:12.000 -010079901C898000,"Legacy of Kain™ Soul Reaver 1&2 Remastered",status-playable,playable,2025-01-07 05:50:01.000 -01002DB007A96000,"Legend of Kay Anniversary",nvdec;status-playable,playable,2021-01-29 18:38:29.000 -,"Legend of the Skyfish",status-playable,playable,2020-06-24 13:04:22.000 -,"Legend of the Tetrarchs",deadlock;status-ingame,ingame,2020-07-10 07:54:03.000 -0100A73006E74000,"Legendary Eleven",status-playable,playable,2021-06-08 12:09:03.000 -0100A7700B46C000,"Legendary Fishing",online;status-playable,playable,2021-04-14 15:08:46.000 -0100739018020000,"LEGO 2K Drive",gpu;status-ingame;ldn-works,ingame,2024-04-09 02:05:12.000 -01003A30012C0000,"Lego City Undercover",status-playable;nvdec,playable,2024-09-30 08:44:27.000 -010070D009FEC000,"LEGO DC Super-Villains",status-playable,playable,2021-05-27 18:10:37.000 -010052A00B5D2000,"LEGO Harry Potter Collection",status-ingame;crash,ingame,2024-01-31 10:28:07.000 -010073C01AF34000,"LEGO Horizon Adventures",status-ingame;vulkan-backend-bug;opengl-backend-bug;UE4,ingame,2025-01-07 04:24:56.000 -01001C100E772000,"LEGO Jurassic World",status-playable,playable,2021-05-27 17:00:20.000 -01006F600FFC8000,"LEGO Marvel Super Heroes",status-playable,playable,2024-09-10 19:02:19.000 -0100D3A00409E000,"LEGO Marvel Super Heroes 2",status-nothing;crash,nothing,2023-03-02 17:12:33.000 -010042D00D900000,"LEGO Star Wars: The Skywalker Saga",gpu;slow;status-ingame,ingame,2024-04-13 20:08:46.000 -0100A01006E00000,"LEGO The Incredibles",status-nothing;crash,nothing,2022-08-03 18:36:59.000 -,"LEGO Worlds",crash;slow;status-ingame,ingame,2020-07-17 13:35:39.000 -,"Legrand Legacy: Tale of the Fatebounds",nvdec;status-playable,playable,2020-07-26 12:27:36.000 -010031A0135CA000,"Leisure Suit Larry - Wet Dreams Dry Twice",status-playable,playable,2022-10-28 19:00:57.000 -0100A8E00CAA0000,"Leisure Suit Larry: Wet Dreams Don't Dry",status-playable,playable,2022-08-03 19:51:44.000 -01003AB00983C000,"Lethal League Blaze",online;status-playable,playable,2021-01-29 20:13:31.000 -,"Letter Quest Remastered",status-playable,playable,2020-05-11 21:30:34.000 -0100CE301678E800,"Letters - a written adventure",gpu;status-ingame,ingame,2023-02-21 20:12:38.000 -,"Levelhead",online;status-ingame,ingame,2020-10-18 11:44:51.000 -,"Levels+",status-playable,playable,2020-05-12 13:51:39.000 -0100C8000F146000,"Liberated",gpu;status-ingame;nvdec,ingame,2024-07-04 04:58:24.000 -01003A90133A6000,"Liberated: Enhanced Edition",gpu;status-ingame;nvdec,ingame,2024-07-04 04:48:48.000 -,"Lichtspeer: Double Speer Edition",status-playable,playable,2020-05-12 16:43:09.000 -010041F0128AE000,"Liege Dragon",status-playable,playable,2022-10-12 10:27:03.000 -010006300AFFE000,"Life Goes On",status-playable,playable,2021-01-29 19:01:20.000 -0100FD101186C000,"Life is Strange 2",status-playable;UE4,playable,2024-07-04 05:05:58.000 -0100DC301186A000,"Life is Strange Remastered",status-playable;UE4,playable,2022-10-03 16:54:44.000 -010008501186E000,"Life is Strange: Before the Storm Remastered",status-playable,playable,2023-09-28 17:15:44.000 -0100500012AB4000,"Life is Strange: True Colors [0100500012AB4000]",gpu;status-ingame;UE4,ingame,2024-04-08 16:11:52.000 -,"Life of Boris: Super Slav",status-ingame,ingame,2020-12-17 11:40:05.000 -0100B3A0135D6000,"Life of Fly",status-playable,playable,2021-01-25 23:41:07.000 -010069A01506E000,"Life of Fly 2",slow;status-playable,playable,2022-10-28 19:26:52.000 -01005B6008132000,"Lifeless Planet",status-playable,playable,2022-08-03 21:25:13.000 -,"Light Fall",nvdec;status-playable,playable,2021-01-18 14:55:36.000 -010087700D07C000,"Light Tracer",nvdec;status-playable,playable,2021-05-05 19:15:43.000 -01009C8009026000,"LIMBO",cpu;status-boots;32-bit,boots,2023-06-28 15:39:19.000 -,"Linelight",status-playable,playable,2020-12-17 12:18:07.000 -,"Lines X",status-playable,playable,2020-05-11 15:28:30.000 -,"Lines XL",status-playable,playable,2020-08-31 17:48:23.000 -0100943010310000,"Little Busters! Converted Edition",status-playable;nvdec,playable,2022-09-29 15:34:56.000 -,"Little Dragons Cafe",status-playable,playable,2020-05-12 00:00:52.000 -,"LITTLE FRIENDS -DOGS & CATS-",status-playable,playable,2020-11-12 12:45:51.000 -,"Little Inferno",32-bit;gpu;nvdec;status-ingame,ingame,2020-12-17 21:43:56.000 -0100E7000E826000,"Little Misfortune",nvdec;status-playable,playable,2021-02-23 20:39:44.000 -0100FE0014200000,"Little Mouse's Encyclopedia",status-playable,playable,2022-10-28 19:38:58.000 -01002FC00412C000,"Little Nightmares",status-playable;nvdec;UE4,playable,2022-08-03 21:45:35.000 -010097100EDD6000,"Little Nightmares II",status-playable;UE4,playable,2023-02-10 18:24:44.000 -010093A0135D6000,"Little Nightmares II DEMO",status-playable;UE4;demo;vulkan-backend-bug,playable,2024-05-16 18:47:20.000 -0100535014D76000,"Little Noah: Scion of Paradise",status-playable;opengl-backend-bug,playable,2022-09-14 04:17:13.000 -0100E6D00E81C000,"Little Racer",status-playable,playable,2022-10-18 16:41:13.000 -,"Little Shopping",status-playable,playable,2020-10-03 16:34:35.000 -,"Little Town Hero",status-playable,playable,2020-10-15 23:28:48.000 -,"Little Triangle",status-playable,playable,2020-06-17 14:46:26.000 -0100CF801776C000,"LIVE A LIVE",status-playable;UE4;amd-vendor-bug,playable,2023-02-05 15:12:07.000 -0100BA000FC9C000,"LOCO-SPORTS",status-playable,playable,2022-09-20 14:09:30.000 -,"Lode Runner Legacy",status-playable,playable,2021-01-10 14:10:28.000 -,"Lofi Ping Pong",crash;status-ingame,ingame,2020-12-15 20:09:22.000 -0100B6D016EE6000,"Lone Ruin",status-ingame;crash;nvdec,ingame,2023-01-17 06:41:19.000 -0100A0C00E0DE000,"Lonely Mountains Downhill",status-playable;online-broken,playable,2024-07-04 05:08:11.000 -010062A0178A8000,"LOOPERS",gpu;slow;status-ingame;crash,ingame,2022-06-17 19:21:45.000 -,"Lost Horizon",status-playable,playable,2020-09-01 13:41:22.000 -,"Lost Horizon 2",nvdec;status-playable,playable,2020-06-16 12:02:12.000 -01005FE01291A000,"Lost in Random",gpu;status-ingame,ingame,2022-12-18 07:09:28.000 -0100156014C6A000,"Lost Lands 3: The Golden Curse",status-playable;nvdec,playable,2022-10-24 16:30:00.000 -0100BDD010AC8000,"Lost Lands: Dark Overlord",status-playable,playable,2022-10-03 11:52:58.000 -0100133014510000,"Lost Lands: The Four Horsemen",status-playable;nvdec,playable,2022-10-24 16:41:00.000 -010054600AC74000,"LOST ORBIT: Terminal Velocity",status-playable,playable,2021-06-14 12:21:12.000 -,"Lost Phone Stories",services;status-ingame,ingame,2020-04-05 23:17:33.000 -01008AD013A86800,"Lost Ruins",gpu;status-ingame,ingame,2023-02-19 14:09:00.000 -,"LOST SPHEAR",status-playable,playable,2021-01-10 06:01:21.000 -0100018013124000,"Lost Words: Beyond the Page",status-playable,playable,2022-10-24 17:03:21.000 -0100D36011AD4000,"Love Letter from Thief X",gpu;status-ingame;nvdec,ingame,2023-11-14 03:55:31.000 -,"Ludo Mania",crash;services;status-nothing,nothing,2020-04-03 00:33:47.000 -010048701995E000,"Luigi's Mansion 2 HD",status-ingame;ldn-broken;amd-vendor-bug,ingame,2024-09-05 23:47:27.000 -0100DCA0064A6000,"Luigi's Mansion 3",gpu;slow;status-ingame;Needs Update;ldn-works,ingame,2024-09-27 22:17:36.000 -,"Lumini",status-playable,playable,2020-08-09 20:45:09.000 -0100FF00042EE000,"Lumo",status-playable;nvdec,playable,2022-02-11 18:20:30.000 -,"Lust for Darkness",nvdec;status-playable,playable,2020-07-26 12:09:15.000 -0100F0B00F68E000,"Lust for Darkness: Dawn Edition",nvdec;status-playable,playable,2021-06-16 13:47:46.000 -0100EC2011A80000,"LUXAR",status-playable,playable,2021-03-04 21:11:57.000 -0100F2400D434000,"Machi Knights Blood bagos",status-playable;nvdec;UE4,playable,2022-09-14 15:08:04.000 -,"Mad Carnage",status-playable,playable,2021-01-10 13:00:07.000 -,"Mad Father",status-playable,playable,2020-11-12 13:22:10.000 -010061E00EB1E000,"Mad Games Tycoon",status-playable,playable,2022-09-20 14:23:14.000 -01004A200E722000,"Magazine Mogul",status-playable;loader-allocator,playable,2022-10-03 12:05:34.000 -,"MagiCat",status-playable,playable,2020-12-11 15:22:07.000 -,"Magicolors",status-playable,playable,2020-08-12 18:39:11.000 -01008C300B624000,"Mahjong Solitaire Refresh",status-boots;crash,boots,2022-12-09 12:02:55.000 -010099A0145E8000,"Mahluk dark demon",status-playable,playable,2021-04-15 13:14:24.000 -,"Mainlining",status-playable,playable,2020-06-05 01:02:00.000 -0100D9900F220000,"Maitetsu: Pure Station",status-playable,playable,2022-09-20 15:12:49.000 -0100A78017BD6000,"Makai Senki Disgaea 7",status-playable,playable,2023-10-05 00:22:18.000 -,"Mana Spark",status-playable,playable,2020-12-10 13:41:01.000 -010093D00CB22000,"Maneater",status-playable;nvdec;UE4,playable,2024-05-21 16:11:57.000 -,"Manifold Garden",status-playable,playable,2020-10-13 20:27:13.000 -0100C9A00952A000,"Manticore - Galaxy on Fire",status-boots;crash;nvdec,boots,2024-02-04 04:37:24.000 -0100E98002F6E000,"Mantis Burn Racing",status-playable;online-broken;ldn-broken,playable,2024-09-02 02:13:04.000 -01008E800D1FE000,"Marble Power Blast",status-playable,playable,2021-06-04 16:00:02.000 -,"Märchen Forest - 0100B201D5E000",status-playable,playable,2021-02-04 21:33:34.000 -0100DA7017C9E000,"Marco & The Galaxy Dragon Demo",gpu;status-ingame;demo,ingame,2023-06-03 13:05:33.000 -01006D0017F7A000,"Mario & Luigi: Brothership",status-ingame;crash;slow;UE4;mac-bug,ingame,2025-01-07 04:00:00.000 -010002C00C270000,"MARIO & SONIC AT THE OLYMPIC GAMES TOKYO 2020",status-ingame;crash;online-broken;ldn-works,ingame,2024-08-23 16:12:55.000 -010067300059A000,"Mario + Rabbids Kingdom Battle",slow;status-playable;opengl-backend-bug,playable,2024-05-06 10:16:54.000 -0100317013770000,"Mario + Rabbids® Sparks of Hope",gpu;status-ingame;Needs Update,ingame,2024-06-20 19:56:19.000 -0100C9C00E25C000,"Mario Golf: Super Rush",gpu;status-ingame,ingame,2024-08-18 21:31:48.000 -0100152000022000,"Mario Kart 8 Deluxe",32-bit;status-playable;ldn-works;LAN;amd-vendor-bug,playable,2024-09-19 11:55:17.000 -0100ED100BA3A000,"Mario Kart Live: Home Circuit",services;status-nothing;crash;Needs More Attention,nothing,2022-12-07 22:36:52.000 -01006FE013472000,"Mario Party Superstars",gpu;status-ingame;ldn-works;mac-bug,ingame,2024-05-16 11:23:34.000 -010019401051C000,"Mario Strikers: Battle League Football",status-boots;crash;nvdec,boots,2024-05-07 06:23:56.000 -0100BDE00862A000,"Mario Tennis Aces",gpu;status-ingame;nvdec;ldn-works;LAN,ingame,2024-09-28 15:54:40.000 -0100B99019412000,"Mario vs. Donkey Kong",status-playable,playable,2024-05-04 21:22:39.000 -0100D9E01DBB0000,"Mario vs. Donkey Kong™ Demo",status-playable,playable,2024-02-18 10:40:06.000 -01009A700A538000,"Mark of the Ninja Remastered",status-playable,playable,2022-08-04 15:48:30.000 -010044600FDF0000,"Marooners",status-playable;nvdec;online-broken,playable,2022-10-18 21:35:26.000 -010060700AC50000,"Marvel Ultimate Alliance 3: The Black Order",status-playable;nvdec;ldn-untested,playable,2024-02-14 19:51:51.000 -01003DE00C95E000,"Mary Skelter 2",status-ingame;crash;regression,ingame,2023-09-12 07:37:28.000 -0100113008262000,"Masquerada: Songs and Shadows",status-playable,playable,2022-09-20 15:18:54.000 -01004800197F0000,"Master Detective Archives: Rain Code",gpu;status-ingame,ingame,2024-04-19 20:11:09.000 -0100CC7009196000,"Masters of Anima",status-playable;nvdec,playable,2022-08-04 16:00:09.000 -,"Mathland",status-playable,playable,2020-09-01 15:40:06.000 -,"Max & The Book of Chaos",status-playable,playable,2020-09-02 12:24:43.000 -01001C9007614000,"Max: The Curse Of Brotherhood",status-playable;nvdec,playable,2022-08-04 16:33:04.000 -,"Maze",status-playable,playable,2020-12-17 16:13:58.000 -0100EEF00CBC0000,"MEANDERS",UE4;gpu;status-ingame,ingame,2021-06-11 19:19:33.000 -,"Mech Rage",status-playable,playable,2020-11-18 12:30:16.000 -0100C4F005EB4000,"Mecho Tales",status-playable,playable,2022-08-04 17:03:19.000 -0100E4600D31A000,"Mechstermination Force",status-playable,playable,2024-07-04 05:39:15.000 -,"Medarot Classics Plus Kabuto Ver",status-playable,playable,2020-11-21 11:31:18.000 -,"Medarot Classics Plus Kuwagata Ver",status-playable,playable,2020-11-21 11:30:40.000 -0100BBC00CB9A000,"Mega Mall Story",slow;status-playable,playable,2022-08-04 17:10:58.000 -0100B0C0086B0000,"Mega Man 11",status-playable,playable,2021-04-26 12:07:53.000 -0100734016266000,"Mega Man Battle Network Legacy Collection Vol. 2",status-playable,playable,2023-08-03 18:04:32.000 -01002D4007AE0000,"Mega Man Legacy Collection Vol.1",gpu;status-ingame,ingame,2021-06-03 18:17:17.000 -,"Mega Man X Legacy Collection",audio;crash;services;status-menus,menus,2020-12-04 04:30:17.000 -,"Megabyte Punch",status-playable,playable,2020-10-16 14:07:18.000 -,"Megadimension Neptunia VII",32-bit;nvdec;status-playable,playable,2020-12-17 20:56:03.000 -010038E016264000,"Megaman Battle Network Legacy Collection Vol 1",status-playable,playable,2023-04-25 03:55:57.000 -,"Megaman Legacy Collection 2",status-playable,playable,2021-01-06 08:47:59.000 -010025C00D410000,"MEGAMAN ZERO/ZX LEGACY COLLECTION",status-playable,playable,2021-06-14 16:17:32.000 -010082B00E8B8000,"Megaquarium",status-playable,playable,2022-09-14 16:50:00.000 -010005A00B312000,"Megaton Rainfall",gpu;status-boots;opengl,boots,2022-08-04 18:29:43.000 -0100EA100DF92000,"Meiji Katsugeki Haikara Ryuuseigumi - Seibai Shimaseu, Yonaoshi Kagyou",32-bit;status-playable;nvdec,playable,2022-12-05 13:19:12.000 -0100B360068B2000,"Mekorama",gpu;status-boots,boots,2021-06-17 16:37:21.000 -01000FA010340000,"Melbits World",status-menus;nvdec;online,menus,2021-11-26 13:51:22.000 -0100F68019636000,"Melon Journey",status-playable,playable,2023-04-23 21:20:01.000 -,"Memories Off -Innocent Fille- for Dearest",status-playable,playable,2020-08-04 07:31:22.000 -010062F011E7C000,"Memory Lane",status-playable;UE4,playable,2022-10-05 14:31:03.000 -,"Meow Motors",UE4;gpu;status-ingame,ingame,2020-12-18 00:24:01.000 -,"Mercenaries Saga Chronicles",status-playable,playable,2021-01-10 12:48:19.000 -,"Mercenaries Wings The False Phoenix",crash;services;status-nothing,nothing,2020-05-08 22:42:12.000 -,"Mercenary Kings",online;status-playable,playable,2020-10-16 13:05:58.000 -0100E5000D3CA000,"Merchants of Kaidan",status-playable,playable,2021-04-15 11:44:28.000 -,"METAGAL",status-playable,playable,2020-06-05 00:05:48.000 -010047F01AA10000,"Metal Gear Solid Master Collection Vol. 1: Metal Gear Solid 3",services-horizon;status-menus,menus,2024-07-24 06:34:06.000 -0100E8F00F6BE000,"METAL MAX Xeno Reborn",status-playable,playable,2022-12-05 15:33:53.000 -,"Metaloid: Origin",status-playable,playable,2020-06-04 20:26:35.000 -010055200E87E000,"Metamorphosis",UE4;audout;gpu;nvdec;status-ingame,ingame,2021-06-16 16:18:11.000 -0100D4900E82C000,"Metro 2033 Redux",gpu;status-ingame,ingame,2022-11-09 10:53:13.000 -0100F0400E850000,"Metro: Last Light Redux",slow;status-ingame;nvdec;vulkan-backend-bug,ingame,2023-11-01 11:53:52.000 -010093801237C000,"Metroid Dread",status-playable,playable,2023-11-13 04:02:36.000 -010012101468C000,"Metroid Prime Remastered",gpu;status-ingame;Needs Update;vulkan-backend-bug;opengl-backend-bug,ingame,2024-05-07 22:48:15.000 -0100A1200F20C000,"Midnight Evil",status-playable,playable,2022-10-18 22:55:19.000 -0100C1E0135E0000,"Mighty Fight Federation",online;status-playable,playable,2021-04-06 18:39:56.000 -0100AD701344C000,"Mighty Goose",status-playable;nvdec,playable,2022-10-28 20:25:38.000 -,"Mighty Gunvolt Burst",status-playable,playable,2020-10-19 16:05:49.000 -010060D00AE36000,"Mighty Switch Force! Collection",status-playable,playable,2022-10-28 20:40:32.000 -01003DA010E8A000,"Miitopia",gpu;services-horizon;status-ingame,ingame,2024-09-06 10:39:13.000 -01007DA0140E8000,"Miitopia Demo",services;status-menus;crash;demo,menus,2023-02-24 11:50:58.000 -,"Miles & Kilo",status-playable,playable,2020-10-22 11:39:49.000 -0100976008FBE000,"Millie",status-playable,playable,2021-01-26 20:47:19.000 -0100F5700C9A8000,"MIND Path to Thalamus",UE4;status-playable,playable,2021-06-16 17:37:25.000 -0100D71004694000,"Minecraft",status-ingame;crash;ldn-broken,ingame,2024-09-29 12:08:59.000 -01006BD001E06000,"Minecraft - Nintendo Switch Edition",status-playable;ldn-broken,playable,2023-10-15 01:47:08.000 -01006C100EC08000,"Minecraft Dungeons",status-playable;nvdec;online-broken;UE4,playable,2024-06-26 22:10:43.000 -01007C6012CC8000,"Minecraft Legends",gpu;status-ingame;crash,ingame,2024-03-04 00:32:24.000 -01003EF007ABA000,"Minecraft: Story Mode - Season Two",status-playable;online-broken,playable,2023-03-04 00:30:50.000 -010059C002AC2000,"Minecraft: Story Mode - The Complete Adventure",status-boots;crash;online-broken,boots,2022-08-04 18:56:58.000 -0100B7500F756000,"Minefield",status-playable,playable,2022-10-05 15:03:29.000 -01003560119A6000,"Mini Motor Racing X",status-playable,playable,2021-04-13 17:54:49.000 -,"Mini Trains",status-playable,playable,2020-07-29 23:06:20.000 -010039200EC66000,"Miniature - The Story Puzzle",status-playable;UE4,playable,2022-09-14 17:18:50.000 -010069200EB80000,"Ministry of Broadcast",status-playable,playable,2022-08-10 00:31:16.000 -0100C3F000BD8000,"Minna de Wai Wai! Spelunker",status-nothing;crash,nothing,2021-11-03 07:17:11.000 -0100FAE010864000,"Minoria",status-playable,playable,2022-08-06 18:50:50.000 -01005AB015994000,"Miss Kobayashi's Dragonmaid Burst Forth!! Choro-gon☆Breath",gpu;status-playable,playable,2022-03-28 02:22:24.000 -0100CFA0138C8000,"Missile Dancer",status-playable,playable,2021-01-31 12:22:03.000 -0100E3601495C000,"Missing Features 2D",status-playable,playable,2022-10-28 20:52:54.000 -010059200CC40000,"Mist Hunter",status-playable,playable,2021-06-16 13:58:58.000 -,"Mittelborg: City of Mages",status-playable,playable,2020-08-12 19:58:06.000 -0100A9F01776A000,"MLB The Show 22 Tech Test",services;status-nothing;crash;Needs Update;demo,nothing,2022-12-09 10:28:34.000 -0100E2E01C32E000,"MLB The Show 24",services-horizon;status-nothing,nothing,2024-03-31 04:54:11.000 -0100876015D74000,"MLB® The Show™ 22",gpu;slow;status-ingame,ingame,2023-04-25 06:28:43.000 -0100913019170000,"MLB® The Show™ 23",gpu;status-ingame,ingame,2024-07-26 00:56:50.000 -,"MO:Astray",crash;status-ingame,ingame,2020-12-11 21:45:44.000 -,"Moai VI: Unexpected Guests",slow;status-playable,playable,2020-10-27 16:40:20.000 -0100D8700B712000,"Modern Combat Blackout",crash;status-nothing,nothing,2021-03-29 19:47:15.000 -010004900D772000,"Modern Tales: Age of Invention",slow;status-playable,playable,2022-10-12 11:20:19.000 -0100B8500D570000,"Moero Chronicle Hyper",32-bit;status-playable,playable,2022-08-11 07:21:56.000 -01004EB0119AC000,"Moero Crystal H",32-bit;status-playable;nvdec;vulkan-backend-bug,playable,2023-07-05 12:04:22.000 -0100B46017500000,"MOFUMOFU Sensen",gpu;status-menus,menus,2024-09-21 21:51:08.000 -01004A400C320000,"Momodora: Revere Under the Moonlight",deadlock;status-nothing,nothing,2022-02-06 03:47:43.000 -01002CC00BC4C000,"Momonga Pinball Adventures",status-playable,playable,2022-09-20 16:00:40.000 -010093100DA04000,"Momotaro Dentetsu Showa, Heisei, Reiwa mo Teiban!",gpu;status-ingame,ingame,2023-09-22 10:21:46.000 -0100FBD00ED24000,"MONKEY BARRELS",status-playable,playable,2022-09-14 17:28:52.000 -,"Monkey King: Master of the Clouds",status-playable,playable,2020-09-28 22:35:48.000 -01003030161DC000,"Monomals",gpu;status-ingame,ingame,2024-08-06 22:02:51.000 -0100F3A00FB78000,"Mononoke Slashdown",status-menus;crash,menus,2022-05-04 20:55:47.000 -01007430037F6000,"Monopoly for Nintendo Switch",status-playable;nvdec;online-broken,playable,2024-02-06 23:13:01.000 -01005FF013DC2000,"Monopoly Madness",status-playable,playable,2022-01-29 21:13:52.000 -0100E2D0128E6000,"Monster Blast",gpu;status-ingame,ingame,2023-09-02 20:02:32.000 -01006F7001D10000,"Monster Boy and the Cursed Kingdom",status-playable;nvdec,playable,2022-08-04 20:06:32.000 -,"Monster Bugs Eat People",status-playable,playable,2020-07-26 02:05:34.000 -0100742007266000,"Monster Energy Supercross - The Official Videogame",status-playable;nvdec;UE4,playable,2022-08-04 20:25:00.000 -0100F8100B982000,"Monster Energy Supercross - The Official Videogame 2",status-playable;nvdec;UE4;ldn-untested,playable,2022-08-04 21:21:24.000 -010097800EA20000,"Monster Energy Supercross - The Official Videogame 3",UE4;audout;nvdec;online;status-playable,playable,2021-06-14 12:37:54.000 -0100E9900ED74000,"Monster Farm",32-bit;nvdec;status-playable,playable,2021-05-05 19:29:13.000 -0100770008DD8000,"Monster Hunter Generation Ultimate",32-bit;status-playable;online-broken;ldn-works,playable,2024-03-18 14:35:36.000 -0100B04011742000,"Monster Hunter Rise",gpu;slow;status-ingame;crash;nvdec;online-broken;Needs Update;ldn-works,ingame,2024-08-24 11:04:59.000 -010093A01305C000,"Monster Hunter Rise Demo",status-playable;online-broken;ldn-works;demo,playable,2022-10-18 23:04:17.000 -,"Monster Hunter Stories 2: Wings of Ruin ID 0100E2101144600",services;status-ingame,ingame,2022-07-10 19:27:30.000 -010042501329E000,"MONSTER HUNTER STORIES 2: WINGS OF RUIN Trial Version",status-playable;demo,playable,2022-11-13 22:20:26.000 -,"Monster Hunter XX Demo",32-bit;cpu;status-nothing,nothing,2020-03-22 10:12:28.000 -0100C3800049C000,"Monster Hunter XX Nintendo Switch Ver ( Double Cross )",status-playable,playable,2024-07-21 14:08:09.000 -010088400366E000,"MONSTER JAM CRUSH IT!™",UE4;nvdec;online;status-playable,playable,2021-04-08 19:29:27.000 -010095C00F354000,"Monster Jam Steel Titans",status-menus;crash;nvdec;UE4,menus,2021-11-14 09:45:38.000 -010051B0131F0000,"Monster Jam Steel Titans 2",status-playable;nvdec;UE4,playable,2022-10-24 17:17:59.000 -,"Monster Puzzle",status-playable,playable,2020-09-28 22:23:10.000 -,"Monster Sanctuary",crash;status-ingame,ingame,2021-04-04 05:06:41.000 -0100D30010C42000,"Monster Truck Championship",slow;status-playable;nvdec;online-broken;UE4,playable,2022-10-18 23:16:51.000 -01004E10142FE000,"Monster wo taoshite tsuyoi ken ya yoroi wo te ni shinasai. Shinde mo akiramezu ni tsuyoku nari nasai. Yuushatai ga maoh wo taosu sono hi wo shinzite imasu. - モンスターを倒して強い剣や鎧を手にしなさい。死んでも諦めずに強くなりなさい。勇者隊が魔王を倒すその日を信じています。",crash;status-ingame,ingame,2021-07-23 10:56:44.000 -010039F00EF70000,"Monstrum",status-playable,playable,2021-01-31 11:07:26.000 -,"Moonfall Ultimate",nvdec;status-playable,playable,2021-01-17 14:01:25.000 -0100E3D014ABC000,"Moorhuhn Jump and Run Traps and Treasures",status-playable,playable,2024-03-08 15:10:02.000 -010045C00F274000,"Moorkuhn Kart 2",status-playable;online-broken,playable,2022-10-28 21:10:35.000 -010040E00F642000,"Morbid: The Seven Acolytes",status-playable,playable,2022-08-09 17:21:58.000 -,"More Dark",status-playable,playable,2020-12-15 16:01:06.000 -,"Morphies Law",UE4;crash;ldn-untested;nvdec;online;status-menus,menus,2020-11-22 17:05:29.000 -,"Morphite",status-playable,playable,2021-01-05 19:40:55.000 -01006560184E6000,"Mortal Kombat 1",gpu;status-ingame,ingame,2024-09-04 15:45:47.000 -0100F2200C984000,"Mortal Kombat 11",slow;status-ingame;nvdec;online-broken;ldn-broken,ingame,2024-06-19 02:22:17.000 -,"Mosaic",status-playable,playable,2020-08-11 13:07:35.000 -010040401D564000,"Moto GP 24",gpu;status-ingame,ingame,2024-05-10 23:41:00.000 -01002ED00B01C000,"Moto Racer 4",UE4;nvdec;online;status-playable,playable,2021-04-08 19:09:11.000 -01003F200D0F2000,"Moto Rush GT",status-playable,playable,2022-08-05 11:23:55.000 -0100361007268000,"MotoGP 18",status-playable;nvdec;UE4;ldn-untested,playable,2022-08-05 11:41:45.000 -01004B800D0E8000,"MotoGP 19",status-playable;nvdec;online-broken;UE4,playable,2022-08-05 11:54:14.000 -01001FA00FBBC000,"MotoGP 20",status-playable;ldn-untested,playable,2022-09-29 17:58:01.000 -01000F5013820000,"MotoGP 21",gpu;status-ingame;nvdec;online-broken;UE4;ldn-untested,ingame,2022-10-28 21:35:08.000 -01002A900D6D6000,"Motorsport Manager for Nintendo Switch",status-playable;nvdec,playable,2022-08-05 12:48:14.000 -01009DB00D6E0000,"Mountain Rescue Simulator",status-playable,playable,2022-09-20 16:36:48.000 -0100C4C00E73E000,"Moving Out",nvdec;status-playable,playable,2021-06-07 21:17:24.000 -0100D3300F110000,"Mr Blaster",status-playable,playable,2022-09-14 17:56:24.000 -,"Mr. DRILLER DrillLand",nvdec;status-playable,playable,2020-07-24 13:56:48.000 -,"Mr. Shifty",slow;status-playable,playable,2020-05-08 15:28:16.000 -,"Ms. Splosion Man",online;status-playable,playable,2020-05-09 20:45:43.000 -,"Muddledash",services;status-ingame,ingame,2020-05-08 16:46:14.000 -01009D200952E000,"MudRunner - American Wilds",gpu;status-ingame;ldn-untested;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-16 11:40:52.000 -010073E008E6E000,"Mugsters",status-playable,playable,2021-01-28 17:57:17.000 -,"MUJO",status-playable,playable,2020-05-08 16:31:04.000 -0100211005E94000,"Mulaka",status-playable,playable,2021-01-28 18:07:20.000 -010038B00B9AE000,"Mummy Pinball",status-playable,playable,2022-08-05 16:08:11.000 -,"Muse Dash",status-playable,playable,2020-06-06 14:41:29.000 -,"Mushroom Quest",status-playable,playable,2020-05-17 13:07:08.000 -,"Mushroom Wars 2",nvdec;status-playable,playable,2020-09-28 15:26:08.000 -,"Music Racer",status-playable,playable,2020-08-10 08:51:23.000 -,"MUSNYX",status-playable,playable,2020-05-08 14:24:43.000 -,"Musou Orochi 2 Ultimate",crash;nvdec;status-boots,boots,2021-04-09 19:39:16.000 -0100F6000EAA8000,"Must Dash Amigos",status-playable,playable,2022-09-20 16:45:56.000 -0100C3E00ACAA000,"Mutant Football League Dynasty Edition",status-playable;online-broken,playable,2022-08-05 17:01:51.000 -01004BE004A86000,"Mutant Mudds Collection",status-playable,playable,2022-08-05 17:11:38.000 -0100E6B00DEA4000,"Mutant Year Zero: Road to Eden",status-playable;nvdec;UE4,playable,2022-09-10 13:31:10.000 -0100161009E5C000,"MX Nitro",status-playable,playable,2022-09-27 22:34:33.000 -0100218011E7E000,"MX vs ATV All Out",status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-10-25 19:51:46.000 -,"MXGP3 - The Official Motocross Videogame",UE4;gpu;nvdec;status-ingame,ingame,2020-12-16 14:00:20.000 -01002C6012334000,"My Aunt is a Witch",status-playable,playable,2022-10-19 09:21:17.000 -,"My Butler",status-playable,playable,2020-06-27 13:46:23.000 -010031200B94C000,"My Friend Pedro: Blood Bullets Bananas",nvdec;status-playable,playable,2021-05-28 11:19:17.000 -,"My Girlfriend is a Mermaid!?",nvdec;status-playable,playable,2020-05-08 13:32:55.000 -,"MY HERO ONE'S JUSTICE",UE4;crash;gpu;online;status-menus,menus,2020-12-10 13:11:04.000 -,"MY HERO ONE'S JUSTICE 2",UE4;gpu;nvdec;status-ingame,ingame,2020-12-18 14:08:47.000 -0100E4701373E000,"My Hidden Things",status-playable,playable,2021-04-15 11:26:06.000 -,"My Little Dog Adventure",gpu;status-ingame,ingame,2020-12-10 17:47:37.000 -,"My Little Riding Champion",slow;status-playable,playable,2020-05-08 17:00:53.000 -010086B00C784000,"My Lovely Daughter",status-playable,playable,2022-11-24 17:25:32.000 -0100E7700C284000,"My Memory of Us",status-playable,playable,2022-08-20 11:03:14.000 -010028F00ABAE000,"My Riding Stables - Life with Horses",status-playable,playable,2022-08-05 21:39:07.000 -010042A00FBF0000,"My Riding Stables 2: A New Adventure",status-playable,playable,2021-05-16 14:14:59.000 -0100E25008E68000,"My Time At Portia",status-playable,playable,2021-05-28 12:42:55.000 -0100CD5011A02000,"My Universe - Cooking Star Restaurant",status-playable,playable,2022-10-19 10:00:44.000 -0100F71011A0A000,"My Universe - Fashion Boutique",status-playable;nvdec,playable,2022-10-12 14:54:19.000 -0100CD5011A02000,"My Universe - Pet Clinic Cats & Dogs",status-boots;crash;nvdec,boots,2022-02-06 02:05:53.000 -01006C301199C000,"My Universe - School Teacher",nvdec;status-playable,playable,2021-01-21 16:02:52.000 -,"n Verlore Verstand",slow;status-ingame,ingame,2020-12-10 18:00:28.000 -01009A500E3DA000,"n Verlore Verstand - Demo",status-playable,playable,2021-02-09 00:13:32.000 -01000D5005974000,"N++",status-playable,playable,2022-08-05 21:54:58.000 -,"NAIRI: Tower of Shirin",nvdec;status-playable,playable,2020-08-09 19:49:12.000 -010002F001220000,"NAMCO MUSEUM",status-playable;ldn-untested,playable,2024-08-13 07:52:21.000 -0100DAA00AEE6000,"NAMCO MUSEUM ARCADE PAC",status-playable,playable,2021-06-07 21:44:50.000 -,"NAMCOT COLLECTION",audio;status-playable,playable,2020-06-25 13:35:22.000 -010072B00BDDE000,"Narcos: Rise of the Cartels",UE4;crash;nvdec;status-boots,boots,2021-03-22 13:18:47.000 -010084D00CF5E000,"NARUTO SHIPPUDEN: ULTIMATE NINJA STORM 4 ROAD TO BORUTO",status-playable,playable,2024-06-29 13:04:22.000 -01006BB00800A000,"NARUTO SHIPPUDEN™: Ultimate Ninja Storm 3 Full Burst",status-playable;nvdec,playable,2024-06-16 14:58:05.000 -0100D2D0190A4000,"NARUTO X BARUTO Ultimate Ninja STORM CONNECTIONS",services-horizon;status-nothing,nothing,2024-07-25 05:16:48.000 -0100715007354000,"NARUTO™: Ultimate Ninja® STORM",status-playable;nvdec,playable,2022-08-06 14:10:31.000 -0100545016D5E000,"NASCAR Rivals",status-ingame;crash;Incomplete,ingame,2023-04-21 01:17:47.000 -0100103011894000,"Naught",UE4;status-playable,playable,2021-04-26 13:31:45.000 -01001AE00C1B2000,"NBA 2K Playgrounds 2",status-playable;nvdec;online-broken;UE4;vulkan-backend-bug,playable,2022-08-06 14:40:38.000 -0100760002048000,"NBA 2K18",gpu;status-ingame;ldn-untested,ingame,2022-08-06 14:17:51.000 -01001FF00B544000,"NBA 2K19",crash;ldn-untested;services;status-nothing,nothing,2021-04-16 13:07:21.000 -0100E24011D1E000,"NBA 2K21",gpu;status-boots,boots,2022-10-05 15:31:51.000 -0100ACA017E4E800,"NBA 2K23",status-boots,boots,2023-10-10 23:07:14.000 -010006501A8D8000,"NBA 2K24",cpu;gpu;status-boots,boots,2024-08-11 18:23:08.000 -0100F5A008126000,"NBA Playgrounds",status-playable;nvdec;online-broken;UE4,playable,2022-08-06 16:13:44.000 -010002900294A000,"NBA Playgrounds",status-playable;nvdec;online-broken;UE4,playable,2022-08-06 17:06:59.000 -,"Need a Packet?",status-playable,playable,2020-08-12 16:09:01.000 -010029B0118E8000,"Need for Speed Hot Pursuit Remastered",status-playable;online-broken,playable,2024-03-20 21:58:02.000 -,"Need For Speed Hot Pursuit Remastered",audio;online;slow;status-ingame,ingame,2020-10-27 17:46:58.000 -,"Nefarious",status-playable,playable,2020-12-17 03:20:33.000 -01008390136FC000,"Negative",nvdec;status-playable,playable,2021-03-24 11:29:41.000 -010065F00F55A000,"Neighbours back From Hell",status-playable;nvdec,playable,2022-10-12 15:36:48.000 -0100B4900AD3E000,"Nekopara Vol.1",status-playable;nvdec,playable,2022-08-06 18:25:54.000 -,"Nekopara Vol.2",status-playable,playable,2020-12-16 11:04:47.000 -010045000E418000,"Nekopara Vol.3",status-playable,playable,2022-10-03 12:49:04.000 -,"Nekopara Vol.4",crash;status-ingame,ingame,2021-01-17 01:47:18.000 -01006ED00BC76000,"Nelke & the Legendary Alchemists ~Ateliers of the New World~",status-playable,playable,2021-01-28 19:39:42.000 -,"Nelly Cootalot",status-playable,playable,2020-06-11 20:55:42.000 -01001AB0141A8000,"Neo : The World Ends with You (DEMO)- 新すばらしきこのせかい (体験版)",crash;status-ingame,ingame,2021-07-18 07:29:18.000 -0100EBB00D2F4000,"Neo Cab",status-playable,playable,2021-04-24 00:27:58.000 -,"Neo Cab Demo",crash;status-boots,boots,2020-06-16 00:14:00.000 -010006D0128B4000,"NEOGEO POCKET COLOR SELECTION Vol.1",status-playable,playable,2023-07-08 20:55:36.000 -0100BAB01113A000,"Neon Abyss",status-playable,playable,2022-10-05 15:59:44.000 -010075E0047F8000,"Neon Chrome",status-playable,playable,2022-08-06 18:38:34.000 -010032000EAC6000,"Neon Drive",status-playable,playable,2022-09-10 13:45:48.000 -0100B9201406A000,"Neon White",status-ingame;crash,ingame,2023-02-02 22:25:06.000 -0100743008694000,"Neonwall",status-playable;nvdec,playable,2022-08-06 18:49:52.000 -,"Neoverse Trinity Edition - 01001A20133E000",status-playable,playable,2022-10-19 10:28:03.000 -,"Nerdook Bundle Vol. 1",gpu;slow;status-ingame,ingame,2020-10-07 14:27:10.000 -01008B0010160000,"Nerved",status-playable;UE4,playable,2022-09-20 17:14:03.000 -,"NeuroVoider",status-playable,playable,2020-06-04 18:20:05.000 -0100C20012A54000,"Nevaeh",gpu;nvdec;status-ingame,ingame,2021-06-16 17:29:03.000 -010039801093A000,"Never Breakup",status-playable,playable,2022-10-05 16:12:12.000 -0100F79012600000,"Neverending Nightmares",crash;gpu;status-boots,boots,2021-04-24 01:43:35.000 -,"Neverlast",slow;status-ingame,ingame,2020-07-13 23:55:19.000 -010013700DA4A000,"Neverwinter Nights: Enhanced Edition",gpu;status-menus;nvdec,menus,2024-09-30 02:59:19.000 -,"New Frontier Days -Founding Pioneers-",status-playable,playable,2020-12-10 12:45:07.000 -0100F4300BF2C000,"New Pokémon Snap",status-playable,playable,2023-01-15 23:26:57.000 -010017700B6C2000,"New Super Lucky's Tale",status-playable,playable,2024-03-11 14:14:10.000 -0100EA80032EA000,"New Super Mario Bros. U Deluxe",32-bit;status-playable,playable,2023-10-08 02:06:37.000 -,"Newt One",status-playable,playable,2020-10-17 21:21:48.000 -,"Nexomon: Extinction",status-playable,playable,2020-11-30 15:02:22.000 -0100B69012EC6000,"Nexoria: Dungeon Rogue Heroes",gpu;status-ingame,ingame,2021-10-04 18:41:29.000 -,"Next Up Hero",online;status-playable,playable,2021-01-04 22:39:36.000 -0100E5600D446000,"Ni No Kuni Wrath of the White Witch",status-boots;32-bit;nvdec,boots,2024-07-12 04:52:59.000 -,"Nice Slice",nvdec;status-playable,playable,2020-06-17 15:13:27.000 -,"Niche - a genetics survival game",nvdec;status-playable,playable,2020-11-27 14:01:11.000 -010010701AFB2000,"Nickelodeon All-Star Brawl 2",status-playable,playable,2024-06-03 14:15:01.000 -,"Nickelodeon Kart Racers",status-playable,playable,2021-01-07 12:16:49.000 -0100CEC003A4A000,"Nickelodeon Paw Patrol: On a Roll",nvdec;status-playable,playable,2021-01-28 21:14:49.000 -,"Nicky: The Home Alone Golf Ball",status-playable,playable,2020-08-08 13:45:39.000 -0100A95012668000,"Nicole",status-playable;audout,playable,2022-10-05 16:41:44.000 -0100B8E016F76000,"NieR:Automata The End of YoRHa Edition",slow;status-ingame;crash,ingame,2024-05-17 01:06:34.000 -0100F3A0095A6000,"Night Call",status-playable;nvdec,playable,2022-10-03 12:57:00.000 -0100921006A04000,"Night in the Woods",status-playable,playable,2022-12-03 20:17:54.000 -0100D8500A692000,"Night Trap - 25th Anniversary Edition",status-playable;nvdec,playable,2022-08-08 13:16:14.000 -,"Nightmare Boy",status-playable,playable,2021-01-05 15:52:29.000 -01006E700B702000,"Nightmares from the Deep 2: The Siren's Call",status-playable;nvdec,playable,2022-10-19 10:58:53.000 -0100628004BCE000,"Nights of Azure 2: Bride of the New Moon",status-menus;crash;nvdec;regression,menus,2022-11-24 16:00:39.000 -,"Nightshade",nvdec;status-playable,playable,2020-05-10 19:43:31.000 -,"Nihilumbra",status-playable,playable,2020-05-10 16:00:12.000 -0100D03003F0E000,"Nine Parchments",status-playable;ldn-untested,playable,2022-08-07 12:32:08.000 -01002AF014F4C000,"NINJA GAIDEN 3: Razor's Edge",status-playable;nvdec,playable,2023-08-11 08:25:31.000 -0100E2F014F46000,"Ninja Gaiden Sigma",status-playable;nvdec,playable,2022-11-13 16:27:02.000 -,"Ninja Gaiden Sigma 2 - 0100696014FA000",status-playable;nvdec,playable,2024-07-31 21:53:48.000 -,"Ninja Shodown",status-playable,playable,2020-05-11 12:31:21.000 -,"Ninja Striker",status-playable,playable,2020-12-08 19:33:29.000 -0100CCD0073EA000,"Ninjala",status-boots;online-broken;UE4,boots,2024-07-03 20:04:49.000 -010003C00B868000,"Ninjin: Clash of Carrots",status-playable;online-broken,playable,2024-07-10 05:12:26.000 -0100746010E4C000,"NinNinDays",status-playable,playable,2022-11-20 15:17:29.000 -0100C9A00ECE6000,"Nintendo 64 - Nintendo Switch Online",gpu;status-ingame;vulkan,ingame,2024-04-23 20:21:07.000 -0100D870045B6000,"Nintendo Entertainment System - Nintendo Switch Online",status-playable;online,playable,2022-07-01 15:45:06.000 -0100C4B0034B2000,"Nintendo Labo - Toy-Con 01: Variety Kit",gpu;status-ingame,ingame,2022-08-07 12:56:07.000 -01009AB0034E0000,"Nintendo Labo Toy-Con 02: Robot Kit",gpu;status-ingame,ingame,2022-08-07 13:03:19.000 -01001E9003502000,"Nintendo Labo Toy-Con 03: Vehicle Kit",services;status-menus;crash,menus,2022-08-03 17:20:11.000 -0100165003504000,"Nintendo Labo Toy-Con 04: VR Kit",services;status-boots;crash,boots,2023-01-17 22:30:24.000 -0100D2F00D5C0000,"Nintendo Switch Sports",deadlock;status-boots,boots,2024-09-10 14:20:24.000 -01000EE017182000,"Nintendo Switch Sports Online Play Test",gpu;status-ingame,ingame,2022-03-16 07:44:12.000 -010037200C72A000,"Nippon Marathon",nvdec;status-playable,playable,2021-01-28 20:32:46.000 -010020901088A000,"Nirvana Pilot Yume",status-playable,playable,2022-10-29 11:49:49.000 -,"No Heroes Here",online;status-playable,playable,2020-05-10 02:41:57.000 -0100853015E86000,"No Man’s Sky",gpu;status-ingame,ingame,2024-07-25 05:18:17.000 -0100F0400F202000,"No More Heroes",32-bit;status-playable,playable,2022-09-13 07:44:27.000 -010071400F204000,"No More Heroes 2 Desperate Struggle",32-bit;status-playable;nvdec,playable,2022-11-19 01:38:13.000 -01007C600EB42000,"No More Heroes 3",gpu;status-ingame;UE4,ingame,2024-03-11 17:06:19.000 -01009F3011004000,"No Straight Roads",status-playable;nvdec,playable,2022-10-05 17:01:38.000 -,"NO THING",status-playable,playable,2021-01-04 19:06:01.000 -0100542012884000,"Nongunz: Doppelganger Edition",status-playable,playable,2022-10-29 12:00:39.000 -,"Norman's Great Illusion",status-playable,playable,2020-12-15 19:28:24.000 -01001A500AD6A000,"Norn9 ~Norn + Nonette~ LOFN",status-playable;nvdec;vulkan-backend-bug,playable,2022-12-09 09:29:16.000 -,"NORTH",nvdec;status-playable,playable,2021-01-05 16:17:44.000 -0100A9E00D97A000,"Northgard",status-menus;crash,menus,2022-02-06 02:05:35.000 -01008AE019614000,"nOS new Operating System",status-playable,playable,2023-03-22 16:49:08.000 -0100CB800B07E000,"NOT A HERO",status-playable,playable,2021-01-28 19:31:24.000 -,"Not Not a Brain Buster",status-playable,playable,2020-05-10 02:05:26.000 -0100DAF00D0E2000,"Not Tonight",status-playable;nvdec,playable,2022-10-19 11:48:47.000 -,"Nubarron: The adventure of an unlucky gnome",status-playable,playable,2020-12-17 16:45:17.000 -,"Nuclien",status-playable,playable,2020-05-10 05:32:55.000 -,"Numbala",status-playable,playable,2020-05-11 12:01:07.000 -010020500C8C8000,"Number Place 10000",gpu;status-menus,menus,2021-11-24 09:14:23.000 -010003701002C000,"Nurse Love Syndrome",status-playable,playable,2022-10-13 10:05:22.000 -0000000000000000,"nx-hbmenu",status-boots;Needs Update;homebrew,boots,2024-04-06 22:05:32.000 -,"nxquake2",services;status-nothing;crash;homebrew,nothing,2022-08-04 23:14:04.000 -010049F00EC30000,"Nyan Cat: Lost in Space",online;status-playable,playable,2021-06-12 13:22:03.000 -01002E6014FC4000,"O---O",status-playable,playable,2022-10-29 12:12:14.000 -,"OBAKEIDORO!",nvdec;online;status-playable,playable,2020-10-16 16:57:34.000 -01002A000C478000,"Observer",UE4;gpu;nvdec;status-ingame,ingame,2021-03-03 20:19:45.000 -,"Oceanhorn",status-playable,playable,2021-01-05 13:55:22.000 -01006CB010840000,"Oceanhorn 2 Knights of the Lost Realm",status-playable,playable,2021-05-21 18:26:10.000 -,"Octocopter: Double or Squids",status-playable,playable,2021-01-06 01:30:16.000 -0100CAB006F54000,"Octodad Dadliest Catch",crash;status-boots,boots,2021-04-23 15:26:12.000 -,"Octopath Traveler",UE4;crash;gpu;status-ingame,ingame,2020-08-31 02:34:36.000 -0100A3501946E000,"Octopath Traveler II",gpu;status-ingame;amd-vendor-bug,ingame,2024-09-22 11:39:20.000 -010084300C816000,"Odallus",status-playable,playable,2022-08-08 12:37:58.000 -0100BB500EE3C000,"Oddworld: Munch's Oddysee",gpu;nvdec;status-ingame,ingame,2021-06-17 12:11:50.000 -01005E700ABB8000,"Oddworld: New 'n' Tasty",nvdec;status-playable,playable,2021-06-17 17:51:32.000 -0100D210177C6000,"Oddworld: Soulstorm",services-horizon;status-boots;crash,boots,2024-08-18 13:13:26.000 -01002EA00ABBA000,"Oddworld: Stranger's Wrath HD",status-menus;crash;nvdec;loader-allocator,menus,2021-11-23 09:23:21.000 -,"Odium to the Core",gpu;status-ingame,ingame,2021-01-08 14:03:52.000 -01006F5013202000,"Off And On Again",status-playable,playable,2022-10-29 19:46:26.000 -01003CD00E8BC000,"Offroad Racing",status-playable;online-broken;UE4,playable,2022-09-14 18:53:22.000 -01003B900AE12000,"Oh My Godheads: Party Edition",status-playable,playable,2021-04-15 11:04:11.000 -,"Oh...Sir! The Hollywood Roast",status-ingame,ingame,2020-12-06 00:42:30.000 -,"OK K.O.! Let's Play Heroes",nvdec;status-playable,playable,2021-01-11 18:41:02.000 -0100276009872000,"OKAMI HD",status-playable;nvdec,playable,2024-04-05 06:24:58.000 -01006AB00BD82000,"OkunoKA",status-playable;online-broken,playable,2022-08-08 14:41:51.000 -0100CE2007A86000,"Old Man's Journey",nvdec;status-playable,playable,2021-01-28 19:16:52.000 -,"Old School Musical",status-playable,playable,2020-12-10 12:51:12.000 -,"Old School Racer 2",status-playable,playable,2020-10-19 12:11:26.000 -0100E0200B980000,"OlliOlli: Switch Stance",gpu;status-boots,boots,2024-04-25 08:36:37.000 -0100F9D00C186000,"Olympia Soiree",status-playable,playable,2022-12-04 21:07:12.000 -,"OLYMPIC GAMES TOKYO 2020",ldn-untested;nvdec;online;status-playable,playable,2021-01-06 01:20:24.000 -01001D600E51A000,"Omega Labyrinth Life",status-playable,playable,2021-02-23 21:03:03.000 -,"Omega Vampire",nvdec;status-playable,playable,2020-10-17 19:15:35.000 -,"Omensight: Definitive Edition",UE4;crash;nvdec;status-ingame,ingame,2020-07-26 01:45:14.000 -01006DB00D970000,"OMG Zombies!",32-bit;status-playable,playable,2021-04-12 18:04:45.000 -010014E017B14000,"OMORI",status-playable,playable,2023-01-07 20:21:02.000 -,"Once Upon A Coma",nvdec;status-playable,playable,2020-08-01 12:09:39.000 -,"One More Dungeon",status-playable,playable,2021-01-06 09:10:58.000 -,"One Person Story",status-playable,playable,2020-07-14 11:51:02.000 -,"One Piece Pirate Warriors 3",nvdec;status-playable,playable,2020-05-10 06:23:52.000 -,"One Piece Unlimited World Red Deluxe Edition",status-playable,playable,2020-05-10 22:26:32.000 -01008FE00E2F6000,"ONE PIECE: PIRATE WARRIORS 4",status-playable;online-broken;ldn-untested,playable,2022-09-27 22:55:46.000 -0100463013246000,"Oneiros",status-playable,playable,2022-10-13 10:17:22.000 -,"OneWayTicket",UE4;status-playable,playable,2020-06-20 17:20:49.000 -010057C00D374000,"Oniken",status-playable,playable,2022-09-10 14:22:38.000 -010037900C814000,"Oniken: Unstoppable Edition",status-playable,playable,2022-08-08 14:52:06.000 -,"Onimusha: Warlords",nvdec;status-playable,playable,2020-07-31 13:08:39.000 -0100CF4011B2A000,"OniNaki",nvdec;status-playable,playable,2021-02-27 21:52:42.000 -010074000BE8E000,"oOo: Ascension",status-playable,playable,2021-01-25 14:13:34.000 -0100D5400BD90000,"Operación Triunfo 2017",services;status-ingame;nvdec,ingame,2022-08-08 15:06:42.000 -01006CF00CFA4000,"Operencia The Stolen Sun",UE4;nvdec;status-playable,playable,2021-06-08 13:51:07.000 -01004A200BE82000,"OPUS Collection",status-playable,playable,2021-01-25 15:24:04.000 -010049C0075F0000,"OPUS: The Day We Found Earth",nvdec;status-playable,playable,2021-01-21 18:29:31.000 -,"Ord.",status-playable,playable,2020-12-14 11:59:06.000 -010061D00DB74000,"Ori and the Blind Forest: Definitive Edition",status-playable;nvdec;online-broken,playable,2022-09-14 19:58:13.000 -010005800F46E000,"Ori and the Blind Forest: Definitive Edition Demo",status-playable,playable,2022-09-10 14:40:12.000 -01008DD013200000,"Ori and the Will of the Wisps",status-playable,playable,2023-03-07 00:47:13.000 -,"Orn: The Tiny Forest Sprite",UE4;gpu;status-ingame,ingame,2020-08-07 14:25:30.000 -0100E5900F49A000,"Othercide",status-playable;nvdec,playable,2022-10-05 19:04:38.000 -,"OTOKOMIZU",status-playable,playable,2020-07-13 21:00:44.000 -01006AF013A9E000,"Otti house keeper",status-playable,playable,2021-01-31 12:11:24.000 -,"OTTTD",slow;status-ingame,ingame,2020-10-10 19:31:07.000 -010097F010FE6000,"Our two Bedroom Story",gpu;status-ingame;nvdec,ingame,2023-10-10 17:41:20.000 -,"Our World Is Ended.",nvdec;status-playable,playable,2021-01-19 22:46:57.000 -01005A700A166000,"Out Of The Box",status-playable,playable,2021-01-28 01:34:27.000 -0100A0D013464000,"Outbreak: Endless Nightmares",status-playable,playable,2022-10-29 12:35:49.000 -0100C850130FE000,"Outbreak: Epidemic",status-playable,playable,2022-10-13 10:27:31.000 -0100D9F013102000,"Outbreak: Lost Hope",crash;status-boots,boots,2021-04-26 18:01:23.000 -0100B450130FC000,"Outbreak: The New Nightmare",status-playable,playable,2022-10-19 15:42:07.000 -01006EE013100000,"Outbreak: The Nightmare Chronicles",status-playable,playable,2022-10-13 10:41:57.000 -0100B8900EFA6000,"Outbuddies DX",gpu;status-ingame,ingame,2022-08-04 22:39:24.000 -01008D4007A1E000,"Outlast",status-playable;nvdec;loader-allocator;vulkan-backend-bug,playable,2024-01-27 04:44:26.000 -0100DE70085E8000,"Outlast 2",status-ingame;crash;nvdec,ingame,2022-01-22 22:28:05.000 -01006FD0080B2000,"Overcooked! 2",status-playable;ldn-untested,playable,2022-08-08 16:48:10.000 -0100F28011892000,"Overcooked! All You Can Eat",ldn-untested;online;status-playable,playable,2021-04-15 10:33:52.000 -01009B900401E000,"Overcooked! Special Edition",status-playable,playable,2022-08-08 20:48:52.000 -0100D7F00EC64000,"Overlanders",status-playable;nvdec;UE4,playable,2022-09-14 20:15:06.000 -01008EA00E816000,"Overpass",status-playable;online-broken;UE4;ldn-untested,playable,2022-10-17 15:29:47.000 -0100647012F62000,"Override 2 Super Mech League",status-playable;online-broken;UE4,playable,2022-10-19 15:56:04.000 -01008A700F7EE000,"Override: Mech City Brawl - Super Charged Mega Edition",status-playable;nvdec;online-broken;UE4,playable,2022-09-20 17:33:32.000 -0100F8600E21E000,"Overwatch®: Legendary Edition",deadlock;status-boots,boots,2022-09-14 20:22:22.000 -01005F000CC18000,"OVERWHELM",status-playable,playable,2021-01-21 18:37:18.000 -,"Owlboy",status-playable,playable,2020-10-19 14:24:45.000 -0100AD9012510000,"PAC-MAN 99",gpu;status-ingame;online-broken,ingame,2024-04-23 00:48:25.000 -,"PAC-MAN CHAMPIONSHIP EDITION 2 PLUS",status-playable,playable,2021-01-19 22:06:18.000 -011123900AEE0000,"Paladins",online;status-menus,menus,2021-01-21 19:21:37.000 -0100F0D004CAE000,"PAN-PAN A tiny big adventure",audout;status-playable,playable,2021-01-25 14:42:00.000 -010083700B730000,"Pang Adventures",status-playable,playable,2021-04-10 12:16:59.000 -,"Pantsu Hunter",status-playable,playable,2021-02-19 15:12:27.000 -,"Panzer Dragoon: Remake",status-playable,playable,2020-10-04 04:03:55.000 -01004AE0108E0000,"Panzer Paladin",status-playable,playable,2021-05-05 18:26:00.000 -,"Paper Dolls Original",UE4;crash;status-boots,boots,2020-07-13 20:26:21.000 -0100A3900C3E2000,"Paper Mario The Origami King",audio;status-playable;Needs Update,playable,2024-08-09 18:27:40.000 -0100ECD018EBE000,"Paper Mario: The Thousand-Year Door",gpu;status-ingame;intel-vendor-bug;slow,ingame,2025-01-07 04:27:35.000 -01006AD00B82C000,"Paperbound Brawlers",status-playable,playable,2021-01-25 14:32:15.000 -0100DC70174E0000,"Paradigm Paradox",status-playable;vulkan-backend-bug,playable,2022-12-03 22:28:13.000 -01007FB010DC8000,"Paradise Killer",status-playable;UE4,playable,2022-10-05 19:33:05.000 -010063400B2EC000,"Paranautical Activity",status-playable,playable,2021-01-25 13:49:19.000 -01006B5012B32000,"Part Time UFO",status-ingame;crash,ingame,2023-03-03 03:13:05.000 -01007FC00A040000,"Party Arcade",status-playable;online-broken;UE4;ldn-untested,playable,2022-08-09 12:32:53.000 -0100B8E00359E000,"Party Golf",status-playable;nvdec,playable,2022-08-09 12:38:30.000 -010022801217E000,"Party Hard 2",status-playable;nvdec,playable,2022-10-05 20:31:48.000 -,"Party Treats",status-playable,playable,2020-07-02 00:05:00.000 -01001E500EA16000,"Path of Sin: Greed",status-menus;crash,menus,2021-11-24 08:00:00.000 -010031F006E76000,"Pato Box",status-playable,playable,2021-01-25 15:17:52.000 -0100360016800000,"PAW Patrol: Grand Prix",gpu;status-ingame,ingame,2024-05-03 16:16:11.000 -01001F201121E000,"Paw Patrol: Might Pups Save Adventure Bay!",status-playable,playable,2022-10-13 12:17:55.000 -01000c4015030000,"Pawapoke R",services-horizon;status-nothing,nothing,2024-05-14 14:28:32.000 -0100A56006CEE000,"Pawarumi",status-playable;online-broken,playable,2022-09-10 15:19:33.000 -0100274004052000,"PAYDAY 2",status-playable;nvdec;online-broken;ldn-untested,playable,2022-08-09 12:56:39.000 -010085700ABC8000,"PBA Pro Bowling",status-playable;nvdec;online-broken;UE4,playable,2022-09-14 23:00:49.000 -0100F95013772000,"PBA Pro Bowling 2021",status-playable;online-broken;UE4,playable,2022-10-19 16:46:40.000 -,"PC Building Simulator",status-playable,playable,2020-06-12 00:31:58.000 -010002100CDCC000,"Peaky Blinders: Mastermind",status-playable,playable,2022-10-19 16:56:35.000 -,"Peasant Knight",status-playable,playable,2020-12-22 09:30:50.000 -0100C510049E0000,"Penny-Punching Princess",status-playable,playable,2022-08-09 13:37:05.000 -0100CA901AA9C000,"Penny's Big Breakaway",status-playable;amd-vendor-bug,playable,2024-05-27 07:58:51.000 -,"Perception",UE4;crash;nvdec;status-menus,menus,2020-12-18 11:49:23.000 -010011700D1B2000,"Perchang",status-playable,playable,2021-01-25 14:19:52.000 -010089F00A3B4000,"Perfect Angle",status-playable,playable,2021-01-21 18:48:45.000 -01005CD012DC0000,"Perky Little Things",status-boots;crash;vulkan,boots,2024-08-04 07:22:46.000 -,"Persephone",status-playable,playable,2021-03-23 22:39:19.000 -,"Perseverance",status-playable,playable,2020-07-13 18:48:27.000 -010062B01525C000,"Persona 4 Golden",status-playable,playable,2024-08-07 17:48:07.000 -01005CA01580E000,"Persona 5 Royal",gpu;status-ingame,ingame,2024-08-17 21:45:15.000 -010087701B092000,"Persona 5 Tactica",status-playable,playable,2024-04-01 22:21:03.000 -,"Persona 5: Scramble",deadlock;status-boots,boots,2020-10-04 03:22:29.000 -0100801011C3E000,"Persona 5: Strikers (US)",status-playable;nvdec;mac-bug,playable,2023-09-26 09:36:01.000 -010044400EEAE000,"Petoons Party",nvdec;status-playable,playable,2021-03-02 21:07:58.000 -010053401147C000,"PGA TOUR 2K21",deadlock;status-ingame;nvdec,ingame,2022-10-05 21:53:50.000 -0100DDD00C0EA000,"Phantaruk",status-playable,playable,2021-06-11 18:09:54.000 -0100063005C86000,"PHANTOM BREAKER: BATTLE GROUNDS OVER DRIVE",audio;status-playable;nvdec,playable,2024-02-29 14:20:35.000 -010096F00E5B0000,"Phantom Doctrine",status-playable;UE4,playable,2022-09-15 10:51:50.000 -0100C31005A50000,"Phantom Trigger",status-playable,playable,2022-08-09 14:27:30.000 -0100CB000A142000,"Phoenix Wright: Ace Attorney Trilogy",status-playable,playable,2023-09-15 22:03:12.000 -,"PHOGS!",online;status-playable,playable,2021-01-18 15:18:37.000 -,"Physical Contact: 2048",slow;status-playable,playable,2021-01-25 15:18:32.000 -01008110036FE000,"Physical Contact: Speed",status-playable,playable,2022-08-09 14:40:46.000 -010077300A86C000,"Pianista: The Legendary Virtuoso",status-playable;online-broken,playable,2022-08-09 14:52:56.000 -010012100E8DC000,"Picross Lord Of The Nazarick",status-playable,playable,2023-02-08 15:54:56.000 -,"Picross S2",status-playable,playable,2020-10-15 12:01:40.000 -,"Picross S3",status-playable,playable,2020-10-15 11:55:27.000 -,"Picross S4",status-playable,playable,2020-10-15 12:33:46.000 -0100AC30133EC000,"Picross S5",status-playable,playable,2022-10-17 18:51:42.000 -010025901432A000,"Picross S6",status-playable,playable,2022-10-29 17:52:19.000 -,"Picross S7",status-playable,playable,2022-02-16 12:51:25.000 -010043B00E1CE000,"PictoQuest",status-playable,playable,2021-02-27 15:03:16.000 -,"Piczle Lines DX",UE4;crash;nvdec;status-menus,menus,2020-11-16 04:21:31.000 -,"Piczle Lines DX 500 More Puzzles!",UE4;status-playable,playable,2020-12-15 23:42:51.000 -01000FD00D5CC000,"Pig Eat Ball",services;status-ingame,ingame,2021-11-30 01:57:45.000 -0100AA80194B0000,"Pikmin 1",audio;status-ingame,ingame,2024-05-28 18:56:11.000 -0100D680194B2000,"Pikmin 2",gpu;status-ingame,ingame,2023-07-31 08:53:41.000 -0100F4C009322000,"Pikmin 3 Deluxe",gpu;status-ingame;32-bit;nvdec;Needs Update,ingame,2024-09-03 00:28:26.000 -01001CB0106F8000,"Pikmin 3 Deluxe Demo",32-bit;crash;demo;gpu;status-ingame,ingame,2021-06-16 18:38:07.000 -0100B7C00933A000,"Pikmin 4",gpu;status-ingame;crash;UE4,ingame,2024-08-26 03:39:08.000 -0100E0B019974000,"Pikmin 4 Demo",gpu;status-ingame;nvdec;UE4;demo;amd-vendor-bug,ingame,2023-09-22 21:41:08.000 -0100D6200E130000,"Pillars of Eternity",status-playable,playable,2021-02-27 00:24:21.000 -01007A500B0B2000,"Pilot Sports",status-playable,playable,2021-01-20 15:04:17.000 -0100DA70186D4000,"Pinball FX",status-playable,playable,2024-05-03 17:09:11.000 -0100DB7003828000,"Pinball FX3",status-playable;online-broken,playable,2022-11-11 23:49:07.000 -,"Pine",slow;status-ingame,ingame,2020-07-29 16:57:39.000 -,"Pinstripe",status-playable,playable,2020-11-26 10:40:40.000 -01002B20174EE000,"Piofiore: Episodio 1926",status-playable,playable,2022-11-23 18:36:05.000 -,"Piofiore: Fated Memories",nvdec;status-playable,playable,2020-11-30 14:27:50.000 -0100EA2013BCC000,"Pixel Game Maker Series Puzzle Pedestrians",status-playable,playable,2022-10-24 20:15:50.000 -0100859013CE6000,"Pixel Game Maker Series Werewolf Princess Kaguya",crash;services;status-nothing,nothing,2021-03-26 00:23:07.000 -,"Pixel Gladiator",status-playable,playable,2020-07-08 02:41:26.000 -010000E00E612000,"Pixel Puzzle Makeout League",status-playable,playable,2022-10-13 12:34:00.000 -,"PixelJunk Eden 2",crash;status-ingame,ingame,2020-12-17 11:55:52.000 -0100E4D00A690000,"Pixeljunk Monsters 2",status-playable,playable,2021-06-07 03:40:01.000 -01004A900C352000,"Pizza Titan Ultra",nvdec;status-playable,playable,2021-01-20 15:58:42.000 -05000FD261232000,"Pizza Tower",status-ingame;crash,ingame,2024-09-16 00:21:56.000 -0100FF8005EB2000,"Plague Road",status-playable,playable,2022-08-09 15:27:14.000 -010030B00C316000,"Planescape: Torment and Icewind Dale: Enhanced Editions",cpu;status-boots;32-bit;crash;Needs Update,boots,2022-09-10 03:58:26.000 -,"PLANET ALPHA",UE4;gpu;status-ingame,ingame,2020-12-16 14:42:20.000 -01007EA019CFC000,"Planet Cube Edge",status-playable,playable,2023-03-22 17:10:12.000 -,"planetarian HD ~the reverie of a little planet~",status-playable,playable,2020-10-17 20:26:20.000 -010087000428E000,"Plantera",status-playable,playable,2022-08-09 15:36:28.000 -0100C56010FD8000,"Plants vs. Zombies: Battle for Neighborville Complete Edition",gpu;audio;status-boots;crash,boots,2024-09-02 12:58:14.000 -0100E5B011F48000,"Ploid Saga",status-playable,playable,2021-04-19 16:58:45.000 -01009440095FE000,"Pode",nvdec;status-playable,playable,2021-01-25 12:58:35.000 -010086F0064CE000,"Poi: Explorer Edition",nvdec;status-playable,playable,2021-01-21 19:32:00.000 -0100EB6012FD2000,"Poison Control",status-playable,playable,2021-05-16 14:01:54.000 -0100000011D90000,"Pokémon Brilliant Diamond",gpu;status-ingame;ldn-works,ingame,2024-08-28 13:26:35.000 -010072400E04A000,"Pokémon Café Mix",status-playable,playable,2021-08-17 20:00:04.000 -,"Pokémon HOME",Needs Update;crash;services;status-menus,menus,2020-12-06 06:01:51.000 -01001F5010DFA000,"Pokémon Legends: Arceus",gpu;status-ingame;Needs Update;ldn-works,ingame,2024-09-19 10:02:02.000 -01003D200BAA2000,"Pokémon Mystery Dungeon Rescue Team DX",status-playable;mac-bug,playable,2024-01-21 00:16:32.000 -01005D100807A000,"Pokemon Quest",status-playable,playable,2022-02-22 16:12:32.000 -0100A3D008C5C000,"Pokémon Scarlet",gpu;status-ingame;nvdec;ldn-works;amd-vendor-bug,ingame,2023-12-14 13:18:29.000 -01008DB008C2C000,"Pokémon Shield",deadlock;status-ingame;crash;online-broken;ldn-works;LAN,ingame,2024-08-12 07:20:22.000 -0100ABF008968000,"Pokémon Sword",deadlock;status-ingame;crash;online-broken;ldn-works;LAN,ingame,2024-08-26 15:40:37.000 -01008F6008C5E000,"Pokémon Violet",gpu;status-ingame;nvdec;ldn-works;amd-vendor-bug;mac-bug,ingame,2024-07-30 02:51:48.000 -0100187003A36000,"Pokémon: Let's Go, Eevee!",status-ingame;crash;nvdec;online-broken;ldn-broken,ingame,2024-06-01 15:03:04.000 -010003F003A34000,"Pokémon: Let's Go, Pikachu!",status-ingame;crash;nvdec;online-broken;ldn-broken,ingame,2024-03-15 07:55:41.000 -01009AD008C4C000,"Pokémon: Let's Go, Pikachu! demo",slow;status-playable;demo,playable,2023-11-26 11:23:20.000 -0100B3F000BE2000,"Pokkén Tournament DX",status-playable;nvdec;ldn-works;opengl-backend-bug;LAN;amd-vendor-bug;intel-vendor-bug,playable,2024-07-18 23:11:08.000 -010030D005AE6000,"Pokken Tournament DX Demo",status-playable;demo;opengl-backend-bug,playable,2022-08-10 12:03:19.000 -,"Polandball: Can Into Space!",status-playable,playable,2020-06-25 15:13:26.000 -,"Poly Bridge",services;status-playable,playable,2020-06-08 23:32:41.000 -010017600B180000,"Polygod",slow;status-ingame;regression,ingame,2022-08-10 14:38:14.000 -010074B00ED32000,"Polyroll",gpu;status-boots,boots,2021-07-01 16:16:50.000 -,"Ponpu",status-playable,playable,2020-12-16 19:09:34.000 -,"Pooplers",status-playable,playable,2020-11-02 11:52:10.000 -01007EF013CA0000,"Port Royale 4",status-menus;crash;nvdec,menus,2022-10-30 14:34:06.000 -01007BB017812000,"Portal",status-playable,playable,2024-06-12 03:48:29.000 -0100ABD01785C000,"Portal 2",gpu;status-ingame,ingame,2023-02-20 22:44:15.000 -,"Portal Dogs",status-playable,playable,2020-09-04 12:55:46.000 -0100437004170000,"Portal Knights",ldn-untested;online;status-playable,playable,2021-05-27 19:29:04.000 -,"Potata: Fairy Flower",nvdec;status-playable,playable,2020-06-17 09:51:34.000 -01000A4014596000,"Potion Party",status-playable,playable,2021-05-06 14:26:54.000 -,"Power Rangers: Battle for the Grid",status-playable,playable,2020-06-21 16:52:42.000 -0100D1C01C194000,"Powerful Pro Baseball 2024-2025",gpu;status-ingame,ingame,2024-08-25 06:40:48.000 -01008E100E416000,"PowerSlave Exhumed",gpu;status-ingame,ingame,2023-07-31 23:19:10.000 -,"Prehistoric Dude",gpu;status-ingame,ingame,2020-10-12 12:38:48.000 -,"Pretty Princess Magical Coordinate",status-playable,playable,2020-10-15 11:43:41.000 -01007F00128CC000,"Pretty Princess Party",status-playable,playable,2022-10-19 17:23:58.000 -010009300D278000,"Preventive Strike",status-playable;nvdec,playable,2022-10-06 10:55:51.000 -0100210019428000,"Prince of Persia: The Lost Crown",status-ingame;crash,ingame,2024-06-08 21:31:58.000 -01007A3009184000,"Princess Peach: Showtime!",status-playable;UE4,playable,2024-09-21 13:39:45.000 -010024701DC2E000,"Princess Peach: Showtime! Demo",status-playable;UE4;demo,playable,2024-03-10 17:46:45.000 -01008FA01187A000,"Prinny 2: Dawn of Operation Panties, Dood!",32-bit;status-playable,playable,2022-10-13 12:42:58.000 -0100A6E01681C000,"Prinny Presents NIS Classics Volume 1",status-boots;crash;Needs Update,boots,2023-02-02 07:23:09.000 -01007A0011878000,"Prinny: Can I Really Be the Hero?",32-bit;status-playable;nvdec,playable,2023-10-22 09:25:25.000 -010007F00879E000,"PriPara: All Idol Perfect Stage",status-playable,playable,2022-11-22 16:35:52.000 -010029200AB1C000,"Prison Architect",status-playable,playable,2021-04-10 12:27:58.000 -0100C1801B914000,"Prison City",gpu;status-ingame,ingame,2024-03-01 08:19:33.000 -0100F4800F872000,"Prison Princess",status-playable,playable,2022-11-20 15:00:25.000 -0100A9800A1B6000,"Professional Construction - The Simulation",slow;status-playable,playable,2022-08-10 15:15:45.000 -,"Professional Farmer: Nintendo Switch Edition",slow;status-playable,playable,2020-12-16 13:38:19.000 -,"Professor Lupo and his Horrible Pets",status-playable,playable,2020-06-12 00:08:45.000 -0100D1F0132F6000,"Professor Lupo: Ocean",status-playable,playable,2021-04-14 16:33:33.000 -0100BBD00976C000,"Project Highrise: Architect's Edition",status-playable,playable,2022-08-10 17:19:12.000 -0100ACE00DAB6000,"Project Nimbus: Complete Edition",status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-08-10 17:35:43.000 -01002980140F6000,"Project TRIANGLE STRATEGY Debut Demo",status-playable;UE4;demo,playable,2022-10-24 21:40:27.000 -,"Project Warlock",status-playable,playable,2020-06-16 10:50:41.000 -,"Psikyo Collection Vol 1",32-bit;status-playable,playable,2020-10-11 13:18:47.000 -0100A2300DB78000,"Psikyo Collection Vol. 3",status-ingame,ingame,2021-06-07 02:46:23.000 -01009D400C4A8000,"Psikyo Collection Vol.2",32-bit;status-playable,playable,2021-06-07 03:22:07.000 -01007A200F2E2000,"Psikyo Shooting Stars Alpha",32-bit;status-playable,playable,2021-04-13 12:03:43.000 -0100D7400F2E4000,"Psikyo Shooting Stars Bravo",32-bit;status-playable,playable,2021-06-14 12:09:07.000 -0100EC100A790000,"PSYVARIAR DELTA",nvdec;status-playable,playable,2021-01-20 13:01:46.000 -,"Puchitto kurasutā",Need-Update;crash;services;status-menus,menus,2020-07-04 16:44:28.000 -0100861012474000,"Pulstario",status-playable,playable,2022-10-06 11:02:01.000 -01009AE00B788000,"Pumped BMX Pro",status-playable;nvdec;online-broken,playable,2022-09-20 17:40:50.000 -01006C10131F6000,"Pumpkin Jack",status-playable;nvdec;UE4,playable,2022-10-13 12:52:32.000 -010016400F07E000,"PUSH THE CRATE",status-playable;nvdec;UE4,playable,2022-09-15 13:28:41.000 -0100B60010432000,"Push the Crate 2",UE4;gpu;nvdec;status-ingame,ingame,2021-06-10 14:20:01.000 -,"Pushy and Pully in Blockland",status-playable,playable,2020-07-04 11:44:41.000 -,"Puyo Puyo Champions",online;status-playable,playable,2020-06-19 11:35:08.000 -010038E011940000,"Puyo Puyo Tetris 2",status-playable;ldn-untested,playable,2023-09-26 11:35:25.000 -,"Puzzle and Dragons GOLD",slow;status-playable,playable,2020-05-13 15:09:34.000 -010079E01A1E0000,"Puzzle Bobble Everybubble!",audio;status-playable;ldn-works,playable,2023-06-10 03:53:40.000 -,"Puzzle Book",status-playable,playable,2020-09-28 13:26:01.000 -0100476004A9E000,"Puzzle Box Maker",status-playable;nvdec;online-broken,playable,2022-08-10 18:00:52.000 -0100A4E017372000,"Pyramid Quest",gpu;status-ingame,ingame,2023-08-16 21:14:52.000 -,"Q-YO Blaster",gpu;status-ingame,ingame,2020-06-07 22:36:53.000 -010023600AA34000,"Q.U.B.E. 2",UE4;status-playable,playable,2021-03-03 21:38:57.000 -0100A8D003BAE000,"Qbics Paint",gpu;services;status-ingame,ingame,2021-06-07 10:54:09.000 -0100BA5012E54000,"Quake",gpu;status-menus;crash,menus,2022-08-08 12:40:34.000 -010048F0195E8000,"Quake II",status-playable,playable,2023-08-15 03:42:14.000 -,"QuakespasmNX",status-nothing;crash;homebrew,nothing,2022-07-23 19:28:07.000 -010045101288A000,"Quantum Replica",status-playable;nvdec;UE4,playable,2022-10-30 21:17:22.000 -0100F1400BA88000,"Quarantine Circular",status-playable,playable,2021-01-20 15:24:15.000 -0100DCF00F13A000,"Queen's Quest 4: Sacred Truce",status-playable;nvdec,playable,2022-10-13 12:59:21.000 -0100492012378000,"Quell Zen",gpu;status-ingame,ingame,2021-06-11 15:59:53.000 -01001DE005012000,"Quest of Dungeons",status-playable,playable,2021-06-07 10:29:22.000 -,"QuietMansion2",status-playable,playable,2020-09-03 14:59:35.000 -0100AF100EE76000,"Quiplash 2 InterLASHional",status-playable;online-working,playable,2022-10-19 17:43:45.000 -,"R-Type Dimensions EX",status-playable,playable,2020-10-09 12:04:43.000 -0100F930136B6000,"R-TYPE FINAL 2",slow;status-ingame;nvdec;UE4,ingame,2022-10-30 21:46:29.000 -01007B0014300000,"R-TYPE FINAL 2 Demo",slow;status-ingame;nvdec;UE4;demo,ingame,2022-10-24 21:57:42.000 -0100B5A004302000,"R.B.I. Baseball 17",status-playable;online-working,playable,2022-08-11 11:55:47.000 -01005CC007616000,"R.B.I. Baseball 18",status-playable;nvdec;online-working,playable,2022-08-11 11:27:52.000 -0100FCB00BF40000,"R.B.I. Baseball 19",status-playable;nvdec;online-working,playable,2022-08-11 11:43:52.000 -010061400E7D4000,"R.B.I. Baseball 20",status-playable,playable,2021-06-15 21:16:29.000 -0100B4A0115CA000,"R.B.I. Baseball 21",status-playable;online-working,playable,2022-10-24 22:31:45.000 -01005BF00E4DE000,"Rabi-Ribi",status-playable,playable,2022-08-06 17:02:44.000 -,"Race With Ryan",UE4;gpu;nvdec;slow;status-ingame,ingame,2020-11-16 04:35:33.000 -,"Rack N Ruin",status-playable,playable,2020-09-04 15:20:26.000 -010024400C516000,"RAD",gpu;status-menus;crash;UE4,menus,2021-11-29 02:01:56.000 -010000600CD54000,"Rad Rodgers Radical Edition",status-playable;nvdec;online-broken,playable,2022-08-10 19:57:23.000 -0100DA400E07E000,"Radiation City",status-ingame;crash,ingame,2022-09-30 11:15:04.000 -01009E40095EE000,"Radiation Island",status-ingame;opengl;vulkan-backend-bug,ingame,2022-08-11 10:51:04.000 -,"Radical Rabbit Stew",status-playable,playable,2020-08-03 12:02:56.000 -0100BAD013B6E000,"Radio Commander",nvdec;status-playable,playable,2021-03-24 11:20:46.000 -01008FA00ACEC000,"RADIO HAMMER STATION",audout;status-playable,playable,2021-02-26 20:20:06.000 -01003D00099EC000,"Raging Justice",status-playable,playable,2021-06-03 14:06:50.000 -01005CD013116000,"Raiden IV x Mikado Remix [ 雷電Ⅳ×MIKADO remix ]",status-playable,playable,2022-07-29 15:50:13.000 -01002B000D97E000,"Raiden V: Director's Cut",deadlock;status-boots;nvdec,boots,2024-07-12 07:31:46.000 -01002EE00DC02000,"Railway Empire",status-playable;nvdec,playable,2022-10-03 13:53:50.000 -,"Rain City",status-playable,playable,2020-10-08 16:59:03.000 -0100BDD014232000,"Rain on Your Parade",status-playable,playable,2021-05-06 19:32:04.000 -010047600BF72000,"Rain World",status-playable,playable,2023-05-10 23:34:08.000 -,"Rainbows, toilets & unicorns",nvdec;status-playable,playable,2020-10-03 18:08:18.000 -,"Raji An Ancient Epic",UE4;gpu;nvdec;status-ingame,ingame,2020-12-16 10:05:25.000 -,"Rapala Fishing: Pro Series",nvdec;status-playable,playable,2020-12-16 13:26:53.000 -,"Rascal Fight",status-playable,playable,2020-10-08 13:23:30.000 -,"Rawr-Off",crash;nvdec;status-menus,menus,2020-07-02 00:14:44.000 -01005FF002E2A000,"Rayman Legends: Definitive Edition",status-playable;nvdec;ldn-works,playable,2023-05-27 18:33:07.000 -0100F03011616000,"Re:Turn - One Way Trip",status-playable,playable,2022-08-29 22:42:53.000 -,"Re:ZERO -Starting Life in Another World- The Prophecy of the Throne",gpu;status-boots;crash;nvdec;vulkan,boots,2023-03-07 21:27:24.000 -,"Real Drift Racing",status-playable,playable,2020-07-25 14:31:31.000 -010048600CC16000,"Real Heroes: Firefighter",status-playable,playable,2022-09-20 18:18:44.000 -,"realMyst: Masterpiece Edition",nvdec;status-playable,playable,2020-11-30 15:25:42.000 -,"Reaper: Tale of a Pale Swordsman",status-playable,playable,2020-12-12 15:12:23.000 -0100D9B00E22C000,"Rebel Cops",status-playable,playable,2022-09-11 10:02:53.000 -0100CAA01084A000,"Rebel Galaxy: Outlaw",status-playable;nvdec,playable,2022-12-01 07:44:56.000 -0100CF600FF7A000,"Red Bow",services;status-ingame,ingame,2021-11-29 03:51:34.000 -0100351013A06000,"Red Colony",status-playable,playable,2021-01-25 20:44:41.000 -01007820196A6000,"Red Dead Redemption",status-playable;amd-vendor-bug,playable,2024-09-13 13:26:13.000 -,"Red Death",status-playable,playable,2020-08-30 13:07:37.000 -010075000C608000,"Red Faction Guerrilla Re-Mars-tered",ldn-untested;nvdec;online;status-playable,playable,2021-06-07 03:02:13.000 -,"Red Game Without a Great Name",status-playable,playable,2021-01-19 21:42:35.000 -010045400D73E000,"Red Siren : Space Defense",UE4;status-playable,playable,2021-04-25 21:21:29.000 -,"Red Wings - Aces of the Sky",status-playable,playable,2020-06-12 01:19:53.000 -01000D100DCF8000,"Redeemer: Enhanced Edition",status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-09-11 10:20:24.000 -0100326010B98000,"Redout: Space Assault",status-playable;UE4,playable,2022-10-19 23:04:35.000 -010007C00E558000,"Reel Fishing: Road Trip Adventure",status-playable,playable,2021-03-02 16:06:43.000 -,"Reflection of Mine",audio;status-playable,playable,2020-12-17 15:06:37.000 -,"Refreshing Sideways Puzzle Ghost Hammer",status-playable,playable,2020-10-18 12:08:54.000 -,"Refunct",UE4;status-playable,playable,2020-12-15 22:46:21.000 -0100FDF0083A6000,"Regalia: Of Men and Monarchs - Royal Edition",status-playable,playable,2022-08-11 12:24:01.000 -,"Regions of Ruin",status-playable,playable,2020-08-05 11:38:58.000 -,"Reine des Fleurs",cpu;crash;status-boots,boots,2020-09-27 18:50:39.000 -,"REKT",online;status-playable,playable,2020-09-28 12:33:56.000 -01002AD013C52000,"Relicta",status-playable;nvdec;UE4,playable,2022-10-31 12:48:33.000 -010095900B436000,"Remi Lore",status-playable,playable,2021-06-03 18:58:15.000 -0100FBD00F5F6000,"Remothered: Broken Porcelain",UE4;gpu;nvdec;status-ingame,ingame,2021-06-17 15:13:11.000 -01001F100E8AE000,"Remothered: Tormented Fathers",status-playable;nvdec;UE4,playable,2022-10-19 23:26:50.000 -,"Rento Fortune Monolit",ldn-untested;online;status-playable,playable,2021-01-19 19:52:21.000 -01007CC0130C6000,"Renzo Racer",status-playable,playable,2021-03-23 22:28:05.000 -01003C400AD42000,"Rescue Tale",status-playable,playable,2022-09-20 18:40:18.000 -010099A00BC1E000,"Resident Evil 4",status-playable;nvdec,playable,2022-11-16 21:16:04.000 -010018100CD46000,"Resident Evil 5",status-playable;nvdec,playable,2024-02-18 17:15:29.000 -01002A000CD48000,"RESIDENT EVIL 6",status-playable;nvdec,playable,2022-09-15 14:31:47.000 -0100643002136000,"Resident Evil Revelations",status-playable;nvdec;ldn-untested,playable,2022-08-11 12:44:19.000 -010095300212A000,"RESIDENT EVIL REVELATIONS 2",status-playable;online-broken;ldn-untested,playable,2022-08-11 12:57:50.000 -0100E7F00FFB8000,"Resolutiion",crash;status-boots,boots,2021-04-25 21:57:56.000 -0100FF201568E000,"Restless Night [0100FF201568E000]",status-nothing;crash,nothing,2022-02-09 10:54:49.000 -0100069000078000,"Retail Interactive Display Menu (DevQuestMenu)- 0100069000078000",services;status-nothing;crash,nothing,2022-08-11 13:19:41.000 -010086E00BCB2000,"Retimed",status-playable,playable,2022-08-11 13:32:39.000 -,"Retro City Rampage DX",status-playable,playable,2021-01-05 17:04:17.000 -01000ED014A2C000,"Retrograde Arena",status-playable;online-broken,playable,2022-10-31 13:38:58.000 -010032E00E6E2000,"Return of the Obra Dinn",status-playable,playable,2022-09-15 19:56:45.000 -010027400F708000,"Revenge of Justice",status-playable;nvdec,playable,2022-11-20 15:43:23.000 -0100E2E00EA42000,"Reventure",status-playable,playable,2022-09-15 20:07:06.000 -,"REZ PLZ",status-playable,playable,2020-10-24 13:26:12.000 -0100729012D18000,"Rhythm Fighter",crash;status-nothing,nothing,2021-02-16 18:51:30.000 -,"Rhythm of the Gods",UE4;crash;status-nothing,nothing,2020-10-03 17:39:59.000 -01009D5009234000,"RICO",status-playable;nvdec;online-broken,playable,2022-08-11 20:16:40.000 -01002C700C326000,"Riddled Corpses EX",status-playable,playable,2021-06-06 16:02:44.000 -0100AC600D898000,"Rift Keeper",status-playable,playable,2022-09-20 19:48:20.000 -,"RiME",UE4;crash;gpu;status-boots,boots,2020-07-20 15:52:38.000 -01006AC00EE6E000,"Rimelands",status-playable,playable,2022-10-13 13:32:56.000 -01002FF008C24000,"Ring Fit Adventure",crash;services;status-nothing,nothing,2021-04-14 19:00:01.000 -010088E00B816000,"RIOT: Civil Unrest",status-playable,playable,2022-08-11 20:27:56.000 -01002A6006AA4000,"Riptide GP: Renegade",online;status-playable,playable,2021-04-13 23:33:02.000 -,"Rise and Shine",status-playable,playable,2020-12-12 15:56:43.000 -,"Rise of Insanity",status-playable,playable,2020-08-30 15:42:14.000 -01006BA00E652000,"Rise: Race the Future",status-playable,playable,2021-02-27 13:29:06.000 -010020C012F48000,"Rising Hell",status-playable,playable,2022-10-31 13:54:02.000 -0100E8300A67A000,"Risk",status-playable;nvdec;online-broken,playable,2022-08-01 18:53:28.000 -010076D00E4BA000,"Risk of Rain 2",status-playable;online-broken,playable,2024-03-04 17:01:05.000 -0100BD300F0EC000,"Ritual",status-playable,playable,2021-03-02 13:51:19.000 -010042500FABA000,"Ritual: Crown of Horns",status-playable,playable,2021-01-26 16:01:47.000 -,"Rival Megagun",nvdec;online;status-playable,playable,2021-01-19 14:01:46.000 -,"RIVE: Ultimate Edition",status-playable,playable,2021-03-24 18:45:55.000 -,"River City Girls",nvdec;status-playable,playable,2020-06-10 23:44:09.000 -01002E80168F4000,"River City Girls 2",status-playable,playable,2022-12-07 00:46:27.000 -0100B2100767C000,"River City Melee Mach!!",status-playable;online-broken,playable,2022-09-20 20:51:57.000 -,"RMX Real Motocross",status-playable,playable,2020-10-08 21:06:15.000 -010053000B986000,"Road Redemption",status-playable;online-broken,playable,2022-08-12 11:26:20.000 -010002F009A7A000,"Road to Ballhalla",UE4;status-playable,playable,2021-06-07 02:22:36.000 -,"Road to Guangdong",slow;status-playable,playable,2020-10-12 12:15:32.000 -010068200C5BE000,"Roarr!",status-playable,playable,2022-10-19 23:57:45.000 -0100618004096000,"Robonauts",status-playable;nvdec,playable,2022-08-12 11:33:23.000 -,"ROBOTICS;NOTES DaSH",status-playable,playable,2020-11-16 23:09:54.000 -,"ROBOTICS;NOTES ELITE",status-playable,playable,2020-11-26 10:28:20.000 -,"Robozarro",status-playable,playable,2020-09-03 13:33:40.000 -,"Rock 'N Racing Off Road DX",status-playable,playable,2021-01-10 15:27:15.000 -,"Rock N' Racing Grand Prix",status-playable,playable,2021-01-06 20:23:57.000 -0100A1B00DB36000,"Rock of Ages 3: Make & Break",status-playable;UE4,playable,2022-10-06 12:18:29.000 -01005EE0036EC000,"Rocket League",gpu;status-ingame;online-broken;ldn-untested,ingame,2024-02-08 19:51:36.000 -,"Rocket Wars",status-playable,playable,2020-07-24 14:27:39.000 -0100EC7009348000,"Rogue Aces",gpu;services;status-ingame;nvdec,ingame,2021-11-30 02:18:30.000 -01009FA010848000,"Rogue Heroes: Ruins of Tasos",online;status-playable,playable,2021-04-01 15:41:25.000 -,"Rogue Legacy",status-playable,playable,2020-08-10 19:17:28.000 -,"Rogue Robots",status-playable,playable,2020-06-16 12:16:11.000 -01001CC00416C000,"Rogue Trooper Redux",status-playable;nvdec;online-broken,playable,2022-08-12 11:53:01.000 -0100C7300C0EC000,"RogueCube",status-playable,playable,2021-06-16 12:16:42.000 -,"Roll'd",status-playable,playable,2020-07-04 20:24:01.000 -01004900113F8000,"RollerCoaster Tycoon 3: Complete Edition",32-bit;status-playable,playable,2022-10-17 14:18:01.000 -,"RollerCoaster Tycoon Adventures",nvdec;status-playable,playable,2021-01-05 18:14:18.000 -010076200CA16000,"Rolling Gunner",status-playable,playable,2021-05-26 12:54:18.000 -0100579011B40000,"Rolling Sky 2",status-playable,playable,2022-11-03 10:21:12.000 -01001F600829A000,"Romancing SaGa 2",status-playable,playable,2022-08-12 12:02:24.000 -,"Romancing SaGa 3",audio;gpu;status-ingame,ingame,2020-06-27 20:26:18.000 -010088100DD42000,"Roof Rage",status-boots;crash;regression,boots,2023-11-12 03:47:18.000 -,"Roombo: First Blood",nvdec;status-playable,playable,2020-08-05 12:11:37.000 -0100936011556000,"Root Double -Before Crime * After Days- Xtend Edition",status-nothing;crash,nothing,2022-02-05 02:03:49.000 -010030A00DA3A000,"Root Letter: Last Answer",status-playable;vulkan-backend-bug,playable,2022-09-17 10:25:57.000 -,"Royal Roads",status-playable,playable,2020-11-17 12:54:38.000 -,"RPG Maker MV",nvdec;status-playable,playable,2021-01-05 20:12:01.000 -01005CD015986000,"rRootage Reloaded [01005CD015986000]",status-playable,playable,2022-08-05 23:20:18.000 -0000000000000000,"RSDKv5u",status-ingame;homebrew,ingame,2024-04-01 16:25:34.000 -010009B00D33C000,"Rugby Challenge 4",slow;status-playable;online-broken;UE4,playable,2022-10-06 12:45:53.000 -01006EC00F2CC000,"Ruiner",status-playable;UE4,playable,2022-10-03 14:11:33.000 -010074F00DE4A000,"Run the Fan",status-playable,playable,2021-02-27 13:36:28.000 -,"Runbow",online;status-playable,playable,2021-01-08 22:47:44.000 -0100D37009B8A000,"Runbow Deluxe Edition",status-playable;online-broken,playable,2022-08-12 12:20:25.000 -010081C0191D8000,"Rune Factory 3 Special",status-playable,playable,2023-10-15 08:32:49.000 -010051D00E3A4000,"Rune Factory 4 Special",status-ingame;32-bit;crash;nvdec,ingame,2023-05-06 08:49:17.000 -010014D01216E000,"Rune Factory 5 (JP)",gpu;status-ingame,ingame,2021-06-01 12:00:36.000 -0100E21013908000,"RWBY: Grimm Eclipse",status-playable;online-broken,playable,2022-11-03 10:44:01.000 -,"RXN -Raijin-",nvdec;status-playable,playable,2021-01-10 16:05:43.000 -0100B8B012ECA000,"S.N.I.P.E.R. Hunter Scope",status-playable,playable,2021-04-19 15:58:09.000 -,"Saboteur II: Avenging Angel",Needs Update;cpu;crash;status-nothing,nothing,2021-01-26 14:47:37.000 -,"Saboteur SiO",slow;status-ingame,ingame,2020-12-17 16:59:49.000 -,"Safety First!",status-playable,playable,2021-01-06 09:05:23.000 -0100A51013530000,"SaGa Frontier Remastered",status-playable;nvdec,playable,2022-11-03 13:54:56.000 -010003A00D0B4000,"SaGa SCARLET GRACE: AMBITIONS",status-playable,playable,2022-10-06 13:20:31.000 -01008D100D43E000,"Saints Row IV",status-playable;ldn-untested;LAN,playable,2023-12-04 18:33:37.000 -0100DE600BEEE000,"Saints Row: The Third - The Full Package",slow;status-playable;LAN,playable,2023-08-24 02:40:58.000 -01007F000EB36000,"Sakai and...",status-playable;nvdec,playable,2022-12-15 13:53:19.000 -0100B1400E8FE000,"Sakuna: Of Rice and Ruin",status-playable,playable,2023-07-24 13:47:13.000 -0100BBF0122B4000,"Sally Face",status-playable,playable,2022-06-06 18:41:24.000 -,"Salt And Sanctuary",status-playable,playable,2020-10-22 11:52:19.000 -,"Sam & Max Save the World",status-playable,playable,2020-12-12 13:11:51.000 -,"Samsara",status-playable,playable,2021-01-11 15:14:12.000 -01006C600E46E000,"Samurai Jack Battle Through Time",status-playable;nvdec;UE4,playable,2022-10-06 13:33:59.000 -,"SAMURAI SHODOWN",UE4;crash;nvdec;status-menus,menus,2020-09-06 02:17:00.000 -0100F6800F48E000,"SAMURAI SHOWDOWN NEOGEO COLLECTION",nvdec;status-playable,playable,2021-06-14 17:12:56.000 -0100B6501A360000,"Samurai Warrior",status-playable,playable,2023-02-27 18:42:38.000 -,"SamuraiAces for Nintendo Switch",32-bit;status-playable,playable,2020-11-24 20:26:55.000 -,"Sangoku Rensenki ~Otome no Heihou!~",gpu;nvdec;status-ingame,ingame,2020-10-17 19:13:14.000 -0100A4700BC98000,"Satsujin Tantei Jack the Ripper",status-playable,playable,2021-06-21 16:32:54.000 -0100F0000869C000,"Saturday Morning RPG",status-playable;nvdec,playable,2022-08-12 12:41:50.000 -,"Sausage Sports Club",gpu;status-ingame,ingame,2021-01-10 05:37:17.000 -0100C8300FA90000,"Save Koch",status-playable,playable,2022-09-26 17:06:56.000 -,"Save the Ninja Clan",status-playable,playable,2021-01-11 13:56:37.000 -010091000F72C000,"Save Your Nuts",status-playable;nvdec;online-broken;UE4,playable,2022-09-27 23:12:02.000 -0100AA00128BA000,"Saviors of Sapphire Wings & Stranger of Sword City Revisited",status-menus;crash,menus,2022-10-24 23:00:46.000 -01001C3012912000,"Say No! More",status-playable,playable,2021-05-06 13:43:34.000 -010010A00A95E000,"Sayonara Wild Hearts",status-playable,playable,2023-10-23 03:20:01.000 -0100ACB004006000,"Schlag den Star",slow;status-playable;nvdec,playable,2022-08-12 14:28:22.000 -0100394011C30000,"Scott Pilgrim vs The World: The Game",services-horizon;status-nothing;crash,nothing,2024-07-12 08:13:03.000 -,"Scribblenauts Mega Pack",nvdec;status-playable,playable,2020-12-17 22:56:14.000 -,"Scribblenauts Showdown",gpu;nvdec;status-ingame,ingame,2020-12-17 23:05:53.000 -0100829018568000,"SD GUNDAM BATTLE ALLIANCE Demo",audio;status-ingame;crash;demo,ingame,2022-08-01 23:01:20.000 -010055700CEA8000,"SD GUNDAM G GENERATION CROSS RAYS",status-playable;nvdec,playable,2022-09-15 20:58:44.000 -,"SD GUNDAM G GENERATION CROSS RAYS PREMIUM G SOUND EDITION - 010022900D3EC00",status-playable;nvdec,playable,2022-09-15 20:45:57.000 -0100E4A00D066000,"Sea King",UE4;nvdec;status-playable,playable,2021-06-04 15:49:22.000 -0100AFE012BA2000,"Sea of Solitude The Director's Cut",gpu;status-ingame,ingame,2024-07-12 18:29:29.000 -01008C0016544000,"Sea of Stars",status-playable,playable,2024-03-15 20:27:12.000 -010036F0182C4000,"Sea of Stars Demo",status-playable;demo,playable,2023-02-12 15:33:56.000 -,"SeaBed",status-playable,playable,2020-05-17 13:25:37.000 -,"Season Match Bundle - Part 1 and 2",status-playable,playable,2021-01-11 13:28:23.000 -,"Season Match Full Bundle - Parts 1, 2 and 3",status-playable,playable,2020-10-27 16:15:22.000 -,"Secret Files 3",nvdec;status-playable,playable,2020-10-24 15:32:39.000 -010075D0101FA000,"Seek Hearts",status-playable,playable,2022-11-22 15:06:26.000 -,"Seers Isle",status-playable,playable,2020-11-17 12:28:50.000 -0100A8900AF04000,"SEGA AGES Alex Kidd in Miracle World",online;status-playable,playable,2021-05-05 16:35:47.000 -01001E600AF08000,"SEGA AGES Gain Ground",online;status-playable,playable,2021-05-05 16:16:27.000 -,"SEGA AGES OUTRUN",status-playable,playable,2021-01-11 13:13:59.000 -,"SEGA AGES PHANTASY STAR",status-playable,playable,2021-01-11 12:49:48.000 -01005F600CB0E000,"SEGA AGES Puyo Puyo",online;status-playable,playable,2021-05-05 16:09:28.000 -01000D200C614000,"SEGA AGES SONIC THE HEDGEHOG 2",status-playable,playable,2022-09-21 20:26:35.000 -,"SEGA AGES SPACE HARRIER",status-playable,playable,2021-01-11 12:57:40.000 -01001E700AC60000,"SEGA AGES Wonder Boy: Monster Land",online;status-playable,playable,2021-05-05 16:28:25.000 -010051F00AC5E000,"SEGA Ages: Sonic The Hedgehog",slow;status-playable,playable,2023-03-05 20:16:31.000 -010054400D2E6000,"SEGA Ages: Virtua Racing",status-playable;online-broken,playable,2023-01-29 17:08:39.000 -0100B3C014BDA000,"SEGA Genesis - Nintendo Switch Online",status-nothing;crash;regression,nothing,2022-04-11 07:27:21.000 -,"SEGA Mega Drive Classics",online;status-playable,playable,2021-01-05 11:08:00.000 -,"Semispheres",status-playable,playable,2021-01-06 23:08:31.000 -0100D1800D902000,"SENRAN KAGURA Peach Ball",status-playable,playable,2021-06-03 15:12:10.000 -,"SENRAN KAGURA Reflexions",status-playable,playable,2020-03-23 19:15:23.000 -01009E500D29C000,"Sentinels of Freedom",status-playable,playable,2021-06-14 16:42:19.000 -,"SENTRY",status-playable,playable,2020-12-13 12:00:24.000 -010059700D4A0000,"Sephirothic Stories",services;status-menus,menus,2021-11-25 08:52:17.000 -010007D00D43A000,"Serious Sam Collection",status-boots;vulkan-backend-bug,boots,2022-10-13 13:53:34.000 -0100B2C00E4DA000,"Served! A gourmet race",status-playable;nvdec,playable,2022-09-28 12:46:00.000 -010018400C24E000,"Seven Knights -Time Wanderer-",status-playable;vulkan-backend-bug,playable,2022-10-13 22:08:54.000 -0100D6F016676000,"Seven Pirates H",status-playable,playable,2024-06-03 14:54:12.000 -,"Severed",status-playable,playable,2020-12-15 21:48:48.000 -0100D5500DA94000,"Shadow Blade Reload",nvdec;status-playable,playable,2021-06-11 18:40:43.000 -0100BE501382A000,"Shadow Gangs",cpu;gpu;status-ingame;crash;regression,ingame,2024-04-29 00:07:26.000 -0100C3A013840000,"Shadow Man Remastered",gpu;status-ingame,ingame,2024-05-20 06:01:39.000 -,"Shadowgate",status-playable,playable,2021-04-24 07:32:57.000 -0100371013B3E000,"Shadowrun Returns",gpu;status-ingame;Needs Update,ingame,2022-10-04 21:32:31.000 -01008310154C4000,"Shadowrun: Dragonfall - Director's Cut",gpu;status-ingame;Needs Update,ingame,2022-10-04 20:52:18.000 -0100C610154CA000,"Shadowrun: Hong Kong - Extended Edition",gpu;status-ingame;Needs Update,ingame,2022-10-04 20:53:09.000 -,"Shadows 2: Perfidia",status-playable,playable,2020-08-07 12:43:46.000 -,"Shadows of Adam",status-playable,playable,2021-01-11 13:35:58.000 -01002A800C064000,"Shadowverse Champions Battle",status-playable,playable,2022-10-02 22:59:29.000 -01003B90136DA000,"Shadowverse: Champion’s Battle",status-nothing;crash,nothing,2023-03-06 00:31:50.000 -0100820013612000,"Shady Part of Me",status-playable,playable,2022-10-20 11:31:55.000 -,"Shakedown: Hawaii",status-playable,playable,2021-01-07 09:44:36.000 -01008DA012EC0000,"Shakes on a Plane",status-menus;crash,menus,2021-11-25 08:52:25.000 -0100B4900E008000,"Shalnor Legends: Sacred Lands",status-playable,playable,2021-06-11 14:57:11.000 -,"Shanky: The Vegan's Nightmare - 01000C00CC10000",status-playable,playable,2021-01-26 15:03:55.000 -0100430013120000,"Shantae",status-playable,playable,2021-05-21 04:53:26.000 -0100EFD00A4FA000,"Shantae and the Pirate's Curse",status-playable,playable,2024-04-29 17:21:57.000 -,"Shantae and the Seven Sirens",nvdec;status-playable,playable,2020-06-19 12:23:40.000 -,"Shantae: Half-Genie Hero Ultimate Edition",status-playable,playable,2020-06-04 20:14:20.000 -0100ADA012370000,"Shantae: Risky's Revenge - Director's Cut",status-playable,playable,2022-10-06 20:47:39.000 -01003AB01062C000,"Shaolin vs Wutang : Eastern Heroes",deadlock;status-nothing,nothing,2021-03-29 20:38:54.000 -0100B250009B9600,"Shape Of The World0",UE4;status-playable,playable,2021-03-05 16:42:28.000 -01004F50085F2000,"She Remembered Caterpillars",status-playable,playable,2022-08-12 17:45:14.000 -01000320110C2000,"She Sees Red",status-playable;nvdec,playable,2022-09-30 11:30:15.000 -01009EB004CB0000,"Shelter Generations",status-playable,playable,2021-06-04 16:52:39.000 -010020F014DBE000,"Sherlock Holmes: The Devil's Daughter",gpu;status-ingame,ingame,2022-07-11 00:07:26.000 -,"Shift Happens",status-playable,playable,2021-01-05 21:24:18.000 -,"SHIFT QUANTUM",UE4;crash;status-ingame,ingame,2020-11-06 21:54:08.000 -01000750084B2000,"Shiftlings",nvdec;status-playable,playable,2021-03-04 13:49:54.000 -01003B0012DC2000,"Shin Megami Tensei III Nocturne HD Remaster",status-playable,playable,2022-11-03 22:53:27.000 -010045800ED1E000,"Shin Megami Tensei III NOCTURNE HD REMASTER",gpu;status-ingame;Needs Update,ingame,2022-11-03 19:57:01.000 -010063B012DC6000,"Shin Megami Tensei V",status-playable;UE4,playable,2024-02-21 06:30:07.000 -010069C01AB82000,"Shin Megami Tensei V: Vengeance",gpu;status-ingame;vulkan-backend-bug,ingame,2024-07-14 11:28:24.000 -01009050133B4000,"Shing! (サムライフォース:斬!)",status-playable;nvdec,playable,2022-10-22 00:48:54.000 -01009A5009A9E000,"Shining Resonance Refrain",status-playable;nvdec,playable,2022-08-12 18:03:01.000 -01004EE0104F6000,"Shinsekai Into the Depths",status-playable,playable,2022-09-28 14:07:51.000 -0100C2F00A568000,"Shio",status-playable,playable,2021-02-22 16:25:09.000 -,"Shipped",status-playable,playable,2020-11-21 14:22:32.000 -01000E800FCB4000,"Ships",status-playable,playable,2021-06-11 16:14:37.000 -01007430122D0000,"Shiren the Wanderer: The Tower of Fortune and the Dice of Fate",status-playable;nvdec,playable,2022-10-20 11:44:36.000 -,"Shiritsu Berubara Gakuen ~Versailles no Bara Re*imagination~",cpu;crash;status-boots,boots,2020-09-27 19:01:25.000 -01000244016BAE00,"Shiro0",gpu;status-ingame,ingame,2024-01-13 08:54:39.000 -,"Shoot 1UP DX",status-playable,playable,2020-12-13 12:32:47.000 -,"Shovel Knight: Specter of Torment",status-playable,playable,2020-05-30 08:34:17.000 -,"Shovel Knight: Treasure Trove",status-playable,playable,2021-02-14 18:24:39.000 -,"Shred!2 - Freeride MTB",status-playable,playable,2020-05-30 14:34:09.000 -,"Shu",nvdec;status-playable,playable,2020-05-30 09:08:59.000 -,"Shut Eye",status-playable,playable,2020-07-23 18:08:35.000 -010044500C182000,"Sid Meier's Civilization VI",status-playable;ldn-untested,playable,2024-04-08 16:03:40.000 -01007FC00B674000,"Sigi - A Fart for Melusina",status-playable,playable,2021-02-22 16:46:58.000 -0100F1400B0D6000,"Silence",nvdec;status-playable,playable,2021-06-03 14:46:17.000 -,"Silent World",status-playable,playable,2020-08-28 13:45:13.000 -010045500DFE2000,"Silk",nvdec;status-playable,playable,2021-06-10 15:34:37.000 -010016D00A964000,"SilverStarChess",status-playable,playable,2021-05-06 15:25:57.000 -0100E8C019B36000,"Simona's Requiem",gpu;status-ingame,ingame,2023-02-21 18:29:19.000 -01006FE010438000,"Sin Slayers",status-playable,playable,2022-10-20 11:53:52.000 -01002820036A8000,"Sine Mora EX",gpu;status-ingame;online-broken,ingame,2022-08-12 19:36:18.000 -,"Singled Out",online;status-playable,playable,2020-08-03 13:06:18.000 -,"Sinless",nvdec;status-playable,playable,2020-08-09 20:18:55.000 -0100B16009C10000,"SINNER: Sacrifice for Redemption",status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-08-12 20:37:33.000 -0100E9201410E000,"Sir Lovelot",status-playable,playable,2021-04-05 16:21:46.000 -0100134011E32000,"Skate City",status-playable,playable,2022-11-04 11:37:39.000 -,"Skee-Ball",status-playable,playable,2020-11-16 04:44:07.000 -01001A900F862000,"Skelattack",status-playable,playable,2021-06-09 15:26:26.000 -01008E700F952000,"Skelittle: A Giant Party!!",status-playable,playable,2021-06-09 19:08:34.000 -,"Skelly Selest",status-playable,playable,2020-05-30 15:38:18.000 -,"Skies of Fury",status-playable,playable,2020-05-30 16:40:54.000 -010046B00DE62000,"Skullgirls: 2nd Encore",status-playable,playable,2022-09-15 21:21:25.000 -,"Skulls of the Shogun: Bone-a-fide Edition",status-playable,playable,2020-08-31 18:58:12.000 -0100D7B011654000,"Skully",status-playable;nvdec;UE4,playable,2022-10-06 13:52:59.000 -010083100B5CA000,"Sky Force Anniversary",status-playable;online-broken,playable,2022-08-12 20:50:07.000 -,"Sky Force Reloaded",status-playable,playable,2021-01-04 20:06:57.000 -010003F00CC98000,"Sky Gamblers - Afterburner",gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-12 21:04:55.000 -010093D00AC38000,"Sky Gamblers: Storm Raiders",gpu;audio;status-ingame;32-bit,ingame,2022-08-12 21:13:36.000 -010068200E96E000,"Sky Gamblers: Storm Raiders 2",gpu;status-ingame,ingame,2022-09-13 12:24:04.000 -,"Sky Racket",status-playable,playable,2020-09-07 12:22:24.000 -0100DDB004F30000,"Sky Ride",status-playable,playable,2021-02-22 16:53:07.000 -,"Sky Rogue",status-playable,playable,2020-05-30 08:26:28.000 -0100C52011460000,"Sky: Children of the Light",cpu;status-nothing;online-broken,nothing,2023-02-23 10:57:10.000 -010041C01014E000,"Skybolt Zack",status-playable,playable,2021-04-12 18:28:00.000 -0100A0A00D1AA000,"SKYHILL",status-playable,playable,2021-03-05 15:19:11.000 -,"Skylanders Imaginators",crash;services;status-boots,boots,2020-05-30 18:49:18.000 -,"SKYPEACE",status-playable,playable,2020-05-29 14:14:30.000 -,"SkyScrappers",status-playable,playable,2020-05-28 22:11:25.000 -,"SkyTime",slow;status-ingame,ingame,2020-05-30 09:24:51.000 -01003AD00DEAE000,"SlabWell",status-playable,playable,2021-02-22 17:02:51.000 -,"Slain",status-playable,playable,2020-05-29 14:26:16.000 -0100BB100AF4C000,"Slain Back from Hell",status-playable,playable,2022-08-12 23:36:19.000 -010026300BA4A000,"Slay the Spire",status-playable,playable,2023-01-20 15:09:26.000 -0100501006494000,"Slayaway Camp: Butcher's Cut",status-playable;opengl-backend-bug,playable,2022-08-12 23:44:05.000 -01004E900EDDA000,"Slayin 2",gpu;status-ingame,ingame,2024-04-19 16:15:26.000 -01004AC0081DC000,"Sleep Tight",gpu;status-ingame;UE4,ingame,2022-08-13 00:17:32.000 -0100F4500AA4E000,"Slice Dice & Rice",online;status-playable,playable,2021-02-22 17:44:23.000 -010010D011E1C000,"Slide Stars",status-menus;crash,menus,2021-11-25 08:53:43.000 -,"Slime-san",status-playable,playable,2020-05-30 16:15:12.000 -,"Slime-san Superslime Edition",status-playable,playable,2020-05-30 19:08:08.000 -01002AA00C974000,"SMASHING THE BATTLE",status-playable,playable,2021-06-11 15:53:57.000 -0100C9100B06A000,"SmileBASIC 4",gpu;status-menus,menus,2021-07-29 17:35:59.000 -0100207007EB2000,"Smoke and Sacrifice",status-playable,playable,2022-08-14 12:38:27.000 -01009790186FE000,"Smurfs Kart",status-playable,playable,2023-10-18 00:55:00.000 -0100F2800D46E000,"Snack World The Dungeon Crawl Gold",gpu;slow;status-ingame;nvdec;audout,ingame,2022-05-01 21:12:44.000 -0100C0F0020E8000,"Snake Pass",status-playable;nvdec;UE4,playable,2022-01-03 04:31:52.000 -010075A00BA14000,"Sniper Elite 3 Ultimate Edition",status-playable;ldn-untested,playable,2024-04-18 07:47:49.000 -010007B010FCC000,"Sniper Elite 4",gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug,ingame,2024-06-18 17:53:15.000 -0100BB000A3AA000,"Sniper Elite V2 Remastered",slow;status-ingame;nvdec;online-broken;ldn-untested,ingame,2022-08-14 13:23:13.000 -0100704000B3A000,"Snipperclips",status-playable,playable,2022-12-05 12:44:55.000 -01008E20047DC000,"Snipperclips Plus",status-playable,playable,2023-02-14 20:20:13.000 -01004AB00AEF8000,"SNK 40th Anniversary Collection",status-playable,playable,2022-08-14 13:33:15.000 -010027F00AD6C000,"SNK HEROINES Tag Team Frenzy",status-playable;nvdec;online-broken;ldn-untested,playable,2022-08-14 14:19:25.000 -01008DA00CBBA000,"Snooker 19",status-playable;nvdec;online-broken;UE4,playable,2022-09-11 17:43:22.000 -010045300516E000,"Snow Moto Racing Freedom",gpu;status-ingame;vulkan-backend-bug,ingame,2022-08-15 16:05:14.000 -0100BE200C34A000,"Snowboarding the Next Phase",nvdec;status-playable,playable,2021-02-23 12:56:58.000 -,"SnowRunner - 0100FBD13AB6000",services;status-boots;crash,boots,2023-10-07 00:01:16.000 -010017B012AFC000,"Soccer Club Life: Playing Manager",gpu;status-ingame,ingame,2022-10-25 11:59:22.000 -0100B5000E05C000,"Soccer Pinball",UE4;gpu;status-ingame,ingame,2021-06-15 20:56:51.000 -,"Soccer Slammers",status-playable,playable,2020-05-30 07:48:14.000 -010095C00F9DE000,"Soccer, Tactics & Glory",gpu;status-ingame,ingame,2022-09-26 17:15:58.000 -,"SOLDAM Drop, Connect, Erase",status-playable,playable,2020-05-30 09:18:54.000 -0100590009C38000,"SolDivide for Nintendo Switch",32-bit;status-playable,playable,2021-06-09 14:13:03.000 -010008600D1AC000,"Solo: Islands of the Heart",gpu;status-ingame;nvdec,ingame,2022-09-11 17:54:43.000 -01009EE00E91E000,"Some Distant Memory",status-playable,playable,2022-09-15 21:48:19.000 -01004F401BEBE000,"Song of Nunu: A League of Legends Story",status-ingame,ingame,2024-07-12 18:53:44.000 -0100E5400BF94000,"Songbird Symphony",status-playable,playable,2021-02-27 02:44:04.000 -,"Songbringer",status-playable,playable,2020-06-22 10:42:02.000 -0000000000000000,"Sonic 1 (2013)",status-ingame;crash;homebrew,ingame,2024-04-06 18:31:20.000 -0000000000000000,"Sonic 2 (2013)",status-ingame;crash;homebrew,ingame,2024-04-01 16:25:30.000 -0000000000000000,"Sonic A.I.R",status-ingame;homebrew,ingame,2024-04-01 16:25:32.000 -0000000000000000,"Sonic CD",status-ingame;crash;homebrew,ingame,2024-04-01 16:25:31.000 -010040E0116B8000,"Sonic Colors Ultimate [010040E0116B8000]",status-playable,playable,2022-11-12 21:24:26.000 -01001270012B6000,"Sonic Forces",status-playable,playable,2024-07-28 13:11:21.000 -01004AD014BF0000,"Sonic Frontiers",gpu;deadlock;status-ingame;amd-vendor-bug;intel-vendor-bug,ingame,2024-09-05 09:18:53.000 -01009AA000FAA000,"Sonic Mania",status-playable,playable,2020-06-08 17:30:57.000 -01009AA000FAA000,"Sonic Mania Plus",status-playable,playable,2022-01-16 04:09:11.000 -01008F701C074000,"Sonic Superstars",gpu;status-ingame;nvdec,ingame,2023-10-28 17:48:07.000 -010088801C150000,"Sonic Superstars Digital Art Book with Mini Digital Soundtrack",status-playable,playable,2024-08-20 13:26:56.000 -01005EA01C0FC000,"SONIC X SHADOW GENERATIONS",status-ingame;crash,ingame,2025-01-07 04:20:45.000 -,"Soul Axiom Rebooted",nvdec;slow;status-ingame,ingame,2020-09-04 12:41:01.000 -,"Soul Searching",status-playable,playable,2020-07-09 18:39:07.000 -01008F2005154000,"South Park: The Fractured But Whole",slow;status-playable;online-broken,playable,2024-07-08 17:47:28.000 -,"Space Blaze",status-playable,playable,2020-08-30 16:18:05.000 -,"Space Cows",UE4;crash;status-menus,menus,2020-06-15 11:33:20.000 -,"SPACE ELITE FORCE",status-playable,playable,2020-11-27 15:21:05.000 -010047B010260000,"Space Pioneer",status-playable,playable,2022-10-20 12:24:37.000 -010010A009830000,"Space Ribbon",status-playable,playable,2022-08-15 17:17:10.000 -0000000000000000,"SpaceCadetPinball",status-ingame;homebrew,ingame,2024-04-18 19:30:04.000 -0100D9B0041CE000,"Spacecats with Lasers",status-playable,playable,2022-08-15 17:22:44.000 -,"Spaceland",status-playable,playable,2020-11-01 14:31:56.000 -,"Sparkle 2",status-playable,playable,2020-10-19 11:51:39.000 -01000DC007E90000,"Sparkle Unleashed",status-playable,playable,2021-06-03 14:52:15.000 -,"Sparkle ZERO",gpu;slow;status-ingame,ingame,2020-03-23 18:19:18.000 -01007ED00C032000,"Sparklite",status-playable,playable,2022-08-06 11:35:41.000 -0100E6A009A26000,"Spartan",UE4;nvdec;status-playable,playable,2021-03-05 15:53:19.000 -,"Speaking Simulator",status-playable,playable,2020-10-08 13:00:39.000 -01008B000A5AE000,"Spectrum",status-playable,playable,2022-08-16 11:15:59.000 -0100F18010BA0000,"Speed 3: Grand Prix",status-playable;UE4,playable,2022-10-20 12:32:31.000 -,"Speed Brawl",slow;status-playable,playable,2020-09-18 22:08:16.000 -01000540139F6000,"Speed Limit",gpu;status-ingame,ingame,2022-09-02 18:37:40.000 -010061F013A0E000,"Speed Truck Racing",status-playable,playable,2022-10-20 12:57:04.000 -0100E74007EAC000,"Spellspire",status-playable,playable,2022-08-16 11:21:21.000 -010021F004270000,"Spelunker Party!",services;status-boots,boots,2022-08-16 11:25:49.000 -0100710013ABA000,"Spelunky",status-playable,playable,2021-11-20 17:45:03.000 -0100BD500BA94000,"Sphinx and the Cursed Mummy™",gpu;status-ingame;32-bit;opengl,ingame,2024-05-20 06:00:51.000 -,"Spider Solitaire",status-playable,playable,2020-12-16 16:19:30.000 -010076D0122A8000,"Spinch",status-playable,playable,2024-07-12 19:02:10.000 -01001E40136FE000,"Spinny's journey",status-ingame;crash,ingame,2021-11-30 03:39:44.000 -,"Spiral Splatter",status-playable,playable,2020-06-04 14:03:57.000 -,"Spirit Hunter: NG",32-bit;status-playable,playable,2020-12-17 20:38:47.000 -01005E101122E000,"Spirit of the North",status-playable;UE4,playable,2022-09-30 11:40:47.000 -,"Spirit Roots",nvdec;status-playable,playable,2020-07-10 13:33:32.000 -0100BD400DC52000,"Spiritfarer",gpu;status-ingame,ingame,2022-10-06 16:31:38.000 -01009D60080B4000,"SpiritSphere DX",status-playable,playable,2021-07-03 23:37:49.000 -010042700E3FC000,"Spitlings",status-playable;online-broken,playable,2022-10-06 16:42:39.000 -01003BC0000A0000,"Splatoon 2",status-playable;ldn-works;LAN,playable,2024-07-12 19:11:15.000 -0100C2500FC20000,"Splatoon 3",status-playable;ldn-works;opengl-backend-bug;LAN;amd-vendor-bug,playable,2024-08-04 23:49:11.000 -0100BA0018500000,"Splatoon 3: Splatfest World Premiere",gpu;status-ingame;online-broken;demo,ingame,2022-09-19 03:17:12.000 -01009FB0172F4000,"SpongeBob SquarePants The Cosmic Shake",gpu;status-ingame;UE4,ingame,2023-08-01 19:29:53.000 -010062800D39C000,"SpongeBob SquarePants: Battle for Bikini Bottom - Rehydrated",status-playable;online-broken;UE4;ldn-broken;vulkan-backend-bug,playable,2023-08-01 19:29:34.000 -010097C01336A000,"Spooky Chase",status-playable,playable,2022-11-04 12:17:44.000 -0100C6100D75E000,"Spooky Ghosts Dot Com",status-playable,playable,2021-06-15 15:16:11.000 -0100DE9005170000,"Sports Party",nvdec;status-playable,playable,2021-03-05 13:40:42.000 -0100E04009BD4000,"Spot The Difference",status-playable,playable,2022-08-16 11:49:52.000 -010052100D1B4000,"Spot the Differences: Party!",status-playable,playable,2022-08-16 11:55:26.000 -01000E6015350000,"Spy Alarm",services;status-ingame,ingame,2022-12-09 10:12:51.000 -01005D701264A000,"SpyHack",status-playable,playable,2021-04-15 10:53:51.000 -,"Spyro Reignited Trilogy",Needs More Attention;UE4;crash;gpu;nvdec;status-menus,menus,2021-01-22 13:01:56.000 -010077B00E046000,"Spyro Reignited Trilogy",status-playable;nvdec;UE4,playable,2022-09-11 18:38:33.000 -,"Squeakers",status-playable,playable,2020-12-13 12:13:05.000 -,"Squidgies Takeover",status-playable,playable,2020-07-20 22:28:08.000 -,"Squidlit",status-playable,playable,2020-08-06 12:38:32.000 -0100EBF00E702000,"STAR OCEAN First Departure R",nvdec;status-playable,playable,2021-07-05 19:29:16.000 -010065301A2E0000,"STAR OCEAN The Second Story R",status-ingame;crash,ingame,2024-06-01 02:39:59.000 -,"Star Renegades",nvdec;status-playable,playable,2020-12-11 12:19:23.000 -,"Star Story: The Horizon Escape",status-playable,playable,2020-08-11 22:31:38.000 -01009DF015776000,"Star Trek Prodigy: Supernova",status-playable;nvdec;UE4;opengl-backend-bug,playable,2022-10-14 10:18:50.000 -0100854015868000,"Star Wars - Knights Of The Old Republic",gpu;deadlock;status-boots,boots,2024-02-12 10:13:51.000 -010040701B948000,"STAR WARS Battlefront Classic Collection",gpu;status-ingame;vulkan,ingame,2024-07-12 19:24:21.000 -0100BD100FFBE000,"STAR WARS Episode I: Racer",slow;status-playable;nvdec,playable,2022-10-03 16:08:36.000 -0100BB500EACA000,"STAR WARS Jedi Knight II Jedi Outcast",gpu;status-ingame,ingame,2022-09-15 22:51:00.000 -01008CA00FAE8000,"Star Wars Jedi Knight: Jedi Academy",gpu;status-boots,boots,2021-06-16 12:35:30.000 -0100FA10115F8000,"Star Wars: Republic Commando",gpu;status-ingame;32-bit,ingame,2023-10-31 15:57:17.000 -0100153014544000,"STAR WARS: The Force Unleashed",status-playable,playable,2024-05-01 17:41:28.000 -01006DA00DEAC000,"Star Wars™ Pinball",status-playable;online-broken,playable,2022-09-11 18:53:31.000 -01005EB00EA10000,"Star-Crossed Myth - The Department of Wishes",gpu;status-ingame,ingame,2021-06-04 19:34:36.000 -0100E6B0115FC000,"Star99",status-menus;online,menus,2021-11-26 14:18:51.000 -01002100137BA000,"Stardash",status-playable,playable,2021-01-21 16:31:19.000 -0100E65002BB8000,"Stardew Valley",status-playable;online-broken;ldn-untested,playable,2024-02-14 03:11:19.000 -01002CC003FE6000,"Starlink: Battle for Atlas",services-horizon;status-nothing;crash;Needs Update,nothing,2024-05-05 17:25:11.000 -,"Starlit Adventures Golden Stars",status-playable,playable,2020-11-21 12:14:43.000 -,"Starship Avenger Operation: Take Back Earth",status-playable,playable,2021-01-12 15:52:55.000 -,"State of Anarchy: Master of Mayhem",nvdec;status-playable,playable,2021-01-12 19:00:05.000 -,"State of Mind",UE4;crash;status-boots,boots,2020-06-22 22:17:50.000 -0100616009082000,"STAY",crash;services;status-boots,boots,2021-04-23 14:24:52.000 -0100B61009C60000,"STAY COOL, KOBAYASHI-SAN! A RIVER RANSOM STORY",status-playable,playable,2021-01-26 17:37:28.000 -01008010118CC000,"Steam Prison",nvdec;status-playable,playable,2021-04-01 15:34:11.000 -0100AE100DAFA000,"Steam Tactics",status-playable,playable,2022-10-06 16:53:45.000 -,"Steamburg",status-playable,playable,2021-01-13 08:42:01.000 -01009320084A4000,"SteamWorld Dig",status-playable,playable,2024-08-19 12:12:23.000 -0100CA9002322000,"SteamWorld Dig 2",status-playable,playable,2022-12-21 19:25:42.000 -,"SteamWorld Quest",nvdec;status-playable,playable,2020-11-09 13:10:04.000 -01001C6014772000,"Steel Assault",status-playable,playable,2022-12-06 14:48:30.000 -,"Steins;Gate Elite",status-playable,playable,2020-08-04 07:33:32.000 -0100CB400E9BC000,"STEINS;GATE: My Darling's Embrace",status-playable;nvdec,playable,2022-11-20 16:48:34.000 -01002DE01043E000,"Stela",UE4;status-playable,playable,2021-06-15 13:28:34.000 -01005A700C954000,"Stellar Interface",status-playable,playable,2022-10-20 13:44:33.000 -0100BC800EDA2000,"STELLATUM",gpu;status-playable,playable,2021-03-07 16:30:23.000 -,"Steredenn",status-playable,playable,2021-01-13 09:19:42.000 -0100AE0006474000,"Stern Pinball Arcade",status-playable,playable,2022-08-16 14:24:41.000 -,"Stikbold! A Dodgeball Adventure DELUXE",status-playable,playable,2021-01-11 20:12:54.000 -010077B014518000,"Stitchy in Tooki Trouble",status-playable,playable,2021-05-06 16:25:53.000 -010070D00F640000,"STONE",status-playable;UE4,playable,2022-09-30 11:53:32.000 -010074400F6A8000,"Stories Untold",status-playable;nvdec,playable,2022-12-22 01:08:46.000 -010040D00BCF4000,"Storm Boy",status-playable,playable,2022-10-20 14:15:06.000 -0100B2300B932000,"Storm in a Teacup",gpu;status-ingame,ingame,2021-11-06 02:03:19.000 -,"Story of a Gladiator",status-playable,playable,2020-07-29 15:08:18.000 -010017301007E000,"STORY OF SEASONS Pioneers of Olive [ 牧場物語 オリーブタウンと希望の大地 ]",status-playable,playable,2021-03-18 11:42:19.000 -0100ED400EEC2000,"Story of Seasons: Friends of Mineral Town",status-playable,playable,2022-10-03 16:40:31.000 -010078D00E8F4000,"Stranded Sails: Explorers of the Cursed Islands - 010078D00E8F4000",slow;status-playable;nvdec;UE4,playable,2022-09-16 11:58:38.000 -01000A6013F86000,"Strange Field Football",status-playable,playable,2022-11-04 12:25:57.000 -,"Stranger Things 3: The Game",status-playable,playable,2021-01-11 17:44:09.000 -0100D7E011C64000,"Strawberry Vinegar",status-playable;nvdec,playable,2022-12-05 16:25:40.000 -010075101EF84000,"Stray",status-ingame;crash,ingame,2025-01-07 04:03:00.000 -0100024008310000,"Street Fighter 30th Anniversary Collection",status-playable;online-broken;ldn-partial,playable,2022-08-20 16:50:47.000 -010012400D202000,"Street Outlaws: The List",nvdec;status-playable,playable,2021-06-11 12:15:32.000 -,"Street Power Soccer",UE4;crash;status-boots,boots,2020-11-21 12:28:57.000 -,"Streets of Rage 4",nvdec;online;status-playable,playable,2020-07-07 21:21:22.000 -0100BDE012928000,"Strife: Veteran Edition",gpu;status-ingame,ingame,2022-01-15 05:10:42.000 -010039100DACC000,"Strike Force - War on Terror",status-menus;crash;Needs Update,menus,2021-11-24 08:08:20.000 -010072500D52E000,"Strike Suit Zero: Director's Cut",crash;status-boots,boots,2021-04-23 17:15:14.000 -,"StrikeForce Kitty",nvdec;status-playable,playable,2020-07-29 16:22:15.000 -0100FF5005B76000,"STRIKERS1945 for Nintendo Switch",32-bit;status-playable,playable,2021-06-03 19:35:04.000 -0100720008ED2000,"STRIKERS1945II for Nintendo Switch",32-bit;status-playable,playable,2021-06-03 19:43:00.000 -,"Struggling",status-playable,playable,2020-10-15 20:37:03.000 -0100AF000B4AE000,"Stunt Kite Party",nvdec;status-playable,playable,2021-01-25 17:16:56.000 -0100C5500E7AE000,"STURMWIND EX",audio;32-bit;status-playable,playable,2022-09-16 12:01:39.000 -0100E6400BCE8000,"Sub Level Zero: Redux",status-playable,playable,2022-09-16 12:30:03.000 -,"Subarashiki Kono Sekai -Final Remix-",services;slow;status-ingame,ingame,2020-02-10 16:21:51.000 -010001400E474000,"Subdivision Infinity DX",UE4;crash;status-boots,boots,2021-03-03 14:26:46.000 -0100EDA00D866000,"Submerged",status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-08-16 15:17:01.000 -0100429011144000,"Subnautica",status-playable;vulkan-backend-bug,playable,2022-11-04 13:07:29.000 -010014C011146000,"Subnautica Below Zero",status-playable,playable,2022-12-23 14:15:13.000 -0100BF9012AC6000,"Suguru Nature",crash;status-ingame,ingame,2021-07-29 11:36:27.000 -01005CD00A2A2000,"Suicide Guy",status-playable,playable,2021-01-26 13:13:54.000 -0100DE000C2E4000,"Suicide Guy: Sleepin' Deeply",status-ingame;Needs More Attention,ingame,2022-09-20 23:45:25.000 -01003D50126A4000,"Sumire",status-playable,playable,2022-11-12 13:40:43.000 -0100A130109B2000,"Summer in Mara",nvdec;status-playable,playable,2021-03-06 14:10:38.000 -01004E500DB9E000,"Summer Sweetheart",status-playable;nvdec,playable,2022-09-16 12:51:46.000 -0100BFE014476000,"Sunblaze",status-playable,playable,2022-11-12 13:59:23.000 -01002D3007962000,"Sundered: Eldritch Edition",gpu;status-ingame,ingame,2021-06-07 11:46:00.000 -0100F7000464A000,"Super Beat Sports",status-playable;ldn-untested,playable,2022-08-16 16:05:50.000 -,"Super Blood Hockey",status-playable,playable,2020-12-11 20:01:41.000 -01007AD00013E000,"Super Bomberman R",status-playable;nvdec;online-broken;ldn-works,playable,2022-08-16 19:19:14.000 -0100B87017D94000,"SUPER BOMBERMAN R 2",deadlock;status-boots,boots,2023-09-29 13:19:51.000 -0100D9B00DB5E000,"Super Cane Magic ZERO",status-playable,playable,2022-09-12 15:33:46.000 -010065F004E5E000,"Super Chariot",status-playable,playable,2021-06-03 13:19:01.000 -0100E5E00C464000,"SUPER DRAGON BALL HEROES WORLD MISSION",status-playable;nvdec;online-broken,playable,2022-08-17 12:56:30.000 -010023100B19A000,"Super Dungeon Tactics",status-playable,playable,2022-10-06 17:40:40.000 -010056800B534000,"Super Inefficient Golf",status-playable;UE4,playable,2022-08-17 15:53:45.000 -,"Super Jumpy Ball",status-playable,playable,2020-07-04 18:40:36.000 -0100196009998000,"Super Kickers League",status-playable,playable,2021-01-26 13:36:48.000 -01003FB00C5A8000,"Super Kirby Clash",status-playable;ldn-works,playable,2024-07-30 18:21:55.000 -010000D00F81A000,"Super Korotama",status-playable,playable,2021-06-06 19:06:22.000 -01003E300FCAE000,"Super Loop Drive",status-playable;nvdec;UE4,playable,2022-09-22 10:58:05.000 -010049900F546000,"Super Mario 3D All-Stars",services-horizon;slow;status-ingame;vulkan;amd-vendor-bug,ingame,2024-05-07 02:38:16.000 -010028600EBDA000,"Super Mario 3D World + Bowser's Fury",status-playable;ldn-works,playable,2024-07-31 10:45:37.000 -054507E0B7552000,"Super Mario 64",status-ingame;homebrew,ingame,2024-03-20 16:57:27.000 -0100277011F1A000,"Super Mario Bros. 35",status-menus;online-broken,menus,2022-08-07 16:27:25.000 -010015100B514000,"Super Mario Bros. Wonder",status-playable;amd-vendor-bug,playable,2024-09-06 13:21:21.000 -01009B90006DC000,"Super Mario Maker 2",status-playable;online-broken;ldn-broken,playable,2024-08-25 11:05:19.000 -0100000000010000,"Super Mario Odyssey",status-playable;nvdec;intel-vendor-bug;mac-bug,playable,2024-08-25 01:32:34.000 -010036B0034E4000,"Super Mario Party",gpu;status-ingame;Needs Update;ldn-works,ingame,2024-06-21 05:10:16.000 -0100BC0018138000,"Super Mario RPG",gpu;audio;status-ingame;nvdec,ingame,2024-06-19 17:43:42.000 -0000000000000000,"Super Mario World",status-boots;homebrew,boots,2024-06-13 01:40:31.000 -,"Super Meat Boy",services;status-playable,playable,2020-04-02 23:10:07.000 -01009C200D60E000,"Super Meat Boy Forever",gpu;status-boots,boots,2021-04-26 14:25:39.000 -,"Super Mega Space Blaster Special Turbo",online;status-playable,playable,2020-08-06 12:13:25.000 -010031F019294000,"Super Monkey Ball Banana Rumble",status-playable,playable,2024-06-28 10:39:18.000 -0100B2A00E1E0000,"Super Monkey Ball: Banana Blitz HD",status-playable;online-broken,playable,2022-09-16 13:16:25.000 -,"Super Mutant Alien Assault",status-playable,playable,2020-06-07 23:32:45.000 -01004D600AC14000,"Super Neptunia RPG",status-playable;nvdec,playable,2022-08-17 16:38:52.000 -,"Super Nintendo Entertainment System - Nintendo Switch Online",status-playable,playable,2021-01-05 00:29:48.000 -0100284007D6C000,"Super One More Jump",status-playable,playable,2022-08-17 16:47:47.000 -01001F90122B2000,"Super Punch Patrol",status-playable,playable,2024-07-12 19:49:02.000 -0100331005E8E000,"Super Putty Squad",gpu;status-ingame;32-bit,ingame,2024-04-29 15:51:54.000 -,"SUPER ROBOT WARS T",online;status-playable,playable,2021-03-25 11:00:40.000 -,"SUPER ROBOT WARS V",online;status-playable,playable,2020-06-23 12:56:37.000 -,"SUPER ROBOT WARS X",online;status-playable,playable,2020-08-05 19:18:51.000 -,"Super Saurio Fly",nvdec;status-playable,playable,2020-08-06 13:12:14.000 -,"Super Skelemania",status-playable,playable,2020-06-07 22:59:50.000 -01006A800016E000,"Super Smash Bros. Ultimate",gpu;status-ingame;crash;nvdec;ldn-works;intel-vendor-bug,ingame,2024-09-14 23:05:21.000 -0100D61012270000,"Super Soccer Blast",gpu;status-ingame,ingame,2022-02-16 08:39:12.000 -0100A9300A4AE000,"Super Sportmatchen",status-playable,playable,2022-08-19 12:34:40.000 -0100FB400F54E000,"Super Street: Racer",status-playable;UE4,playable,2022-09-16 13:43:14.000 -,"Super Tennis Blast - 01000500DB50000",status-playable,playable,2022-08-19 16:20:48.000 -0100C6800D770000,"Super Toy Cars 2",gpu;regression;status-ingame,ingame,2021-03-02 20:15:15.000 -010035B00B3F0000,"Super Volley Blast",status-playable,playable,2022-08-19 18:14:40.000 -0100FF60051E2000,"Superbeat: Xonic EX",status-ingame;crash;nvdec,ingame,2022-08-19 18:54:40.000 -0100630010252000,"SuperEpic: The Entertainment War",status-playable,playable,2022-10-13 23:02:48.000 -01001A500E8B4000,"Superhot",status-playable,playable,2021-05-05 19:51:30.000 -,"Superliminal",status-playable,playable,2020-09-03 13:20:50.000 -0100C01012654000,"Supermarket Shriek",status-playable,playable,2022-10-13 23:19:20.000 -0100A6E01201C000,"Supraland",status-playable;nvdec;UE4;opengl-backend-bug,playable,2022-10-14 09:49:11.000 -010029A00AEB0000,"Survive! Mr. Cube",status-playable,playable,2022-10-20 14:44:47.000 -01005AB01119C000,"SUSHI REVERSI",status-playable,playable,2021-06-11 19:26:58.000 -,"Sushi Striker: The Way of Sushido",nvdec;status-playable,playable,2020-06-26 20:49:11.000 -0100D6D00EC2C000,"Sweet Witches",status-playable;nvdec,playable,2022-10-20 14:56:37.000 -010049D00C8B0000,"Swimsanity!",status-menus;online,menus,2021-11-26 14:27:16.000 -01005DF00DC26000,"SWORD ART ONLINE: FATAL BULLET COMPLETE EDITION",UE4;gpu;online;status-ingame,ingame,2021-06-09 16:58:50.000 -01001B600D1D6000,"SWORD ART ONLINE: Hollow Realization Deluxe Edition",status-playable;nvdec,playable,2022-08-19 19:19:15.000 -,"Sword of the Guardian",status-playable,playable,2020-07-16 12:24:39.000 -0100E4701355C000,"Sword of the Necromancer",status-ingame;crash,ingame,2022-12-10 01:28:39.000 -01004BB00421E000,"Syberia 1 & 2",status-playable,playable,2021-12-24 12:06:25.000 -010028C003FD6000,"Syberia 2",gpu;status-ingame,ingame,2022-08-24 12:43:03.000 -0100CBE004E6C000,"Syberia 3",nvdec;status-playable,playable,2021-01-25 16:15:12.000 -,"Sydney Hunter and the Curse of the Mayan",status-playable,playable,2020-06-15 12:15:57.000 -,"SYNAPTIC DRIVE",online;status-playable,playable,2020-09-07 13:44:05.000 -01009E700F448000,"Synergia",status-playable,playable,2021-04-06 17:58:04.000 -01009BF00E7D2000,"SYNTHETIK: Ultimate",gpu;status-ingame;crash,ingame,2022-08-30 03:19:25.000 -,"Table Top Racing World Tour Nitro Edition",status-playable,playable,2020-04-05 23:21:30.000 -01000F20083A8000,"Tactical Mind",status-playable,playable,2021-01-25 18:05:00.000 -,"Tactical Mind 2",status-playable,playable,2020-07-01 23:11:07.000 -0100E12013C1A000,"Tactics Ogre Reborn",status-playable;vulkan-backend-bug,playable,2024-04-09 06:21:35.000 -01007C7006AEE000,"Tactics V: ""Obsidian Brigade",status-playable,playable,2021-02-28 15:09:42.000 -,"Taiko no Tatsujin Rhythmic Adventure Pack",status-playable,playable,2020-12-03 07:28:26.000 -01002C000B552000,"Taiko no Tatsujin: Drum 'n' Fun!",status-playable;online-broken;ldn-broken,playable,2023-05-20 15:10:12.000 -0100BCA0135A0000,"Taiko no Tatsujin: Rhythm Festival",status-playable,playable,2023-11-13 13:16:34.000 -0100346017304000,"Taiko Risshiden V DX",status-nothing;crash,nothing,2022-06-06 16:25:31.000 -010040A00EA26000,"Taimumari: Complete Edition",status-playable,playable,2022-12-06 13:34:49.000 -0100F0C011A68000,"Tales from the Borderlands",status-playable;nvdec,playable,2022-10-25 18:44:14.000 -0100408007078000,"Tales of the Tiny Planet",status-playable,playable,2021-01-25 15:47:41.000 -01002C0008E52000,"Tales of Vesperia: Definitive Edition",status-playable,playable,2024-09-28 03:20:47.000 -010012800EE3E000,"Tamashii",status-playable,playable,2021-06-10 15:26:20.000 -010008A0128C4000,"Tamiku",gpu;status-ingame,ingame,2021-06-15 20:06:55.000 -,"Tangledeep",crash;status-boots,boots,2021-01-05 04:08:41.000 -01007DB010D2C000,"TaniNani",crash;kernel;status-nothing,nothing,2021-04-08 03:06:44.000 -,"Tank Mechanic Simulator",status-playable,playable,2020-12-11 15:10:45.000 -01007A601318C000,"Tanuki Justice",status-playable;opengl,playable,2023-02-21 18:28:10.000 -01004DF007564000,"Tanzia",status-playable,playable,2021-06-07 11:10:25.000 -,"Task Force Kampas",status-playable,playable,2020-11-30 14:44:15.000 -0100B76011DAA000,"Taxi Chaos",slow;status-playable;online-broken;UE4,playable,2022-10-25 19:13:00.000 -,"Tcheco in the Castle of Lucio",status-playable,playable,2020-06-27 13:35:43.000 -010092B0091D0000,"Team Sonic Racing",status-playable;online-broken;ldn-works,playable,2024-02-05 15:05:27.000 -0100FE701475A000,"Teenage Mutant Ninja Turtles: Shredder's Revenge",deadlock;status-boots;crash,boots,2024-09-28 09:31:39.000 -01005CF01E784000,"Teenage Mutant Ninja Turtles: Splintered Fate",status-playable,playable,2024-08-03 13:50:42.000 -0100FDB0154E4000,"Teenage Mutant Ninja Turtles: The Cowabunga Collection",status-playable,playable,2024-01-22 19:39:04.000 -,"Telling Lies",status-playable,playable,2020-10-23 21:14:51.000 -0100C8B012DEA000,"Temtem",status-menus;online-broken,menus,2022-12-17 17:36:11.000 -,"TENGAI for Nintendo Switch",32-bit;status-playable,playable,2020-11-25 19:52:26.000 -,"Tennis",status-playable,playable,2020-06-01 20:50:36.000 -01002970080AA000,"Tennis in the Face",status-playable,playable,2022-08-22 14:10:54.000 -0100092006814000,"Tennis World Tour",status-playable;online-broken,playable,2022-08-22 14:27:10.000 -0100950012F66000,"Tennis World Tour 2",status-playable;online-broken,playable,2022-10-14 10:43:16.000 -0100E46006708000,"Terraria",status-playable;online-broken,playable,2022-09-12 16:14:57.000 -010070C00FB56000,"TERROR SQUID",status-playable;online-broken,playable,2023-10-30 22:29:29.000 -010043700EB68000,"TERRORHYTHM (TRRT)",status-playable,playable,2021-02-27 13:18:14.000 -0100FBC007EAE000,"Tesla vs Lovecraft",status-playable,playable,2023-11-21 06:19:36.000 -01005C8005F34000,"Teslagrad",status-playable,playable,2021-02-23 14:41:02.000 -01006F701507A000,"Tested on Humans: Escape Room",status-playable,playable,2022-11-12 14:42:52.000 -,"Testra's Escape",status-playable,playable,2020-06-03 18:21:14.000 -,"TETRA for Nintendo Switch",status-playable,playable,2020-06-26 20:49:55.000 -010040600C5CE000,"TETRIS 99",gpu;status-ingame;online-broken;ldn-untested,ingame,2024-05-02 16:36:41.000 -,"Tetsumo Party",status-playable,playable,2020-06-09 22:39:55.000 -01008ED0087A4000,"The Adventure Pals",status-playable,playable,2022-08-22 14:48:52.000 -,"The Adventures of 00 Dilly",status-playable,playable,2020-12-30 19:32:29.000 -,"The Adventures of Elena Temple",status-playable,playable,2020-06-03 23:15:35.000 -010045A00E038000,"The Alliance Alive HD Remastered",nvdec;status-playable,playable,2021-03-07 15:43:45.000 -,"The Almost Gone",status-playable,playable,2020-07-05 12:33:07.000 -0100CD500DDAE000,"The Bard's Tale ARPG: Remastered and Resnarkled",gpu;status-ingame;nvdec;online-working,ingame,2024-07-18 12:52:01.000 -01001E50141BC000,"The Battle Cats Unite!",deadlock;status-ingame,ingame,2021-12-14 21:38:34.000 -010089600E66A000,"The Big Journey",status-playable,playable,2022-09-16 14:03:08.000 -010021C000B6A000,"The Binding of Isaac: Afterbirth+",status-playable,playable,2021-04-26 14:11:56.000 -,"The Bluecoats: North & South",nvdec;status-playable,playable,2020-12-10 21:22:29.000 -010062500BFC0000,"The Book of Unwritten Tales 2",status-playable,playable,2021-06-09 14:42:53.000 -,"The Bridge",status-playable,playable,2020-06-03 13:53:26.000 -,"The Bug Butcher",status-playable,playable,2020-06-03 12:02:04.000 -01001B40086E2000,"The Bunker",status-playable;nvdec,playable,2022-09-16 14:24:05.000 -,"The Caligula Effect: Overdose",UE4;gpu;status-ingame,ingame,2021-01-04 11:07:50.000 -010066800E9F8000,"The Childs Sight",status-playable,playable,2021-06-11 19:04:56.000 -,"The Coma 2: Vicious Sisters",gpu;status-ingame,ingame,2020-06-20 12:51:51.000 -,"The Coma: Recut",status-playable,playable,2020-06-03 15:11:23.000 -01004170113D4000,"The Complex",status-playable;nvdec,playable,2022-09-28 14:35:41.000 -01000F20102AC000,"The Copper Canyon Dixie Dash",status-playable;UE4,playable,2022-09-29 11:42:29.000 -01000850037C0000,"The Count Lucanor",status-playable;nvdec,playable,2022-08-22 15:26:37.000 -0100EBA01548E000,"The Cruel King and the Great Hero",gpu;services;status-ingame,ingame,2022-12-02 07:02:08.000 -,"The Dark Crystal",status-playable,playable,2020-08-11 13:43:41.000 -,"The Darkside Detective",status-playable,playable,2020-06-03 22:16:18.000 -01000A10041EA000,"The Elder Scrolls V: Skyrim",gpu;status-ingame;crash,ingame,2024-07-14 03:21:31.000 -,"The End is Nigh",status-playable,playable,2020-06-01 11:26:45.000 -,"The Escapists 2",nvdec;status-playable,playable,2020-09-24 12:31:31.000 -01001B700BA7C000,"The Escapists: Complete Edition",status-playable,playable,2021-02-24 17:50:31.000 -0100C2E0129A6000,"The Executioner",nvdec;status-playable,playable,2021-01-23 00:31:28.000 -01006050114D4000,"The Experiment: Escape Room",gpu;status-ingame,ingame,2022-09-30 13:20:35.000 -0100B5900DFB2000,"The Eyes of Ara",status-playable,playable,2022-09-16 14:44:06.000 -,"The Fall",gpu;status-ingame,ingame,2020-05-31 23:31:16.000 -,"The Fall Part 2: Unbound",status-playable,playable,2021-11-06 02:18:08.000 -0100CDC00789E000,"The Final Station",status-playable;nvdec,playable,2022-08-22 15:54:39.000 -010098800A1E4000,"The First Tree",status-playable,playable,2021-02-24 15:51:05.000 -0100C38004DCC000,"The Flame in the Flood: Complete Edition",gpu;status-ingame;nvdec;UE4,ingame,2022-08-22 16:23:49.000 -,"The Forbidden Arts - 01007700D4AC000",status-playable,playable,2021-01-26 16:26:24.000 -010030700CBBC000,"The friends of Ringo Ishikawa",status-playable,playable,2022-08-22 16:33:17.000 -01006350148DA000,"The Gardener and the Wild Vines",gpu;status-ingame,ingame,2024-04-29 16:32:10.000 -0100B13007A6A000,"The Gardens Between",status-playable,playable,2021-01-29 16:16:53.000 -010036E00FB20000,"The Great Ace Attorney Chronicles",status-playable,playable,2023-06-22 21:26:29.000 -,"The Great Perhaps",status-playable,playable,2020-09-02 15:57:04.000 -01003b300e4aa000,"THE GRISAIA TRILOGY",status-playable,playable,2021-01-31 15:53:59.000 -,"The Hong Kong Massacre",crash;status-ingame,ingame,2021-01-21 12:06:56.000 -,"The House of Da Vinci",status-playable,playable,2021-01-05 14:17:19.000 -,"The House of Da Vinci 2",status-playable,playable,2020-10-23 20:47:17.000 -01008940086E0000,"The Infectious Madness of Doctor Dekker",status-playable;nvdec,playable,2022-08-22 16:45:01.000 -,"The Inner World",nvdec;status-playable,playable,2020-06-03 21:22:29.000 -,"The Inner World - The Last Wind Monk",nvdec;status-playable,playable,2020-11-16 13:09:40.000 -0100AE5003EE6000,"The Jackbox Party Pack",status-playable;online-working,playable,2023-05-28 09:28:40.000 -010015D003EE4000,"The Jackbox Party Pack 2",status-playable;online-working,playable,2022-08-22 18:23:40.000 -0100CC80013D6000,"The Jackbox Party Pack 3",slow;status-playable;online-working,playable,2022-08-22 18:41:06.000 -0100E1F003EE8000,"The Jackbox Party Pack 4",status-playable;online-working,playable,2022-08-22 18:56:34.000 -010052C00B184000,"The Journey Down: Chapter One",nvdec;status-playable,playable,2021-02-24 13:32:41.000 -01006BC00B188000,"The Journey Down: Chapter Three",nvdec;status-playable,playable,2021-02-24 13:45:27.000 -,"The Journey Down: Chapter Two",nvdec;status-playable,playable,2021-02-24 13:32:13.000 -010020500BD98000,"The King's Bird",status-playable,playable,2022-08-22 19:07:46.000 -010031B00DB34000,"The Knight & the Dragon",gpu;status-ingame,ingame,2023-08-14 10:31:43.000 -,"The Language of Love",Needs Update;crash;status-nothing,nothing,2020-12-03 17:54:00.000 -010079C017F5E000,"The Lara Croft Collection",services-horizon;deadlock;status-nothing,nothing,2024-07-12 22:45:51.000 -0100449011506000,"The Last Campfire",status-playable,playable,2022-10-20 16:44:19.000 -0100AAD011592000,"The Last Dead End",gpu;status-ingame;UE4,ingame,2022-10-20 16:59:44.000 -0100AC800D022000,"THE LAST REMNANT Remastered",status-playable;nvdec;UE4,playable,2023-02-09 17:24:44.000 -,"The Legend of Dark Witch",status-playable,playable,2020-07-12 15:18:33.000 -01001920156C2000,"The Legend of Heroes: Trails from Zero",gpu;status-ingame;mac-bug,ingame,2024-09-14 21:41:41.000 -,"The Legend of Heroes: Trails of Cold Steel III",status-playable,playable,2020-12-16 10:59:18.000 -01009B101044C000,"The Legend of Heroes: Trails of Cold Steel III Demo",demo;nvdec;status-playable,playable,2021-04-23 01:07:32.000 -0100D3C010DE8000,"The Legend of Heroes: Trails of Cold Steel IV",nvdec;status-playable,playable,2021-04-23 14:01:05.000 -01005E5013862000,"THE LEGEND OF HEROES: ZERO NO KISEKI KAI [英雄傳說 零之軌跡:改]",status-nothing;crash,nothing,2021-09-30 14:41:07.000 -01008CF01BAAC000,"The Legend of Zelda Echoes of Wisdom",status-playable;nvdec;ASTC;intel-vendor-bug,playable,2024-10-01 14:11:01.000 -01007EF00011E000,"The Legend of Zelda: Breath of the Wild",gpu;status-ingame;amd-vendor-bug;mac-bug,ingame,2024-09-23 19:35:46.000 -0100509005AF2000,"The Legend of Zelda: Breath of the Wild Demo",status-ingame;demo,ingame,2022-12-24 05:02:58.000 -01006BB00C6F0000,"The Legend of Zelda: Link's Awakening",gpu;status-ingame;nvdec;mac-bug,ingame,2023-08-09 17:37:40.000 -01002DA013484000,"The Legend of Zelda: Skyward Sword HD",gpu;status-ingame,ingame,2024-06-14 16:48:29.000 -0100F2C0115B6000,"The Legend of Zelda: Tears of the Kingdom",gpu;status-ingame;amd-vendor-bug;intel-vendor-bug;mac-bug,ingame,2024-08-24 12:38:30.000 -0100A4400BE74000,"The LEGO Movie 2 - Videogame",status-playable,playable,2023-03-01 11:23:37.000 -01007FC00206E000,"The LEGO NINJAGO Movie Video Game",status-nothing;crash,nothing,2022-08-22 19:12:53.000 -010064B00B95C000,"The Liar Princess and the Blind Prince",audio;slow;status-playable,playable,2020-06-08 21:23:28.000 -0100735004898000,"The Lion's Song",status-playable,playable,2021-06-09 15:07:16.000 -0100A5000D590000,"The Little Acre",nvdec;status-playable,playable,2021-03-02 20:22:27.000 -01007A700A87C000,"The Long Dark",status-playable,playable,2021-02-21 14:19:52.000 -010052B003A38000,"The Long Reach",nvdec;status-playable,playable,2021-02-24 14:09:48.000 -,"The Long Return",slow;status-playable,playable,2020-12-10 21:05:10.000 -0100CE1004E72000,"The Longest Five Minutes",gpu;status-boots,boots,2023-02-19 18:33:11.000 -0100F3D0122C2000,"The Longing",gpu;status-ingame,ingame,2022-11-12 15:00:58.000 -010085A00C5E8000,"The Lord of the Rings: Adventure Card Game",status-menus;online-broken,menus,2022-09-16 15:19:32.000 -01008A000A404000,"The Lost Child",nvdec;status-playable,playable,2021-02-23 15:44:20.000 -0100BAB00A116000,"The Low Road",status-playable,playable,2021-02-26 13:23:22.000 -,"The Mahjong",Needs Update;crash;services;status-nothing,nothing,2021-04-01 22:06:22.000 -,"The Messenger",status-playable,playable,2020-03-22 13:51:37.000 -0100DEC00B2BC000,"The Midnight Sanctuary",status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-10-03 17:17:32.000 -0100F1B00B456000,"The MISSING: J.J. Macfield and the Island of Memories",status-playable,playable,2022-08-22 19:36:18.000 -010033300AC1A000,"The Mooseman",status-playable,playable,2021-02-24 12:58:57.000 -01005E9016BDE000,"The movie The Quintessential Bride -Five Memories Spent with You-",status-playable,playable,2023-12-14 14:43:43.000 -0100496004194000,"The Mummy Demastered",status-playable,playable,2021-02-23 13:11:27.000 -,"The Mystery of the Hudson Case",status-playable,playable,2020-06-01 11:03:36.000 -01000CF0084BC000,"The Next Penelope",status-playable,playable,2021-01-29 16:26:11.000 -01001FB00E386000,"THE NINJA SAVIORS Return of the Warriors",online;status-playable,playable,2021-03-25 23:48:07.000 -0100B080184BC000,"The Oregon Trail",gpu;status-ingame,ingame,2022-11-25 16:11:49.000 -0100B0101265C000,"The Otterman Empire",UE4;gpu;status-ingame,ingame,2021-06-17 12:27:15.000 -01000BC01801A000,"The Outbound Ghost",status-nothing,nothing,2024-03-02 17:10:58.000 -0100626011656000,"The Outer Worlds",gpu;status-ingame;nvdec;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-10-03 17:55:32.000 -,"The Park",UE4;crash;gpu;status-ingame,ingame,2020-12-18 12:50:07.000 -010050101127C000,"The Persistence",nvdec;status-playable,playable,2021-06-06 19:15:40.000 -0100CD300880E000,"The Pinball Arcade",status-playable;online-broken,playable,2022-08-22 19:49:46.000 -01006BD018B54000,"The Plucky Squire",status-ingame;crash,ingame,2024-09-27 22:32:33.000 -0100E6A00B960000,"The Princess Guide",status-playable,playable,2021-02-24 14:23:34.000 -010058A00BF1C000,"The Raven Remastered",status-playable;nvdec,playable,2022-08-22 20:02:47.000 -,"The Red Strings Club",status-playable,playable,2020-06-01 10:51:18.000 -010079400BEE0000,"The Room",status-playable,playable,2021-04-14 18:57:05.000 -010033100EE12000,"The Ryuo's Work is Never Done!",status-playable,playable,2022-03-29 00:35:37.000 -01002BA00C7CE000,"The Savior's Gang",gpu;status-ingame;nvdec;UE4,ingame,2022-09-21 12:37:48.000 -0100F3200E7CA000,"The Settlers: New Allies",deadlock;status-nothing,nothing,2023-10-25 00:18:05.000 -,"The Sexy Brutale",status-playable,playable,2021-01-06 17:48:28.000 -,"The Shapeshifting Detective",nvdec;status-playable,playable,2021-01-10 13:10:49.000 -010028D00BA1A000,"The Sinking City",status-playable;nvdec;UE4,playable,2022-09-12 16:41:55.000 -010041C00A68C000,"The Spectrum Retreat",status-playable,playable,2022-10-03 18:52:40.000 -010029300E5C4000,"The Stanley Parable: Ultra Deluxe",gpu;status-ingame,ingame,2024-07-12 23:18:26.000 -010007F00AF56000,"The Station",status-playable,playable,2022-09-28 18:15:27.000 -0100858010DC4000,"the StoryTale",status-playable,playable,2022-09-03 13:00:25.000 -0100AA400A238000,"The Stretchers",status-playable;nvdec;UE4,playable,2022-09-16 15:40:58.000 -,"The Survivalists",status-playable,playable,2020-10-27 15:51:13.000 -010040D00B7CE000,"The Swindle",status-playable;nvdec,playable,2022-08-22 20:53:52.000 -,"The Swords of Ditto",slow;status-ingame,ingame,2020-12-06 00:13:12.000 -01009B300D76A000,"The Tiny Bang Story",status-playable,playable,2021-03-05 15:39:05.000 -0100C3300D8C4000,"The Touryst",status-ingame;crash,ingame,2023-08-22 01:32:38.000 -010047300EBA6000,"The Tower of Beatrice",status-playable,playable,2022-09-12 16:51:42.000 -010058000A576000,"The Town of Light",gpu;status-playable,playable,2022-09-21 12:51:34.000 -0100B0E0086F6000,"The Trail: Frontier Challenge",slow;status-playable,playable,2022-08-23 15:10:51.000 -0100EA100F516000,"The Turing Test",status-playable;nvdec,playable,2022-09-21 13:24:07.000 -010064E00ECBC000,"The Unicorn Princess",status-playable,playable,2022-09-16 16:20:56.000 -0100BCF00E970000,"The Vanishing of Ethan Carter",UE4;status-playable,playable,2021-06-09 17:14:47.000 -,"The VideoKid",nvdec;status-playable,playable,2021-01-06 09:28:24.000 -,"The Voice",services;status-menus,menus,2020-07-28 20:48:49.000 -010029200B6AA000,"The Walking Dead",status-playable,playable,2021-06-04 13:10:56.000 -010056E00B4F4000,"The Walking Dead: A New Frontier",status-playable,playable,2022-09-21 13:40:48.000 -,"The Walking Dead: Season Two",status-playable,playable,2020-08-09 12:57:06.000 -010060F00AA70000,"The Walking Dead: The Final Season",status-playable;online-broken,playable,2022-08-23 17:22:32.000 -,"The Wanderer: Frankenstein's Creature",status-playable,playable,2020-07-11 12:49:51.000 -01008B200FC6C000,"The Wardrobe: Even Better Edition",status-playable,playable,2022-09-16 19:14:55.000 -01003D100E9C6000,"The Witcher 3: Wild Hunt",status-playable;nvdec;vulkan-backend-bug;amd-vendor-bug,playable,2024-02-22 12:21:51.000 -0100B1300FF08000,"The Wonderful 101: Remastered",slow;status-playable;nvdec,playable,2022-09-30 13:49:28.000 -0100C1500B82E000,"The World Ends With You -Final Remix-",status-playable;ldn-untested,playable,2022-07-09 01:11:21.000 -0100E6200D56E000,"The World Next Door",status-playable,playable,2022-09-21 14:15:23.000 -,"Thea: The Awakening",status-playable,playable,2021-01-18 15:08:47.000 -010024201834A000,"THEATRHYTHM FINAL BAR LINE",status-playable,playable,2023-02-19 19:58:57.000 -010081B01777C000,"THEATRHYTHM FINAL BAR LINE",status-ingame;Incomplete,ingame,2024-08-05 14:24:55.000 -01001C2010D08000,"They Bleed Pixels",gpu;status-ingame,ingame,2024-08-09 05:52:18.000 -,"They Came From the Sky",status-playable,playable,2020-06-12 16:38:19.000 -0100CE700F62A000,"Thief of Thieves",status-nothing;crash;loader-allocator,nothing,2021-11-03 07:16:30.000 -0100CE400E34E000,"Thief Simulator",status-playable,playable,2023-04-22 04:39:11.000 -01009BD003B36000,"Thimbleweed Park",status-playable,playable,2022-08-24 11:15:31.000 -0100F2300A5DA000,"Think of the Children",deadlock;status-menus,menus,2021-11-23 09:04:45.000 -0100066004D68000,"This Is the Police",status-playable,playable,2022-08-24 11:37:05.000 -01004C100A04C000,"This Is the Police 2",status-playable,playable,2022-08-24 11:49:17.000 -,"This Strange Realm of Mine",status-playable,playable,2020-08-28 12:07:24.000 -0100A8700BC2A000,"This War of Mine: Complete Edition",gpu;status-ingame;32-bit;nvdec,ingame,2022-08-24 12:00:44.000 -,"THOTH",status-playable,playable,2020-08-05 18:35:28.000 -0100E910103B4000,"Thronebreaker: The Witcher Tales",nvdec;status-playable,playable,2021-06-03 16:40:15.000 -01006F6002840000,"Thumper",gpu;status-ingame,ingame,2024-08-12 02:41:07.000 -01000AC011588000,"Thy Sword",status-ingame;crash,ingame,2022-09-30 16:43:14.000 -,"Tick Tock: A Tale for Two",status-menus,menus,2020-07-14 14:49:38.000 -0100B6D00C2DE000,"Tied Together",nvdec;status-playable,playable,2021-04-10 14:03:46.000 -,"Timber Tennis Versus",online;status-playable,playable,2020-10-03 17:07:15.000 -01004C500B698000,"Time Carnage",status-playable,playable,2021-06-16 17:57:28.000 -0100F770045CA000,"Time Recoil",status-playable,playable,2022-08-24 12:44:03.000 -0100DD300CF3A000,"Timespinner",gpu;status-ingame,ingame,2022-08-09 09:39:11.000 -0100393013A10000,"Timothy and the Mysterious Forest",gpu;slow;status-ingame,ingame,2021-06-02 00:42:11.000 -,"Tin & Kuna",status-playable,playable,2020-11-17 12:16:12.000 -,"Tiny Gladiators",status-playable,playable,2020-12-14 00:09:43.000 -010061A00AE64000,"Tiny Hands Adventure",status-playable,playable,2022-08-24 16:07:48.000 -010074800741A000,"TINY METAL",UE4;gpu;nvdec;status-ingame,ingame,2021-03-05 17:11:57.000 -01005D0011A40000,"Tiny Racer",status-playable,playable,2022-10-07 11:13:03.000 -010002401AE94000,"Tiny Thor",gpu;status-ingame,ingame,2024-07-26 08:37:35.000 -0100A73016576000,"Tinykin",gpu;status-ingame,ingame,2023-06-18 12:12:24.000 -0100FE801185E000,"Titan Glory",status-boots,boots,2022-10-07 11:36:40.000 -0100605008268000,"Titan Quest",status-playable;nvdec;online-broken,playable,2022-08-19 21:54:15.000 -,"Titans Pinball",slow;status-playable,playable,2020-06-09 16:53:52.000 -010019500DB1E000,"Tlicolity Eyes - twinkle showtime -",gpu;status-boots,boots,2021-05-29 19:43:44.000 -,"To the Moon",status-playable,playable,2021-03-20 15:33:38.000 -,"Toast Time: Smash Up!",crash;services;status-menus,menus,2020-04-03 12:26:59.000 -,"Toby: The Secret Mine",nvdec;status-playable,playable,2021-01-06 09:22:33.000 -,"ToeJam & Earl: Back in the Groove",status-playable,playable,2021-01-06 22:56:58.000 -0100B5E011920000,"TOHU",slow;status-playable,playable,2021-02-08 15:40:44.000 -,"Toki",nvdec;status-playable,playable,2021-01-06 19:59:23.000 -01003E500F962000,"TOKYO DARK - REMEMBRANCE -",nvdec;status-playable,playable,2021-06-10 20:09:49.000 -0100A9400C9C2000,"Tokyo Mirage Sessions #FE Encore",32-bit;status-playable;nvdec,playable,2022-07-07 09:41:07.000 -0100E2E00CB14000,"Tokyo School Life",status-playable,playable,2022-09-16 20:25:54.000 -010024601BB16000,"Tomb Raider I-III Remastered",gpu;status-ingame;opengl,ingame,2024-09-27 12:32:04.000 -0100D7F01E49C000,"Tomba! Special Edition",services-horizon;status-nothing,nothing,2024-09-15 21:59:54.000 -0100D400100F8000,"Tonight we Riot",status-playable,playable,2021-02-26 15:55:09.000 -0100CC00102B4000,"TONY HAWK'S™ PRO SKATER™ 1 + 2",gpu;status-ingame;Needs Update,ingame,2024-09-24 08:18:14.000 -,"Tools Up!",crash;status-ingame,ingame,2020-07-21 12:58:17.000 -01009EA00E2B8000,"Toon War",status-playable,playable,2021-06-11 16:41:53.000 -,"Torchlight 2",status-playable,playable,2020-07-27 14:18:37.000 -010075400DDB8000,"Torchlight III",status-playable;nvdec;online-broken;UE4,playable,2022-10-14 22:20:17.000 -01007AF011732000,"TORICKY-S",deadlock;status-menus,menus,2021-11-25 08:53:36.000 -,"Torn Tales - Rebound Edition",status-playable,playable,2020-11-01 14:11:59.000 -0100A64010D48000,"Total Arcade Racing",status-playable,playable,2022-11-12 15:12:48.000 -0100512010728000,"Totally Reliable Delivery Service",status-playable;online-broken,playable,2024-09-27 19:32:22.000 -01004E900B082000,"Touhou Genso Wanderer RELOADED",gpu;status-ingame;nvdec,ingame,2022-08-25 11:57:36.000 -,"Touhou Kobuto V: Burst Battle",status-playable,playable,2021-01-11 15:28:58.000 -,"Touhou Spell Bubble",status-playable,playable,2020-10-18 11:43:43.000 -,"Tower of Babel",status-playable,playable,2021-01-06 17:05:15.000 -,"Tower of Time",gpu;nvdec;status-ingame,ingame,2020-07-03 11:11:12.000 -,"TowerFall",status-playable,playable,2020-05-16 18:58:07.000 -,"Towertale",status-playable,playable,2020-10-15 13:56:58.000 -010049E00BA34000,"Townsmen - A Kingdom Rebuilt",status-playable;nvdec,playable,2022-10-14 22:48:59.000 -01009FF00A160000,"Toy Stunt Bike: Tiptop's Trials",UE4;status-playable,playable,2021-04-10 13:56:34.000 -0100192010F5A000,"Tracks - Toybox Edition",UE4;crash;status-nothing,nothing,2021-02-08 15:19:18.000 -0100BCA00843A000,"Trailblazers",status-playable,playable,2021-03-02 20:40:49.000 -010009F004E66000,"Transcripted",status-playable,playable,2022-08-25 12:13:11.000 -01005E500E528000,"TRANSFORMERS: BATTLEGROUNDS",online;status-playable,playable,2021-06-17 18:08:19.000 -,"Transistor",status-playable,playable,2020-10-22 11:28:02.000 -0100A8D010BFA000,"Travel Mosaics 2: Roman Holiday",status-playable,playable,2021-05-26 12:33:16.000 -0100102010BFC000,"Travel Mosaics 3: Tokyo Animated",status-playable,playable,2021-05-26 12:06:27.000 -010096D010BFE000,"Travel Mosaics 4: Adventures in Rio",status-playable,playable,2021-05-26 11:54:58.000 -01004C4010C00000,"Travel Mosaics 5: Waltzing Vienna",status-playable,playable,2021-05-26 11:49:35.000 -0100D520119D6000,"Travel Mosaics 6: Christmas Around the World",status-playable,playable,2021-05-26 00:52:47.000 -,"Travel Mosaics 7: Fantastic Berlin -",status-playable,playable,2021-05-22 18:37:34.000 -01007DB00A226000,"Travel Mosaics: A Paris Tour",status-playable,playable,2021-05-26 12:42:26.000 -010011600C946000,"Travis Strikes Again: No More Heroes",status-playable;nvdec;UE4,playable,2022-08-25 12:36:38.000 -,"Treadnauts",status-playable,playable,2021-01-10 14:57:41.000 -0100D7800E9E0000,"Trials of Mana",status-playable;UE4,playable,2022-09-30 21:50:37.000 -0100E1D00FBDE000,"Trials of Mana Demo",status-playable;nvdec;UE4;demo;vulkan-backend-bug,playable,2022-09-26 18:00:02.000 -01003E800A102000,"Trials Rising",status-playable,playable,2024-02-11 01:36:39.000 -0100CC80140F8000,"TRIANGLE STRATEGY",gpu;status-ingame;Needs Update;UE4;vulkan-backend-bug,ingame,2024-09-25 20:48:37.000 -0100D9000A930000,"Trine",ldn-untested;nvdec;status-playable,playable,2021-06-03 11:28:15.000 -010064E00A932000,"Trine 2",nvdec;status-playable,playable,2021-06-03 11:45:20.000 -0100DEC00A934000,"Trine 3: The Artifacts of Power",ldn-untested;online;status-playable,playable,2021-06-03 12:01:24.000 -010055E00CA68000,"Trine 4: The Nightmare Prince",gpu;status-nothing,nothing,2025-01-07 05:47:46.000 -01002D7010A54000,"Trinity Trigger",status-ingame;crash,ingame,2023-03-03 03:09:09.000 -0100868013FFC000,"Trivial Pursuit Live! 2",status-boots,boots,2022-12-19 00:04:33.000 -0100F78002040000,"Troll and I",gpu;nvdec;status-ingame,ingame,2021-06-04 16:58:50.000 -,"Trollhunters: Defenders of Arcadia",gpu;nvdec;status-ingame,ingame,2020-11-30 13:27:09.000 -0100FBE0113CC000,"Tropico 6",status-playable;nvdec;UE4,playable,2022-10-14 23:21:03.000 -0100D06018DCA000,"Trouble Witches Final! Episode 01: Daughters of Amalgam",status-playable,playable,2024-04-08 15:08:11.000 -,"Troubleshooter",UE4;crash;status-nothing,nothing,2020-10-04 13:46:50.000 -,"Trover Saves the Universe",UE4;crash;status-nothing,nothing,2020-10-03 10:25:27.000 -0100E6300D448000,"Truberbrook",status-playable,playable,2021-06-04 17:08:00.000 -0100F2100AA5C000,"Truck & Logistics Simulator",status-playable,playable,2021-06-11 13:29:08.000 -0100CB50107BA000,"Truck Driver",status-playable;online-broken,playable,2022-10-20 17:42:33.000 -,"True Fear: Forsaken Souls - Part 1",nvdec;status-playable,playable,2020-12-15 21:39:52.000 -,"TT Isle of Man",nvdec;status-playable,playable,2020-06-22 12:25:13.000 -010000400F582000,"TT Isle of Man 2",gpu;status-ingame;nvdec;online-broken,ingame,2022-09-30 22:13:05.000 -,"TTV2",status-playable,playable,2020-11-27 13:21:36.000 -,"Tumblestone",status-playable,playable,2021-01-07 17:49:20.000 -010085500D5F6000,"Turok",gpu;status-ingame,ingame,2021-06-04 13:16:24.000 -0100CDC00D8D6000,"Turok 2: Seeds of Evil",gpu;status-ingame;vulkan,ingame,2022-09-12 17:50:05.000 -,"Turrican Flashback - 01004B0130C8000",status-playable;audout,playable,2021-08-30 10:07:56.000 -,"TurtlePop: Journey to Freedom",status-playable,playable,2020-06-12 17:45:39.000 -0100047009742000,"Twin Robots: Ultimate Edition",status-playable;nvdec,playable,2022-08-25 14:24:03.000 -010031200E044000,"Two Point Hospital",status-ingame;crash;nvdec,ingame,2022-09-22 11:22:23.000 -,"TY the Tasmanian Tiger",32-bit;crash;nvdec;status-menus,menus,2020-12-17 21:15:00.000 -010073A00C4B2000,"Tyd wag vir Niemand",status-playable,playable,2021-03-02 13:39:53.000 -,"Type:Rider",status-playable,playable,2021-01-06 13:12:55.000 -,"UBERMOSH:SANTICIDE",status-playable,playable,2020-11-27 15:05:01.000 -,"Ubongo - Deluxe Edition",status-playable,playable,2021-02-04 21:15:01.000 -010079000B56C000,"UglyDolls: An Imperfect Adventure",status-playable;nvdec;UE4,playable,2022-08-25 14:42:16.000 -010048901295C000,"Ultimate Fishing Simulator",status-playable,playable,2021-06-16 18:38:23.000 -,"Ultimate Racing 2D",status-playable,playable,2020-08-05 17:27:09.000 -010045200A1C2000,"Ultimate Runner",status-playable,playable,2022-08-29 12:52:40.000 -01006B601117E000,"Ultimate Ski Jumping 2020",online;status-playable,playable,2021-03-02 20:54:11.000 -01002D4012222000,"Ultra Hat Dimension",services;audio;status-menus,menus,2021-11-18 09:05:20.000 -,"Ultra Hyperball",status-playable,playable,2021-01-06 10:09:55.000 -01007330027EE000,"Ultra Street Fighter II: The Final Challengers",status-playable;ldn-untested,playable,2021-11-25 07:54:58.000 -01006A300BA2C000,"Umineko no Naku Koro ni Saku - うみねこのなく頃に咲 ~猫箱と夢想の交響曲~",status-playable;audout,playable,2023-05-04 17:25:23.000 -0100592005164000,"Unbox: Newbie's Adventure",status-playable;UE4,playable,2022-08-29 13:12:56.000 -01002D900C5E4000,"Uncanny Valley",nvdec;status-playable,playable,2021-06-04 13:28:45.000 -010076F011F54000,"Undead and Beyond",status-playable;nvdec,playable,2022-10-04 09:11:18.000 -01008F3013E4E000,"Under Leaves",status-playable,playable,2021-05-22 18:13:58.000 -010080B00AD66000,"Undertale",status-playable,playable,2022-08-31 17:31:46.000 -01008F80049C6000,"Unepic",status-playable,playable,2024-01-15 17:03:00.000 -,"UnExplored - Unlocked Edition",status-playable,playable,2021-01-06 10:02:16.000 -,"Unhatched",status-playable,playable,2020-12-11 12:11:09.000 -010069401ADB8000,"Unicorn Overlord",status-playable,playable,2024-09-27 14:04:32.000 -,"Unit 4",status-playable,playable,2020-12-16 18:54:13.000 -,"Unknown Fate",slow;status-ingame,ingame,2020-10-15 12:27:42.000 -,"Unlock the King",status-playable,playable,2020-09-01 13:58:27.000 -0100A3E011CB0000,"Unlock the King 2",status-playable,playable,2021-06-15 20:43:55.000 -01005AA00372A000,"UNO",status-playable;nvdec;ldn-untested,playable,2022-07-28 14:49:47.000 -0100E5D00CC0C000,"Unravel TWO",status-playable;nvdec,playable,2024-05-23 15:45:05.000 -,"Unruly Heroes",status-playable,playable,2021-01-07 18:09:31.000 -0100B410138C0000,"Unspottable",status-playable,playable,2022-10-25 19:28:49.000 -,"Untitled Goose Game",status-playable,playable,2020-09-26 13:18:06.000 -0100E49013190000,"Unto The End",gpu;status-ingame,ingame,2022-10-21 11:13:29.000 -,"Urban Flow",services;status-playable,playable,2020-07-05 12:51:47.000 -010054F014016000,"Urban Street Fighting",status-playable,playable,2021-02-20 19:16:36.000 -01001B10068EC000,"Urban Trial Playground",UE4;nvdec;online;status-playable,playable,2021-03-25 20:56:51.000 -0100A2500EB92000,"Urban Trial Tricky",status-playable;nvdec;UE4,playable,2022-12-06 13:07:56.000 -01007C0003AEC000,"Use Your Words",status-menus;nvdec;online-broken,menus,2022-08-29 17:22:10.000 -0100D4300EBF8000,"Uta no Prince-sama Amazing Aria & Sweet Serenade LOVE",status-nothing;crash;Needs More Attention;Needs Update,nothing,2022-02-09 08:57:44.000 -010024200E00A000,"Uta no☆Prince-sama♪ Repeat Love",status-playable;nvdec,playable,2022-12-09 09:21:51.000 -,"Utopia 9 - A Volatile Vacation",nvdec;status-playable,playable,2020-12-16 17:06:42.000 -010064400B138000,"V-Rally 4",gpu;nvdec;status-ingame,ingame,2021-06-07 19:37:31.000 -0100A6700D66E000,"VA-11 HALL-A",status-playable,playable,2021-02-26 15:05:34.000 -,"Vaccine",nvdec;status-playable,playable,2021-01-06 01:02:07.000 -010089700F30C000,"Valfaris",status-playable,playable,2022-09-16 21:37:24.000 -0100CAF00B744000,"Valkyria Chronicles",status-ingame;32-bit;crash;nvdec,ingame,2022-11-23 20:03:32.000 -01005C600AC68000,"Valkyria Chronicles 4",audout;nvdec;status-playable,playable,2021-06-03 18:12:25.000 -0100FBD00B91E000,"Valkyria Chronicles 4 Demo",slow;status-ingame;demo,ingame,2022-08-29 20:39:07.000 -0100E0E00B108000,"Valley",status-playable;nvdec,playable,2022-09-28 19:27:58.000 -010089A0197E4000,"Vampire Survivors",status-ingame,ingame,2024-06-17 09:57:38.000 -01000BD00CE64000,"Vampyr",status-playable;nvdec;UE4,playable,2022-09-16 22:15:51.000 -01007C500D650000,"Vandals",status-playable,playable,2021-01-27 21:45:46.000 -010030F00CA1E000,"Vaporum",nvdec;status-playable,playable,2021-05-28 14:25:33.000 -010045C0109F2000,"VARIABLE BARRICADE NS",status-playable;nvdec,playable,2022-02-26 15:50:13.000 -0100FE200AF48000,"VASARA Collection",nvdec;status-playable,playable,2021-02-28 15:26:10.000 -,"Vasilis",status-playable,playable,2020-09-01 15:05:35.000 -01009CD003A0A000,"Vegas Party",status-playable,playable,2021-04-14 19:21:41.000 -010098400E39E000,"Vektor Wars",status-playable;online-broken;vulkan-backend-bug,playable,2022-10-04 09:23:46.000 -01003A8018E60000,"Vengeful Guardian: Moonrider",deadlock;status-boots,boots,2024-03-17 23:35:37.000 -010095B00DBC8000,"Venture Kid",crash;gpu;status-ingame,ingame,2021-04-18 16:33:17.000 -,"Vera Blanc: Full Moon",audio;status-playable,playable,2020-12-17 12:09:30.000 -0100379013A62000,"Very Very Valet",status-playable;nvdec,playable,2022-11-12 15:25:51.000 -01006C8014DDA000,"Very Very Valet Demo - 01006C8014DDA000",status-boots;crash;Needs Update;demo,boots,2022-11-12 15:26:13.000 -010057B00712C000,"Vesta",status-playable;nvdec,playable,2022-08-29 21:03:39.000 -0100E81007A06000,"Victor Vran Overkill Edition",gpu;deadlock;status-ingame;nvdec;opengl,ingame,2022-08-30 11:46:56.000 -01005880063AA000,"Violett",nvdec;status-playable,playable,2021-01-28 13:09:36.000 -010037900CB1C000,"Viviette",status-playable,playable,2021-06-11 15:33:40.000 -0100D010113A8000,"Void Bastards",status-playable,playable,2022-10-15 00:04:19.000 -0100FF7010E7E000,"void* tRrLM(); //Void Terrarium",gpu;status-ingame;Needs Update;regression,ingame,2023-02-10 01:13:25.000 -010078D0175EE000,"void* tRrLM2(); //Void Terrarium 2",status-playable,playable,2023-12-21 11:00:41.000 -,"Volgarr the Viking",status-playable,playable,2020-12-18 15:25:50.000 -0100A7900E79C000,"Volta-X",status-playable;online-broken,playable,2022-10-07 12:20:51.000 -01004D8007368000,"Vostok, Inc.",status-playable,playable,2021-01-27 17:43:59.000 -0100B1E0100A4000,"Voxel Galaxy",status-playable,playable,2022-09-28 22:45:02.000 -0100AFA011068000,"Voxel Pirates",status-playable,playable,2022-09-28 22:55:02.000 -0100BFB00D1F4000,"Voxel Sword",status-playable,playable,2022-08-30 14:57:27.000 -01004E90028A2000,"Vroom in the Night Sky",status-playable;Needs Update;vulkan-backend-bug,playable,2023-02-20 02:32:29.000 -0100C7C00AE6C000,"VSR: Void Space Racing",status-playable,playable,2021-01-27 14:08:59.000 -,"VtM Coteries of New York",status-playable,playable,2020-10-04 14:55:22.000 -0100B130119D0000,"Waifu Uncovered",status-ingame;crash,ingame,2023-02-27 01:17:46.000 -,"Wanba Warriors",status-playable,playable,2020-10-04 17:56:22.000 -,"Wanderjahr TryAgainOrWalkAway",status-playable,playable,2020-12-16 09:46:04.000 -0100B27010436000,"Wanderlust Travel Stories",status-playable,playable,2021-04-07 16:09:12.000 -0100F8A00853C000,"Wandersong",nvdec;status-playable,playable,2021-06-04 15:33:34.000 -0100D67013910000,"Wanna Survive",status-playable,playable,2022-11-12 21:15:43.000 -01004FA01391A000,"War Of Stealth - assassin",status-playable,playable,2021-05-22 17:34:38.000 -010049500DE56000,"War Tech Fighters",status-playable;nvdec,playable,2022-09-16 22:29:31.000 -010084D00A134000,"War Theatre",gpu;status-ingame,ingame,2021-06-07 19:42:45.000 -0100B6B013B8A000,"War Truck Simulator",status-playable,playable,2021-01-31 11:22:54.000 -,"War-Torn Dreams",crash;status-nothing,nothing,2020-10-21 11:36:16.000 -,"WARBORN",status-playable,playable,2020-06-25 12:36:47.000 -010056901285A000,"Wardogs: Red's Return",status-playable,playable,2022-11-13 15:29:01.000 -01000F0002BB6000,"WarGroove",status-playable;online-broken,playable,2022-08-31 10:30:45.000 -0100C6000EEA8000,"Warhammer 40,000: Mechanicus",nvdec;status-playable,playable,2021-06-13 10:46:38.000 -0100E5600D7B2000,"Warhammer 40,000: Space Wolf",status-playable;online-broken,playable,2022-09-20 21:11:20.000 -010031201307A000,"Warhammer Age of Sigmar: Storm Ground",status-playable;nvdec;online-broken;UE4,playable,2022-11-13 15:46:14.000 -,"Warhammer Quest 2",status-playable,playable,2020-08-04 15:28:03.000 -0100563010E0C000,"WarioWare: Get It Together!",gpu;status-ingame;opengl-backend-bug,ingame,2024-04-23 01:04:56.000 -010045B018EC2000,"Warioware: Move IT!",status-playable,playable,2023-11-14 00:23:51.000 -,"Warlocks 2: God Slayers",status-playable,playable,2020-12-16 17:36:50.000 -,"Warp Shift",nvdec;status-playable,playable,2020-12-15 14:48:48.000 -,"Warparty",nvdec;status-playable,playable,2021-01-27 18:26:32.000 -010032700EAC4000,"WarriOrb",UE4;status-playable,playable,2021-06-17 15:45:14.000 -0100E8500AD58000,"WARRIORS OROCHI 4 ULTIMATE",status-playable;nvdec;online-broken,playable,2024-08-07 01:50:37.000 -,"Wartile Complete Edition",UE4;crash;gpu;status-menus,menus,2020-12-11 21:56:10.000 -010039A00BC64000,"Wasteland 2: Director's Cut",nvdec;status-playable,playable,2021-01-27 13:34:11.000 -,"Water Balloon Mania",status-playable,playable,2020-10-23 20:20:59.000 -0100BA200C378000,"Way of the Passive Fist",gpu;status-ingame,ingame,2021-02-26 21:07:06.000 -,"We should talk.",crash;status-nothing,nothing,2020-08-03 12:32:36.000 -,"Welcome to Hanwell",UE4;crash;status-boots,boots,2020-08-03 11:54:57.000 -0100D7F010B94000,"Welcome to Primrose Lake",status-playable,playable,2022-10-21 11:30:57.000 -,"Wenjia",status-playable,playable,2020-06-08 11:38:30.000 -010031B00A4E8000,"West of Loathing",status-playable,playable,2021-01-28 12:35:19.000 -010038900DFE0000,"What Remains of Edith Finch",slow;status-playable;UE4,playable,2022-08-31 19:57:59.000 -010033600ADE6000,"Wheel of Fortune [010033600ADE6000]",status-boots;crash;Needs More Attention;nvdec,boots,2023-11-12 20:29:24.000 -0100DFC00405E000,"Wheels of Aurelia",status-playable,playable,2021-01-27 21:59:25.000 -010027D011C9C000,"Where Angels Cry",gpu;status-ingame;nvdec,ingame,2022-09-30 22:24:47.000 -0100FDB0092B4000,"Where Are My Friends?",status-playable,playable,2022-09-21 14:39:26.000 -,"Where the Bees Make Honey",status-playable,playable,2020-07-15 12:40:49.000 -,"Whipsey and the Lost Atlas",status-playable,playable,2020-06-23 20:24:14.000 -010015A00AF1E000,"Whispering Willows",status-playable;nvdec,playable,2022-09-30 22:33:05.000 -,"Who Wants to Be a Millionaire?",crash;status-nothing,nothing,2020-12-11 20:22:42.000 -0100C7800CA06000,"Widget Satchel",status-playable,playable,2022-09-16 22:41:07.000 -0100CFC00A1D8000,"WILD GUNS Reloaded",status-playable,playable,2021-01-28 12:29:05.000 -010071F00D65A000,"Wilmot's Warehouse",audio;gpu;status-ingame,ingame,2021-06-02 17:24:32.000 -,"WINDJAMMERS",online;status-playable,playable,2020-10-13 11:24:25.000 -010059900BA3C000,"Windscape",status-playable,playable,2022-10-21 11:49:42.000 -,"Windstorm",UE4;gpu;nvdec;status-ingame,ingame,2020-12-22 13:17:48.000 -0100D6800CEAC000,"Windstorm - Ari's Arrival",UE4;status-playable,playable,2021-06-07 19:33:19.000 -,"Wing of Darkness - 010035B012F2000",status-playable;UE4,playable,2022-11-13 16:03:51.000 -0100A4A015FF0000,"Winter Games 2023",deadlock;status-menus,menus,2023-11-07 20:47:36.000 -010012A017F18800,"Witch On The Holy Night",status-playable,playable,2023-03-06 23:28:11.000 -0100454012E32000,"Witch Spring 3 Re:Fine -The Story of the Marionette Witch Eirudy-",status-ingame;crash,ingame,2021-08-08 11:56:18.000 -01002FC00C6D0000,"Witch Thief",status-playable,playable,2021-01-27 18:16:07.000 -010061501904E000,"Witch's Garden",gpu;status-ingame;crash;vulkan-backend-bug;opengl-backend-bug,ingame,2023-01-11 02:11:24.000 -,"Witcheye",status-playable,playable,2020-12-14 22:56:08.000 -0100522007AAA000,"Wizard of Legend",status-playable,playable,2021-06-07 12:20:46.000 -,"Wizards of Brandel",status-nothing,nothing,2020-10-14 15:52:33.000 -0100C7600E77E000,"Wizards: Wand of Epicosity",status-playable,playable,2022-10-07 12:32:06.000 -01009040091E0000,"Wolfenstein II The New Colossus",gpu;status-ingame,ingame,2024-04-05 05:39:46.000 -01003BD00CAAE000,"Wolfenstein: Youngblood",status-boots;online-broken,boots,2024-07-12 23:49:20.000 -,"Wonder Blade",status-playable,playable,2020-12-11 17:55:31.000 -0100B49016FF0000,"Wonder Boy Anniversary Collection",deadlock;status-nothing,nothing,2023-04-20 16:01:48.000 -0100EB2012E36000,"Wonder Boy Asha in Monster World [ ワンダーボーイ アーシャ・イン・モンスターワールド ]",status-nothing;crash,nothing,2021-11-03 08:45:06.000 -0100A6300150C000,"Wonder Boy: The Dragon's Trap",status-playable,playable,2021-06-25 04:53:21.000 -0100F5D00C812000,"Wondershot",status-playable,playable,2022-08-31 21:05:31.000 -,"Woodle Tree 2",gpu;slow;status-ingame,ingame,2020-06-04 18:44:00.000 -0100288012966000,"Woodsalt",status-playable,playable,2021-04-06 17:01:48.000 -,"Wordify",status-playable,playable,2020-10-03 09:01:07.000 -,"World Conqueror X",status-playable,playable,2020-12-22 16:10:29.000 -01008E9007064000,"World Neverland",status-playable,playable,2021-01-28 17:44:23.000 -,"World of Final Fantasy Maxima",status-playable,playable,2020-06-07 13:57:23.000 -010009E001D90000,"World of Goo",gpu;status-boots;32-bit;crash;regression,boots,2024-04-12 05:52:14.000 -010061F01DB7C800,"World of Goo 2",status-boots,boots,2024-08-08 22:52:49.000 -,"World Soccer Pinball",status-playable,playable,2021-01-06 00:37:02.000 -,"Worldend Syndrome",status-playable,playable,2021-01-03 14:16:32.000 -010000301025A000,"Worlds of Magic: Planar Conquest",status-playable,playable,2021-06-12 12:51:28.000 -01009CD012CC0000,"Worm Jazz",gpu;services;status-ingame;UE4;regression,ingame,2021-11-10 10:33:04.000 -01001AE005166000,"Worms W.M.D",gpu;status-boots;crash;nvdec;ldn-untested,boots,2023-09-16 21:42:59.000 -010037500C4DE000,"Worse Than Death",status-playable,playable,2021-06-11 16:05:40.000 -01006F100EB16000,"Woven",nvdec;status-playable,playable,2021-06-02 13:41:08.000 -010087800DCEA000,"WRC 8 FIA World Rally Championship",status-playable;nvdec,playable,2022-09-16 23:03:36.000 -01001A0011798000,"WRC 9 The Official Game",gpu;slow;status-ingame;nvdec,ingame,2022-10-25 19:47:39.000 -0100DC0012E48000,"Wreckfest",status-playable,playable,2023-02-12 16:13:00.000 -0100C5D00EDB8000,"Wreckin' Ball Adventure",status-playable;UE4,playable,2022-09-12 18:56:28.000 -010033700418A000,"Wulverblade",nvdec;status-playable,playable,2021-01-27 22:29:05.000 -01001C400482C000,"Wunderling",audio;status-ingame;crash,ingame,2022-09-10 13:20:12.000 -,"Wurroom",status-playable,playable,2020-10-07 22:46:21.000 -010081700EDF4000,"WWE 2K Battlegrounds",status-playable;nvdec;online-broken;UE4,playable,2022-10-07 12:44:40.000 -010009800203E000,"WWE 2K18",status-playable;nvdec,playable,2023-10-21 17:22:01.000 -,"X-Morph: Defense",status-playable,playable,2020-06-22 11:05:31.000 -0100D0B00FB74000,"XCOM 2 Collection",gpu;status-ingame;crash,ingame,2022-10-04 09:38:30.000 -0100CC9015360000,"XEL",gpu;status-ingame,ingame,2022-10-03 10:19:39.000 -0100E95004038000,"Xenoblade Chronicles 2",deadlock;status-ingame;amd-vendor-bug,ingame,2024-03-28 14:31:41.000 -0100C9F009F7A000,"Xenoblade Chronicles 2: Torna - The Golden Country",slow;status-playable;nvdec,playable,2023-01-28 16:47:28.000 -010074F013262000,"Xenoblade Chronicles 3",gpu;status-ingame;crash;nvdec;vulkan-backend-bug;amd-vendor-bug,ingame,2024-08-06 19:56:44.000 -0100FF500E34A000,"Xenoblade Chronicles Definitive Edition",status-playable;nvdec,playable,2024-05-04 20:12:41.000 -010028600BA16000,"Xenon Racer",status-playable;nvdec;UE4,playable,2022-08-31 22:05:30.000 -010064200C324000,"Xenon Valkyrie+",status-playable,playable,2021-06-07 20:25:53.000 -0100928005BD2000,"Xenoraid",status-playable,playable,2022-09-03 13:01:10.000 -01005B5009364000,"Xeodrifter",status-playable,playable,2022-09-03 13:18:39.000 -01006FB00DB02000,"Yaga",status-playable;nvdec,playable,2022-09-16 23:17:17.000 -,"YesterMorrow",crash;status-ingame,ingame,2020-12-17 17:15:25.000 -,"Yet Another Zombie Defense HD",status-playable,playable,2021-01-06 00:18:39.000 -,"YGGDRA UNION We’ll Never Fight Alone",status-playable,playable,2020-04-03 02:20:47.000 -0100634008266000,"YIIK: A Postmodern RPG",status-playable,playable,2021-01-28 13:38:37.000 -0100C0000CEEA000,"Yo kai watch 1 for Nintendo Switch",gpu;status-ingame;opengl,ingame,2024-05-28 11:11:49.000 -010086C00AF7C000,"Yo-Kai Watch 4++",status-playable,playable,2024-06-18 20:21:44.000 -010002D00632E000,"Yoku's Island Express",status-playable;nvdec,playable,2022-09-03 13:59:02.000 -0100F47016F26000,"Yomawari 3",status-playable,playable,2022-05-10 08:26:51.000 -010012F00B6F2000,"Yomawari: The Long Night Collection",status-playable,playable,2022-09-03 14:36:59.000 -0100CC600ABB2000,"Yonder: The Cloud Catcher Chronicles",status-playable,playable,2021-01-28 14:06:25.000 -0100BE50042F6000,"Yono and the Celestial Elephants",status-playable,playable,2021-01-28 18:23:58.000 -0100F110029C8000,"Yooka-Laylee",status-playable,playable,2021-01-28 14:21:45.000 -010022F00DA66000,"Yooka-Laylee and the Impossible Lair",status-playable,playable,2021-03-05 17:32:21.000 -01006000040C2000,"Yoshi's Crafted World",gpu;status-ingame;audout,ingame,2021-08-30 13:25:51.000 -,"Yoshi's Crafted World Demo Version",gpu;status-boots;status-ingame,boots,2020-12-16 14:57:40.000 -,"Yoshiwara Higanbana Kuon no Chigiri",nvdec;status-playable,playable,2020-10-17 19:14:46.000 -01003A400C3DA800,"YouTube",status-playable,playable,2024-06-08 05:24:10.000 -00100A7700CCAA40,"Youtubers Life00",status-playable;nvdec,playable,2022-09-03 14:56:19.000 -0100E390124D8000,"Ys IX: Monstrum Nox",status-playable,playable,2022-06-12 04:14:42.000 -0100F90010882000,"Ys Origin",status-playable;nvdec,playable,2024-04-17 05:07:33.000 -01007F200B0C0000,"Ys VIII: Lacrimosa of Dana",status-playable;nvdec,playable,2023-08-05 09:26:41.000 -010022400BE5A000,"Yu-Gi-Oh! Legacy of the Duelist: Link Evolution!",status-playable,playable,2024-09-27 21:48:43.000 -01002D60188DE000,"Yu-Gi-Oh! Rush Duel: Dawn of the Battle Royale!! Let's Go! Go Rush!!",status-ingame;crash,ingame,2023-03-17 01:54:01.000 -010037D00DBDC000,"YU-NO: A GIRL WHO CHANTS LOVE AT THE BOUND OF THIS WORLD.",nvdec;status-playable,playable,2021-01-26 17:03:52.000 -0100B56011502000,"Yumeutsutsu Re:After",status-playable,playable,2022-11-20 16:09:06.000 -,"Yunohana Spring! - Mellow Times -",audio;crash;status-menus,menus,2020-09-27 19:27:40.000 -,"Yuppie Psycho: Executive Edition",crash;status-ingame,ingame,2020-12-11 10:37:06.000 -0100FC900963E000,"Yuri",status-playable,playable,2021-06-11 13:08:50.000 -010092400A678000,"Zaccaria Pinball",status-playable;online-broken,playable,2022-09-03 15:44:28.000 -,"Zarvot - 0100E7900C40000",status-playable,playable,2021-01-28 13:51:36.000 -,"ZenChess",status-playable,playable,2020-07-01 22:28:27.000 -,"Zenge",status-playable,playable,2020-10-22 13:23:57.000 -0100057011E50000,"Zengeon",services-horizon;status-boots;crash,boots,2024-04-29 15:43:07.000 -0100AAC00E692000,"Zenith",status-playable,playable,2022-09-17 09:57:02.000 -,"ZERO GUNNER 2",status-playable,playable,2021-01-04 20:17:14.000 -01004B001058C000,"Zero Strain",services;status-menus;UE4,menus,2021-11-10 07:48:32.000 -,"Zettai kaikyu gakuen",gpu;nvdec;status-ingame,ingame,2020-08-25 15:15:54.000 -0100D7B013DD0000,"Ziggy The Chaser",status-playable,playable,2021-02-04 20:34:27.000 -010086700EF16000,"ZikSquare",gpu;status-ingame,ingame,2021-11-06 02:02:48.000 -010069C0123D8000,"Zoids Wild Blast Unleashed",status-playable;nvdec,playable,2022-10-15 11:26:59.000 -,"Zombie Army Trilogy",ldn-untested;online;status-playable,playable,2020-12-16 12:02:28.000 -,"Zombie Driver",nvdec;status-playable,playable,2020-12-14 23:15:10.000 -,"ZOMBIE GOLD RUSH",online;status-playable,playable,2020-09-24 12:56:08.000 -,"Zombie's Cool",status-playable,playable,2020-12-17 12:41:26.000 -01000E5800D32C00,"Zombieland: Double Tap - Road Trip0",status-playable,playable,2022-09-17 10:08:45.000 -,"Zombillie",status-playable,playable,2020-07-23 17:42:23.000 -01001EE00A6B0000,"Zotrix: Solar Division",status-playable,playable,2021-06-07 20:34:05.000 -,"この世の果てで恋を唄う少女YU-NO",audio;status-ingame,ingame,2021-01-22 07:00:16.000 -,"スーパーファミコン Nintendo Switch Online",slow;status-ingame,ingame,2020-03-14 05:48:38.000 -01000BB01CB8A000,"トラブル・マギア ~訳アリ少女は未来を勝ち取るために異国の魔法学校へ留学します~(Trouble Magia ~Wakeari Shoujo wa Mirai o Kachitoru Tame ni Ikoku no Mahou Gakkou e Ryuugaku Shimasu~)",status-nothing,nothing,2024-09-28 07:03:14.000 -010065500B218000,"メモリーズオフ - Innocent Fille",status-playable,playable,2022-12-02 17:36:48.000 -010032400E700000,"二ノ国 白き聖灰の女王",services;status-menus;32-bit,menus,2023-04-16 17:11:06.000 -0100F3100DA46000,"初音ミク Project DIVA MEGA39's",audio;status-playable;loader-allocator,playable,2022-07-29 11:45:52.000 -0100BF401AF9C000,"御伽活劇 豆狸のバケル ~オラクル祭太郎の祭難!!~ (Otogi Katsugeki Mameda no Bakeru Oracle Saitarou no Sainan!!)",slow;status-playable,playable,2023-12-31 14:37:17.000 -0100AFA01750C000,"死神と少女/Shinigami to Shoujo",gpu;status-ingame;Incomplete,ingame,2024-03-22 01:06:45.000 -01001BA01EBFC000,"燃えよ! 乙女道士 ~華遊恋語~ (Moeyo! Otome Doushi Kayu Koigatari)",services-horizon;status-nothing,nothing,2024-09-28 12:22:55.000 -0100936018EB4000,"牧場物語 Welcome!ワンダフルライフ",status-ingame;crash,ingame,2023-04-25 19:43:52.000 -01009FB016286000,"索尼克:起源 / Sonic Origins",status-ingame;crash,ingame,2024-06-02 07:20:15.000 -0100F4401940A000,"超探偵事件簿 レインコード (Master Detective Archives: Rain Code)",status-ingame;crash,ingame,2024-02-12 20:58:31.000 -010064801a01c000,"超次元ゲイム ネプテューヌ GameMaker R:Evolution",status-nothing;crash,nothing,2023-10-30 22:37:40.000 -010005501E68C000,"逆转检察官1&2 御剑精选集 (Ace Attorney Investigations Collection)",status-playable,playable,2024-09-19 16:38:05.000 -010020D01B890000,"逆转裁判四五六 王泥喜精选集 (Apollo Justice: Ace Attorney Trilogy)",status-playable,playable,2024-06-21 21:54:27.000 -0100309016E7A000,"鬼滅之刃:火之神血風譚 / Demon Slayer -Kimetsu no Yaiba- The Hinokami Chronicles",status-playable;UE4,playable,2024-08-08 04:51:49.000 \ No newline at end of file +"title_id","game_name","labels","status","last_updated" +010099F00EF3E000,"-KLAUS-",nvdec;status-playable,playable,2020-06-27 13:27:30.000 +0100BA9014A02000,".hack//G.U. Last Recode",deadlock;status-boots,boots,2022-03-12 19:15:47.000 +010098800C4B0000,"'n Verlore Verstand",slow;status-ingame,ingame,2020-12-10 18:00:28.000 +01009A500E3DA000,"'n Verlore Verstand - Demo",status-playable,playable,2021-02-09 00:13:32.000 +0100A5D01174C000,"/Connection Haunted ",slow;status-playable,playable,2020-12-10 18:57:14.000 +01001E500F7FC000,"#Funtime",status-playable,playable,2020-12-10 16:54:35.000 +01000E50134A4000,"#Halloween, Super Puzzles Dream",nvdec;status-playable,playable,2020-12-10 20:43:58.000 +01004D100C510000,"#KILLALLZOMBIES",slow;status-playable,playable,2020-12-16 01:50:25.000 +0100325012C12000,"#NoLimitFantasy, Super Puzzles Dream",nvdec;status-playable,playable,2020-12-12 17:21:32.000 +01005D400E5C8000,"#RaceDieRun",status-playable,playable,2020-07-04 20:23:16.000 +01003DB011AE8000,"#womenUp, Super Puzzles Dream",status-playable,playable,2020-12-12 16:57:25.000 +0100D87012A14000,"#womenUp, Super Puzzles Dream Demo",nvdec;status-playable,playable,2021-02-09 00:03:31.000 +01000320000CC000,"1-2-Switch™",services;status-playable,playable,2022-02-18 14:44:03.000 +01004D1007926000,"10 Second Run RETURNS",gpu;status-ingame,ingame,2022-07-17 13:06:18.000 +0100DC000A472000,"10 Second Run RETURNS Demo",gpu;status-ingame,ingame,2021-02-09 00:17:18.000 +0100D82015774000,"112 Operator",status-playable;nvdec,playable,2022-11-13 22:42:50.000 +010051E012302000,"112th Seed",status-playable,playable,2020-10-03 10:32:38.000 +01007F600D1B8000,"12 is Better Than 6",status-playable,playable,2021-02-22 16:10:12.000 +0100B1A010014000,"12 Labours of Hercules II: The Cretan Bull",cpu;status-nothing;32-bit;crash,nothing,2022-12-07 13:43:10.000 +0100A840047C2000,"12 orbits",status-playable,playable,2020-05-28 16:13:26.000 +01003FC01670C000,"13 Sentinels: Aegis Rim",slow;status-ingame,ingame,2024-06-10 20:33:38.000 +0100C54015002000,"13 Sentinels: Aegis Rim Demo",status-playable;demo,playable,2022-04-13 14:15:48.000 +01007E600EEE6000,"140",status-playable,playable,2020-08-05 20:01:33.000 +0100B94013D28000,"16-Bit Soccer Demo",status-playable,playable,2021-02-09 00:23:07.000 +01005CA0099AA000,"1917 - The Alien Invasion DX",status-playable,playable,2021-01-08 22:11:16.000 +0100829010F4A000,"1971 Project Helios",status-playable,playable,2021-04-14 13:50:19.000 +0100D1000B18C000,"1979 Revolution: Black Friday",nvdec;status-playable,playable,2021-02-21 21:03:43.000 +01007BB00FC8A000,"198X",status-playable,playable,2020-08-07 13:24:38.000 +010075601150A000,"1993 Shenandoah",status-playable,playable,2020-10-24 13:55:42.000 +0100148012550000,"1993 Shenandoah Demo",status-playable,playable,2021-02-09 00:43:43.000 +010096500EA94000,"2048 Battles",status-playable,playable,2020-12-12 14:21:25.000 +010024C0067C4000,"2064: Read Only Memories INTEGRAL",deadlock;status-menus,menus,2020-05-28 16:53:58.000 +0100749009844000,"20XX",gpu;status-ingame,ingame,2023-08-14 09:41:44.000 +01007550131EE000,"2URVIVE",status-playable,playable,2022-11-17 13:49:37.000 +0100E20012886000,"2weistein – The Curse of the Red Dragon",status-playable;nvdec;UE4,playable,2022-11-18 14:47:07.000 +0100DAC013D0A000,"30 in 1 game collection vol. 2",status-playable;online-broken,playable,2022-10-15 17:22:27.000 +010056D00E234000,"30-in-1 Game Collection",status-playable;online-broken,playable,2022-10-15 17:47:09.000 +0100FB5010D2E000,"3000th Duel",status-playable,playable,2022-09-21 17:12:08.000 +01003670066DE000,"36 Fragments of Midnight",status-playable,playable,2020-05-28 15:12:59.000 +0100AF400C4CE000,"39 Days to Mars",status-playable,playable,2021-02-21 22:12:46.000 +010010C013F2A000,"3D Arcade Fishing",status-playable,playable,2022-10-25 21:50:51.000 +01006DA00707C000,"3D MiniGolf",status-playable,playable,2021-01-06 09:22:11.000 +01006890126E4000,"4x4 Dirt Track",status-playable,playable,2020-12-12 21:41:42.000 +010010100FF14000,"60 Parsecs!",status-playable,playable,2022-09-17 11:01:17.000 +0100969005E98000,"60 Seconds!",services;status-ingame,ingame,2021-11-30 01:04:14.000 +0100ECF008474000,"6180 the moon",status-playable,playable,2020-05-28 15:39:24.000 +0100EFE00E964000,"64.0",status-playable,playable,2020-12-12 21:31:58.000 +0100DA900B67A000,"7 Billion Humans",32-bit;status-playable,playable,2020-12-17 21:04:58.000 +01004B200DF76000,"7th Sector",nvdec;status-playable,playable,2020-08-10 14:22:14.000 +0100E9F00B882000,"8-BIT ADV STEINS;GATE",audio;status-ingame,ingame,2020-01-12 15:05:06.000 +0100B0700E944000,"80 DAYS",status-playable,playable,2020-06-22 21:43:01.000 +01006B1011B9E000,"80's OVERDRIVE",status-playable,playable,2020-10-16 14:33:32.000 +010006A0042F0000,"88 Heroes - 98 Heroes Edition",status-playable,playable,2020-05-28 14:13:02.000 +010005E00E2BC000,"9 Monkeys of Shaolin",UE4;gpu;slow;status-ingame,ingame,2020-11-17 11:58:43.000 +0100C5F012E3E000,"9 Monkeys of Shaolin Demo",UE4;gpu;nvdec;status-ingame,ingame,2021-02-09 01:03:30.000 +01000360107BC000,"911 Operator Deluxe Edition",status-playable,playable,2020-07-14 13:57:44.000 +0100B2C00682E000,"99Vidas - Definitive Edition",online;status-playable,playable,2020-10-29 13:00:40.000 +010023500C2F0000,"99Vidas Demo",status-playable,playable,2021-02-09 12:51:31.000 +0100DB00117BA000,"9th Dawn III",status-playable,playable,2020-12-12 22:27:27.000 +010096A00CC80000,"A Ch'ti Bundle",status-playable;nvdec,playable,2022-10-04 12:48:44.000 +010021D00D53E000,"A Dark Room",gpu;status-ingame,ingame,2020-12-14 16:14:28.000 +010026B006802000,"A Duel Hand Disaster: Trackher",status-playable;nvdec;online-working,playable,2022-09-04 14:24:55.000 +0100582012B90000,"A Duel Hand Disaster: Trackher DEMO",crash;demo;nvdec;status-ingame,ingame,2021-03-24 18:45:27.000 +01006CE0134E6000,"A Frog Game",status-playable,playable,2020-12-14 16:09:53.000 +010056E00853A000,"A Hat in Time",status-playable,playable,2024-06-25 19:52:44.000 +01009E1011EC4000,"A HERO AND A GARDEN",status-playable,playable,2022-12-05 16:37:47.000 +01005EF00CFDA000,"A Knight's Quest",status-playable;UE4,playable,2022-09-12 20:44:20.000 +01008DD006C52000,"A Magical High School Girl",status-playable,playable,2022-07-19 14:40:50.000 +01004890117B2000,"A Short Hike",status-playable,playable,2020-10-15 00:19:58.000 +0100F0901006C000,"A Sound Plan",crash;status-boots,boots,2020-12-14 16:46:21.000 +01007DD011C4A000,"A Summer with the Shiba Inu",status-playable,playable,2021-06-10 20:51:16.000 +0100A3E010E56000,"A-Train: All Aboard! Tourism",nvdec;status-playable,playable,2021-04-06 17:48:19.000 +010097A00CC0A000,"Aaero: Complete Edition",status-playable;nvdec,playable,2022-07-19 14:49:55.000 +0100EFC010398000,"Aborigenus",status-playable,playable,2020-08-05 19:47:24.000 +0100A5B010A66000,"Absolute Drift",status-playable,playable,2020-12-10 14:02:44.000 +0100C1300BBC6000,"ABZÛ",status-playable;UE4,playable,2022-07-19 15:02:52.000 +01003C400871E000,"ACA NEOGEO 2020 SUPER BASEBALL",online;status-playable,playable,2021-04-12 13:23:51.000 +0100FC000AFC6000,"ACA NEOGEO 3 COUNT BOUT",online;status-playable,playable,2021-04-12 13:16:42.000 +0100AC40038F4000,"ACA NEOGEO AERO FIGHTERS 2",online;status-playable,playable,2021-04-08 15:44:09.000 +0100B91008780000,"ACA NEOGEO AERO FIGHTERS 3",online;status-playable,playable,2021-04-12 13:11:17.000 +0100B4800AFBA000,"ACA NEOGEO AGGRESSORS OF DARK KOMBAT",online;status-playable,playable,2021-04-01 22:48:01.000 +01003FE00A2F6000,"ACA NEOGEO BASEBALL STARS PROFESSIONAL",online;status-playable,playable,2021-04-01 21:23:05.000 +0100DFC003398000,"ACA NEOGEO BLAZING STAR",crash;services;status-menus,menus,2020-05-26 17:29:02.000 +0100D2400AFB0000,"ACA NEOGEO CROSSED SWORDS",online;status-playable,playable,2021-04-01 20:42:59.000 +0100EE6002B48000,"ACA NEOGEO FATAL FURY",online;status-playable,playable,2021-04-01 20:36:23.000 +0100EEA00AFB2000,"ACA NEOGEO FOOTBALL FRENZY",status-playable,playable,2021-03-29 20:12:12.000 +0100CB2001DB8000,"ACA NEOGEO GAROU: MARK OF THE WOLVES",online;status-playable,playable,2021-04-01 20:31:10.000 +01005D700A2F8000,"ACA NEOGEO GHOST PILOTS",online;status-playable,playable,2021-04-01 20:26:45.000 +01000D10038E6000,"ACA NEOGEO LAST RESORT",online;status-playable,playable,2021-04-01 19:51:22.000 +0100A2900AFA4000,"ACA NEOGEO LEAGUE BOWLING",crash;services;status-menus,menus,2020-05-26 17:11:04.000 +0100A050038F2000,"ACA NEOGEO MAGICAL DROP II",crash;services;status-menus,menus,2020-05-26 16:48:24.000 +01007920038F6000,"ACA NEOGEO MAGICIAN LORD",online;status-playable,playable,2021-04-01 19:33:26.000 +0100EBE002B3E000,"ACA NEOGEO METAL SLUG",status-playable,playable,2021-02-21 13:56:48.000 +010086300486E000,"ACA NEOGEO METAL SLUG 2",online;status-playable,playable,2021-04-01 19:25:52.000 +0100BA8001DC6000,"ACA NEOGEO METAL SLUG 3",crash;services;status-menus,menus,2020-05-26 16:32:45.000 +01009CE00AFAE000,"ACA NEOGEO METAL SLUG 4",online;status-playable,playable,2021-04-01 18:12:18.000 +01008FD004DB6000,"ACA NEOGEO METAL SLUG X",crash;services;status-menus,menus,2020-05-26 14:07:20.000 +010038F00AFA0000,"ACA NEOGEO Money Puzzle Exchanger",online;status-playable,playable,2021-04-01 17:59:56.000 +01002E70032E8000,"ACA NEOGEO NEO TURF MASTERS",status-playable,playable,2021-02-21 15:12:01.000 +010052A00A306000,"ACA NEOGEO NINJA COMBAT",status-playable,playable,2021-03-29 21:17:28.000 +01007E800AFB6000,"ACA NEOGEO NINJA COMMANDO",online;status-playable,playable,2021-04-01 17:28:18.000 +01003A5001DBA000,"ACA NEOGEO OVER TOP",status-playable,playable,2021-02-21 13:16:25.000 +010088500878C000,"ACA NEOGEO REAL BOUT FATAL FURY SPECIAL",online;status-playable,playable,2021-04-01 17:18:27.000 +01005C9002B42000,"ACA NEOGEO SAMURAI SHODOWN",online;status-playable,playable,2021-04-01 17:11:35.000 +010047F001DBC000,"ACA NEOGEO SAMURAI SHODOWN IV",online;status-playable,playable,2021-04-12 12:58:54.000 +010049F00AFE8000,"ACA NEOGEO SAMURAI SHODOWN V SPECIAL",online;status-playable,playable,2021-04-10 18:07:13.000 +01009B300872A000,"ACA NEOGEO SENGOKU 2",online;status-playable,playable,2021-04-10 17:36:44.000 +01008D000877C000,"ACA NEOGEO SENGOKU 3",online;status-playable,playable,2021-04-10 16:11:53.000 +01008A9001DC2000,"ACA NEOGEO SHOCK TROOPERS",crash;services;status-menus,menus,2020-05-26 15:29:34.000 +01007D1004DBA000,"ACA NEOGEO SPIN MASTER",online;status-playable,playable,2021-04-10 15:50:19.000 +010055A00A300000,"ACA NEOGEO SUPER SIDEKICKS 2",online;status-playable,playable,2021-04-10 16:05:58.000 +0100A4D00A308000,"ACA NEOGEO SUPER SIDEKICKS 3 : THE NEXT GLORY",online;status-playable,playable,2021-04-10 15:39:22.000 +0100EB2001DCC000,"ACA NEOGEO THE KING OF FIGHTERS '94",crash;services;status-menus,menus,2020-05-26 15:03:44.000 +01009DC001DB6000,"ACA NEOGEO THE KING OF FIGHTERS '95",status-playable,playable,2021-03-29 20:27:35.000 +01006F0004FB4000,"ACA NEOGEO THE KING OF FIGHTERS '96",online;status-playable,playable,2021-04-10 14:49:10.000 +0100170008728000,"ACA NEOGEO THE KING OF FIGHTERS '97",online;status-playable,playable,2021-04-10 14:43:27.000 +0100B42001DB4000,"ACA NEOGEO THE KING OF FIGHTERS '98",crash;services;status-menus,menus,2020-05-26 14:54:20.000 +0100583001DCA000,"ACA NEOGEO THE KING OF FIGHTERS '99",online;status-playable,playable,2021-04-10 14:36:56.000 +0100B97002B44000,"ACA NEOGEO THE KING OF FIGHTERS 2000",online;status-playable,playable,2021-04-10 15:24:35.000 +010048200AFC2000,"ACA NEOGEO THE KING OF FIGHTERS 2001",online;status-playable,playable,2021-04-10 15:16:23.000 +0100CFD00AFDE000,"ACA NEOGEO THE KING OF FIGHTERS 2002",online;status-playable,playable,2021-04-10 15:01:55.000 +0100EF100AFE6000,"ACA NEOGEO THE KING OF FIGHTERS 2003",online;status-playable,playable,2021-04-10 14:54:31.000 +0100699008792000,"ACA NEOGEO THE LAST BLADE 2",online;status-playable,playable,2021-04-10 14:31:54.000 +0100F7F00AFA2000,"ACA NEOGEO THE SUPER SPY",online;status-playable,playable,2021-04-10 14:26:33.000 +0100CEF001DC0000,"ACA NEOGEO WAKU WAKU 7",online;status-playable,playable,2021-04-10 14:20:52.000 +01009D4001DC4000,"ACA NEOGEO WORLD HEROES PERFECT",crash;services;status-menus,menus,2020-05-26 14:14:36.000 +01002E700AFC4000,"ACA NEOGEO ZUPAPA!",online;status-playable,playable,2021-03-25 20:07:33.000 +0100A9900CB5C000,"Access Denied",status-playable,playable,2022-07-19 15:25:10.000 +01007C50132C8000,"Ace Angler: Fishing Spirits",status-menus;crash,menus,2023-03-03 03:21:39.000 +010005501E68C000,"Ace Attorney Investigations Collection",status-playable,playable,2024-09-19 16:38:05.000 +010033401E68E000,"Ace Attorney Investigations Collection DEMO",status-playable,playable,2024-09-07 06:16:42.000 +010039301B7E0000,"Ace Combat 7 - Skies Unknown Deluxe Edition",gpu;status-ingame;UE4,ingame,2024-09-27 14:31:43.000 +0100FF1004D56000,"Ace of Seafood",status-playable,playable,2022-07-19 15:32:25.000 +0100B28003440000,"Aces of the Luftwaffe - Squadron",nvdec;slow;status-playable,playable,2020-05-27 12:29:42.000 +010054300D822000,"Aces of the Luftwaffe - Squadron Demo",nvdec;status-playable,playable,2021-02-09 13:12:28.000 +010079B00B3F4000,"Achtung! Cthulhu Tactics",status-playable,playable,2020-12-14 18:40:27.000 +0100DBC0081A4000,"ACORN Tactics",status-playable,playable,2021-02-22 12:57:40.000 +010043C010AEA000,"Across the Grooves",status-playable,playable,2020-06-27 12:29:51.000 +010039A010DA0000,"Active Neurons - Puzzle game",status-playable,playable,2021-01-27 21:31:21.000 +01000D1011EF0000,"Active Neurons 2",status-playable,playable,2022-10-07 16:21:42.000 +010031C0122B0000,"Active Neurons 2 Demo",status-playable,playable,2021-02-09 13:40:21.000 +0100EE1013E12000,"Active Neurons 3 - Wonders Of The World",status-playable,playable,2021-03-24 12:20:20.000 +0100CD40104DE000,"Actual Sunlight",gpu;status-ingame,ingame,2020-12-14 17:18:41.000 +0100C0C0040E4000,"Adam's Venture™: Origins",status-playable,playable,2021-03-04 18:43:57.000 +010029700EB76000,"Adrenaline Rush - Miami Drive",status-playable,playable,2020-12-12 22:49:50.000 +0100300012F2A000,"Advance Wars™ 1+2: Re-Boot Camp",status-playable,playable,2024-01-30 18:19:44.000 +010014B0130F2000,"Adventure Llama",status-playable,playable,2020-12-14 19:32:24.000 +0100C990102A0000,"Adventure Pinball Bundle",slow;status-playable,playable,2020-12-14 20:31:53.000 +0100C4E004406000,"Adventure Time: Pirates of the Enchiridion",status-playable;nvdec,playable,2022-07-21 21:49:01.000 +010021F00C1C0000,"Adventures of Bertram Fiddle Episode 2: A Bleaker Predicklement",nvdec;status-playable,playable,2021-02-22 14:56:37.000 +010072601233C000,"Adventures of Chris",status-playable,playable,2020-12-12 23:00:02.000 +0100A0A0136E8000,"Adventures of Chris Demo",status-playable,playable,2021-02-09 13:49:21.000 +01002B5012004000,"Adventures of Pip",nvdec;status-playable,playable,2020-12-12 22:11:55.000 +01008C901266E000,"ADVERSE",UE4;status-playable,playable,2021-04-26 14:32:51.000 +01008E6006502000,"Aegis Defenders",status-playable,playable,2021-02-22 13:29:33.000 +010064500AF72000,"Aegis Defenders demo",status-playable,playable,2021-02-09 14:04:17.000 +010001C011354000,"Aeolis Tournament",online;status-playable,playable,2020-12-12 22:02:14.000 +01006710122CE000,"Aeolis Tournament Demo",nvdec;status-playable,playable,2021-02-09 14:22:30.000 +0100A0400DDE0000,"AER Memories of Old",nvdec;status-playable,playable,2021-03-05 18:43:43.000 +0100E9B013D4A000,"Aerial_Knight's Never Yield",status-playable,playable,2022-10-25 22:05:00.000 +0100087012810000,"Aery - Broken Memories",status-playable,playable,2022-10-04 13:11:52.000 +01000A8015390000,"Aery - Calm Mind",status-playable,playable,2022-11-14 14:26:58.000 +0100875011D0C000,"Aery - Little Bird Adventure",status-playable,playable,2021-03-07 15:25:51.000 +010018E012914000,"Aery - Sky Castle",status-playable,playable,2022-10-21 17:58:49.000 +0100DF8014056000,"Aery – A Journey Beyond Time",status-playable,playable,2021-04-05 15:52:25.000 +01006C40086EA000,"AeternoBlade",nvdec;status-playable,playable,2020-12-14 20:06:48.000 +0100B1C00949A000,"AeternoBlade Demo",nvdec;status-playable,playable,2021-02-09 14:39:26.000 +01009D100EA28000,"AeternoBlade II",status-playable;online-broken;UE4;vulkan-backend-bug,playable,2022-09-12 21:11:18.000 +,"AeternoBlade II Demo Version",gpu;nvdec;status-ingame,ingame,2021-02-09 15:10:19.000 +01001B400D334000,"AFL Evolution 2",slow;status-playable;online-broken;UE4,playable,2022-12-07 12:45:56.000 +0100DB100BBCE000,"Afterparty",status-playable,playable,2022-09-22 12:23:19.000 +010087C011C4E000,"Agatha Christie - The ABC Murders",status-playable,playable,2020-10-27 17:08:23.000 +010093600A60C000,"Agatha Knife",status-playable,playable,2020-05-28 12:37:58.000 +010005400A45E000,"Agent A: A puzzle in disguise",status-playable,playable,2020-11-16 22:53:27.000 +01008E8012C02000,"Agent A: A puzzle in disguise (Demo)",status-playable,playable,2021-02-09 18:30:41.000 +0100E4700E040000,"Ages of Mages: The last keeper",status-playable;vulkan-backend-bug,playable,2022-10-04 11:44:05.000 +010004D00A9C0000,"Aggelos",gpu;status-ingame,ingame,2023-02-19 13:24:23.000 +010072600D21C000,"Agony",UE4;crash;status-boots,boots,2020-07-10 16:21:18.000 +010089B00D09C000,"AI: THE SOMNIUM FILES",status-playable;nvdec,playable,2022-09-04 14:45:06.000 +0100C1700FB34000,"AI: THE SOMNIUM FILES Demo",nvdec;status-playable,playable,2021-02-10 12:52:33.000 +01006E8011C1E000,"Ailment",status-playable,playable,2020-12-12 22:30:41.000 +0100C7600C7D6000,"Air Conflicts: Pacific Carriers",status-playable,playable,2021-01-04 10:52:50.000 +010005A00A4F4000,"Air Hockey",status-playable,playable,2020-05-28 16:44:37.000 +0100C9E00F54C000,"Air Missions: HIND",status-playable,playable,2020-12-13 10:16:45.000 +0100E95011FDC000,"Aircraft Evolution",nvdec;status-playable,playable,2021-06-14 13:30:18.000 +010010A00DB72000,"Airfield Mania Demo",services;status-boots;demo,boots,2022-04-10 03:43:02.000 +01003DD00BFEE000,"Airheart - Tales of broken Wings",status-playable,playable,2021-02-26 15:20:27.000 +01007F100DE52000,"Akane",status-playable;nvdec,playable,2022-07-21 00:12:18.000 +01009A800F0C8000,"Akash: Path of the Five",gpu;nvdec;status-ingame,ingame,2020-12-14 22:33:12.000 +010053100B0EA000,"Akihabara - Feel the Rhythm Remixed",status-playable,playable,2021-02-22 14:39:35.000 +0100D4C00EE0C000,"Akuarium",slow;status-playable,playable,2020-12-12 23:43:36.000 +010026E00FEBE000,"Akuto: Showdown",status-playable,playable,2020-08-04 19:43:27.000 +0100F5400AB6C000,"Alchemic Jousts",gpu;status-ingame,ingame,2022-12-08 15:06:28.000 +010001E00F75A000,"Alchemist's Castle",status-playable,playable,2020-12-12 23:54:08.000 +01004510110C4000,"Alder's Blood Prologue",crash;status-ingame,ingame,2021-02-09 19:03:03.000 +0100D740110C0000,"Alder's Blood: Definitive Edition",status-playable,playable,2020-08-28 15:15:23.000 +01000E000EEF8000,"Aldred Knight",services;status-playable,playable,2021-11-30 01:49:17.000 +010025D01221A000,"Alex Kidd in Miracle World DX",status-playable,playable,2022-11-14 15:01:34.000 +0100A2E00D0E0000,"Alien Cruise",status-playable,playable,2020-08-12 13:56:05.000 +0100C1500DBDE000,"Alien Escape",status-playable,playable,2020-06-03 23:43:18.000 +010075D00E8BA000,"Alien: Isolation",status-playable;nvdec;vulkan-backend-bug,playable,2022-09-17 11:48:41.000 +0100CBD012FB6000,"All Walls Must Fall",status-playable;UE4,playable,2022-10-15 19:16:30.000 +0100C1F00A9B8000,"All-Star Fruit Racing",status-playable;nvdec;UE4,playable,2022-07-21 00:35:37.000 +0100AC501122A000,"Alluris",gpu;status-ingame;UE4,ingame,2023-08-02 23:13:50.000 +010063000C3CE000,"Almightree: The Last Dreamer",slow;status-playable,playable,2020-12-15 13:59:03.000 +010083E010AE8000,"Along the Edge",status-playable,playable,2020-11-18 15:00:07.000 +010083E013188000,"Alpaca Ball: Allstars",nvdec;status-playable,playable,2020-12-11 12:26:29.000 +01000A800B998000,"ALPHA",status-playable,playable,2020-12-13 12:17:45.000 +010053B0123DC000,"Alphaset by POWGI",status-playable,playable,2020-12-15 15:15:15.000 +01003E700FD66000,"Alt-Frequencies",status-playable,playable,2020-12-15 19:01:33.000 +01004DB00935A000,"Alteric",status-playable,playable,2020-11-08 13:53:22.000 +0100C3D00D1D4000,"Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz",status-playable,playable,2020-08-31 14:17:42.000 +0100A8A00D27E000,"Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz Trial version",status-playable,playable,2021-02-10 13:33:59.000 +010045201487C000,"Aluna: Sentinel of the Shards",status-playable;nvdec,playable,2022-10-25 22:17:03.000 +01004C200B0B4000,"Alwa's Awakening",status-playable,playable,2020-10-13 11:52:01.000 +01001B7012214000,"Alwa's Legacy",status-playable,playable,2020-12-13 13:00:57.000 +010002B00C534000,"American Fugitive",nvdec;status-playable,playable,2021-01-04 20:45:11.000 +010089D00A3FA000,"American Ninja Warrior: Challenge",nvdec;status-playable,playable,2021-06-09 13:11:17.000 +01003CC00D0BE000,"Amnesia: Collection",status-playable,playable,2022-10-04 13:36:15.000 +010041D00DEB2000,"Amoeba Battle - Microscopic RTS Action",status-playable,playable,2021-05-06 13:33:41.000 +010046500C8D2000,"Among the Sleep - Enhanced Edition",nvdec;status-playable,playable,2021-06-03 15:06:25.000 +0100B0C013912000,"Among Us",status-menus;online;ldn-broken,menus,2021-09-22 15:20:17.000 +010050900E1C6000,"Anarcute",status-playable,playable,2021-02-22 13:17:59.000 +01009EE0111CC000,"Ancestors Legacy",status-playable;nvdec;UE4,playable,2022-10-01 12:25:36.000 +010021700BC56000,"Ancient Rush 2",UE4;crash;status-menus,menus,2020-07-14 14:58:47.000 +0100AE000AEBC000,"Angels of Death",nvdec;status-playable,playable,2021-02-22 14:17:15.000 +010001E00A5F6000,"AngerForce: Reloaded for Nintendo Switch",status-playable,playable,2022-07-21 10:37:17.000 +0100F3500D05E000,"Angry Bunnies: Colossal Carrot Crusade",status-playable;online-broken,playable,2022-09-04 14:53:26.000 +010084500C7DC000,"Angry Video Game Nerd I & II Deluxe",crash;status-ingame,ingame,2020-12-12 23:59:54.000 +0100706005B6A000,"Anima: Gate of Memories",nvdec;status-playable,playable,2021-06-16 18:13:18.000 +010033F00B3FA000,"Anima: Gate of Memories - Arcane Edition",nvdec;status-playable,playable,2021-01-26 16:55:51.000 +01007A400B3F8000,"Anima: Gate of Memories - The Nameless Chronicles",status-playable,playable,2021-06-14 14:33:06.000 +0100F38011CFE000,"Animal Crossing: New Horizons Island Transfer Tool",services;status-ingame;Needs Update;Incomplete,ingame,2022-12-07 13:51:19.000 +01006F8002326000,"Animal Crossing™: New Horizons",gpu;status-ingame;crash;nvdec;online-broken;ldn-works;mac-bug,ingame,2024-09-23 13:31:49.000 +010019500E642000,"Animal Fight Club",gpu;status-ingame,ingame,2020-12-13 13:13:33.000 +01002F4011A8E000,"Animal Fun for Toddlers and Kids",services;status-boots,boots,2020-12-15 16:45:29.000 +010035500CA0E000,"Animal Hunter Z",status-playable,playable,2020-12-13 12:50:35.000 +010033C0121DC000,"Animal Pairs - Matching & Concentration Game for Toddlers & Kids",services;status-boots,boots,2021-11-29 23:43:14.000 +010065B009B3A000,"Animal Rivals: Nintendo Switch Edition",status-playable,playable,2021-02-22 14:02:42.000 +0100EFE009424000,"Animal Super Squad",UE4;status-playable,playable,2021-04-23 20:50:50.000 +0100A16010966000,"Animal Up!",status-playable,playable,2020-12-13 15:39:02.000 +010020D01AD24000,"ANIMAL WELL",status-playable,playable,2024-05-22 18:01:49.000 +0100451012492000,"Animals for Toddlers",services;status-boots,boots,2020-12-15 17:27:27.000 +010098600CF06000,"Animated Jigsaws Collection",nvdec;status-playable,playable,2020-12-15 15:58:34.000 +0100A1900B5B8000,"Animated Jigsaws: Beautiful Japanese Scenery Demo",nvdec;status-playable,playable,2021-02-10 13:49:56.000 +010062500EB84000,"Anime Studio Story",status-playable,playable,2020-12-15 18:14:05.000 +01002B300EB86000,"Anime Studio Story Demo",status-playable,playable,2021-02-10 14:50:39.000 +010097600C322000,"ANIMUS",status-playable,playable,2020-12-13 15:11:47.000 +0100E5A00FD38000,"ANIMUS: Harbinger",status-playable,playable,2022-09-13 22:09:20.000 +010055500CCD2000,"Ankh Guardian - Treasure of the Demon's Temple",status-playable,playable,2020-12-13 15:55:49.000 +01009E600D78C000,"Anode",status-playable,playable,2020-12-15 17:18:58.000 +0100CB9018F5A000,"Another Code™: Recollection",gpu;status-ingame;crash,ingame,2024-09-06 05:58:52.000 +01001A900D312000,"Another Sight",UE4;gpu;nvdec;status-ingame,ingame,2020-12-03 16:49:59.000 +01003C300AAAE000,"Another World",slow;status-playable,playable,2022-07-21 10:42:38.000 +01000FD00DF78000,"AnShi",status-playable;nvdec;UE4,playable,2022-10-21 19:37:01.000 +010054C00D842000,"Anthill",services;status-menus;nvdec,menus,2021-11-18 09:25:25.000 +0100596011E20000,"Anti Hero Bundle",status-playable;nvdec,playable,2022-10-21 20:10:30.000 +0100016007154000,"Antiquia Lost",status-playable,playable,2020-05-28 11:57:32.000 +0100FE1011400000,"AntVentor",nvdec;status-playable,playable,2020-12-15 20:09:27.000 +0100FA100620C000,"Ao no Kanata no Four Rhythm",status-playable,playable,2022-07-21 10:50:42.000 +010047000E9AA000,"AO Tennis 2",status-playable;online-broken,playable,2022-09-17 12:05:07.000 +0100990011866000,"Aokana - Four Rhythms Across the Blue",status-playable,playable,2022-10-04 13:50:26.000 +01005B100C268000,"Ape Out",status-playable,playable,2022-09-26 19:04:47.000 +010054500E6D4000,"Ape Out DEMO",status-playable,playable,2021-02-10 14:33:06.000 +010051C003A08000,"Aperion Cyberstorm",status-playable,playable,2020-12-14 00:40:16.000 +01008CA00D71C000,"Aperion Cyberstorm [DEMO]",status-playable,playable,2021-02-10 15:53:21.000 +01008FC00C5BC000,"Apocalipsis Wormwood Edition",deadlock;status-menus,menus,2020-05-27 12:56:37.000 +010045D009EFC000,"Apocryph: an old-school shooter",gpu;status-ingame,ingame,2020-12-13 23:24:10.000 +010020D01B890000,"Apollo Justice: Ace Attorney Trilogy",status-playable,playable,2024-06-21 21:54:27.000 +01005F20116A0000,"Apparition",nvdec;slow;status-ingame,ingame,2020-12-13 23:57:04.000 +0100AC10085CE000,"AQUA KITTY UDX",online;status-playable,playable,2021-04-12 15:34:11.000 +0100FE0010886000,"Aqua Lungers",crash;status-ingame,ingame,2020-12-14 11:25:57.000 +0100D0D00516A000,"Aqua Moto Racing Utopia",status-playable,playable,2021-02-21 21:21:00.000 +010071800BA74000,"Aragami: Shadow Edition",nvdec;status-playable,playable,2021-02-21 20:33:23.000 +0100C7D00E6A0000,"Arc of Alchemist",status-playable;nvdec,playable,2022-10-07 19:15:54.000 +0100BE80097FA000,"Arcade Archives 10-Yard Fight",online;status-playable,playable,2021-03-25 21:26:41.000 +01005DD00BE08000,"Arcade Archives ALPHA MISSION",online;status-playable,playable,2021-04-15 09:20:43.000 +010083800DC70000,"Arcade Archives ALPINE SKI",online;status-playable,playable,2021-04-15 09:28:46.000 +0100A5700AF32000,"Arcade Archives ARGUS",online;status-playable,playable,2021-04-16 06:51:25.000 +010014F001DE2000,"Arcade Archives Armed F",online;status-playable,playable,2021-04-16 07:00:17.000 +0100BEC00C7A2000,"Arcade Archives ATHENA",online;status-playable,playable,2021-04-16 07:10:12.000 +0100426001DE4000,"Arcade Archives Atomic Robo-Kid",online;status-playable,playable,2021-04-16 07:20:29.000 +0100192009824000,"Arcade Archives BOMB JACK",online;status-playable,playable,2021-04-16 09:48:26.000 +010007A00980C000,"Arcade Archives City CONNECTION",online;status-playable,playable,2021-03-25 22:16:15.000 +0100EDC00E35A000,"Arcade Archives CLU CLU LAND",online;status-playable,playable,2021-04-16 10:00:42.000 +0100BB1001DD6000,"Arcade Archives CRAZY CLIMBER",online;status-playable,playable,2021-03-25 22:24:15.000 +0100E9E00B052000,"Arcade Archives DONKEY KONG",Needs Update;crash;services;status-menus,menus,2021-03-24 18:18:43.000 +0100F25001DD0000,"Arcade Archives DOUBLE DRAGON",online;status-playable,playable,2021-03-25 22:44:34.000 +01009E3001DDE000,"Arcade Archives DOUBLE DRAGON II The Revenge",online;status-playable,playable,2021-04-12 16:05:29.000 +0100496006EC8000,"Arcade Archives FRONT LINE",online;status-playable,playable,2021-05-05 14:10:49.000 +01009A4008A30000,"Arcade Archives HEROIC EPISODE",online;status-playable,playable,2021-03-25 23:01:26.000 +01007D200D3FC000,"Arcade Archives ICE CLIMBER",online;status-playable,playable,2021-05-05 14:18:34.000 +010049400C7A8000,"Arcade Archives IKARI WARRIORS",online;status-playable,playable,2021-05-05 14:24:46.000 +01000DB00980A000,"Arcade Archives Ikki",online;status-playable,playable,2021-03-25 23:11:28.000 +010008300C978000,"Arcade Archives IMAGE FIGHT",online;status-playable,playable,2021-05-05 14:31:21.000 +010010B008A36000,"Arcade Archives Kid Niki Radical Ninja",audio;status-ingame;online,ingame,2022-07-21 11:02:04.000 +0100E7C001DE0000,"Arcade Archives Kid's Horehore Daisakusen",online;status-playable,playable,2021-04-12 16:21:29.000 +0100F380105A4000,"Arcade Archives LIFE FORCE",status-playable,playable,2020-09-04 13:26:25.000 +0100755004608000,"Arcade Archives Mario Bros.",online;status-playable,playable,2021-03-26 11:31:32.000 +01000BE001DD8000,"Arcade Archives MOON CRESTA",online;status-playable,playable,2021-05-05 14:39:29.000 +01003000097FE000,"Arcade Archives MOON PATROL",online;status-playable,playable,2021-03-26 11:42:04.000 +01003EF00D3B4000,"Arcade Archives NINJA GAIDEN",audio;online;status-ingame,ingame,2021-04-12 16:27:53.000 +01002F300D2C6000,"Arcade Archives Ninja Spirit",online;status-playable,playable,2021-05-05 14:45:31.000 +0100369001DDC000,"Arcade Archives Ninja-Kid",online;status-playable,playable,2021-03-26 20:55:07.000 +01004A200BB48000,"Arcade Archives OMEGA FIGHTER",crash;services;status-menus,menus,2020-08-18 20:50:54.000 +01007F8010C66000,"Arcade Archives PLUS ALPHA",audio;status-ingame,ingame,2020-07-04 20:47:55.000 +0100A6E00D3F8000,"Arcade Archives POOYAN",online;status-playable,playable,2021-05-05 17:58:19.000 +01000D200C7A4000,"Arcade Archives PSYCHO SOLDIER",online;status-playable,playable,2021-05-05 18:02:19.000 +01001530097F8000,"Arcade Archives PUNCH-OUT!!",online;status-playable,playable,2021-03-25 22:10:55.000 +010081E001DD2000,"Arcade Archives Renegade",status-playable;online,playable,2022-07-21 11:45:40.000 +0100FBA00E35C000,"Arcade Archives ROAD FIGHTER",online;status-playable,playable,2021-05-05 18:09:17.000 +010060000BF7C000,"Arcade Archives ROUTE 16",online;status-playable,playable,2021-05-05 18:40:41.000 +0100C2D00981E000,"Arcade Archives RYGAR",online;status-playable,playable,2021-04-15 08:48:30.000 +01007A4009834000,"Arcade Archives Shusse Ozumo",online;status-playable,playable,2021-05-05 17:52:25.000 +010008F00B054000,"Arcade Archives Sky Skipper",online;status-playable,playable,2021-04-15 08:58:09.000 +01008C900982E000,"Arcade Archives Solomon's Key",online;status-playable,playable,2021-04-19 16:27:18.000 +010069F008A38000,"Arcade Archives STAR FORCE",online;status-playable,playable,2021-04-15 08:39:09.000 +0100422001DDA000,"Arcade Archives TERRA CRESTA",crash;services;status-menus,menus,2020-08-18 20:20:55.000 +0100348001DE6000,"Arcade Archives TERRA FORCE",online;status-playable,playable,2021-04-16 20:03:27.000 +0100DFD016B7A000,"Arcade Archives TETRIS® THE GRAND MASTER",status-playable,playable,2024-06-23 01:50:29.000 +0100DC000983A000,"Arcade Archives THE NINJA WARRIORS",online;slow;status-ingame,ingame,2021-04-16 19:54:56.000 +0100AF300D2E8000,"Arcade Archives TIME PILOT",online;status-playable,playable,2021-04-16 19:22:31.000 +010029D006ED8000,"Arcade Archives Traverse USA",online;status-playable,playable,2021-04-15 08:11:06.000 +010042200BE0C000,"Arcade Archives URBAN CHAMPION",online;status-playable,playable,2021-04-16 10:20:03.000 +01004EC00E634000,"Arcade Archives VS. GRADIUS",online;status-playable,playable,2021-04-12 14:53:58.000 +010021D00812A000,"Arcade Archives VS. SUPER MARIO BROS.",online;status-playable,playable,2021-04-08 14:48:11.000 +01001B000D8B6000,"Arcade Archives WILD WESTERN",online;status-playable,playable,2021-04-16 10:11:36.000 +010050000D6C4000,"Arcade Classics Anniversary Collection",status-playable,playable,2021-06-03 13:55:10.000 +01005A8010C7E000,"ARCADE FUZZ",status-playable,playable,2020-08-15 12:37:36.000 +010077000F620000,"Arcade Spirits",status-playable,playable,2020-06-21 11:45:03.000 +0100E680149DC000,"Arcaea",status-playable,playable,2023-03-16 19:31:21.000 +01003C2010C78000,"Archaica: The Path Of Light",crash;status-nothing,nothing,2020-10-16 13:22:26.000 +01004DA012976000,"Area 86",status-playable,playable,2020-12-16 16:45:52.000 +0100691013C46000,"ARIA CHRONICLE",status-playable,playable,2022-11-16 13:50:55.000 +0100D4A00B284000,"ARK: Survival Evolved",gpu;status-ingame;nvdec;online-broken;UE4;ldn-untested,ingame,2024-04-16 00:53:56.000 +0100C56012C96000,"Arkanoid vs. Space Invaders",services;status-ingame,ingame,2021-01-21 12:50:30.000 +010069A010606000,"Arkham Horror: Mother's Embrace",nvdec;status-playable,playable,2021-04-19 15:40:55.000 +0100C5B0113A0000,"Armed 7 DX",status-playable,playable,2020-12-14 11:49:56.000 +010070A00A5F4000,"Armello",nvdec;status-playable,playable,2021-01-07 11:43:26.000 +0100A5400AC86000,"ARMS Demo",status-playable,playable,2021-02-10 16:30:13.000 +01009B500007C000,"ARMS™",status-playable;ldn-works;LAN,playable,2024-08-28 07:49:24.000 +0100184011B32000,"Arrest of a stone Buddha",status-nothing;crash,nothing,2022-12-07 16:55:00.000 +01007AB012102000,"Arrog",status-playable,playable,2020-12-16 17:20:50.000 +01008EC006BE2000,"Art of Balance",gpu;status-ingame;ldn-works,ingame,2022-07-21 17:13:57.000 +010062F00CAE2000,"Art of Balance DEMO",gpu;slow;status-ingame,ingame,2021-02-10 17:17:12.000 +01006AA013086000,"Art Sqool",status-playable;nvdec,playable,2022-10-16 20:42:37.000 +0100CDD00DA70000,"Artifact Adventure Gaiden DX",status-playable,playable,2020-12-16 17:49:25.000 +0100C2500CAB6000,"Ary and the Secret of Seasons",status-playable,playable,2022-10-07 20:45:09.000 +0100C9F00AAEE000,"ASCENDANCE",status-playable,playable,2021-01-05 10:54:40.000 +0100D5800DECA000,"Asemblance",UE4;gpu;status-ingame,ingame,2020-12-16 18:01:23.000 +0100E4C00DE30000,"Ash of Gods: Redemption",deadlock;status-nothing,nothing,2020-08-10 18:08:32.000 +010027B00E40E000,"Ashen",status-playable;nvdec;online-broken;UE4,playable,2022-09-17 12:19:14.000 +01007B000C834000,"Asphalt Legends Unite",services;status-menus;crash;online-broken,menus,2022-12-07 13:28:29.000 +01007F600B134000,"Assassin's Creed® III: Remastered",status-boots;nvdec,boots,2024-06-25 20:12:11.000 +010044700DEB0000,"Assassin’s Creed®: The Rebel Collection",gpu;status-ingame,ingame,2024-05-19 07:58:56.000 +0100DF200B24C000,"Assault Android Cactus+",status-playable,playable,2021-06-03 13:23:55.000 +0100BF8012A30000,"Assault ChaingunS KM",crash;gpu;status-ingame,ingame,2020-12-14 12:48:34.000 +0100C5E00E540000,"Assault on Metaltron Demo",status-playable,playable,2021-02-10 19:48:06.000 +010057A00C1F6000,"Astebreed",status-playable,playable,2022-07-21 17:33:54.000 +010081500EA1E000,"Asterix & Obelix XXL 3 - The Crystal Menhir",gpu;status-ingame;nvdec;regression,ingame,2022-11-28 14:19:23.000 +0100F46011B50000,"Asterix & Obelix XXL: Romastered",gpu;status-ingame;nvdec;opengl,ingame,2023-08-16 21:22:06.000 +01007300020FA000,"ASTRAL CHAIN",status-playable,playable,2024-07-17 18:02:19.000 +0100E5F00643C000,"Astro Bears Party",status-playable,playable,2020-05-28 11:21:58.000 +0100F0400351C000,"Astro Duel Deluxe",32-bit;status-playable,playable,2021-06-03 11:21:48.000 +0100B80010C48000,"Astrologaster",cpu;status-nothing;32-bit;crash,nothing,2023-06-28 15:39:31.000 +0100DF401249C000,"AstroWings: Space War",status-playable,playable,2020-12-14 13:10:44.000 +010099801870E000,"Atari 50: The Anniversary Celebration",slow;status-playable,playable,2022-11-14 19:42:10.000 +010088600C66E000,"Atelier Arland series Deluxe Pack",nvdec;status-playable,playable,2021-04-08 15:33:15.000 +0100D9D00EE8C000,"Atelier Ayesha: The Alchemist of Dusk DX",status-menus;crash;nvdec;Needs Update,menus,2021-11-24 07:29:54.000 +0100E5600EE8E000,"Atelier Escha & Logy: Alchemists of the Dusk Sky DX",status-playable;nvdec,playable,2022-11-20 16:01:41.000 +010023201421E000,"Atelier Firis: The Alchemist and the Mysterious Journey DX",gpu;status-ingame;nvdec,ingame,2022-10-25 22:46:19.000 +0100B1400CD50000,"Atelier Lulua ~The Scion of Arland~",nvdec;status-playable,playable,2020-12-16 14:29:19.000 +010009900947A000,"Atelier Lydie & Suelle ~The Alchemists and the Mysterious Paintings~",nvdec;status-playable,playable,2021-06-03 18:37:01.000 +01001A5014220000,"Atelier Lydie & Suelle: The Alchemists and the Mysterious Paintings DX",status-playable,playable,2022-10-25 23:06:20.000 +0100ADD00C6FA000,"Atelier Meruru ~The Apprentice of Arland~ DX",nvdec;status-playable,playable,2020-06-12 00:50:48.000 +01002D700B906000,"Atelier Rorona Arland no Renkinjutsushi DX (JP)",status-playable;nvdec,playable,2022-12-02 17:26:54.000 +01009A9012022000,"Atelier Ryza 2: Lost Legends & the Secret Fairy",status-playable,playable,2022-10-16 21:06:06.000 +0100D1900EC80000,"Atelier Ryza: Ever Darkness & the Secret Hideout",status-playable,playable,2023-10-15 16:36:50.000 +010005C00EE90000,"Atelier Shallie: Alchemists of the Dusk Sea DX",nvdec;status-playable,playable,2020-11-25 20:54:12.000 +010082A01538E000,"Atelier Sophie 2: The Alchemist of the Mysterious Dream",status-ingame;crash,ingame,2022-12-01 04:34:03.000 +01009BC00C6F6000,"Atelier Totori ~The Adventurer of Arland~ DX",nvdec;status-playable,playable,2020-06-12 01:04:56.000 +0100B9400FA38000,"ATOM RPG",status-playable;nvdec,playable,2022-10-22 10:11:48.000 +01005FE00EC4E000,"Atomic Heist",status-playable,playable,2022-10-16 21:24:32.000 +0100AD30095A4000,"Atomicrops",status-playable,playable,2022-08-06 10:05:07.000 +01000D1006CEC000,"ATOMIK: RunGunJumpGun",status-playable,playable,2020-12-14 13:19:24.000 +0100FB500631E000,"ATOMINE",gpu;nvdec;slow;status-playable,playable,2020-12-14 18:56:50.000 +010039600E7AC000,"Attack of the Toy Tanks",slow;status-ingame,ingame,2020-12-14 12:59:12.000 +010034500641A000,"Attack on Titan 2",status-playable,playable,2021-01-04 11:40:01.000 +01000F600B01E000,"ATV Drift & Tricks",UE4;online;status-playable,playable,2021-04-08 17:29:17.000 +0100AA800DA42000,"Automachef",status-playable,playable,2020-12-16 19:51:25.000 +01006B700EA6A000,"Automachef Demo",status-playable,playable,2021-02-10 20:35:37.000 +0100B280106A0000,"Aviary Attorney: Definitive Edition",status-playable,playable,2020-08-09 20:32:12.000 +010064600F982000,"AVICII Invector",status-playable,playable,2020-10-25 12:12:56.000 +0100E100128BA000,"AVICII Invector Demo",status-playable,playable,2021-02-10 21:04:58.000 +01008FB011248000,"AvoCuddle",status-playable,playable,2020-09-02 14:50:13.000 +0100085012D64000,"Awakening of Cthulhu",UE4;status-playable,playable,2021-04-26 13:03:07.000 +01002F1005F3C000,"Away: Journey To The Unexpected",status-playable;nvdec;vulkan-backend-bug,playable,2022-11-06 15:31:04.000 +0100B8C00CFCE000,"Awesome Pea",status-playable,playable,2020-10-11 12:39:23.000 +010023800D3F2000,"Awesome Pea (Demo)",status-playable,playable,2021-02-10 21:48:21.000 +0100B7D01147E000,"Awesome Pea 2",status-playable,playable,2022-10-01 12:34:19.000 +0100D2011E28000,"Awesome Pea 2 (Demo)",crash;status-nothing,nothing,2021-02-10 22:08:27.000 +0100DA3011174000,"AXES",status-playable,playable,2021-04-08 13:01:58.000 +0100052004384000,"Axiom Verge",status-playable,playable,2020-10-20 01:07:18.000 +010075400DEC6000,"Ayakashi Koi Gikyoku《Trial version》",status-playable,playable,2021-02-10 22:22:11.000 +01006AF012FC8000,"Azur Lane: Crosswave",UE4;nvdec;status-playable,playable,2021-04-05 15:15:25.000 +0100C7D00DE24000,"Azuran Tales: TRIALS",status-playable,playable,2020-08-12 15:23:07.000 +01006FB00990E000,"Azure Reflections",nvdec;online;status-playable,playable,2021-04-08 13:18:25.000 +01004E90149AA000,"Azure Striker GUNVOLT 3",status-playable,playable,2022-08-10 13:46:49.000 +0100192003FA4000,"Azure Striker GUNVOLT: STRIKER PACK",32-bit;status-playable,playable,2024-02-10 23:51:21.000 +010031D012BA4000,"Azurebreak Heroes",status-playable,playable,2020-12-16 21:26:17.000 +01009B901145C000,"B.ARK",status-playable;nvdec,playable,2022-11-17 13:35:02.000 +01002CD00A51C000,"Baba Is You",status-playable,playable,2022-07-17 05:36:54.000 +0100F4100AF16000,"Back to Bed",nvdec;status-playable,playable,2020-12-16 20:52:04.000 +0100FEA014316000,"Backworlds",status-playable,playable,2022-10-25 23:20:34.000 +0100EAF00E32E000,"Bacon Man: An Adventure",status-menus;crash;nvdec,menus,2021-11-20 02:36:21.000 +01000CB00D094000,"Bad Dream: Coma",deadlock;status-boots,boots,2023-08-03 00:54:18.000 +0100B3B00D81C000,"Bad Dream: Fever",status-playable,playable,2021-06-04 18:33:12.000 +0100E98006F22000,"Bad North",status-playable,playable,2022-07-17 13:44:25.000 +010075000D092000,"Bad North Demo",status-playable,playable,2021-02-10 22:48:38.000 +01004C70086EC000,"BAFL - Brakes Are For Losers",status-playable,playable,2021-01-13 08:32:51.000 +010076B011EC8000,"Baila Latino",status-playable,playable,2021-04-14 16:40:24.000 +0100730011BDC000,"Bakugan: Champions of Vestroia",status-playable,playable,2020-11-06 19:07:39.000 +01008260138C4000,"Bakumatsu Renka SHINSENGUMI",status-playable,playable,2022-10-25 23:37:31.000 +0100438012EC8000,"BALAN WONDERWORLD",status-playable;nvdec;UE4,playable,2022-10-22 13:08:43.000 +0100E48013A34000,"Balan Wonderworld Demo",gpu;services;status-ingame;UE4;demo,ingame,2023-02-16 20:05:07.000 +0100CD801CE5E000,"Balatro",status-ingame,ingame,2024-04-21 02:01:53.000 +010010A00DA48000,"Baldur's Gate and Baldur's Gate II: Enhanced Editions",32-bit;status-playable,playable,2022-09-12 23:52:15.000 +0100BC400FB64000,"Balthazar's Dream",status-playable,playable,2022-09-13 00:13:22.000 +01008D30128E0000,"Bamerang",status-playable,playable,2022-10-26 00:29:39.000 +,"Bang Dream Girls Band Party for Nintendo Switch",status-playable,playable,2021-09-19 03:06:58.000 +010013C010C5C000,"Banner of the Maid",status-playable,playable,2021-06-14 15:23:37.000 +0100388008758000,"Banner Saga 2",crash;status-boots,boots,2021-01-13 08:56:09.000 +010071E00875A000,"Banner Saga 3",slow;status-boots,boots,2021-01-11 16:53:57.000 +0100CE800B94A000,"Banner Saga Trilogy",slow;status-playable,playable,2024-03-06 11:25:20.000 +0100425009FB2000,"Baobabs Mausoleum Ep.1: Ovnifagos Don't Eat Flamingos",status-playable,playable,2020-07-15 05:06:29.000 +010079300E976000,"Baobabs Mausoleum Ep.2: 1313 Barnabas Dead End Drive",status-playable,playable,2020-12-17 11:22:50.000 +01006D300FFA6000,"Baobabs Mausoleum Ep.3: Un Pato en Muertoburgo",nvdec;status-playable,playable,2020-12-17 11:43:10.000 +0100D3000AEC2000,"Baobabs Mausoleum: DEMO",status-playable,playable,2021-02-10 22:59:25.000 +01003350102E2000,"Barbarous: Tavern of Emyr",status-playable,playable,2022-10-16 21:50:24.000 +0100F7E01308C000,"Barbearian",Needs Update;gpu;status-ingame,ingame,2021-06-28 16:27:50.000 +010039C0106C6000,"Baron: Fur Is Gonna Fly",status-boots;crash,boots,2022-02-06 02:05:43.000 +0100FB000EB96000,"Barry Bradford's Putt Panic Party",nvdec;status-playable,playable,2020-06-17 01:08:34.000 +01004860080A0000,"Baseball Riot",status-playable,playable,2021-06-04 18:07:27.000 +010038600B27E000,"Bastion",status-playable,playable,2022-02-15 14:15:24.000 +01005F3012748000,"Batbarian: Testament of the Primordials",status-playable,playable,2020-12-17 12:00:59.000 +0100C07018CA6000,"Baten Kaitos I & II HD Remaster (Europe/USA)",services;status-boots;Needs Update,boots,2023-10-01 00:44:32.000 +0100F28018CA4000,"Baten Kaitos I & II HD Remaster (Japan)",services;status-boots;Needs Update,boots,2023-10-24 23:11:54.000 +0100011005D92000,"Batman - The Telltale Series",nvdec;slow;status-playable,playable,2021-01-11 18:19:35.000 +01003F00163CE000,"Batman: Arkham City",status-playable,playable,2024-09-11 00:30:19.000 +0100ACD0163D0000,"Batman: Arkham Knight",gpu;status-ingame;mac-bug,ingame,2024-06-25 20:24:42.000 +0100E6300AA3A000,"Batman: The Enemy Within",crash;status-nothing,nothing,2020-10-16 05:49:27.000 +0100747011890000,"Battle Axe",status-playable,playable,2022-10-26 00:38:01.000 +0100551001D88000,"Battle Chasers: Nightwar",nvdec;slow;status-playable,playable,2021-01-12 12:27:34.000 +0100CC2001C6C000,"Battle Chef Brigade Deluxe",status-playable,playable,2021-01-11 14:16:28.000 +0100DBB00CAEE000,"Battle Chef Brigade Demo",status-playable,playable,2021-02-10 23:15:07.000 +0100A3B011EDE000,"Battle Hunters",gpu;status-ingame,ingame,2022-11-12 09:19:17.000 +010035E00C1AE000,"Battle of Kings",slow;status-playable,playable,2020-12-17 12:45:23.000 +0100D2800EB40000,"Battle Planet - Judgement Day",status-playable,playable,2020-12-17 14:06:20.000 +0100C4D0093EA000,"Battle Princess Madelyn",status-playable,playable,2021-01-11 13:47:23.000 +0100A7500DF64000,"Battle Princess Madelyn Royal Edition",status-playable,playable,2022-09-26 19:14:49.000 +010099B00E898000,"Battle Supremacy - Evolution",gpu;status-boots;nvdec,boots,2022-02-17 09:02:50.000 +0100DEB00D5A8000,"Battle Worlds: Kronos",nvdec;status-playable,playable,2021-06-04 17:48:02.000 +0100650010DD4000,"Battleground",status-ingame;crash,ingame,2021-09-06 11:53:23.000 +010044E00D97C000,"BATTLESLOTHS",status-playable,playable,2020-10-03 08:32:22.000 +010059C00E39C000,"Battlestar Galactica Deadlock",nvdec;status-playable,playable,2020-06-27 17:35:44.000 +01006D800A988000,"Battlezone Gold Edition",gpu;ldn-untested;online;status-boots,boots,2021-06-04 18:36:05.000 +010048300D5C2000,"BATTLLOON",status-playable,playable,2020-12-17 15:48:23.000 +0100194010422000,"bayala - the game",status-playable,playable,2022-10-04 14:09:25.000 +0100CF5010FEC000,"Bayonetta Origins: Cereza and the Lost Demon™",gpu;status-ingame,ingame,2024-02-27 01:39:49.000 +010002801A3FA000,"Bayonetta Origins: Cereza and the Lost Demon™ Demo",gpu;status-ingame;demo,ingame,2024-02-17 06:06:28.000 +010076F0049A2000,"Bayonetta™",status-playable;audout,playable,2022-11-20 15:51:59.000 +01007960049A0000,"Bayonetta™ 2",status-playable;nvdec;ldn-works;LAN,playable,2022-11-26 03:46:09.000 +01004A4010FEA000,"Bayonetta™ 3",gpu;status-ingame;crash;nvdec;vulkan-backend-bug;opengl-backend-bug;amd-vendor-bug;ASTC,ingame,2024-09-28 14:34:33.000 +01002FA00DE72000,"BDSM: Big Drunk Satanic Massacre",status-playable,playable,2021-03-04 21:28:22.000 +01003A1010E3C000,"BE-A Walker",slow;status-ingame,ingame,2020-09-02 15:00:31.000 +010095C00406C000,"Beach Buggy Racing",online;status-playable,playable,2021-04-13 23:16:50.000 +010020700DE04000,"Bear With Me: The Lost Robots",nvdec;status-playable,playable,2021-02-27 14:20:10.000 +010024200E97E800,"Bear With Me: The Lost Robots Demo",nvdec;status-playable,playable,2021-02-12 22:38:12.000 +0100C0E014A4E000,"Bear's Restaurant",status-playable,playable,2024-08-11 21:26:59.000 +,"BEAST Darling! ~Kemomimi Danshi to Himitsu no Ryou~",crash;status-menus,menus,2020-10-04 06:12:08.000 +01009C300BB4C000,"Beat Cop",status-playable,playable,2021-01-06 19:26:48.000 +01002D20129FC000,"Beat Me!",status-playable;online-broken,playable,2022-10-16 21:59:26.000 +01006B0014590000,"BEAUTIFUL DESOLATION",gpu;status-ingame;nvdec,ingame,2022-10-26 10:34:38.000 +01009E700DB2E000,"Bee Simulator",UE4;crash;status-boots,boots,2020-07-15 12:13:13.000 +010018F007786000,"BeeFense BeeMastered",status-playable,playable,2022-11-17 15:38:12.000 +0100558010B26000,"Behold the Kickmen",status-playable,playable,2020-06-27 12:49:45.000 +0100D1300C1EA000,"Beholder: Complete Edition",status-playable,playable,2020-10-16 12:48:58.000 +01006E1004404000,"Ben 10",nvdec;status-playable,playable,2021-02-26 14:08:35.000 +01009CD00E3AA000,"Ben 10: Power Trip!",status-playable;nvdec,playable,2022-10-09 10:52:12.000 +010074500BBC4000,"Bendy and the Ink Machine",status-playable,playable,2023-05-06 20:35:39.000 +010068600AD16000,"Beyblade Burst Battle Zero",services;status-menus;crash;Needs Update,menus,2022-11-20 15:48:32.000 +010056500CAD8000,"Beyond Enemy Lines: Covert Operations",status-playable;UE4,playable,2022-10-01 13:11:50.000 +0100B8F00DACA000,"Beyond Enemy Lines: Essentials",status-playable;nvdec;UE4,playable,2022-09-26 19:48:16.000 +0100BF400AF38000,"Bibi & Tina – Adventures with Horses",nvdec;slow;status-playable,playable,2021-01-13 08:58:09.000 +010062400E69C000,"Bibi & Tina at the horse farm",status-playable,playable,2021-04-06 16:31:39.000 +01005FF00AF36000,"Bibi Blocksberg – Big Broom Race 3",status-playable,playable,2021-01-11 19:07:16.000 +010062B00A874000,"Big Buck Hunter Arcade",nvdec;status-playable,playable,2021-01-12 20:31:39.000 +010088100C35E000,"Big Crown: Showdown",status-menus;nvdec;online;ldn-untested,menus,2022-07-17 18:25:32.000 +0100A42011B28000,"Big Dipper",status-playable,playable,2021-06-14 15:08:19.000 +010077E00F30E000,"Big Pharma",status-playable,playable,2020-07-14 15:27:30.000 +010007401287E000,"BIG-Bobby-Car - The Big Race",slow;status-playable,playable,2020-12-10 14:25:06.000 +010057700FF7C000,"Billion Road",status-playable,playable,2022-11-19 15:57:43.000 +010087D008D64000,"BINGO for Nintendo Switch",status-playable,playable,2020-07-23 16:17:36.000 +01004BA017CD6000,"Biomutant",status-ingame;crash,ingame,2024-05-16 15:46:36.000 +01002620102C6000,"BioShock 2 Remastered",services;status-nothing,nothing,2022-10-29 14:39:22.000 +0100D560102C8000,"BioShock Infinite: The Complete Edition",services-horizon;status-nothing;crash,nothing,2024-08-11 21:35:01.000 +0100AD10102B2000,"BioShock Remastered",services-horizon;status-boots;crash;Needs Update,boots,2024-06-06 01:08:52.000 +010053B0117F8000,"Biped",status-playable;nvdec,playable,2022-10-01 13:32:58.000 +01001B700B278000,"Bird Game +",status-playable;online,playable,2022-07-17 18:41:57.000 +0100B6B012FF4000,"Birds and Blocks Demo",services;status-boots;demo,boots,2022-04-10 04:53:03.000 +0100E62012D3C000,"BIT.TRIP RUNNER",status-playable,playable,2022-10-17 14:23:24.000 +01000AD012D3A000,"BIT.TRIP VOID",status-playable,playable,2022-10-17 14:31:23.000 +0100A0800EA9C000,"Bite the Bullet",status-playable,playable,2020-10-14 23:10:11.000 +010026E0141C8000,"Bitmaster",status-playable,playable,2022-12-13 14:05:51.000 +010061D00FD26000,"Biz Builder Delux",slow;status-playable,playable,2020-12-15 21:36:25.000 +0100DD1014AB8000,"Black Book",status-playable;nvdec,playable,2022-12-13 16:38:53.000 +010049000B69E000,"Black Future '88",status-playable;nvdec,playable,2022-09-13 11:24:37.000 +01004BE00A682000,"Black Hole Demo",status-playable,playable,2021-02-12 23:02:17.000 +0100C3200E7E6000,"Black Legend",gpu;status-ingame;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-10-22 12:54:48.000 +010043A012A32000,"Blackjack Hands",status-playable,playable,2020-11-30 14:04:51.000 +0100A0A00E660000,"Blackmoor 2",status-playable;online-broken,playable,2022-09-26 20:26:34.000 +010032000EA2C000,"Blacksad: Under the Skin",status-playable,playable,2022-09-13 11:38:04.000 +01006B400C178000,"Blacksea Odyssey",status-playable;nvdec,playable,2022-10-16 22:14:34.000 +010068E013450000,"Blacksmith of the Sand Kingdom",status-playable,playable,2022-10-16 22:37:44.000 +0100C4400CB7C000,"BLADE ARCUS Rebellion From Shining",status-playable,playable,2022-07-17 18:52:28.000 +0100EA1018A2E000,"Blade Assault",audio;status-nothing,nothing,2024-04-29 14:32:50.000 +01009CC00E224000,"Blade II - The Return Of Evil",audio;status-ingame;crash;UE4,ingame,2021-11-14 02:49:59.000 +01005950022EC000,"Blade Strangers",status-playable;nvdec,playable,2022-07-17 19:02:43.000 +0100DF0011A6A000,"Bladed Fury",status-playable,playable,2022-10-26 11:36:26.000 +0100CFA00CC74000,"Blades of Time",deadlock;status-boots;online,boots,2022-07-17 19:19:58.000 +01006CC01182C000,"Blair Witch",status-playable;nvdec;UE4,playable,2022-10-01 14:06:16.000 +010039501405E000,"Blanc",gpu;slow;status-ingame,ingame,2023-02-22 14:00:13.000 +0100698009C6E000,"Blasphemous",nvdec;status-playable,playable,2021-03-01 12:15:31.000 +0100302010338000,"Blasphemous Demo",status-playable,playable,2021-02-12 23:49:56.000 +0100225000FEE000,"Blaster Master Zero",32-bit;status-playable,playable,2021-03-05 13:22:33.000 +01005AA00D676000,"Blaster Master Zero 2",status-playable,playable,2021-04-08 15:22:59.000 +010025B002E92000,"Blaster Master Zero Demo",status-playable,playable,2021-02-12 23:59:06.000 +0100E53013E1C000,"Blastoid Breakout",status-playable,playable,2021-01-25 23:28:02.000 +0100EE800C93E000,"BLAZBLUE CENTRALFICTION Special Edition",nvdec;status-playable,playable,2020-12-15 23:50:04.000 +0100B61008208000,"BLAZBLUE CROSS TAG BATTLE",nvdec;online;status-playable,playable,2021-01-05 20:29:37.000 +010021A00DE54000,"Blazing Beaks",status-playable,playable,2020-06-04 20:37:06.000 +0100C2700C252000,"Blazing Chrome",status-playable,playable,2020-11-16 04:56:54.000 +010091700EA2A000,"Bleep Bloop DEMO",nvdec;status-playable,playable,2021-02-13 00:20:53.000 +010089D011310000,"Blind Men",audout;status-playable,playable,2021-02-20 14:15:38.000 +0100743013D56000,"Blizzard® Arcade Collection",status-playable;nvdec,playable,2022-08-03 19:37:26.000 +0100F3500A20C000,"BlobCat",status-playable,playable,2021-04-23 17:09:30.000 +0100E1C00DB6C000,"Block-a-Pix Deluxe Demo",status-playable,playable,2021-02-13 00:37:39.000 +0100C6A01AD56000,"Bloo Kid",status-playable,playable,2024-05-01 17:18:04.000 +010055900FADA000,"Bloo Kid 2",status-playable,playable,2024-05-01 17:16:57.000 +0100EE5011DB6000,"Blood and Guts Bundle",status-playable,playable,2020-06-27 12:57:35.000 +01007E700D17E000,"Blood Waves",gpu;status-ingame,ingame,2022-07-18 13:04:46.000 +0100E060102AA000,"Blood will be Spilled",nvdec;status-playable,playable,2020-12-17 03:02:03.000 +01004B800AF5A000,"Bloodstained: Curse of the Moon",status-playable,playable,2020-09-04 10:42:17.000 +01004680124E6000,"Bloodstained: Curse of the Moon 2",status-playable,playable,2020-09-04 10:56:27.000 +010025A00DF2A000,"Bloodstained: Ritual of the Night",status-playable;nvdec;UE4,playable,2022-07-18 14:27:35.000 +0100E510143EC000,"Bloody Bunny, The Game",status-playable;nvdec;UE4,playable,2022-10-22 13:18:55.000 +0100B8400A1C6000,"Bloons TD 5",Needs Update;audio;gpu;services;status-boots,boots,2021-04-18 23:02:46.000 +01000EB01023E000,"Blossom Tales Demo",status-playable,playable,2021-02-13 14:22:53.000 +0100C1000706C000,"Blossom Tales: The Sleeping King",status-playable,playable,2022-07-18 16:43:07.000 +010073B010F6E000,"Blue Fire",status-playable;UE4,playable,2022-10-22 14:46:11.000 +0100721013510000,"Body of Evidence",status-playable,playable,2021-04-25 22:22:11.000 +0100AD1010CCE000,"Bohemian Killing",status-playable;vulkan-backend-bug,playable,2022-09-26 22:41:37.000 +010093700ECEC000,"Boku to Nurse no Kenshuu Nisshi",status-playable,playable,2022-11-21 20:38:34.000 +01001D900D9AC000,"Bokujou Monogatari Saikai no Mineraru Taun (Story of Seasons: Friends of Mineral Town)",slow;status-ingame;crash;Needs Update,ingame,2022-04-24 22:46:04.000 +0100317014B7C000,"Bomb Rush Cyberfunk",status-playable,playable,2023-09-28 19:51:57.000 +01007900080B6000,"Bomber Crew",status-playable,playable,2021-06-03 14:21:28.000 +0100A1F012948000,"Bomber Fox",nvdec;status-playable,playable,2021-04-19 17:58:13.000 +010087300445A000,"Bombslinger",services;status-menus,menus,2022-07-19 12:53:15.000 +01007A200F452000,"Book of Demons",status-playable,playable,2022-09-29 12:03:43.000 +010054500F564000,"Bookbound Brigade",status-playable,playable,2020-10-09 14:30:29.000 +01002E6013ED8000,"Boom Blaster",status-playable,playable,2021-03-24 10:55:56.000 +010081A00EE62000,"Boomerang Fu",status-playable,playable,2024-07-28 01:12:41.000 +010069F0135C4000,"Boomerang Fu Demo Version",demo;status-playable,playable,2021-02-13 14:38:13.000 +01009970122E4000,"Borderlands 3 Ultimate Edition",gpu;status-ingame,ingame,2024-07-15 04:38:14.000 +010064800F66A000,"Borderlands: Game of the Year Edition",slow;status-ingame;online-broken;ldn-untested,ingame,2023-07-23 21:10:36.000 +010096F00FF22000,"Borderlands: The Handsome Collection",status-playable,playable,2022-04-22 18:35:07.000 +010007400FF24000,"Borderlands: The Pre-Sequel",nvdec;status-playable,playable,2021-06-09 20:17:10.000 +01008E500AFF6000,"Boreal Blade",gpu;ldn-untested;online;status-ingame,ingame,2021-06-11 15:37:14.000 +010092C013FB8000,"BORIS THE ROCKET",status-playable,playable,2022-10-26 13:23:09.000 +010076F00EBE4000,"BOSSGARD",status-playable;online-broken,playable,2022-10-04 14:21:13.000 +010069B00EAC8000,"Bot Vice Demo",crash;demo;status-ingame,ingame,2021-02-13 14:52:42.000 +010081100FE08000,"Bouncy Bob 2",status-playable,playable,2020-07-14 16:51:53.000 +0100E1200DC1A000,"Bounty Battle",status-playable;nvdec,playable,2022-10-04 14:40:51.000 +0100B4700C57E000,"Bow to Blood: Last Captain Standing",slow;status-playable,playable,2020-10-23 10:51:21.000 +010040800BA8A000,"Box Align",crash;services;status-nothing,nothing,2020-04-03 17:26:56.000 +010018300D006000,"BOXBOY! + BOXGIRL!™",status-playable,playable,2020-11-08 01:11:54.000 +0100B7200E02E000,"BOXBOY! + BOXGIRL!™ Demo",demo;status-playable,playable,2021-02-13 14:59:08.000 +0100CA400B6D0000,"BQM -BlockQuest Maker-",online;status-playable,playable,2020-07-31 20:56:50.000 +0100E87017D0E000,"Bramble: The Mountain King",services-horizon;status-playable,playable,2024-03-06 09:32:17.000 +01000F5003068000,"Brave Dungeon + Dark Witch Story:COMBAT",status-playable,playable,2021-01-12 21:06:34.000 +01006DC010326000,"BRAVELY DEFAULT™ II",gpu;status-ingame;crash;Needs Update;UE4,ingame,2024-04-26 06:11:26.000 +0100B6801137E000,"Bravely Default™ II Demo",gpu;status-ingame;crash;UE4;demo,ingame,2022-09-27 05:39:47.000 +010081501371E000,"BraveMatch",status-playable;UE4,playable,2022-10-26 13:32:15.000 +0100F60017D4E000,"Bravery and Greed",gpu;deadlock;status-boots,boots,2022-12-04 02:23:47.000 +0100A42004718000,"BRAWL",nvdec;slow;status-playable,playable,2020-06-04 14:23:18.000 +010068F00F444000,"Brawl Chess",status-playable;nvdec,playable,2022-10-26 13:59:17.000 +0100C6800B934000,"Brawlhalla",online;opengl;status-playable,playable,2021-06-03 18:26:09.000 +010060200A4BE000,"Brawlout",ldn-untested;online;status-playable,playable,2021-06-04 17:35:35.000 +0100C1B00E1CA000,"Brawlout Demo",demo;status-playable,playable,2021-02-13 22:46:53.000 +010022C016DC8000,"Breakout: Recharged",slow;status-ingame,ingame,2022-11-06 15:32:57.000 +01000AA013A5E000,"Breathedge",UE4;nvdec;status-playable,playable,2021-05-06 15:44:28.000 +01003D50100F4000,"Breathing Fear",status-playable,playable,2020-07-14 15:12:29.000 +010026800BB06000,"Brick Breaker",nvdec;online;status-playable,playable,2020-12-15 18:26:23.000 +01002AD0126AE000,"Bridge Constructor: The Walking Dead",gpu;slow;status-ingame,ingame,2020-12-11 17:31:32.000 +01000B1010D8E000,"Bridge! 3",status-playable,playable,2020-10-08 20:47:24.000 +010011000EA7A000,"BRIGANDINE The Legend of Runersia",status-playable,playable,2021-06-20 06:52:25.000 +0100703011258000,"BRIGANDINE The Legend of Runersia Demo",status-playable,playable,2021-02-14 14:44:10.000 +01000BF00BE40000,"Bring Them Home",UE4;status-playable,playable,2021-04-12 14:14:43.000 +010060A00B53C000,"Broforce",ldn-untested;online;status-playable,playable,2021-05-28 12:23:38.000 +0100EDD0068A6000,"Broken Age",status-playable,playable,2021-06-04 17:40:32.000 +0100A5800F6AC000,"Broken Lines",status-playable,playable,2020-10-16 00:01:37.000 +01001E60085E6000,"Broken Sword 5 - the Serpent's Curse",status-playable,playable,2021-06-04 17:28:59.000 +0100F19011226000,"Brotherhood United Demo",demo;status-playable,playable,2021-02-14 21:10:57.000 +01000D500D08A000,"Brothers: A Tale of Two Sons",status-playable;nvdec;UE4,playable,2022-07-19 14:02:22.000 +0100B2700E90E000,"Brunch Club",status-playable,playable,2020-06-24 13:54:07.000 +010010900F7B4000,"Bubble Bobble 4 Friends: The Baron is Back!",nvdec;status-playable,playable,2021-06-04 15:27:55.000 +0100DBE00C554000,"Bubsy: Paws on Fire!",slow;status-ingame,ingame,2023-08-24 02:44:51.000 +0100089010A92000,"Bucket Knight",crash;status-ingame,ingame,2020-09-04 13:11:24.000 +0100F1B010A90000,"Bucket Knight demo",demo;status-playable,playable,2021-02-14 21:23:09.000 +01000D200AC0C000,"Bud Spencer & Terence Hill - Slaps And Beans",status-playable,playable,2022-07-17 12:37:00.000 +010051A00E99E000,"Bug Fables: The Everlasting Sapling",status-playable,playable,2020-06-09 11:27:00.000 +01003DD00D658000,"Bulletstorm: Duke of Switch Edition",status-playable;nvdec,playable,2022-03-03 08:30:24.000 +01006BB00E8FA000,"BurgerTime Party!",slow;status-playable,playable,2020-11-21 14:11:53.000 +01005780106E8000,"BurgerTime Party! Demo",demo;status-playable,playable,2021-02-14 21:34:16.000 +010078C00DB40000,"Buried Stars",status-playable,playable,2020-09-07 14:11:58.000 +0100DBF01000A000,"Burnout™ Paradise Remastered",nvdec;online;status-playable,playable,2021-06-13 02:54:46.000 +010066F00C76A000,"Bury me, my Love",status-playable,playable,2020-11-07 12:47:37.000 +010030D012FF6000,"Bus Driver Simulator",status-playable,playable,2022-10-17 13:55:27.000 +0100A9101418C000,"BUSTAFELLOWS",nvdec;status-playable,playable,2020-10-17 20:04:41.000 +0100177005C8A000,"BUTCHER",status-playable,playable,2021-01-11 18:50:17.000 +01000B900D8B0000,"Cadence of Hyrule: Crypt of the NecroDancer Featuring The Legend of Zelda",slow;status-playable;nvdec,playable,2024-04-01 22:43:40.000 +010065700EE06000,"Cadence of Hyrule: Crypt of the NecroDancer Featuring The Legend of Zelda Demo",demo;gpu;nvdec;status-ingame,ingame,2021-02-14 21:48:15.000 +01005C00117A8000,"Café Enchanté",status-playable,playable,2020-11-13 14:54:25.000 +010060400D21C000,"Cafeteria Nipponica Demo",demo;status-playable,playable,2021-02-14 22:11:35.000 +0100699012F82000,"Cake Bash Demo",crash;demo;status-ingame,ingame,2021-02-14 22:21:15.000 +01004FD00D66A000,"Caladrius Blaze",deadlock;status-nothing;nvdec,nothing,2022-12-07 16:44:37.000 +01004B500AB88000,"Calculation Castle : Greco's Ghostly Challenge Addition""""",32-bit;status-playable,playable,2020-11-01 23:40:11.000 +010045500B212000,"Calculation Castle : Greco's Ghostly Challenge Division """"",32-bit;status-playable,playable,2020-11-01 23:54:55.000 +0100ECE00B210000,"Calculation Castle : Greco's Ghostly Challenge Multiplication """"",32-bit;status-playable,playable,2020-11-02 00:04:33.000 +0100A6500B176000,"Calculation Castle : Greco's Ghostly Challenge Subtraction """"",32-bit;status-playable,playable,2020-11-01 23:47:42.000 +010004701504A000,"Calculator",status-playable,playable,2021-06-11 13:27:20.000 +010013A00E750000,"Calico",status-playable,playable,2022-10-17 14:44:28.000 +010046000EE40000,"Call of Cthulhu",status-playable;nvdec;UE4,playable,2022-12-18 03:08:30.000 +0100B4700BFC6000,"Call of Juarez: Gunslinger",gpu;status-ingame;nvdec,ingame,2022-09-17 16:49:46.000 +0100593008BDC000,"Can't Drive This",status-playable,playable,2022-10-22 14:55:17.000 +0100E4600B166000,"Candle: The Power of the Flame",nvdec;status-playable,playable,2020-05-26 12:10:20.000 +01001E0013208000,"Capcom Arcade Stadium",status-playable,playable,2021-03-17 05:45:14.000 +010094E00B52E000,"Capcom Beat 'Em Up Bundle",status-playable,playable,2020-03-23 18:31:24.000 +0100F6400A77E000,"CAPCOM BELT ACTION COLLECTION",status-playable;online;ldn-untested,playable,2022-07-21 20:51:23.000 +01009BF0072D4000,"Captain Toad™: Treasure Tracker",32-bit;status-playable,playable,2024-04-25 00:50:16.000 +01002C400B6B6000,"Captain Toad™: Treasure Tracker Demo",32-bit;demo;status-playable,playable,2021-02-14 22:36:09.000 +0100EAE010560000,"Captain Tsubasa: Rise of New Champions",status-playable;online-broken;vulkan-backend-bug,playable,2022-10-09 11:20:50.000 +01002320137CC000,"CAPTAIN TSUBASA: RISE OF NEW CHAMPIONS DEMO VERSION",slow;status-playable,playable,2021-02-14 22:45:35.000 +010048800D95C000,"Car Mechanic Manager",status-playable,playable,2020-07-23 18:50:17.000 +01007BD00AE70000,"Car Quest",deadlock;status-menus,menus,2021-11-18 08:59:18.000 +0100DA70115E6000,"Caretaker",status-playable,playable,2022-10-04 14:52:24.000 +0100DD6014870000,"Cargo Crew Driver",status-playable,playable,2021-04-19 12:54:22.000 +010088C0092FE000,"Carnival Games®",status-playable;nvdec,playable,2022-07-21 21:01:22.000 +01005F5011AC4000,"Carnivores: Dinosaur Hunt",status-playable,playable,2022-12-14 18:46:06.000 +0100B1600E9AE000,"CARRION",crash;status-nothing,nothing,2020-08-13 17:15:12.000 +01008D1001512000,"Cars 3: Driven to Win",gpu;status-ingame,ingame,2022-07-21 21:21:05.000 +0100810012A1A000,"Carto",status-playable,playable,2022-09-04 15:37:06.000 +0100085003A2A000,"Cartoon Network Battle Crashers",status-playable,playable,2022-07-21 21:55:40.000 +0100C4C0132F8000,"CASE 2: Animatronics Survival",status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-10-09 11:45:03.000 +010066F01A0E0000,"Cassette Beasts",status-playable,playable,2024-07-22 20:38:43.000 +010001300D14A000,"Castle Crashers Remastered",gpu;status-boots,boots,2024-08-10 09:21:20.000 +0100F6D01060E000,"Castle Crashers Remastered Demo",gpu;status-boots;demo,boots,2022-04-10 10:57:10.000 +01003C100445C000,"Castle of Heart",status-playable;nvdec,playable,2022-07-21 23:10:45.000 +0100F5500FA0E000,"Castle of no Escape 2",status-playable,playable,2022-09-13 13:51:42.000 +0100DA2011F18000,"Castle Pals",status-playable,playable,2021-03-04 21:00:33.000 +010097C00AB66000,"CastleStorm",status-playable;nvdec,playable,2022-07-21 22:49:14.000 +010007400EB64000,"CastleStorm II",UE4;crash;nvdec;status-boots,boots,2020-10-25 11:22:44.000 +01001A800D6BC000,"Castlevania Anniversary Collection",audio;status-playable,playable,2020-05-23 11:40:29.000 +010076000C86E000,"Cat Girl Without Salad: Amuse-Bouche",status-playable,playable,2022-09-03 13:01:47.000 +0100A2F006FBE000,"Cat Quest",status-playable,playable,2020-04-02 23:09:32.000 +01008BE00E968000,"Cat Quest II",status-playable,playable,2020-07-06 23:52:09.000 +0100E86010220000,"Cat Quest II Demo",demo;status-playable,playable,2021-02-15 14:11:57.000 +0100BAE0077E4000,"Catherine Full Body for Nintendo Switch (JP)",Needs Update;gpu;status-ingame,ingame,2021-02-21 18:06:11.000 +0100BF00112C0000,"Catherine: Full Body",status-playable;nvdec,playable,2023-04-02 11:00:37.000 +010004400B28A000,"Cattails",status-playable,playable,2021-06-03 14:36:57.000 +0100B7D0022EE000,"Cave Story+",status-playable,playable,2020-05-22 09:57:25.000 +01001A100C0E8000,"Caveblazers",slow;status-ingame,ingame,2021-06-09 17:57:28.000 +01006DB004566000,"Caveman Warriors",status-playable,playable,2020-05-22 11:44:20.000 +010078700B2CC000,"Caveman Warriors Demo",demo;status-playable,playable,2021-02-15 14:44:08.000 +01002B30028F6000,"Celeste",status-playable,playable,2020-06-17 10:14:40.000 +01006B000A666000,"Cendrillon palikA",gpu;status-ingame;nvdec,ingame,2022-07-21 22:52:24.000 +01007600115CE000,"CHAOS CODE -NEW SIGN OF CATASTROPHE-",status-boots;crash;nvdec,boots,2022-04-04 12:24:21.000 +0100957016B90000,"CHAOS;HEAD NOAH",status-playable,playable,2022-06-02 22:57:19.000 +0100F52013A66000,"Charge Kid",gpu;status-boots;audout,boots,2024-02-11 01:17:47.000 +0100DE200C350000,"Chasm",status-playable,playable,2020-10-23 11:03:43.000 +010034301A556000,"Chasm: The Rift",gpu;status-ingame,ingame,2024-04-29 19:02:48.000 +0100A5900472E000,"Chess Ultra",status-playable;UE4,playable,2023-08-30 23:06:31.000 +0100E3C00A118000,"Chicken Assassin: Reloaded",status-playable,playable,2021-02-20 13:29:01.000 +0100713010E7A000,"Chicken Police – Paint it RED!",nvdec;status-playable,playable,2020-12-10 15:10:11.000 +0100F6C00A016000,"Chicken Range",status-playable,playable,2021-04-23 12:14:23.000 +01002E500E3EE000,"Chicken Rider",status-playable,playable,2020-05-22 11:31:17.000 +0100CAC011C3A000,"Chickens Madness DEMO",UE4;demo;gpu;nvdec;status-ingame,ingame,2021-02-15 15:02:10.000 +01007D000AD8A000,"Child of Light® Ultimate Edition",nvdec;status-playable,playable,2020-12-16 10:23:10.000 +01002DE00C250000,"Children of Morta",gpu;status-ingame;nvdec,ingame,2022-09-13 17:48:47.000 +0100C1A00AC3E000,"Children of Zodiarcs",status-playable,playable,2020-10-04 14:23:33.000 +010046F012A04000,"Chinese Parents",status-playable,playable,2021-04-08 12:56:41.000 +01005A001489A000,"Chiptune Arrange Sound(DoDonPachi Resurrection)",status-ingame;32-bit;crash,ingame,2024-01-25 14:37:32.000 +01006A30124CA000,"Chocobo GP",gpu;status-ingame;crash,ingame,2022-06-04 14:52:18.000 +0100BF600BF26000,"Chocobo's Mystery Dungeon EVERY BUDDY!",slow;status-playable,playable,2020-05-26 13:53:13.000 +01000BA0132EA000,"Choices That Matter: And The Sun Went Out",status-playable,playable,2020-12-17 15:44:08.000 +,"Chou no Doku Hana no Kusari: Taishou Irokoi Ibun",gpu;nvdec;status-ingame,ingame,2020-09-28 17:58:04.000 +010039A008E76000,"ChromaGun",status-playable,playable,2020-05-26 12:56:42.000 +010006800E13A000,"Chronos: Before the Ashes",UE4;gpu;nvdec;status-ingame,ingame,2020-12-11 22:16:35.000 +010039700BA7E000,"Circle of Sumo",status-playable,playable,2020-05-22 12:45:21.000 +01008FA00D686000,"Circuits",status-playable,playable,2022-09-19 11:52:50.000 +0100D8800B87C000,"Cities: Skylines - Nintendo Switch™ Edition",status-playable,playable,2020-12-16 10:34:57.000 +0100E4200D84E000,"Citizens of Space",gpu;status-boots,boots,2023-10-22 06:45:44.000 +0100D9C012900000,"Citizens Unite!: Earth x Space",gpu;status-ingame,ingame,2023-10-22 06:44:19.000 +01005E501284E000,"City Bus Driving Simulator",status-playable,playable,2021-06-15 21:25:59.000 +0100A3A00CC7E000,"CLANNAD",status-playable,playable,2021-06-03 17:01:02.000 +01007B501372C000,"CLANNAD Side Stories",status-playable,playable,2022-10-26 15:03:04.000 +01005ED0107F4000,"Clash Force",status-playable,playable,2022-10-01 23:45:48.000 +010009300AA6C000,"Claybook",slow;status-playable;nvdec;online;UE4,playable,2022-07-22 11:11:34.000 +010058900F52E000,"Clea",crash;status-ingame,ingame,2020-12-15 16:22:56.000 +010045E0142A4000,"Clea 2",status-playable,playable,2021-04-18 14:25:18.000 +01008C100C572000,"Clock Zero ~Shuuen no Ichibyou~ Devote",status-playable;nvdec,playable,2022-12-04 22:19:14.000 +0100DF9013AD4000,"Clocker",status-playable,playable,2021-04-05 15:05:13.000 +0100B7200DAC6000,"Close to the Sun",status-boots;crash;nvdec;UE4,boots,2021-11-04 09:19:41.000 +010047700D540000,"Clubhouse Games™: 51 Worldwide Classics",status-playable;ldn-works,playable,2024-05-21 16:12:57.000 +0100C1401CEDC000,"Clue",crash;online;status-menus,menus,2020-11-10 09:23:48.000 +010085A00821A000,"ClusterPuck 99",status-playable,playable,2021-01-06 00:28:12.000 +010096900A4D2000,"Clustertruck",slow;status-ingame,ingame,2021-02-19 21:07:09.000 +01005790110F0000,"Cobra Kai: The Karate Kid Saga Continues",status-playable,playable,2021-06-17 15:59:13.000 +01002E700C366000,"COCOON",gpu;status-ingame,ingame,2024-03-06 11:33:08.000 +010034E005C9C000,"Code of Princess EX",nvdec;online;status-playable,playable,2021-06-03 10:50:13.000 +010086100CDCA000,"CODE SHIFTER",status-playable,playable,2020-08-09 15:20:55.000 +010002400F408000,"Code: Realize ~Future Blessings~",status-playable;nvdec,playable,2023-03-31 16:57:47.000 +0100CF800C810000,"Coffee Crisis",status-playable,playable,2021-02-20 12:34:52.000 +010066200E1E6000,"Coffee Talk",status-playable,playable,2020-08-10 09:48:44.000 +0100178009648000,"Coffin Dodgers",status-playable,playable,2021-02-20 14:57:41.000 +010035B01706E000,"Cold Silence",cpu;status-nothing;crash,nothing,2024-07-11 17:06:14.000 +010083E00F40E000,"Collar X Malice",status-playable;nvdec,playable,2022-10-02 11:51:56.000 +0100E3B00F412000,"Collar X Malice -Unlimited-",status-playable;nvdec,playable,2022-10-04 15:30:40.000 +01002A600D7FC000,"Collection of Mana",status-playable,playable,2020-10-19 19:29:45.000 +0100B77012266000,"COLLECTION of SaGa FINAL FANTASY LEGEND",status-playable,playable,2020-12-30 19:11:16.000 +010030800BC36000,"Collidalot",status-playable;nvdec,playable,2022-09-13 14:09:27.000 +0100CA100C0BA000,"Color Zen",status-playable,playable,2020-05-22 10:56:17.000 +010039B011312000,"Colorgrid",status-playable,playable,2020-10-04 01:50:52.000 +0100A7000BD28000,"Coloring Book",status-playable,playable,2022-07-22 11:17:05.000 +010020500BD86000,"Colors Live",gpu;services;status-boots;crash,boots,2023-02-26 02:51:07.000 +0100E2F0128B4000,"Colossus Down",status-playable,playable,2021-02-04 20:49:50.000 +0100C4D00D16A000,"Commander Keen in Keen Dreams",gpu;status-ingame,ingame,2022-08-04 20:34:20.000 +0100E400129EC000,"Commander Keen in Keen Dreams: Definitive Edition",status-playable,playable,2021-05-11 19:33:54.000 +010065A01158E000,"Commandos 2 - HD Remaster",gpu;status-ingame;nvdec,ingame,2022-08-10 21:52:27.000 +010015801308E000,"Conarium",UE4;nvdec;status-playable,playable,2021-04-26 17:57:53.000 +0100971011224000,"Concept Destruction",status-playable,playable,2022-09-29 12:28:56.000 +010043700C9B0000,"Conduct TOGETHER!",nvdec;status-playable,playable,2021-02-20 12:59:00.000 +01007EF00399C000,"Conga Master Party!",status-playable,playable,2020-05-22 13:22:24.000 +0100A5600FAC0000,"Construction Simulator 3 - Console Edition",status-playable,playable,2023-02-06 09:31:23.000 +0100A330022C2000,"Constructor Plus",status-playable,playable,2020-05-26 12:37:40.000 +0100DCA00DA7E000,"Contra Anniversary Collection",status-playable,playable,2022-07-22 11:30:12.000 +0100F2600D710000,"CONTRA: ROGUE CORPS",crash;nvdec;regression;status-menus,menus,2021-01-07 13:23:35.000 +0100B8200ECA6000,"CONTRA: ROGUE CORPS Demo",gpu;status-ingame,ingame,2022-09-04 16:46:52.000 +01007D701298A000,"Contraptions",status-playable,playable,2021-02-08 18:40:50.000 +0100041013360000,"Control Ultimate Edition - Cloud Version",Needs Update;crash;services;status-nothing,nothing,2021-04-18 22:34:06.000 +010058800E90A000,"Convoy: A Tactical Roguelike",status-playable,playable,2020-10-15 14:43:50.000 +0100B82010B6C000,"Cook, Serve, Delicious! 3?!",status-playable,playable,2022-10-09 12:09:34.000 +010060700EFBA000,"Cooking Mama: Cookstar",status-menus;crash;loader-allocator,menus,2021-11-20 03:19:35.000 +01001E400FD58000,"Cooking Simulator",status-playable,playable,2021-04-18 13:25:23.000 +0100DF9010206000,"Cooking Tycoons - 3 in 1 Bundle",status-playable,playable,2020-11-16 22:44:26.000 +01005350126E0000,"Cooking Tycoons 2 - 3 in 1 Bundle",status-playable,playable,2020-11-16 22:19:33.000 +0100C5A0115C4000,"CopperBell",status-playable,playable,2020-10-04 15:54:36.000 +010016400B1FE000,"Corpse Party: Blood Drive",nvdec;status-playable,playable,2021-03-01 12:44:23.000 +0100CCB01B1A0000,"COSMIC FANTASY COLLECTION",status-ingame,ingame,2024-05-21 17:56:37.000 +010067C00A776000,"Cosmic Star Heroine",status-playable,playable,2021-02-20 14:30:47.000 +01003DD00F94A000,"COTTOn Reboot! [ コットン リブート! ]",status-playable,playable,2022-05-24 16:29:24.000 +,"Cotton/Guardian Saturn Tribute Games",gpu;status-boots,boots,2022-11-27 21:00:51.000 +01000E301107A000,"Couch Co-Op Bundle Vol. 2",status-playable;nvdec,playable,2022-10-02 12:04:21.000 +0100C1E012A42000,"Country Tales",status-playable,playable,2021-06-17 16:45:39.000 +01003370136EA000,"Cozy Grove",gpu;status-ingame,ingame,2023-07-30 22:22:19.000 +010073401175E000,"Crash Bandicoot™ 4: It’s About Time",status-playable;nvdec;UE4,playable,2024-03-17 07:13:45.000 +0100D1B006744000,"Crash Bandicoot™ N. Sane Trilogy",status-playable,playable,2024-02-11 11:38:14.000 +010007900FCE2000,"Crash Drive 2",online;status-playable,playable,2020-12-17 02:45:46.000 +010046600BD0E000,"Crash Dummy",nvdec;status-playable,playable,2020-05-23 11:12:43.000 +0100BF200CD74000,"Crashbots",status-playable,playable,2022-07-22 13:50:52.000 +010027100BD16000,"Crashlands",status-playable,playable,2021-05-27 20:30:06.000 +0100F9F00C696000,"Crash™ Team Racing Nitro-Fueled",gpu;status-ingame;nvdec;online-broken,ingame,2023-06-25 02:40:17.000 +0100BF7006BCA000,"Crawl",status-playable,playable,2020-05-22 10:16:05.000 +0100C66007E96000,"Crayola Scoot",status-playable;nvdec,playable,2022-07-22 14:01:55.000 +01005BA00F486000,"Crayon Shin-chan Ora to Hakase no Natsuyasumi Owaranai Nanokakan no Tabi",status-playable,playable,2021-07-21 10:41:33.000 +0100D470106DC000,"CRAYON SHINCHAN The Storm Called FLAMING KASUKABE RUNNER!!",services;status-menus,menus,2020-03-20 14:00:57.000 +01006BC00C27A000,"Crazy Strike Bowling EX",UE4;gpu;nvdec;status-ingame,ingame,2020-08-07 18:15:59.000 +0100F9900D8C8000,"Crazy Zen Mini Golf",status-playable,playable,2020-08-05 14:00:00.000 +0100B0E010CF8000,"Creaks",status-playable,playable,2020-08-15 12:20:52.000 +01007C600D778000,"Creature in the Well",UE4;gpu;status-ingame,ingame,2020-11-16 12:52:40.000 +0100A19011EEE000,"Creepy Tale",status-playable,playable,2020-12-15 21:58:03.000 +01005C2013B00000,"Cresteaju",gpu;status-ingame,ingame,2021-03-24 10:46:06.000 +010022D00D4F0000,"Cricket 19",gpu;status-ingame,ingame,2021-06-14 14:56:07.000 +0100387017100000,"Cricket 22 The Official Game Of The Ashes",status-boots;crash,boots,2023-10-18 08:01:57.000 +01005640080B0000,"Crimsonland",status-playable,playable,2021-05-27 20:50:54.000 +0100B0400EBC4000,"Cris Tales",crash;status-ingame,ingame,2021-07-29 15:10:53.000 +01004BC0166CC000,"CRISIS CORE –FINAL FANTASY VII– REUNION",status-playable,playable,2022-12-19 15:53:59.000 +01004F800C4DA000,"Croc's World",status-playable,playable,2020-05-22 11:21:09.000 +01009DB00DE12000,"Croc's World 2",status-playable,playable,2020-12-16 20:01:40.000 +010025200FC54000,"Croc's World 3",status-playable,playable,2020-12-30 18:53:26.000 +01000F0007D92000,"Croixleur Sigma",status-playable;online,playable,2022-07-22 14:26:54.000 +01003D90058FC000,"CrossCode",status-playable,playable,2024-02-17 10:23:19.000 +0100B1E00AA56000,"Crossing Souls",nvdec;status-playable,playable,2021-02-20 15:42:54.000 +0100059012BAE000,"Crown Trick",status-playable,playable,2021-06-16 19:36:29.000 +0100B41013C82000,"Cruis'n Blast",gpu;status-ingame,ingame,2023-07-30 10:33:47.000 +01000CC01C108000,"Crymachina Trial Edition ( Demo ) [ クライマキナ ]",status-playable;demo,playable,2023-08-06 05:33:21.000 +0100CEA007D08000,"Crypt of the NecroDancer: Nintendo Switch Edition",status-playable;nvdec,playable,2022-11-01 09:52:06.000 +0100582010AE0000,"Crysis 2 Remastered",deadlock;status-menus,menus,2023-09-21 10:46:17.000 +0100CD3010AE2000,"Crysis 3 Remastered",deadlock;status-menus,menus,2023-09-10 16:03:50.000 +0100E66010ADE000,"Crysis Remastered",status-menus;nvdec,menus,2024-08-13 05:23:24.000 +0100972008234000,"Crystal Crisis",nvdec;status-playable,playable,2021-02-20 13:52:44.000 +01006FA012FE0000,"Cthulhu Saves Christmas",status-playable,playable,2020-12-14 00:58:55.000 +010001600D1E8000,"Cube Creator X",status-menus;crash,menus,2021-11-25 08:53:28.000 +010082E00F1CE000,"Cubers: Arena",status-playable;nvdec;UE4,playable,2022-10-04 16:05:40.000 +010040D011D04000,"Cubicity",status-playable,playable,2021-06-14 14:19:51.000 +0100A5C00D162000,"Cuphead",status-playable,playable,2022-02-01 22:45:55.000 +0100F7E00DFC8000,"Cupid Parasite",gpu;status-ingame,ingame,2023-08-21 05:52:36.000 +010054501075C000,"Curious Cases",status-playable,playable,2020-08-10 09:30:48.000 +0100D4A0118EA000,"Curse of the Dead Gods",status-playable,playable,2022-08-30 12:25:38.000 +0100CE5014026000,"Curved Space",status-playable,playable,2023-01-14 22:03:50.000 +0100C1300DE74000,"Cyber Protocol",nvdec;status-playable,playable,2020-09-28 14:47:40.000 +0100C1F0141AA000,"Cyber Shadow",status-playable,playable,2022-07-17 05:37:41.000 +01006B9013672000,"Cybxus Hearts",gpu;slow;status-ingame,ingame,2022-01-15 05:00:49.000 +010063100B2C2000,"Cytus α",nvdec;status-playable,playable,2021-02-20 13:40:46.000 +0100B6400CA56000,"DAEMON X MACHINA™",UE4;audout;ldn-untested;nvdec;status-playable,playable,2021-06-09 19:22:29.000 +010061300DF48000,"Dairoku: Ayakashimori",status-nothing;Needs Update;loader-allocator,nothing,2021-11-30 05:09:38.000 +0100BD2009A1C000,"Damsel",status-playable,playable,2022-09-06 11:54:39.000 +0100BFC002B4E000,"Dandara: Trials of Fear Edition",status-playable,playable,2020-05-26 12:42:33.000 +0100DFB00D808000,"Dandy Dungeon - Legend of Brave Yamada -",status-playable,playable,2021-01-06 09:48:47.000 +01003ED0099B0000,"Danger Mouse: The Danger Games",status-boots;crash;online,boots,2022-07-22 15:49:45.000 +0100EFA013E7C000,"Danger Scavenger",nvdec;status-playable,playable,2021-04-17 15:53:04.000 +0100417007F78000,"Danmaku Unlimited 3",status-playable,playable,2020-11-15 00:48:35.000 +,"Darius Cozmic Collection",status-playable,playable,2021-02-19 20:59:06.000 +010059C00BED4000,"Darius Cozmic Collection Special Edition",status-playable,playable,2022-07-22 16:26:50.000 +010015800F93C000,"Dariusburst - Another Chronicle EX+",online;status-playable,playable,2021-04-05 14:21:43.000 +01003D301357A000,"Dark Arcana: The Carnival",gpu;slow;status-ingame,ingame,2022-02-19 08:52:28.000 +010083A00BF6C000,"Dark Devotion",status-playable;nvdec,playable,2022-08-09 09:41:18.000 +0100BFF00D5AE000,"Dark Quest 2",status-playable,playable,2020-11-16 21:34:52.000 +01004AB00A260000,"DARK SOULS™: REMASTERED",gpu;status-ingame;nvdec;online-broken,ingame,2024-04-09 19:47:58.000 +01001FA0034E2000,"Dark Witch Music Episode: Rudymical",status-playable,playable,2020-05-22 09:44:44.000 +01008F1008DA6000,"Darkest Dungeon",status-playable;nvdec,playable,2022-07-22 18:49:18.000 +0100F2300D4BA000,"Darksiders Genesis",status-playable;nvdec;online-broken;UE4;ldn-broken,playable,2022-09-21 18:06:25.000 +010071800BA98000,"Darksiders II Deathinitive Edition",gpu;status-ingame;nvdec;online-broken,ingame,2024-06-26 00:37:25.000 +0100E1400BA96000,"Darksiders Warmastered Edition",status-playable;nvdec,playable,2023-03-02 18:08:09.000 +010033500B7B6000,"Darkwood",status-playable,playable,2021-01-08 21:24:06.000 +0100440012FFA000,"DARQ Complete Edition",audout;status-playable,playable,2021-04-07 15:26:21.000 +0100BA500B660000,"Darts Up",status-playable,playable,2021-04-14 17:22:22.000 +0100F0B0081DA000,"Dawn of the Breakers",status-menus;online-broken;vulkan-backend-bug,menus,2022-12-08 14:40:03.000 +0100FCF00F6CC000,"Day and Night",status-playable,playable,2020-12-17 12:30:51.000 +0100D0A009310000,"de Blob",nvdec;status-playable,playable,2021-01-06 17:34:46.000 +010034E00A114000,"de Blob 2",nvdec;status-playable,playable,2021-01-06 13:00:16.000 +01008E900471E000,"De Mambo",status-playable,playable,2021-04-10 12:39:40.000 +01004C400CF96000,"Dead by Daylight",status-boots;nvdec;online-broken;UE4,boots,2022-09-13 14:32:13.000 +0100646009FBE000,"Dead Cells",status-playable,playable,2021-09-22 22:18:49.000 +01004C500BD40000,"Dead End Job",status-playable;nvdec,playable,2022-09-19 12:48:44.000 +01009CC00C97C000,"DEAD OR ALIVE Xtreme 3 Scarlet",status-playable,playable,2022-07-23 17:05:06.000 +0100A5000F7AA000,"DEAD OR SCHOOL",status-playable;nvdec,playable,2022-09-06 12:04:09.000 +0100A24011F52000,"Dead Z Meat",UE4;services;status-ingame,ingame,2021-04-14 16:50:16.000 +010095A011A14000,"Deadly Days",status-playable,playable,2020-11-27 13:38:55.000 +0100BAC011928000,"Deadly Premonition 2: A Blessing In Disguise",status-playable,playable,2021-06-15 14:12:36.000 +0100EBE00F22E000,"Deadly Premonition Origins",32-bit;status-playable;nvdec,playable,2024-03-25 12:47:46.000 +,"Dear Magi - Mahou Shounen Gakka -",status-playable,playable,2020-11-22 16:45:16.000 +01000D60126B6000,"Death and Taxes",status-playable,playable,2020-12-15 20:27:49.000 +010012B011AB2000,"Death Come True",nvdec;status-playable,playable,2021-06-10 22:30:49.000 +0100F3B00CF32000,"Death Coming",status-nothing;crash,nothing,2022-02-06 07:43:03.000 +0100AEC013DDA000,"Death end re;Quest",status-playable,playable,2023-07-09 12:19:54.000 +0100423009358000,"Death Road to Canada",gpu;audio;status-nothing;32-bit;crash,nothing,2023-06-28 15:39:26.000 +010085900337E000,"Death Squared",status-playable,playable,2020-12-04 13:00:15.000 +0100A51013550000,"Death Tales",status-playable,playable,2020-12-17 10:55:52.000 +0100492011A8A000,"Death's Hangover",gpu;status-boots,boots,2023-08-01 22:38:06.000 +01009120119B4000,"Deathsmiles I・II",status-playable,playable,2024-04-08 19:29:00.000 +010034F00BFC8000,"Debris Infinity",nvdec;online;status-playable,playable,2021-05-28 12:14:39.000 +010027700FD2E000,"Decay of Logos",status-playable;nvdec,playable,2022-09-13 14:42:13.000 +01002CC0062B8000,"DEEMO",status-playable,playable,2022-07-24 11:34:33.000 +01008B10132A2000,"DEEMO -Reborn-",status-playable;nvdec;online-broken,playable,2022-10-17 15:18:11.000 +010026800FA88000,"Deep Diving Adventures",status-playable,playable,2022-09-22 16:43:37.000 +0100FAF009562000,"Deep Ones",services;status-nothing,nothing,2020-04-03 02:54:19.000 +0100C3E00D68E000,"Deep Sky Derelicts: Definitive Edition",status-playable,playable,2022-09-27 11:21:08.000 +01000A700F956000,"Deep Space Rush",status-playable,playable,2020-07-07 23:30:33.000 +0100961011BE6000,"DeepOne",services-horizon;status-nothing;Needs Update,nothing,2024-01-18 15:01:05.000 +01008BB00F824000,"Defenders of Ekron: Definitive Edition",status-playable,playable,2021-06-11 16:31:03.000 +0100CDE0136E6000,"Defentron",status-playable,playable,2022-10-17 15:47:56.000 +010039300BDB2000,"Defunct",status-playable,playable,2021-01-08 21:33:46.000 +010067900B9C4000,"Degrees of Separation",status-playable,playable,2021-01-10 13:40:04.000 +010071C00CBA4000,"Dei Gratia no Rashinban",crash;status-nothing,nothing,2021-07-13 02:25:32.000 +010092E00E7F4000,"Deleveled",slow;status-playable,playable,2020-12-15 21:02:29.000 +010023800D64A000,"DELTARUNE Chapter 1&2",status-playable,playable,2023-01-22 04:47:44.000 +010038B01D2CA000,"Dementium: The Ward",status-boots;crash,boots,2024-09-02 08:28:14.000 +0100AB600ACB4000,"Demetrios - The BIG Cynical Adventure",status-playable,playable,2021-06-04 12:01:01.000 +010099D00D1A4000,"Demolish & Build 2018",status-playable,playable,2021-06-13 15:27:26.000 +010084600F51C000,"Demon Pit",status-playable;nvdec,playable,2022-09-19 13:35:15.000 +0100309016E7A000,"Demon Slayer -Kimetsu no Yaiba- The Hinokami Chronicles",status-playable;UE4,playable,2024-08-08 04:51:49.000 +0100A2B00BD88000,"Demon's Crystals",status-nothing;crash;regression,nothing,2022-12-07 16:33:17.000 +0100E29013818000,"Demon's Rise - Lords of Chaos",status-playable,playable,2021-04-06 16:20:06.000 +0100C3501094E000,"Demon's Rise - War for the Deep",status-playable,playable,2020-07-29 12:26:27.000 +0100161011458000,"Demon's Tier+",status-playable,playable,2021-06-09 17:25:36.000 +0100BE800E6D8000,"DEMON'S TILT",status-playable,playable,2022-09-19 13:22:46.000 +010000401313A000,"Demong Hunter",status-playable,playable,2020-12-12 15:27:08.000 +0100BC501355A000,"Densha de go!! Hashirou Yamanote Sen",status-playable;nvdec;UE4,playable,2023-11-09 07:47:58.000 +0100C9100FAE2000,"Depixtion",status-playable,playable,2020-10-10 18:52:37.000 +01000BF00B6BC000,"Deployment",slow;status-playable;online-broken,playable,2022-10-17 16:23:59.000 +010023600C704000,"Deponia",nvdec;status-playable,playable,2021-01-26 17:17:19.000 +0100ED700469A000,"Deru - The Art of Cooperation",status-playable,playable,2021-01-07 16:59:59.000 +0100D4600D0E4000,"Descenders",gpu;status-ingame,ingame,2020-12-10 15:22:36.000 +,"Desire remaster ver.",crash;status-boots,boots,2021-01-17 02:34:37.000 +010069500DD86000,"Destiny Connect: Tick-Tock Travelers",UE4;gpu;nvdec;status-ingame,ingame,2020-12-16 12:20:36.000 +01008BB011ED6000,"Destrobots",status-playable,playable,2021-03-06 14:37:05.000 +01009E701356A000,"Destroy All Humans!",gpu;status-ingame;nvdec;UE4,ingame,2023-01-14 22:23:53.000 +010030600E65A000,"Detective Dolittle",status-playable,playable,2021-03-02 14:03:59.000 +01009C0009842000,"Detective Gallo",status-playable;nvdec,playable,2022-07-24 11:51:04.000 +,"Detective Jinguji Saburo Prism of Eyes",status-playable,playable,2020-10-02 21:54:41.000 +010007500F27C000,"Detective Pikachu™ Returns",status-playable,playable,2023-10-07 10:24:59.000 +010031B00CF66000,"Devil Engine",status-playable,playable,2021-06-04 11:54:30.000 +01002F000E8F2000,"Devil Kingdom",status-playable,playable,2023-01-31 08:58:44.000 +0100E8000D5B8000,"Devil May Cry",nvdec;status-playable,playable,2021-01-04 19:43:08.000 +01007CF00D5BA000,"Devil May Cry 2",status-playable;nvdec,playable,2023-01-24 23:03:20.000 +01007B600D5BC000,"Devil May Cry 3 Special Edition",status-playable;nvdec,playable,2024-07-08 12:33:23.000 +01003C900EFF6000,"Devil Slayer Raksasi",status-playable,playable,2022-10-26 19:42:32.000 +01009EA00A320000,"Devious Dungeon",status-playable,playable,2021-03-04 13:03:06.000 +01003F601025E000,"Dex",nvdec;status-playable,playable,2020-08-12 16:48:12.000 +010044000CBCA000,"Dexteritrip",status-playable,playable,2021-01-06 12:51:12.000 +0100AFC00E06A000,"Dezatopia",online;status-playable,playable,2021-06-15 21:06:11.000 +01001B300B9BE000,"Diablo III: Eternal Collection",status-playable;online-broken;ldn-works,playable,2023-08-21 23:48:03.000 +0100726014352000,"Diablo® II: Resurrected™",gpu;status-ingame;nvdec,ingame,2023-08-18 18:42:47.000 +0100F73011456000,"Diabolic",status-playable,playable,2021-06-11 14:45:08.000 +010027400BD24000,"DIABOLIK LOVERS CHAOS LINEAGE",gpu;status-ingame;Needs Update,ingame,2023-06-08 02:20:44.000 +0100BBF011394000,"Dicey Dungeons",gpu;audio;slow;status-ingame,ingame,2023-08-02 20:30:12.000 +0100D98005E8C000,"Die for Valhalla!",status-playable,playable,2021-01-06 16:09:14.000 +0100BB900B5B4000,"Dies irae Amantes amentes For Nintendo Switch",status-nothing;32-bit;crash,nothing,2022-02-16 07:09:05.000 +0100A5A00DBB0000,"Dig Dog",gpu;status-ingame,ingame,2021-06-02 17:17:51.000 +01004DE011076000,"Digerati Indie Darling Bundle Vol. 3",status-playable,playable,2022-10-02 13:01:57.000 +010035D0121EC000,"Digerati Presents: The Dungeon Crawl Vol. 1",slow;status-ingame,ingame,2021-04-18 14:04:55.000 +010014E00DB56000,"Digimon Story Cyber Sleuth: Complete Edition",status-playable;nvdec;opengl,playable,2022-09-13 15:02:37.000 +0100F00014254000,"Digimon World: Next Order",status-playable,playable,2023-05-09 20:41:06.000 +0100B6D00DA6E000,"Ding Dong XL",status-playable,playable,2020-07-14 16:13:19.000 +01002E4011924000,"Dininho Adventures",status-playable,playable,2020-10-03 17:25:51.000 +010027E0158A6000,"Dininho Space Adventure",status-playable,playable,2023-01-14 22:43:04.000 +0100A8A013DA4000,"Dirt Bike Insanity",status-playable,playable,2021-01-31 13:27:38.000 +01004CB01378A000,"Dirt Trackin Sprint Cars",status-playable;nvdec;online-broken,playable,2022-10-17 16:34:56.000 +0100918014B02000,"Disagaea 6: Defiance of Destiny Demo",status-playable;demo,playable,2022-10-26 20:02:04.000 +010020700E2A2000,"Disaster Report 4: Summer Memories",status-playable;nvdec;UE4,playable,2022-09-27 19:41:31.000 +0100510004D2C000,"Disc Jam",UE4;ldn-untested;nvdec;online;status-playable,playable,2021-04-08 16:40:35.000 +0100C81004780000,"Disco Dodgeball - REMIX",online;status-playable,playable,2020-09-28 23:24:49.000 +01004B100AF18000,"Disgaea 1 Complete",status-playable,playable,2023-01-30 21:45:23.000 +0100A9800E9B4000,"Disgaea 4 Complete+",gpu;slow;status-playable,playable,2020-02-18 10:54:28.000 +010068C00F324000,"Disgaea 4 Complete+ Demo",status-playable;nvdec,playable,2022-09-13 15:21:59.000 +01005700031AE000,"Disgaea 5 Complete",nvdec;status-playable,playable,2021-03-04 15:32:54.000 +0100ABC013136000,"Disgaea 6: Defiance of Destiny",deadlock;status-ingame,ingame,2023-04-15 00:50:32.000 +0100307011D80000,"Disgaea 6: Defiance of Destiny [ FG ] [ 魔界戦記ディスガイア6 ]",status-playable,playable,2021-06-08 13:20:33.000 +01005EE013888000,"Disgaea 6: Defiance of Destiny Demo [ 魔界戦記ディスガイア6 ]",gpu;status-ingame;demo,ingame,2022-12-06 15:27:59.000 +01000B70122A2000,"Disjunction",gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug,ingame,2024-04-28 23:55:24.000 +0100A2F00EEFC000,"Disney Classic Games Collection",status-playable;online-broken,playable,2022-09-13 15:44:17.000 +0100DA201EBF8000,"Disney Epic Mickey: Rebrushed",status-ingame;crash,ingame,2024-09-26 22:11:51.000 +0100F0401435E000,"Disney Speedstorm",services;status-boots,boots,2023-11-27 02:15:32.000 +010012800EBAE000,"Disney TSUM TSUM FESTIVAL",crash;status-menus,menus,2020-07-14 14:05:28.000 +01009740120FE000,"DISTRAINT 2",status-playable,playable,2020-09-03 16:08:12.000 +010075B004DD2000,"DISTRAINT: Deluxe Edition",status-playable,playable,2020-06-15 23:42:24.000 +010027400CDC6000,"Divinity: Original Sin 2 - Definitive Edition",services;status-menus;crash;online-broken;regression,menus,2023-08-13 17:20:03.000 +01001770115C8000,"Dodo Peak",status-playable;nvdec;UE4,playable,2022-10-04 16:13:05.000 +010077B0100DA000,"Dogurai",status-playable,playable,2020-10-04 02:40:16.000 +010048100D51A000,"Dokapon Up! Mugen no Roulette",gpu;status-menus;Needs Update,menus,2022-12-08 19:39:10.000 +01005EE00BC78000,"Dokuro (ドクロ)",nvdec;status-playable,playable,2020-12-17 14:47:09.000 +010007200AC0E000,"Don't Die, Mr Robot!",status-playable;nvdec,playable,2022-09-02 18:34:38.000 +0100E470067A8000,"Don't Knock Twice",status-playable,playable,2024-05-08 22:37:58.000 +0100C4D00B608000,"Don't Sink",gpu;status-ingame,ingame,2021-02-26 15:41:11.000 +0100751007ADA000,"Don't Starve: Nintendo Switch Edition",status-playable;nvdec,playable,2022-02-05 20:43:34.000 +010088B010DD2000,"Dongo Adventure",status-playable,playable,2022-10-04 16:22:26.000 +0100C1F0051B6000,"Donkey Kong Country™: Tropical Freeze",status-playable,playable,2024-08-05 16:46:10.000 +0100F2C00F060000,"Doodle Derby",status-boots,boots,2020-12-04 22:51:48.000 +0100416004C00000,"DOOM",gpu;slow;status-ingame;nvdec;online-broken,ingame,2024-09-23 15:40:07.000 +010018900DD00000,"DOOM (1993)",status-menus;nvdec;online-broken,menus,2022-09-06 13:32:19.000 +01008CB01E52E000,"DOOM + DOOM II",status-playable;opengl;ldn-untested;LAN,playable,2024-09-12 07:06:01.000 +010029D00E740000,"DOOM 3",status-menus;crash,menus,2024-08-03 05:25:47.000 +01005D700E742000,"DOOM 64",nvdec;status-playable;vulkan,playable,2020-10-13 23:47:28.000 +0100D4F00DD02000,"DOOM II (Classic)",nvdec;online;status-playable,playable,2021-06-03 20:10:01.000 +0100B1A00D8CE000,"DOOM® Eternal",gpu;slow;status-ingame;nvdec;online-broken,ingame,2024-08-28 15:57:17.000 +01005ED00CD70000,"Door Kickers: Action Squad",status-playable;online-broken;ldn-broken,playable,2022-09-13 16:28:53.000 +010073700E412000,"DORAEMON STORY OF SEASONS",nvdec;status-playable,playable,2020-07-13 20:28:11.000 +0100F7300BD8E000,"Double Cross",status-playable,playable,2021-01-07 15:34:22.000 +0100B1500E9F2000,"Double Dragon & Kunio-kun: Retro Brawler Bundle",status-playable,playable,2020-09-01 12:48:46.000 +01001AD00E49A000,"DOUBLE DRAGON Ⅲ: The Sacred Stones",online;status-playable,playable,2021-06-11 15:41:44.000 +01005B10132B2000,"Double Dragon Neon",gpu;audio;status-ingame;32-bit,ingame,2022-09-20 18:00:20.000 +01000F400C1A4000,"Double Kick Heroes",gpu;status-ingame,ingame,2020-10-03 14:33:59.000 +0100A5D00C7C0000,"Double Pug Switch",status-playable;nvdec,playable,2022-10-10 10:59:35.000 +0100FC000EE10000,"Double Switch - 25th Anniversary Edition",status-playable;nvdec,playable,2022-09-19 13:41:50.000 +0100B6600FE06000,"Down to Hell",gpu;status-ingame;nvdec,ingame,2022-09-19 14:01:26.000 +010093D00C726000,"Downwell",status-playable,playable,2021-04-25 20:05:24.000 +0100ED000D390000,"Dr Kawashima's Brain Training",services;status-ingame,ingame,2023-06-04 00:06:46.000 +01001B80099F6000,"Dracula's Legacy",nvdec;status-playable,playable,2020-12-10 13:24:25.000 +0100566009238000,"DragoDino",gpu;nvdec;status-ingame,ingame,2020-08-03 20:49:16.000 +0100DBC00BD5A000,"Dragon Audit",crash;status-ingame,ingame,2021-05-16 14:24:46.000 +0100A250097F0000,"DRAGON BALL FighterZ",UE4;ldn-broken;nvdec;online;status-playable,playable,2021-06-11 16:19:04.000 +010078D000F88000,"DRAGON BALL XENOVERSE 2 for Nintendo Switch",gpu;status-ingame;nvdec;online;ldn-untested,ingame,2022-07-24 12:31:01.000 +010051C0134F8000,"DRAGON BALL Z: KAKAROT + A NEW POWER AWAKENS SET",status-playable;vulkan-backend-bug,playable,2024-08-28 00:03:50.000 +010099B00A2DC000,"Dragon Blaze for Nintendo Switch",32-bit;status-playable,playable,2020-10-14 11:11:28.000 +010089700150E000,"Dragon Marked for Death: Advanced Attackers",status-playable;ldn-untested;audout,playable,2022-03-10 06:44:34.000 +0100EFC00EFB2000,"DRAGON QUEST",gpu;status-boots,boots,2021-11-09 03:31:32.000 +010008900705C000,"Dragon Quest Builders™",gpu;status-ingame;nvdec,ingame,2023-08-14 09:54:36.000 +010042000A986000,"DRAGON QUEST BUILDERS™ 2",status-playable,playable,2024-04-19 16:36:38.000 +0100CD3000BDC000,"Dragon Quest Heroes I + II (JP)",nvdec;status-playable,playable,2021-04-08 14:27:16.000 +010062200EFB4000,"DRAGON QUEST II: Luminaries of the Legendary Line",status-playable,playable,2022-09-13 16:44:11.000 +01003E601E324000,"DRAGON QUEST III HD-2D Remake",status-ingame;vulkan-backend-bug;UE4;audout;mac-bug,ingame,2025-01-07 04:10:27.000 +010015600EFB6000,"DRAGON QUEST III: The Seeds of Salvation",gpu;status-boots,boots,2021-11-09 03:38:34.000 +0100A77018EA0000,"DRAGON QUEST MONSTERS: The Dark Prince",status-playable,playable,2023-12-29 16:10:05.000 +0100217014266000,"Dragon Quest Treasures",gpu;status-ingame;UE4,ingame,2023-05-09 11:16:52.000 +0100E2E0152E4000,"Dragon Quest X Awakening Five Races Offline",status-playable;nvdec;UE4,playable,2024-08-20 10:04:24.000 +01006C300E9F0000,"DRAGON QUEST® XI S: Echoes of an Elusive Age – Definitive Edition",status-playable;UE4,playable,2021-11-27 12:27:11.000 +010032C00AC58000,"Dragon's Dogma: Dark Arisen",status-playable,playable,2022-07-24 12:58:33.000 +010027100C544000,"Dragon's Lair Trilogy",nvdec;status-playable,playable,2021-01-13 22:12:07.000 +0100DA0006F50000,"DragonFangZ - The Rose & Dungeon of Time",status-playable,playable,2020-09-28 21:35:18.000 +0100F7800A434000,"Drawful 2",status-ingame,ingame,2022-07-24 13:50:21.000 +0100B7E0102E4000,"Drawngeon: Dungeons of Ink and Paper",gpu;status-ingame,ingame,2022-09-19 15:41:25.000 +01008B20129F2000,"Dream",status-playable,playable,2020-12-15 19:55:07.000 +01000AA0093DC000,"Dream Alone",nvdec;status-playable,playable,2021-01-27 19:41:50.000 +010034D00F330000,"DreamBall",UE4;crash;gpu;status-ingame,ingame,2020-08-05 14:45:25.000 +010058B00F3C0000,"Dreaming Canvas",UE4;gpu;status-ingame,ingame,2021-06-13 22:50:07.000 +0100D24013466000,"DREAMO",status-playable;UE4,playable,2022-10-17 18:25:28.000 +0100ED200B6FC000,"DreamWorks Dragons Dawn of New Riders",nvdec;status-playable,playable,2021-01-27 20:05:26.000 +0100236011B4C000,"DreamWorks Spirit Lucky’s Big Adventure",status-playable,playable,2022-10-27 13:30:52.000 +010058C00A916000,"Drone Fight",status-playable,playable,2022-07-24 14:31:56.000 +010052000A574000,"Drowning",status-playable,playable,2022-07-25 14:28:26.000 +0100652012F58000,"Drums",status-playable,playable,2020-12-17 17:21:51.000 +01005BC012C66000,"Duck Life Adventure",status-playable,playable,2022-10-10 11:27:03.000 +01007EF00CB88000,"Duke Nukem 3D: 20th Anniversary World Tour",32-bit;status-playable;ldn-untested,playable,2022-08-19 22:22:40.000 +010068D0141F2000,"Dull Grey",status-playable,playable,2022-10-27 13:40:38.000 +0100926013600000,"Dungeon Nightmares 1 + 2 Collection",status-playable,playable,2022-10-17 18:54:22.000 +010034300F0E2000,"Dungeon of the Endless",nvdec;status-playable,playable,2021-05-27 19:16:26.000 +0100E79009A94000,"Dungeon Stars",status-playable,playable,2021-01-18 14:28:37.000 +0100BE801360E000,"Dungeons & Bombs",status-playable,playable,2021-04-06 12:46:22.000 +0100EC30140B6000,"Dunk Lords",status-playable,playable,2024-06-26 00:07:26.000 +010011C00E636000,"Dusk Diver",status-boots;crash;UE4,boots,2021-11-06 09:01:30.000 +0100B6E00A420000,"Dust: An Elysian Tail",status-playable,playable,2022-07-25 15:28:12.000 +0100D7E012F2E000,"Dustoff Z",status-playable,playable,2020-12-04 23:22:29.000 +01008C8012920000,"Dying Light: Definitive Edition",services-horizon;status-boots,boots,2024-03-11 10:43:32.000 +01007DD00DFDE000,"Dyna Bomb",status-playable,playable,2020-06-07 13:26:55.000 +0100E9A00CB30000,"DYNASTY WARRIORS 8: Xtreme Legends Definitive Edition",status-playable;nvdec,playable,2024-06-26 00:16:30.000 +010008900BC5A000,"DYSMANTLE",gpu;status-ingame,ingame,2024-07-15 16:24:12.000 +010054E01D878000,"EA SPORTS FC 25",status-ingame;crash,ingame,2024-09-25 21:07:50.000 +0100BDB01A0E6000,"EA SPORTS FC™ 24",status-boots,boots,2023-10-04 18:32:59.000 +01001C8016B4E000,"EA SPORTS FIFA 23 Nintendo Switch™ Legacy Edition",gpu;status-ingame;crash,ingame,2024-06-10 23:33:05.000 +01005DE00D05C000,"EA SPORTS™ FIFA 20 Nintendo Switch™ Legacy Edition",gpu;status-ingame;nvdec;online-broken;ldn-untested,ingame,2022-09-13 17:57:20.000 +010037400C7DA000,"Eagle Island Twist",status-playable,playable,2021-04-10 13:15:42.000 +0100B9E012992000,"Earth Defense Force World Brothers ( ま~るい地球が四角くなった!? デジボク地球防衛軍 )",status-playable;UE4,playable,2022-12-07 12:59:16.000 +0100298014030000,"Earth Defense Force: World Brothers",status-playable;UE4,playable,2022-10-27 14:13:31.000 +01009B7006C88000,"EARTH WARS",status-playable,playable,2021-06-05 11:18:33.000 +0100DFC00E472000,"Earthfall: Alien Horde",status-playable;nvdec;UE4;ldn-untested,playable,2022-09-13 17:32:37.000 +01006E50042EA000,"EARTHLOCK",status-playable,playable,2021-06-05 11:51:02.000 +0100A2E00BB0C000,"EarthNight",status-playable,playable,2022-09-19 21:02:20.000 +0100DCE00B756000,"Earthworms",status-playable,playable,2022-07-25 16:28:55.000 +0100E3500BD84000,"Earthworms Demo",status-playable,playable,2021-01-05 16:57:11.000 +0100ECF01800C000,"Easy Come Easy Golf",status-playable;online-broken;regression,playable,2024-04-04 16:15:00.000 +0100A9B009678000,"EAT BEAT DEADSPIKE-san",audio;status-playable;Needs Update,playable,2022-12-02 19:25:29.000 +0100BCA016636000,"eBaseball Powerful Pro Yakyuu 2022",gpu;services-horizon;status-nothing;crash,nothing,2024-05-26 23:07:19.000 +01001F20100B8000,"Eclipse: Edge of Light",status-playable,playable,2020-08-11 23:06:29.000 +0100E0A0110F4000,"eCrossminton",status-playable,playable,2020-07-11 18:24:27.000 +0100ABE00DB4E000,"Edna & Harvey: Harvey's New Eyes",nvdec;status-playable,playable,2021-01-26 14:36:08.000 +01004F000B716000,"Edna & Harvey: The Breakout – Anniversary Edition",status-ingame;crash;nvdec,ingame,2022-08-01 16:59:56.000 +01002550129F0000,"Effie",status-playable,playable,2022-10-27 14:36:39.000 +0100CC0010A46000,"Ego Protocol: Remastered",nvdec;status-playable,playable,2020-12-16 20:16:35.000 +,"Eiga Sumikko Gurashi Tobidasu Ehon to Himitsu no Ko Game de Asobo Ehon no Sekai",status-playable,playable,2020-11-12 00:11:50.000 +01003AD013BD2000,"Eight Dragons",status-playable;nvdec,playable,2022-10-27 14:47:28.000 +010020A01209C000,"El Hijo - A Wild West Tale",nvdec;status-playable,playable,2021-04-19 17:44:08.000 +0100B5B00EF38000,"Elden: Path of the Forgotten",status-playable,playable,2020-12-15 00:33:19.000 +010068F012880000,"Eldrador® Creatures",slow;status-playable,playable,2020-12-12 12:35:35.000 +010008E010012000,"ELEA: Paradigm Shift",UE4;crash;status-nothing,nothing,2020-10-04 19:07:43.000 +0100A6700AF10000,"Element",status-playable,playable,2022-07-25 17:17:16.000 +0100128003A24000,"Elliot Quest",status-playable,playable,2022-07-25 17:46:14.000 +010041A00FEC6000,"Ember",status-playable;nvdec,playable,2022-09-19 21:16:11.000 +010071B012940000,"Embracelet",status-playable,playable,2020-12-04 23:45:00.000 +010017B0102A8000,"Emma: Lost in Memories",nvdec;status-playable,playable,2021-01-28 16:19:10.000 +010068300E08E000,"Enchanted in the Moonlight - Kiryu, Chikage & Yukinojo -",gpu;status-ingame;nvdec,ingame,2022-11-20 16:18:45.000 +01007A4008486000,"Enchanting Mahjong Match",gpu;status-ingame,ingame,2020-04-17 22:01:31.000 +01004F3011F92000,"Endless Fables: Dark Moor",gpu;nvdec;status-ingame,ingame,2021-03-07 15:31:03.000 +010067B017588000,"Endless Ocean™ Luminous",services-horizon;status-ingame;crash,ingame,2024-05-30 02:05:57.000 +0100B8700BD14000,"Energy Cycle Edge",services;status-ingame,ingame,2021-11-30 05:02:31.000 +0100A8E0090B0000,"Energy Invasion",status-playable,playable,2021-01-14 21:32:26.000 +0100C6200A0AA000,"Enigmatis 2: The Mists of Ravenwood",crash;regression;status-boots,boots,2021-06-06 15:15:30.000 +01009D60076F6000,"Enter the Gungeon",status-playable,playable,2022-07-25 20:28:33.000 +0100262009626000,"Epic Loon",status-playable;nvdec,playable,2022-07-25 22:06:13.000 +01000FA0149B6000,"EQI",status-playable;nvdec;UE4,playable,2022-10-27 16:42:32.000 +0100E95010058000,"EQQO",UE4;nvdec;status-playable,playable,2021-06-13 23:10:51.000 +01000E8010A98000,"Escape First",status-playable,playable,2020-10-20 22:46:53.000 +010021201296A000,"Escape First 2",status-playable,playable,2021-03-24 11:59:41.000 +0100FEF00F0AA000,"Escape from Chernobyl",status-boots;crash,boots,2022-09-19 21:36:58.000 +010023E013244000,"Escape from Life Inc",status-playable,playable,2021-04-19 17:34:09.000 +010092901203A000,"Escape From Tethys",status-playable,playable,2020-10-14 22:38:25.000 +0100B0F011A84000,"Escape Game Fort Boyard",status-playable,playable,2020-07-12 12:45:43.000 +0100F9600E746000,"ESP Ra.De. Psi",audio;slow;status-ingame,ingame,2024-03-07 15:05:08.000 +010073000FE18000,"Esports powerful pro yakyuu 2020",gpu;status-ingame;crash;Needs More Attention,ingame,2024-04-29 05:34:14.000 +01004F9012FD8000,"Estranged: The Departure",status-playable;nvdec;UE4,playable,2022-10-24 10:37:58.000 +0100CB900B498000,"Eternum Ex",status-playable,playable,2021-01-13 20:28:32.000 +010092501EB2C000,"Europa (Demo)",gpu;status-ingame;crash;UE4,ingame,2024-04-23 10:47:12.000 +01007BE0160D6000,"EVE ghost enemies",gpu;status-ingame,ingame,2023-01-14 03:13:30.000 +010095E01581C000,"even if TEMPEST",gpu;status-ingame,ingame,2023-06-22 23:50:25.000 +010072C010002000,"Event Horizon: Space Defense",status-playable,playable,2020-07-31 20:31:24.000 +0100DCF0093EC000,"Everspace™ - Stellar Edition",status-playable;UE4,playable,2022-08-14 01:16:24.000 +01006F900BF8E000,"Everybody 1-2-Switch!™",services;deadlock;status-nothing,nothing,2023-07-01 05:52:55.000 +010080600B53E000,"Evil Defenders",nvdec;status-playable,playable,2020-09-28 17:11:00.000 +01006A800FA22000,"Evolution Board Game",online;status-playable,playable,2021-01-20 22:37:56.000 +0100F2D00C7DE000,"Exception",status-playable;online-broken,playable,2022-09-20 12:47:10.000 +0100DD30110CC000,"Exit the Gungeon",status-playable,playable,2022-09-22 17:04:43.000 +0100A82013976000,"Exodemon",status-playable,playable,2022-10-27 20:17:52.000 +0100FA800A1F4000,"EXORDER",nvdec;status-playable,playable,2021-04-15 14:17:20.000 +01009B7010B42000,"Explosive Jake",status-boots;crash,boots,2021-11-03 07:48:32.000 +0100EFE00A3C2000,"Eyes: The Horror Game",status-playable,playable,2021-01-20 21:59:46.000 +0100E3D0103CE000,"Fable of Fairy Stones",status-playable,playable,2021-05-05 21:04:54.000 +01004200189F4000,"Factorio",deadlock;status-boots,boots,2024-06-11 19:26:16.000 +010073F0189B6000,"Fae Farm",status-playable,playable,2024-08-25 15:12:12.000 +010069100DB08000,"Faeria",status-menus;nvdec;online-broken,menus,2022-10-04 16:44:41.000 +01008A6009758000,"Fairune Collection",status-playable,playable,2021-06-06 15:29:56.000 +0100F6D00B8F2000,"Fairy Fencer F™: Advent Dark Force",status-ingame;32-bit;crash;nvdec,ingame,2023-04-16 03:53:48.000 +0100CF900FA3E000,"FAIRY TAIL",status-playable;nvdec,playable,2022-10-04 23:00:32.000 +01005A600BE60000,"Fall of Light: Darkest Edition",slow;status-ingame;nvdec,ingame,2024-07-24 04:19:26.000 +0100AA801258C000,"Fallen Legion Revenants",status-menus;crash,menus,2021-11-25 08:53:20.000 +0100D670126F6000,"Famicom Detective Club™: The Girl Who Stands Behind",status-playable;nvdec,playable,2022-10-27 20:41:40.000 +010033F0126F4000,"Famicom Detective Club™: The Missing Heir",status-playable;nvdec,playable,2022-10-27 20:56:23.000 +010060200FC44000,"Family Feud®",status-playable;online-broken,playable,2022-10-10 11:42:21.000 +0100034012606000,"Family Mysteries: Poisonous Promises",audio;status-menus;crash,menus,2021-11-26 12:35:06.000 +010017C012726000,"Fantasy Friends",status-playable,playable,2022-10-17 19:42:39.000 +0100767008502000,"FANTASY HERO ~unsigned legacy~",status-playable,playable,2022-07-26 12:28:52.000 +0100944003820000,"Fantasy Strike",online;status-playable,playable,2021-02-27 01:59:18.000 +01000E2012F6E000,"Fantasy Tavern Sextet -Vol.1 New World Days-",gpu;status-ingame;crash;Needs Update,ingame,2022-12-05 16:48:00.000 +01005C10136CA000,"Fantasy Tavern Sextet -Vol.2 Adventurer's Days-",gpu;slow;status-ingame;crash,ingame,2021-11-06 02:57:29.000 +010022700E7D6000,"FAR: Lone Sails",status-playable,playable,2022-09-06 16:33:05.000 +0100C9E00FD62000,"Farabel",status-playable,playable,2020-08-03 17:47:28.000 +,"Farm Expert 2019 for Nintendo Switch",status-playable,playable,2020-07-09 21:42:57.000 +01000E400ED98000,"Farm Mystery",status-playable;nvdec,playable,2022-09-06 16:46:47.000 +010086B00BB50000,"Farm Together",status-playable,playable,2021-01-19 20:01:19.000 +0100EB600E914000,"Farming Simulator 20",nvdec;status-playable,playable,2021-06-13 10:52:44.000 +0100D04004176000,"Farming Simulator Nintendo Switch Edition",nvdec;status-playable,playable,2021-01-19 14:46:44.000 +0100E99019B3A000,"Fashion Dreamer",status-playable,playable,2023-11-12 06:42:52.000 +01009510001CA000,"FAST RMX",slow;status-ingame;crash;ldn-partial,ingame,2024-06-22 20:48:58.000 +0100BEB015604000,"FATAL FRAME: Maiden of Black Water",status-playable,playable,2023-07-05 16:01:40.000 +0100DAE019110000,"FATAL FRAME: Mask of the Lunar Eclipse",status-playable;Incomplete,playable,2024-04-11 06:01:30.000 +010051400B17A000,"Fate/EXTELLA LINK",ldn-untested;nvdec;status-playable,playable,2021-01-27 00:45:50.000 +010053E002EA2000,"Fate/EXTELLA: The Umbral Star",gpu;status-ingame;nvdec;online-broken;vulkan-backend-bug;opengl-backend-bug,ingame,2023-04-24 23:37:55.000 +0100F6200B7D4000,"fault - milestone one",nvdec;status-playable,playable,2021-03-24 10:41:49.000 +01005AC0068F6000,"Fear Effect Sedna",nvdec;status-playable,playable,2021-01-19 13:10:33.000 +0100F5501CE12000,"Fearmonium",status-boots;crash,boots,2024-03-06 11:26:11.000 +0100E4300CB3E000,"Feather",status-playable,playable,2021-06-03 14:11:27.000 +010003B00D3A2000,"Felix The Reaper",nvdec;status-playable,playable,2020-10-20 23:43:03.000 +0100AA3009738000,"Feudal Alloy",status-playable,playable,2021-01-14 08:48:14.000 +01008D900B984000,"FEZ",gpu;status-ingame,ingame,2021-04-18 17:10:16.000 +01007510040E8000,"FIA European Truck Racing Championship",status-playable;nvdec,playable,2022-09-06 17:51:59.000 +0100F7B002340000,"FIFA 18",gpu;status-ingame;online-broken;ldn-untested,ingame,2022-07-26 12:43:59.000 +0100FFA0093E8000,"FIFA 19",gpu;status-ingame;nvdec;online-broken;ldn-untested,ingame,2022-07-26 13:07:07.000 +01000A001171A000,"FIFA 21 Nintendo Switch™ Legacy Edition",gpu;status-ingame;online-broken,ingame,2023-12-11 22:10:19.000 +0100216014472000,"FIFA 22 Nintendo Switch™ Legacy Edition",gpu;status-ingame,ingame,2024-03-02 14:13:48.000 +01006980127F0000,"Fight Crab",status-playable;online-broken;ldn-untested,playable,2022-10-05 10:24:04.000 +010047E010B3E000,"Fight of Animals",online;status-playable,playable,2020-10-15 15:08:28.000 +0100C7D00E730000,"Fight'N Rage",status-playable,playable,2020-06-16 23:35:19.000 +0100D02014048000,"FIGHTING EX LAYER ANOTHER DASH",status-playable;online-broken;UE4,playable,2024-04-07 10:22:33.000 +0100118009C68000,"Figment",nvdec;status-playable,playable,2021-01-27 19:36:05.000 +010095600AA36000,"Fill-a-Pix: Phil's Epic Adventure",status-playable,playable,2020-12-22 13:48:22.000 +0100C3A00BB76000,"Fimbul",status-playable;nvdec,playable,2022-07-26 13:31:47.000 +0100C8200E942000,"Fin and the Ancient Mystery",nvdec;status-playable,playable,2020-12-17 16:40:39.000 +01000EA014150000,"FINAL FANTASY",status-nothing;crash,nothing,2024-09-05 20:55:30.000 +01006B7014156000,"FINAL FANTASY II",status-nothing;crash,nothing,2024-04-13 19:18:04.000 +01006F000B056000,"FINAL FANTASY IX",audout;nvdec;status-playable,playable,2021-06-05 11:35:00.000 +0100AA201415C000,"FINAL FANTASY V",status-playable,playable,2023-04-26 01:11:55.000 +0100A5B00BDC6000,"FINAL FANTASY VII",status-playable,playable,2022-12-09 17:03:30.000 +01008B900DC0A000,"FINAL FANTASY VIII Remastered",status-playable;nvdec,playable,2023-02-15 10:57:48.000 +0100BC300CB48000,"FINAL FANTASY X/X-2 HD Remaster",gpu;status-ingame,ingame,2022-08-16 20:29:26.000 +0100EB100AB42000,"FINAL FANTASY XII THE ZODIAC AGE",status-playable;opengl;vulkan-backend-bug,playable,2024-08-11 07:01:54.000 +010068F00AA78000,"FINAL FANTASY XV POCKET EDITION HD",status-playable,playable,2021-01-05 17:52:08.000 +0100CE4010AAC000,"FINAL FANTASY® CRYSTAL CHRONICLES™ Remastered Edition",status-playable,playable,2023-04-02 23:39:12.000 +01001BA00AE4E000,"Final Light, The Prison",status-playable,playable,2020-07-31 21:48:44.000 +0100FF100FB68000,"Finding Teddy 2 : Definitive Edition",gpu;status-ingame,ingame,2024-04-19 16:51:33.000 +0100F4E013AAE000,"Fire & Water",status-playable,playable,2020-12-15 15:43:20.000 +0100F15003E64000,"Fire Emblem Warriors",status-playable;nvdec,playable,2023-05-10 01:53:10.000 +010071F0143EA000,"Fire Emblem Warriors: Three Hopes",gpu;status-ingame;nvdec,ingame,2024-05-01 07:07:42.000 +0100A6301214E000,"Fire Emblem™ Engage",status-playable;amd-vendor-bug;mac-bug,playable,2024-09-01 23:37:26.000 +0100A12011CC8000,"Fire Emblem™: Shadow Dragon & the Blade of Light",status-playable,playable,2022-10-17 19:49:14.000 +010055D009F78000,"Fire Emblem™: Three Houses",status-playable;online-broken,playable,2024-09-14 23:53:50.000 +010025C014798000,"Fire: Ungh’s Quest",status-playable;nvdec,playable,2022-10-27 21:41:26.000 +0100434003C58000,"Firefighters – The Simulation",status-playable,playable,2021-02-19 13:32:05.000 +0100BB1009E50000,"Firefighters: Airport Fire Department",status-playable,playable,2021-02-15 19:17:00.000 +0100AC300919A000,"Firewatch",status-playable,playable,2021-06-03 10:56:38.000 +0100BA9012B36000,"Firework",status-playable,playable,2020-12-04 20:20:09.000 +0100DEB00ACE2000,"Fishing Star World Tour",status-playable,playable,2022-09-13 19:08:51.000 +010069800D292000,"Fishing Universe Simulator",status-playable,playable,2021-04-15 14:00:43.000 +0100807008868000,"Fit Boxing",status-playable,playable,2022-07-26 19:24:55.000 +0100E7300AAD4000,"Fitness Boxing",status-playable,playable,2021-04-14 20:33:33.000 +0100073011382000,"Fitness Boxing 2: Rhythm & Exercise",crash;status-ingame,ingame,2021-04-14 20:40:48.000 +0100C7E0134BE000,"Five Dates",nvdec;status-playable,playable,2020-12-11 15:17:11.000 +0100B6200D8D2000,"Five Nights at Freddy's",status-playable,playable,2022-09-13 19:26:36.000 +01004EB00E43A000,"Five Nights at Freddy's 2",status-playable,playable,2023-02-08 15:48:24.000 +010056100E43C000,"Five Nights at Freddy's 3",status-playable,playable,2022-09-13 20:58:07.000 +010083800E43E000,"Five Nights at Freddy's 4",status-playable,playable,2023-08-19 07:28:03.000 +0100F7901118C000,"Five Nights at Freddy's: Help Wanted",status-playable;UE4,playable,2022-09-29 12:40:09.000 +01009060193C4000,"Five Nights at Freddy's: Security Breach",gpu;status-ingame;crash;mac-bug,ingame,2023-04-23 22:33:28.000 +01003B200E440000,"Five Nights at Freddy's: Sister Location",status-playable,playable,2023-10-06 09:00:58.000 +010038200E088000,"Flan",status-ingame;crash;regression,ingame,2021-11-17 07:39:28.000 +01000A0004C50000,"FLASHBACK™",nvdec;status-playable,playable,2020-05-14 13:57:29.000 +0100C53004C52000,"Flat Heroes",gpu;status-ingame,ingame,2022-07-26 19:37:37.000 +0100B54012798000,"Flatland: Prologue",status-playable,playable,2020-12-11 20:41:12.000 +0100307004B4C000,"Flinthook",online;status-playable,playable,2021-03-25 20:42:29.000 +010095A004040000,"Flip Wars",services;status-ingame;ldn-untested,ingame,2022-05-02 15:39:18.000 +01009FB002B2E000,"Flipping Death",status-playable,playable,2021-02-17 16:12:30.000 +0100D1700ACFC000,"Flood of Light",status-playable,playable,2020-05-15 14:15:25.000 +0100DF9005E7A000,"Floor Kids",status-playable;nvdec,playable,2024-08-18 19:38:49.000 +010040700E8FC000,"Florence",status-playable,playable,2020-09-05 01:22:30.000 +0100F5D00CD58000,"Flowlines VS",status-playable,playable,2020-12-17 17:01:53.000 +010039C00E2CE000,"Flux8",nvdec;status-playable,playable,2020-06-19 20:55:11.000 +0100EDA00BBBE000,"Fly O'Clock",status-playable,playable,2020-05-17 13:39:52.000 +0100FC300F4A4000,"Fly Punch Boom!",online;status-playable,playable,2020-06-21 12:06:11.000 +0100419013A8A000,"Flying Hero X",status-menus;crash,menus,2021-11-17 07:46:58.000 +010056000BA1C000,"Fobia",status-playable,playable,2020-12-14 21:05:23.000 +0100F3900D0F0000,"Food Truck Tycoon",status-playable,playable,2022-10-17 20:15:55.000 +01007CF013152000,"Football Manager 2021 Touch",gpu;status-ingame,ingame,2022-10-17 20:08:23.000 +0100EDC01990E000,"Football Manager 2023 Touch",gpu;status-ingame,ingame,2023-08-01 03:40:53.000 +010097F0099B4000,"Football Manager Touch 2018",status-playable,playable,2022-07-26 20:17:56.000 +010069400B6BE000,"For The King",nvdec;status-playable,playable,2021-02-15 18:51:44.000 +01001D200BCC4000,"Forager",status-menus;crash,menus,2021-11-24 07:10:17.000 +0100AE001256E000,"FORECLOSED",status-ingame;crash;Needs More Attention;nvdec,ingame,2022-12-06 14:41:12.000 +010044B00E70A000,"Foregone",deadlock;status-ingame,ingame,2020-12-17 15:26:53.000 +010059E00B93C000,"Forgotton Anne",nvdec;status-playable,playable,2021-02-15 18:28:07.000 +01008EA00405C000,"forma.8",nvdec;status-playable,playable,2020-11-15 01:04:32.000 +010025400AECE000,"Fortnite",services-horizon;status-nothing,nothing,2024-04-06 18:23:25.000 +0100AAE01E39C000,"Fortress Challenge - Fort Boyard",nvdec;slow;status-playable,playable,2020-05-15 13:22:53.000 +0100CA500756C000,"Fossil Hunters",status-playable;nvdec,playable,2022-07-27 11:37:20.000 +01008A100A028000,"FOX n FORESTS",status-playable,playable,2021-02-16 14:27:49.000 +0100D2501001A000,"FoxyLand",status-playable,playable,2020-07-29 20:55:20.000 +01000AC010024000,"FoxyLand 2",status-playable,playable,2020-08-06 14:41:30.000 +01004200099F2000,"Fractured Minds",status-playable,playable,2022-09-13 21:21:40.000 +0100F1A00A5DC000,"FRAMED Collection",status-playable;nvdec,playable,2022-07-27 11:48:15.000 +0100AC40108D8000,"Fred3ric",status-playable,playable,2021-04-15 13:30:31.000 +01000490067AE000,"Frederic 2: Evil Strikes Back",status-playable,playable,2020-07-23 16:44:37.000 +01005B1006988000,"Frederic: Resurrection of Music",nvdec;status-playable,playable,2020-07-23 16:59:53.000 +010082B00EE50000,"Freedom Finger",nvdec;status-playable,playable,2021-06-09 19:31:30.000 +0100EB800B614000,"Freedom Planet",status-playable,playable,2020-05-14 12:23:06.000 +010003F00BD48000,"Friday the 13th: Killer Puzzle",status-playable,playable,2021-01-28 01:33:38.000 +010092A00C4B6000,"Friday the 13th: The Game Ultimate Slasher Edition",status-playable;nvdec;online-broken;UE4,playable,2022-09-06 17:33:27.000 +0100F200178F4000,"FRONT MISSION 1st: Remake",status-playable,playable,2023-06-09 07:44:24.000 +0100861012474000,"Frontline Zed",status-playable,playable,2020-10-03 12:55:59.000 +0100B5300B49A000,"Frost",status-playable,playable,2022-07-27 12:00:36.000 +010038A007AA4000,"FruitFall Crush",status-playable,playable,2020-10-20 11:33:33.000 +01008D800AE4A000,"FullBlast",status-playable,playable,2020-05-19 10:34:13.000 +010002F00CC20000,"FUN! FUN! Animal Park",status-playable,playable,2021-04-14 17:08:52.000 +0100A8F00B3D0000,"FunBox Party",status-playable,playable,2020-05-15 12:07:02.000 +0100E7B00BF24000,"Funghi Explosion",status-playable,playable,2020-11-23 14:17:41.000 +01008E10130F8000,"Funimation",gpu;status-boots,boots,2021-04-08 13:08:17.000 +0100EA501033C000,"Funny Bunny Adventures",status-playable,playable,2020-08-05 13:46:56.000 +01000EC00AF98000,"Furi",status-playable,playable,2022-07-27 12:21:20.000 +0100A6B00D4EC000,"Furwind",status-playable,playable,2021-02-19 19:44:08.000 +0100ECE00C0C4000,"Fury Unleashed",crash;services;status-ingame,ingame,2020-10-18 11:52:40.000 +,"Fury Unleashed Demo",status-playable,playable,2020-10-08 20:09:21.000 +0100E1F013674000,"FUSER™",status-playable;nvdec;UE4,playable,2022-10-17 20:58:32.000 +,"Fushigi no Gensokyo Lotus Labyrinth",Needs Update;audio;gpu;nvdec;status-ingame,ingame,2021-01-20 15:30:02.000 +01003C300B274000,"Futari de! Nyanko Daisensou",status-playable,playable,2024-01-05 22:26:52.000 +010055801134E000,"FUZE Player",status-ingame;online-broken;vulkan-backend-bug,ingame,2022-10-18 12:23:53.000 +0100EAD007E98000,"FUZE4 Nintendo Switch",status-playable;vulkan-backend-bug,playable,2022-09-06 19:25:01.000 +010067600F1A0000,"FuzzBall",crash;status-nothing,nothing,2021-03-29 20:13:21.000 +,"G-MODE Archives 06 The strongest ever Julia Miyamoto",status-playable,playable,2020-10-15 13:06:26.000 +0100EB10108EA000,"G.I. Joe: Operation Blackout",UE4;crash;status-boots,boots,2020-11-21 12:37:44.000 +010048600B14E000,"Gal Metal",status-playable,playable,2022-07-27 20:57:48.000 +010024700901A000,"Gal*Gun 2",status-playable;nvdec;UE4,playable,2022-07-27 12:45:37.000 +0100047013378000,"Gal*Gun Returns [ ぎゃる☆がん りたーんず ]",status-playable;nvdec,playable,2022-10-17 23:50:46.000 +0100C9800A454000,"GALAK-Z: Variant S",status-boots;online-broken,boots,2022-07-29 11:59:12.000 +0100C62011050000,"Game Boy™ – Nintendo Switch Online",status-playable,playable,2023-03-21 12:43:48.000 +010012F017576000,"Game Boy™ Advance – Nintendo Switch Online",status-playable,playable,2023-02-16 20:38:15.000 +0100FA5010788000,"Game Builder Garage™",status-ingame,ingame,2024-04-20 21:46:22.000 +0100AF700BCD2000,"Game Dev Story",status-playable,playable,2020-05-20 00:00:38.000 +01006BD00F8C0000,"Game Doraemon Nobita no Shin Kyoryu",gpu;status-ingame,ingame,2023-02-27 02:03:28.000 +01000FA00A4E4000,"Garage",status-playable,playable,2020-05-19 20:59:53.000 +010061E00E8BE000,"Garfield Kart Furious Racing",status-playable;ldn-works;loader-allocator,playable,2022-09-13 21:40:25.000 +0100EA001069E000,"Gates Of Hell",slow;status-playable,playable,2020-10-22 12:44:26.000 +010025500C098000,"Gato Roboto",status-playable,playable,2023-01-20 15:04:11.000 +010065E003FD8000,"Gear.Club Unlimited",status-playable,playable,2021-06-08 13:03:19.000 +010072900AFF0000,"Gear.Club Unlimited 2",status-playable;nvdec;online-broken,playable,2022-07-29 12:52:16.000 +01000F000D9F0000,"Geki Yaba Runner Anniversary Edition",status-playable,playable,2021-02-19 18:59:07.000 +010052A00942A000,"Gekido Kintaro's Revenge",status-playable,playable,2020-10-27 12:44:05.000 +01009D000AF3A000,"Gelly Break Deluxe",UE4;status-playable,playable,2021-03-03 16:04:02.000 +01001A4008192000,"Gem Smashers",nvdec;status-playable,playable,2021-06-08 13:40:51.000 +010014901144C000,"Genetic Disaster",status-playable,playable,2020-06-19 21:41:12.000 +0100D7E0110B2000,"Genkai Tokki Moero Crystal H- 極限凸起 萌情水晶 H - 한계돌파 모에로크리스탈 H",32-bit;status-playable,playable,2022-06-06 00:42:09.000 +010000300C79C000,"GensokyoDefenders",status-playable;online-broken;UE4,playable,2022-07-29 13:48:12.000 +0100AC600EB4C000,"Gensou Rougoku no Kaleidscope",status-menus;crash,menus,2021-11-24 08:45:07.000 +01007FC012FD4000,"Georifters",UE4;crash;nvdec;status-menus,menus,2020-12-04 22:30:50.000 +010058F010296000,"GERRRMS",status-playable,playable,2020-08-15 11:32:52.000 +01006F30129F8000,"Get 10 quest",status-playable,playable,2020-08-03 12:48:39.000 +0100B5B00E77C000,"Get Over Here",status-playable,playable,2022-10-28 11:53:52.000 +0100EEB005ACC000,"Ghost 1.0",status-playable,playable,2021-02-19 20:48:47.000 +010063200C588000,"Ghost Blade HD",status-playable;online-broken,playable,2022-09-13 21:51:21.000 +010057500E744000,"Ghost Grab 3000",status-playable,playable,2020-07-11 18:09:52.000 +010094C00E180000,"Ghost Parade",status-playable,playable,2020-07-14 00:43:54.000 +01004B301108C000,"Ghost Sweeper",status-playable,playable,2022-10-10 12:45:36.000 +010029B018432000,"Ghost Trick: Phantom Detective",status-playable,playable,2023-08-23 14:50:12.000 +010008A00F632000,"Ghostbusters: The Video Game Remastered",status-playable;nvdec,playable,2021-09-17 07:26:57.000 +010090F012916000,"Ghostrunner",UE4;crash;gpu;nvdec;status-ingame,ingame,2020-12-17 13:01:59.000 +0100D6200F2BA000,"Ghosts 'n Goblins Resurrection",status-playable,playable,2023-05-09 12:40:41.000 +01003830092B8000,"Giana Sisters: Twisted Dreams - Owltimate Edition",status-playable,playable,2022-07-29 14:06:12.000 +0100D95012C0A000,"Gibbous - A Cthulhu Adventure",status-playable;nvdec,playable,2022-10-10 12:57:17.000 +010045F00BFC2000,"GIGA WRECKER ALT.",status-playable,playable,2022-07-29 14:13:54.000 +01002C400E526000,"Gigantosaurus The Game",status-playable;UE4,playable,2022-09-27 21:20:00.000 +0100C50007070000,"Ginger: Beyond the Crystal",status-playable,playable,2021-02-17 16:27:00.000 +01006BA013990000,"Girabox",status-playable,playable,2020-12-12 13:55:05.000 +01007E90116CE000,"Giraffe and Annika",UE4;crash;status-ingame,ingame,2020-12-04 22:41:57.000 +01006DD00CC96000,"Girls und Panzer Dream Tank Match DX",status-playable;ldn-untested,playable,2022-09-12 16:07:11.000 +01005CB009E20000,"Glaive: Brick Breaker",status-playable,playable,2020-05-20 12:15:59.000 +0100B6F01227C000,"Glitch's Trip",status-playable,playable,2020-12-17 16:00:57.000 +0100EB501130E000,"Glyph",status-playable,playable,2021-02-08 19:56:51.000 +0100EB8011B0C000,"Gnome More War",status-playable,playable,2020-12-17 16:33:07.000 +010008D00CCEC000,"Gnomes Garden 2",status-playable,playable,2021-02-19 20:08:13.000 +010036C00D0D6000,"Gnomes Garden: Lost King",deadlock;status-menus,menus,2021-11-18 11:14:03.000 +01008EF013A7C000,"Gnosia",status-playable,playable,2021-04-05 17:20:30.000 +01000C800FADC000,"Go All Out!",status-playable;online-broken,playable,2022-09-21 19:16:34.000 +010055A0161F4000,"Go Rally",gpu;status-ingame,ingame,2023-08-16 21:18:23.000 +0100C1800A9B6000,"Go Vacation™",status-playable;nvdec;ldn-works,playable,2024-05-13 19:28:53.000 +0100E6300F854000,"Go! Fish Go!",status-playable,playable,2020-07-27 13:52:28.000 +010032600C8CE000,"Goat Simulator: The GOATY",32-bit;status-playable,playable,2022-07-29 21:02:33.000 +01001C700873E000,"GOD EATER 3",gpu;status-ingame;nvdec,ingame,2022-07-29 21:33:21.000 +0100F3D00B032000,"GOD WARS The Complete Legend",nvdec;status-playable,playable,2020-05-19 14:37:50.000 +0100CFA0111C8000,"Gods Will Fall",status-playable,playable,2021-02-08 16:49:59.000 +0100D82009024000,"Goetia",status-playable,playable,2020-05-19 12:55:39.000 +01004D501113C000,"Going Under",deadlock;nvdec;status-ingame,ingame,2020-12-11 22:29:46.000 +0100126006EF0000,"GOKEN",status-playable,playable,2020-08-05 20:22:38.000 +010013800F0A4000,"Golazo!",status-playable,playable,2022-09-13 21:58:37.000 +01003C000D84C000,"Golem Gates",status-ingame;crash;nvdec;online-broken;UE4,ingame,2022-07-30 11:35:11.000 +0100779004172000,"Golf Story",status-playable,playable,2020-05-14 14:56:17.000 +01006FB00EBE0000,"Golf With Your Friends",status-playable;online-broken,playable,2022-09-29 12:55:11.000 +0100EEC00AA6E000,"Gone Home",status-playable,playable,2022-08-01 11:14:20.000 +01007C2002B3C000,"GoNNER",status-playable,playable,2020-05-19 12:05:02.000 +0100B0500FE4E000,"Good Job!™",status-playable,playable,2021-03-02 13:15:55.000 +01003AD0123A2000,"Good Night, Knight",status-nothing;crash,nothing,2023-07-30 23:38:13.000 +0100F610122F6000,"Good Pizza, Great Pizza",status-playable,playable,2020-12-04 22:59:18.000 +010014C0100C6000,"Goosebumps Dead of Night",gpu;nvdec;status-ingame,ingame,2020-12-10 20:02:16.000 +0100B8000B190000,"Goosebumps The Game",status-playable,playable,2020-05-19 11:56:52.000 +0100F2A005C98000,"Gorogoa",status-playable,playable,2022-08-01 11:55:08.000 +01000C7003FE8000,"GORSD",status-playable,playable,2020-12-04 22:15:21.000 +0100E8D007E16000,"Gotcha Racing 2nd",status-playable,playable,2020-07-23 17:14:04.000 +01001010121DE000,"Gothic Murder: Adventure That Changes Destiny",deadlock;status-ingame;crash,ingame,2022-09-30 23:16:53.000 +01003FF009E60000,"Grab the Bottle",status-playable,playable,2020-07-14 17:06:41.000 +01004D10020F2000,"Graceful Explosion Machine",status-playable,playable,2020-05-19 20:36:55.000 +010038D00EC88000,"Grand Brix Shooter",slow;status-playable,playable,2020-06-24 13:23:54.000 +010038100D436000,"Grand Guilds",UE4;nvdec;status-playable,playable,2021-04-26 12:49:05.000 +0100BE600D07A000,"Grand Prix Story",status-playable,playable,2022-08-01 12:42:23.000 +05B1D2ABD3D30000,"Grand Theft Auto 3",services;status-nothing;crash;homebrew,nothing,2023-05-01 22:01:58.000 +0100E0600BBC8000,"GRANDIA HD Collection",status-boots;crash,boots,2024-08-19 04:29:48.000 +010028200E132000,"Grass Cutter - Mutated Lawns",slow;status-ingame,ingame,2020-05-19 18:27:42.000 +010074E0099FA000,"Grave Danger",status-playable,playable,2020-05-18 17:41:28.000 +010054A013E0C000,"GraviFire",status-playable,playable,2021-04-05 17:13:32.000 +01002C2011828000,"Gravity Rider Zero",gpu;status-ingame;vulkan-backend-bug,ingame,2022-09-29 13:56:13.000 +0100BD800DFA6000,"Greedroid",status-playable,playable,2020-12-14 11:14:32.000 +010068D00AE68000,"GREEN",status-playable,playable,2022-08-01 12:54:15.000 +0100CBB0070EE000,"Green Game: TimeSwapper",nvdec;status-playable,playable,2021-02-19 18:51:55.000 +0100DFE00F002000,"GREEN The Life Algorithm",status-playable,playable,2022-09-27 21:37:13.000 +0100DA7013792000,"Grey Skies: A War of the Worlds Story",status-playable;UE4,playable,2022-10-24 11:13:59.000 +010031200981C000,"Grid Mania",status-playable,playable,2020-05-19 14:11:05.000 +0100197008B52000,"GRIDD: Retroenhanced",status-playable,playable,2020-05-20 11:32:40.000 +0100DC800A602000,"GRID™ Autosport",status-playable;nvdec;online-broken;ldn-untested,playable,2023-03-02 20:14:45.000 +0100B7900B024000,"Grim Fandango Remastered",status-playable;nvdec,playable,2022-08-01 13:55:58.000 +010078E012D80000,"Grim Legends 2: Song of the Dark Swan",status-playable;nvdec,playable,2022-10-18 12:58:45.000 +010009F011F90000,"Grim Legends: The Forsaken Bride",status-playable;nvdec,playable,2022-10-18 13:14:06.000 +01001E200F2F8000,"Grimshade",status-playable,playable,2022-10-02 12:44:20.000 +0100538012496000,"Grindstone",status-playable,playable,2023-02-08 15:54:06.000 +0100459009A2A000,"GRIP",status-playable;nvdec;online-broken;UE4,playable,2022-08-01 15:00:22.000 +0100E1700C31C000,"GRIS",nvdec;status-playable,playable,2021-06-03 13:33:44.000 +01009D7011B02000,"GRISAIA PHANTOM TRIGGER 01&02",status-playable;nvdec,playable,2022-12-04 21:16:06.000 +01005250123B8000,"GRISAIA PHANTOM TRIGGER 03",audout;status-playable,playable,2021-01-31 12:30:47.000 +0100D970123BA000,"GRISAIA PHANTOM TRIGGER 04",audout;status-playable,playable,2021-01-31 12:40:37.000 +01002330123BC000,"GRISAIA PHANTOM TRIGGER 05",audout;nvdec;status-playable,playable,2021-01-31 12:49:59.000 +0100CAF013AE6000,"GRISAIA PHANTOM TRIGGER 5.5",audout;nvdec;status-playable,playable,2021-01-31 12:59:44.000 +010091300FFA0000,"Grizzland",gpu;status-ingame,ingame,2024-07-11 16:28:34.000 +0100EB500D92E000,"GROOVE COASTER WAI WAI PARTY!!!!",status-playable;nvdec;ldn-broken,playable,2021-11-06 14:54:27.000 +01007E100456C000,"Guacamelee! 2",status-playable,playable,2020-05-15 14:56:59.000 +0100BAE00B470000,"Guacamelee! Super Turbo Championship Edition",status-playable,playable,2020-05-13 23:44:18.000 +010089900C9FA000,"Guess the Character",status-playable,playable,2020-05-20 13:14:19.000 +01005DC00D80C000,"Guess the word",status-playable,playable,2020-07-26 21:34:25.000 +01006F80082E4000,"GUILTY GEAR XX ACCENT CORE PLUS R",nvdec;status-playable,playable,2021-01-13 09:28:33.000 +01003C6008940000,"GUNBIRD for Nintendo Switch",32-bit;status-playable,playable,2021-06-04 19:16:01.000 +0100BCB00AE98000,"GUNBIRD2 for Nintendo Switch",status-playable,playable,2020-10-10 14:41:16.000 +,"Gunka o haita neko",gpu;nvdec;status-ingame,ingame,2020-08-25 12:37:56.000 +010061000D318000,"Gunman Clive HD Collection",status-playable,playable,2020-10-09 12:17:35.000 +01006D4003BCE000,"Guns, Gore and Cannoli 2",online;status-playable,playable,2021-01-06 18:43:59.000 +01008C800E654000,"Gunvolt Chronicles Luminous Avenger iX - Retail Version",status-playable,playable,2020-06-16 22:47:07.000 +0100763015C2E000,"Gunvolt Chronicles: Luminous Avenger iX 2",status-nothing;crash;Needs Update,nothing,2022-04-29 15:34:34.000 +01002C8018554000,"Gurimugurimoa OnceMore Demo",status-playable,playable,2022-07-29 22:07:31.000 +0100AC601DCA8000,"GYLT",status-ingame;crash,ingame,2024-03-18 20:16:51.000 +0100822012D76000,"HAAK",gpu;status-ingame,ingame,2023-02-19 14:31:05.000 +01007E100EFA8000,"Habroxia",status-playable,playable,2020-06-16 23:04:42.000 +0100535012974000,"Hades",status-playable;vulkan,playable,2022-10-05 10:45:21.000 +0100618010D76000,"Hakoniwa Explorer Plus",slow;status-ingame,ingame,2021-02-19 16:56:19.000 +0100E0D00C336000,"Halloween Pinball",status-playable,playable,2021-01-12 16:00:46.000 +01006FF014152000,"Hamidashi Creative",gpu;status-ingame,ingame,2021-12-19 15:30:51.000 +01003B9007E86000,"Hammerwatch",status-playable;online-broken;ldn-broken,playable,2022-08-01 16:28:46.000 +01003620068EA000,"Hand of Fate 2",status-playable,playable,2022-08-01 15:44:16.000 +0100973011358000,"Hang The Kings",status-playable,playable,2020-07-28 22:56:59.000 +010066C018E50000,"Happy Animals Mini Golf",gpu;status-ingame,ingame,2022-12-04 19:24:28.000 +0100ECE00D13E000,"Hard West",status-nothing;regression,nothing,2022-02-09 07:45:56.000 +0100D55011D60000,"Hardcore Maze Cube",status-playable,playable,2020-12-04 20:01:24.000 +01002F0011DD4000,"HARDCORE MECHA",slow;status-playable,playable,2020-11-01 15:06:33.000 +01000C90117FA000,"HardCube",status-playable,playable,2021-05-05 18:33:03.000 +0100BB600C096000,"Hardway Party",status-playable,playable,2020-07-26 12:35:07.000 +0100D0500AD30000,"Harvest Life",status-playable,playable,2022-08-01 16:51:45.000 +010016B010FDE000,"Harvest Moon®: One World",status-playable,playable,2023-05-26 09:17:19.000 +0100A280187BC000,"Harvestella",status-playable;UE4;vulkan-backend-bug;mac-bug,playable,2024-02-13 07:04:11.000 +0100E29001298000,"Has-Been Heroes",status-playable,playable,2021-01-13 13:31:48.000 +01001CC00FA1A000,"Hatsune Miku: Project DIVA Mega Mix",audio;status-playable;online-broken,playable,2024-01-07 23:12:57.000 +01009E6014F18000,"Haunted Dawn: The Zombie Apocalypse",status-playable,playable,2022-10-28 12:31:51.000 +010023F008204000,"Haunted Dungeons:Hyakki Castle",status-playable,playable,2020-08-12 14:21:48.000 +0100E2600DBAA000,"Haven",status-playable,playable,2021-03-24 11:52:41.000 +0100EA900FB2C000,"Hayfever",status-playable;loader-allocator,playable,2022-09-22 17:35:41.000 +0100EFE00E1DC000,"Headliner: NoviNews",online;status-playable,playable,2021-03-01 11:36:00.000 +0100A8200C372000,"Headsnatchers",UE4;crash;status-menus,menus,2020-07-14 13:29:14.000 +010067400EA5C000,"Headspun",status-playable,playable,2020-07-31 19:46:47.000 +0100D12008EE4000,"Heart&Slash",status-playable,playable,2021-01-13 20:56:32.000 +010059100D928000,"Heaven Dust",status-playable,playable,2020-05-17 14:02:41.000 +0100FD901000C000,"Heaven's Vault",crash;status-ingame,ingame,2021-02-08 18:22:01.000 +0100B9C012B66000,"Helheim Hassle",status-playable,playable,2020-10-14 11:38:36.000 +0100E4300C278000,"Hell is Other Demons",status-playable,playable,2021-01-13 13:23:02.000 +01000938017E5C00,"Hell Pie0",status-playable;nvdec;UE4,playable,2022-11-03 16:48:46.000 +0100A4600E27A000,"Hell Warders",online;status-playable,playable,2021-02-27 02:31:03.000 +010044500CF8E000,"Hellblade: Senua's Sacrifice",gpu;status-ingame;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-01 19:36:50.000 +010087D0084A8000,"Hello Kitty Kruisers With Sanrio Friends",nvdec;status-playable,playable,2021-06-04 19:08:46.000 +0100FAA00B168000,"Hello Neighbor",status-playable;UE4,playable,2022-08-01 21:32:23.000 +010092B00C4F0000,"Hello Neighbor Hide and Seek",UE4;gpu;slow;status-ingame,ingame,2020-10-24 10:59:57.000 +010024600C794000,"Hellpoint",status-menus,menus,2021-11-26 13:24:20.000 +0100BEA00E63A000,"Hero Express",nvdec;status-playable,playable,2020-08-06 13:23:43.000 +010077D01094C000,"Hero-U: Rogue to Redemption",nvdec;status-playable,playable,2021-03-24 11:40:01.000 +0100D2B00BC54000,"Heroes of Hammerwatch - Ultimate Edition",status-playable,playable,2022-08-01 18:30:21.000 +01001B70080F0000,"HEROINE ANTHEM ZERO episode 1",status-playable;vulkan-backend-bug,playable,2022-08-01 22:02:36.000 +010057300B0DC000,"Heroki",gpu;status-ingame,ingame,2023-07-30 19:30:01.000 +0100C2700E338000,"Heroland",status-playable,playable,2020-08-05 15:35:39.000 +01007AC00E012000,"HexaGravity",status-playable,playable,2021-05-28 13:47:48.000 +01004E800F03C000,"Hidden",slow;status-ingame,ingame,2022-10-05 10:56:53.000 +0100F6A00A684000,"Higurashi no Naku Koro ni Hō",audio;status-ingame,ingame,2021-09-18 14:40:28.000 +0100F8D0129F4000,"Himehibi 1 gakki - Princess Days",status-nothing;crash,nothing,2021-11-03 08:34:19.000 +0100F3D008436000,"Hiragana Pixel Party",status-playable,playable,2021-01-14 08:36:50.000 +01004990132AC000,"HITMAN 3 - Cloud Version",Needs Update;crash;services;status-nothing,nothing,2021-04-18 22:35:07.000 +010083A018262000,"Hitman: Blood Money — Reprisal",deadlock;status-ingame,ingame,2024-09-28 16:28:50.000 +01004B100A5CC000,"Hob: The Definitive Edition",status-playable,playable,2021-01-13 09:39:19.000 +0100F7300ED2C000,"Hoggy2",status-playable,playable,2022-10-10 13:53:35.000 +0100F7E00C70E000,"Hogwarts Legacy",status-ingame;slow,ingame,2024-09-03 19:53:58.000 +0100633007D48000,"Hollow Knight",status-playable;nvdec,playable,2023-01-16 15:44:56.000 +0100F2100061E800,"Hollow0",UE4;gpu;status-ingame,ingame,2021-03-03 23:42:56.000 +0100342009E16000,"Holy Potatoes! What The Hell?!",status-playable,playable,2020-07-03 10:48:56.000 +010071B00C904000,"HoPiKo",status-playable,playable,2021-01-13 20:12:38.000 +010087800EE5A000,"Hopping girl KOHANE Jumping Kingdom: Princess of the Black Rabbit",status-boots;crash,boots,2023-02-19 00:51:21.000 +010086D011EB8000,"Horace",status-playable,playable,2022-10-10 14:03:50.000 +0100001019F6E000,"Horizon Chase 2",deadlock;slow;status-ingame;crash;UE4,ingame,2024-08-19 04:24:06.000 +01009EA00B714000,"Horizon Chase Turbo",status-playable,playable,2021-02-19 19:40:56.000 +0100E4200FA82000,"Horror Pinball Bundle",status-menus;crash,menus,2022-09-13 22:15:34.000 +0100017007980000,"Hotel Transylvania 3 Monsters Overboard",nvdec;status-playable,playable,2021-01-27 18:55:31.000 +0100D0E00E51E000,"Hotline Miami Collection",status-playable;nvdec,playable,2022-09-09 16:41:19.000 +0100BDE008218000,"Hotshot Racing",gpu;status-ingame;nvdec;online-broken;ldn-untested;vulkan-backend-bug,ingame,2024-02-04 21:31:17.000 +0100CAE00EB02000,"House Flipper",status-playable,playable,2021-06-16 18:28:32.000 +0100F6800910A000,"Hover",status-playable;online-broken,playable,2022-09-20 12:54:46.000 +0100A66003384000,"Hulu",status-boots;online-broken,boots,2022-12-09 10:05:00.000 +0100701001D92000,"Human Resource Machine",32-bit;status-playable,playable,2020-12-17 21:47:09.000 +01000CA004DCA000,"Human: Fall Flat",status-playable,playable,2021-01-13 18:36:05.000 +0100E1A00AF40000,"Hungry Shark® World",status-playable,playable,2021-01-13 18:26:08.000 +0100EBA004726000,"Huntdown",status-playable,playable,2021-04-05 16:59:54.000 +010068000CAC0000,"Hunter's Legacy: Purrfect Edition",status-playable,playable,2022-08-02 10:33:31.000 +0100C460040EA000,"Hunting Simulator",status-playable;UE4,playable,2022-08-02 10:54:08.000 +010061F010C3A000,"Hunting Simulator 2",status-playable;UE4,playable,2022-10-10 14:25:51.000 +0100B3300B4AA000,"Hyper Jam",UE4;crash;status-boots,boots,2020-12-15 22:52:11.000 +01003B200B372000,"Hyper Light Drifter - Special Edition",status-playable;vulkan-backend-bug,playable,2023-01-13 15:44:48.000 +01006C500A29C000,"HyperBrawl Tournament",crash;services;status-boots,boots,2020-12-04 23:03:27.000 +0100A8B00F0B4000,"HYPERCHARGE Unboxed",status-playable;nvdec;online-broken;UE4;ldn-untested,playable,2022-09-27 21:52:39.000 +010061400ED90000,"HyperParasite",status-playable;nvdec;UE4,playable,2022-09-27 22:05:44.000 +0100959010466000,"Hypnospace Outlaw",status-ingame;nvdec,ingame,2023-08-02 22:46:49.000 +01002B00111A2000,"Hyrule Warriors: Age of Calamity",gpu;deadlock;slow;status-ingame;crash;nvdec;amd-vendor-bug,ingame,2024-02-28 00:47:00.000 +0100A2C01320E000,"Hyrule Warriors: Age of Calamity - Demo Version",slow;status-playable,playable,2022-10-10 17:37:41.000 +0100AE00096EA000,"Hyrule Warriors: Definitive Edition",services-horizon;status-ingame;nvdec,ingame,2024-06-16 10:34:05.000 +0100849000BDA000,"I Am Setsuna",status-playable,playable,2021-11-28 11:06:11.000 +01001860140B0000,"I Saw Black Clouds",nvdec;status-playable,playable,2021-04-19 17:22:16.000 +0100429006A06000,"I, Zombie",status-playable,playable,2021-01-13 14:53:44.000 +01004E5007E92000,"Ice Age Scrat's Nutty Adventure!",status-playable;nvdec,playable,2022-09-13 22:22:29.000 +010053700A25A000,"Ice Cream Surfer",status-playable,playable,2020-07-29 12:04:07.000 +0100954014718000,"Ice Station Z",status-menus;crash,menus,2021-11-21 20:02:15.000 +0100BE9007E7E000,"ICEY",status-playable,playable,2021-01-14 16:16:04.000 +0100BC60099FE000,"Iconoclasts",status-playable,playable,2021-08-30 21:11:04.000 +01001E700EB28000,"Idle Champions of the Forgotten Realms",online;status-boots,boots,2020-12-17 18:24:57.000 +01002EC014BCA000,"IdolDays",gpu;status-ingame;crash,ingame,2021-12-19 15:31:28.000 +01006550129C6000,"If Found...",status-playable,playable,2020-12-11 13:43:14.000 +01001AC00ED72000,"If My Heart Had Wings",status-playable,playable,2022-09-29 14:54:57.000 +01009F20086A0000,"Ikaruga",status-playable,playable,2023-04-06 15:00:02.000 +010040900AF46000,"Ikenfell",status-playable,playable,2021-06-16 17:18:44.000 +01007BC00E55A000,"Immortal Planet",status-playable,playable,2022-09-20 13:40:43.000 +010079501025C000,"Immortal Realms: Vampire Wars",nvdec;status-playable,playable,2021-06-17 17:41:46.000 +01000F400435A000,"Immortal Redneck",nvdec;status-playable,playable,2021-01-27 18:36:28.000 +01004A600EC0A000,"Immortals Fenyx Rising™",gpu;status-menus;crash,menus,2023-02-24 16:19:55.000 +0100737003190000,"IMPLOSION",status-playable;nvdec,playable,2021-12-12 03:52:13.000 +0100A760129A0000,"In rays of the Light",status-playable,playable,2021-04-07 15:18:07.000 +0100A2101107C000,"Indie Puzzle Bundle Vol 1",status-playable,playable,2022-09-27 22:23:21.000 +010002A00CD68000,"Indiecalypse",nvdec;status-playable,playable,2020-06-11 20:19:09.000 +01001D3003FDE000,"Indivisible",status-playable;nvdec,playable,2022-09-29 15:20:57.000 +01002BD00F626000,"Inertial Drift",status-playable;online-broken,playable,2022-10-11 12:22:19.000 +0100D4300A4CA000,"Infernium",UE4;regression;status-nothing,nothing,2021-01-13 16:36:07.000 +010039C001296000,"Infinite Minigolf",online;status-playable,playable,2020-09-29 12:26:25.000 +01001CB00EFD6000,"Infliction: Extended Cut",status-playable;nvdec;UE4,playable,2022-10-02 13:15:55.000 +0100F1401161E000,"INMOST",status-playable,playable,2022-10-05 11:27:40.000 +0100F200049C8000,"InnerSpace",status-playable,playable,2021-01-13 19:36:14.000 +0100D2D009028000,"INSIDE",status-playable,playable,2021-12-25 20:24:56.000 +0100EC7012D34000,"Inside Grass: A little adventure",status-playable,playable,2020-10-15 15:26:27.000 +010099700D750000,"Instant Sports",status-playable,playable,2022-09-09 12:59:40.000 +010099A011A46000,"Instant Sports Summer Games",gpu;status-menus,menus,2020-09-02 13:39:28.000 +010031B0145B8000,"INSTANT SPORTS TENNIS",status-playable,playable,2022-10-28 16:42:17.000 +010041501005E000,"Interrogation: You will be deceived",status-playable,playable,2022-10-05 11:40:10.000 +01000F700DECE000,"Into the Dead 2",status-playable;nvdec,playable,2022-09-14 12:36:14.000 +01001D0003B96000,"INVERSUS Deluxe",status-playable;online-broken,playable,2022-08-02 14:35:36.000 +0100C5B00FADE000,"Invisible Fist",status-playable,playable,2020-08-08 13:25:52.000 +010031B00C48C000,"Invisible, Inc. Nintendo Switch Edition",crash;status-nothing,nothing,2021-01-29 16:28:13.000 +01005F400E644000,"Invisigun Reloaded",gpu;online;status-ingame,ingame,2021-06-10 12:13:24.000 +010041C00D086000,"Ion Fury",status-ingame;vulkan-backend-bug,ingame,2022-08-07 08:27:51.000 +010095C016C14000,"Iridium",status-playable,playable,2022-08-05 23:19:53.000 +0100AD300B786000,"Iris School of Wizardry -Vinculum Hearts-",status-playable,playable,2022-12-05 13:11:15.000 +0100945012168000,"Iris.Fall",status-playable;nvdec,playable,2022-10-18 13:40:22.000 +01005270118D6000,"Iron Wings",slow;status-ingame,ingame,2022-08-07 08:32:57.000 +01004DB003E6A000,"IRONCAST",status-playable,playable,2021-01-13 13:54:29.000 +0100E5700CD56000,"Irony Curtain: From Matryoshka with Love",status-playable,playable,2021-06-04 20:12:37.000 +010063E0104BE000,"Is It Wrong to Try to Pick Up Girls in a Dungeon? Familia Myth Infinite Combate",status-playable,playable,2020-08-31 13:52:21.000 +0100F06013710000,"ISLAND",status-playable,playable,2021-05-06 15:11:47.000 +010077900440A000,"Island Flight Simulator",status-playable,playable,2021-06-04 19:42:46.000 +0100A2600FCA0000,"Island Saver",nvdec;status-playable,playable,2020-10-23 22:07:02.000 +010065200D192000,"Isoland",status-playable,playable,2020-07-26 13:48:16.000 +0100F5600D194000,"Isoland 2 - Ashes of Time",status-playable,playable,2020-07-26 14:29:05.000 +010001F0145A8000,"Isolomus",services;status-boots,boots,2021-11-03 07:48:21.000 +010068700C70A000,"ITTA",status-playable,playable,2021-06-07 03:15:52.000 +01004070022F0000,"Ittle Dew 2+",status-playable,playable,2020-11-17 11:44:32.000 +0100DEB00F12A000,"IxSHE Tell",status-playable;nvdec,playable,2022-12-02 18:00:42.000 +0100D8E00C874000,"izneo",status-menus;online-broken,menus,2022-08-06 15:56:23.000 +0100CD5008D9E000,"James Pond Codename Robocod",status-playable,playable,2021-01-13 09:48:45.000 +01005F4010AF0000,"Japanese Rail Sim: Journey to Kyoto",nvdec;status-playable,playable,2020-07-29 17:14:21.000 +010002D00EDD0000,"JDM Racing",status-playable,playable,2020-08-03 17:02:37.000 +0100C2700AEB8000,"Jenny LeClue - Detectivu",crash;status-nothing,nothing,2020-12-15 21:07:07.000 +01006E400AE2A000,"Jeopardy!®",audout;nvdec;online;status-playable,playable,2021-02-22 13:53:46.000 +0100E4900D266000,"Jet Kave Adventure",status-playable;nvdec,playable,2022-09-09 14:50:39.000 +0100F3500C70C000,"Jet Lancer",gpu;status-ingame,ingame,2021-02-15 18:15:47.000 +0100A5A00AF26000,"Jettomero: Hero of the Universe",status-playable,playable,2022-08-02 14:46:43.000 +01008330134DA000,"Jiffy",gpu;status-ingame;opengl,ingame,2024-02-03 23:11:24.000 +01001F5006DF6000,"Jim is Moving Out!",deadlock;status-ingame,ingame,2020-06-03 22:05:19.000 +0100F4D00D8BE000,"Jinrui no Ninasama he",status-ingame;crash,ingame,2023-03-07 02:04:17.000 +010038D011F08000,"Jisei: The First Case HD",audio;status-playable,playable,2022-10-05 11:43:33.000 +01007CE00C960000,"Job the Leprechaun",status-playable,playable,2020-06-05 12:10:06.000 +01007090104EC000,"John Wick Hex",status-playable,playable,2022-08-07 08:29:12.000 +01006E4003832000,"Johnny Turbo's Arcade: Bad Dudes",status-playable,playable,2020-12-10 12:30:56.000 +010069B002CDE000,"Johnny Turbo's Arcade: Gate Of Doom",status-playable,playable,2022-07-29 12:17:50.000 +010080D002CC6000,"Johnny Turbo's Arcade: Two Crude Dudes",status-playable,playable,2022-08-02 20:29:50.000 +0100D230069CC000,"Johnny Turbo's Arcade: Wizard Fire",status-playable,playable,2022-08-02 20:39:15.000 +01008120128C2000,"JoJos Bizarre Adventure All-Star Battle R",status-playable,playable,2022-12-03 10:45:10.000 +01008B60117EC000,"Journey to the Savage Planet",status-playable;nvdec;UE4;ldn-untested,playable,2022-10-02 18:48:12.000 +0100C7600F654000,"Juicy Realm",status-playable,playable,2023-02-21 19:16:20.000 +0100B4D00C76E000,"JUMANJI: The Video Game",UE4;crash;status-boots,boots,2020-07-12 13:52:25.000 +0100183010F12000,"JUMP FORCE - Deluxe Edition",status-playable;nvdec;online-broken;UE4,playable,2023-10-01 15:56:05.000 +01003D601014A000,"Jump King",status-playable,playable,2020-06-09 10:12:39.000 +0100B9C012706000,"Jump Rope Challenge",services;status-boots;crash;Needs Update,boots,2023-02-27 01:24:28.000 +0100D87009954000,"Jumping Joe & Friends",status-playable,playable,2021-01-13 17:09:42.000 +010069800D2B4000,"JUNK PLANET",status-playable,playable,2020-11-09 12:38:33.000 +0100CE100A826000,"Jurassic Pinball",status-playable,playable,2021-06-04 19:02:37.000 +010050A011344000,"Jurassic World Evolution: Complete Edition",cpu;status-menus;crash,menus,2023-08-04 18:06:54.000 +0100BCE000598000,"Just Dance 2017®",online;status-playable,playable,2021-03-05 09:46:01.000 +0100BEE017FC0000,"Just Dance 2023",status-nothing,nothing,2023-06-05 16:44:54.000 +010075600AE96000,"Just Dance® 2019",gpu;online;status-ingame,ingame,2021-02-27 17:21:27.000 +0100DDB00DB38000,"Just Dance® 2020",status-playable,playable,2022-01-24 13:31:57.000 +0100EA6014BB8000,"Just Dance® 2022",gpu;services;status-ingame;crash;Needs Update,ingame,2022-10-28 11:01:53.000 +0100AC600CF0A000,"Just Die Already",status-playable;UE4,playable,2022-12-13 13:37:50.000 +01002C301033E000,"Just Glide",status-playable,playable,2020-08-07 17:38:10.000 +0100830008426000,"Just Shapes & Beats",ldn-untested;nvdec;status-playable,playable,2021-02-09 12:18:36.000 +010035A0044E8000,"JYDGE",status-playable,playable,2022-08-02 21:20:13.000 +0100D58012FC2000,"Kagamihara/Justice",crash;status-nothing,nothing,2021-06-21 16:41:29.000 +0100D5F00EC52000,"Kairobotica",status-playable,playable,2021-05-06 12:17:56.000 +0100BDC00A664000,"KAMEN RIDER CLIMAX SCRAMBLE",status-playable;nvdec;ldn-untested,playable,2024-07-03 08:51:11.000 +0100A9801180E000,"KAMEN RIDER memory of heroez / Premium Sound Edition",status-playable,playable,2022-12-06 03:14:26.000 +010085300314E000,"KAMIKO",status-playable,playable,2020-05-13 12:48:57.000 +,"Kangokuto Mary Skelter Finale",audio;crash;status-ingame,ingame,2021-01-09 22:39:28.000 +01007FD00DB20000,"Katakoi Contrast - collection of branch -",status-playable;nvdec,playable,2022-12-09 09:41:26.000 +0100D7000C2C6000,"Katamari Damacy REROLL",status-playable,playable,2022-08-02 21:35:05.000 +0100F9800EDFA000,"KATANA KAMI: A Way of the Samurai Story",slow;status-playable,playable,2022-04-09 10:40:16.000 +010029600D56A000,"Katana ZERO",status-playable,playable,2022-08-26 08:09:09.000 +010038B00F142000,"Kaze and the Wild Masks",status-playable,playable,2021-04-19 17:11:03.000 +0100D7C01115E000,"Keen: One Girl Army",status-playable,playable,2020-12-14 23:19:52.000 +01008D400A584000,"Keep Talking and Nobody Explodes",status-playable,playable,2021-02-15 18:05:21.000 +01004B100BDA2000,"KEMONO FRIENDS PICROSS",status-playable,playable,2023-02-08 15:54:34.000 +0100A8200B15C000,"Kentucky Robo Chicken",status-playable,playable,2020-05-12 20:54:17.000 +0100327005C94000,"Kentucky Route Zero: TV Edition",status-playable,playable,2024-04-09 23:22:46.000 +0100DA200A09A000,"Kero Blaster",status-playable,playable,2020-05-12 20:42:52.000 +0100F680116A2000,"Kholat",UE4;nvdec;status-playable,playable,2021-06-17 11:52:48.000 +0100C0A004C2C000,"Kid Tripp",crash;status-nothing,nothing,2020-10-15 07:41:23.000 +0100FB400D832000,"KILL la KILL -IF",status-playable,playable,2020-06-09 14:47:08.000 +010011B00910C000,"Kill The Bad Guy",status-playable,playable,2020-05-12 22:16:10.000 +0100F2900B3E2000,"Killer Queen Black",ldn-untested;online;status-playable,playable,2021-04-08 12:46:18.000 +,"Kin'iro no Corda Octave",status-playable,playable,2020-09-22 13:23:12.000 +010089000F0E8000,"Kine",status-playable;UE4,playable,2022-09-14 14:28:37.000 +0100E6B00FFBA000,"King Lucas",status-playable,playable,2022-09-21 19:43:23.000 +0100B1300783E000,"King Oddball",status-playable,playable,2020-05-13 13:47:57.000 +01008D80148C8000,"King of Seas",status-playable;nvdec;UE4,playable,2022-10-28 18:29:41.000 +0100515014A94000,"King of Seas Demo",status-playable;nvdec;UE4,playable,2022-10-28 18:09:31.000 +01005D2011EA8000,"KINGDOM HEARTS Melody of Memory",crash;nvdec;status-ingame,ingame,2021-03-03 17:34:12.000 +0100A280121F6000,"Kingdom Rush",status-nothing;32-bit;crash;Needs More Attention,nothing,2022-10-05 12:34:00.000 +01005EF003FF2000,"Kingdom Two Crowns",status-playable,playable,2020-05-16 19:36:21.000 +0100BD9004AB6000,"Kingdom: New Lands",status-playable,playable,2022-08-02 21:48:50.000 +0100EF50132BE000,"Kingdoms of Amalur: Re-Reckoning",status-playable,playable,2023-08-10 13:05:08.000 +010091201605A000,"Kirby and the Forgotten Land (Demo version)",status-playable;demo,playable,2022-08-21 21:03:01.000 +0100227010460000,"Kirby Fighters™ 2",ldn-works;online;status-playable,playable,2021-06-17 13:06:39.000 +0100A8E016236000,"Kirby’s Dream Buffet™",status-ingame;crash;online-broken;Needs Update;ldn-works,ingame,2024-03-03 17:04:44.000 +010091D01A57E000,"Kirby’s Return to Dream Land Deluxe - Demo",status-playable;demo,playable,2023-02-18 17:21:55.000 +01006B601380E000,"Kirby’s Return to Dream Land™ Deluxe",status-playable,playable,2024-05-16 19:58:04.000 +01004D300C5AE000,"Kirby™ and the Forgotten Land",gpu;status-ingame,ingame,2024-03-11 17:11:21.000 +01007E3006DDA000,"Kirby™ Star Allies",status-playable;nvdec,playable,2023-11-15 17:06:19.000 +0100F3A00F4CA000,"Kissed by the Baddest Bidder",gpu;status-ingame;nvdec,ingame,2022-12-04 20:57:11.000 +01000C900A136000,"Kitten Squad",status-playable;nvdec,playable,2022-08-03 12:01:59.000 +010079D00C8AE000,"Klondike Solitaire",status-playable,playable,2020-12-13 16:17:27.000 +0100A6800DE70000,"Knight Squad",status-playable,playable,2020-08-09 16:54:51.000 +010024B00E1D6000,"Knight Squad 2",status-playable;nvdec;online-broken,playable,2022-10-28 18:38:09.000 +0100D51006AAC000,"Knight Terrors",status-playable,playable,2020-05-13 13:09:22.000 +01005F8010D98000,"Knightin'+",status-playable,playable,2020-08-31 18:18:21.000 +010004400B22A000,"Knights of Pen & Paper 2 Deluxiest Edition",status-playable,playable,2020-05-13 14:07:00.000 +0100D3F008746000,"Knights of Pen and Paper +1 Deluxier Edition",status-playable,playable,2020-05-11 21:46:32.000 +010001A00A1F6000,"Knock-Knock",nvdec;status-playable,playable,2021-02-01 20:03:19.000 +01009EF00DDB4000,"Knockout City™",services;status-boots;online-broken,boots,2022-12-09 09:48:58.000 +0100C57019BA2000,"Koa and the Five Pirates of Mara",gpu;status-ingame,ingame,2024-07-11 16:14:44.000 +01001E500401C000,"Koi DX",status-playable,playable,2020-05-11 21:37:51.000 +,"Koi no Hanasaku Hyakkaen",32-bit;gpu;nvdec;status-ingame,ingame,2020-10-03 14:17:10.000 +01005D200C9AA000,"Koloro",status-playable,playable,2022-08-03 12:34:02.000 +0100464009294000,"Kona",status-playable,playable,2022-08-03 12:48:19.000 +010016C011AAA000,"Kono Subarashii Sekai ni Shukufuku o Kono Yokubo no Isho ni Choai o",status-playable,playable,2023-04-26 09:51:08.000 +010088500D5EE000,"KORAL",UE4;crash;gpu;status-menus,menus,2020-11-16 12:41:26.000 +0100EC8004762000,"KORG Gadget for Nintendo Switch",status-playable,playable,2020-05-13 13:57:24.000 +010046600CCA4000,"Kotodama: The 7 Mysteries of Fujisawa",audout;status-playable,playable,2021-02-01 20:28:37.000 +010022801242C000,"KukkoroDays",status-menus;crash,menus,2021-11-25 08:52:56.000 +010035A00DF62000,"KUNAI",status-playable;nvdec,playable,2022-09-20 13:48:34.000 +010060400ADD2000,"Kunio-Kun: The World Classics Collection",online;status-playable,playable,2021-01-29 20:21:46.000 +010037500F282000,"KUUKIYOMI 2: Consider It More! - New Era",status-nothing;crash;Needs Update,nothing,2021-11-02 09:34:40.000 +0100894011F62000,"Kwaidan ~Azuma manor story~",status-playable,playable,2022-10-05 12:50:44.000 +0100830004FB6000,"L.A. Noire",status-playable,playable,2022-08-03 16:49:35.000 +0100732009CAE000,"L.F.O. -Lost Future Omega-",UE4;deadlock;status-boots,boots,2020-10-16 12:16:44.000 +0100F2B0123AE000,"L.O.L. Surprise! Remix: We Rule The World",status-playable,playable,2022-10-11 22:48:03.000 +010026000F662800,"LA-MULANA",gpu;status-ingame,ingame,2022-08-12 01:06:21.000 +0100E5D00F4AE000,"LA-MULANA 1 & 2",status-playable,playable,2022-09-22 17:56:36.000 +010038000F644000,"LA-MULANA 2",status-playable,playable,2022-09-03 13:45:57.000 +010058500B3E0000,"Labyrinth of Refrain: Coven of Dusk",status-playable,playable,2021-02-15 17:38:48.000 +010022D0089AE000,"Labyrinth of the Witch",status-playable,playable,2020-11-01 14:42:37.000 +0100BAB00E8C0000,"Langrisser I & II",status-playable,playable,2021-02-19 15:46:10.000 +0100E7200B272000,"Lanota",status-playable,playable,2019-09-04 01:58:14.000 +01005E000D3D8000,"Lapis x Labyrinth",status-playable,playable,2021-02-01 18:58:08.000 +0100AFE00E882000,"Laraan",status-playable,playable,2020-12-16 12:45:48.000 +0100DA700879C000,"Last Day of June",nvdec;status-playable,playable,2021-06-08 11:35:32.000 +01009E100BDD6000,"LASTFIGHT",status-playable,playable,2022-09-20 13:54:55.000 +0100055007B86000,"Late Shift",nvdec;status-playable,playable,2021-02-01 18:43:58.000 +01004EB00DACE000,"Later Daters Part One",status-playable,playable,2020-07-29 16:35:45.000 +01001730144DA000,"Layers of Fear 2",status-playable;nvdec;UE4,playable,2022-10-28 18:49:52.000 +0100BF5006A7C000,"Layers of Fear: Legacy",nvdec;status-playable,playable,2021-02-15 16:30:41.000 +0100CE500D226000,"Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy - Deluxe Edition",status-playable;nvdec;opengl,playable,2022-09-14 15:01:57.000 +0100FDB00AA80000,"Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy DX+0",gpu;status-ingame;nvdec;opengl,ingame,2022-09-14 15:15:55.000 +01009C100390E000,"League of Evil",online;status-playable,playable,2021-06-08 11:23:27.000 +01002E900CD6E000,"Left-Right : The Mansion",status-playable,playable,2020-05-13 13:02:12.000 +010079901C898000,"Legacy of Kain™ Soul Reaver 1&2 Remastered",status-playable,playable,2025-01-07 05:50:01.000 +01002DB007A96000,"Legend of Kay Anniversary",nvdec;status-playable,playable,2021-01-29 18:38:29.000 +0100ECC00EF3C000,"Legend of the Skyfish",status-playable,playable,2020-06-24 13:04:22.000 +01007E900DFB6000,"Legend of the Tetrarchs",deadlock;status-ingame,ingame,2020-07-10 07:54:03.000 +0100A73006E74000,"Legendary Eleven",status-playable,playable,2021-06-08 12:09:03.000 +0100A7700B46C000,"Legendary Fishing",online;status-playable,playable,2021-04-14 15:08:46.000 +0100739018020000,"LEGO® 2K Drive",gpu;status-ingame;ldn-works,ingame,2024-04-09 02:05:12.000 +01003A30012C0000,"LEGO® CITY Undercover",status-playable;nvdec,playable,2024-09-30 08:44:27.000 +010070D009FEC000,"LEGO® DC Super-Villains",status-playable,playable,2021-05-27 18:10:37.000 +010052A00B5D2000,"LEGO® Harry Potter™ Collection",status-ingame;crash,ingame,2024-01-31 10:28:07.000 +010073C01AF34000,"LEGO® Horizon Adventures™",status-ingame;vulkan-backend-bug;opengl-backend-bug;UE4,ingame,2025-01-07 04:24:56.000 +01001C100E772000,"LEGO® Jurassic World",status-playable,playable,2021-05-27 17:00:20.000 +0100D3A00409E000,"LEGO® Marvel Super Heroes 2",status-nothing;crash,nothing,2023-03-02 17:12:33.000 +01006F600FFC8000,"LEGO® Marvel™ Super Heroes",status-playable,playable,2024-09-10 19:02:19.000 +01007FC00206E000,"LEGO® NINJAGO® Movie Video Game",status-nothing;crash,nothing,2022-08-22 19:12:53.000 +010042D00D900000,"LEGO® Star Wars™: The Skywalker Saga",gpu;slow;status-ingame,ingame,2024-04-13 20:08:46.000 +0100A01006E00000,"LEGO® The Incredibles",status-nothing;crash,nothing,2022-08-03 18:36:59.000 +0100838002AEA000,"LEGO® Worlds",crash;slow;status-ingame,ingame,2020-07-17 13:35:39.000 +0100E7500BF84000,"LEGRAND LEGACY: Tale of the Fatebounds",nvdec;status-playable,playable,2020-07-26 12:27:36.000 +0100A8E00CAA0000,"Leisure Suit Larry - Wet Dreams Don't Dry",status-playable,playable,2022-08-03 19:51:44.000 +010031A0135CA000,"Leisure Suit Larry - Wet Dreams Dry Twice",status-playable,playable,2022-10-28 19:00:57.000 +01003AB00983C000,"Lethal League Blaze",online;status-playable,playable,2021-01-29 20:13:31.000 +01008C300648E000,"Letter Quest Remastered",status-playable,playable,2020-05-11 21:30:34.000 +0100CE301678E800,"Letters - a written adventure",gpu;status-ingame,ingame,2023-02-21 20:12:38.000 +01009A200BE42000,"Levelhead",online;status-ingame,ingame,2020-10-18 11:44:51.000 +0100C960041DC000,"Levels+ : Addictive Puzzle Game",status-playable,playable,2020-05-12 13:51:39.000 +0100C8000F146000,"Liberated",gpu;status-ingame;nvdec,ingame,2024-07-04 04:58:24.000 +01003A90133A6000,"Liberated: Enhanced Edition",gpu;status-ingame;nvdec,ingame,2024-07-04 04:48:48.000 +01004360045C8000,"Lichtspeer: Double Speer Edition",status-playable,playable,2020-05-12 16:43:09.000 +010041F0128AE000,"Liege Dragon",status-playable,playable,2022-10-12 10:27:03.000 +010006300AFFE000,"Life Goes On",status-playable,playable,2021-01-29 19:01:20.000 +0100FD101186C000,"Life is Strange 2",status-playable;UE4,playable,2024-07-04 05:05:58.000 +0100DC301186A000,"Life is Strange Remastered",status-playable;UE4,playable,2022-10-03 16:54:44.000 +010008501186E000,"Life is Strange: Before the Storm Remastered",status-playable,playable,2023-09-28 17:15:44.000 +0100500012AB4000,"Life is Strange: True Colors™",gpu;status-ingame;UE4,ingame,2024-04-08 16:11:52.000 +01003AB012F00000,"Life of Boris: Super Slav",status-ingame,ingame,2020-12-17 11:40:05.000 +0100B3A0135D6000,"Life of Fly",status-playable,playable,2021-01-25 23:41:07.000 +010069A01506E000,"Life of Fly 2",slow;status-playable,playable,2022-10-28 19:26:52.000 +01005B6008132000,"Lifeless Planet: Premiere Edition",status-playable,playable,2022-08-03 21:25:13.000 +010030A006F6E000,"Light Fall",nvdec;status-playable,playable,2021-01-18 14:55:36.000 +010087700D07C000,"Light Tracer",nvdec;status-playable,playable,2021-05-05 19:15:43.000 +01009C8009026000,"LIMBO",cpu;status-boots;32-bit,boots,2023-06-28 15:39:19.000 +0100EDE012B58000,"Linelight",status-playable,playable,2020-12-17 12:18:07.000 +0100FAD00E65E000,"Lines X",status-playable,playable,2020-05-11 15:28:30.000 +010032F01096C000,"Lines XL",status-playable,playable,2020-08-31 17:48:23.000 +0100943010310000,"Little Busters! Converted Edition",status-playable;nvdec,playable,2022-09-29 15:34:56.000 +0100A3F009142000,"Little Dragons Café",status-playable,playable,2020-05-12 00:00:52.000 +010079A00D9E8000,"Little Friends: Dogs & Cats",status-playable,playable,2020-11-12 12:45:51.000 +0100B18001D8E000,"Little Inferno",32-bit;gpu;nvdec;status-ingame,ingame,2020-12-17 21:43:56.000 +0100E7000E826000,"Little Misfortune",nvdec;status-playable,playable,2021-02-23 20:39:44.000 +0100FE0014200000,"Little Mouse's Encyclopedia",status-playable,playable,2022-10-28 19:38:58.000 +01002FC00412C000,"Little Nightmares Complete Edition",status-playable;nvdec;UE4,playable,2022-08-03 21:45:35.000 +010097100EDD6000,"Little Nightmares II",status-playable;UE4,playable,2023-02-10 18:24:44.000 +010093A0135D6000,"Little Nightmares II DEMO",status-playable;UE4;demo;vulkan-backend-bug,playable,2024-05-16 18:47:20.000 +0100535014D76000,"Little Noah: Scion of Paradise",status-playable;opengl-backend-bug,playable,2022-09-14 04:17:13.000 +0100E6D00E81C000,"Little Racer",status-playable,playable,2022-10-18 16:41:13.000 +0100DD700D95E000,"Little Shopping",status-playable,playable,2020-10-03 16:34:35.000 +01000FB00AA90000,"Little Town Hero",status-playable,playable,2020-10-15 23:28:48.000 +01000690085BE000,"Little Triangle",status-playable,playable,2020-06-17 14:46:26.000 +0100CF801776C000,"LIVE A LIVE",status-playable;UE4;amd-vendor-bug,playable,2023-02-05 15:12:07.000 +0100BA000FC9C000,"LocO-SportS",status-playable,playable,2022-09-20 14:09:30.000 +010016C009374000,"Lode Runner Legacy",status-playable,playable,2021-01-10 14:10:28.000 +0100D2C013288000,"Lofi Ping Pong",crash;status-ingame,ingame,2020-12-15 20:09:22.000 +0100B6D016EE6000,"Lone Ruin",status-ingame;crash;nvdec,ingame,2023-01-17 06:41:19.000 +0100A0C00E0DE000,"Lonely Mountains: Downhill",status-playable;online-broken,playable,2024-07-04 05:08:11.000 +010062A0178A8000,"LOOPERS",gpu;slow;status-ingame;crash,ingame,2022-06-17 19:21:45.000 +010064200F7D8000,"Lost Horizon",status-playable,playable,2020-09-01 13:41:22.000 +01005ED010642000,"Lost Horizon 2",nvdec;status-playable,playable,2020-06-16 12:02:12.000 +01005FE01291A000,"Lost in Random™",gpu;status-ingame,ingame,2022-12-18 07:09:28.000 +0100133014510000,"Lost Lands 2: The Four Horsemen",status-playable;nvdec,playable,2022-10-24 16:41:00.000 +0100156014C6A000,"Lost Lands 3: The Golden Curse",status-playable;nvdec,playable,2022-10-24 16:30:00.000 +0100BDD010AC8000,"Lost Lands: Dark Overlord",status-playable,playable,2022-10-03 11:52:58.000 +010054600AC74000,"LOST ORBIT: Terminal Velocity",status-playable,playable,2021-06-14 12:21:12.000 +010046600B76A000,"Lost Phone Stories",services;status-ingame,ingame,2020-04-05 23:17:33.000 +01008AD013A86800,"Lost Ruins",gpu;status-ingame,ingame,2023-02-19 14:09:00.000 +010077B0038B2000,"LOST SPHEAR",status-playable,playable,2021-01-10 06:01:21.000 +0100018013124000,"Lost Words: Beyond the Page",status-playable,playable,2022-10-24 17:03:21.000 +0100D36011AD4000,"Love Letter from Thief X",gpu;status-ingame;nvdec,ingame,2023-11-14 03:55:31.000 +0100F0300B7BE000,"Ludomania",crash;services;status-nothing,nothing,2020-04-03 00:33:47.000 +010048701995E000,"Luigi's Mansion™ 2 HD",status-ingame;ldn-broken;amd-vendor-bug,ingame,2024-09-05 23:47:27.000 +0100DCA0064A6000,"Luigi’s Mansion™ 3",gpu;slow;status-ingame;Needs Update;ldn-works,ingame,2024-09-27 22:17:36.000 +010052B00B194000,"Lumini",status-playable,playable,2020-08-09 20:45:09.000 +0100FF00042EE000,"Lumo",status-playable;nvdec,playable,2022-02-11 18:20:30.000 +0100F3100EB44000,"Lust for Darkness",nvdec;status-playable,playable,2020-07-26 12:09:15.000 +0100F0B00F68E000,"Lust for Darkness: Dawn Edition",nvdec;status-playable,playable,2021-06-16 13:47:46.000 +0100EC2011A80000,"Luxar",status-playable,playable,2021-03-04 21:11:57.000 +0100F2400D434000,"MachiKnights -Blood bagos-",status-playable;nvdec;UE4,playable,2022-09-14 15:08:04.000 +010024A009428000,"Mad Carnage",status-playable,playable,2021-01-10 13:00:07.000 +01005E7013476000,"Mad Father",status-playable,playable,2020-11-12 13:22:10.000 +010061E00EB1E000,"Mad Games Tycoon",status-playable,playable,2022-09-20 14:23:14.000 +01004A200E722000,"Magazine Mogul",status-playable;loader-allocator,playable,2022-10-03 12:05:34.000 +01008E500BF62000,"MagiCat",status-playable,playable,2020-12-11 15:22:07.000 +010032C011356000,"Magicolors",status-playable,playable,2020-08-12 18:39:11.000 +01008C300B624000,"Mahjong Solitaire Refresh",status-boots;crash,boots,2022-12-09 12:02:55.000 +010099A0145E8000,"Mahluk dark demon",status-playable,playable,2021-04-15 13:14:24.000 +01001C100D80E000,"Mainlining",status-playable,playable,2020-06-05 01:02:00.000 +0100D9900F220000,"Maitetsu:Pure Station",status-playable,playable,2022-09-20 15:12:49.000 +0100A78017BD6000,"Makai Senki Disgaea 7",status-playable,playable,2023-10-05 00:22:18.000 +01005A700CC3C000,"Mana Spark",status-playable,playable,2020-12-10 13:41:01.000 +010093D00CB22000,"Maneater",status-playable;nvdec;UE4,playable,2024-05-21 16:11:57.000 +0100361009B1A000,"Manifold Garden",status-playable,playable,2020-10-13 20:27:13.000 +0100C9A00952A000,"Manticore - Galaxy on Fire",status-boots;crash;nvdec,boots,2024-02-04 04:37:24.000 +0100E98002F6E000,"Mantis Burn Racing",status-playable;online-broken;ldn-broken,playable,2024-09-02 02:13:04.000 +01008E800D1FE000,"Marble Power Blast",status-playable,playable,2021-06-04 16:00:02.000 +01001B2012D5E000,"Märchen Forest",status-playable,playable,2021-02-04 21:33:34.000 +0100DA7017C9E000,"Marco & The Galaxy Dragon Demo",gpu;status-ingame;demo,ingame,2023-06-03 13:05:33.000 +01006D0017F7A000,"Mario & Luigi: Brothership",status-ingame;crash;slow;UE4;mac-bug,ingame,2025-01-07 04:00:00.000 +010002C00C270000,"MARIO & SONIC AT THE OLYMPIC GAMES TOKYO 2020",status-ingame;crash;online-broken;ldn-works,ingame,2024-08-23 16:12:55.000 +0100317013770000,"MARIO + RABBIDS SPARKS OF HOPE",gpu;status-ingame;Needs Update,ingame,2024-06-20 19:56:19.000 +010067300059A000,"Mario + Rabbids® Kingdom Battle",slow;status-playable;opengl-backend-bug,playable,2024-05-06 10:16:54.000 +0100C9C00E25C000,"Mario Golf™: Super Rush",gpu;status-ingame,ingame,2024-08-18 21:31:48.000 +0100ED100BA3A000,"Mario Kart Live: Home Circuit™",services;status-nothing;crash;Needs More Attention,nothing,2022-12-07 22:36:52.000 +0100152000022000,"Mario Kart™ 8 Deluxe",32-bit;status-playable;ldn-works;LAN;amd-vendor-bug,playable,2024-09-19 11:55:17.000 +01006FE013472000,"Mario Party™ Superstars",gpu;status-ingame;ldn-works;mac-bug,ingame,2024-05-16 11:23:34.000 +010019401051C000,"Mario Strikers™: Battle League",status-boots;crash;nvdec,boots,2024-05-07 06:23:56.000 +0100BDE00862A000,"Mario Tennis™ Aces",gpu;status-ingame;nvdec;ldn-works;LAN,ingame,2024-09-28 15:54:40.000 +0100B99019412000,"Mario vs. Donkey Kong™",status-playable,playable,2024-05-04 21:22:39.000 +0100D9E01DBB0000,"Mario vs. Donkey Kong™ Demo",status-playable,playable,2024-02-18 10:40:06.000 +01009A700A538000,"Mark of the Ninja: Remastered",status-playable,playable,2022-08-04 15:48:30.000 +010044600FDF0000,"Marooners",status-playable;nvdec;online-broken,playable,2022-10-18 21:35:26.000 +010060700AC50000,"MARVEL ULTIMATE ALLIANCE 3: The Black Order",status-playable;nvdec;ldn-untested,playable,2024-02-14 19:51:51.000 +01003DE00C95E000,"Mary Skelter 2",status-ingame;crash;regression,ingame,2023-09-12 07:37:28.000 +0100113008262000,"Masquerada: Songs and Shadows",status-playable,playable,2022-09-20 15:18:54.000 +01004800197F0000,"Master Detective Archives: Rain Code",gpu;status-ingame,ingame,2024-04-19 20:11:09.000 +0100CC7009196000,"Masters of Anima",status-playable;nvdec,playable,2022-08-04 16:00:09.000 +01004B100A1C4000,"MathLand",status-playable,playable,2020-09-01 15:40:06.000 +0100A8C011F26000,"Max and the book of chaos",status-playable,playable,2020-09-02 12:24:43.000 +01001C9007614000,"Max: The Curse of Brotherhood",status-playable;nvdec,playable,2022-08-04 16:33:04.000 +0100E8B012FBC000,"Maze",status-playable,playable,2020-12-17 16:13:58.000 +0100EEF00CBC0000,"MEANDERS",UE4;gpu;status-ingame,ingame,2021-06-11 19:19:33.000 +0100EC000CE24000,"Mech Rage",status-playable,playable,2020-11-18 12:30:16.000 +0100C4F005EB4000,"Mecho Tales",status-playable,playable,2022-08-04 17:03:19.000 +0100E4600D31A000,"Mechstermination Force",status-playable,playable,2024-07-04 05:39:15.000 +,"Medarot Classics Plus Kabuto Ver",status-playable,playable,2020-11-21 11:31:18.000 +,"Medarot Classics Plus Kuwagata Ver",status-playable,playable,2020-11-21 11:30:40.000 +0100BBC00CB9A000,"Mega Mall Story",slow;status-playable,playable,2022-08-04 17:10:58.000 +0100B0C0086B0000,"Mega Man 11",status-playable,playable,2021-04-26 12:07:53.000 +010038E016264000,"Mega Man Battle Network Legacy Collection Vol. 1",status-playable,playable,2023-04-25 03:55:57.000 +0100734016266000,"Mega Man Battle Network Legacy Collection Vol. 2",status-playable,playable,2023-08-03 18:04:32.000 +01002D4007AE0000,"Mega Man Legacy Collection",gpu;status-ingame,ingame,2021-06-03 18:17:17.000 +0100842008EC4000,"Mega Man Legacy Collection 2",status-playable,playable,2021-01-06 08:47:59.000 +01005C60086BE000,"Mega Man X Legacy Collection",audio;crash;services;status-menus,menus,2020-12-04 04:30:17.000 +010025C00D410000,"Mega Man Zero/ZX Legacy Collection",status-playable,playable,2021-06-14 16:17:32.000 +0100FC700F942000,"Megabyte Punch",status-playable,playable,2020-10-16 14:07:18.000 +010006F011220000,"Megadimension Neptunia VII",32-bit;nvdec;status-playable,playable,2020-12-17 20:56:03.000 +010082B00E8B8000,"Megaquarium",status-playable,playable,2022-09-14 16:50:00.000 +010005A00B312000,"Megaton Rainfall",gpu;status-boots;opengl,boots,2022-08-04 18:29:43.000 +0100EA100DF92000,"Meiji Katsugeki Haikara Ryuuseigumi - Seibai Shimaseu, Yonaoshi Kagyou",32-bit;status-playable;nvdec,playable,2022-12-05 13:19:12.000 +0100B360068B2000,"Mekorama",gpu;status-boots,boots,2021-06-17 16:37:21.000 +01000FA010340000,"Melbits World",status-menus;nvdec;online,menus,2021-11-26 13:51:22.000 +0100F68019636000,"Melon Journey",status-playable,playable,2023-04-23 21:20:01.000 +,"Memories Off -Innocent Fille- for Dearest",status-playable,playable,2020-08-04 07:31:22.000 +010062F011E7C000,"Memory Lane",status-playable;UE4,playable,2022-10-05 14:31:03.000 +0100EBE00D5B0000,"Meow Motors",UE4;gpu;status-ingame,ingame,2020-12-18 00:24:01.000 +0100273008FBC000,"Mercenaries Saga Chronicles",status-playable,playable,2021-01-10 12:48:19.000 +010094500C216000,"Mercenaries Wings: The False Phoenix",crash;services;status-nothing,nothing,2020-05-08 22:42:12.000 +0100F900046C4000,"Mercenary Kings: Reloaded Edition",online;status-playable,playable,2020-10-16 13:05:58.000 +0100E5000D3CA000,"Merchants of Kaidan",status-playable,playable,2021-04-15 11:44:28.000 +01009A500D4A8000,"METAGAL",status-playable,playable,2020-06-05 00:05:48.000 +010047F01AA10000,"METAL GEAR SOLID 3: Snake Eater - Master Collection Version",services-horizon;status-menus,menus,2024-07-24 06:34:06.000 +0100E8F00F6BE000,"METAL MAX Xeno Reborn",status-playable,playable,2022-12-05 15:33:53.000 +01002DE00E5D0000,"Metaloid: Origin",status-playable,playable,2020-06-04 20:26:35.000 +010055200E87E000,"Metamorphosis",UE4;audout;gpu;nvdec;status-ingame,ingame,2021-06-16 16:18:11.000 +0100D4900E82C000,"Metro 2033 Redux",gpu;status-ingame,ingame,2022-11-09 10:53:13.000 +0100F0400E850000,"Metro: Last Light Redux",slow;status-ingame;nvdec;vulkan-backend-bug,ingame,2023-11-01 11:53:52.000 +010012101468C000,"Metroid Prime™ Remastered",gpu;status-ingame;Needs Update;vulkan-backend-bug;opengl-backend-bug,ingame,2024-05-07 22:48:15.000 +010093801237C000,"Metroid™ Dread",status-playable,playable,2023-11-13 04:02:36.000 +0100A1200F20C000,"Midnight Evil",status-playable,playable,2022-10-18 22:55:19.000 +0100C1E0135E0000,"Mighty Fight Federation",online;status-playable,playable,2021-04-06 18:39:56.000 +0100AD701344C000,"Mighty Goose",status-playable;nvdec,playable,2022-10-28 20:25:38.000 +01000E2003FA0000,"MIGHTY GUNVOLT BURST",status-playable,playable,2020-10-19 16:05:49.000 +010060D00AE36000,"Mighty Switch Force! Collection",status-playable,playable,2022-10-28 20:40:32.000 +01003DA010E8A000,"Miitopia™",gpu;services-horizon;status-ingame,ingame,2024-09-06 10:39:13.000 +01007DA0140E8000,"Miitopia™ Demo",services;status-menus;crash;demo,menus,2023-02-24 11:50:58.000 +01004B7009F00000,"Miles & Kilo",status-playable,playable,2020-10-22 11:39:49.000 +0100976008FBE000,"Millie",status-playable,playable,2021-01-26 20:47:19.000 +0100F5700C9A8000,"MIND: Path to Thalamus",UE4;status-playable,playable,2021-06-16 17:37:25.000 +0100D71004694000,"Minecraft",status-ingame;crash;ldn-broken,ingame,2024-09-29 12:08:59.000 +01006C100EC08000,"Minecraft Dungeons",status-playable;nvdec;online-broken;UE4,playable,2024-06-26 22:10:43.000 +01007C6012CC8000,"Minecraft Legends",gpu;status-ingame;crash,ingame,2024-03-04 00:32:24.000 +01006BD001E06000,"Minecraft: Nintendo Switch Edition",status-playable;ldn-broken,playable,2023-10-15 01:47:08.000 +01003EF007ABA000,"Minecraft: Story Mode - Season Two",status-playable;online-broken,playable,2023-03-04 00:30:50.000 +010059C002AC2000,"Minecraft: Story Mode - The Complete Adventure",status-boots;crash;online-broken,boots,2022-08-04 18:56:58.000 +0100B7500F756000,"Minefield",status-playable,playable,2022-10-05 15:03:29.000 +01003560119A6000,"Mini Motor Racing X",status-playable,playable,2021-04-13 17:54:49.000 +0100FB700DE1A000,"Mini Trains",status-playable,playable,2020-07-29 23:06:20.000 +010039200EC66000,"Miniature - The Story Puzzle",status-playable;UE4,playable,2022-09-14 17:18:50.000 +010069200EB80000,"Ministry of Broadcast",status-playable,playable,2022-08-10 00:31:16.000 +0100C3F000BD8000,"Minna de Wai Wai! Spelunker",status-nothing;crash,nothing,2021-11-03 07:17:11.000 +0100FAE010864000,"Minoria",status-playable,playable,2022-08-06 18:50:50.000 +01005AB015994000,"Miss Kobayashi's Dragonmaid Burst Forth!! Choro-gon☆Breath",gpu;status-playable,playable,2022-03-28 02:22:24.000 +0100CFA0138C8000,"Missile Dancer",status-playable,playable,2021-01-31 12:22:03.000 +0100E3601495C000,"Missing Features: 2D",status-playable,playable,2022-10-28 20:52:54.000 +010059200CC40000,"Mist Hunter",status-playable,playable,2021-06-16 13:58:58.000 +0100F65011E52000,"Mittelborg: City of Mages",status-playable,playable,2020-08-12 19:58:06.000 +0100876015D74000,"MLB® The Show™ 22",gpu;slow;status-ingame,ingame,2023-04-25 06:28:43.000 +0100A9F01776A000,"MLB® The Show™ 22 Tech Test",services;status-nothing;crash;Needs Update;demo,nothing,2022-12-09 10:28:34.000 +0100913019170000,"MLB® The Show™ 23",gpu;status-ingame,ingame,2024-07-26 00:56:50.000 +0100E2E01C32E000,"MLB® The Show™ 24",services-horizon;status-nothing,nothing,2024-03-31 04:54:11.000 +010011300F74C000,"MO:Astray",crash;status-ingame,ingame,2020-12-11 21:45:44.000 +010020400BDD2000,"Moai VI: Unexpected Guests",slow;status-playable,playable,2020-10-27 16:40:20.000 +0100D8700B712000,"Modern Combat Blackout",crash;status-nothing,nothing,2021-03-29 19:47:15.000 +010004900D772000,"Modern Tales: Age of Invention",slow;status-playable,playable,2022-10-12 11:20:19.000 +0100B8500D570000,"Moero Chronicle™ Hyper",32-bit;status-playable,playable,2022-08-11 07:21:56.000 +01004EB0119AC000,"Moero Crystal H",32-bit;status-playable;nvdec;vulkan-backend-bug,playable,2023-07-05 12:04:22.000 +0100B46017500000,"MOFUMOFUSENSEN",gpu;status-menus,menus,2024-09-21 21:51:08.000 +01004A400C320000,"Momodora: Reverie Under the Moonlight",deadlock;status-nothing,nothing,2022-02-06 03:47:43.000 +01002CC00BC4C000,"Momonga Pinball Adventures",status-playable,playable,2022-09-20 16:00:40.000 +010093100DA04000,"Momotaro Dentetsu Showa, Heisei, Reiwa mo Teiban!",gpu;status-ingame,ingame,2023-09-22 10:21:46.000 +0100FBD00ED24000,"MONKEY BARRELS",status-playable,playable,2022-09-14 17:28:52.000 +01004C500B8E0000,"Monkey King: Master of the Clouds",status-playable,playable,2020-09-28 22:35:48.000 +01003030161DC000,"Monomals",gpu;status-ingame,ingame,2024-08-06 22:02:51.000 +0100F3A00FB78000,"Mononoke Slashdown",status-menus;crash,menus,2022-05-04 20:55:47.000 +01007430037F6000,"MONOPOLY® for Nintendo Switch™",status-playable;nvdec;online-broken,playable,2024-02-06 23:13:01.000 +01005FF013DC2000,"MONOPOLY® Madness",status-playable,playable,2022-01-29 21:13:52.000 +0100E2D0128E6000,"Monster Blast",gpu;status-ingame,ingame,2023-09-02 20:02:32.000 +01006F7001D10000,"Monster Boy and the Cursed Kingdom",status-playable;nvdec,playable,2022-08-04 20:06:32.000 +01005FC01000E000,"Monster Bugs Eat People",status-playable,playable,2020-07-26 02:05:34.000 +0100742007266000,"Monster Energy Supercross - The Official Videogame",status-playable;nvdec;UE4,playable,2022-08-04 20:25:00.000 +0100F8100B982000,"Monster Energy Supercross - The Official Videogame 2",status-playable;nvdec;UE4;ldn-untested,playable,2022-08-04 21:21:24.000 +010097800EA20000,"Monster Energy Supercross - The Official Videogame 3",UE4;audout;nvdec;online;status-playable,playable,2021-06-14 12:37:54.000 +0100E9900ED74000,"Monster Farm",32-bit;nvdec;status-playable,playable,2021-05-05 19:29:13.000 +0100770008DD8000,"Monster Hunter Generations Ultimate™",32-bit;status-playable;online-broken;ldn-works,playable,2024-03-18 14:35:36.000 +0100B04011742000,"Monster Hunter Rise",gpu;slow;status-ingame;crash;nvdec;online-broken;Needs Update;ldn-works,ingame,2024-08-24 11:04:59.000 +010093A01305C000,"Monster Hunter Rise Demo",status-playable;online-broken;ldn-works;demo,playable,2022-10-18 23:04:17.000 +0100E21011446000,"Monster Hunter Stories 2: Wings of Ruin",services;status-ingame,ingame,2022-07-10 19:27:30.000 +010042501329E000,"MONSTER HUNTER STORIES 2: WINGS OF RUIN Trial Version",status-playable;demo,playable,2022-11-13 22:20:26.000 +,"Monster Hunter XX Demo",32-bit;cpu;status-nothing,nothing,2020-03-22 10:12:28.000 +0100C3800049C000,"Monster Hunter XX Nintendo Switch Ver ( Double Cross )",status-playable,playable,2024-07-21 14:08:09.000 +010088400366E000,"Monster Jam Crush It!",UE4;nvdec;online;status-playable,playable,2021-04-08 19:29:27.000 +010095C00F354000,"Monster Jam Steel Titans",status-menus;crash;nvdec;UE4,menus,2021-11-14 09:45:38.000 +010051B0131F0000,"Monster Jam Steel Titans 2",status-playable;nvdec;UE4,playable,2022-10-24 17:17:59.000 +01004DE00DD44000,"Monster Puzzle",status-playable,playable,2020-09-28 22:23:10.000 +0100A0F00DA68000,"Monster Sanctuary",crash;status-ingame,ingame,2021-04-04 05:06:41.000 +0100D30010C42000,"Monster Truck Championship",slow;status-playable;nvdec;online-broken;UE4,playable,2022-10-18 23:16:51.000 +01004E10142FE000,"Monster wo taoshite tsuyoi ken ya yoroi wo te ni shinasai. Shinde mo akiramezu ni tsuyoku nari nasai. Yuushatai ga maoh wo taosu sono hi wo shinzite imasu. - モンスターを倒して強い剣や鎧を手にしなさい。死んでも諦めずに強くなりなさい。勇者隊が魔王を倒すその日を信じています。",crash;status-ingame,ingame,2021-07-23 10:56:44.000 +010039F00EF70000,"Monstrum",status-playable,playable,2021-01-31 11:07:26.000 +0100C2E00B494000,"Moonfall Ultimate",nvdec;status-playable,playable,2021-01-17 14:01:25.000 +0100E3D014ABC000,"Moorhuhn Jump and Run 'Traps and Treasures'",status-playable,playable,2024-03-08 15:10:02.000 +010045C00F274000,"Moorhuhn Kart 2",status-playable;online-broken,playable,2022-10-28 21:10:35.000 +010040E00F642000,"Morbid: The Seven Acolytes",status-playable,playable,2022-08-09 17:21:58.000 +01004230123E0000,"More Dark",status-playable,playable,2020-12-15 16:01:06.000 +01005DA003E6E000,"Morphies Law",UE4;crash;ldn-untested;nvdec;online;status-menus,menus,2020-11-22 17:05:29.000 +0100776003F0C000,"Morphite",status-playable,playable,2021-01-05 19:40:55.000 +0100F2200C984000,"Mortal Kombat 11",slow;status-ingame;nvdec;online-broken;ldn-broken,ingame,2024-06-19 02:22:17.000 +01006560184E6000,"Mortal Kombat™ 1",gpu;status-ingame,ingame,2024-09-04 15:45:47.000 +010032800D740000,"Mosaic",status-playable,playable,2020-08-11 13:07:35.000 +01002ED00B01C000,"Moto Racer 4",UE4;nvdec;online;status-playable,playable,2021-04-08 19:09:11.000 +01003F200D0F2000,"Moto Rush GT",status-playable,playable,2022-08-05 11:23:55.000 +0100361007268000,"MotoGP™18",status-playable;nvdec;UE4;ldn-untested,playable,2022-08-05 11:41:45.000 +01004B800D0E8000,"MotoGP™19",status-playable;nvdec;online-broken;UE4,playable,2022-08-05 11:54:14.000 +01001FA00FBBC000,"MotoGP™20",status-playable;ldn-untested,playable,2022-09-29 17:58:01.000 +01000F5013820000,"MotoGP™21",gpu;status-ingame;nvdec;online-broken;UE4;ldn-untested,ingame,2022-10-28 21:35:08.000 +010040401D564000,"MotoGP™24",gpu;status-ingame,ingame,2024-05-10 23:41:00.000 +01002A900D6D6000,"Motorsport Manager for Nintendo Switch™",status-playable;nvdec,playable,2022-08-05 12:48:14.000 +01009DB00D6E0000,"Mountain Rescue Simulator",status-playable,playable,2022-09-20 16:36:48.000 +0100C4C00E73E000,"Moving Out",nvdec;status-playable,playable,2021-06-07 21:17:24.000 +0100D3300F110000,"Mr Blaster",status-playable,playable,2022-09-14 17:56:24.000 +0100DCA011262000,"Mr. DRILLER DrillLand",nvdec;status-playable,playable,2020-07-24 13:56:48.000 +010031F002B66000,"Mr. Shifty",slow;status-playable,playable,2020-05-08 15:28:16.000 +01005EF00B4BC000,"Ms. Splosion Man",online;status-playable,playable,2020-05-09 20:45:43.000 +010087C009246000,"Muddledash",services;status-ingame,ingame,2020-05-08 16:46:14.000 +01009D200952E000,"MudRunner - American Wilds",gpu;status-ingame;ldn-untested;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-16 11:40:52.000 +010073E008E6E000,"Mugsters",status-playable,playable,2021-01-28 17:57:17.000 +0100A8400471A000,"MUJO",status-playable,playable,2020-05-08 16:31:04.000 +0100211005E94000,"Mulaka",status-playable,playable,2021-01-28 18:07:20.000 +010038B00B9AE000,"Mummy Pinball",status-playable,playable,2022-08-05 16:08:11.000 +01008E200C5C2000,"Muse Dash",status-playable,playable,2020-06-06 14:41:29.000 +010035901046C000,"Mushroom Quest",status-playable,playable,2020-05-17 13:07:08.000 +0100700006EF6000,"Mushroom Wars 2",nvdec;status-playable,playable,2020-09-28 15:26:08.000 +010046400F310000,"Music Racer",status-playable,playable,2020-08-10 08:51:23.000 +,"Musou Orochi 2 Ultimate",crash;nvdec;status-boots,boots,2021-04-09 19:39:16.000 +0100F6000EAA8000,"Must Dash Amigos",status-playable,playable,2022-09-20 16:45:56.000 +01007B6006092000,"MUSYNX",status-playable,playable,2020-05-08 14:24:43.000 +0100C3E00ACAA000,"Mutant Football League: Dynasty Edition",status-playable;online-broken,playable,2022-08-05 17:01:51.000 +01004BE004A86000,"Mutant Mudds Collection",status-playable,playable,2022-08-05 17:11:38.000 +0100E6B00DEA4000,"Mutant Year Zero: Road to Eden - Deluxe Edition",status-playable;nvdec;UE4,playable,2022-09-10 13:31:10.000 +0100161009E5C000,"MX Nitro: Unleashed",status-playable,playable,2022-09-27 22:34:33.000 +0100218011E7E000,"MX vs ATV All Out",status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-10-25 19:51:46.000 +0100D940063A0000,"MXGP3 - The Official Motocross Videogame",UE4;gpu;nvdec;status-ingame,ingame,2020-12-16 14:00:20.000 +01002C6012334000,"My Aunt is a Witch",status-playable,playable,2022-10-19 09:21:17.000 +0100F6F0118B8000,"My Butler",status-playable,playable,2020-06-27 13:46:23.000 +010031200B94C000,"My Friend Pedro",nvdec;status-playable,playable,2021-05-28 11:19:17.000 +01000D700BE88000,"My Girlfriend is a Mermaid!?",nvdec;status-playable,playable,2020-05-08 13:32:55.000 +010039000B68E000,"MY HERO ONE'S JUSTICE",UE4;crash;gpu;online;status-menus,menus,2020-12-10 13:11:04.000 +01007E700DBF6000,"MY HERO ONE'S JUSTICE 2",UE4;gpu;nvdec;status-ingame,ingame,2020-12-18 14:08:47.000 +0100E4701373E000,"My Hidden Things",status-playable,playable,2021-04-15 11:26:06.000 +0100872012B34000,"My Little Dog Adventure",gpu;status-ingame,ingame,2020-12-10 17:47:37.000 +01008C600395A000,"My Little Riding Champion",slow;status-playable,playable,2020-05-08 17:00:53.000 +010086B00C784000,"My Lovely Daughter: ReBorn",status-playable,playable,2022-11-24 17:25:32.000 +0100E7700C284000,"My Memory of Us",status-playable,playable,2022-08-20 11:03:14.000 +010028F00ABAE000,"My Riding Stables - Life with Horses",status-playable,playable,2022-08-05 21:39:07.000 +010042A00FBF0000,"My Riding Stables 2: A New Adventure",status-playable,playable,2021-05-16 14:14:59.000 +0100E25008E68000,"My Time at Portia",status-playable,playable,2021-05-28 12:42:55.000 +0100158011A08000,"My Universe - Cooking Star Restaurant",status-playable,playable,2022-10-19 10:00:44.000 +0100F71011A0A000,"My Universe - Fashion Boutique",status-playable;nvdec,playable,2022-10-12 14:54:19.000 +0100CD5011A02000,"My Universe - PET CLINIC CATS & DOGS",status-boots;crash;nvdec,boots,2022-02-06 02:05:53.000 +01006C301199C000,"My Universe - School Teacher",nvdec;status-playable,playable,2021-01-21 16:02:52.000 +01000D5005974000,"N++ (NPLUSPLUS)",status-playable,playable,2022-08-05 21:54:58.000 +0100A6F00AC70000,"NAIRI: Tower of Shirin",nvdec;status-playable,playable,2020-08-09 19:49:12.000 +010002F001220000,"NAMCO MUSEUM",status-playable;ldn-untested,playable,2024-08-13 07:52:21.000 +0100DAA00AEE6000,"NAMCO MUSEUM™ ARCADE PAC™",status-playable,playable,2021-06-07 21:44:50.000 +,"NAMCOT COLLECTION",audio;status-playable,playable,2020-06-25 13:35:22.000 +010072B00BDDE000,"Narcos: Rise of the Cartels",UE4;crash;nvdec;status-boots,boots,2021-03-22 13:18:47.000 +01006BB00800A000,"NARUTO SHIPPUDEN: Ultimate Ninja STORM 3 Full Burst",status-playable;nvdec,playable,2024-06-16 14:58:05.000 +010084D00CF5E000,"NARUTO SHIPPUDEN™: Ultimate Ninja® STORM 4 ROAD TO BORUTO",status-playable,playable,2024-06-29 13:04:22.000 +0100D2D0190A4000,"NARUTO X BORUTO Ultimate Ninja STORM CONNECTIONS",services-horizon;status-nothing,nothing,2024-07-25 05:16:48.000 +0100715007354000,"NARUTO: Ultimate Ninja STORM",status-playable;nvdec,playable,2022-08-06 14:10:31.000 +0100545016D5E000,"NASCAR Rivals",status-ingame;crash;Incomplete,ingame,2023-04-21 01:17:47.000 +0100103011894000,"Naught",UE4;status-playable,playable,2021-04-26 13:31:45.000 +01001AE00C1B2000,"NBA 2K Playgrounds 2",status-playable;nvdec;online-broken;UE4;vulkan-backend-bug,playable,2022-08-06 14:40:38.000 +0100760002048000,"NBA 2K18",gpu;status-ingame;ldn-untested,ingame,2022-08-06 14:17:51.000 +01001FF00B544000,"NBA 2K19",crash;ldn-untested;services;status-nothing,nothing,2021-04-16 13:07:21.000 +0100E24011D1E000,"NBA 2K21",gpu;status-boots,boots,2022-10-05 15:31:51.000 +0100ACA017E4E800,"NBA 2K23",status-boots,boots,2023-10-10 23:07:14.000 +010006501A8D8000,"NBA 2K24 Kobe Bryant Edition",cpu;gpu;status-boots,boots,2024-08-11 18:23:08.000 +010002900294A000,"NBA Playgrounds",status-playable;nvdec;online-broken;UE4,playable,2022-08-06 17:06:59.000 +0100F5A008126000,"NBA Playgrounds - Enhanced Edition",status-playable;nvdec;online-broken;UE4,playable,2022-08-06 16:13:44.000 +0100BBC00E4F8000,"Need a packet?",status-playable,playable,2020-08-12 16:09:01.000 +010029B0118E8000,"Need for Speed™ Hot Pursuit Remastered",status-playable;online-broken,playable,2024-03-20 21:58:02.000 +010023500B0BA000,"Nefarious",status-playable,playable,2020-12-17 03:20:33.000 +01008390136FC000,"Negative: The Way of Shinobi",nvdec;status-playable,playable,2021-03-24 11:29:41.000 +010065F00F55A000,"Neighbours back From Hell",status-playable;nvdec,playable,2022-10-12 15:36:48.000 +0100B4900AD3E000,"NEKOPARA Vol.1",status-playable;nvdec,playable,2022-08-06 18:25:54.000 +010012900C782000,"NEKOPARA Vol.2",status-playable,playable,2020-12-16 11:04:47.000 +010045000E418000,"NEKOPARA Vol.3",status-playable,playable,2022-10-03 12:49:04.000 +010049F013656000,"NEKOPARA Vol.4",crash;status-ingame,ingame,2021-01-17 01:47:18.000 +01006ED00BC76000,"Nelke & the Legendary Alchemists ~Ateliers of the New World~",status-playable,playable,2021-01-28 19:39:42.000 +01005F000B784000,"Nelly Cootalot: The Fowl Fleet",status-playable,playable,2020-06-11 20:55:42.000 +01001AB0141A8000,"Neo : The World Ends with You (DEMO)- 新すばらしきこのせかい (体験版)",crash;status-ingame,ingame,2021-07-18 07:29:18.000 +0100EBB00D2F4000,"Neo Cab",status-playable,playable,2021-04-24 00:27:58.000 +,"Neo Cab Demo",crash;status-boots,boots,2020-06-16 00:14:00.000 +010006D0128B4000,"NEOGEO POCKET COLOR SELECTION Vol.1",status-playable,playable,2023-07-08 20:55:36.000 +0100BAB01113A000,"Neon Abyss",status-playable,playable,2022-10-05 15:59:44.000 +010075E0047F8000,"Neon Chrome",status-playable,playable,2022-08-06 18:38:34.000 +010032000EAC6000,"Neon Drive",status-playable,playable,2022-09-10 13:45:48.000 +0100B9201406A000,"Neon White",status-ingame;crash,ingame,2023-02-02 22:25:06.000 +0100743008694000,"Neonwall",status-playable;nvdec,playable,2022-08-06 18:49:52.000 +01001A201331E000,"Neoverse Trinity Edition",status-playable,playable,2022-10-19 10:28:03.000 +01000B2011352000,"Nerdook Bundle Vol. 1",gpu;slow;status-ingame,ingame,2020-10-07 14:27:10.000 +01008B0010160000,"Nerved",status-playable;UE4,playable,2022-09-20 17:14:03.000 +0100BA0004F38000,"NeuroVoider",status-playable,playable,2020-06-04 18:20:05.000 +0100C20012A54000,"Nevaeh",gpu;nvdec;status-ingame,ingame,2021-06-16 17:29:03.000 +010039801093A000,"Never Breakup",status-playable,playable,2022-10-05 16:12:12.000 +0100F79012600000,"Neverending Nightmares",crash;gpu;status-boots,boots,2021-04-24 01:43:35.000 +0100A9600EDF8000,"Neverlast",slow;status-ingame,ingame,2020-07-13 23:55:19.000 +010013700DA4A000,"Neverwinter Nights: Enhanced Edition",gpu;status-menus;nvdec,menus,2024-09-30 02:59:19.000 +01004C200100E000,"New Frontier Days ~Founding Pioneers~",status-playable,playable,2020-12-10 12:45:07.000 +0100F4300BF2C000,"New Pokémon Snap™",status-playable,playable,2023-01-15 23:26:57.000 +010017700B6C2000,"New Super Lucky's Tale",status-playable,playable,2024-03-11 14:14:10.000 +0100EA80032EA000,"New Super Mario Bros.™ U Deluxe",32-bit;status-playable,playable,2023-10-08 02:06:37.000 +0100B9500E886000,"Newt One",status-playable,playable,2020-10-17 21:21:48.000 +01005A5011A44000,"Nexomon: Extinction",status-playable,playable,2020-11-30 15:02:22.000 +0100B69012EC6000,"Nexoria: Dungeon Rogue Heroes",gpu;status-ingame,ingame,2021-10-04 18:41:29.000 +0100271004570000,"Next Up Hero",online;status-playable,playable,2021-01-04 22:39:36.000 +0100E5600D446000,"Ni no Kuni: Wrath of the White Witch",status-boots;32-bit;nvdec,boots,2024-07-12 04:52:59.000 +0100EDD00D530000,"Nice Slice",nvdec;status-playable,playable,2020-06-17 15:13:27.000 +01000EC010BF4000,"Niche - a genetics survival game",nvdec;status-playable,playable,2020-11-27 14:01:11.000 +010010701AFB2000,"Nickelodeon All-Star Brawl 2",status-playable,playable,2024-06-03 14:15:01.000 +0100D6200933C000,"Nickelodeon Kart Racers",status-playable,playable,2021-01-07 12:16:49.000 +010058800F860000,"Nicky - The Home Alone Golf Ball",status-playable,playable,2020-08-08 13:45:39.000 +0100A95012668000,"Nicole",status-playable;audout,playable,2022-10-05 16:41:44.000 +0100B8E016F76000,"NieR:Automata The End of YoRHa Edition",slow;status-ingame;crash,ingame,2024-05-17 01:06:34.000 +0100F3A0095A6000,"Night Call",status-playable;nvdec,playable,2022-10-03 12:57:00.000 +0100921006A04000,"Night in the Woods",status-playable,playable,2022-12-03 20:17:54.000 +0100D8500A692000,"Night Trap - 25th Anniversary Edition",status-playable;nvdec,playable,2022-08-08 13:16:14.000 +01005F4009112000,"Nightmare Boy: The New Horizons of Reigns of Dreams, a Metroidvania journey with little rusty nightmares, the empire of knight final boss",status-playable,playable,2021-01-05 15:52:29.000 +01006E700B702000,"Nightmares from the Deep 2: The Siren`s Call",status-playable;nvdec,playable,2022-10-19 10:58:53.000 +0100628004BCE000,"Nights of Azure 2: Bride of the New Moon",status-menus;crash;nvdec;regression,menus,2022-11-24 16:00:39.000 +010042300C4F6000,"Nightshade/百花百狼",nvdec;status-playable,playable,2020-05-10 19:43:31.000 +0100AA0008736000,"Nihilumbra",status-playable,playable,2020-05-10 16:00:12.000 +0100D03003F0E000,"Nine Parchments",status-playable;ldn-untested,playable,2022-08-07 12:32:08.000 +0100E2F014F46000,"NINJA GAIDEN Σ",status-playable;nvdec,playable,2022-11-13 16:27:02.000 +0100696014F4A000,"NINJA GAIDEN Σ2",status-playable;nvdec,playable,2024-07-31 21:53:48.000 +01002AF014F4C000,"NINJA GAIDEN: Master Collection",status-playable;nvdec,playable,2023-08-11 08:25:31.000 +010088E003A76000,"Ninja Shodown",status-playable,playable,2020-05-11 12:31:21.000 +010081D00A480000,"Ninja Striker!",status-playable,playable,2020-12-08 19:33:29.000 +0100CCD0073EA000,"Ninjala",status-boots;online-broken;UE4,boots,2024-07-03 20:04:49.000 +010003C00B868000,"Ninjin: Clash of Carrots",status-playable;online-broken,playable,2024-07-10 05:12:26.000 +0100746010E4C000,"NinNinDays",status-playable,playable,2022-11-20 15:17:29.000 +0100C9A00ECE6000,"Nintendo 64™ – Nintendo Switch Online",gpu;status-ingame;vulkan,ingame,2024-04-23 20:21:07.000 +0100D870045B6000,"Nintendo Entertainment System™ - Nintendo Switch Online",status-playable;online,playable,2022-07-01 15:45:06.000 +0100C4B0034B2000,"Nintendo Labo Toy-Con 01 Variety Kit",gpu;status-ingame,ingame,2022-08-07 12:56:07.000 +01001E9003502000,"Nintendo Labo Toy-Con 03 Vehicle Kit",services;status-menus;crash,menus,2022-08-03 17:20:11.000 +0100165003504000,"Nintendo Labo Toy-Con 04 VR Kit",services;status-boots;crash,boots,2023-01-17 22:30:24.000 +01009AB0034E0000,"Nintendo Labo™ Toy-Con 02: Robot Kit",gpu;status-ingame,ingame,2022-08-07 13:03:19.000 +0100D2F00D5C0000,"Nintendo Switch™ Sports",deadlock;status-boots,boots,2024-09-10 14:20:24.000 +01000EE017182000,"Nintendo Switch™ Sports Online Play Test",gpu;status-ingame,ingame,2022-03-16 07:44:12.000 +010037200C72A000,"Nippon Marathon",nvdec;status-playable,playable,2021-01-28 20:32:46.000 +010020901088A000,"Nirvana Pilot Yume",status-playable,playable,2022-10-29 11:49:49.000 +01009B400ACBA000,"No Heroes Here",online;status-playable,playable,2020-05-10 02:41:57.000 +0100853015E86000,"No Man's Sky",gpu;status-ingame,ingame,2024-07-25 05:18:17.000 +0100F0400F202000,"No More Heroes",32-bit;status-playable,playable,2022-09-13 07:44:27.000 +010071400F204000,"No More Heroes 2: Desperate Struggle",32-bit;status-playable;nvdec,playable,2022-11-19 01:38:13.000 +01007C600EB42000,"No More Heroes 3",gpu;status-ingame;UE4,ingame,2024-03-11 17:06:19.000 +01009F3011004000,"No Straight Roads",status-playable;nvdec,playable,2022-10-05 17:01:38.000 +0100F7D00A1BC000,"NO THING",status-playable,playable,2021-01-04 19:06:01.000 +0100542012884000,"Nongunz: Doppelganger Edition",status-playable,playable,2022-10-29 12:00:39.000 +010016E011EFA000,"Norman's Great Illusion",status-playable,playable,2020-12-15 19:28:24.000 +01001A500AD6A000,"Norn9 ~Norn + Nonette~ LOFN",status-playable;nvdec;vulkan-backend-bug,playable,2022-12-09 09:29:16.000 +01004840086FE000,"NORTH",nvdec;status-playable,playable,2021-01-05 16:17:44.000 +0100A9E00D97A000,"Northgard",status-menus;crash,menus,2022-02-06 02:05:35.000 +01008AE019614000,"nOS new Operating System",status-playable,playable,2023-03-22 16:49:08.000 +0100CB800B07E000,"NOT A HERO: SUPER SNAZZY EDITION",status-playable,playable,2021-01-28 19:31:24.000 +01004D500D9BE000,"Not Not - A Brain Buster",status-playable,playable,2020-05-10 02:05:26.000 +0100DAF00D0E2000,"Not Tonight: Take Back Control Edition",status-playable;nvdec,playable,2022-10-19 11:48:47.000 +0100343013248000,"Nubarron: The adventure of an unlucky gnome",status-playable,playable,2020-12-17 16:45:17.000 +01005140089F6000,"Nuclien",status-playable,playable,2020-05-10 05:32:55.000 +010002700C34C000,"Numbala",status-playable,playable,2020-05-11 12:01:07.000 +010020500C8C8000,"Number Place 10000",gpu;status-menus,menus,2021-11-24 09:14:23.000 +010003701002C000,"Nurse Love Syndrome",status-playable,playable,2022-10-13 10:05:22.000 +0000000000000000,"nx-hbmenu",status-boots;Needs Update;homebrew,boots,2024-04-06 22:05:32.000 +,"nxquake2",services;status-nothing;crash;homebrew,nothing,2022-08-04 23:14:04.000 +010049F00EC30000,"Nyan Cat: Lost in Space",online;status-playable,playable,2021-06-12 13:22:03.000 +01002E6014FC4000,"O---O",status-playable,playable,2022-10-29 12:12:14.000 +010074600CC7A000,"OBAKEIDORO!",nvdec;online;status-playable,playable,2020-10-16 16:57:34.000 +01002A000C478000,"Observer",UE4;gpu;nvdec;status-ingame,ingame,2021-03-03 20:19:45.000 +01007D7001D0E000,"Oceanhorn - Monster of Uncharted Seas",status-playable,playable,2021-01-05 13:55:22.000 +01006CB010840000,"Oceanhorn 2: Knights of the Lost Realm",status-playable,playable,2021-05-21 18:26:10.000 +010096B00A08E000,"Octocopter: Double or Squids",status-playable,playable,2021-01-06 01:30:16.000 +0100CAB006F54000,"Octodad: Dadliest Catch",crash;status-boots,boots,2021-04-23 15:26:12.000 +0100A3501946E000,"OCTOPATH TRAVELER II",gpu;status-ingame;amd-vendor-bug,ingame,2024-09-22 11:39:20.000 +010057D006492000,"Octopath Traveler™",UE4;crash;gpu;status-ingame,ingame,2020-08-31 02:34:36.000 +010084300C816000,"Odallus: The Dark Call",status-playable,playable,2022-08-08 12:37:58.000 +0100BB500EE3C000,"Oddworld: Munch's Oddysee",gpu;nvdec;status-ingame,ingame,2021-06-17 12:11:50.000 +01005E700ABB8000,"Oddworld: New 'n' Tasty",nvdec;status-playable,playable,2021-06-17 17:51:32.000 +0100D210177C6000,"ODDWORLD: SOULSTORM",services-horizon;status-boots;crash,boots,2024-08-18 13:13:26.000 +01002EA00ABBA000,"Oddworld: Stranger's Wrath",status-menus;crash;nvdec;loader-allocator,menus,2021-11-23 09:23:21.000 +010029F00C876000,"Odium to the Core",gpu;status-ingame,ingame,2021-01-08 14:03:52.000 +01006F5013202000,"Off And On Again",status-playable,playable,2022-10-29 19:46:26.000 +01003CD00E8BC000,"Offroad Racing - Buggy X ATV X Moto",status-playable;online-broken;UE4,playable,2022-09-14 18:53:22.000 +01003B900AE12000,"Oh My Godheads: Party Edition",status-playable,playable,2021-04-15 11:04:11.000 +0100F45006A00000,"Oh...Sir! The Hollywood Roast",status-ingame,ingame,2020-12-06 00:42:30.000 +010030B00B2F6000,"OK K.O.! Let’s Play Heroes",nvdec;status-playable,playable,2021-01-11 18:41:02.000 +0100276009872000,"OKAMI HD",status-playable;nvdec,playable,2024-04-05 06:24:58.000 +01006AB00BD82000,"OkunoKA",status-playable;online-broken,playable,2022-08-08 14:41:51.000 +0100CE2007A86000,"Old Man's Journey",nvdec;status-playable,playable,2021-01-28 19:16:52.000 +0100C3D00923A000,"Old School Musical",status-playable,playable,2020-12-10 12:51:12.000 +010099000BA48000,"Old School Racer 2",status-playable,playable,2020-10-19 12:11:26.000 +0100E0200B980000,"OlliOlli: Switch Stance",gpu;status-boots,boots,2024-04-25 08:36:37.000 +0100F9D00C186000,"Olympia Soiree",status-playable,playable,2022-12-04 21:07:12.000 +0100A8B00E14A000,"Olympic Games Tokyo 2020 – The Official Video Game™",ldn-untested;nvdec;online;status-playable,playable,2021-01-06 01:20:24.000 +01001D600E51A000,"Omega Labyrinth Life",status-playable,playable,2021-02-23 21:03:03.000 +,"Omega Vampire",nvdec;status-playable,playable,2020-10-17 19:15:35.000 +0100CDC00C40A000,"Omensight: Definitive Edition",UE4;crash;nvdec;status-ingame,ingame,2020-07-26 01:45:14.000 +01006DB00D970000,"OMG Zombies!",32-bit;status-playable,playable,2021-04-12 18:04:45.000 +010014E017B14000,"OMORI",status-playable,playable,2023-01-07 20:21:02.000 +,"Once Upon A Coma",nvdec;status-playable,playable,2020-08-01 12:09:39.000 +0100BD3006A02000,"One More Dungeon",status-playable,playable,2021-01-06 09:10:58.000 +010076600FD64000,"One Person Story",status-playable,playable,2020-07-14 11:51:02.000 +0100774009CF6000,"ONE PIECE Pirate Warriors 3 Deluxe Edition",nvdec;status-playable,playable,2020-05-10 06:23:52.000 +01008FE00E2F6000,"ONE PIECE: PIRATE WARRIORS 4",status-playable;online-broken;ldn-untested,playable,2022-09-27 22:55:46.000 +0100574002AF4000,"ONE PIECE: Unlimited World Red Deluxe Edition",status-playable,playable,2020-05-10 22:26:32.000 +0100EEA00E3EA000,"One-Way Ticket",UE4;status-playable,playable,2020-06-20 17:20:49.000 +0100463013246000,"Oneiros",status-playable,playable,2022-10-13 10:17:22.000 +010057C00D374000,"Oniken",status-playable,playable,2022-09-10 14:22:38.000 +010037900C814000,"Oniken: Unstoppable Edition",status-playable,playable,2022-08-08 14:52:06.000 +0100416008A12000,"Onimusha: Warlords",nvdec;status-playable,playable,2020-07-31 13:08:39.000 +0100CF4011B2A000,"OniNaki",nvdec;status-playable,playable,2021-02-27 21:52:42.000 +010074000BE8E000,"oOo: Ascension",status-playable,playable,2021-01-25 14:13:34.000 +0100D5400BD90000,"Operación Triunfo 2017",services;status-ingame;nvdec,ingame,2022-08-08 15:06:42.000 +01006CF00CFA4000,"Operencia: The Stolen Sun",UE4;nvdec;status-playable,playable,2021-06-08 13:51:07.000 +01004A200BE82000,"OPUS Collection",status-playable,playable,2021-01-25 15:24:04.000 +010049C0075F0000,"OPUS: The Day We Found Earth",nvdec;status-playable,playable,2021-01-21 18:29:31.000 +0100F9A012892000,"Ord.",status-playable,playable,2020-12-14 11:59:06.000 +010061D00DB74000,"Ori and the Blind Forest: Definitive Edition",status-playable;nvdec;online-broken,playable,2022-09-14 19:58:13.000 +010005800F46E000,"Ori and the Blind Forest: Definitive Edition Demo",status-playable,playable,2022-09-10 14:40:12.000 +01008DD013200000,"Ori and the Will of the Wisps",status-playable,playable,2023-03-07 00:47:13.000 +01006C70102EA000,"Orn: The Tiny Forest Sprite",UE4;gpu;status-ingame,ingame,2020-08-07 14:25:30.000 +0100E5900F49A000,"Othercide",status-playable;nvdec,playable,2022-10-05 19:04:38.000 +01006AA00EE44000,"Otokomizu",status-playable,playable,2020-07-13 21:00:44.000 +01006AF013A9E000,"Otti: The House Keeper",status-playable,playable,2021-01-31 12:11:24.000 +01000320060AC000,"OTTTD: Over The Top Tower Defense",slow;status-ingame,ingame,2020-10-10 19:31:07.000 +010097F010FE6000,"Our Two Bedroom Story",gpu;status-ingame;nvdec,ingame,2023-10-10 17:41:20.000 +0100D5D00C6BE000,"Our World Is Ended.",nvdec;status-playable,playable,2021-01-19 22:46:57.000 +01005A700A166000,"OUT OF THE BOX",status-playable,playable,2021-01-28 01:34:27.000 +0100D9F013102000,"Outbreak Lost Hope",crash;status-boots,boots,2021-04-26 18:01:23.000 +01006EE013100000,"Outbreak The Nightmare Chronicles",status-playable,playable,2022-10-13 10:41:57.000 +0100A0D013464000,"Outbreak: Endless Nightmares",status-playable,playable,2022-10-29 12:35:49.000 +0100C850130FE000,"Outbreak: Epidemic",status-playable,playable,2022-10-13 10:27:31.000 +0100B450130FC000,"Outbreak: The New Nightmare",status-playable,playable,2022-10-19 15:42:07.000 +0100B8900EFA6000,"Outbuddies DX",gpu;status-ingame,ingame,2022-08-04 22:39:24.000 +0100DE70085E8000,"Outlast 2",status-ingame;crash;nvdec,ingame,2022-01-22 22:28:05.000 +01008D4007A1E000,"Outlast: Bundle of Terror",status-playable;nvdec;loader-allocator;vulkan-backend-bug,playable,2024-01-27 04:44:26.000 +01009B900401E000,"Overcooked Special Edition",status-playable,playable,2022-08-08 20:48:52.000 +01006FD0080B2000,"Overcooked! 2",status-playable;ldn-untested,playable,2022-08-08 16:48:10.000 +0100F28011892000,"Overcooked! All You Can Eat",ldn-untested;online;status-playable,playable,2021-04-15 10:33:52.000 +0100D7F00EC64000,"Overlanders",status-playable;nvdec;UE4,playable,2022-09-14 20:15:06.000 +01008EA00E816000,"OVERPASS™",status-playable;online-broken;UE4;ldn-untested,playable,2022-10-17 15:29:47.000 +0100647012F62000,"Override 2: Super Mech League",status-playable;online-broken;UE4,playable,2022-10-19 15:56:04.000 +01008A700F7EE000,"Override: Mech City Brawl - Super Charged Mega Edition",status-playable;nvdec;online-broken;UE4,playable,2022-09-20 17:33:32.000 +0100F8600E21E000,"Overwatch® 2",deadlock;status-boots,boots,2022-09-14 20:22:22.000 +01005F000CC18000,"OVERWHELM",status-playable,playable,2021-01-21 18:37:18.000 +0100BC2004FF4000,"Owlboy",status-playable,playable,2020-10-19 14:24:45.000 +0100AD9012510000,"PAC-MAN™ 99",gpu;status-ingame;online-broken,ingame,2024-04-23 00:48:25.000 +010024C001224000,"PAC-MAN™ CHAMPIONSHIP EDITION 2 PLUS",status-playable,playable,2021-01-19 22:06:18.000 +011123900AEE0000,"Paladins",online;status-menus,menus,2021-01-21 19:21:37.000 +0100F0D004CAE000,"PAN-PAN A tiny big adventure",audout;status-playable,playable,2021-01-25 14:42:00.000 +010083700B730000,"Pang Adventures",status-playable,playable,2021-04-10 12:16:59.000 +010006E00DFAE000,"Pantsu Hunter: Back to the 90s",status-playable,playable,2021-02-19 15:12:27.000 +0100C6A00E94A000,"Panzer Dragoon: Remake",status-playable,playable,2020-10-04 04:03:55.000 +01004AE0108E0000,"Panzer Paladin",status-playable,playable,2021-05-05 18:26:00.000 +010004500DE50000,"Paper Dolls Original",UE4;crash;status-boots,boots,2020-07-13 20:26:21.000 +0100A3900C3E2000,"Paper Mario™: The Origami King",audio;status-playable;Needs Update,playable,2024-08-09 18:27:40.000 +0100ECD018EBE000,"Paper Mario™: The Thousand-Year Door",gpu;status-ingame;intel-vendor-bug;slow,ingame,2025-01-07 04:27:35.000 +01006AD00B82C000,"Paperbound Brawlers",status-playable,playable,2021-01-25 14:32:15.000 +0100DC70174E0000,"Paradigm Paradox",status-playable;vulkan-backend-bug,playable,2022-12-03 22:28:13.000 +01007FB010DC8000,"Paradise Killer",status-playable;UE4,playable,2022-10-05 19:33:05.000 +010063400B2EC000,"Paranautical Activity",status-playable,playable,2021-01-25 13:49:19.000 +01006B5012B32000,"Part Time UFO™",status-ingame;crash,ingame,2023-03-03 03:13:05.000 +01007FC00A040000,"Party Arcade",status-playable;online-broken;UE4;ldn-untested,playable,2022-08-09 12:32:53.000 +0100B8E00359E000,"Party Golf",status-playable;nvdec,playable,2022-08-09 12:38:30.000 +010022801217E000,"Party Hard 2",status-playable;nvdec,playable,2022-10-05 20:31:48.000 +010027D00F63C000,"Party Treats",status-playable,playable,2020-07-02 00:05:00.000 +01001E500EA16000,"Path of Sin: Greed",status-menus;crash,menus,2021-11-24 08:00:00.000 +010031F006E76000,"Pato Box",status-playable,playable,2021-01-25 15:17:52.000 +01001F201121E000,"PAW Patrol Mighty Pups Save Adventure Bay",status-playable,playable,2022-10-13 12:17:55.000 +0100360016800000,"PAW Patrol: Grand Prix",gpu;status-ingame,ingame,2024-05-03 16:16:11.000 +0100CEC003A4A000,"PAW Patrol: On a Roll!",nvdec;status-playable,playable,2021-01-28 21:14:49.000 +01000C4015030000,"Pawapoke R",services-horizon;status-nothing,nothing,2024-05-14 14:28:32.000 +0100A56006CEE000,"Pawarumi",status-playable;online-broken,playable,2022-09-10 15:19:33.000 +0100274004052000,"PAYDAY 2",status-playable;nvdec;online-broken;ldn-untested,playable,2022-08-09 12:56:39.000 +010085700ABC8000,"PBA Pro Bowling",status-playable;nvdec;online-broken;UE4,playable,2022-09-14 23:00:49.000 +0100F95013772000,"PBA Pro Bowling 2021",status-playable;online-broken;UE4,playable,2022-10-19 16:46:40.000 +010072800CBE8000,"PC Building Simulator",status-playable,playable,2020-06-12 00:31:58.000 +010002100CDCC000,"Peaky Blinders: Mastermind",status-playable,playable,2022-10-19 16:56:35.000 +010028A0048A6000,"Peasant Knight",status-playable,playable,2020-12-22 09:30:50.000 +0100C510049E0000,"Penny-Punching Princess",status-playable,playable,2022-08-09 13:37:05.000 +0100CA901AA9C000,"Penny’s Big Breakaway",status-playable;amd-vendor-bug,playable,2024-05-27 07:58:51.000 +0100563005B70000,"Perception",UE4;crash;nvdec;status-menus,menus,2020-12-18 11:49:23.000 +010011700D1B2000,"Perchang",status-playable,playable,2021-01-25 14:19:52.000 +010089F00A3B4000,"Perfect Angle",status-playable,playable,2021-01-21 18:48:45.000 +01005CD012DC0000,"Perky Little Things",status-boots;crash;vulkan,boots,2024-08-04 07:22:46.000 +01005EB013FBA000,"Persephone",status-playable,playable,2021-03-23 22:39:19.000 +0100A0300FC3E000,"Perseverance",status-playable,playable,2020-07-13 18:48:27.000 +010062B01525C000,"Persona 4 Golden",status-playable,playable,2024-08-07 17:48:07.000 +01005CA01580E000,"Persona 5 Royal",gpu;status-ingame,ingame,2024-08-17 21:45:15.000 +010087701B092000,"Persona 5 Tactica",status-playable,playable,2024-04-01 22:21:03.000 +,"Persona 5: Scramble",deadlock;status-boots,boots,2020-10-04 03:22:29.000 +0100801011C3E000,"Persona® 5 Strikers",status-playable;nvdec;mac-bug,playable,2023-09-26 09:36:01.000 +010044400EEAE000,"Petoons Party",nvdec;status-playable,playable,2021-03-02 21:07:58.000 +010053401147C000,"PGA TOUR 2K21",deadlock;status-ingame;nvdec,ingame,2022-10-05 21:53:50.000 +0100DDD00C0EA000,"Phantaruk",status-playable,playable,2021-06-11 18:09:54.000 +0100063005C86000,"Phantom Breaker: Battle Grounds Overdrive",audio;status-playable;nvdec,playable,2024-02-29 14:20:35.000 +010096F00E5B0000,"Phantom Doctrine",status-playable;UE4,playable,2022-09-15 10:51:50.000 +0100C31005A50000,"Phantom Trigger",status-playable,playable,2022-08-09 14:27:30.000 +0100CB000A142000,"Phoenix Wright: Ace Attorney Trilogy",status-playable,playable,2023-09-15 22:03:12.000 +0100DA400F624000,"PHOGS!",online;status-playable,playable,2021-01-18 15:18:37.000 +0100BF1003B9A000,"Physical Contact: 2048",slow;status-playable,playable,2021-01-25 15:18:32.000 +01008110036FE000,"Physical Contact: SPEED",status-playable,playable,2022-08-09 14:40:46.000 +010077300A86C000,"PIANISTA",status-playable;online-broken,playable,2022-08-09 14:52:56.000 +010012100E8DC000,"PICROSS LORD OF THE NAZARICK",status-playable,playable,2023-02-08 15:54:56.000 +0100C9600A88E000,"PICROSS S2",status-playable,playable,2020-10-15 12:01:40.000 +010079200D330000,"PICROSS S3",status-playable,playable,2020-10-15 11:55:27.000 +0100C250115DC000,"PICROSS S4",status-playable,playable,2020-10-15 12:33:46.000 +0100AC30133EC000,"PICROSS S5",status-playable,playable,2022-10-17 18:51:42.000 +010025901432A000,"PICROSS S6",status-playable,playable,2022-10-29 17:52:19.000 +01009B2016104000,"PICROSS S7",status-playable,playable,2022-02-16 12:51:25.000 +010043B00E1CE000,"PictoQuest",status-playable,playable,2021-02-27 15:03:16.000 +0100D06003056000,"Piczle Lines DX",UE4;crash;nvdec;status-menus,menus,2020-11-16 04:21:31.000 +010017600B532000,"Piczle Lines DX 500 More Puzzles!",UE4;status-playable,playable,2020-12-15 23:42:51.000 +01000FD00D5CC000,"Pig Eat Ball",services;status-ingame,ingame,2021-11-30 01:57:45.000 +01001CB0106F8000,"Pikmin 3 Deluxe Demo",32-bit;crash;demo;gpu;status-ingame,ingame,2021-06-16 18:38:07.000 +0100E0B019974000,"Pikmin 4 Demo",gpu;status-ingame;nvdec;UE4;demo;amd-vendor-bug,ingame,2023-09-22 21:41:08.000 +0100AA80194B0000,"Pikmin™ 1",audio;status-ingame,ingame,2024-05-28 18:56:11.000 +0100D680194B2000,"Pikmin™ 1+2",gpu;status-ingame,ingame,2023-07-31 08:53:41.000 +0100F4C009322000,"Pikmin™ 3 Deluxe",gpu;status-ingame;32-bit;nvdec;Needs Update,ingame,2024-09-03 00:28:26.000 +0100B7C00933A000,"Pikmin™ 4",gpu;status-ingame;crash;UE4,ingame,2024-08-26 03:39:08.000 +0100D6200E130000,"Pillars of Eternity: Complete Edition",status-playable,playable,2021-02-27 00:24:21.000 +01007A500B0B2000,"Pilot Sports",status-playable,playable,2021-01-20 15:04:17.000 +0100DA70186D4000,"Pinball FX",status-playable,playable,2024-05-03 17:09:11.000 +0100DB7003828000,"Pinball FX3",status-playable;online-broken,playable,2022-11-11 23:49:07.000 +01002BA00D662000,"Pine",slow;status-ingame,ingame,2020-07-29 16:57:39.000 +010041100B148000,"Pinstripe",status-playable,playable,2020-11-26 10:40:40.000 +01002B20174EE000,"Piofiore: Episodio 1926",status-playable,playable,2022-11-23 18:36:05.000 +01009240117A2000,"Piofiore: Fated Memories",nvdec;status-playable,playable,2020-11-30 14:27:50.000 +0100EA2013BCC000,"Pixel Game Maker Series Puzzle Pedestrians",status-playable,playable,2022-10-24 20:15:50.000 +0100859013CE6000,"Pixel Game Maker Series Werewolf Princess Kaguya",crash;services;status-nothing,nothing,2021-03-26 00:23:07.000 +010060A00F5E8000,"Pixel Gladiator",status-playable,playable,2020-07-08 02:41:26.000 +010000E00E612000,"Pixel Puzzle Makeout League",status-playable,playable,2022-10-13 12:34:00.000 +0100382011002000,"PixelJunk Eden 2",crash;status-ingame,ingame,2020-12-17 11:55:52.000 +0100E4D00A690000,"PixelJunk™ Monsters 2",status-playable,playable,2021-06-07 03:40:01.000 +01004A900C352000,"Pizza Titan Ultra",nvdec;status-playable,playable,2021-01-20 15:58:42.000 +05000FD261232000,"Pizza Tower",status-ingame;crash,ingame,2024-09-16 00:21:56.000 +0100FF8005EB2000,"Plague Road",status-playable,playable,2022-08-09 15:27:14.000 +010030B00C316000,"Planescape: Torment and Icewind Dale: Enhanced Editions",cpu;status-boots;32-bit;crash;Needs Update,boots,2022-09-10 03:58:26.000 +010003C0099EE000,"PLANET ALPHA",UE4;gpu;status-ingame,ingame,2020-12-16 14:42:20.000 +01007EA019CFC000,"Planet Cube: Edge",status-playable,playable,2023-03-22 17:10:12.000 +0100F0A01F112000,"planetarian: The Reverie of a Little Planet & Snow Globe",status-playable,playable,2020-10-17 20:26:20.000 +010087000428E000,"Plantera Deluxe",status-playable,playable,2022-08-09 15:36:28.000 +0100C56010FD8000,"Plants vs. Zombies: Battle for Neighborville™ Complete Edition",gpu;audio;status-boots;crash,boots,2024-09-02 12:58:14.000 +0100E5B011F48000,"PLOID SAGA",status-playable,playable,2021-04-19 16:58:45.000 +01009440095FE000,"Pode",nvdec;status-playable,playable,2021-01-25 12:58:35.000 +010086F0064CE000,"Poi: Explorer Edition",nvdec;status-playable,playable,2021-01-21 19:32:00.000 +0100EB6012FD2000,"Poison Control",status-playable,playable,2021-05-16 14:01:54.000 +010072400E04A000,"Pokémon Café ReMix",status-playable,playable,2021-08-17 20:00:04.000 +01003D200BAA2000,"Pokémon Mystery Dungeon™: Rescue Team DX",status-playable;mac-bug,playable,2024-01-21 00:16:32.000 +01008DB008C2C000,"Pokémon Shield + Pokémon Shield Expansion Pass",deadlock;status-ingame;crash;online-broken;ldn-works;LAN,ingame,2024-08-12 07:20:22.000 +0100ABF008968000,"Pokémon Sword + Pokémon Sword Expansion Pass",deadlock;status-ingame;crash;online-broken;ldn-works;LAN,ingame,2024-08-26 15:40:37.000 +01009AD008C4C000,"Pokémon: Let's Go, Pikachu! demo",slow;status-playable;demo,playable,2023-11-26 11:23:20.000 +0100000011D90000,"Pokémon™ Brilliant Diamond",gpu;status-ingame;ldn-works,ingame,2024-08-28 13:26:35.000 +010015F008C54000,"Pokémon™ HOME",Needs Update;crash;services;status-menus,menus,2020-12-06 06:01:51.000 +01001F5010DFA000,"Pokémon™ Legends: Arceus",gpu;status-ingame;Needs Update;ldn-works,ingame,2024-09-19 10:02:02.000 +01005D100807A000,"Pokémon™ Quest",status-playable,playable,2022-02-22 16:12:32.000 +0100A3D008C5C000,"Pokémon™ Scarlet",gpu;status-ingame;nvdec;ldn-works;amd-vendor-bug,ingame,2023-12-14 13:18:29.000 +01008F6008C5E000,"Pokémon™ Violet",gpu;status-ingame;nvdec;ldn-works;amd-vendor-bug;mac-bug,ingame,2024-07-30 02:51:48.000 +0100187003A36000,"Pokémon™: Let’s Go, Eevee!",status-ingame;crash;nvdec;online-broken;ldn-broken,ingame,2024-06-01 15:03:04.000 +010003F003A34000,"Pokémon™: Let’s Go, Pikachu!",status-ingame;crash;nvdec;online-broken;ldn-broken,ingame,2024-03-15 07:55:41.000 +0100B3F000BE2000,"Pokkén Tournament™ DX",status-playable;nvdec;ldn-works;opengl-backend-bug;LAN;amd-vendor-bug;intel-vendor-bug,playable,2024-07-18 23:11:08.000 +010030D005AE6000,"Pokkén Tournament™ DX Demo",status-playable;demo;opengl-backend-bug,playable,2022-08-10 12:03:19.000 +0100A3500B4EC000,"Polandball: Can Into Space",status-playable,playable,2020-06-25 15:13:26.000 +0100EAB00605C000,"Poly Bridge",services;status-playable,playable,2020-06-08 23:32:41.000 +010017600B180000,"Polygod",slow;status-ingame;regression,ingame,2022-08-10 14:38:14.000 +010074B00ED32000,"Polyroll",gpu;status-boots,boots,2021-07-01 16:16:50.000 +010096B01179A000,"Ponpu",status-playable,playable,2020-12-16 19:09:34.000 +01005C5011086000,"Pooplers",status-playable,playable,2020-11-02 11:52:10.000 +01007EF013CA0000,"Port Royale 4",status-menus;crash;nvdec,menus,2022-10-30 14:34:06.000 +01007BB017812000,"Portal",status-playable,playable,2024-06-12 03:48:29.000 +0100ABD01785C000,"Portal 2",gpu;status-ingame,ingame,2023-02-20 22:44:15.000 +010050D00FE0C000,"Portal Dogs",status-playable,playable,2020-09-04 12:55:46.000 +0100437004170000,"Portal Knights",ldn-untested;online;status-playable,playable,2021-05-27 19:29:04.000 +01005FC010EB2000,"Potata: Fairy Flower",nvdec;status-playable,playable,2020-06-17 09:51:34.000 +01000A4014596000,"Potion Party",status-playable,playable,2021-05-06 14:26:54.000 +0100E1E00CF1A000,"Power Rangers: Battle for the Grid",status-playable,playable,2020-06-21 16:52:42.000 +0100D1C01C194000,"Powerful Pro Baseball 2024-2025",gpu;status-ingame,ingame,2024-08-25 06:40:48.000 +01008E100E416000,"PowerSlave Exhumed",gpu;status-ingame,ingame,2023-07-31 23:19:10.000 +010054F01266C000,"Prehistoric Dude",gpu;status-ingame,ingame,2020-10-12 12:38:48.000 +,"Pretty Princess Magical Coordinate",status-playable,playable,2020-10-15 11:43:41.000 +01007F00128CC000,"Pretty Princess Party",status-playable,playable,2022-10-19 17:23:58.000 +010009300D278000,"Preventive Strike",status-playable;nvdec,playable,2022-10-06 10:55:51.000 +0100210019428000,"Prince of Persia The Lost Crown",status-ingame;crash,ingame,2024-06-08 21:31:58.000 +01007A3009184000,"Princess Peach™: Showtime!",status-playable;UE4,playable,2024-09-21 13:39:45.000 +010024701DC2E000,"Princess Peach™: Showtime! Demo",status-playable;UE4;demo,playable,2024-03-10 17:46:45.000 +01001FA01451C000,"Prinny Presents NIS Classics Volume 1: Phantom Brave: The Hermuda Triangle Remastered / Soul Nomad & the World Eaters",status-boots;crash;Needs Update,boots,2023-02-02 07:23:09.000 +01008FA01187A000,"Prinny® 2: Dawn of Operation Panties, Dood!",32-bit;status-playable,playable,2022-10-13 12:42:58.000 +01007A0011878000,"Prinny®: Can I Really Be the Hero?",32-bit;status-playable;nvdec,playable,2023-10-22 09:25:25.000 +010007F00879E000,"PriPara: All Idol Perfect Stage",status-playable,playable,2022-11-22 16:35:52.000 +010029200AB1C000,"Prison Architect: Nintendo Switch™ Edition",status-playable,playable,2021-04-10 12:27:58.000 +0100C1801B914000,"Prison City",gpu;status-ingame,ingame,2024-03-01 08:19:33.000 +0100F4800F872000,"Prison Princess",status-playable,playable,2022-11-20 15:00:25.000 +0100A9800A1B6000,"Professional Construction – The Simulation",slow;status-playable,playable,2022-08-10 15:15:45.000 +010077B00BDD8000,"Professional Farmer: Nintendo Switch™ Edition",slow;status-playable,playable,2020-12-16 13:38:19.000 +010018300C83A000,"Professor Lupo and his Horrible Pets",status-playable,playable,2020-06-12 00:08:45.000 +0100D1F0132F6000,"Professor Lupo: Ocean",status-playable,playable,2021-04-14 16:33:33.000 +0100BBD00976C000,"Project Highrise: Architect's Edition",status-playable,playable,2022-08-10 17:19:12.000 +0100ACE00DAB6000,"Project Nimbus: Complete Edition",status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-08-10 17:35:43.000 +01002980140F6000,"Project TRIANGLE STRATEGY™ Debut Demo",status-playable;UE4;demo,playable,2022-10-24 21:40:27.000 +0100BDB01150E000,"Project Warlock",status-playable,playable,2020-06-16 10:50:41.000 +,"Psikyo Collection Vol 1",32-bit;status-playable,playable,2020-10-11 13:18:47.000 +0100A2300DB78000,"Psikyo Collection Vol. 3",status-ingame,ingame,2021-06-07 02:46:23.000 +01009D400C4A8000,"Psikyo Collection Vol.2",32-bit;status-playable,playable,2021-06-07 03:22:07.000 +01007A200F2E2000,"Psikyo Shooting Stars Alpha",32-bit;status-playable,playable,2021-04-13 12:03:43.000 +0100D7400F2E4000,"Psikyo Shooting Stars Bravo",32-bit;status-playable,playable,2021-06-14 12:09:07.000 +0100EC100A790000,"PSYVARIAR DELTA",nvdec;status-playable,playable,2021-01-20 13:01:46.000 +,"Puchitto kurasutā",Need-Update;crash;services;status-menus,menus,2020-07-04 16:44:28.000 +0100D61010526000,"Pulstario",status-playable,playable,2022-10-06 11:02:01.000 +01009AE00B788000,"Pumped BMX Pro",status-playable;nvdec;online-broken,playable,2022-09-20 17:40:50.000 +01006C10131F6000,"Pumpkin Jack",status-playable;nvdec;UE4,playable,2022-10-13 12:52:32.000 +010016400F07E000,"Push the Crate",status-playable;nvdec;UE4,playable,2022-09-15 13:28:41.000 +0100B60010432000,"Push the Crate 2",UE4;gpu;nvdec;status-ingame,ingame,2021-06-10 14:20:01.000 +0100F1200F6D8000,"Pushy and Pully in Blockland",status-playable,playable,2020-07-04 11:44:41.000 +0100AAE00CAB4000,"Puyo Puyo Champions",online;status-playable,playable,2020-06-19 11:35:08.000 +010038E011940000,"Puyo Puyo™ Tetris® 2",status-playable;ldn-untested,playable,2023-09-26 11:35:25.000 +0100C5700ECE0000,"Puzzle & Dragons GOLD",slow;status-playable,playable,2020-05-13 15:09:34.000 +010079E01A1E0000,"Puzzle Bobble Everybubble!",audio;status-playable;ldn-works,playable,2023-06-10 03:53:40.000 +010043100F0EA000,"Puzzle Book",status-playable,playable,2020-09-28 13:26:01.000 +0100476004A9E000,"Puzzle Box Maker",status-playable;nvdec;online-broken,playable,2022-08-10 18:00:52.000 +0100A4E017372000,"Pyramid Quest",gpu;status-ingame,ingame,2023-08-16 21:14:52.000 +0100F1100E606000,"Q-YO Blaster",gpu;status-ingame,ingame,2020-06-07 22:36:53.000 +010023600AA34000,"Q.U.B.E. 2",UE4;status-playable,playable,2021-03-03 21:38:57.000 +0100A8D003BAE000,"Qbics Paint",gpu;services;status-ingame,ingame,2021-06-07 10:54:09.000 +0100BA5012E54000,"QUAKE",gpu;status-menus;crash,menus,2022-08-08 12:40:34.000 +010048F0195E8000,"Quake II",status-playable,playable,2023-08-15 03:42:14.000 +,"QuakespasmNX",status-nothing;crash;homebrew,nothing,2022-07-23 19:28:07.000 +010045101288A000,"Quantum Replica",status-playable;nvdec;UE4,playable,2022-10-30 21:17:22.000 +0100F1400BA88000,"Quarantine Circular",status-playable,playable,2021-01-20 15:24:15.000 +0100DCF00F13A000,"Queen's Quest 4: Sacred Truce",status-playable;nvdec,playable,2022-10-13 12:59:21.000 +0100492012378000,"Quell",gpu;status-ingame,ingame,2021-06-11 15:59:53.000 +01001DE005012000,"Quest of Dungeons",status-playable,playable,2021-06-07 10:29:22.000 +,"QuietMansion2",status-playable,playable,2020-09-03 14:59:35.000 +0100AF100EE76000,"Quiplash 2 InterLASHional: The Say Anything Party Game!",status-playable;online-working,playable,2022-10-19 17:43:45.000 +0100E5400BE64000,"R-Type Dimensions EX",status-playable,playable,2020-10-09 12:04:43.000 +0100F930136B6000,"R-Type® Final 2",slow;status-ingame;nvdec;UE4,ingame,2022-10-30 21:46:29.000 +01007B0014300000,"R-Type® Final 2 Demo",slow;status-ingame;nvdec;UE4;demo,ingame,2022-10-24 21:57:42.000 +0100B5A004302000,"R.B.I. Baseball 17",status-playable;online-working,playable,2022-08-11 11:55:47.000 +01005CC007616000,"R.B.I. Baseball 18",status-playable;nvdec;online-working,playable,2022-08-11 11:27:52.000 +0100FCB00BF40000,"R.B.I. Baseball 19",status-playable;nvdec;online-working,playable,2022-08-11 11:43:52.000 +010061400E7D4000,"R.B.I. Baseball 20",status-playable,playable,2021-06-15 21:16:29.000 +0100B4A0115CA000,"R.B.I. Baseball 21",status-playable;online-working,playable,2022-10-24 22:31:45.000 +01005BF00E4DE000,"Rabi-Ribi",status-playable,playable,2022-08-06 17:02:44.000 +010075D00DD04000,"Race with Ryan",UE4;gpu;nvdec;slow;status-ingame,ingame,2020-11-16 04:35:33.000 +0100B8100C54A000,"Rack N Ruin",status-playable,playable,2020-09-04 15:20:26.000 +010024400C516000,"RAD",gpu;status-menus;crash;UE4,menus,2021-11-29 02:01:56.000 +010000600CD54000,"Rad Rodgers Radical Edition",status-playable;nvdec;online-broken,playable,2022-08-10 19:57:23.000 +0100DA400E07E000,"Radiation City",status-ingame;crash,ingame,2022-09-30 11:15:04.000 +01009E40095EE000,"Radiation Island",status-ingame;opengl;vulkan-backend-bug,ingame,2022-08-11 10:51:04.000 +0100C8B00D2BE000,"Radical Rabbit Stew",status-playable,playable,2020-08-03 12:02:56.000 +0100BAD013B6E000,"Radio Commander",nvdec;status-playable,playable,2021-03-24 11:20:46.000 +01008FA00ACEC000,"RADIOHAMMER STATION",audout;status-playable,playable,2021-02-26 20:20:06.000 +01003D00099EC000,"Raging Justice",status-playable,playable,2021-06-03 14:06:50.000 +01005CD013116000,"Raiden IV x Mikado Remix [ 雷電Ⅳ×MIKADO remix ]",status-playable,playable,2022-07-29 15:50:13.000 +01002B000D97E000,"Raiden V: Director's Cut",deadlock;status-boots;nvdec,boots,2024-07-12 07:31:46.000 +01002EE00DC02000,"Railway Empire - Nintendo Switch™ Edition",status-playable;nvdec,playable,2022-10-03 13:53:50.000 +01003C700D0DE000,"Rain City",status-playable,playable,2020-10-08 16:59:03.000 +0100BDD014232000,"Rain on Your Parade",status-playable,playable,2021-05-06 19:32:04.000 +010047600BF72000,"Rain World",status-playable,playable,2023-05-10 23:34:08.000 +01009D9010B9E000,"Rainbows, toilets & unicorns",nvdec;status-playable,playable,2020-10-03 18:08:18.000 +010010B00DDA2000,"Raji: An Ancient Epic",UE4;gpu;nvdec;status-ingame,ingame,2020-12-16 10:05:25.000 +010042A00A9CC000,"Rapala Fishing Pro Series",nvdec;status-playable,playable,2020-12-16 13:26:53.000 +0100E73010754000,"Rascal Fight",status-playable,playable,2020-10-08 13:23:30.000 +010003F00C5C0000,"Rawr-Off",crash;nvdec;status-menus,menus,2020-07-02 00:14:44.000 +01005FF002E2A000,"Rayman® Legends Definitive Edition",status-playable;nvdec;ldn-works,playable,2023-05-27 18:33:07.000 +0100F03011616000,"Re:Turn - One Way Trip",status-playable,playable,2022-08-29 22:42:53.000 +01000B20117B8000,"Re:ZERO -Starting Life in Another World- The Prophecy of the Throne",gpu;status-boots;crash;nvdec;vulkan,boots,2023-03-07 21:27:24.000 +0100A8A00E462000,"Real Drift Racing",status-playable,playable,2020-07-25 14:31:31.000 +010048600CC16000,"Real Heroes: Firefighter",status-playable,playable,2022-09-20 18:18:44.000 +0100E64010BAA000,"realMyst: Masterpiece Edition",nvdec;status-playable,playable,2020-11-30 15:25:42.000 +01000F300F082000,"Reaper: Tale of a Pale Swordsman",status-playable,playable,2020-12-12 15:12:23.000 +0100D9B00E22C000,"Rebel Cops",status-playable,playable,2022-09-11 10:02:53.000 +0100CAA01084A000,"Rebel Galaxy Outlaw",status-playable;nvdec,playable,2022-12-01 07:44:56.000 +0100EF0015A9A000,"Record of Lodoss War-Deedlit in Wonder Labyrinth-",deadlock;status-ingame;Needs Update;Incomplete,ingame,2022-01-19 10:00:59.000 +0100CF600FF7A000,"Red Bow",services;status-ingame,ingame,2021-11-29 03:51:34.000 +0100351013A06000,"Red Colony",status-playable,playable,2021-01-25 20:44:41.000 +01007820196A6000,"Red Dead Redemption",status-playable;amd-vendor-bug,playable,2024-09-13 13:26:13.000 +0100069010592000,"Red Death",status-playable,playable,2020-08-30 13:07:37.000 +010075000C608000,"Red Faction Guerrilla Re-Mars-tered",ldn-untested;nvdec;online;status-playable,playable,2021-06-07 03:02:13.000 +01002290070E4000,"Red Game Without a Great Name",status-playable,playable,2021-01-19 21:42:35.000 +010045400D73E000,"Red Siren: Space Defense",UE4;status-playable,playable,2021-04-25 21:21:29.000 +0100D8A00E880000,"Red Wings: Aces of the Sky",status-playable,playable,2020-06-12 01:19:53.000 +01000D100DCF8000,"Redeemer: Enhanced Edition",status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-09-11 10:20:24.000 +0100326010B98000,"Redout: Space Assault",status-playable;UE4,playable,2022-10-19 23:04:35.000 +010007C00E558000,"Reel Fishing: Road Trip Adventure",status-playable,playable,2021-03-02 16:06:43.000 +010045D01273A000,"Reflection of Mine",audio;status-playable,playable,2020-12-17 15:06:37.000 +01003AA00F5C4000,"Refreshing Sideways Puzzle Ghost Hammer",status-playable,playable,2020-10-18 12:08:54.000 +01007A800D520000,"Refunct",UE4;status-playable,playable,2020-12-15 22:46:21.000 +0100FDF0083A6000,"Regalia: Of Men and Monarchs - Royal Edition",status-playable,playable,2022-08-11 12:24:01.000 +01005FD00F15A000,"Regions of Ruin",status-playable,playable,2020-08-05 11:38:58.000 +,"Reine des Fleurs",cpu;crash;status-boots,boots,2020-09-27 18:50:39.000 +0100F1900B144000,"REKT! High Octane Stunts",online;status-playable,playable,2020-09-28 12:33:56.000 +01002AD013C52000,"Relicta",status-playable;nvdec;UE4,playable,2022-10-31 12:48:33.000 +010095900B436000,"RemiLore",status-playable,playable,2021-06-03 18:58:15.000 +0100FBD00F5F6000,"Remothered: Broken Porcelain",UE4;gpu;nvdec;status-ingame,ingame,2021-06-17 15:13:11.000 +01001F100E8AE000,"Remothered: Tormented Fathers",status-playable;nvdec;UE4,playable,2022-10-19 23:26:50.000 +01008EE00B22C000,"Rento Fortune",ldn-untested;online;status-playable,playable,2021-01-19 19:52:21.000 +01007CC0130C6000,"Renzo Racer",status-playable,playable,2021-03-23 22:28:05.000 +01003C400AD42000,"Rescue Tale",status-playable,playable,2022-09-20 18:40:18.000 +010099A00BC1E000,"resident evil 4",status-playable;nvdec,playable,2022-11-16 21:16:04.000 +010018100CD46000,"Resident Evil 5",status-playable;nvdec,playable,2024-02-18 17:15:29.000 +01002A000CD48000,"Resident Evil 6",status-playable;nvdec,playable,2022-09-15 14:31:47.000 +0100643002136000,"Resident Evil Revelations",status-playable;nvdec;ldn-untested,playable,2022-08-11 12:44:19.000 +010095300212A000,"Resident Evil Revelations 2",status-playable;online-broken;ldn-untested,playable,2022-08-11 12:57:50.000 +0100E7F00FFB8000,"Resolutiion",crash;status-boots,boots,2021-04-25 21:57:56.000 +0100FF201568E000,"Restless Night",status-nothing;crash,nothing,2022-02-09 10:54:49.000 +0100069000078000,"Retail Interactive Display Menu (DevQuestMenu)",services;status-nothing;crash,nothing,2022-08-11 13:19:41.000 +010086E00BCB2000,"Retimed",status-playable,playable,2022-08-11 13:32:39.000 +0100F17004156000,"Retro City Rampage DX",status-playable,playable,2021-01-05 17:04:17.000 +01000ED014A2C000,"Retro Machina",status-playable;online-broken,playable,2022-10-31 13:38:58.000 +010032E00E6E2000,"Return of the Obra Dinn",status-playable,playable,2022-09-15 19:56:45.000 +010027400F708000,"Revenge of Justice",status-playable;nvdec,playable,2022-11-20 15:43:23.000 +0100E2E00EA42000,"Reventure",status-playable,playable,2022-09-15 20:07:06.000 +010071D00F156000,"REZ PLZ",status-playable,playable,2020-10-24 13:26:12.000 +0100729012D18000,"Rhythm Fighter",crash;status-nothing,nothing,2021-02-16 18:51:30.000 +010081D0100F0000,"Rhythm of the Gods",UE4;crash;status-nothing,nothing,2020-10-03 17:39:59.000 +01009D5009234000,"RICO",status-playable;nvdec;online-broken,playable,2022-08-11 20:16:40.000 +01002C700C326000,"Riddled Corpses EX",status-playable,playable,2021-06-06 16:02:44.000 +0100AC600D898000,"Rift Keeper",status-playable,playable,2022-09-20 19:48:20.000 +0100A62002042000,"RiME",UE4;crash;gpu;status-boots,boots,2020-07-20 15:52:38.000 +01006AC00EE6E000,"Rimelands: Hammer of Thor",status-playable,playable,2022-10-13 13:32:56.000 +01002FF008C24000,"RingFit Adventure",crash;services;status-nothing,nothing,2021-04-14 19:00:01.000 +010088E00B816000,"RIOT - Civil Unrest",status-playable,playable,2022-08-11 20:27:56.000 +01002A6006AA4000,"Riptide GP: Renegade",online;status-playable,playable,2021-04-13 23:33:02.000 +010065B00B0EC000,"Rise and Shine",status-playable,playable,2020-12-12 15:56:43.000 +0100E9C010EA8000,"Rise of Insanity",status-playable,playable,2020-08-30 15:42:14.000 +01006BA00E652000,"Rise: Race The Future",status-playable,playable,2021-02-27 13:29:06.000 +010020C012F48000,"Rising Hell",status-playable,playable,2022-10-31 13:54:02.000 +010076D00E4BA000,"Risk of Rain 2",status-playable;online-broken,playable,2024-03-04 17:01:05.000 +0100E8300A67A000,"RISK® Global Domination",status-playable;nvdec;online-broken,playable,2022-08-01 18:53:28.000 +010042500FABA000,"Ritual: Crown of Horns",status-playable,playable,2021-01-26 16:01:47.000 +0100BD300F0EC000,"Ritual: Sorcerer Angel",status-playable,playable,2021-03-02 13:51:19.000 +0100A7D008392000,"Rival Megagun",nvdec;online;status-playable,playable,2021-01-19 14:01:46.000 +010069C00401A000,"RIVE: Ultimate Edition",status-playable,playable,2021-03-24 18:45:55.000 +01004E700DFE6000,"River City Girls",nvdec;status-playable,playable,2020-06-10 23:44:09.000 +01002E80168F4000,"River City Girls 2",status-playable,playable,2022-12-07 00:46:27.000 +0100B2100767C000,"River City Melee Mach!!",status-playable;online-broken,playable,2022-09-20 20:51:57.000 +01008AC0115C6000,"RMX Real Motocross",status-playable,playable,2020-10-08 21:06:15.000 +010053000B986000,"Road Redemption",status-playable;online-broken,playable,2022-08-12 11:26:20.000 +010002F009A7A000,"Road to Ballhalla",UE4;status-playable,playable,2021-06-07 02:22:36.000 +0100735010F58000,"Road To Guangdong",slow;status-playable,playable,2020-10-12 12:15:32.000 +010068200C5BE000,"Roarr! Jurassic Edition",status-playable,playable,2022-10-19 23:57:45.000 +0100618004096000,"Robonauts",status-playable;nvdec,playable,2022-08-12 11:33:23.000 +010039A0117C0000,"ROBOTICS;NOTES DaSH",status-playable,playable,2020-11-16 23:09:54.000 +01002A900EE8A000,"ROBOTICS;NOTES ELITE",status-playable,playable,2020-11-26 10:28:20.000 +010044A010BB8000,"Robozarro",status-playable,playable,2020-09-03 13:33:40.000 +01000CC012D74000,"Rock 'N Racing Bundle Grand Prix & Rally",status-playable,playable,2021-01-06 20:23:57.000 +0100A1B00DB36000,"Rock of Ages 3: Make & Break",status-playable;UE4,playable,2022-10-06 12:18:29.000 +0100513005AF4000,"Rock'N Racing Off Road DX",status-playable,playable,2021-01-10 15:27:15.000 +01005EE0036EC000,"Rocket League®",gpu;status-ingame;online-broken;ldn-untested,ingame,2024-02-08 19:51:36.000 +0100E88009A34000,"Rocket Wars",status-playable,playable,2020-07-24 14:27:39.000 +0100EC7009348000,"Rogue Aces",gpu;services;status-ingame;nvdec,ingame,2021-11-30 02:18:30.000 +01009FA010848000,"Rogue Heroes: Ruins of Tasos",online;status-playable,playable,2021-04-01 15:41:25.000 +010056500AD50000,"Rogue Legacy",status-playable,playable,2020-08-10 19:17:28.000 +0100F3B010F56000,"Rogue Robots",status-playable,playable,2020-06-16 12:16:11.000 +01001CC00416C000,"Rogue Trooper Redux",status-playable;nvdec;online-broken,playable,2022-08-12 11:53:01.000 +0100C7300C0EC000,"RogueCube",status-playable,playable,2021-06-16 12:16:42.000 +0100B7200FC96000,"Roll'd",status-playable,playable,2020-07-04 20:24:01.000 +01004900113F8000,"RollerCoaster Tycoon 3 Complete Edition",32-bit;status-playable,playable,2022-10-17 14:18:01.000 +0100E3900B598000,"RollerCoaster Tycoon Adventures",nvdec;status-playable,playable,2021-01-05 18:14:18.000 +010076200CA16000,"Rolling Gunner",status-playable,playable,2021-05-26 12:54:18.000 +0100579011B40000,"Rolling Sky 2",status-playable,playable,2022-11-03 10:21:12.000 +010050400BD38000,"Roman Rumble in Las Vegum - Asterix & Obelix XXL 2",deadlock;status-ingame;nvdec,ingame,2022-07-21 17:54:14.000 +01001F600829A000,"Romancing SaGa 2",status-playable,playable,2022-08-12 12:02:24.000 +0100D0400D27A000,"Romancing SaGa 3",audio;gpu;status-ingame,ingame,2020-06-27 20:26:18.000 +010088100DD42000,"Roof Rage",status-boots;crash;regression,boots,2023-11-12 03:47:18.000 +0100F3000FA58000,"Roombo: First Blood",nvdec;status-playable,playable,2020-08-05 12:11:37.000 +0100936011556000,"Root Double -Before Crime * After Days- Xtend Edition",status-nothing;crash,nothing,2022-02-05 02:03:49.000 +010030A00DA3A000,"Root Letter: Last Answer",status-playable;vulkan-backend-bug,playable,2022-09-17 10:25:57.000 +0100AFE00DDAC000,"Royal Roads",status-playable,playable,2020-11-17 12:54:38.000 +0100E2C00B414000,"RPG Maker MV",nvdec;status-playable,playable,2021-01-05 20:12:01.000 +01005CD015986000,"rRootage Reloaded",status-playable,playable,2022-08-05 23:20:18.000 +0000000000000000,"RSDKv5u",status-ingame;homebrew,ingame,2024-04-01 16:25:34.000 +010009B00D33C000,"Rugby Challenge 4",slow;status-playable;online-broken;UE4,playable,2022-10-06 12:45:53.000 +01006EC00F2CC000,"RUINER",status-playable;UE4,playable,2022-10-03 14:11:33.000 +010074F00DE4A000,"Run the Fan",status-playable,playable,2021-02-27 13:36:28.000 +0100ADF00700E000,"Runbow",online;status-playable,playable,2021-01-08 22:47:44.000 +0100D37009B8A000,"Runbow Deluxe Edition",status-playable;online-broken,playable,2022-08-12 12:20:25.000 +010081C0191D8000,"Rune Factory 3 Special",status-playable,playable,2023-10-15 08:32:49.000 +010051D00E3A4000,"Rune Factory 4 Special",status-ingame;32-bit;crash;nvdec,ingame,2023-05-06 08:49:17.000 +010014D01216E000,"Rune Factory 5 (JP)",gpu;status-ingame,ingame,2021-06-01 12:00:36.000 +0100E21013908000,"RWBY: Grimm Eclipse - Definitive Edition",status-playable;online-broken,playable,2022-11-03 10:44:01.000 +010012C0060F0000,"RXN -Raijin-",nvdec;status-playable,playable,2021-01-10 16:05:43.000 +0100B8B012ECA000,"S.N.I.P.E.R. - Hunter Scope",status-playable,playable,2021-04-19 15:58:09.000 +010007700CFA2000,"Saboteur II: Avenging Angel",Needs Update;cpu;crash;status-nothing,nothing,2021-01-26 14:47:37.000 +0100D94012FE8000,"Saboteur SiO",slow;status-ingame,ingame,2020-12-17 16:59:49.000 +0100A5200C2E0000,"Safety First!",status-playable,playable,2021-01-06 09:05:23.000 +0100A51013530000,"SaGa Frontier Remastered",status-playable;nvdec,playable,2022-11-03 13:54:56.000 +010003A00D0B4000,"SaGa SCARLET GRACE: AMBITIONS™",status-playable,playable,2022-10-06 13:20:31.000 +01008D100D43E000,"Saints Row IV®: Re-Elected™",status-playable;ldn-untested;LAN,playable,2023-12-04 18:33:37.000 +0100DE600BEEE000,"SAINTS ROW®: THE THIRD™ - THE FULL PACKAGE",slow;status-playable;LAN,playable,2023-08-24 02:40:58.000 +01007F000EB36000,"Sakai and...",status-playable;nvdec,playable,2022-12-15 13:53:19.000 +0100B1400E8FE000,"Sakuna: Of Rice and Ruin",status-playable,playable,2023-07-24 13:47:13.000 +0100BBF0122B4000,"Sally Face",status-playable,playable,2022-06-06 18:41:24.000 +0100D250083B4000,"Salt and Sanctuary",status-playable,playable,2020-10-22 11:52:19.000 +0100CD301354E000,"Sam & Max Save the World",status-playable,playable,2020-12-12 13:11:51.000 +010014000C63C000,"Samsara: Deluxe Edition",status-playable,playable,2021-01-11 15:14:12.000 +0100ADF0096F2000,"Samurai Aces for Nintendo Switch",32-bit;status-playable,playable,2020-11-24 20:26:55.000 +01006C600E46E000,"Samurai Jack: Battle Through Time",status-playable;nvdec;UE4,playable,2022-10-06 13:33:59.000 +01002DF00F76C000,"SAMURAI SHODOWN",UE4;crash;nvdec;status-menus,menus,2020-09-06 02:17:00.000 +0100F6800F48E000,"SAMURAI SHODOWN NEOGEO COLLECTION",nvdec;status-playable,playable,2021-06-14 17:12:56.000 +0100B6501A360000,"Samurai Warrior",status-playable,playable,2023-02-27 18:42:38.000 +,"Sangoku Rensenki ~Otome no Heihou!~",gpu;nvdec;status-ingame,ingame,2020-10-17 19:13:14.000 +0100A4700BC98000,"Satsujin Tantei Jack the Ripper",status-playable,playable,2021-06-21 16:32:54.000 +0100F0000869C000,"Saturday Morning RPG",status-playable;nvdec,playable,2022-08-12 12:41:50.000 +01006EE00380C000,"Sausage Sports Club",gpu;status-ingame,ingame,2021-01-10 05:37:17.000 +0100C8300FA90000,"Save Koch",status-playable,playable,2022-09-26 17:06:56.000 +0100D6E008700000,"Save the Ninja Clan",status-playable,playable,2021-01-11 13:56:37.000 +010091000F72C000,"Save Your Nuts",status-playable;nvdec;online-broken;UE4,playable,2022-09-27 23:12:02.000 +0100AA00128BA000,"Saviors of Sapphire Wings / Stranger of Sword City Revisited",status-menus;crash,menus,2022-10-24 23:00:46.000 +01001C3012912000,"Say No! More",status-playable,playable,2021-05-06 13:43:34.000 +010010A00A95E000,"Sayonara Wild Hearts",status-playable,playable,2023-10-23 03:20:01.000 +0100ACB004006000,"Schlag den Star",slow;status-playable;nvdec,playable,2022-08-12 14:28:22.000 +0100394011C30000,"Scott Pilgrim vs. The World™: The Game – Complete Edition",services-horizon;status-nothing;crash,nothing,2024-07-12 08:13:03.000 +0100E7100B198000,"Scribblenauts Mega Pack",nvdec;status-playable,playable,2020-12-17 22:56:14.000 +01001E40041BE000,"Scribblenauts Showdown",gpu;nvdec;status-ingame,ingame,2020-12-17 23:05:53.000 +0100829018568000,"SD GUNDAM BATTLE ALLIANCE Demo",audio;status-ingame;crash;demo,ingame,2022-08-01 23:01:20.000 +010055700CEA8000,"SD GUNDAM G GENERATION CROSS RAYS",status-playable;nvdec,playable,2022-09-15 20:58:44.000 +010022900D3EC00,"SD GUNDAM G GENERATION CROSS RAYS PREMIUM G SOUND EDITION",status-playable;nvdec,playable,2022-09-15 20:45:57.000 +0100E4A00D066000,"Sea King",UE4;nvdec;status-playable,playable,2021-06-04 15:49:22.000 +0100AFE012BA2000,"Sea of Solitude: The Director's Cut",gpu;status-ingame,ingame,2024-07-12 18:29:29.000 +01008C0016544000,"Sea of Stars",status-playable,playable,2024-03-15 20:27:12.000 +010036F0182C4000,"Sea of Stars Demo",status-playable;demo,playable,2023-02-12 15:33:56.000 +0100C2400D68C000,"SeaBed",status-playable,playable,2020-05-17 13:25:37.000 +010077100CA6E000,"Season Match Bundle",status-playable,playable,2020-10-27 16:15:22.000 +010028F010644000,"Secret Files 3",nvdec;status-playable,playable,2020-10-24 15:32:39.000 +010075D0101FA000,"Seek Hearts",status-playable,playable,2022-11-22 15:06:26.000 +0100394010844000,"Seers Isle",status-playable,playable,2020-11-17 12:28:50.000 +0100A8900AF04000,"SEGA AGES Alex Kidd in Miracle World",online;status-playable,playable,2021-05-05 16:35:47.000 +01001E600AF08000,"SEGA AGES Gain Ground",online;status-playable,playable,2021-05-05 16:16:27.000 +0100D4D00AC62000,"SEGA AGES Out Run",status-playable,playable,2021-01-11 13:13:59.000 +01005A300C9F6000,"SEGA AGES Phantasy Star",status-playable,playable,2021-01-11 12:49:48.000 +01005F600CB0E000,"SEGA AGES Puyo Puyo",online;status-playable,playable,2021-05-05 16:09:28.000 +010051F00AC5E000,"SEGA AGES Sonic The Hedgehog",slow;status-playable,playable,2023-03-05 20:16:31.000 +01000D200C614000,"SEGA AGES Sonic The Hedgehog 2",status-playable,playable,2022-09-21 20:26:35.000 +0100C3E00B700000,"SEGA AGES Space Harrier",status-playable,playable,2021-01-11 12:57:40.000 +010054400D2E6000,"SEGA AGES Virtua Racing",status-playable;online-broken,playable,2023-01-29 17:08:39.000 +01001E700AC60000,"SEGA AGES Wonder Boy: Monster Land",online;status-playable,playable,2021-05-05 16:28:25.000 +0100B3C014BDA000,"SEGA Genesis™ – Nintendo Switch Online",status-nothing;crash;regression,nothing,2022-04-11 07:27:21.000 +,"SEGA Mega Drive Classics",online;status-playable,playable,2021-01-05 11:08:00.000 +01009840046BC000,"Semispheres",status-playable,playable,2021-01-06 23:08:31.000 +0100D1800D902000,"SENRAN KAGURA Peach Ball",status-playable,playable,2021-06-03 15:12:10.000 +0100E0C00ADAC000,"SENRAN KAGURA Reflexions",status-playable,playable,2020-03-23 19:15:23.000 +01009E500D29C000,"Sentinels of Freedom",status-playable,playable,2021-06-14 16:42:19.000 +0100A5D012DAC000,"SENTRY",status-playable,playable,2020-12-13 12:00:24.000 +010059700D4A0000,"Sephirothic Stories",services;status-menus,menus,2021-11-25 08:52:17.000 +010007D00D43A000,"Serious Sam Collection",status-boots;vulkan-backend-bug,boots,2022-10-13 13:53:34.000 +0100B2C00E4DA000,"Served!",status-playable;nvdec,playable,2022-09-28 12:46:00.000 +010018400C24E000,"Seven Knights -Time Wanderer-",status-playable;vulkan-backend-bug,playable,2022-10-13 22:08:54.000 +0100D6F016676000,"Seven Pirates H",status-playable,playable,2024-06-03 14:54:12.000 +0100157004512000,"Severed",status-playable,playable,2020-12-15 21:48:48.000 +0100D5500DA94000,"Shadow Blade: Reload",nvdec;status-playable,playable,2021-06-11 18:40:43.000 +0100BE501382A000,"Shadow Gangs",cpu;gpu;status-ingame;crash;regression,ingame,2024-04-29 00:07:26.000 +0100C3A013840000,"Shadow Man Remastered",gpu;status-ingame,ingame,2024-05-20 06:01:39.000 +010073400B696000,"Shadowgate",status-playable,playable,2021-04-24 07:32:57.000 +0100371013B3E000,"Shadowrun Returns",gpu;status-ingame;Needs Update,ingame,2022-10-04 21:32:31.000 +01008310154C4000,"Shadowrun: Dragonfall - Director's Cut",gpu;status-ingame;Needs Update,ingame,2022-10-04 20:52:18.000 +0100C610154CA000,"Shadowrun: Hong Kong - Extended Edition",gpu;status-ingame;Needs Update,ingame,2022-10-04 20:53:09.000 +010000000EEF0000,"Shadows 2: Perfidia",status-playable,playable,2020-08-07 12:43:46.000 +0100AD700CBBE000,"Shadows of Adam",status-playable,playable,2021-01-11 13:35:58.000 +01002A800C064000,"Shadowverse Champions Battle",status-playable,playable,2022-10-02 22:59:29.000 +01003B90136DA000,"Shadowverse: Champion's Battle",status-nothing;crash,nothing,2023-03-06 00:31:50.000 +0100820013612000,"Shady Part of Me",status-playable,playable,2022-10-20 11:31:55.000 +0100B10002904000,"Shakedown: Hawaii",status-playable,playable,2021-01-07 09:44:36.000 +01008DA012EC0000,"Shakes on a Plane",status-menus;crash,menus,2021-11-25 08:52:25.000 +0100B4900E008000,"Shalnor Legends: Sacred Lands",status-playable,playable,2021-06-11 14:57:11.000 +010006C00CC10000,"Shanky: The Vegan`s Nightmare",status-playable,playable,2021-01-26 15:03:55.000 +0100430013120000,"Shantae",status-playable,playable,2021-05-21 04:53:26.000 +0100EFD00A4FA000,"Shantae and the Pirate's Curse",status-playable,playable,2024-04-29 17:21:57.000 +0100EB901040A000,"Shantae and the Seven Sirens",nvdec;status-playable,playable,2020-06-19 12:23:40.000 +01006A200936C000,"Shantae: Half- Genie Hero Ultimate Edition",status-playable,playable,2020-06-04 20:14:20.000 +0100ADA012370000,"Shantae: Risky's Revenge - Director's Cut",status-playable,playable,2022-10-06 20:47:39.000 +01003AB01062C000,"Shaolin vs Wutang",deadlock;status-nothing,nothing,2021-03-29 20:38:54.000 +0100B250009B9600,"Shape Of The World0",UE4;status-playable,playable,2021-03-05 16:42:28.000 +01004F50085F2000,"She Remembered Caterpillars",status-playable,playable,2022-08-12 17:45:14.000 +01000320110C2000,"She Sees Red - Interactive Movie",status-playable;nvdec,playable,2022-09-30 11:30:15.000 +01009EB004CB0000,"Shelter Generations",status-playable,playable,2021-06-04 16:52:39.000 +010020F014DBE000,"Sherlock Holmes: The Devil’s Daughter",gpu;status-ingame,ingame,2022-07-11 00:07:26.000 +0100B1000AC3A000,"Shift Happens",status-playable,playable,2021-01-05 21:24:18.000 +01000E8009E1C000,"Shift Quantum",UE4;crash;status-ingame,ingame,2020-11-06 21:54:08.000 +01000750084B2000,"Shiftlings - Enhanced Edition",nvdec;status-playable,playable,2021-03-04 13:49:54.000 +01003B0012DC2000,"Shin Megami Tensei III Nocturne HD Remaster",status-playable,playable,2022-11-03 22:53:27.000 +010045800ED1E000,"Shin Megami Tensei III NOCTURNE HD REMASTER",gpu;status-ingame;Needs Update,ingame,2022-11-03 19:57:01.000 +010063B012DC6000,"Shin Megami Tensei V",status-playable;UE4,playable,2024-02-21 06:30:07.000 +010069C01AB82000,"Shin Megami Tensei V: Vengeance",gpu;status-ingame;vulkan-backend-bug,ingame,2024-07-14 11:28:24.000 +01009050133B4000,"Shing! (サムライフォース:斬!)",status-playable;nvdec,playable,2022-10-22 00:48:54.000 +01009A5009A9E000,"Shining Resonance Refrain",status-playable;nvdec,playable,2022-08-12 18:03:01.000 +01004EE0104F6000,"Shinsekai Into the Depths™",status-playable,playable,2022-09-28 14:07:51.000 +0100C2F00A568000,"Shio",status-playable,playable,2021-02-22 16:25:09.000 +0100B2E00F13E000,"Shipped",status-playable,playable,2020-11-21 14:22:32.000 +01000E800FCB4000,"Ships",status-playable,playable,2021-06-11 16:14:37.000 +01007430122D0000,"Shiren the Wanderer: The Tower of Fortune and the Dice of Fate",status-playable;nvdec,playable,2022-10-20 11:44:36.000 +,"Shiritsu Berubara Gakuen ~Versailles no Bara Re*imagination~",cpu;crash;status-boots,boots,2020-09-27 19:01:25.000 +01000244016BAE00,"Shiro0",gpu;status-ingame,ingame,2024-01-13 08:54:39.000 +0100CCE00DDB6000,"Shoot 1UP DX",status-playable,playable,2020-12-13 12:32:47.000 +01001180021FA000,"Shovel Knight: Specter of Torment",status-playable,playable,2020-05-30 08:34:17.000 +010057D0021E8000,"Shovel Knight: Treasure Trove",status-playable,playable,2021-02-14 18:24:39.000 +01003DD00BF0E000,"Shred! 2 - ft Sam Pilgrim",status-playable,playable,2020-05-30 14:34:09.000 +01001DE0076A4000,"Shu",nvdec;status-playable,playable,2020-05-30 09:08:59.000 +0100A7900B936000,"Shut Eye",status-playable,playable,2020-07-23 18:08:35.000 +010044500C182000,"Sid Meier’s Civilization VI",status-playable;ldn-untested,playable,2024-04-08 16:03:40.000 +01007FC00B674000,"Sigi - A Fart for Melusina",status-playable,playable,2021-02-22 16:46:58.000 +0100F1400B0D6000,"Silence",nvdec;status-playable,playable,2021-06-03 14:46:17.000 +0100A32010618000,"Silent World",status-playable,playable,2020-08-28 13:45:13.000 +010045500DFE2000,"Silk",nvdec;status-playable,playable,2021-06-10 15:34:37.000 +010016D00A964000,"SilverStarChess",status-playable,playable,2021-05-06 15:25:57.000 +0100E8C019B36000,"Simona's Requiem",gpu;status-ingame,ingame,2023-02-21 18:29:19.000 +01006FE010438000,"Sin Slayers",status-playable,playable,2022-10-20 11:53:52.000 +01002820036A8000,"Sine Mora EX",gpu;status-ingame;online-broken,ingame,2022-08-12 19:36:18.000 +0100F10012002000,"Singled Out",online;status-playable,playable,2020-08-03 13:06:18.000 +0100B8800F858000,"Sinless",nvdec;status-playable,playable,2020-08-09 20:18:55.000 +0100B16009C10000,"SINNER: Sacrifice for Redemption",status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-08-12 20:37:33.000 +0100E9201410E000,"Sir Lovelot",status-playable,playable,2021-04-05 16:21:46.000 +0100134011E32000,"Skate City",status-playable,playable,2022-11-04 11:37:39.000 +0100B2F008BD8000,"Skee-Ball",status-playable,playable,2020-11-16 04:44:07.000 +01001A900F862000,"Skelattack",status-playable,playable,2021-06-09 15:26:26.000 +01008E700F952000,"Skelittle: A Giant Party!",status-playable,playable,2021-06-09 19:08:34.000 +01006C000DC8A000,"Skelly Selest",status-playable,playable,2020-05-30 15:38:18.000 +0100D67006F14000,"Skies of Fury DX",status-playable,playable,2020-05-30 16:40:54.000 +010046B00DE62000,"Skullgirls 2nd Encore",status-playable,playable,2022-09-15 21:21:25.000 +0100D1100BF9C000,"Skulls of the Shogun: Bone-A-Fide Edition",status-playable,playable,2020-08-31 18:58:12.000 +0100D7B011654000,"Skully",status-playable;nvdec;UE4,playable,2022-10-06 13:52:59.000 +010083100B5CA000,"Sky Force Anniversary",status-playable;online-broken,playable,2022-08-12 20:50:07.000 +01006FE005B6E000,"Sky Force Reloaded",status-playable,playable,2021-01-04 20:06:57.000 +010003F00CC98000,"Sky Gamblers - Afterburner",gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-12 21:04:55.000 +010093D00AC38000,"Sky Gamblers: Storm Raiders",gpu;audio;status-ingame;32-bit,ingame,2022-08-12 21:13:36.000 +010068200E96E000,"Sky Gamblers: Storm Raiders 2",gpu;status-ingame,ingame,2022-09-13 12:24:04.000 +01004F0010A02000,"Sky Racket",status-playable,playable,2020-09-07 12:22:24.000 +0100DDB004F30000,"Sky Ride",status-playable,playable,2021-02-22 16:53:07.000 +0100C5700434C000,"Sky Rogue",status-playable,playable,2020-05-30 08:26:28.000 +0100C52011460000,"Sky: Children of the Light",cpu;status-nothing;online-broken,nothing,2023-02-23 10:57:10.000 +010041C01014E000,"Skybolt Zack",status-playable,playable,2021-04-12 18:28:00.000 +0100A0A00D1AA000,"SKYHILL",status-playable,playable,2021-03-05 15:19:11.000 +,"Skylanders Imaginators",crash;services;status-boots,boots,2020-05-30 18:49:18.000 +010021A00ABEE000,"SKYPEACE",status-playable,playable,2020-05-29 14:14:30.000 +0100EA400BF44000,"SkyScrappers",status-playable,playable,2020-05-28 22:11:25.000 +0100F3C00C400000,"SkyTime",slow;status-ingame,ingame,2020-05-30 09:24:51.000 +01003AD00DEAE000,"SlabWell: The Quest For Kaktun's Alpaca",status-playable,playable,2021-02-22 17:02:51.000 +,"Slain",status-playable,playable,2020-05-29 14:26:16.000 +0100BB100AF4C000,"Slain Back from Hell",status-playable,playable,2022-08-12 23:36:19.000 +010026300BA4A000,"Slay the Spire",status-playable,playable,2023-01-20 15:09:26.000 +0100501006494000,"Slayaway Camp: Butcher's Cut",status-playable;opengl-backend-bug,playable,2022-08-12 23:44:05.000 +01004E900EDDA000,"Slayin 2",gpu;status-ingame,ingame,2024-04-19 16:15:26.000 +01004AC0081DC000,"Sleep Tight",gpu;status-ingame;UE4,ingame,2022-08-13 00:17:32.000 +0100F4500AA4E000,"Slice, Dice & Rice",online;status-playable,playable,2021-02-22 17:44:23.000 +010010D011E1C000,"Slide Stars",status-menus;crash,menus,2021-11-25 08:53:43.000 +0100112003B8A000,"Slime-san",status-playable,playable,2020-05-30 16:15:12.000 +01002AA00C974000,"SMASHING THE BATTLE",status-playable,playable,2021-06-11 15:53:57.000 +0100C9100B06A000,"SmileBASIC 4",gpu;status-menus,menus,2021-07-29 17:35:59.000 +0100207007EB2000,"Smoke And Sacrifice",status-playable,playable,2022-08-14 12:38:27.000 +01009790186FE000,"SMURFS KART",status-playable,playable,2023-10-18 00:55:00.000 +0100F2800D46E000,"Snack World The Dungeon Crawl Gold",gpu;slow;status-ingame;nvdec;audout,ingame,2022-05-01 21:12:44.000 +0100C0F0020E8000,"Snake Pass",status-playable;nvdec;UE4,playable,2022-01-03 04:31:52.000 +010075A00BA14000,"Sniper Elite 3 Ultimate Edition",status-playable;ldn-untested,playable,2024-04-18 07:47:49.000 +010007B010FCC000,"Sniper Elite 4",gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug,ingame,2024-06-18 17:53:15.000 +0100BB000A3AA000,"Sniper Elite V2 Remastered",slow;status-ingame;nvdec;online-broken;ldn-untested,ingame,2022-08-14 13:23:13.000 +01008E20047DC000,"Snipperclips Plus: Cut It Out, Together!",status-playable,playable,2023-02-14 20:20:13.000 +0100704000B3A000,"Snipperclips™ – Cut it out, together!",status-playable,playable,2022-12-05 12:44:55.000 +01004AB00AEF8000,"SNK 40th ANNIVERSARY COLLECTION",status-playable,playable,2022-08-14 13:33:15.000 +010027F00AD6C000,"SNK HEROINES Tag Team Frenzy",status-playable;nvdec;online-broken;ldn-untested,playable,2022-08-14 14:19:25.000 +01008DA00CBBA000,"Snooker 19",status-playable;nvdec;online-broken;UE4,playable,2022-09-11 17:43:22.000 +010045300516E000,"Snow Moto Racing Freedom",gpu;status-ingame;vulkan-backend-bug,ingame,2022-08-15 16:05:14.000 +0100BE200C34A000,"Snowboarding The Next Phase",nvdec;status-playable,playable,2021-02-23 12:56:58.000 +0100FBD013AB6000,"SnowRunner",services;status-boots;crash,boots,2023-10-07 00:01:16.000 +010017B012AFC000,"Soccer Club Life: Playing Manager",gpu;status-ingame,ingame,2022-10-25 11:59:22.000 +0100B5000E05C000,"Soccer Pinball",UE4;gpu;status-ingame,ingame,2021-06-15 20:56:51.000 +010011A00A9A8000,"Soccer Slammers",status-playable,playable,2020-05-30 07:48:14.000 +010095C00F9DE000,"Soccer, Tactics & Glory",gpu;status-ingame,ingame,2022-09-26 17:15:58.000 +0100590009C38000,"SOL DIVIDE -SWORD OF DARKNESS- for Nintendo Switch",32-bit;status-playable,playable,2021-06-09 14:13:03.000 +0100A290048B0000,"Soldam: Drop, Connect, Erase",status-playable,playable,2020-05-30 09:18:54.000 +010008600D1AC000,"Solo: Islands of the Heart",gpu;status-ingame;nvdec,ingame,2022-09-11 17:54:43.000 +01009EE00E91E000,"Some Distant Memory",status-playable,playable,2022-09-15 21:48:19.000 +01004F401BEBE000,"Song of Nunu: A League of Legends Story",status-ingame,ingame,2024-07-12 18:53:44.000 +0100E5400BF94000,"Songbird Symphony",status-playable,playable,2021-02-27 02:44:04.000 +010031D00A604000,"Songbringer",status-playable,playable,2020-06-22 10:42:02.000 +0000000000000000,"Sonic 1 (2013)",status-ingame;crash;homebrew,ingame,2024-04-06 18:31:20.000 +0000000000000000,"Sonic 2 (2013)",status-ingame;crash;homebrew,ingame,2024-04-01 16:25:30.000 +0000000000000000,"Sonic A.I.R",status-ingame;homebrew,ingame,2024-04-01 16:25:32.000 +0000000000000000,"Sonic CD",status-ingame;crash;homebrew,ingame,2024-04-01 16:25:31.000 +010040E0116B8000,"Sonic Colors: Ultimate",status-playable,playable,2022-11-12 21:24:26.000 +01001270012B6000,"SONIC FORCES™",status-playable,playable,2024-07-28 13:11:21.000 +01004AD014BF0000,"Sonic Frontiers",gpu;deadlock;status-ingame;amd-vendor-bug;intel-vendor-bug,ingame,2024-09-05 09:18:53.000 +01009AA000FAA000,"Sonic Mania",status-playable,playable,2020-06-08 17:30:57.000 +01009FB016286000,"Sonic Origins",status-ingame;crash,ingame,2024-06-02 07:20:15.000 +01008F701C074000,"SONIC SUPERSTARS",gpu;status-ingame;nvdec,ingame,2023-10-28 17:48:07.000 +010088801C150000,"Sonic Superstars Digital Art Book with Mini Digital Soundtrack",status-playable,playable,2024-08-20 13:26:56.000 +01005EA01C0FC000,"SONIC X SHADOW GENERATIONS",status-ingame;crash,ingame,2025-01-07 04:20:45.000 +010064F00C212000,"Soul Axiom Rebooted",nvdec;slow;status-ingame,ingame,2020-09-04 12:41:01.000 +0100F2100F0B2000,"Soul Searching",status-playable,playable,2020-07-09 18:39:07.000 +01008F2005154000,"South Park™: The Fractured but Whole™ - Standard Edition",slow;status-playable;online-broken,playable,2024-07-08 17:47:28.000 +0100B9F00C162000,"Space Blaze",status-playable,playable,2020-08-30 16:18:05.000 +010005500E81E000,"Space Cows",UE4;crash;status-menus,menus,2020-06-15 11:33:20.000 +0100707011722000,"Space Elite Force",status-playable,playable,2020-11-27 15:21:05.000 +010047B010260000,"Space Pioneer",status-playable,playable,2022-10-20 12:24:37.000 +010010A009830000,"Space Ribbon",status-playable,playable,2022-08-15 17:17:10.000 +0000000000000000,"SpaceCadetPinball",status-ingame;homebrew,ingame,2024-04-18 19:30:04.000 +0100D9B0041CE000,"Spacecats with Lasers",status-playable,playable,2022-08-15 17:22:44.000 +010034800FB60000,"Spaceland",status-playable,playable,2020-11-01 14:31:56.000 +010028D0045CE000,"Sparkle 2",status-playable,playable,2020-10-19 11:51:39.000 +01000DC007E90000,"Sparkle Unleashed",status-playable,playable,2021-06-03 14:52:15.000 +0100E4F00AE14000,"Sparkle ZERO",gpu;slow;status-ingame,ingame,2020-03-23 18:19:18.000 +01007ED00C032000,"Sparklite",status-playable,playable,2022-08-06 11:35:41.000 +0100E6A009A26000,"Spartan",UE4;nvdec;status-playable,playable,2021-03-05 15:53:19.000 +010020500E7A6000,"Speaking Simulator",status-playable,playable,2020-10-08 13:00:39.000 +01008B000A5AE000,"Spectrum",status-playable,playable,2022-08-16 11:15:59.000 +0100F18010BA0000,"Speed 3: Grand Prix",status-playable;UE4,playable,2022-10-20 12:32:31.000 +010040F00AA9A000,"Speed Brawl",slow;status-playable,playable,2020-09-18 22:08:16.000 +01000540139F6000,"Speed Limit",gpu;status-ingame,ingame,2022-09-02 18:37:40.000 +010061F013A0E000,"Speed Truck Racing",status-playable,playable,2022-10-20 12:57:04.000 +0100E74007EAC000,"Spellspire",status-playable,playable,2022-08-16 11:21:21.000 +010021F004270000,"Spelunker Party!",services;status-boots,boots,2022-08-16 11:25:49.000 +0100710013ABA000,"Spelunky",status-playable,playable,2021-11-20 17:45:03.000 +0100BD500BA94000,"Sphinx and the Cursed Mummy",gpu;status-ingame;32-bit;opengl,ingame,2024-05-20 06:00:51.000 +010092A0102AE000,"Spider Solitaire",status-playable,playable,2020-12-16 16:19:30.000 +010076D0122A8000,"Spinch",status-playable,playable,2024-07-12 19:02:10.000 +01001E40136FE000,"Spinny's Journey",status-ingame;crash,ingame,2021-11-30 03:39:44.000 +010023E008702000,"Spiral Splatter",status-playable,playable,2020-06-04 14:03:57.000 +0100D1B00B6FA000,"Spirit Hunter: Death Mark",status-playable,playable,2020-12-13 10:56:25.000 +0100FAE00E19A000,"Spirit Hunter: NG",32-bit;status-playable,playable,2020-12-17 20:38:47.000 +01005E101122E000,"Spirit of the North",status-playable;UE4,playable,2022-09-30 11:40:47.000 +01000AC00F5EC000,"Spirit Roots",nvdec;status-playable,playable,2020-07-10 13:33:32.000 +0100BD400DC52000,"Spiritfarer",gpu;status-ingame,ingame,2022-10-06 16:31:38.000 +01009D60080B4000,"SpiritSphere DX",status-playable,playable,2021-07-03 23:37:49.000 +010042700E3FC000,"Spitlings",status-playable;online-broken,playable,2022-10-06 16:42:39.000 +01003BC0000A0000,"Splatoon™ 2",status-playable;ldn-works;LAN,playable,2024-07-12 19:11:15.000 +0100C2500FC20000,"Splatoon™ 3",status-playable;ldn-works;opengl-backend-bug;LAN;amd-vendor-bug,playable,2024-08-04 23:49:11.000 +0100BA0018500000,"Splatoon™ 3: Splatfest World Premiere",gpu;status-ingame;online-broken;demo,ingame,2022-09-19 03:17:12.000 +010062800D39C000,"SpongeBob SquarePants: Battle for Bikini Bottom - Rehydrated",status-playable;online-broken;UE4;ldn-broken;vulkan-backend-bug,playable,2023-08-01 19:29:34.000 +01009FB0172F4000,"SpongeBob SquarePants: The Cosmic Shake",gpu;status-ingame;UE4,ingame,2023-08-01 19:29:53.000 +010097C01336A000,"Spooky Chase",status-playable,playable,2022-11-04 12:17:44.000 +0100C6100D75E000,"Spooky Ghosts Dot Com",status-playable,playable,2021-06-15 15:16:11.000 +0100DE9005170000,"Sports Party",nvdec;status-playable,playable,2021-03-05 13:40:42.000 +0100E04009BD4000,"Spot The Difference",status-playable,playable,2022-08-16 11:49:52.000 +010052100D1B4000,"Spot The Differences: Party!",status-playable,playable,2022-08-16 11:55:26.000 +01000E6015350000,"Spy Alarm",services;status-ingame,ingame,2022-12-09 10:12:51.000 +01005D701264A000,"SpyHack",status-playable,playable,2021-04-15 10:53:51.000 +010077B00E046000,"Spyro™ Reignited Trilogy",status-playable;nvdec;UE4,playable,2022-09-11 18:38:33.000 +0100085012A0E000,"Squeakers",status-playable,playable,2020-12-13 12:13:05.000 +010009300D31C000,"Squidgies Takeover",status-playable,playable,2020-07-20 22:28:08.000 +0100FCD0102EC000,"Squidlit",status-playable,playable,2020-08-06 12:38:32.000 +0100EBF00E702000,"STAR OCEAN First Departure R",nvdec;status-playable,playable,2021-07-05 19:29:16.000 +010065301A2E0000,"STAR OCEAN THE SECOND STORY R",status-ingame;crash,ingame,2024-06-01 02:39:59.000 +010060D00F658000,"Star Renegades",nvdec;status-playable,playable,2020-12-11 12:19:23.000 +0100D7000AE6A000,"Star Story: The Horizon Escape",status-playable,playable,2020-08-11 22:31:38.000 +01009DF015776000,"Star Trek Prodigy: Supernova",status-playable;nvdec;UE4;opengl-backend-bug,playable,2022-10-14 10:18:50.000 +0100BD100FFBE000,"STAR WARS™ Episode I Racer",slow;status-playable;nvdec,playable,2022-10-03 16:08:36.000 +0100BB500EACA000,"STAR WARS™ Jedi Knight II: Jedi Outcast™",gpu;status-ingame,ingame,2022-09-15 22:51:00.000 +01008CA00FAE8000,"STAR WARS™ Jedi Knight: Jedi Academy",gpu;status-boots,boots,2021-06-16 12:35:30.000 +01006DA00DEAC000,"Star Wars™ Pinball",status-playable;online-broken,playable,2022-09-11 18:53:31.000 +0100FA10115F8000,"STAR WARS™ Republic Commando™",gpu;status-ingame;32-bit,ingame,2023-10-31 15:57:17.000 +010040701B948000,"STAR WARS™: Battlefront Classic Collection",gpu;status-ingame;vulkan,ingame,2024-07-12 19:24:21.000 +0100854015868000,"STAR WARS™: Knights of the Old Republic™",gpu;deadlock;status-boots,boots,2024-02-12 10:13:51.000 +0100153014544000,"STAR WARS™: The Force Unleashed™",status-playable,playable,2024-05-01 17:41:28.000 +01005EB00EA10000,"Star-Crossed Myth - The Department of Wishes -",gpu;status-ingame,ingame,2021-06-04 19:34:36.000 +0100E6B0115FC000,"Star99",status-menus;online,menus,2021-11-26 14:18:51.000 +01002100137BA000,"Stardash",status-playable,playable,2021-01-21 16:31:19.000 +0100E65002BB8000,"Stardew Valley",status-playable;online-broken;ldn-untested,playable,2024-02-14 03:11:19.000 +01002CC003FE6000,"Starlink: Battle for Atlas™ Digital Edition",services-horizon;status-nothing;crash;Needs Update,nothing,2024-05-05 17:25:11.000 +010098E010FDA000,"Starlit Adventures Golden Stars",status-playable,playable,2020-11-21 12:14:43.000 +01001BB00AC26000,"STARSHIP AVENGER Operation: Take Back Earth",status-playable,playable,2021-01-12 15:52:55.000 +010000700A572000,"State of Anarchy: Master of Mayhem",nvdec;status-playable,playable,2021-01-12 19:00:05.000 +0100844004CB6000,"State of Mind",UE4;crash;status-boots,boots,2020-06-22 22:17:50.000 +0100616009082000,"STAY",crash;services;status-boots,boots,2021-04-23 14:24:52.000 +0100B61009C60000,"STAY COOL, KOBAYASHI-SAN!: A RIVER CITY RANSOM STORY",status-playable,playable,2021-01-26 17:37:28.000 +01008010118CC000,"Steam Prison",nvdec;status-playable,playable,2021-04-01 15:34:11.000 +0100AE100DAFA000,"Steam Tactics",status-playable,playable,2022-10-06 16:53:45.000 +01004DD00C87A000,"Steamburg",status-playable,playable,2021-01-13 08:42:01.000 +01009320084A4000,"SteamWorld Dig",status-playable,playable,2024-08-19 12:12:23.000 +0100CA9002322000,"SteamWorld Dig 2",status-playable,playable,2022-12-21 19:25:42.000 +0100F6D00D83E000,"SteamWorld Quest: Hand of Gilgamech",nvdec;status-playable,playable,2020-11-09 13:10:04.000 +01001C6014772000,"Steel Assault",status-playable,playable,2022-12-06 14:48:30.000 +010042800B880000,"STEINS;GATE ELITE",status-playable,playable,2020-08-04 07:33:32.000 +0100CB400E9BC000,"STEINS;GATE: My Darling's Embrace",status-playable;nvdec,playable,2022-11-20 16:48:34.000 +01002DE01043E000,"Stela",UE4;status-playable,playable,2021-06-15 13:28:34.000 +01005A700C954000,"Stellar Interface",status-playable,playable,2022-10-20 13:44:33.000 +0100BC800EDA2000,"STELLATUM",gpu;status-playable,playable,2021-03-07 16:30:23.000 +0100775004794000,"Steredenn: Binary Stars",status-playable,playable,2021-01-13 09:19:42.000 +0100AE0006474000,"Stern Pinball Arcade",status-playable,playable,2022-08-16 14:24:41.000 +0100E24006FA8000,"Stikbold! A Dodgeball Adventure DELUXE",status-playable,playable,2021-01-11 20:12:54.000 +010077B014518000,"Stitchy in Tooki Trouble",status-playable,playable,2021-05-06 16:25:53.000 +010070D00F640000,"STONE",status-playable;UE4,playable,2022-09-30 11:53:32.000 +010074400F6A8000,"Stories Untold",status-playable;nvdec,playable,2022-12-22 01:08:46.000 +010040D00BCF4000,"Storm Boy",status-playable,playable,2022-10-20 14:15:06.000 +0100B2300B932000,"Storm In A Teacup",gpu;status-ingame,ingame,2021-11-06 02:03:19.000 +0100D5D00DAF2000,"Story of a Gladiator",status-playable,playable,2020-07-29 15:08:18.000 +010017301007E000,"STORY OF SEASONS Pioneers of Olive [ 牧場物語 オリーブタウンと希望の大地 ]",status-playable,playable,2021-03-18 11:42:19.000 +0100ED400EEC2000,"STORY OF SEASONS: Friends of Mineral Town",status-playable,playable,2022-10-03 16:40:31.000 +010078D00E8F4000,"Stranded Sails - Explorers of the Cursed Islands",slow;status-playable;nvdec;UE4,playable,2022-09-16 11:58:38.000 +01000A6013F86000,"Strange Field Football",status-playable,playable,2022-11-04 12:25:57.000 +0100DD600DD48000,"Stranger Things 3: The Game",status-playable,playable,2021-01-11 17:44:09.000 +0100D7E011C64000,"Strawberry Vinegar",status-playable;nvdec,playable,2022-12-05 16:25:40.000 +010075101EF84000,"Stray",status-ingame;crash,ingame,2025-01-07 04:03:00.000 +0100024008310000,"Street Fighter 30th Anniversary Collection",status-playable;online-broken;ldn-partial,playable,2022-08-20 16:50:47.000 +010012400D202000,"Street Outlaws: The List",nvdec;status-playable,playable,2021-06-11 12:15:32.000 +0100888011CB2000,"Street Power Soccer",UE4;crash;status-boots,boots,2020-11-21 12:28:57.000 +0100EC9010258000,"Streets of Rage 4",nvdec;online;status-playable,playable,2020-07-07 21:21:22.000 +0100BDE012928000,"Strife: Veteran Edition",gpu;status-ingame,ingame,2022-01-15 05:10:42.000 +010039100DACC000,"Strike Force - War on Terror",status-menus;crash;Needs Update,menus,2021-11-24 08:08:20.000 +010038A00E6C6000,"Strike Force Kitty",nvdec;status-playable,playable,2020-07-29 16:22:15.000 +010072500D52E000,"Strike Suit Zero: Director's Cut",crash;status-boots,boots,2021-04-23 17:15:14.000 +0100FF5005B76000,"STRIKERS1945 for Nintendo Switch",32-bit;status-playable,playable,2021-06-03 19:35:04.000 +0100720008ED2000,"STRIKERS1945 Ⅱ for Nintendo Switch",32-bit;status-playable,playable,2021-06-03 19:43:00.000 +0100681011B56000,"Struggling",status-playable,playable,2020-10-15 20:37:03.000 +0100AF000B4AE000,"Stunt Kite Party",nvdec;status-playable,playable,2021-01-25 17:16:56.000 +0100C5500E7AE000,"STURMWIND EX",audio;32-bit;status-playable,playable,2022-09-16 12:01:39.000 +,"Subarashiki Kono Sekai -Final Remix-",services;slow;status-ingame,ingame,2020-02-10 16:21:51.000 +010001400E474000,"Subdivision Infinity DX",UE4;crash;status-boots,boots,2021-03-03 14:26:46.000 +0100E6400BCE8000,"Sublevel Zero Redux",status-playable,playable,2022-09-16 12:30:03.000 +0100EDA00D866000,"Submerged",status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-08-16 15:17:01.000 +0100429011144000,"Subnautica",status-playable;vulkan-backend-bug,playable,2022-11-04 13:07:29.000 +010014C011146000,"Subnautica: Below Zero",status-playable,playable,2022-12-23 14:15:13.000 +0100BF9012AC6000,"Suguru Nature",crash;status-ingame,ingame,2021-07-29 11:36:27.000 +01005CD00A2A2000,"Suicide Guy",status-playable,playable,2021-01-26 13:13:54.000 +0100DE000C2E4000,"Suicide Guy: Sleepin' Deeply",status-ingame;Needs More Attention,ingame,2022-09-20 23:45:25.000 +01003D50126A4000,"Sumire",status-playable,playable,2022-11-12 13:40:43.000 +0100A130109B2000,"Summer in Mara",nvdec;status-playable,playable,2021-03-06 14:10:38.000 +01004E500DB9E000,"Summer Sweetheart",status-playable;nvdec,playable,2022-09-16 12:51:46.000 +0100BFE014476000,"Sunblaze",status-playable,playable,2022-11-12 13:59:23.000 +01002D3007962000,"Sundered: Eldritch Edition",gpu;status-ingame,ingame,2021-06-07 11:46:00.000 +0100F7000464A000,"Super Beat Sports™",status-playable;ldn-untested,playable,2022-08-16 16:05:50.000 +010051A00D716000,"Super Blood Hockey",status-playable,playable,2020-12-11 20:01:41.000 +01007AD00013E000,"Super Bomberman R",status-playable;nvdec;online-broken;ldn-works,playable,2022-08-16 19:19:14.000 +0100B87017D94000,"SUPER BOMBERMAN R 2",deadlock;status-boots,boots,2023-09-29 13:19:51.000 +0100D9B00DB5E000,"Super Cane Magic ZERO",status-playable,playable,2022-09-12 15:33:46.000 +010065F004E5E000,"Super Chariot",status-playable,playable,2021-06-03 13:19:01.000 +0100E5E00C464000,"SUPER DRAGON BALL HEROES WORLD MISSION",status-playable;nvdec;online-broken,playable,2022-08-17 12:56:30.000 +010023100B19A000,"Super Dungeon Tactics",status-playable,playable,2022-10-06 17:40:40.000 +010056800B534000,"Super Inefficient Golf",status-playable;UE4,playable,2022-08-17 15:53:45.000 +010015700D5DC000,"Super Jumpy Ball",status-playable,playable,2020-07-04 18:40:36.000 +0100196009998000,"Super Kickers League Ultimate",status-playable,playable,2021-01-26 13:36:48.000 +01003FB00C5A8000,"Super Kirby Clash™",status-playable;ldn-works,playable,2024-07-30 18:21:55.000 +010000D00F81A000,"Super Korotama",status-playable,playable,2021-06-06 19:06:22.000 +01003E300FCAE000,"Super Loop Drive",status-playable;nvdec;UE4,playable,2022-09-22 10:58:05.000 +054507E0B7552000,"Super Mario 64",status-ingame;homebrew,ingame,2024-03-20 16:57:27.000 +0100277011F1A000,"Super Mario Bros.™ 35",status-menus;online-broken,menus,2022-08-07 16:27:25.000 +010015100B514000,"Super Mario Bros.™ Wonder",status-playable;amd-vendor-bug,playable,2024-09-06 13:21:21.000 +01009B90006DC000,"Super Mario Maker™ 2",status-playable;online-broken;ldn-broken,playable,2024-08-25 11:05:19.000 +0100000000010000,"Super Mario Odyssey™",status-playable;nvdec;intel-vendor-bug;mac-bug,playable,2024-08-25 01:32:34.000 +010036B0034E4000,"Super Mario Party™",gpu;status-ingame;Needs Update;ldn-works,ingame,2024-06-21 05:10:16.000 +0100BC0018138000,"Super Mario RPG™",gpu;audio;status-ingame;nvdec,ingame,2024-06-19 17:43:42.000 +0000000000000000,"Super Mario World",status-boots;homebrew,boots,2024-06-13 01:40:31.000 +010049900F546000,"Super Mario™ 3D All-Stars",services-horizon;slow;status-ingame;vulkan;amd-vendor-bug,ingame,2024-05-07 02:38:16.000 +010028600EBDA000,"Super Mario™ 3D World + Bowser’s Fury",status-playable;ldn-works,playable,2024-07-31 10:45:37.000 +01004F8006A78000,"Super Meat Boy",services;status-playable,playable,2020-04-02 23:10:07.000 +01009C200D60E000,"Super Meat Boy Forever",gpu;status-boots,boots,2021-04-26 14:25:39.000 +0100BDD00EC5C000,"Super Mega Space Blaster Special Turbo",online;status-playable,playable,2020-08-06 12:13:25.000 +010031F019294000,"Super Monkey Ball Banana Rumble",status-playable,playable,2024-06-28 10:39:18.000 +0100B2A00E1E0000,"Super Monkey Ball: Banana Blitz HD",status-playable;online-broken,playable,2022-09-16 13:16:25.000 +01006D000D2A0000,"Super Mutant Alien Assault",status-playable,playable,2020-06-07 23:32:45.000 +01004D600AC14000,"Super Neptunia RPG",status-playable;nvdec,playable,2022-08-17 16:38:52.000 +01008D300C50C000,"Super Nintendo Entertainment System™ - Nintendo Switch Online",status-playable,playable,2021-01-05 00:29:48.000 +0100284007D6C000,"Super One More Jump",status-playable,playable,2022-08-17 16:47:47.000 +01001F90122B2000,"Super Punch Patrol",status-playable,playable,2024-07-12 19:49:02.000 +0100331005E8E000,"Super Putty Squad",gpu;status-ingame;32-bit,ingame,2024-04-29 15:51:54.000 +,"SUPER ROBOT WARS T",online;status-playable,playable,2021-03-25 11:00:40.000 +,"SUPER ROBOT WARS V",online;status-playable,playable,2020-06-23 12:56:37.000 +,"SUPER ROBOT WARS X",online;status-playable,playable,2020-08-05 19:18:51.000 +01004CF00A60E000,"Super Saurio Fly",nvdec;status-playable,playable,2020-08-06 13:12:14.000 +010039700D200000,"Super Skelemania",status-playable,playable,2020-06-07 22:59:50.000 +01006A800016E000,"Super Smash Bros.™ Ultimate",gpu;status-ingame;crash;nvdec;ldn-works;intel-vendor-bug,ingame,2024-09-14 23:05:21.000 +0100D61012270000,"Super Soccer Blast",gpu;status-ingame,ingame,2022-02-16 08:39:12.000 +0100A9300A4AE000,"Super Sportmatchen",status-playable,playable,2022-08-19 12:34:40.000 +0100FB400F54E000,"Super Street: Racer",status-playable;UE4,playable,2022-09-16 13:43:14.000 +010000500DB50000,"Super Tennis Blast",status-playable,playable,2022-08-19 16:20:48.000 +0100C6800D770000,"Super Toy Cars 2",gpu;regression;status-ingame,ingame,2021-03-02 20:15:15.000 +010035B00B3F0000,"Super Volley Blast",status-playable,playable,2022-08-19 18:14:40.000 +0100FF60051E2000,"Superbeat: Xonic EX",status-ingame;crash;nvdec,ingame,2022-08-19 18:54:40.000 +0100630010252000,"SuperEpic: The Entertainment War",status-playable,playable,2022-10-13 23:02:48.000 +01001A500E8B4000,"SUPERHOT",status-playable,playable,2021-05-05 19:51:30.000 +010075701153A000,"Superliminal",status-playable,playable,2020-09-03 13:20:50.000 +0100C01012654000,"Supermarket Shriek",status-playable,playable,2022-10-13 23:19:20.000 +0100A6E01201C000,"Supraland",status-playable;nvdec;UE4;opengl-backend-bug,playable,2022-10-14 09:49:11.000 +010029A00AEB0000,"Survive! MR.CUBE",status-playable,playable,2022-10-20 14:44:47.000 +01005AB01119C000,"SUSHI REVERSI",status-playable,playable,2021-06-11 19:26:58.000 +0100DDD0085A4000,"Sushi Striker™: The Way of Sushido",nvdec;status-playable,playable,2020-06-26 20:49:11.000 +0100D6D00EC2C000,"Sweet Witches",status-playable;nvdec,playable,2022-10-20 14:56:37.000 +010049D00C8B0000,"Swimsanity!",status-menus;online,menus,2021-11-26 14:27:16.000 +01005DF00DC26000,"SWORD ART ONLINE: FATAL BULLET Complete Edition",UE4;gpu;online;status-ingame,ingame,2021-06-09 16:58:50.000 +01001B600D1D6000,"SWORD ART ONLINE: Hollow Realization Deluxe Edition",status-playable;nvdec,playable,2022-08-19 19:19:15.000 +01000D70049BE000,"Sword of the Guardian",status-playable,playable,2020-07-16 12:24:39.000 +0100E4701355C000,"Sword of the Necromancer",status-ingame;crash,ingame,2022-12-10 01:28:39.000 +01004BB00421E000,"Syberia 1 & 2",status-playable,playable,2021-12-24 12:06:25.000 +010028C003FD6000,"Syberia 2",gpu;status-ingame,ingame,2022-08-24 12:43:03.000 +0100CBE004E6C000,"Syberia 3",nvdec;status-playable,playable,2021-01-25 16:15:12.000 +010007300C482000,"Sydney Hunter and the Curse of the Mayan",status-playable,playable,2020-06-15 12:15:57.000 +0100D8400DAF0000,"SYNAPTIC DRIVE",online;status-playable,playable,2020-09-07 13:44:05.000 +01009E700F448000,"Synergia",status-playable,playable,2021-04-06 17:58:04.000 +01009BF00E7D2000,"SYNTHETIK: Ultimate",gpu;status-ingame;crash,ingame,2022-08-30 03:19:25.000 +010015B00BB00000,"Table Top Racing: World Tour - Nitro Edition",status-playable,playable,2020-04-05 23:21:30.000 +01000F20083A8000,"Tactical Mind",status-playable,playable,2021-01-25 18:05:00.000 +0100BD700F5F0000,"Tactical Mind 2",status-playable,playable,2020-07-01 23:11:07.000 +0100E12013C1A000,"Tactics Ogre: Reborn",status-playable;vulkan-backend-bug,playable,2024-04-09 06:21:35.000 +01007C7006AEE000,"Tactics V: Obsidian Brigade""""",status-playable,playable,2021-02-28 15:09:42.000 +01002C000B552000,"Taiko no Tatsujin: Drum 'n' Fun!",status-playable;online-broken;ldn-broken,playable,2023-05-20 15:10:12.000 +0100BCA0135A0000,"Taiko no Tatsujin: Rhythm Festival",status-playable,playable,2023-11-13 13:16:34.000 +0100DD6012644000,"Taiko no Tatsujin: Rhythmic Adventure Pack",status-playable,playable,2020-12-03 07:28:26.000 +0100346017304000,"Taiko Risshiden V DX",status-nothing;crash,nothing,2022-06-06 16:25:31.000 +010040A00EA26000,"Taimumari: Complete Edition",status-playable,playable,2022-12-06 13:34:49.000 +0100F0C011A68000,"Tales from the Borderlands",status-playable;nvdec,playable,2022-10-25 18:44:14.000 +0100408007078000,"Tales of the Tiny Planet",status-playable,playable,2021-01-25 15:47:41.000 +01002C0008E52000,"Tales of Vesperia™: Definitive Edition",status-playable,playable,2024-09-28 03:20:47.000 +010012800EE3E000,"Tamashii",status-playable,playable,2021-06-10 15:26:20.000 +010008A0128C4000,"Tamiku",gpu;status-ingame,ingame,2021-06-15 20:06:55.000 +010048F007ADE000,"Tangledeep",crash;status-boots,boots,2021-01-05 04:08:41.000 +01007DB010D2C000,"TaniNani",crash;kernel;status-nothing,nothing,2021-04-08 03:06:44.000 +0100E06012BB4000,"Tank Mechanic Simulator",status-playable,playable,2020-12-11 15:10:45.000 +01007A601318C000,"Tanuki Justice",status-playable;opengl,playable,2023-02-21 18:28:10.000 +01004DF007564000,"Tanzia",status-playable,playable,2021-06-07 11:10:25.000 +01002D4011208000,"Task Force Kampas",status-playable,playable,2020-11-30 14:44:15.000 +0100B76011DAA000,"Taxi Chaos",slow;status-playable;online-broken;UE4,playable,2022-10-25 19:13:00.000 +0100F43011E5A000,"Tcheco in the Castle of Lucio",status-playable,playable,2020-06-27 13:35:43.000 +010092B0091D0000,"Team Sonic Racing",status-playable;online-broken;ldn-works,playable,2024-02-05 15:05:27.000 +0100FE701475A000,"Teenage Mutant Ninja Turtles: Shredder's Revenge",deadlock;status-boots;crash,boots,2024-09-28 09:31:39.000 +01005CF01E784000,"Teenage Mutant Ninja Turtles: Splintered Fate",status-playable,playable,2024-08-03 13:50:42.000 +0100FDB0154E4000,"Teenage Mutant Ninja Turtles: The Cowabunga Collection",status-playable,playable,2024-01-22 19:39:04.000 +010021100DF22000,"Telling Lies",status-playable,playable,2020-10-23 21:14:51.000 +0100C8B012DEA000,"Temtem",status-menus;online-broken,menus,2022-12-17 17:36:11.000 +0100B2600A398000,"TENGAI for Nintendo Switch",32-bit;status-playable,playable,2020-11-25 19:52:26.000 +0100D7A005DFC000,"Tennis",status-playable,playable,2020-06-01 20:50:36.000 +01002970080AA000,"Tennis in the Face",status-playable,playable,2022-08-22 14:10:54.000 +0100092006814000,"Tennis World Tour",status-playable;online-broken,playable,2022-08-22 14:27:10.000 +0100950012F66000,"Tennis World Tour 2",status-playable;online-broken,playable,2022-10-14 10:43:16.000 +0100E46006708000,"Terraria",status-playable;online-broken,playable,2022-09-12 16:14:57.000 +010070C00FB56000,"TERROR SQUID",status-playable;online-broken,playable,2023-10-30 22:29:29.000 +010043700EB68000,"TERRORHYTHM (TRRT)",status-playable,playable,2021-02-27 13:18:14.000 +0100FBC007EAE000,"Tesla vs Lovecraft",status-playable,playable,2023-11-21 06:19:36.000 +01005C8005F34000,"Teslagrad",status-playable,playable,2021-02-23 14:41:02.000 +01006F701507A000,"Tested on Humans: Escape Room",status-playable,playable,2022-11-12 14:42:52.000 +0100671016432000,"TETRA for Nintendo Switch™ International Edition",status-playable,playable,2020-06-26 20:49:55.000 +01004E500A15C000,"TETRA's Escape",status-playable,playable,2020-06-03 18:21:14.000 +010040600C5CE000,"Tetris 99 Retail Bundle",gpu;status-ingame;online-broken;ldn-untested,ingame,2024-05-02 16:36:41.000 +0100EC000D39A000,"Tetsumo Party",status-playable,playable,2020-06-09 22:39:55.000 +01008ED0087A4000,"The Adventure Pals",status-playable,playable,2022-08-22 14:48:52.000 +0100137010152000,"The Adventures of 00 Dilly®",status-playable,playable,2020-12-30 19:32:29.000 +01003B400A00A000,"The Adventures of Bertram Fiddle: Episode 1: A Dreadly Business",status-playable;nvdec,playable,2022-09-17 11:07:56.000 +010035C00A4BC000,"The Adventures of Elena Temple",status-playable,playable,2020-06-03 23:15:35.000 +010045A00E038000,"The Alliance Alive HD Remastered",nvdec;status-playable,playable,2021-03-07 15:43:45.000 +010079A0112BE000,"The Almost Gone",status-playable,playable,2020-07-05 12:33:07.000 +0100CD500DDAE000,"The Bard's Tale ARPG: Remastered and Resnarkled",gpu;status-ingame;nvdec;online-working,ingame,2024-07-18 12:52:01.000 +01001E50141BC000,"The Battle Cats Unite!",deadlock;status-ingame,ingame,2021-12-14 21:38:34.000 +010089600E66A000,"The Big Journey",status-playable,playable,2022-09-16 14:03:08.000 +010021C000B6A000,"The Binding of Isaac: Afterbirth+",status-playable,playable,2021-04-26 14:11:56.000 +0100A5A00B2AA000,"The Bluecoats North & South",nvdec;status-playable,playable,2020-12-10 21:22:29.000 +010062500BFC0000,"The Book of Unwritten Tales 2",status-playable,playable,2021-06-09 14:42:53.000 +01002A2004530000,"The Bridge",status-playable,playable,2020-06-03 13:53:26.000 +01008D700AB14000,"The Bug Butcher",status-playable,playable,2020-06-03 12:02:04.000 +01001B40086E2000,"The Bunker",status-playable;nvdec,playable,2022-09-16 14:24:05.000 +010069100B7F0000,"The Caligula Effect: Overdose",UE4;gpu;status-ingame,ingame,2021-01-04 11:07:50.000 +010066800E9F8000,"The Childs Sight",status-playable,playable,2021-06-11 19:04:56.000 +0100B7C01169C000,"The Coma 2: Vicious Sisters",gpu;status-ingame,ingame,2020-06-20 12:51:51.000 +010033100691A000,"The Coma: Recut",status-playable,playable,2020-06-03 15:11:23.000 +01004170113D4000,"The Complex",status-playable;nvdec,playable,2022-09-28 14:35:41.000 +01000F20102AC000,"The Copper Canyon Dixie Dash",status-playable;UE4,playable,2022-09-29 11:42:29.000 +01000850037C0000,"The Count Lucanor",status-playable;nvdec,playable,2022-08-22 15:26:37.000 +0100EBA01548E000,"The Cruel King and the Great Hero",gpu;services;status-ingame,ingame,2022-12-02 07:02:08.000 +010051800E922000,"The Dark Crystal: Age of Resistance Tactics",status-playable,playable,2020-08-11 13:43:41.000 +01003DE00918E000,"The Darkside Detective",status-playable,playable,2020-06-03 22:16:18.000 +01000A10041EA000,"The Elder Scrolls V: Skyrim",gpu;status-ingame;crash,ingame,2024-07-14 03:21:31.000 +01004A9006B84000,"The End Is Nigh",status-playable,playable,2020-06-01 11:26:45.000 +0100CA100489C000,"The Escapists 2",nvdec;status-playable,playable,2020-09-24 12:31:31.000 +01001B700BA7C000,"The Escapists: Complete Edition",status-playable,playable,2021-02-24 17:50:31.000 +0100C2E0129A6000,"The Executioner",nvdec;status-playable,playable,2021-01-23 00:31:28.000 +01006050114D4000,"The Experiment: Escape Room",gpu;status-ingame,ingame,2022-09-30 13:20:35.000 +0100B5900DFB2000,"The Eyes of Ara",status-playable,playable,2022-09-16 14:44:06.000 +01002DD00AF9E000,"The Fall",gpu;status-ingame,ingame,2020-05-31 23:31:16.000 +01003E5002320000,"The Fall Part 2: Unbound",status-playable,playable,2021-11-06 02:18:08.000 +0100CDC00789E000,"The Final Station",status-playable;nvdec,playable,2022-08-22 15:54:39.000 +010098800A1E4000,"The First Tree",status-playable,playable,2021-02-24 15:51:05.000 +0100C38004DCC000,"The Flame In The Flood: Complete Edition",gpu;status-ingame;nvdec;UE4,ingame,2022-08-22 16:23:49.000 +010007700D4AC000,"The Forbidden Arts",status-playable,playable,2021-01-26 16:26:24.000 +010030700CBBC000,"The friends of Ringo Ishikawa",status-playable,playable,2022-08-22 16:33:17.000 +01006350148DA000,"The Gardener and the Wild Vines",gpu;status-ingame,ingame,2024-04-29 16:32:10.000 +0100B13007A6A000,"The Gardens Between",status-playable,playable,2021-01-29 16:16:53.000 +010036E00FB20000,"The Great Ace Attorney Chronicles",status-playable,playable,2023-06-22 21:26:29.000 +010007B012514000,"The Great Perhaps",status-playable,playable,2020-09-02 15:57:04.000 +01003B300E4AA000,"THE GRISAIA TRILOGY",status-playable,playable,2021-01-31 15:53:59.000 +01001950137D8000,"The Hong Kong Massacre",crash;status-ingame,ingame,2021-01-21 12:06:56.000 +01004AD00E094000,"The House of Da Vinci",status-playable,playable,2021-01-05 14:17:19.000 +01005A80113D2000,"The House of Da Vinci 2",status-playable,playable,2020-10-23 20:47:17.000 +0100E24004510000,"The Hunt - Championship Edition",status-menus;32-bit,menus,2022-07-21 20:21:25.000 +01008940086E0000,"The Infectious Madness of Doctor Dekker",status-playable;nvdec,playable,2022-08-22 16:45:01.000 +0100B0B00B318000,"The Inner World",nvdec;status-playable,playable,2020-06-03 21:22:29.000 +0100A9D00B31A000,"The Inner World - The Last Wind Monk",nvdec;status-playable,playable,2020-11-16 13:09:40.000 +0100AE5003EE6000,"The Jackbox Party Pack",status-playable;online-working,playable,2023-05-28 09:28:40.000 +010015D003EE4000,"The Jackbox Party Pack 2",status-playable;online-working,playable,2022-08-22 18:23:40.000 +0100CC80013D6000,"The Jackbox Party Pack 3",slow;status-playable;online-working,playable,2022-08-22 18:41:06.000 +0100E1F003EE8000,"The Jackbox Party Pack 4",status-playable;online-working,playable,2022-08-22 18:56:34.000 +010052C00B184000,"The Journey Down: Chapter One",nvdec;status-playable,playable,2021-02-24 13:32:41.000 +01006BC00B188000,"The Journey Down: Chapter Three",nvdec;status-playable,playable,2021-02-24 13:45:27.000 +01009AB00B186000,"The Journey Down: Chapter Two",nvdec;status-playable,playable,2021-02-24 13:32:13.000 +010020500BD98000,"The King's Bird",status-playable,playable,2022-08-22 19:07:46.000 +010031B00DB34000,"the Knight & the Dragon",gpu;status-ingame,ingame,2023-08-14 10:31:43.000 +01007AF012E16000,"The Language Of Love",Needs Update;crash;status-nothing,nothing,2020-12-03 17:54:00.000 +010079C017F5E000,"The Lara Croft Collection",services-horizon;deadlock;status-nothing,nothing,2024-07-12 22:45:51.000 +0100449011506000,"The Last Campfire",status-playable,playable,2022-10-20 16:44:19.000 +0100AAD011592000,"The Last Dead End",gpu;status-ingame;UE4,ingame,2022-10-20 16:59:44.000 +0100AC800D022000,"THE LAST REMNANT Remastered",status-playable;nvdec;UE4,playable,2023-02-09 17:24:44.000 +0100B1900F0B6000,"The Legend of Dark Witch",status-playable,playable,2020-07-12 15:18:33.000 +01001920156C2000,"The Legend of Heroes: Trails from Zero",gpu;status-ingame;mac-bug,ingame,2024-09-14 21:41:41.000 +01005420101DA000,"The Legend of Heroes: Trails of Cold Steel III",status-playable,playable,2020-12-16 10:59:18.000 +01009B101044C000,"The Legend of Heroes: Trails of Cold Steel III Demo",demo;nvdec;status-playable,playable,2021-04-23 01:07:32.000 +0100D3C010DE8000,"The Legend of Heroes: Trails of Cold Steel IV",nvdec;status-playable,playable,2021-04-23 14:01:05.000 +01005E5013862000,"THE LEGEND OF HEROES: ZERO NO KISEKI KAI [英雄傳說 零之軌跡:改]",status-nothing;crash,nothing,2021-09-30 14:41:07.000 +01008CF01BAAC000,"The Legend of Zelda Echoes of Wisdom",status-playable;nvdec;ASTC;intel-vendor-bug,playable,2024-10-01 14:11:01.000 +0100509005AF2000,"The Legend of Zelda: Breath of the Wild Demo",status-ingame;demo,ingame,2022-12-24 05:02:58.000 +01007EF00011E000,"The Legend of Zelda™: Breath of the Wild",gpu;status-ingame;amd-vendor-bug;mac-bug,ingame,2024-09-23 19:35:46.000 +01006BB00C6F0000,"The Legend of Zelda™: Link’s Awakening",gpu;status-ingame;nvdec;mac-bug,ingame,2023-08-09 17:37:40.000 +01002DA013484000,"The Legend of Zelda™: Skyward Sword HD",gpu;status-ingame,ingame,2024-06-14 16:48:29.000 +0100F2C0115B6000,"The Legend of Zelda™: Tears of the Kingdom",gpu;status-ingame;amd-vendor-bug;intel-vendor-bug;mac-bug,ingame,2024-08-24 12:38:30.000 +0100A4400BE74000,"The LEGO Movie 2 Videogame",status-playable,playable,2023-03-01 11:23:37.000 +010064B00B95C000,"The Liar Princess and the Blind Prince",audio;slow;status-playable,playable,2020-06-08 21:23:28.000 +0100735004898000,"The Lion's Song",status-playable,playable,2021-06-09 15:07:16.000 +0100A5000D590000,"The Little Acre",nvdec;status-playable,playable,2021-03-02 20:22:27.000 +01007A700A87C000,"The Long Dark",status-playable,playable,2021-02-21 14:19:52.000 +010052B003A38000,"The Long Reach",nvdec;status-playable,playable,2021-02-24 14:09:48.000 +01003C3013300000,"The Long Return",slow;status-playable,playable,2020-12-10 21:05:10.000 +0100CE1004E72000,"The Longest Five Minutes",gpu;status-boots,boots,2023-02-19 18:33:11.000 +0100F3D0122C2000,"The Longing",gpu;status-ingame,ingame,2022-11-12 15:00:58.000 +010085A00C5E8000,"The Lord of the Rings: Adventure Card Game - Definitive Edition",status-menus;online-broken,menus,2022-09-16 15:19:32.000 +01008A000A404000,"The Lost Child",nvdec;status-playable,playable,2021-02-23 15:44:20.000 +0100BAB00A116000,"The Low Road",status-playable,playable,2021-02-26 13:23:22.000 +,"The Mahjong",Needs Update;crash;services;status-nothing,nothing,2021-04-01 22:06:22.000 +0100DC300AC78000,"The Messenger",status-playable,playable,2020-03-22 13:51:37.000 +0100DEC00B2BC000,"The Midnight Sanctuary",status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-10-03 17:17:32.000 +0100F1B00B456000,"The MISSING: J.J. Macfield and the Island of Memories",status-playable,playable,2022-08-22 19:36:18.000 +010033300AC1A000,"The Mooseman",status-playable,playable,2021-02-24 12:58:57.000 +01005E9016BDE000,"The movie The Quintessential Bride -Five Memories Spent with You-",status-playable,playable,2023-12-14 14:43:43.000 +0100496004194000,"The Mummy Demastered",status-playable,playable,2021-02-23 13:11:27.000 +01004C500AAF6000,"The Mystery of the Hudson Case",status-playable,playable,2020-06-01 11:03:36.000 +01000CF0084BC000,"The Next Penelope",status-playable,playable,2021-01-29 16:26:11.000 +01001FB00E386000,"THE NINJA SAVIORS Return of the Warriors",online;status-playable,playable,2021-03-25 23:48:07.000 +0100B080184BC000,"The Oregon Trail",gpu;status-ingame,ingame,2022-11-25 16:11:49.000 +0100B0101265C000,"The Otterman Empire",UE4;gpu;status-ingame,ingame,2021-06-17 12:27:15.000 +01000BC01801A000,"The Outbound Ghost",status-nothing,nothing,2024-03-02 17:10:58.000 +0100626011656000,"The Outer Worlds",gpu;status-ingame;nvdec;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-10-03 17:55:32.000 +01005C500D690000,"The Park",UE4;crash;gpu;status-ingame,ingame,2020-12-18 12:50:07.000 +010050101127C000,"The Persistence",nvdec;status-playable,playable,2021-06-06 19:15:40.000 +0100CD300880E000,"The Pinball Arcade",status-playable;online-broken,playable,2022-08-22 19:49:46.000 +01006BD018B54000,"The Plucky Squire",status-ingame;crash,ingame,2024-09-27 22:32:33.000 +0100E6A00B960000,"The Princess Guide",status-playable,playable,2021-02-24 14:23:34.000 +010058A00BF1C000,"The Raven Remastered",status-playable;nvdec,playable,2022-08-22 20:02:47.000 +0100EB100D17C000,"The Red Strings Club",status-playable,playable,2020-06-01 10:51:18.000 +010079400BEE0000,"The Room",status-playable,playable,2021-04-14 18:57:05.000 +010033100EE12000,"The Ryuo's Work is Never Done!",status-playable,playable,2022-03-29 00:35:37.000 +01002BA00C7CE000,"The Savior's Gang",gpu;status-ingame;nvdec;UE4,ingame,2022-09-21 12:37:48.000 +0100F3200E7CA000,"The Settlers®: New Allies",deadlock;status-nothing,nothing,2023-10-25 00:18:05.000 +0100F89003BC8000,"The Sexy Brutale",status-playable,playable,2021-01-06 17:48:28.000 +01001FF00BEE8000,"The Shapeshifting Detective",nvdec;status-playable,playable,2021-01-10 13:10:49.000 +010028D00BA1A000,"The Sinking City",status-playable;nvdec;UE4,playable,2022-09-12 16:41:55.000 +010041C00A68C000,"The Spectrum Retreat",status-playable,playable,2022-10-03 18:52:40.000 +010029300E5C4000,"The Stanley Parable: Ultra Deluxe",gpu;status-ingame,ingame,2024-07-12 23:18:26.000 +010007F00AF56000,"The Station",status-playable,playable,2022-09-28 18:15:27.000 +0100858010DC4000,"the StoryTale",status-playable,playable,2022-09-03 13:00:25.000 +0100AA400A238000,"The Stretchers™",status-playable;nvdec;UE4,playable,2022-09-16 15:40:58.000 +0100E3100450E000,"The Strike - Championship Edition",gpu;status-boots;32-bit,boots,2022-12-09 15:58:16.000 +0100EF200DA60000,"The Survivalists",status-playable,playable,2020-10-27 15:51:13.000 +010040D00B7CE000,"The Swindle",status-playable;nvdec,playable,2022-08-22 20:53:52.000 +010037D00D568000,"The Swords of Ditto: Mormo's Curse",slow;status-ingame,ingame,2020-12-06 00:13:12.000 +01009B300D76A000,"The Tiny Bang Story",status-playable,playable,2021-03-05 15:39:05.000 +0100C3300D8C4000,"The Touryst",status-ingame;crash,ingame,2023-08-22 01:32:38.000 +010047300EBA6000,"The Tower of Beatrice",status-playable,playable,2022-09-12 16:51:42.000 +010058000A576000,"The Town of Light: Deluxe Edition",gpu;status-playable,playable,2022-09-21 12:51:34.000 +0100B0E0086F6000,"The Trail: Frontier Challenge",slow;status-playable,playable,2022-08-23 15:10:51.000 +0100EA100F516000,"The Turing Test",status-playable;nvdec,playable,2022-09-21 13:24:07.000 +010064E00ECBC000,"The Unicorn Princess",status-playable,playable,2022-09-16 16:20:56.000 +0100BCF00E970000,"The Vanishing of Ethan Carter",UE4;status-playable,playable,2021-06-09 17:14:47.000 +0100D0500B0A6000,"The VideoKid",nvdec;status-playable,playable,2021-01-06 09:28:24.000 +,"The Voice",services;status-menus,menus,2020-07-28 20:48:49.000 +010056E00B4F4000,"The Walking Dead: A New Frontier",status-playable,playable,2022-09-21 13:40:48.000 +010099100B6AC000,"The Walking Dead: Season Two",status-playable,playable,2020-08-09 12:57:06.000 +010029200B6AA000,"The Walking Dead: The Complete First Season",status-playable,playable,2021-06-04 13:10:56.000 +010060F00AA70000,"The Walking Dead: The Final Season - Season Pass",status-playable;online-broken,playable,2022-08-23 17:22:32.000 +010095F010568000,"The Wanderer: Frankenstein's Creature",status-playable,playable,2020-07-11 12:49:51.000 +01008B200FC6C000,"The Wardrobe: Even Better Edition",status-playable,playable,2022-09-16 19:14:55.000 +01003D100E9C6000,"The Witcher 3: Wild Hunt",status-playable;nvdec;vulkan-backend-bug;amd-vendor-bug,playable,2024-02-22 12:21:51.000 +0100B1300FF08000,"The Wonderful 101: Remastered",slow;status-playable;nvdec,playable,2022-09-30 13:49:28.000 +0100C1500B82E000,"The World Ends with You®: Final Remix",status-playable;ldn-untested,playable,2022-07-09 01:11:21.000 +0100E6200D56E000,"The World Next Door",status-playable,playable,2022-09-21 14:15:23.000 +010075900CD1C000,"Thea: The Awakening",status-playable,playable,2021-01-18 15:08:47.000 +010081B01777C000,"THEATRHYTHM FINAL BAR LINE",status-ingame;Incomplete,ingame,2024-08-05 14:24:55.000 +01001C2010D08000,"They Bleed Pixels",gpu;status-ingame,ingame,2024-08-09 05:52:18.000 +0100768010970000,"They Came From the Sky",status-playable,playable,2020-06-12 16:38:19.000 +0100CE700F62A000,"Thief of Thieves: Season One",status-nothing;crash;loader-allocator,nothing,2021-11-03 07:16:30.000 +0100CE400E34E000,"Thief Simulator",status-playable,playable,2023-04-22 04:39:11.000 +01009BD003B36000,"Thimbleweed Park",status-playable,playable,2022-08-24 11:15:31.000 +0100F2300A5DA000,"Think of the Children",deadlock;status-menus,menus,2021-11-23 09:04:45.000 +0100066004D68000,"This Is the Police",status-playable,playable,2022-08-24 11:37:05.000 +01004C100A04C000,"This is the Police 2",status-playable,playable,2022-08-24 11:49:17.000 +0100C7C00F77C000,"This Strange Realm Of Mine",status-playable,playable,2020-08-28 12:07:24.000 +0100A8700BC2A000,"This War of Mine: Complete Edition",gpu;status-ingame;32-bit;nvdec,ingame,2022-08-24 12:00:44.000 +0100AC500EEE8000,"THOTH",status-playable,playable,2020-08-05 18:35:28.000 +0100E910103B4000,"Thronebreaker: The Witcher Tales",nvdec;status-playable,playable,2021-06-03 16:40:15.000 +01006F6002840000,"Thumper",gpu;status-ingame,ingame,2024-08-12 02:41:07.000 +01000AC011588000,"Thy Sword",status-ingame;crash,ingame,2022-09-30 16:43:14.000 +0100E9000C42C000,"Tick Tock: A Tale for Two",status-menus,menus,2020-07-14 14:49:38.000 +0100B6D00C2DE000,"Tied Together",nvdec;status-playable,playable,2021-04-10 14:03:46.000 +010074500699A000,"Timber Tennis: Versus",online;status-playable,playable,2020-10-03 17:07:15.000 +01004C500B698000,"Time Carnage",status-playable,playable,2021-06-16 17:57:28.000 +0100F770045CA000,"Time Recoil",status-playable,playable,2022-08-24 12:44:03.000 +0100DD300CF3A000,"Timespinner",gpu;status-ingame,ingame,2022-08-09 09:39:11.000 +0100393013A10000,"Timothy and the Mysterious Forest",gpu;slow;status-ingame,ingame,2021-06-02 00:42:11.000 +0100F7C010AF6000,"Tin & Kuna",status-playable,playable,2020-11-17 12:16:12.000 +0100DF900FC52000,"Tiny Gladiators",status-playable,playable,2020-12-14 00:09:43.000 +010061A00AE64000,"Tiny Hands Adventure",status-playable,playable,2022-08-24 16:07:48.000 +010074800741A000,"TINY METAL",UE4;gpu;nvdec;status-ingame,ingame,2021-03-05 17:11:57.000 +01005D0011A40000,"Tiny Racer",status-playable,playable,2022-10-07 11:13:03.000 +010002401AE94000,"Tiny Thor",gpu;status-ingame,ingame,2024-07-26 08:37:35.000 +0100A73016576000,"Tinykin",gpu;status-ingame,ingame,2023-06-18 12:12:24.000 +0100FE801185E000,"Titan Glory",status-boots,boots,2022-10-07 11:36:40.000 +0100605008268000,"Titan Quest",status-playable;nvdec;online-broken,playable,2022-08-19 21:54:15.000 +01009C400E93E000,"Titans Pinball",slow;status-playable,playable,2020-06-09 16:53:52.000 +010019500DB1E000,"Tlicolity Eyes - twinkle showtime -",gpu;status-boots,boots,2021-05-29 19:43:44.000 +010036700F83E000,"To the Moon",status-playable,playable,2021-03-20 15:33:38.000 +010014900865A000,"Toast Time: Smash Up!",crash;services;status-menus,menus,2020-04-03 12:26:59.000 +0100A4A00B2E8000,"Toby: The Secret Mine",nvdec;status-playable,playable,2021-01-06 09:22:33.000 +0100B5200BB7C000,"ToeJam & Earl: Back in the Groove!",status-playable,playable,2021-01-06 22:56:58.000 +0100B5E011920000,"TOHU",slow;status-playable,playable,2021-02-08 15:40:44.000 +0100F3400A432000,"Toki",nvdec;status-playable,playable,2021-01-06 19:59:23.000 +01003E500F962000,"Tokyo Dark – Remembrance –",nvdec;status-playable,playable,2021-06-10 20:09:49.000 +0100A9400C9C2000,"Tokyo Mirage Sessions™ #FE Encore",32-bit;status-playable;nvdec,playable,2022-07-07 09:41:07.000 +0100E2E00CB14000,"Tokyo School Life",status-playable,playable,2022-09-16 20:25:54.000 +010024601BB16000,"Tomb Raider I-III Remastered Starring Lara Croft",gpu;status-ingame;opengl,ingame,2024-09-27 12:32:04.000 +0100D7F01E49C000,"Tomba! Special Edition",services-horizon;status-nothing,nothing,2024-09-15 21:59:54.000 +0100D400100F8000,"Tonight We Riot",status-playable,playable,2021-02-26 15:55:09.000 +0100CC00102B4000,"Tony Hawk's™ Pro Skater™ 1 + 2",gpu;status-ingame;Needs Update,ingame,2024-09-24 08:18:14.000 +010093F00E818000,"Tools Up!",crash;status-ingame,ingame,2020-07-21 12:58:17.000 +01009EA00E2B8000,"Toon War",status-playable,playable,2021-06-11 16:41:53.000 +010090400D366000,"Torchlight II",status-playable,playable,2020-07-27 14:18:37.000 +010075400DDB8000,"Torchlight III",status-playable;nvdec;online-broken;UE4,playable,2022-10-14 22:20:17.000 +01007AF011732000,"TORICKY-S",deadlock;status-menus,menus,2021-11-25 08:53:36.000 +0100BEB010F2A000,"Torn Tales: Rebound Edition",status-playable,playable,2020-11-01 14:11:59.000 +0100A64010D48000,"Total Arcade Racing",status-playable,playable,2022-11-12 15:12:48.000 +0100512010728000,"Totally Reliable Delivery Service",status-playable;online-broken,playable,2024-09-27 19:32:22.000 +01004E900B082000,"Touhou Genso Wanderer Reloaded",gpu;status-ingame;nvdec,ingame,2022-08-25 11:57:36.000 +010010F004022000,"Touhou Kobuto V: Burst Battle",status-playable,playable,2021-01-11 15:28:58.000 +0100E9D00D6C2000,"TOUHOU Spell Bubble",status-playable,playable,2020-10-18 11:43:43.000 +0100F7B00595C000,"Tower Of Babel",status-playable,playable,2021-01-06 17:05:15.000 +010094600DC86000,"Tower Of Time",gpu;nvdec;status-ingame,ingame,2020-07-03 11:11:12.000 +0100A1C00359C000,"TowerFall",status-playable,playable,2020-05-16 18:58:07.000 +0100F6200F77E000,"Towertale",status-playable,playable,2020-10-15 13:56:58.000 +010049E00BA34000,"Townsmen - A Kingdom Rebuilt",status-playable;nvdec,playable,2022-10-14 22:48:59.000 +01009FF00A160000,"Toy Stunt Bike: Tiptop's Trials",UE4;status-playable,playable,2021-04-10 13:56:34.000 +0100192010F5A000,"Tracks - Toybox Edition",UE4;crash;status-nothing,nothing,2021-02-08 15:19:18.000 +0100BCA00843A000,"Trailblazers",status-playable,playable,2021-03-02 20:40:49.000 +010009F004E66000,"Transcripted",status-playable,playable,2022-08-25 12:13:11.000 +01005E500E528000,"TRANSFORMERS: BATTLEGROUNDS",online;status-playable,playable,2021-06-17 18:08:19.000 +0100BE500BEA2000,"Transistor",status-playable,playable,2020-10-22 11:28:02.000 +0100A8D010BFA000,"Travel Mosaics 2: Roman Holiday",status-playable,playable,2021-05-26 12:33:16.000 +0100102010BFC000,"Travel Mosaics 3: Tokyo Animated",status-playable,playable,2021-05-26 12:06:27.000 +010096D010BFE000,"Travel Mosaics 4: Adventures In Rio",status-playable,playable,2021-05-26 11:54:58.000 +01004C4010C00000,"Travel Mosaics 5: Waltzing Vienna",status-playable,playable,2021-05-26 11:49:35.000 +0100D520119D6000,"Travel Mosaics 6: Christmas Around the World",status-playable,playable,2021-05-26 00:52:47.000 +01000BD0119DE000,"Travel Mosaics 7: Fantastic Berlin",status-playable,playable,2021-05-22 18:37:34.000 +01007DB00A226000,"Travel Mosaics: A Paris Tour",status-playable,playable,2021-05-26 12:42:26.000 +010011600C946000,"Travis Strikes Again: No More Heroes",status-playable;nvdec;UE4,playable,2022-08-25 12:36:38.000 +01006EB004B0E000,"Treadnauts",status-playable,playable,2021-01-10 14:57:41.000 +0100D7800E9E0000,"Trials of Mana",status-playable;UE4,playable,2022-09-30 21:50:37.000 +0100E1D00FBDE000,"Trials of Mana Demo",status-playable;nvdec;UE4;demo;vulkan-backend-bug,playable,2022-09-26 18:00:02.000 +01003E800A102000,"Trials Rising Standard Edition",status-playable,playable,2024-02-11 01:36:39.000 +0100CC80140F8000,"TRIANGLE STRATEGY™",gpu;status-ingame;Needs Update;UE4;vulkan-backend-bug,ingame,2024-09-25 20:48:37.000 +010064E00A932000,"Trine 2: Complete Story",nvdec;status-playable,playable,2021-06-03 11:45:20.000 +0100DEC00A934000,"Trine 3: The Artifacts of Power",ldn-untested;online;status-playable,playable,2021-06-03 12:01:24.000 +010055E00CA68000,"Trine 4: The Nightmare Prince",gpu;status-nothing,nothing,2025-01-07 05:47:46.000 +0100D9000A930000,"Trine Enchanted Edition",ldn-untested;nvdec;status-playable,playable,2021-06-03 11:28:15.000 +01002D7010A54000,"Trinity Trigger",status-ingame;crash,ingame,2023-03-03 03:09:09.000 +0100868013FFC000,"TRIVIAL PURSUIT Live! 2",status-boots,boots,2022-12-19 00:04:33.000 +0100F78002040000,"Troll and I™",gpu;nvdec;status-ingame,ingame,2021-06-04 16:58:50.000 +0100145011008000,"Trollhunters: Defenders of Arcadia",gpu;nvdec;status-ingame,ingame,2020-11-30 13:27:09.000 +0100FBE0113CC000,"Tropico 6 - Nintendo Switch™ Edition",status-playable;nvdec;UE4,playable,2022-10-14 23:21:03.000 +0100D06018DCA000,"Trouble Witches Final! Episode 01: Daughters of Amalgam",status-playable,playable,2024-04-08 15:08:11.000 +0100B5B0113CE000,"Troubleshooter",UE4;crash;status-nothing,nothing,2020-10-04 13:46:50.000 +010089600FB72000,"Trover Saves The Universe",UE4;crash;status-nothing,nothing,2020-10-03 10:25:27.000 +0100E6300D448000,"Trüberbrook",status-playable,playable,2021-06-04 17:08:00.000 +0100F2100AA5C000,"Truck and Logistics Simulator",status-playable,playable,2021-06-11 13:29:08.000 +0100CB50107BA000,"Truck Driver",status-playable;online-broken,playable,2022-10-20 17:42:33.000 +0100E75004766000,"True Fear: Forsaken Souls - Part 1",nvdec;status-playable,playable,2020-12-15 21:39:52.000 +010099900CAB2000,"TT Isle of Man",nvdec;status-playable,playable,2020-06-22 12:25:13.000 +010000400F582000,"TT Isle of Man Ride on the Edge 2",gpu;status-ingame;nvdec;online-broken,ingame,2022-09-30 22:13:05.000 +0100752011628000,"TTV2",status-playable,playable,2020-11-27 13:21:36.000 +0100AFE00452E000,"Tumblestone",status-playable,playable,2021-01-07 17:49:20.000 +010085500D5F6000,"Turok",gpu;status-ingame,ingame,2021-06-04 13:16:24.000 +0100CDC00D8D6000,"Turok 2: Seeds of Evil",gpu;status-ingame;vulkan,ingame,2022-09-12 17:50:05.000 +010004B0130C8000,"Turrican Flashback",status-playable;audout,playable,2021-08-30 10:07:56.000 +0100B1F0090F2000,"TurtlePop: Journey to Freedom",status-playable,playable,2020-06-12 17:45:39.000 +0100047009742000,"Twin Robots: Ultimate Edition",status-playable;nvdec,playable,2022-08-25 14:24:03.000 +010031200E044000,"Two Point Hospital™",status-ingame;crash;nvdec,ingame,2022-09-22 11:22:23.000 +010038400C2FE000,"TY the Tasmanian Tiger™ HD",32-bit;crash;nvdec;status-menus,menus,2020-12-17 21:15:00.000 +010073A00C4B2000,"Tyd wag vir Niemand",status-playable,playable,2021-03-02 13:39:53.000 +0100D5B00D6DA000,"Type:Rider",status-playable,playable,2021-01-06 13:12:55.000 +010040D01222C000,"UBERMOSH: SANTICIDE",status-playable,playable,2020-11-27 15:05:01.000 +0100992010BF8000,"Ubongo",status-playable,playable,2021-02-04 21:15:01.000 +010079000B56C000,"UglyDolls: An Imperfect Adventure",status-playable;nvdec;UE4,playable,2022-08-25 14:42:16.000 +010048901295C000,"Ultimate Fishing Simulator",status-playable,playable,2021-06-16 18:38:23.000 +01009D000FAE0000,"Ultimate Racing 2D",status-playable,playable,2020-08-05 17:27:09.000 +010045200A1C2000,"Ultimate Runner",status-playable,playable,2022-08-29 12:52:40.000 +01006B601117E000,"Ultimate Ski Jumping 2020",online;status-playable,playable,2021-03-02 20:54:11.000 +01002D4012222000,"Ultra Hat Dimension",services;audio;status-menus,menus,2021-11-18 09:05:20.000 +01009C000415A000,"Ultra Hyperball",status-playable,playable,2021-01-06 10:09:55.000 +01007330027EE000,"Ultra Street Fighter® II: The Final Challengers",status-playable;ldn-untested,playable,2021-11-25 07:54:58.000 +01006A300BA2C000,"Umineko no Naku Koro ni Saku - うみねこのなく頃に咲 ~猫箱と夢想の交響曲~",status-playable;audout,playable,2023-05-04 17:25:23.000 +0100592005164000,"UNBOX: Newbie's Adventure",status-playable;UE4,playable,2022-08-29 13:12:56.000 +01002D900C5E4000,"Uncanny Valley",nvdec;status-playable,playable,2021-06-04 13:28:45.000 +010076F011F54000,"Undead & Beyond",status-playable;nvdec,playable,2022-10-04 09:11:18.000 +01008F3013E4E000,"Under Leaves",status-playable,playable,2021-05-22 18:13:58.000 +010080B00AD66000,"Undertale",status-playable,playable,2022-08-31 17:31:46.000 +01008F80049C6000,"Unepic",status-playable,playable,2024-01-15 17:03:00.000 +01007820096FC000,"UnExplored",status-playable,playable,2021-01-06 10:02:16.000 +01007D1013512000,"Unhatched",status-playable,playable,2020-12-11 12:11:09.000 +010069401ADB8000,"Unicorn Overlord",status-playable,playable,2024-09-27 14:04:32.000 +0100B1400D92A000,"Unit 4",status-playable,playable,2020-12-16 18:54:13.000 +010045200D3A4000,"Unknown Fate",slow;status-ingame,ingame,2020-10-15 12:27:42.000 +0100AB2010B4C000,"Unlock The King",status-playable,playable,2020-09-01 13:58:27.000 +0100A3E011CB0000,"Unlock the King 2",status-playable,playable,2021-06-15 20:43:55.000 +01005AA00372A000,"UNO® for Nintendo Switch",status-playable;nvdec;ldn-untested,playable,2022-07-28 14:49:47.000 +0100E5D00CC0C000,"Unravel Two",status-playable;nvdec,playable,2024-05-23 15:45:05.000 +010001300CC4A000,"Unruly Heroes",status-playable,playable,2021-01-07 18:09:31.000 +0100B410138C0000,"Unspottable",status-playable,playable,2022-10-25 19:28:49.000 +010082400BCC6000,"Untitled Goose Game",status-playable,playable,2020-09-26 13:18:06.000 +0100E49013190000,"Unto The End",gpu;status-ingame,ingame,2022-10-21 11:13:29.000 +0100B110109F8000,"Urban Flow",services;status-playable,playable,2020-07-05 12:51:47.000 +010054F014016000,"Urban Street Fighting",status-playable,playable,2021-02-20 19:16:36.000 +01001B10068EC000,"Urban Trial Playground",UE4;nvdec;online;status-playable,playable,2021-03-25 20:56:51.000 +0100A2500EB92000,"Urban Trial Tricky",status-playable;nvdec;UE4,playable,2022-12-06 13:07:56.000 +01007C0003AEC000,"Use Your Words",status-menus;nvdec;online-broken,menus,2022-08-29 17:22:10.000 +0100D4300EBF8000,"Uta no Prince-sama Amazing Aria & Sweet Serenade LOVE",status-nothing;crash;Needs More Attention;Needs Update,nothing,2022-02-09 08:57:44.000 +010024200E00A000,"Uta no☆Prince-sama♪ Repeat Love",status-playable;nvdec,playable,2022-12-09 09:21:51.000 +010029B00CC3E000,"UTOPIA 9 - A Volatile Vacation",nvdec;status-playable,playable,2020-12-16 17:06:42.000 +010064400B138000,"V-Rally 4",gpu;nvdec;status-ingame,ingame,2021-06-07 19:37:31.000 +0100A6700D66E000,"VA-11 HALL-A",status-playable,playable,2021-02-26 15:05:34.000 +01009E2003FE2000,"Vaccine",nvdec;status-playable,playable,2021-01-06 01:02:07.000 +010089700F30C000,"Valfaris",status-playable,playable,2022-09-16 21:37:24.000 +0100CAF00B744000,"Valkyria Chronicles",status-ingame;32-bit;crash;nvdec,ingame,2022-11-23 20:03:32.000 +01005C600AC68000,"Valkyria Chronicles 4",audout;nvdec;status-playable,playable,2021-06-03 18:12:25.000 +0100FBD00B91E000,"Valkyria Chronicles 4 Demo",slow;status-ingame;demo,ingame,2022-08-29 20:39:07.000 +0100E0E00B108000,"Valley",status-playable;nvdec,playable,2022-09-28 19:27:58.000 +010089A0197E4000,"Vampire Survivors",status-ingame,ingame,2024-06-17 09:57:38.000 +010020C00FFB6000,"Vampire: The Masquerade - Coteries of New York",status-playable,playable,2020-10-04 14:55:22.000 +01000BD00CE64000,"VAMPYR",status-playable;nvdec;UE4,playable,2022-09-16 22:15:51.000 +01007C500D650000,"Vandals",status-playable,playable,2021-01-27 21:45:46.000 +010030F00CA1E000,"Vaporum",nvdec;status-playable,playable,2021-05-28 14:25:33.000 +010045C0109F2000,"VARIABLE BARRICADE NS",status-playable;nvdec,playable,2022-02-26 15:50:13.000 +0100FE200AF48000,"VASARA Collection",nvdec;status-playable,playable,2021-02-28 15:26:10.000 +0100AD300E4FA000,"Vasilis",status-playable,playable,2020-09-01 15:05:35.000 +01009CD003A0A000,"Vegas Party",status-playable,playable,2021-04-14 19:21:41.000 +010098400E39E000,"Vektor Wars",status-playable;online-broken;vulkan-backend-bug,playable,2022-10-04 09:23:46.000 +01003A8018E60000,"Vengeful Guardian: Moonrider",deadlock;status-boots,boots,2024-03-17 23:35:37.000 +010095B00DBC8000,"Venture Kid",crash;gpu;status-ingame,ingame,2021-04-18 16:33:17.000 +0100C850134A0000,"Vera Blanc: Full Moon",audio;status-playable,playable,2020-12-17 12:09:30.000 +0100379013A62000,"Very Very Valet",status-playable;nvdec,playable,2022-11-12 15:25:51.000 +01006C8014DDA000,"Very Very Valet Demo",status-boots;crash;Needs Update;demo,boots,2022-11-12 15:26:13.000 +010057B00712C000,"Vesta",status-playable;nvdec,playable,2022-08-29 21:03:39.000 +0100E81007A06000,"Victor Vran Overkill Edition",gpu;deadlock;status-ingame;nvdec;opengl,ingame,2022-08-30 11:46:56.000 +01005880063AA000,"Violett",nvdec;status-playable,playable,2021-01-28 13:09:36.000 +010037900CB1C000,"Viviette",status-playable,playable,2021-06-11 15:33:40.000 +0100D010113A8000,"Void Bastards",status-playable,playable,2022-10-15 00:04:19.000 +0100FF7010E7E000,"void tRrLM(); //Void Terrarium",gpu;status-ingame;Needs Update;regression,ingame,2023-02-10 01:13:25.000 +010078D0175EE000,"void* tRrLM2(); //Void Terrarium 2",status-playable,playable,2023-12-21 11:00:41.000 +0100B1A0066DC000,"Volgarr the Viking",status-playable,playable,2020-12-18 15:25:50.000 +0100A7900E79C000,"Volta-X",status-playable;online-broken,playable,2022-10-07 12:20:51.000 +01004D8007368000,"Vostok Inc.",status-playable,playable,2021-01-27 17:43:59.000 +0100B1E0100A4000,"Voxel Galaxy",status-playable,playable,2022-09-28 22:45:02.000 +0100AFA011068000,"Voxel Pirates",status-playable,playable,2022-09-28 22:55:02.000 +0100BFB00D1F4000,"Voxel Sword",status-playable,playable,2022-08-30 14:57:27.000 +01004E90028A2000,"Vroom in the night sky",status-playable;Needs Update;vulkan-backend-bug,playable,2023-02-20 02:32:29.000 +0100C7C00AE6C000,"VSR: Void Space Racing",status-playable,playable,2021-01-27 14:08:59.000 +0100B130119D0000,"Waifu Uncovered",status-ingame;crash,ingame,2023-02-27 01:17:46.000 +0100E29010A4A000,"Wanba Warriors",status-playable,playable,2020-10-04 17:56:22.000 +010078800825E000,"Wanderjahr TryAgainOrWalkAway",status-playable,playable,2020-12-16 09:46:04.000 +0100B27010436000,"Wanderlust Travel Stories",status-playable,playable,2021-04-07 16:09:12.000 +0100F8A00853C000,"Wandersong",nvdec;status-playable,playable,2021-06-04 15:33:34.000 +0100D67013910000,"Wanna Survive",status-playable,playable,2022-11-12 21:15:43.000 +010056901285A000,"War Dogs: Red's Return",status-playable,playable,2022-11-13 15:29:01.000 +01004FA01391A000,"War Of Stealth - assassin",status-playable,playable,2021-05-22 17:34:38.000 +010035A00D4E6000,"War Party",nvdec;status-playable,playable,2021-01-27 18:26:32.000 +010049500DE56000,"War Tech Fighters",status-playable;nvdec,playable,2022-09-16 22:29:31.000 +010084D00A134000,"War Theatre",gpu;status-ingame,ingame,2021-06-07 19:42:45.000 +0100B6B013B8A000,"War Truck Simulator",status-playable,playable,2021-01-31 11:22:54.000 +0100563011B4A000,"War-Torn Dreams",crash;status-nothing,nothing,2020-10-21 11:36:16.000 +010054900F51A000,"WARBORN",status-playable,playable,2020-06-25 12:36:47.000 +01000F0002BB6000,"Wargroove",status-playable;online-broken,playable,2022-08-31 10:30:45.000 +0100C6000EEA8000,"Warhammer 40,000: Mechanicus",nvdec;status-playable,playable,2021-06-13 10:46:38.000 +0100E5600D7B2000,"WARHAMMER 40,000: SPACE WOLF",status-playable;online-broken,playable,2022-09-20 21:11:20.000 +010031201307A000,"Warhammer Age of Sigmar: Storm Ground",status-playable;nvdec;online-broken;UE4,playable,2022-11-13 15:46:14.000 +01002FF00F460000,"Warhammer Quest 2: The End Times",status-playable,playable,2020-08-04 15:28:03.000 +0100563010E0C000,"WarioWare™: Get It Together!",gpu;status-ingame;opengl-backend-bug,ingame,2024-04-23 01:04:56.000 +010045B018EC2000,"WarioWare™: Move It!",status-playable,playable,2023-11-14 00:23:51.000 +0100E0400E320000,"Warlocks 2: God Slayers",status-playable,playable,2020-12-16 17:36:50.000 +0100DB300A026000,"Warp Shift",nvdec;status-playable,playable,2020-12-15 14:48:48.000 +010032700EAC4000,"WarriOrb",UE4;status-playable,playable,2021-06-17 15:45:14.000 +0100E8500AD58000,"WARRIORS OROCHI 4 ULTIMATE",status-playable;nvdec;online-broken,playable,2024-08-07 01:50:37.000 +0100CD900FB24000,"WARTILE",UE4;crash;gpu;status-menus,menus,2020-12-11 21:56:10.000 +010039A00BC64000,"Wasteland 2: Director's Cut",nvdec;status-playable,playable,2021-01-27 13:34:11.000 +0100B79011F06000,"Water Balloon Mania",status-playable,playable,2020-10-23 20:20:59.000 +0100BA200C378000,"Way of the Passive Fist",gpu;status-ingame,ingame,2021-02-26 21:07:06.000 +0100560010E3E000,"We should talk.",crash;status-nothing,nothing,2020-08-03 12:32:36.000 +010096000EEBA000,"Welcome to Hanwell",UE4;crash;status-boots,boots,2020-08-03 11:54:57.000 +0100D7F010B94000,"Welcome to Primrose Lake",status-playable,playable,2022-10-21 11:30:57.000 +010035600EC94000,"Wenjia",status-playable,playable,2020-06-08 11:38:30.000 +010031B00A4E8000,"West of Loathing",status-playable,playable,2021-01-28 12:35:19.000 +010038900DFE0000,"What Remains of Edith Finch",slow;status-playable;UE4,playable,2022-08-31 19:57:59.000 +010033600ADE6000,"Wheel of Fortune®",status-boots;crash;Needs More Attention;nvdec,boots,2023-11-12 20:29:24.000 +0100DFC00405E000,"Wheels of Aurelia",status-playable,playable,2021-01-27 21:59:25.000 +010027D011C9C000,"Where Angels Cry",gpu;status-ingame;nvdec,ingame,2022-09-30 22:24:47.000 +0100FDB0092B4000,"Where Are My Friends?",status-playable,playable,2022-09-21 14:39:26.000 +01000C000C966000,"Where the Bees Make Honey",status-playable,playable,2020-07-15 12:40:49.000 +010017500E7E0000,"Whipseey and the Lost Atlas",status-playable,playable,2020-06-23 20:24:14.000 +010015A00AF1E000,"Whispering Willows",status-playable;nvdec,playable,2022-09-30 22:33:05.000 +010027F0128EA000,"Who Wants to Be a Millionaire?",crash;status-nothing,nothing,2020-12-11 20:22:42.000 +0100C7800CA06000,"Widget Satchel",status-playable,playable,2022-09-16 22:41:07.000 +0100CFC00A1D8000,"Wild Guns™ Reloaded",status-playable,playable,2021-01-28 12:29:05.000 +010071F00D65A000,"Wilmot's Warehouse",audio;gpu;status-ingame,ingame,2021-06-02 17:24:32.000 +010048800B638000,"Windjammers",online;status-playable,playable,2020-10-13 11:24:25.000 +010059900BA3C000,"Windscape",status-playable,playable,2022-10-21 11:49:42.000 +0100D6800CEAC000,"Windstorm: An Unexpected Arrival",UE4;status-playable,playable,2021-06-07 19:33:19.000 +01005A100B314000,"Windstorm: Start of a Great Friendship",UE4;gpu;nvdec;status-ingame,ingame,2020-12-22 13:17:48.000 +010035B012F28000,"Wing of Darkness",status-playable;UE4,playable,2022-11-13 16:03:51.000 +0100A4A015FF0000,"Winter Games 2023",deadlock;status-menus,menus,2023-11-07 20:47:36.000 +010012A017F18800,"Witch On The Holy Night",status-playable,playable,2023-03-06 23:28:11.000 +0100454012E32000,"Witch Spring 3 Re:Fine -The Story of the Marionette Witch Eirudy-",status-ingame;crash,ingame,2021-08-08 11:56:18.000 +01002FC00C6D0000,"Witch Thief",status-playable,playable,2021-01-27 18:16:07.000 +010061501904E000,"Witch's Garden",gpu;status-ingame;crash;vulkan-backend-bug;opengl-backend-bug,ingame,2023-01-11 02:11:24.000 +0100BD4011FFE000,"Witcheye",status-playable,playable,2020-12-14 22:56:08.000 +0100522007AAA000,"Wizard of Legend",status-playable,playable,2021-06-07 12:20:46.000 +010081900F9E2000,"Wizards of Brandel",status-nothing,nothing,2020-10-14 15:52:33.000 +0100C7600E77E000,"Wizards: Wand of Epicosity",status-playable,playable,2022-10-07 12:32:06.000 +01009040091E0000,"Wolfenstein II®: The New Colossus™",gpu;status-ingame,ingame,2024-04-05 05:39:46.000 +01003BD00CAAE000,"Wolfenstein: Youngblood",status-boots;online-broken,boots,2024-07-12 23:49:20.000 +010037A00F5E2000,"Wonder Blade",status-playable,playable,2020-12-11 17:55:31.000 +0100B49016FF0000,"Wonder Boy Anniversary Collection",deadlock;status-nothing,nothing,2023-04-20 16:01:48.000 +0100EB2012E36000,"Wonder Boy Asha in Monster World",status-nothing;crash,nothing,2021-11-03 08:45:06.000 +0100A6300150C000,"Wonder Boy: The Dragon's Trap",status-playable,playable,2021-06-25 04:53:21.000 +0100F5D00C812000,"Wondershot",status-playable,playable,2022-08-31 21:05:31.000 +0100E0300EB04000,"Woodle Tree 2: Deluxe",gpu;slow;status-ingame,ingame,2020-06-04 18:44:00.000 +0100288012966000,"Woodsalt",status-playable,playable,2021-04-06 17:01:48.000 +010083E011BC8000,"Wordify",status-playable,playable,2020-10-03 09:01:07.000 +01009D500A194000,"World Conqueror X",status-playable,playable,2020-12-22 16:10:29.000 +010072000BD32000,"WORLD OF FINAL FANTASY MAXIMA",status-playable,playable,2020-06-07 13:57:23.000 +010009E001D90000,"World of Goo",gpu;status-boots;32-bit;crash;regression,boots,2024-04-12 05:52:14.000 +010061F01DB7C800,"World of Goo 2",status-boots,boots,2024-08-08 22:52:49.000 +01001E300B038000,"World Soccer Pinball",status-playable,playable,2021-01-06 00:37:02.000 +010048900CF64000,"Worldend Syndrome",status-playable,playable,2021-01-03 14:16:32.000 +01008E9007064000,"WorldNeverland - Elnea Kingdom",status-playable,playable,2021-01-28 17:44:23.000 +010000301025A000,"Worlds of Magic: Planar Conquest",status-playable,playable,2021-06-12 12:51:28.000 +01009CD012CC0000,"Worm Jazz",gpu;services;status-ingame;UE4;regression,ingame,2021-11-10 10:33:04.000 +01001AE005166000,"Worms W.M.D",gpu;status-boots;crash;nvdec;ldn-untested,boots,2023-09-16 21:42:59.000 +010037500C4DE000,"Worse Than Death",status-playable,playable,2021-06-11 16:05:40.000 +01006F100EB16000,"Woven",nvdec;status-playable,playable,2021-06-02 13:41:08.000 +010087800DCEA000,"WRC 8 FIA World Rally Championship",status-playable;nvdec,playable,2022-09-16 23:03:36.000 +01001A0011798000,"WRC 9 The Official Game",gpu;slow;status-ingame;nvdec,ingame,2022-10-25 19:47:39.000 +0100DC0012E48000,"Wreckfest",status-playable,playable,2023-02-12 16:13:00.000 +0100C5D00EDB8000,"Wreckin' Ball Adventure",status-playable;UE4,playable,2022-09-12 18:56:28.000 +010033700418A000,"Wulverblade",nvdec;status-playable,playable,2021-01-27 22:29:05.000 +01001C400482C000,"Wunderling DX",audio;status-ingame;crash,ingame,2022-09-10 13:20:12.000 +01003B401148E000,"Wurroom",status-playable,playable,2020-10-07 22:46:21.000 +010081700EDF4000,"WWE 2K Battlegrounds",status-playable;nvdec;online-broken;UE4,playable,2022-10-07 12:44:40.000 +010009800203E000,"WWE 2K18",status-playable;nvdec,playable,2023-10-21 17:22:01.000 +0100DF100B97C000,"X-Morph: Defense",status-playable,playable,2020-06-22 11:05:31.000 +0100D0B00FB74000,"XCOM® 2 Collection",gpu;status-ingame;crash,ingame,2022-10-04 09:38:30.000 +0100CC9015360000,"XEL",gpu;status-ingame,ingame,2022-10-03 10:19:39.000 +0100C9F009F7A000,"Xenoblade Chronicles 2: Torna ~ The Golden Country",slow;status-playable;nvdec,playable,2023-01-28 16:47:28.000 +0100E95004038000,"Xenoblade Chronicles™ 2",deadlock;status-ingame;amd-vendor-bug,ingame,2024-03-28 14:31:41.000 +010074F013262000,"Xenoblade Chronicles™ 3",gpu;status-ingame;crash;nvdec;vulkan-backend-bug;amd-vendor-bug,ingame,2024-08-06 19:56:44.000 +0100FF500E34A000,"Xenoblade Chronicles™ Definitive Edition",status-playable;nvdec,playable,2024-05-04 20:12:41.000 +010028600BA16000,"Xenon Racer",status-playable;nvdec;UE4,playable,2022-08-31 22:05:30.000 +010064200C324000,"Xenon Valkyrie+",status-playable,playable,2021-06-07 20:25:53.000 +0100928005BD2000,"Xenoraid",status-playable,playable,2022-09-03 13:01:10.000 +01005B5009364000,"Xeodrifter",status-playable,playable,2022-09-03 13:18:39.000 +01006FB00DB02000,"Yaga",status-playable;nvdec,playable,2022-09-16 23:17:17.000 +010076B0101A0000,"YesterMorrow",crash;status-ingame,ingame,2020-12-17 17:15:25.000 +010085500B29A000,"Yet Another Zombie Defense HD",status-playable,playable,2021-01-06 00:18:39.000 +0100725019978000,"YGGDRA UNION ~WE'LL NEVER FIGHT ALONE~",status-playable,playable,2020-04-03 02:20:47.000 +0100634008266000,"YIIK: A Postmodern RPG",status-playable,playable,2021-01-28 13:38:37.000 +0100C0000CEEA000,"Yo kai watch 1 for Nintendo Switch",gpu;status-ingame;opengl,ingame,2024-05-28 11:11:49.000 +010086C00AF7C000,"Yo-Kai Watch 4++",status-playable,playable,2024-06-18 20:21:44.000 +010002D00632E000,"Yoku's Island Express",status-playable;nvdec,playable,2022-09-03 13:59:02.000 +0100F47016F26000,"Yomawari 3",status-playable,playable,2022-05-10 08:26:51.000 +010012F00B6F2000,"Yomawari: The Long Night Collection",status-playable,playable,2022-09-03 14:36:59.000 +0100CC600ABB2000,"Yonder: The Cloud Catcher Chronicles (Retail Only)",status-playable,playable,2021-01-28 14:06:25.000 +0100BE50042F6000,"Yono and the Celestial Elephants",status-playable,playable,2021-01-28 18:23:58.000 +0100F110029C8000,"Yooka-Laylee",status-playable,playable,2021-01-28 14:21:45.000 +010022F00DA66000,"Yooka-Laylee and the Impossible Lair",status-playable,playable,2021-03-05 17:32:21.000 +01006000040C2000,"Yoshi’s Crafted World™",gpu;status-ingame;audout,ingame,2021-08-30 13:25:51.000 +0100AE800C9C6000,"Yoshi’s Crafted World™ Demo",gpu;status-boots;status-ingame,boots,2020-12-16 14:57:40.000 +,"Yoshiwara Higanbana Kuon no Chigiri",nvdec;status-playable,playable,2020-10-17 19:14:46.000 +01003A400C3DA800,"YouTube",status-playable,playable,2024-06-08 05:24:10.000 +00100A7700CCAA40,"Youtubers Life00",status-playable;nvdec,playable,2022-09-03 14:56:19.000 +0100E390124D8000,"Ys IX: Monstrum Nox",status-playable,playable,2022-06-12 04:14:42.000 +0100F90010882000,"Ys Origin",status-playable;nvdec,playable,2024-04-17 05:07:33.000 +01007F200B0C0000,"Ys VIII: Lacrimosa of DANA",status-playable;nvdec,playable,2023-08-05 09:26:41.000 +010022400BE5A000,"Yu-Gi-Oh! Legacy of the Duelist : Link Evolution",status-playable,playable,2024-09-27 21:48:43.000 +01002D60188DE000,"Yu-Gi-Oh! Rush Duel: Dawn of the Battle Royale!! Let's Go! Go Rush!!",status-ingame;crash,ingame,2023-03-17 01:54:01.000 +010037D00DBDC000,"YU-NO: A girl who chants love at the bound of this world.",nvdec;status-playable,playable,2021-01-26 17:03:52.000 +0100B56011502000,"Yumeutsutsu Re:After",status-playable,playable,2022-11-20 16:09:06.000 +,"Yunohana Spring! - Mellow Times -",audio;crash;status-menus,menus,2020-09-27 19:27:40.000 +0100307011C44000,"Yuppie Psycho: Executive Edition",crash;status-ingame,ingame,2020-12-11 10:37:06.000 +0100FC900963E000,"Yuri",status-playable,playable,2021-06-11 13:08:50.000 +010092400A678000,"Zaccaria Pinball",status-playable;online-broken,playable,2022-09-03 15:44:28.000 +0100E7900C4C0000,"Zarvot",status-playable,playable,2021-01-28 13:51:36.000 +01005F200F7C2000,"Zen Chess Collection",status-playable,playable,2020-07-01 22:28:27.000 +01008DD0114AE000,"Zenge",status-playable,playable,2020-10-22 13:23:57.000 +0100057011E50000,"Zengeon",services-horizon;status-boots;crash,boots,2024-04-29 15:43:07.000 +0100AAC00E692000,"Zenith",status-playable,playable,2022-09-17 09:57:02.000 +0100A6A00894C000,"ZERO GUNNER 2- for Nintendo Switch",status-playable,playable,2021-01-04 20:17:14.000 +01004B001058C000,"Zero Strain",services;status-menus;UE4,menus,2021-11-10 07:48:32.000 +,"Zettai kaikyu gakuen",gpu;nvdec;status-ingame,ingame,2020-08-25 15:15:54.000 +0100D7B013DD0000,"Ziggy the Chaser",status-playable,playable,2021-02-04 20:34:27.000 +010086700EF16000,"ZikSquare",gpu;status-ingame,ingame,2021-11-06 02:02:48.000 +010069C0123D8000,"Zoids Wild Blast Unleashed",status-playable;nvdec,playable,2022-10-15 11:26:59.000 +0100C7300EEE4000,"Zombie Army Trilogy",ldn-untested;online;status-playable,playable,2020-12-16 12:02:28.000 +01006CF00DA8C000,"Zombie Driver Immortal Edition",nvdec;status-playable,playable,2020-12-14 23:15:10.000 +0100CFE003A64000,"ZOMBIE GOLD RUSH",online;status-playable,playable,2020-09-24 12:56:08.000 +01001740116EC000,"Zombie's Cool",status-playable,playable,2020-12-17 12:41:26.000 +01000E5800D32C00,"Zombieland: Double Tap - Road Trip0",status-playable,playable,2022-09-17 10:08:45.000 +0100CD300A1BA000,"Zombillie",status-playable,playable,2020-07-23 17:42:23.000 +01001EE00A6B0000,"Zotrix: Solar Division",status-playable,playable,2021-06-07 20:34:05.000 +,"この世の果てで恋を唄う少女YU-NO",audio;status-ingame,ingame,2021-01-22 07:00:16.000 +,"スーパーファミコン Nintendo Switch Online",slow;status-ingame,ingame,2020-03-14 05:48:38.000 +01000BB01CB8A000,"トラブル・マギア ~訳アリ少女は未来を勝ち取るために異国の魔法学校へ留学します~(Trouble Magia ~Wakeari Shoujo wa Mirai o Kachitoru Tame ni Ikoku no Mahou Gakkou e Ryuugaku Shimasu~)",status-nothing,nothing,2024-09-28 07:03:14.000 +010065500B218000,"メモリーズオフ - Innocent Fille",status-playable,playable,2022-12-02 17:36:48.000 +010032400E700000,"二ノ国 白き聖灰の女王",services;status-menus;32-bit,menus,2023-04-16 17:11:06.000 +0100F3100DA46000,"初音ミク Project DIVA MEGA39's",audio;status-playable;loader-allocator,playable,2022-07-29 11:45:52.000 +010047F012BE2000,"密室のサクリファイス/ABYSS OF THE SACRIFICE",status-playable;nvdec,playable,2022-10-21 13:56:28.000 +0100BF401AF9C000,"御伽活劇 豆狸のバケル ~オラクル祭太郎の祭難!!~ (Otogi Katsugeki Mameda no Bakeru Oracle Saitarou no Sainan!!)",slow;status-playable,playable,2023-12-31 14:37:17.000 +0100AFA01750C000,"死神と少女/Shinigami to Shoujo",gpu;status-ingame;Incomplete,ingame,2024-03-22 01:06:45.000 +01001BA01EBFC000,"燃えよ! 乙女道士 ~華遊恋語~ (Moeyo! Otome Doushi Kayu Koigatari)",services-horizon;status-nothing,nothing,2024-09-28 12:22:55.000 +0100936018EB4000,"牧場物語 Welcome!ワンダフルライフ",status-ingame;crash,ingame,2023-04-25 19:43:52.000 +0100F4401940A000,"超探偵事件簿 レインコード (Master Detective Archives: Rain Code)",status-ingame;crash,ingame,2024-02-12 20:58:31.000 +010064801A01C000,"超次元ゲイム ネプテューヌ GameMaker R:Evolution",status-nothing;crash,nothing,2023-10-30 22:37:40.000 From daa81689854e19d387b39461190b6c7ab60c4f62 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Thu, 9 Jan 2025 14:03:37 -0600 Subject: [PATCH 40/69] docs: compat: the final title IDs i could find --- docs/compatibility.csv | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/compatibility.csv b/docs/compatibility.csv index b95e93072..9b00f14c4 100644 --- a/docs/compatibility.csv +++ b/docs/compatibility.csv @@ -428,7 +428,6 @@ 010010A00DA48000,"Baldur's Gate and Baldur's Gate II: Enhanced Editions",32-bit;status-playable,playable,2022-09-12 23:52:15.000 0100BC400FB64000,"Balthazar's Dream",status-playable,playable,2022-09-13 00:13:22.000 01008D30128E0000,"Bamerang",status-playable,playable,2022-10-26 00:29:39.000 -,"Bang Dream Girls Band Party for Nintendo Switch",status-playable,playable,2021-09-19 03:06:58.000 010013C010C5C000,"Banner of the Maid",status-playable,playable,2021-06-14 15:23:37.000 0100388008758000,"Banner Saga 2",crash;status-boots,boots,2021-01-13 08:56:09.000 010071E00875A000,"Banner Saga 3",slow;status-boots,boots,2021-01-11 16:53:57.000 @@ -1245,7 +1244,7 @@ 01000EC00AF98000,"Furi",status-playable,playable,2022-07-27 12:21:20.000 0100A6B00D4EC000,"Furwind",status-playable,playable,2021-02-19 19:44:08.000 0100ECE00C0C4000,"Fury Unleashed",crash;services;status-ingame,ingame,2020-10-18 11:52:40.000 -,"Fury Unleashed Demo",status-playable,playable,2020-10-08 20:09:21.000 +010070000ED9E000,"Fury Unleashed Demo",status-playable,playable,2020-10-08 20:09:21.000 0100E1F013674000,"FUSER™",status-playable;nvdec;UE4,playable,2022-10-17 20:58:32.000 ,"Fushigi no Gensokyo Lotus Labyrinth",Needs Update;audio;gpu;nvdec;status-ingame,ingame,2021-01-20 15:30:02.000 01003C300B274000,"Futari de! Nyanko Daisensou",status-playable,playable,2024-01-05 22:26:52.000 @@ -1978,7 +1977,7 @@ 01005F000B784000,"Nelly Cootalot: The Fowl Fleet",status-playable,playable,2020-06-11 20:55:42.000 01001AB0141A8000,"Neo : The World Ends with You (DEMO)- 新すばらしきこのせかい (体験版)",crash;status-ingame,ingame,2021-07-18 07:29:18.000 0100EBB00D2F4000,"Neo Cab",status-playable,playable,2021-04-24 00:27:58.000 -,"Neo Cab Demo",crash;status-boots,boots,2020-06-16 00:14:00.000 +010040000DB98000,"Neo Cab Demo",crash;status-boots,boots,2020-06-16 00:14:00.000 010006D0128B4000,"NEOGEO POCKET COLOR SELECTION Vol.1",status-playable,playable,2023-07-08 20:55:36.000 0100BAB01113A000,"Neon Abyss",status-playable,playable,2022-10-05 15:59:44.000 010075E0047F8000,"Neon Chrome",status-playable,playable,2022-08-06 18:38:34.000 @@ -2632,8 +2631,7 @@ 0100EA400BF44000,"SkyScrappers",status-playable,playable,2020-05-28 22:11:25.000 0100F3C00C400000,"SkyTime",slow;status-ingame,ingame,2020-05-30 09:24:51.000 01003AD00DEAE000,"SlabWell: The Quest For Kaktun's Alpaca",status-playable,playable,2021-02-22 17:02:51.000 -,"Slain",status-playable,playable,2020-05-29 14:26:16.000 -0100BB100AF4C000,"Slain Back from Hell",status-playable,playable,2022-08-12 23:36:19.000 +0100224004004000,"Slain: Back from Hell",status-playable,playable,2022-08-12 23:36:19.000 010026300BA4A000,"Slay the Spire",status-playable,playable,2023-01-20 15:09:26.000 0100501006494000,"Slayaway Camp: Butcher's Cut",status-playable;opengl-backend-bug,playable,2022-08-12 23:44:05.000 01004E900EDDA000,"Slayin 2",gpu;status-ingame,ingame,2024-04-19 16:15:26.000 From a8c3407d11ffaddd7980c4fd83a7c1542458b72c Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Thu, 9 Jan 2025 14:25:16 -0600 Subject: [PATCH 41/69] missing JP title id --- docs/compatibility.csv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/compatibility.csv b/docs/compatibility.csv index 9b00f14c4..f116b4474 100644 --- a/docs/compatibility.csv +++ b/docs/compatibility.csv @@ -3407,7 +3407,7 @@ 01000E5800D32C00,"Zombieland: Double Tap - Road Trip0",status-playable,playable,2022-09-17 10:08:45.000 0100CD300A1BA000,"Zombillie",status-playable,playable,2020-07-23 17:42:23.000 01001EE00A6B0000,"Zotrix: Solar Division",status-playable,playable,2021-06-07 20:34:05.000 -,"この世の果てで恋を唄う少女YU-NO",audio;status-ingame,ingame,2021-01-22 07:00:16.000 +0100B9B00C6A4000,"この世の果てで恋を唄う少女YU-NO",audio;status-ingame,ingame,2021-01-22 07:00:16.000 ,"スーパーファミコン Nintendo Switch Online",slow;status-ingame,ingame,2020-03-14 05:48:38.000 01000BB01CB8A000,"トラブル・マギア ~訳アリ少女は未来を勝ち取るために異国の魔法学校へ留学します~(Trouble Magia ~Wakeari Shoujo wa Mirai o Kachitoru Tame ni Ikoku no Mahou Gakkou e Ryuugaku Shimasu~)",status-nothing,nothing,2024-09-28 07:03:14.000 010065500B218000,"メモリーズオフ - Innocent Fille",status-playable,playable,2022-12-02 17:36:48.000 From 606e149bd343c57263db72c3f740ecf8bcfeb718 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Thu, 9 Jan 2025 18:48:15 -0600 Subject: [PATCH 42/69] UI: Create a ColumnIndices struct and pass it by reference to the row ctor instead of recomputing the column index for every column on every row --- .../Utilities/Compat/CompatibilityCsv.cs | 73 ++++++++++++------- .../Compat/CompatibilityList.axaml.cs | 9 --- .../Compat/CompatibilityViewModel.cs | 9 +-- 3 files changed, 51 insertions(+), 40 deletions(-) diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs b/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs index 1e69b42d5..8fc7aeb04 100644 --- a/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs +++ b/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs @@ -1,50 +1,71 @@ using Gommon; using nietras.SeparatedValues; using Ryujinx.Ava.Common.Locale; +using Ryujinx.Common.Logging; using System; using System.Collections.Generic; using System.IO; using System.Linq; +using System.Reflection; using System.Text; namespace Ryujinx.Ava.Utilities.Compat { + public struct ColumnIndices(SepReaderHeader header) + { + public const string TitleIdCol = "\"title_id\""; + public const string GameNameCol = "\"game_name\""; + public const string LabelsCol = "\"labels\""; + public const string StatusCol = "\"status\""; + public const string LastUpdatedCol = "\"last_updated\""; + + public readonly int TitleId = header.IndexOf(TitleIdCol); + public readonly int GameName = header.IndexOf(GameNameCol); + public readonly int Labels = header.IndexOf(LabelsCol); + public readonly int Status = header.IndexOf(StatusCol); + public readonly int LastUpdated = header.IndexOf(LastUpdatedCol); + } + public class CompatibilityCsv { - public static CompatibilityCsv Shared { get; set; } - - public CompatibilityCsv(SepReader reader) + static CompatibilityCsv() { - var entries = new List(); + using Stream csvStream = Assembly.GetExecutingAssembly() + .GetManifestResourceStream("RyujinxGameCompatibilityList")!; + csvStream.Position = 0; - foreach (var row in reader) - { - entries.Add(new CompatibilityEntry(reader.Header, row)); - } + LoadFromStream(csvStream); + } + + public static void LoadFromStream(Stream stream) + { + var reader = Sep.Reader().From(stream); + var columnIndices = new ColumnIndices(reader.Header); - Entries = entries.Where(x => x.Status != null) - .OrderBy(it => it.GameName).ToArray(); + Entries = reader + .Enumerate(row => new CompatibilityEntry(ref columnIndices, row)) + .OrderBy(it => it.GameName) + .ToArray(); + + Logger.Debug?.Print(LogClass.UI, "Compatibility CSV loaded."); } - public CompatibilityEntry[] Entries { get; } + public static CompatibilityEntry[] Entries { get; private set; } } public class CompatibilityEntry { - public CompatibilityEntry(SepReaderHeader header, SepReader.Row row) + public CompatibilityEntry(ref ColumnIndices indices, SepReader.Row row) { - if (row.ColCount != header.ColNames.Count) - throw new InvalidDataException($"CSV row {row.RowIndex} ({row.ToString()}) has mismatched column count"); - - var titleIdRow = ColStr(row[header.IndexOf("\"title_id\"")]); + var titleIdRow = ColStr(row[indices.TitleId]); TitleId = !string.IsNullOrEmpty(titleIdRow) ? titleIdRow : default(Optional); - GameName = ColStr(row[header.IndexOf("\"game_name\"")]).Trim().Trim('"'); + GameName = ColStr(row[indices.GameName]).Trim().Trim('"'); - IssueLabels = ColStr(row[header.IndexOf("\"labels\"")]).Split(';'); - Status = ColStr(row[header.IndexOf("\"status\"")]).ToLower() switch + Labels = ColStr(row[indices.Labels]).Split(';'); + Status = ColStr(row[indices.Status]).ToLower() switch { "playable" => LocaleKeys.CompatibilityListPlayable, "ingame" => LocaleKeys.CompatibilityListIngame, @@ -54,8 +75,8 @@ namespace Ryujinx.Ava.Utilities.Compat _ => null }; - if (DateTime.TryParse(ColStr(row[header.IndexOf("\"last_updated\"")]), out var dt)) - LastEvent = dt; + if (DateTime.TryParse(ColStr(row[indices.LastUpdated]), out var dt)) + LastUpdated = dt; return; @@ -64,15 +85,15 @@ namespace Ryujinx.Ava.Utilities.Compat public string GameName { get; } public Optional TitleId { get; } - public string[] IssueLabels { get; } + public string[] Labels { get; } public LocaleKeys? Status { get; } - public DateTime LastEvent { get; } + public DateTime LastUpdated { get; } public string LocalizedStatus => LocaleManager.Instance[Status!.Value]; public string FormattedTitleId => TitleId .OrElse(new string(' ', 16)); - public string FormattedIssueLabels => IssueLabels + public string FormattedIssueLabels => Labels .Where(it => !it.StartsWithIgnoreCase("status")) .Select(FormatLabelName) .JoinToString(", "); @@ -82,9 +103,9 @@ namespace Ryujinx.Ava.Utilities.Compat var sb = new StringBuilder("CompatibilityEntry: {"); sb.Append($"{nameof(GameName)}=\"{GameName}\", "); sb.Append($"{nameof(TitleId)}={TitleId}, "); - sb.Append($"{nameof(IssueLabels)}=\"{IssueLabels}\", "); + sb.Append($"{nameof(Labels)}=\"{Labels}\", "); sb.Append($"{nameof(Status)}=\"{Status}\", "); - sb.Append($"{nameof(LastEvent)}=\"{LastEvent}\""); + sb.Append($"{nameof(LastUpdated)}=\"{LastUpdated}\""); sb.Append('}'); return sb.ToString(); diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs b/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs index 80f124121..2d5f08868 100644 --- a/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs +++ b/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs @@ -14,15 +14,6 @@ namespace Ryujinx.Ava.Utilities.Compat { public static async Task Show() { - if (CompatibilityCsv.Shared is null) - { - await using Stream csvStream = Assembly.GetExecutingAssembly() - .GetManifestResourceStream("RyujinxGameCompatibilityList")!; - csvStream.Position = 0; - - CompatibilityCsv.Shared = new CompatibilityCsv(Sep.Reader().From(csvStream)); - } - ContentDialog contentDialog = new() { PrimaryButtonText = string.Empty, diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityViewModel.cs b/src/Ryujinx/Utilities/Compat/CompatibilityViewModel.cs index 8140c041f..4bd97cc35 100644 --- a/src/Ryujinx/Utilities/Compat/CompatibilityViewModel.cs +++ b/src/Ryujinx/Utilities/Compat/CompatibilityViewModel.cs @@ -11,14 +11,13 @@ namespace Ryujinx.Ava.Utilities.Compat { [ObservableProperty] private bool _onlyShowOwnedGames = true; - private IEnumerable _currentEntries = CompatibilityCsv.Shared.Entries; + private IEnumerable _currentEntries = CompatibilityCsv.Entries; private readonly string[] _ownedGameTitleIds = []; private readonly ApplicationLibrary _appLibrary; public IEnumerable CurrentEntries => OnlyShowOwnedGames ? _currentEntries.Where(x => - x.TitleId.Check(tid => _ownedGameTitleIds.ContainsIgnoreCase(tid)) - || _appLibrary.Applications.Items.Any(a => a.Name.EqualsIgnoreCase(x.GameName))) + x.TitleId.Check(tid => _ownedGameTitleIds.ContainsIgnoreCase(tid))) : _currentEntries; public CompatibilityViewModel() {} @@ -39,11 +38,11 @@ namespace Ryujinx.Ava.Utilities.Compat { if (string.IsNullOrEmpty(searchTerm)) { - SetEntries(CompatibilityCsv.Shared.Entries); + SetEntries(CompatibilityCsv.Entries); return; } - SetEntries(CompatibilityCsv.Shared.Entries.Where(x => + SetEntries(CompatibilityCsv.Entries.Where(x => x.GameName.ContainsIgnoreCase(searchTerm) || x.TitleId.Check(tid => tid.ContainsIgnoreCase(searchTerm)))); } From 292e27f0dac05c5d79fe71cb56eba95d0aa8a69a Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Thu, 9 Jan 2025 19:24:48 -0600 Subject: [PATCH 43/69] UI: dispose CSV reader when done + use explicit types --- src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs b/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs index 8fc7aeb04..8b8f456ef 100644 --- a/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs +++ b/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs @@ -39,8 +39,8 @@ namespace Ryujinx.Ava.Utilities.Compat public static void LoadFromStream(Stream stream) { - var reader = Sep.Reader().From(stream); - var columnIndices = new ColumnIndices(reader.Header); + using SepReader reader = Sep.Reader().From(stream); + ColumnIndices columnIndices = new(reader.Header); Entries = reader .Enumerate(row => new CompatibilityEntry(ref columnIndices, row)) @@ -57,7 +57,7 @@ namespace Ryujinx.Ava.Utilities.Compat { public CompatibilityEntry(ref ColumnIndices indices, SepReader.Row row) { - var titleIdRow = ColStr(row[indices.TitleId]); + string titleIdRow = ColStr(row[indices.TitleId]); TitleId = !string.IsNullOrEmpty(titleIdRow) ? titleIdRow : default(Optional); @@ -100,7 +100,7 @@ namespace Ryujinx.Ava.Utilities.Compat public override string ToString() { - var sb = new StringBuilder("CompatibilityEntry: {"); + StringBuilder sb = new("CompatibilityEntry: {"); sb.Append($"{nameof(GameName)}=\"{GameName}\", "); sb.Append($"{nameof(TitleId)}={TitleId}, "); sb.Append($"{nameof(Labels)}=\"{Labels}\", "); @@ -161,8 +161,8 @@ namespace Ryujinx.Ava.Utilities.Compat if (value == string.Empty) return string.Empty; - var firstChar = value[0]; - var rest = value[1..]; + char firstChar = value[0]; + string rest = value[1..]; return $"{char.ToUpper(firstChar)}{rest}"; } From c5574b41a127556cd800d413955de6a75213ca85 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Thu, 9 Jan 2025 19:44:24 -0600 Subject: [PATCH 44/69] UI: collapse LoadFromStream into static ctor pass the index get delegate to the struct instead of the entire header --- .../Utilities/Compat/CompatibilityCsv.cs | 21 +++++++------------ 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs b/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs index 8b8f456ef..b3812faa2 100644 --- a/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs +++ b/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs @@ -11,7 +11,7 @@ using System.Text; namespace Ryujinx.Ava.Utilities.Compat { - public struct ColumnIndices(SepReaderHeader header) + public struct ColumnIndices(Func getIndex) { public const string TitleIdCol = "\"title_id\""; public const string GameNameCol = "\"game_name\""; @@ -19,11 +19,11 @@ namespace Ryujinx.Ava.Utilities.Compat public const string StatusCol = "\"status\""; public const string LastUpdatedCol = "\"last_updated\""; - public readonly int TitleId = header.IndexOf(TitleIdCol); - public readonly int GameName = header.IndexOf(GameNameCol); - public readonly int Labels = header.IndexOf(LabelsCol); - public readonly int Status = header.IndexOf(StatusCol); - public readonly int LastUpdated = header.IndexOf(LastUpdatedCol); + public readonly int TitleId = getIndex(TitleIdCol); + public readonly int GameName = getIndex(GameNameCol); + public readonly int Labels = getIndex(LabelsCol); + public readonly int Status = getIndex(StatusCol); + public readonly int LastUpdated = getIndex(LastUpdatedCol); } public class CompatibilityCsv @@ -34,13 +34,8 @@ namespace Ryujinx.Ava.Utilities.Compat .GetManifestResourceStream("RyujinxGameCompatibilityList")!; csvStream.Position = 0; - LoadFromStream(csvStream); - } - - public static void LoadFromStream(Stream stream) - { - using SepReader reader = Sep.Reader().From(stream); - ColumnIndices columnIndices = new(reader.Header); + using SepReader reader = Sep.Reader().From(csvStream); + ColumnIndices columnIndices = new(reader.Header.IndexOf); Entries = reader .Enumerate(row => new CompatibilityEntry(ref columnIndices, row)) From bdd890cf6f8b583d47946abe3988f158dac3140f Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Thu, 9 Jan 2025 19:48:11 -0600 Subject: [PATCH 45/69] UI: logger function name --- src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs b/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs index b3812faa2..742442714 100644 --- a/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs +++ b/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs @@ -42,7 +42,7 @@ namespace Ryujinx.Ava.Utilities.Compat .OrderBy(it => it.GameName) .ToArray(); - Logger.Debug?.Print(LogClass.UI, "Compatibility CSV loaded."); + Logger.Debug?.Print(LogClass.UI, "Compatibility CSV loaded.", "LoadCompatCsv"); } public static CompatibilityEntry[] Entries { get; private set; } From 27993b789fbc6943410a06cbb849a0e0d7d648b8 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Thu, 9 Jan 2025 20:23:26 -0600 Subject: [PATCH 46/69] misc: chore: fix some compile warnings --- src/Ryujinx/UI/Helpers/PlayabilityStatusConverter.cs | 6 +++--- src/Ryujinx/UI/ViewModels/MainWindowViewModel.cs | 5 ++++- src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs | 3 +-- src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs | 2 +- 4 files changed, 9 insertions(+), 7 deletions(-) diff --git a/src/Ryujinx/UI/Helpers/PlayabilityStatusConverter.cs b/src/Ryujinx/UI/Helpers/PlayabilityStatusConverter.cs index a894f0246..99c6a0fce 100644 --- a/src/Ryujinx/UI/Helpers/PlayabilityStatusConverter.cs +++ b/src/Ryujinx/UI/Helpers/PlayabilityStatusConverter.cs @@ -12,8 +12,8 @@ namespace Ryujinx.Ava.UI.Helpers private static readonly Lazy _shared = new(() => new()); public static PlayabilityStatusConverter Shared => _shared.Value; - public object Convert(object? value, Type _, object? __, CultureInfo ___) => - value.Cast() switch + public object Convert(object value, Type _, object __, CultureInfo ___) + => value.Cast() switch { LocaleKeys.CompatibilityListNothing or LocaleKeys.CompatibilityListBoots or @@ -22,7 +22,7 @@ namespace Ryujinx.Ava.UI.Helpers _ => Brushes.ForestGreen }; - public object ConvertBack(object? value, Type _, object? __, CultureInfo ___) + public object ConvertBack(object value, Type _, object __, CultureInfo ___) => throw new NotSupportedException(); } } diff --git a/src/Ryujinx/UI/ViewModels/MainWindowViewModel.cs b/src/Ryujinx/UI/ViewModels/MainWindowViewModel.cs index e11d855a6..6ca82d38b 100644 --- a/src/Ryujinx/UI/ViewModels/MainWindowViewModel.cs +++ b/src/Ryujinx/UI/ViewModels/MainWindowViewModel.cs @@ -741,7 +741,10 @@ namespace Ryujinx.Ava.UI.ViewModels Applications.ToObservableChangeSet() .Filter(Filter) .Sort(GetComparer()) - .Bind(out _appsObservableList).AsObservableList(); +#pragma warning disable MVVMTK0034 + .Bind(out _appsObservableList) +#pragma warning enable MVVMTK0034 + .AsObservableList(); OnPropertyChanged(nameof(AppsObservableList)); } diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs b/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs index 742442714..e3d630b60 100644 --- a/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs +++ b/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs @@ -3,7 +3,6 @@ using nietras.SeparatedValues; using Ryujinx.Ava.Common.Locale; using Ryujinx.Common.Logging; using System; -using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; @@ -11,7 +10,7 @@ using System.Text; namespace Ryujinx.Ava.Utilities.Compat { - public struct ColumnIndices(Func getIndex) + public struct ColumnIndices(Func, int> getIndex) { public const string TitleIdCol = "\"title_id\""; public const string GameNameCol = "\"game_name\""; diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs b/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs index 2d5f08868..841db23a8 100644 --- a/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs +++ b/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml.cs @@ -42,7 +42,7 @@ namespace Ryujinx.Ava.Utilities.Compat InitializeComponent(); } - private void TextBox_OnTextChanged(object? sender, TextChangedEventArgs e) + private void TextBox_OnTextChanged(object sender, TextChangedEventArgs e) { if (DataContext is not CompatibilityViewModel cvm) return; From 845c86f545ddd27e0bade490ff161886c7a587b6 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Thu, 9 Jan 2025 21:14:35 -0600 Subject: [PATCH 47/69] misc: chore: cleanup AppletMetadata.CanStart --- src/Ryujinx/Utilities/AppletMetadata.cs | 26 ++++++++++++------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/src/Ryujinx/Utilities/AppletMetadata.cs b/src/Ryujinx/Utilities/AppletMetadata.cs index 82baed7d3..42c23ee12 100644 --- a/src/Ryujinx/Utilities/AppletMetadata.cs +++ b/src/Ryujinx/Utilities/AppletMetadata.cs @@ -32,29 +32,27 @@ namespace Ryujinx.Ava.Utilities public string GetContentPath(ContentManager contentManager) => (contentManager ?? _contentManager) - .GetInstalledContentPath(ProgramId, StorageId.BuiltInSystem, NcaContentType.Program); + ?.GetInstalledContentPath(ProgramId, StorageId.BuiltInSystem, NcaContentType.Program); public bool CanStart(ContentManager contentManager, out ApplicationData appData, out BlitStruct appControl) { contentManager ??= _contentManager; - if (contentManager == null) - { - appData = null; - appControl = new BlitStruct(0); - return false; - } + if (contentManager == null) + goto BadData; + + string contentPath = GetContentPath(contentManager); + if (string.IsNullOrEmpty(contentPath)) + goto BadData; appData = new() { Name = Name, Id = ProgramId, Path = GetContentPath(contentManager) }; - - if (string.IsNullOrEmpty(appData.Path)) - { - appControl = new BlitStruct(0); - return false; - } - appControl = StructHelpers.CreateCustomNacpData(Name, Version); return true; + + BadData: + appData = null; + appControl = new BlitStruct(0); + return false; } } } From cca429d46a15e8b5fdcff0d548c10e60c0d6055f Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Thu, 9 Jan 2025 21:42:54 -0600 Subject: [PATCH 48/69] misc: chore: restore not enable --- src/Ryujinx/UI/ViewModels/MainWindowViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ryujinx/UI/ViewModels/MainWindowViewModel.cs b/src/Ryujinx/UI/ViewModels/MainWindowViewModel.cs index 6ca82d38b..17b9ea98c 100644 --- a/src/Ryujinx/UI/ViewModels/MainWindowViewModel.cs +++ b/src/Ryujinx/UI/ViewModels/MainWindowViewModel.cs @@ -743,7 +743,7 @@ namespace Ryujinx.Ava.UI.ViewModels .Sort(GetComparer()) #pragma warning disable MVVMTK0034 .Bind(out _appsObservableList) -#pragma warning enable MVVMTK0034 +#pragma warning restore MVVMTK0034 .AsObservableList(); OnPropertyChanged(nameof(AppsObservableList)); From 918ec1bde3b84650e0ad18e0fe712381dc1276f9 Mon Sep 17 00:00:00 2001 From: LotP1 <68976644+LotP1@users.noreply.github.com> Date: Fri, 10 Jan 2025 04:43:18 +0100 Subject: [PATCH 49/69] cores rework (#505) This PR changes the core count to be defined in the device instead of being a const value. This is mostly a change for future features I want to implement and should not impact any functionality. The console will now log the range of cores requested from the application, and for now, if the requested range is not 0 to 2 (the 3 cores used for application emulation), it will give an error message which tells the user to contact me on discord. I'm doing this because I'm interested in finding applications/games that don't use 3 cores and the error will be removed in the future once I've gotten enough data. --- src/Ryujinx.HLE/HOS/Horizon.cs | 2 +- src/Ryujinx.HLE/HOS/Kernel/KernelContext.cs | 1 + src/Ryujinx.HLE/HOS/Kernel/KernelStatic.cs | 2 +- src/Ryujinx.HLE/HOS/Kernel/Process/KProcess.cs | 2 +- .../HOS/Kernel/Process/KProcessCapabilities.cs | 17 +++++++++++------ .../HOS/Kernel/SupervisorCall/Syscall.cs | 2 +- .../HOS/Kernel/Threading/KScheduler.cs | 18 +++++++++++++----- src/Ryujinx.HLE/HOS/Services/ServerBase.cs | 6 +++--- src/Ryujinx.HLE/Switch.cs | 2 ++ src/Ryujinx/Headless/HeadlessRyujinx.Init.cs | 2 +- 10 files changed, 35 insertions(+), 19 deletions(-) diff --git a/src/Ryujinx.HLE/HOS/Horizon.cs b/src/Ryujinx.HLE/HOS/Horizon.cs index f9c5ddecf..627b649df 100644 --- a/src/Ryujinx.HLE/HOS/Horizon.cs +++ b/src/Ryujinx.HLE/HOS/Horizon.cs @@ -284,7 +284,7 @@ namespace Ryujinx.HLE.HOS ProcessCreationInfo creationInfo = new("Service", 1, 0, 0x8000000, 1, Flags, 0, 0); uint[] defaultCapabilities = { - 0x030363F7, + (((uint)KScheduler.CpuCoresCount - 1) << 24) + (((uint)KScheduler.CpuCoresCount - 1) << 16) + 0x63F7u, 0x1FFFFFCF, 0x207FFFEF, 0x47E0060F, diff --git a/src/Ryujinx.HLE/HOS/Kernel/KernelContext.cs b/src/Ryujinx.HLE/HOS/Kernel/KernelContext.cs index 89d788c54..7e2e9cacc 100644 --- a/src/Ryujinx.HLE/HOS/Kernel/KernelContext.cs +++ b/src/Ryujinx.HLE/HOS/Kernel/KernelContext.cs @@ -63,6 +63,7 @@ namespace Ryujinx.HLE.HOS.Kernel TickSource = tickSource; Device = device; Memory = memory; + KScheduler.CpuCoresCount = device.CpuCoresCount; Running = true; diff --git a/src/Ryujinx.HLE/HOS/Kernel/KernelStatic.cs b/src/Ryujinx.HLE/HOS/Kernel/KernelStatic.cs index f5ecba752..e05fc8397 100644 --- a/src/Ryujinx.HLE/HOS/Kernel/KernelStatic.cs +++ b/src/Ryujinx.HLE/HOS/Kernel/KernelStatic.cs @@ -37,7 +37,7 @@ namespace Ryujinx.HLE.HOS.Kernel return result; } - process.DefaultCpuCore = 3; + process.DefaultCpuCore = KScheduler.CpuCoresCount - 1; context.Processes.TryAdd(process.Pid, process); diff --git a/src/Ryujinx.HLE/HOS/Kernel/Process/KProcess.cs b/src/Ryujinx.HLE/HOS/Kernel/Process/KProcess.cs index b4aa5ca5c..82c3d2e70 100644 --- a/src/Ryujinx.HLE/HOS/Kernel/Process/KProcess.cs +++ b/src/Ryujinx.HLE/HOS/Kernel/Process/KProcess.cs @@ -277,7 +277,7 @@ namespace Ryujinx.HLE.HOS.Kernel.Process return result; } - result = Capabilities.InitializeForUser(capabilities, MemoryManager); + result = Capabilities.InitializeForUser(capabilities, MemoryManager, IsApplication); if (result != Result.Success) { diff --git a/src/Ryujinx.HLE/HOS/Kernel/Process/KProcessCapabilities.cs b/src/Ryujinx.HLE/HOS/Kernel/Process/KProcessCapabilities.cs index ebab67bb8..5c9f4f100 100644 --- a/src/Ryujinx.HLE/HOS/Kernel/Process/KProcessCapabilities.cs +++ b/src/Ryujinx.HLE/HOS/Kernel/Process/KProcessCapabilities.cs @@ -35,15 +35,15 @@ namespace Ryujinx.HLE.HOS.Kernel.Process DebuggingFlags &= ~3u; KernelReleaseVersion = KProcess.KernelVersionPacked; - return Parse(capabilities, memoryManager); + return Parse(capabilities, memoryManager, false); } - public Result InitializeForUser(ReadOnlySpan capabilities, KPageTableBase memoryManager) + public Result InitializeForUser(ReadOnlySpan capabilities, KPageTableBase memoryManager, bool isApplication) { - return Parse(capabilities, memoryManager); + return Parse(capabilities, memoryManager, isApplication); } - private Result Parse(ReadOnlySpan capabilities, KPageTableBase memoryManager) + private Result Parse(ReadOnlySpan capabilities, KPageTableBase memoryManager, bool isApplication) { int mask0 = 0; int mask1 = 0; @@ -54,7 +54,7 @@ namespace Ryujinx.HLE.HOS.Kernel.Process if (cap.GetCapabilityType() != CapabilityType.MapRange) { - Result result = ParseCapability(cap, ref mask0, ref mask1, memoryManager); + Result result = ParseCapability(cap, ref mask0, ref mask1, memoryManager, isApplication); if (result != Result.Success) { @@ -120,7 +120,7 @@ namespace Ryujinx.HLE.HOS.Kernel.Process return Result.Success; } - private Result ParseCapability(uint cap, ref int mask0, ref int mask1, KPageTableBase memoryManager) + private Result ParseCapability(uint cap, ref int mask0, ref int mask1, KPageTableBase memoryManager, bool isApplication) { CapabilityType code = cap.GetCapabilityType(); @@ -176,6 +176,11 @@ namespace Ryujinx.HLE.HOS.Kernel.Process AllowedCpuCoresMask = GetMaskFromMinMax(lowestCpuCore, highestCpuCore); AllowedThreadPriosMask = GetMaskFromMinMax(lowestThreadPrio, highestThreadPrio); + if (isApplication && lowestCpuCore == 0 && highestCpuCore != 2) + Ryujinx.Common.Logging.Logger.Error?.Print(Ryujinx.Common.Logging.LogClass.Application, $"Application requested cores with index range {lowestCpuCore} to {highestCpuCore}! Report this to @LotP on the Ryujinx/Ryubing discord server (discord.gg/ryujinx)!"); + else if (isApplication) + Ryujinx.Common.Logging.Logger.Info?.Print(Ryujinx.Common.Logging.LogClass.Application, $"Application requested cores with index range {lowestCpuCore} to {highestCpuCore}"); + break; } diff --git a/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/Syscall.cs b/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/Syscall.cs index 2f487243d..1b6433af6 100644 --- a/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/Syscall.cs +++ b/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/Syscall.cs @@ -2683,7 +2683,7 @@ namespace Ryujinx.HLE.HOS.Kernel.SupervisorCall return KernelResult.InvalidCombination; } - if ((uint)preferredCore > 3) + if ((uint)preferredCore > KScheduler.CpuCoresCount - 1) { if ((preferredCore | 2) != -1) { diff --git a/src/Ryujinx.HLE/HOS/Kernel/Threading/KScheduler.cs b/src/Ryujinx.HLE/HOS/Kernel/Threading/KScheduler.cs index 8ef77902c..19f1b8be0 100644 --- a/src/Ryujinx.HLE/HOS/Kernel/Threading/KScheduler.cs +++ b/src/Ryujinx.HLE/HOS/Kernel/Threading/KScheduler.cs @@ -9,13 +9,11 @@ namespace Ryujinx.HLE.HOS.Kernel.Threading partial class KScheduler : IDisposable { public const int PrioritiesCount = 64; - public const int CpuCoresCount = 4; + public static int CpuCoresCount; private const int RoundRobinTimeQuantumMs = 10; - private static readonly int[] _preemptionPriorities = { 59, 59, 59, 63 }; - - private static readonly int[] _srcCoresHighestPrioThreads = new int[CpuCoresCount]; + private static int[] _srcCoresHighestPrioThreads; private readonly KernelContext _context; private readonly int _coreId; @@ -47,6 +45,16 @@ namespace Ryujinx.HLE.HOS.Kernel.Threading _coreId = coreId; _currentThread = null; + + if (_srcCoresHighestPrioThreads == null) + { + _srcCoresHighestPrioThreads = new int[CpuCoresCount]; + } + } + + private static int PreemptionPriorities(int index) + { + return index == CpuCoresCount - 1 ? 63 : 59; } public static ulong SelectThreads(KernelContext context) @@ -437,7 +445,7 @@ namespace Ryujinx.HLE.HOS.Kernel.Threading for (int core = 0; core < CpuCoresCount; core++) { - RotateScheduledQueue(context, core, _preemptionPriorities[core]); + RotateScheduledQueue(context, core, PreemptionPriorities(core)); } context.CriticalSection.Leave(); diff --git a/src/Ryujinx.HLE/HOS/Services/ServerBase.cs b/src/Ryujinx.HLE/HOS/Services/ServerBase.cs index f67699b90..40329aa36 100644 --- a/src/Ryujinx.HLE/HOS/Services/ServerBase.cs +++ b/src/Ryujinx.HLE/HOS/Services/ServerBase.cs @@ -24,14 +24,14 @@ namespace Ryujinx.HLE.HOS.Services // not large enough. private const int PointerBufferSize = 0x8000; - private readonly static uint[] _defaultCapabilities = { - 0x030363F7, + private static uint[] _defaultCapabilities => [ + (((uint)KScheduler.CpuCoresCount - 1) << 24) + (((uint)KScheduler.CpuCoresCount - 1) << 16) + 0x63F7u, 0x1FFFFFCF, 0x207FFFEF, 0x47E0060F, 0x0048BFFF, 0x01007FFF, - }; + ]; // The amount of time Dispose() will wait to Join() the thread executing the ServerLoop() private static readonly TimeSpan _threadJoinTimeout = TimeSpan.FromSeconds(3); diff --git a/src/Ryujinx.HLE/Switch.cs b/src/Ryujinx.HLE/Switch.cs index 25e65354f..e15fab03a 100644 --- a/src/Ryujinx.HLE/Switch.cs +++ b/src/Ryujinx.HLE/Switch.cs @@ -32,6 +32,8 @@ namespace Ryujinx.HLE public TamperMachine TamperMachine { get; } public IHostUIHandler UIHandler { get; } + public int CpuCoresCount = 4; //Switch 1 has 4 cores + public VSyncMode VSyncMode { get; set; } = VSyncMode.Switch; public bool CustomVSyncIntervalEnabled { get; set; } = false; public int CustomVSyncInterval { get; set; } diff --git a/src/Ryujinx/Headless/HeadlessRyujinx.Init.cs b/src/Ryujinx/Headless/HeadlessRyujinx.Init.cs index 19d2fb94e..7d75ac7c1 100644 --- a/src/Ryujinx/Headless/HeadlessRyujinx.Init.cs +++ b/src/Ryujinx/Headless/HeadlessRyujinx.Init.cs @@ -1,4 +1,4 @@ -using DiscordRPC; +using DiscordRPC; using LibHac.Tools.FsSystem; using Ryujinx.Audio.Backends.SDL2; using Ryujinx.Ava; From 4a4ea557de4b36c27abd8e401494f3b7ed50d41e Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Fri, 10 Jan 2025 01:43:34 -0600 Subject: [PATCH 50/69] UI: compat: show last updated date on entry hover --- Directory.Packages.props | 2 +- src/Ryujinx/Assets/locales.json | 25 +++++++++++++++++++ .../Utilities/Compat/CompatibilityCsv.cs | 8 +++++- .../Utilities/Compat/CompatibilityList.axaml | 7 ++++-- 4 files changed, 38 insertions(+), 4 deletions(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index 203f40588..a480d3d29 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -42,7 +42,7 @@ - + diff --git a/src/Ryujinx/Assets/locales.json b/src/Ryujinx/Assets/locales.json index 0951ad632..b90e16855 100644 --- a/src/Ryujinx/Assets/locales.json +++ b/src/Ryujinx/Assets/locales.json @@ -22597,6 +22597,31 @@ "zh_TW": "" } }, + { + "ID": "CompatibilityListLastUpdated", + "Translations": { + "ar_SA": "", + "de_DE": "", + "el_GR": "", + "en_US": "Last updated: {0}", + "es_ES": "", + "fr_FR": "", + "he_IL": "", + "it_IT": "", + "ja_JP": "", + "ko_KR": "", + "no_NO": "", + "pl_PL": "", + "pt_BR": "", + "ru_RU": "", + "sv_SE": "", + "th_TH": "", + "tr_TR": "", + "uk_UA": "", + "zh_CN": "", + "zh_TW": "" + } + }, { "ID": "CompatibilityListWarning", "Translations": { diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs b/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs index e3d630b60..676cf1a52 100644 --- a/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs +++ b/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs @@ -1,4 +1,5 @@ using Gommon; +using Humanizer; using nietras.SeparatedValues; using Ryujinx.Ava.Common.Locale; using Ryujinx.Common.Logging; @@ -83,6 +84,9 @@ namespace Ryujinx.Ava.Utilities.Compat public LocaleKeys? Status { get; } public DateTime LastUpdated { get; } + public string LocalizedLastUpdated => + LocaleManager.FormatDynamicValue(LocaleKeys.CompatibilityListLastUpdated, LastUpdated.Humanize()); + public string LocalizedStatus => LocaleManager.Instance[Status!.Value]; public string FormattedTitleId => TitleId .OrElse(new string(' ', 16)); @@ -97,7 +101,9 @@ namespace Ryujinx.Ava.Utilities.Compat StringBuilder sb = new("CompatibilityEntry: {"); sb.Append($"{nameof(GameName)}=\"{GameName}\", "); sb.Append($"{nameof(TitleId)}={TitleId}, "); - sb.Append($"{nameof(Labels)}=\"{Labels}\", "); + sb.Append($"{nameof(Labels)}={ + Labels.FormatCollection(it => $"\"{it}\"", separator: ", ", prefix: "[", suffix: "]") + }, "); sb.Append($"{nameof(Status)}=\"{Status}\", "); sb.Append($"{nameof(LastUpdated)}=\"{LastUpdated}\""); sb.Append('}'); diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml b/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml index 8e14c3904..73ec84c53 100644 --- a/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml +++ b/src/Ryujinx/Utilities/Compat/CompatibilityList.axaml @@ -44,8 +44,11 @@ ItemsSource="{Binding CurrentEntries}"> - + Date: Fri, 10 Jan 2025 20:23:47 -0600 Subject: [PATCH 51/69] UI: Show play time in one time unit, maxing out at hours. --- .../UI/Controls/ApplicationListView.axaml | 5 +-- .../UI/Windows/SettingsWindow.axaml.cs | 7 ++++ .../Utilities/AppLibrary/ApplicationData.cs | 2 ++ src/Ryujinx/Utilities/ValueFormatUtils.cs | 36 ++++++++++--------- 4 files changed, 32 insertions(+), 18 deletions(-) diff --git a/src/Ryujinx/UI/Controls/ApplicationListView.axaml b/src/Ryujinx/UI/Controls/ApplicationListView.axaml index 41a8af0e0..764a33cc0 100644 --- a/src/Ryujinx/UI/Controls/ApplicationListView.axaml +++ b/src/Ryujinx/UI/Controls/ApplicationListView.axaml @@ -133,12 +133,13 @@ Spacing="5"> ValueFormatUtils.FormatTimeSpan(TimePlayed); + public bool HasPlayedPreviously => TimePlayedString != string.Empty; + public string LastPlayedString => ValueFormatUtils.FormatDateTime(LastPlayed)?.Replace(" ", "\n"); public string FileSizeString => ValueFormatUtils.FormatFileSize(FileSize); diff --git a/src/Ryujinx/Utilities/ValueFormatUtils.cs b/src/Ryujinx/Utilities/ValueFormatUtils.cs index 944cfbf8a..f5cdb4125 100644 --- a/src/Ryujinx/Utilities/ValueFormatUtils.cs +++ b/src/Ryujinx/Utilities/ValueFormatUtils.cs @@ -1,3 +1,5 @@ +using Humanizer; +using Humanizer.Localisation; using Ryujinx.Ava.Common.Locale; using System; using System.Globalization; @@ -31,7 +33,7 @@ namespace Ryujinx.Ava.Utilities Gigabytes = 9, Terabytes = 10, Petabytes = 11, - Exabytes = 12, + Exabytes = 12 } private const double SizeBase10 = 1000; @@ -48,22 +50,24 @@ namespace Ryujinx.Ava.Utilities public static string FormatTimeSpan(TimeSpan? timeSpan) { if (!timeSpan.HasValue || timeSpan.Value.TotalSeconds < 1) - { - // Game was never played - return TimeSpan.Zero.ToString("c", CultureInfo.InvariantCulture); - } + return string.Empty; + + if (timeSpan.Value.TotalSeconds < 60) + return timeSpan.Value.Humanize(1, + countEmptyUnits: false, + maxUnit: TimeUnit.Second, + minUnit: TimeUnit.Second); - if (timeSpan.Value.TotalDays < 1) - { - // Game was played for less than a day - return timeSpan.Value.ToString("c", CultureInfo.InvariantCulture); - } - - // Game was played for more than a day - TimeSpan onlyTime = timeSpan.Value.Subtract(TimeSpan.FromDays(timeSpan.Value.Days)); - string onlyTimeString = onlyTime.ToString("c", CultureInfo.InvariantCulture); - - return $"{timeSpan.Value.Days}d, {onlyTimeString}"; + if (timeSpan.Value.TotalMinutes < 60) + return timeSpan.Value.Humanize(1, + countEmptyUnits: false, + maxUnit: TimeUnit.Minute, + minUnit: TimeUnit.Minute); + + return timeSpan.Value.Humanize(1, + countEmptyUnits: false, + maxUnit: TimeUnit.Hour, + minUnit: TimeUnit.Hour); } /// From cc95e80ee9c6fd563ed9313dc80861ae120893ad Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Fri, 10 Jan 2025 20:24:53 -0600 Subject: [PATCH 52/69] misc: chore: Move converters into a directory in Helpers. Namespace unchanged --- .../UI/Helpers/{ => Converters}/BitmapArrayValueConverter.cs | 0 .../Helpers/{ => Converters}/DownloadableContentLabelConverter.cs | 0 src/Ryujinx/UI/Helpers/{ => Converters}/GlyphValueConverter.cs | 0 src/Ryujinx/UI/Helpers/{ => Converters}/KeyValueConverter.cs | 0 .../UI/Helpers/{ => Converters}/MultiplayerInfoConverter.cs | 0 .../UI/Helpers/{ => Converters}/PlayabilityStatusConverter.cs | 0 src/Ryujinx/UI/Helpers/{ => Converters}/TimeZoneConverter.cs | 0 .../UI/Helpers/{ => Converters}/TitleUpdateLabelConverter.cs | 0 .../{ => Converters}/XCITrimmerFileSpaceSavingsConverter.cs | 0 .../UI/Helpers/{ => Converters}/XCITrimmerFileStatusConverter.cs | 0 .../{ => Converters}/XCITrimmerFileStatusDetailConverter.cs | 0 11 files changed, 0 insertions(+), 0 deletions(-) rename src/Ryujinx/UI/Helpers/{ => Converters}/BitmapArrayValueConverter.cs (100%) rename src/Ryujinx/UI/Helpers/{ => Converters}/DownloadableContentLabelConverter.cs (100%) rename src/Ryujinx/UI/Helpers/{ => Converters}/GlyphValueConverter.cs (100%) rename src/Ryujinx/UI/Helpers/{ => Converters}/KeyValueConverter.cs (100%) rename src/Ryujinx/UI/Helpers/{ => Converters}/MultiplayerInfoConverter.cs (100%) rename src/Ryujinx/UI/Helpers/{ => Converters}/PlayabilityStatusConverter.cs (100%) rename src/Ryujinx/UI/Helpers/{ => Converters}/TimeZoneConverter.cs (100%) rename src/Ryujinx/UI/Helpers/{ => Converters}/TitleUpdateLabelConverter.cs (100%) rename src/Ryujinx/UI/Helpers/{ => Converters}/XCITrimmerFileSpaceSavingsConverter.cs (100%) rename src/Ryujinx/UI/Helpers/{ => Converters}/XCITrimmerFileStatusConverter.cs (100%) rename src/Ryujinx/UI/Helpers/{ => Converters}/XCITrimmerFileStatusDetailConverter.cs (100%) diff --git a/src/Ryujinx/UI/Helpers/BitmapArrayValueConverter.cs b/src/Ryujinx/UI/Helpers/Converters/BitmapArrayValueConverter.cs similarity index 100% rename from src/Ryujinx/UI/Helpers/BitmapArrayValueConverter.cs rename to src/Ryujinx/UI/Helpers/Converters/BitmapArrayValueConverter.cs diff --git a/src/Ryujinx/UI/Helpers/DownloadableContentLabelConverter.cs b/src/Ryujinx/UI/Helpers/Converters/DownloadableContentLabelConverter.cs similarity index 100% rename from src/Ryujinx/UI/Helpers/DownloadableContentLabelConverter.cs rename to src/Ryujinx/UI/Helpers/Converters/DownloadableContentLabelConverter.cs diff --git a/src/Ryujinx/UI/Helpers/GlyphValueConverter.cs b/src/Ryujinx/UI/Helpers/Converters/GlyphValueConverter.cs similarity index 100% rename from src/Ryujinx/UI/Helpers/GlyphValueConverter.cs rename to src/Ryujinx/UI/Helpers/Converters/GlyphValueConverter.cs diff --git a/src/Ryujinx/UI/Helpers/KeyValueConverter.cs b/src/Ryujinx/UI/Helpers/Converters/KeyValueConverter.cs similarity index 100% rename from src/Ryujinx/UI/Helpers/KeyValueConverter.cs rename to src/Ryujinx/UI/Helpers/Converters/KeyValueConverter.cs diff --git a/src/Ryujinx/UI/Helpers/MultiplayerInfoConverter.cs b/src/Ryujinx/UI/Helpers/Converters/MultiplayerInfoConverter.cs similarity index 100% rename from src/Ryujinx/UI/Helpers/MultiplayerInfoConverter.cs rename to src/Ryujinx/UI/Helpers/Converters/MultiplayerInfoConverter.cs diff --git a/src/Ryujinx/UI/Helpers/PlayabilityStatusConverter.cs b/src/Ryujinx/UI/Helpers/Converters/PlayabilityStatusConverter.cs similarity index 100% rename from src/Ryujinx/UI/Helpers/PlayabilityStatusConverter.cs rename to src/Ryujinx/UI/Helpers/Converters/PlayabilityStatusConverter.cs diff --git a/src/Ryujinx/UI/Helpers/TimeZoneConverter.cs b/src/Ryujinx/UI/Helpers/Converters/TimeZoneConverter.cs similarity index 100% rename from src/Ryujinx/UI/Helpers/TimeZoneConverter.cs rename to src/Ryujinx/UI/Helpers/Converters/TimeZoneConverter.cs diff --git a/src/Ryujinx/UI/Helpers/TitleUpdateLabelConverter.cs b/src/Ryujinx/UI/Helpers/Converters/TitleUpdateLabelConverter.cs similarity index 100% rename from src/Ryujinx/UI/Helpers/TitleUpdateLabelConverter.cs rename to src/Ryujinx/UI/Helpers/Converters/TitleUpdateLabelConverter.cs diff --git a/src/Ryujinx/UI/Helpers/XCITrimmerFileSpaceSavingsConverter.cs b/src/Ryujinx/UI/Helpers/Converters/XCITrimmerFileSpaceSavingsConverter.cs similarity index 100% rename from src/Ryujinx/UI/Helpers/XCITrimmerFileSpaceSavingsConverter.cs rename to src/Ryujinx/UI/Helpers/Converters/XCITrimmerFileSpaceSavingsConverter.cs diff --git a/src/Ryujinx/UI/Helpers/XCITrimmerFileStatusConverter.cs b/src/Ryujinx/UI/Helpers/Converters/XCITrimmerFileStatusConverter.cs similarity index 100% rename from src/Ryujinx/UI/Helpers/XCITrimmerFileStatusConverter.cs rename to src/Ryujinx/UI/Helpers/Converters/XCITrimmerFileStatusConverter.cs diff --git a/src/Ryujinx/UI/Helpers/XCITrimmerFileStatusDetailConverter.cs b/src/Ryujinx/UI/Helpers/Converters/XCITrimmerFileStatusDetailConverter.cs similarity index 100% rename from src/Ryujinx/UI/Helpers/XCITrimmerFileStatusDetailConverter.cs rename to src/Ryujinx/UI/Helpers/Converters/XCITrimmerFileStatusDetailConverter.cs From de341b285bc2f816d1c90b91c160ed2f343736c7 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Fri, 10 Jan 2025 23:15:37 -0600 Subject: [PATCH 53/69] misc: use ObservableProperty on HotkeyConfig fields --- src/Ryujinx/UI/Models/Input/HotkeyConfig.cs | 160 ++++---------------- 1 file changed, 29 insertions(+), 131 deletions(-) diff --git a/src/Ryujinx/UI/Models/Input/HotkeyConfig.cs b/src/Ryujinx/UI/Models/Input/HotkeyConfig.cs index 4c7a6bd02..40f53c673 100644 --- a/src/Ryujinx/UI/Models/Input/HotkeyConfig.cs +++ b/src/Ryujinx/UI/Models/Input/HotkeyConfig.cs @@ -1,152 +1,53 @@ +using CommunityToolkit.Mvvm.ComponentModel; using Ryujinx.Ava.UI.ViewModels; using Ryujinx.Common.Configuration.Hid; namespace Ryujinx.Ava.UI.Models.Input { - public class HotkeyConfig : BaseModel + public partial class HotkeyConfig : BaseModel { - private Key _toggleVSyncMode; - public Key ToggleVSyncMode - { - get => _toggleVSyncMode; - set - { - _toggleVSyncMode = value; - OnPropertyChanged(); - } - } + [ObservableProperty] private Key _toggleVSyncMode; - private Key _screenshot; - public Key Screenshot - { - get => _screenshot; - set - { - _screenshot = value; - OnPropertyChanged(); - } - } + [ObservableProperty] private Key _screenshot; - private Key _showUI; - public Key ShowUI - { - get => _showUI; - set - { - _showUI = value; - OnPropertyChanged(); - } - } + [ObservableProperty] private Key _showUI; - private Key _pause; - public Key Pause - { - get => _pause; - set - { - _pause = value; - OnPropertyChanged(); - } - } + [ObservableProperty] private Key _pause; - private Key _toggleMute; - public Key ToggleMute - { - get => _toggleMute; - set - { - _toggleMute = value; - OnPropertyChanged(); - } - } + [ObservableProperty] private Key _toggleMute; - private Key _resScaleUp; - public Key ResScaleUp - { - get => _resScaleUp; - set - { - _resScaleUp = value; - OnPropertyChanged(); - } - } + [ObservableProperty] private Key _resScaleUp; - private Key _resScaleDown; - public Key ResScaleDown - { - get => _resScaleDown; - set - { - _resScaleDown = value; - OnPropertyChanged(); - } - } + [ObservableProperty] private Key _resScaleDown; - private Key _volumeUp; - public Key VolumeUp - { - get => _volumeUp; - set - { - _volumeUp = value; - OnPropertyChanged(); - } - } + [ObservableProperty] private Key _volumeUp; - private Key _volumeDown; - public Key VolumeDown - { - get => _volumeDown; - set - { - _volumeDown = value; - OnPropertyChanged(); - } - } + [ObservableProperty] private Key _volumeDown; - private Key _customVSyncIntervalIncrement; - public Key CustomVSyncIntervalIncrement - { - get => _customVSyncIntervalIncrement; - set - { - _customVSyncIntervalIncrement = value; - OnPropertyChanged(); - } - } + [ObservableProperty] private Key _customVSyncIntervalIncrement; - private Key _customVSyncIntervalDecrement; - public Key CustomVSyncIntervalDecrement - { - get => _customVSyncIntervalDecrement; - set - { - _customVSyncIntervalDecrement = value; - OnPropertyChanged(); - } - } + [ObservableProperty] private Key _customVSyncIntervalDecrement; public HotkeyConfig(KeyboardHotkeys config) { - if (config != null) - { - ToggleVSyncMode = config.ToggleVSyncMode; - Screenshot = config.Screenshot; - ShowUI = config.ShowUI; - Pause = config.Pause; - ToggleMute = config.ToggleMute; - ResScaleUp = config.ResScaleUp; - ResScaleDown = config.ResScaleDown; - VolumeUp = config.VolumeUp; - VolumeDown = config.VolumeDown; - CustomVSyncIntervalIncrement = config.CustomVSyncIntervalIncrement; - CustomVSyncIntervalDecrement = config.CustomVSyncIntervalDecrement; - } + if (config == null) + return; + + ToggleVSyncMode = config.ToggleVSyncMode; + Screenshot = config.Screenshot; + ShowUI = config.ShowUI; + Pause = config.Pause; + ToggleMute = config.ToggleMute; + ResScaleUp = config.ResScaleUp; + ResScaleDown = config.ResScaleDown; + VolumeUp = config.VolumeUp; + VolumeDown = config.VolumeDown; + CustomVSyncIntervalIncrement = config.CustomVSyncIntervalIncrement; + CustomVSyncIntervalDecrement = config.CustomVSyncIntervalDecrement; } - public KeyboardHotkeys GetConfig() - { - var config = new KeyboardHotkeys + public KeyboardHotkeys GetConfig() => + new() { ToggleVSyncMode = ToggleVSyncMode, Screenshot = Screenshot, @@ -160,8 +61,5 @@ namespace Ryujinx.Ava.UI.Models.Input CustomVSyncIntervalIncrement = CustomVSyncIntervalIncrement, CustomVSyncIntervalDecrement = CustomVSyncIntervalDecrement, }; - - return config; - } } } From 3141c560fbfab4f7080c4131dfc975d38bfce6a7 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Fri, 10 Jan 2025 23:15:55 -0600 Subject: [PATCH 54/69] misc: chore: remove sender parameter from LdnGameData receieved event --- src/Ryujinx/UI/Windows/MainWindow.axaml.cs | 9 +++------ src/Ryujinx/Utilities/AppLibrary/ApplicationLibrary.cs | 8 ++++---- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/src/Ryujinx/UI/Windows/MainWindow.axaml.cs b/src/Ryujinx/UI/Windows/MainWindow.axaml.cs index e5a815b28..2aaac4098 100644 --- a/src/Ryujinx/UI/Windows/MainWindow.axaml.cs +++ b/src/Ryujinx/UI/Windows/MainWindow.axaml.cs @@ -164,7 +164,7 @@ namespace Ryujinx.Ava.UI.Windows }); } - private void ApplicationLibrary_LdnGameDataReceived(object sender, LdnGameDataReceivedEventArgs e) + private void ApplicationLibrary_LdnGameDataReceived(LdnGameDataReceivedEventArgs e) { Dispatcher.UIThread.Post(() => { @@ -408,13 +408,10 @@ namespace Ryujinx.Ava.UI.Windows { StatusBarView.VolumeStatus.Click += VolumeStatus_CheckedChanged; + ApplicationGrid.DataContext = ApplicationList.DataContext = ViewModel; + ApplicationGrid.ApplicationOpened += Application_Opened; - - ApplicationGrid.DataContext = ViewModel; - ApplicationList.ApplicationOpened += Application_Opened; - - ApplicationList.DataContext = ViewModel; } private void SetWindowSizePosition() diff --git a/src/Ryujinx/Utilities/AppLibrary/ApplicationLibrary.cs b/src/Ryujinx/Utilities/AppLibrary/ApplicationLibrary.cs index e79602eaf..41bcff129 100644 --- a/src/Ryujinx/Utilities/AppLibrary/ApplicationLibrary.cs +++ b/src/Ryujinx/Utilities/AppLibrary/ApplicationLibrary.cs @@ -45,7 +45,7 @@ namespace Ryujinx.Ava.Utilities.AppLibrary public const string DefaultLanPlayWebHost = "ryuldnweb.vudjun.com"; public Language DesiredLanguage { get; set; } public event EventHandler ApplicationCountUpdated; - public event EventHandler LdnGameDataReceived; + public event Action LdnGameDataReceived; public readonly IObservableCache Applications; public readonly IObservableCache<(TitleUpdateModel TitleUpdate, bool IsSelected), TitleUpdateModel> TitleUpdates; @@ -779,7 +779,7 @@ namespace Ryujinx.Ava.Utilities.AppLibrary using HttpClient httpClient = new HttpClient(); string ldnGameDataArrayString = await httpClient.GetStringAsync($"https://{ldnWebHost}/api/public_games"); ldnGameDataArray = JsonHelper.Deserialize(ldnGameDataArrayString, _ldnDataSerializerContext.IEnumerableLdnGameData); - LdnGameDataReceived?.Invoke(null, new LdnGameDataReceivedEventArgs + LdnGameDataReceived?.Invoke(new LdnGameDataReceivedEventArgs { LdnData = ldnGameDataArray }); @@ -787,7 +787,7 @@ namespace Ryujinx.Ava.Utilities.AppLibrary catch (Exception ex) { Logger.Warning?.Print(LogClass.Application, $"Failed to fetch the public games JSON from the API. Player and game count in the game list will be unavailable.\n{ex.Message}"); - LdnGameDataReceived?.Invoke(null, new LdnGameDataReceivedEventArgs + LdnGameDataReceived?.Invoke(new LdnGameDataReceivedEventArgs { LdnData = Array.Empty() }); @@ -795,7 +795,7 @@ namespace Ryujinx.Ava.Utilities.AppLibrary } else { - LdnGameDataReceived?.Invoke(null, new LdnGameDataReceivedEventArgs + LdnGameDataReceived?.Invoke(new LdnGameDataReceivedEventArgs { LdnData = Array.Empty() }); From d4a7ee25eaf04a99c81ac56e3311beefa4a1aa5b Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Fri, 10 Jan 2025 23:23:05 -0600 Subject: [PATCH 55/69] misc: chore: use ObservableProperty on input view models --- .../Input/ControllerInputViewModel.cs | 25 +---- .../UI/ViewModels/Input/InputViewModel.cs | 30 +----- .../Input/KeyboardInputViewModel.cs | 25 +---- .../ViewModels/Input/MotionInputViewModel.cs | 92 +++---------------- .../ViewModels/Input/RumbleInputViewModel.cs | 26 +----- 5 files changed, 28 insertions(+), 170 deletions(-) diff --git a/src/Ryujinx/UI/ViewModels/Input/ControllerInputViewModel.cs b/src/Ryujinx/UI/ViewModels/Input/ControllerInputViewModel.cs index 6ee79a371..482fe2981 100644 --- a/src/Ryujinx/UI/ViewModels/Input/ControllerInputViewModel.cs +++ b/src/Ryujinx/UI/ViewModels/Input/ControllerInputViewModel.cs @@ -1,21 +1,13 @@ using Avalonia.Svg.Skia; +using CommunityToolkit.Mvvm.ComponentModel; using Ryujinx.Ava.UI.Models.Input; using Ryujinx.Ava.UI.Views.Input; namespace Ryujinx.Ava.UI.ViewModels.Input { - public class ControllerInputViewModel : BaseModel + public partial class ControllerInputViewModel : BaseModel { - private GamepadInputConfig _config; - public GamepadInputConfig Config - { - get => _config; - set - { - _config = value; - OnPropertyChanged(); - } - } + [ObservableProperty] private GamepadInputConfig _config; private bool _isLeft; public bool IsLeft @@ -43,16 +35,7 @@ namespace Ryujinx.Ava.UI.ViewModels.Input public bool HasSides => IsLeft ^ IsRight; - private SvgImage _image; - public SvgImage Image - { - get => _image; - set - { - _image = value; - OnPropertyChanged(); - } - } + [ObservableProperty] private SvgImage _image; public readonly InputViewModel ParentModel; diff --git a/src/Ryujinx/UI/ViewModels/Input/InputViewModel.cs b/src/Ryujinx/UI/ViewModels/Input/InputViewModel.cs index 16f8e46fa..05f479d9f 100644 --- a/src/Ryujinx/UI/ViewModels/Input/InputViewModel.cs +++ b/src/Ryujinx/UI/ViewModels/Input/InputViewModel.cs @@ -1,9 +1,8 @@ -using Avalonia; using Avalonia.Collections; using Avalonia.Controls; -using Avalonia.Controls.ApplicationLifetimes; using Avalonia.Svg.Skia; using Avalonia.Threading; +using CommunityToolkit.Mvvm.ComponentModel; using Ryujinx.Ava.Common.Locale; using Ryujinx.Ava.Input; using Ryujinx.Ava.UI.Helpers; @@ -32,7 +31,7 @@ using Key = Ryujinx.Common.Configuration.Hid.Key; namespace Ryujinx.Ava.UI.ViewModels.Input { - public class InputViewModel : BaseModel, IDisposable + public partial class InputViewModel : BaseModel, IDisposable { private const string Disabled = "disabled"; private const string ProControllerResource = "Ryujinx/Assets/Icons/Controller_ProCon.svg"; @@ -48,8 +47,8 @@ namespace Ryujinx.Ava.UI.ViewModels.Input private int _controller; private string _controllerImage; private int _device; - private object _configViewModel; - private string _profileName; + [ObservableProperty] private object _configViewModel; + [ObservableProperty] private string _profileName; private bool _isLoaded; private static readonly InputConfigJsonSerializerContext _serializerContext = new(JsonHelper.GetDefaultSerializerOptions()); @@ -73,17 +72,6 @@ namespace Ryujinx.Ava.UI.ViewModels.Input public bool IsModified { get; set; } public event Action NotifyChangesEvent; - public object ConfigViewModel - { - get => _configViewModel; - set - { - _configViewModel = value; - - OnPropertyChanged(); - } - } - public PlayerIndex PlayerIdChoose { get => _playerIdChoose; @@ -200,16 +188,6 @@ namespace Ryujinx.Ava.UI.ViewModels.Input } } - public string ProfileName - { - get => _profileName; set - { - _profileName = value; - - OnPropertyChanged(); - } - } - public int Device { get => _device; diff --git a/src/Ryujinx/UI/ViewModels/Input/KeyboardInputViewModel.cs b/src/Ryujinx/UI/ViewModels/Input/KeyboardInputViewModel.cs index 0b530eb09..5ff9bb578 100644 --- a/src/Ryujinx/UI/ViewModels/Input/KeyboardInputViewModel.cs +++ b/src/Ryujinx/UI/ViewModels/Input/KeyboardInputViewModel.cs @@ -1,20 +1,12 @@ using Avalonia.Svg.Skia; +using CommunityToolkit.Mvvm.ComponentModel; using Ryujinx.Ava.UI.Models.Input; namespace Ryujinx.Ava.UI.ViewModels.Input { - public class KeyboardInputViewModel : BaseModel + public partial class KeyboardInputViewModel : BaseModel { - private KeyboardInputConfig _config; - public KeyboardInputConfig Config - { - get => _config; - set - { - _config = value; - OnPropertyChanged(); - } - } + [ObservableProperty] private KeyboardInputConfig _config; private bool _isLeft; public bool IsLeft @@ -42,16 +34,7 @@ namespace Ryujinx.Ava.UI.ViewModels.Input public bool HasSides => IsLeft ^ IsRight; - private SvgImage _image; - public SvgImage Image - { - get => _image; - set - { - _image = value; - OnPropertyChanged(); - } - } + [ObservableProperty] private SvgImage _image; public readonly InputViewModel ParentModel; diff --git a/src/Ryujinx/UI/ViewModels/Input/MotionInputViewModel.cs b/src/Ryujinx/UI/ViewModels/Input/MotionInputViewModel.cs index c9ed8f2d4..7538c0f16 100644 --- a/src/Ryujinx/UI/ViewModels/Input/MotionInputViewModel.cs +++ b/src/Ryujinx/UI/ViewModels/Input/MotionInputViewModel.cs @@ -1,93 +1,23 @@ +using CommunityToolkit.Mvvm.ComponentModel; + namespace Ryujinx.Ava.UI.ViewModels.Input { - public class MotionInputViewModel : BaseModel + public partial class MotionInputViewModel : BaseModel { - private int _slot; - public int Slot - { - get => _slot; - set - { - _slot = value; - OnPropertyChanged(); - } - } + [ObservableProperty] private int _slot; - private int _altSlot; - public int AltSlot - { - get => _altSlot; - set - { - _altSlot = value; - OnPropertyChanged(); - } - } + [ObservableProperty] private int _altSlot; - private string _dsuServerHost; - public string DsuServerHost - { - get => _dsuServerHost; - set - { - _dsuServerHost = value; - OnPropertyChanged(); - } - } + [ObservableProperty] private string _dsuServerHost; - private int _dsuServerPort; - public int DsuServerPort - { - get => _dsuServerPort; - set - { - _dsuServerPort = value; - OnPropertyChanged(); - } - } + [ObservableProperty] private int _dsuServerPort; - private bool _mirrorInput; - public bool MirrorInput - { - get => _mirrorInput; - set - { - _mirrorInput = value; - OnPropertyChanged(); - } - } + [ObservableProperty] private bool _mirrorInput; - private int _sensitivity; - public int Sensitivity - { - get => _sensitivity; - set - { - _sensitivity = value; - OnPropertyChanged(); - } - } + [ObservableProperty] private int _sensitivity; - private double _gryoDeadzone; - public double GyroDeadzone - { - get => _gryoDeadzone; - set - { - _gryoDeadzone = value; - OnPropertyChanged(); - } - } + [ObservableProperty] private double _gryoDeadzone; - private bool _enableCemuHookMotion; - public bool EnableCemuHookMotion - { - get => _enableCemuHookMotion; - set - { - _enableCemuHookMotion = value; - OnPropertyChanged(); - } - } + [ObservableProperty] private bool _enableCemuHookMotion; } } diff --git a/src/Ryujinx/UI/ViewModels/Input/RumbleInputViewModel.cs b/src/Ryujinx/UI/ViewModels/Input/RumbleInputViewModel.cs index 8ad33cf4c..c4158fced 100644 --- a/src/Ryujinx/UI/ViewModels/Input/RumbleInputViewModel.cs +++ b/src/Ryujinx/UI/ViewModels/Input/RumbleInputViewModel.cs @@ -1,27 +1,11 @@ +using CommunityToolkit.Mvvm.ComponentModel; + namespace Ryujinx.Ava.UI.ViewModels.Input { - public class RumbleInputViewModel : BaseModel + public partial class RumbleInputViewModel : BaseModel { - private float _strongRumble; - public float StrongRumble - { - get => _strongRumble; - set - { - _strongRumble = value; - OnPropertyChanged(); - } - } + [ObservableProperty] private float _strongRumble; - private float _weakRumble; - public float WeakRumble - { - get => _weakRumble; - set - { - _weakRumble = value; - OnPropertyChanged(); - } - } + [ObservableProperty] private float _weakRumble; } } From 41c8fd8194076a3dd82a21ff98a905d3eb728276 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Fri, 10 Jan 2025 23:23:53 -0600 Subject: [PATCH 56/69] misc: chore: lol this field was misspelled --- src/Ryujinx/UI/ViewModels/Input/MotionInputViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ryujinx/UI/ViewModels/Input/MotionInputViewModel.cs b/src/Ryujinx/UI/ViewModels/Input/MotionInputViewModel.cs index 7538c0f16..ba8686831 100644 --- a/src/Ryujinx/UI/ViewModels/Input/MotionInputViewModel.cs +++ b/src/Ryujinx/UI/ViewModels/Input/MotionInputViewModel.cs @@ -16,7 +16,7 @@ namespace Ryujinx.Ava.UI.ViewModels.Input [ObservableProperty] private int _sensitivity; - [ObservableProperty] private double _gryoDeadzone; + [ObservableProperty] private double _gyroDeadzone; [ObservableProperty] private bool _enableCemuHookMotion; } From c5091f499e0c7b493017846a7d92120dafde6da3 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Sat, 11 Jan 2025 00:38:32 -0600 Subject: [PATCH 57/69] docs: compat: The House of the Dead: Remake Playable --- docs/compatibility.csv | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/compatibility.csv b/docs/compatibility.csv index f116b4474..239e733c9 100644 --- a/docs/compatibility.csv +++ b/docs/compatibility.csv @@ -3420,3 +3420,4 @@ 0100936018EB4000,"牧場物語 Welcome!ワンダフルライフ",status-ingame;crash,ingame,2023-04-25 19:43:52.000 0100F4401940A000,"超探偵事件簿 レインコード (Master Detective Archives: Rain Code)",status-ingame;crash,ingame,2024-02-12 20:58:31.000 010064801A01C000,"超次元ゲイム ネプテューヌ GameMaker R:Evolution",status-nothing;crash,nothing,2023-10-30 22:37:40.000 +010088401495E000,"The House of the Dead: Remake",status-playable,playable,2025-01-11 00:36:01 From 4e0aafd005b2567544d6a1e66a90ba49d021d148 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Sat, 11 Jan 2025 01:18:10 -0600 Subject: [PATCH 58/69] docs: compat: Trim redundant/duplicate information to save space --- docs/compatibility.csv | 6844 ++++++++++++++++++++-------------------- 1 file changed, 3422 insertions(+), 3422 deletions(-) diff --git a/docs/compatibility.csv b/docs/compatibility.csv index 239e733c9..b12c7e500 100644 --- a/docs/compatibility.csv +++ b/docs/compatibility.csv @@ -1,3423 +1,3423 @@ "title_id","game_name","labels","status","last_updated" -010099F00EF3E000,"-KLAUS-",nvdec;status-playable,playable,2020-06-27 13:27:30.000 -0100BA9014A02000,".hack//G.U. Last Recode",deadlock;status-boots,boots,2022-03-12 19:15:47.000 -010098800C4B0000,"'n Verlore Verstand",slow;status-ingame,ingame,2020-12-10 18:00:28.000 -01009A500E3DA000,"'n Verlore Verstand - Demo",status-playable,playable,2021-02-09 00:13:32.000 -0100A5D01174C000,"/Connection Haunted ",slow;status-playable,playable,2020-12-10 18:57:14.000 -01001E500F7FC000,"#Funtime",status-playable,playable,2020-12-10 16:54:35.000 -01000E50134A4000,"#Halloween, Super Puzzles Dream",nvdec;status-playable,playable,2020-12-10 20:43:58.000 -01004D100C510000,"#KILLALLZOMBIES",slow;status-playable,playable,2020-12-16 01:50:25.000 -0100325012C12000,"#NoLimitFantasy, Super Puzzles Dream",nvdec;status-playable,playable,2020-12-12 17:21:32.000 -01005D400E5C8000,"#RaceDieRun",status-playable,playable,2020-07-04 20:23:16.000 -01003DB011AE8000,"#womenUp, Super Puzzles Dream",status-playable,playable,2020-12-12 16:57:25.000 -0100D87012A14000,"#womenUp, Super Puzzles Dream Demo",nvdec;status-playable,playable,2021-02-09 00:03:31.000 -01000320000CC000,"1-2-Switch™",services;status-playable,playable,2022-02-18 14:44:03.000 -01004D1007926000,"10 Second Run RETURNS",gpu;status-ingame,ingame,2022-07-17 13:06:18.000 -0100DC000A472000,"10 Second Run RETURNS Demo",gpu;status-ingame,ingame,2021-02-09 00:17:18.000 -0100D82015774000,"112 Operator",status-playable;nvdec,playable,2022-11-13 22:42:50.000 -010051E012302000,"112th Seed",status-playable,playable,2020-10-03 10:32:38.000 -01007F600D1B8000,"12 is Better Than 6",status-playable,playable,2021-02-22 16:10:12.000 -0100B1A010014000,"12 Labours of Hercules II: The Cretan Bull",cpu;status-nothing;32-bit;crash,nothing,2022-12-07 13:43:10.000 -0100A840047C2000,"12 orbits",status-playable,playable,2020-05-28 16:13:26.000 -01003FC01670C000,"13 Sentinels: Aegis Rim",slow;status-ingame,ingame,2024-06-10 20:33:38.000 -0100C54015002000,"13 Sentinels: Aegis Rim Demo",status-playable;demo,playable,2022-04-13 14:15:48.000 -01007E600EEE6000,"140",status-playable,playable,2020-08-05 20:01:33.000 -0100B94013D28000,"16-Bit Soccer Demo",status-playable,playable,2021-02-09 00:23:07.000 -01005CA0099AA000,"1917 - The Alien Invasion DX",status-playable,playable,2021-01-08 22:11:16.000 -0100829010F4A000,"1971 Project Helios",status-playable,playable,2021-04-14 13:50:19.000 -0100D1000B18C000,"1979 Revolution: Black Friday",nvdec;status-playable,playable,2021-02-21 21:03:43.000 -01007BB00FC8A000,"198X",status-playable,playable,2020-08-07 13:24:38.000 -010075601150A000,"1993 Shenandoah",status-playable,playable,2020-10-24 13:55:42.000 -0100148012550000,"1993 Shenandoah Demo",status-playable,playable,2021-02-09 00:43:43.000 -010096500EA94000,"2048 Battles",status-playable,playable,2020-12-12 14:21:25.000 -010024C0067C4000,"2064: Read Only Memories INTEGRAL",deadlock;status-menus,menus,2020-05-28 16:53:58.000 -0100749009844000,"20XX",gpu;status-ingame,ingame,2023-08-14 09:41:44.000 -01007550131EE000,"2URVIVE",status-playable,playable,2022-11-17 13:49:37.000 -0100E20012886000,"2weistein – The Curse of the Red Dragon",status-playable;nvdec;UE4,playable,2022-11-18 14:47:07.000 -0100DAC013D0A000,"30 in 1 game collection vol. 2",status-playable;online-broken,playable,2022-10-15 17:22:27.000 -010056D00E234000,"30-in-1 Game Collection",status-playable;online-broken,playable,2022-10-15 17:47:09.000 -0100FB5010D2E000,"3000th Duel",status-playable,playable,2022-09-21 17:12:08.000 -01003670066DE000,"36 Fragments of Midnight",status-playable,playable,2020-05-28 15:12:59.000 -0100AF400C4CE000,"39 Days to Mars",status-playable,playable,2021-02-21 22:12:46.000 -010010C013F2A000,"3D Arcade Fishing",status-playable,playable,2022-10-25 21:50:51.000 -01006DA00707C000,"3D MiniGolf",status-playable,playable,2021-01-06 09:22:11.000 -01006890126E4000,"4x4 Dirt Track",status-playable,playable,2020-12-12 21:41:42.000 -010010100FF14000,"60 Parsecs!",status-playable,playable,2022-09-17 11:01:17.000 -0100969005E98000,"60 Seconds!",services;status-ingame,ingame,2021-11-30 01:04:14.000 -0100ECF008474000,"6180 the moon",status-playable,playable,2020-05-28 15:39:24.000 -0100EFE00E964000,"64.0",status-playable,playable,2020-12-12 21:31:58.000 -0100DA900B67A000,"7 Billion Humans",32-bit;status-playable,playable,2020-12-17 21:04:58.000 -01004B200DF76000,"7th Sector",nvdec;status-playable,playable,2020-08-10 14:22:14.000 -0100E9F00B882000,"8-BIT ADV STEINS;GATE",audio;status-ingame,ingame,2020-01-12 15:05:06.000 -0100B0700E944000,"80 DAYS",status-playable,playable,2020-06-22 21:43:01.000 -01006B1011B9E000,"80's OVERDRIVE",status-playable,playable,2020-10-16 14:33:32.000 -010006A0042F0000,"88 Heroes - 98 Heroes Edition",status-playable,playable,2020-05-28 14:13:02.000 -010005E00E2BC000,"9 Monkeys of Shaolin",UE4;gpu;slow;status-ingame,ingame,2020-11-17 11:58:43.000 -0100C5F012E3E000,"9 Monkeys of Shaolin Demo",UE4;gpu;nvdec;status-ingame,ingame,2021-02-09 01:03:30.000 -01000360107BC000,"911 Operator Deluxe Edition",status-playable,playable,2020-07-14 13:57:44.000 -0100B2C00682E000,"99Vidas - Definitive Edition",online;status-playable,playable,2020-10-29 13:00:40.000 -010023500C2F0000,"99Vidas Demo",status-playable,playable,2021-02-09 12:51:31.000 -0100DB00117BA000,"9th Dawn III",status-playable,playable,2020-12-12 22:27:27.000 -010096A00CC80000,"A Ch'ti Bundle",status-playable;nvdec,playable,2022-10-04 12:48:44.000 -010021D00D53E000,"A Dark Room",gpu;status-ingame,ingame,2020-12-14 16:14:28.000 -010026B006802000,"A Duel Hand Disaster: Trackher",status-playable;nvdec;online-working,playable,2022-09-04 14:24:55.000 -0100582012B90000,"A Duel Hand Disaster: Trackher DEMO",crash;demo;nvdec;status-ingame,ingame,2021-03-24 18:45:27.000 -01006CE0134E6000,"A Frog Game",status-playable,playable,2020-12-14 16:09:53.000 -010056E00853A000,"A Hat in Time",status-playable,playable,2024-06-25 19:52:44.000 -01009E1011EC4000,"A HERO AND A GARDEN",status-playable,playable,2022-12-05 16:37:47.000 -01005EF00CFDA000,"A Knight's Quest",status-playable;UE4,playable,2022-09-12 20:44:20.000 -01008DD006C52000,"A Magical High School Girl",status-playable,playable,2022-07-19 14:40:50.000 -01004890117B2000,"A Short Hike",status-playable,playable,2020-10-15 00:19:58.000 -0100F0901006C000,"A Sound Plan",crash;status-boots,boots,2020-12-14 16:46:21.000 -01007DD011C4A000,"A Summer with the Shiba Inu",status-playable,playable,2021-06-10 20:51:16.000 -0100A3E010E56000,"A-Train: All Aboard! Tourism",nvdec;status-playable,playable,2021-04-06 17:48:19.000 -010097A00CC0A000,"Aaero: Complete Edition",status-playable;nvdec,playable,2022-07-19 14:49:55.000 -0100EFC010398000,"Aborigenus",status-playable,playable,2020-08-05 19:47:24.000 -0100A5B010A66000,"Absolute Drift",status-playable,playable,2020-12-10 14:02:44.000 -0100C1300BBC6000,"ABZÛ",status-playable;UE4,playable,2022-07-19 15:02:52.000 -01003C400871E000,"ACA NEOGEO 2020 SUPER BASEBALL",online;status-playable,playable,2021-04-12 13:23:51.000 -0100FC000AFC6000,"ACA NEOGEO 3 COUNT BOUT",online;status-playable,playable,2021-04-12 13:16:42.000 -0100AC40038F4000,"ACA NEOGEO AERO FIGHTERS 2",online;status-playable,playable,2021-04-08 15:44:09.000 -0100B91008780000,"ACA NEOGEO AERO FIGHTERS 3",online;status-playable,playable,2021-04-12 13:11:17.000 -0100B4800AFBA000,"ACA NEOGEO AGGRESSORS OF DARK KOMBAT",online;status-playable,playable,2021-04-01 22:48:01.000 -01003FE00A2F6000,"ACA NEOGEO BASEBALL STARS PROFESSIONAL",online;status-playable,playable,2021-04-01 21:23:05.000 -0100DFC003398000,"ACA NEOGEO BLAZING STAR",crash;services;status-menus,menus,2020-05-26 17:29:02.000 -0100D2400AFB0000,"ACA NEOGEO CROSSED SWORDS",online;status-playable,playable,2021-04-01 20:42:59.000 -0100EE6002B48000,"ACA NEOGEO FATAL FURY",online;status-playable,playable,2021-04-01 20:36:23.000 -0100EEA00AFB2000,"ACA NEOGEO FOOTBALL FRENZY",status-playable,playable,2021-03-29 20:12:12.000 -0100CB2001DB8000,"ACA NEOGEO GAROU: MARK OF THE WOLVES",online;status-playable,playable,2021-04-01 20:31:10.000 -01005D700A2F8000,"ACA NEOGEO GHOST PILOTS",online;status-playable,playable,2021-04-01 20:26:45.000 -01000D10038E6000,"ACA NEOGEO LAST RESORT",online;status-playable,playable,2021-04-01 19:51:22.000 -0100A2900AFA4000,"ACA NEOGEO LEAGUE BOWLING",crash;services;status-menus,menus,2020-05-26 17:11:04.000 -0100A050038F2000,"ACA NEOGEO MAGICAL DROP II",crash;services;status-menus,menus,2020-05-26 16:48:24.000 -01007920038F6000,"ACA NEOGEO MAGICIAN LORD",online;status-playable,playable,2021-04-01 19:33:26.000 -0100EBE002B3E000,"ACA NEOGEO METAL SLUG",status-playable,playable,2021-02-21 13:56:48.000 -010086300486E000,"ACA NEOGEO METAL SLUG 2",online;status-playable,playable,2021-04-01 19:25:52.000 -0100BA8001DC6000,"ACA NEOGEO METAL SLUG 3",crash;services;status-menus,menus,2020-05-26 16:32:45.000 -01009CE00AFAE000,"ACA NEOGEO METAL SLUG 4",online;status-playable,playable,2021-04-01 18:12:18.000 -01008FD004DB6000,"ACA NEOGEO METAL SLUG X",crash;services;status-menus,menus,2020-05-26 14:07:20.000 -010038F00AFA0000,"ACA NEOGEO Money Puzzle Exchanger",online;status-playable,playable,2021-04-01 17:59:56.000 -01002E70032E8000,"ACA NEOGEO NEO TURF MASTERS",status-playable,playable,2021-02-21 15:12:01.000 -010052A00A306000,"ACA NEOGEO NINJA COMBAT",status-playable,playable,2021-03-29 21:17:28.000 -01007E800AFB6000,"ACA NEOGEO NINJA COMMANDO",online;status-playable,playable,2021-04-01 17:28:18.000 -01003A5001DBA000,"ACA NEOGEO OVER TOP",status-playable,playable,2021-02-21 13:16:25.000 -010088500878C000,"ACA NEOGEO REAL BOUT FATAL FURY SPECIAL",online;status-playable,playable,2021-04-01 17:18:27.000 -01005C9002B42000,"ACA NEOGEO SAMURAI SHODOWN",online;status-playable,playable,2021-04-01 17:11:35.000 -010047F001DBC000,"ACA NEOGEO SAMURAI SHODOWN IV",online;status-playable,playable,2021-04-12 12:58:54.000 -010049F00AFE8000,"ACA NEOGEO SAMURAI SHODOWN V SPECIAL",online;status-playable,playable,2021-04-10 18:07:13.000 -01009B300872A000,"ACA NEOGEO SENGOKU 2",online;status-playable,playable,2021-04-10 17:36:44.000 -01008D000877C000,"ACA NEOGEO SENGOKU 3",online;status-playable,playable,2021-04-10 16:11:53.000 -01008A9001DC2000,"ACA NEOGEO SHOCK TROOPERS",crash;services;status-menus,menus,2020-05-26 15:29:34.000 -01007D1004DBA000,"ACA NEOGEO SPIN MASTER",online;status-playable,playable,2021-04-10 15:50:19.000 -010055A00A300000,"ACA NEOGEO SUPER SIDEKICKS 2",online;status-playable,playable,2021-04-10 16:05:58.000 -0100A4D00A308000,"ACA NEOGEO SUPER SIDEKICKS 3 : THE NEXT GLORY",online;status-playable,playable,2021-04-10 15:39:22.000 -0100EB2001DCC000,"ACA NEOGEO THE KING OF FIGHTERS '94",crash;services;status-menus,menus,2020-05-26 15:03:44.000 -01009DC001DB6000,"ACA NEOGEO THE KING OF FIGHTERS '95",status-playable,playable,2021-03-29 20:27:35.000 -01006F0004FB4000,"ACA NEOGEO THE KING OF FIGHTERS '96",online;status-playable,playable,2021-04-10 14:49:10.000 -0100170008728000,"ACA NEOGEO THE KING OF FIGHTERS '97",online;status-playable,playable,2021-04-10 14:43:27.000 -0100B42001DB4000,"ACA NEOGEO THE KING OF FIGHTERS '98",crash;services;status-menus,menus,2020-05-26 14:54:20.000 -0100583001DCA000,"ACA NEOGEO THE KING OF FIGHTERS '99",online;status-playable,playable,2021-04-10 14:36:56.000 -0100B97002B44000,"ACA NEOGEO THE KING OF FIGHTERS 2000",online;status-playable,playable,2021-04-10 15:24:35.000 -010048200AFC2000,"ACA NEOGEO THE KING OF FIGHTERS 2001",online;status-playable,playable,2021-04-10 15:16:23.000 -0100CFD00AFDE000,"ACA NEOGEO THE KING OF FIGHTERS 2002",online;status-playable,playable,2021-04-10 15:01:55.000 -0100EF100AFE6000,"ACA NEOGEO THE KING OF FIGHTERS 2003",online;status-playable,playable,2021-04-10 14:54:31.000 -0100699008792000,"ACA NEOGEO THE LAST BLADE 2",online;status-playable,playable,2021-04-10 14:31:54.000 -0100F7F00AFA2000,"ACA NEOGEO THE SUPER SPY",online;status-playable,playable,2021-04-10 14:26:33.000 -0100CEF001DC0000,"ACA NEOGEO WAKU WAKU 7",online;status-playable,playable,2021-04-10 14:20:52.000 -01009D4001DC4000,"ACA NEOGEO WORLD HEROES PERFECT",crash;services;status-menus,menus,2020-05-26 14:14:36.000 -01002E700AFC4000,"ACA NEOGEO ZUPAPA!",online;status-playable,playable,2021-03-25 20:07:33.000 -0100A9900CB5C000,"Access Denied",status-playable,playable,2022-07-19 15:25:10.000 -01007C50132C8000,"Ace Angler: Fishing Spirits",status-menus;crash,menus,2023-03-03 03:21:39.000 -010005501E68C000,"Ace Attorney Investigations Collection",status-playable,playable,2024-09-19 16:38:05.000 -010033401E68E000,"Ace Attorney Investigations Collection DEMO",status-playable,playable,2024-09-07 06:16:42.000 -010039301B7E0000,"Ace Combat 7 - Skies Unknown Deluxe Edition",gpu;status-ingame;UE4,ingame,2024-09-27 14:31:43.000 -0100FF1004D56000,"Ace of Seafood",status-playable,playable,2022-07-19 15:32:25.000 -0100B28003440000,"Aces of the Luftwaffe - Squadron",nvdec;slow;status-playable,playable,2020-05-27 12:29:42.000 -010054300D822000,"Aces of the Luftwaffe - Squadron Demo",nvdec;status-playable,playable,2021-02-09 13:12:28.000 -010079B00B3F4000,"Achtung! Cthulhu Tactics",status-playable,playable,2020-12-14 18:40:27.000 -0100DBC0081A4000,"ACORN Tactics",status-playable,playable,2021-02-22 12:57:40.000 -010043C010AEA000,"Across the Grooves",status-playable,playable,2020-06-27 12:29:51.000 -010039A010DA0000,"Active Neurons - Puzzle game",status-playable,playable,2021-01-27 21:31:21.000 -01000D1011EF0000,"Active Neurons 2",status-playable,playable,2022-10-07 16:21:42.000 -010031C0122B0000,"Active Neurons 2 Demo",status-playable,playable,2021-02-09 13:40:21.000 -0100EE1013E12000,"Active Neurons 3 - Wonders Of The World",status-playable,playable,2021-03-24 12:20:20.000 -0100CD40104DE000,"Actual Sunlight",gpu;status-ingame,ingame,2020-12-14 17:18:41.000 -0100C0C0040E4000,"Adam's Venture™: Origins",status-playable,playable,2021-03-04 18:43:57.000 -010029700EB76000,"Adrenaline Rush - Miami Drive",status-playable,playable,2020-12-12 22:49:50.000 -0100300012F2A000,"Advance Wars™ 1+2: Re-Boot Camp",status-playable,playable,2024-01-30 18:19:44.000 -010014B0130F2000,"Adventure Llama",status-playable,playable,2020-12-14 19:32:24.000 -0100C990102A0000,"Adventure Pinball Bundle",slow;status-playable,playable,2020-12-14 20:31:53.000 -0100C4E004406000,"Adventure Time: Pirates of the Enchiridion",status-playable;nvdec,playable,2022-07-21 21:49:01.000 -010021F00C1C0000,"Adventures of Bertram Fiddle Episode 2: A Bleaker Predicklement",nvdec;status-playable,playable,2021-02-22 14:56:37.000 -010072601233C000,"Adventures of Chris",status-playable,playable,2020-12-12 23:00:02.000 -0100A0A0136E8000,"Adventures of Chris Demo",status-playable,playable,2021-02-09 13:49:21.000 -01002B5012004000,"Adventures of Pip",nvdec;status-playable,playable,2020-12-12 22:11:55.000 -01008C901266E000,"ADVERSE",UE4;status-playable,playable,2021-04-26 14:32:51.000 -01008E6006502000,"Aegis Defenders",status-playable,playable,2021-02-22 13:29:33.000 -010064500AF72000,"Aegis Defenders demo",status-playable,playable,2021-02-09 14:04:17.000 -010001C011354000,"Aeolis Tournament",online;status-playable,playable,2020-12-12 22:02:14.000 -01006710122CE000,"Aeolis Tournament Demo",nvdec;status-playable,playable,2021-02-09 14:22:30.000 -0100A0400DDE0000,"AER Memories of Old",nvdec;status-playable,playable,2021-03-05 18:43:43.000 -0100E9B013D4A000,"Aerial_Knight's Never Yield",status-playable,playable,2022-10-25 22:05:00.000 -0100087012810000,"Aery - Broken Memories",status-playable,playable,2022-10-04 13:11:52.000 -01000A8015390000,"Aery - Calm Mind",status-playable,playable,2022-11-14 14:26:58.000 -0100875011D0C000,"Aery - Little Bird Adventure",status-playable,playable,2021-03-07 15:25:51.000 -010018E012914000,"Aery - Sky Castle",status-playable,playable,2022-10-21 17:58:49.000 -0100DF8014056000,"Aery – A Journey Beyond Time",status-playable,playable,2021-04-05 15:52:25.000 -01006C40086EA000,"AeternoBlade",nvdec;status-playable,playable,2020-12-14 20:06:48.000 -0100B1C00949A000,"AeternoBlade Demo",nvdec;status-playable,playable,2021-02-09 14:39:26.000 -01009D100EA28000,"AeternoBlade II",status-playable;online-broken;UE4;vulkan-backend-bug,playable,2022-09-12 21:11:18.000 -,"AeternoBlade II Demo Version",gpu;nvdec;status-ingame,ingame,2021-02-09 15:10:19.000 -01001B400D334000,"AFL Evolution 2",slow;status-playable;online-broken;UE4,playable,2022-12-07 12:45:56.000 -0100DB100BBCE000,"Afterparty",status-playable,playable,2022-09-22 12:23:19.000 -010087C011C4E000,"Agatha Christie - The ABC Murders",status-playable,playable,2020-10-27 17:08:23.000 -010093600A60C000,"Agatha Knife",status-playable,playable,2020-05-28 12:37:58.000 -010005400A45E000,"Agent A: A puzzle in disguise",status-playable,playable,2020-11-16 22:53:27.000 -01008E8012C02000,"Agent A: A puzzle in disguise (Demo)",status-playable,playable,2021-02-09 18:30:41.000 -0100E4700E040000,"Ages of Mages: The last keeper",status-playable;vulkan-backend-bug,playable,2022-10-04 11:44:05.000 -010004D00A9C0000,"Aggelos",gpu;status-ingame,ingame,2023-02-19 13:24:23.000 -010072600D21C000,"Agony",UE4;crash;status-boots,boots,2020-07-10 16:21:18.000 -010089B00D09C000,"AI: THE SOMNIUM FILES",status-playable;nvdec,playable,2022-09-04 14:45:06.000 -0100C1700FB34000,"AI: THE SOMNIUM FILES Demo",nvdec;status-playable,playable,2021-02-10 12:52:33.000 -01006E8011C1E000,"Ailment",status-playable,playable,2020-12-12 22:30:41.000 -0100C7600C7D6000,"Air Conflicts: Pacific Carriers",status-playable,playable,2021-01-04 10:52:50.000 -010005A00A4F4000,"Air Hockey",status-playable,playable,2020-05-28 16:44:37.000 -0100C9E00F54C000,"Air Missions: HIND",status-playable,playable,2020-12-13 10:16:45.000 -0100E95011FDC000,"Aircraft Evolution",nvdec;status-playable,playable,2021-06-14 13:30:18.000 -010010A00DB72000,"Airfield Mania Demo",services;status-boots;demo,boots,2022-04-10 03:43:02.000 -01003DD00BFEE000,"Airheart - Tales of broken Wings",status-playable,playable,2021-02-26 15:20:27.000 -01007F100DE52000,"Akane",status-playable;nvdec,playable,2022-07-21 00:12:18.000 -01009A800F0C8000,"Akash: Path of the Five",gpu;nvdec;status-ingame,ingame,2020-12-14 22:33:12.000 -010053100B0EA000,"Akihabara - Feel the Rhythm Remixed",status-playable,playable,2021-02-22 14:39:35.000 -0100D4C00EE0C000,"Akuarium",slow;status-playable,playable,2020-12-12 23:43:36.000 -010026E00FEBE000,"Akuto: Showdown",status-playable,playable,2020-08-04 19:43:27.000 -0100F5400AB6C000,"Alchemic Jousts",gpu;status-ingame,ingame,2022-12-08 15:06:28.000 -010001E00F75A000,"Alchemist's Castle",status-playable,playable,2020-12-12 23:54:08.000 -01004510110C4000,"Alder's Blood Prologue",crash;status-ingame,ingame,2021-02-09 19:03:03.000 -0100D740110C0000,"Alder's Blood: Definitive Edition",status-playable,playable,2020-08-28 15:15:23.000 -01000E000EEF8000,"Aldred Knight",services;status-playable,playable,2021-11-30 01:49:17.000 -010025D01221A000,"Alex Kidd in Miracle World DX",status-playable,playable,2022-11-14 15:01:34.000 -0100A2E00D0E0000,"Alien Cruise",status-playable,playable,2020-08-12 13:56:05.000 -0100C1500DBDE000,"Alien Escape",status-playable,playable,2020-06-03 23:43:18.000 -010075D00E8BA000,"Alien: Isolation",status-playable;nvdec;vulkan-backend-bug,playable,2022-09-17 11:48:41.000 -0100CBD012FB6000,"All Walls Must Fall",status-playable;UE4,playable,2022-10-15 19:16:30.000 -0100C1F00A9B8000,"All-Star Fruit Racing",status-playable;nvdec;UE4,playable,2022-07-21 00:35:37.000 -0100AC501122A000,"Alluris",gpu;status-ingame;UE4,ingame,2023-08-02 23:13:50.000 -010063000C3CE000,"Almightree: The Last Dreamer",slow;status-playable,playable,2020-12-15 13:59:03.000 -010083E010AE8000,"Along the Edge",status-playable,playable,2020-11-18 15:00:07.000 -010083E013188000,"Alpaca Ball: Allstars",nvdec;status-playable,playable,2020-12-11 12:26:29.000 -01000A800B998000,"ALPHA",status-playable,playable,2020-12-13 12:17:45.000 -010053B0123DC000,"Alphaset by POWGI",status-playable,playable,2020-12-15 15:15:15.000 -01003E700FD66000,"Alt-Frequencies",status-playable,playable,2020-12-15 19:01:33.000 -01004DB00935A000,"Alteric",status-playable,playable,2020-11-08 13:53:22.000 -0100C3D00D1D4000,"Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz",status-playable,playable,2020-08-31 14:17:42.000 -0100A8A00D27E000,"Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz Trial version",status-playable,playable,2021-02-10 13:33:59.000 -010045201487C000,"Aluna: Sentinel of the Shards",status-playable;nvdec,playable,2022-10-25 22:17:03.000 -01004C200B0B4000,"Alwa's Awakening",status-playable,playable,2020-10-13 11:52:01.000 -01001B7012214000,"Alwa's Legacy",status-playable,playable,2020-12-13 13:00:57.000 -010002B00C534000,"American Fugitive",nvdec;status-playable,playable,2021-01-04 20:45:11.000 -010089D00A3FA000,"American Ninja Warrior: Challenge",nvdec;status-playable,playable,2021-06-09 13:11:17.000 -01003CC00D0BE000,"Amnesia: Collection",status-playable,playable,2022-10-04 13:36:15.000 -010041D00DEB2000,"Amoeba Battle - Microscopic RTS Action",status-playable,playable,2021-05-06 13:33:41.000 -010046500C8D2000,"Among the Sleep - Enhanced Edition",nvdec;status-playable,playable,2021-06-03 15:06:25.000 -0100B0C013912000,"Among Us",status-menus;online;ldn-broken,menus,2021-09-22 15:20:17.000 -010050900E1C6000,"Anarcute",status-playable,playable,2021-02-22 13:17:59.000 -01009EE0111CC000,"Ancestors Legacy",status-playable;nvdec;UE4,playable,2022-10-01 12:25:36.000 -010021700BC56000,"Ancient Rush 2",UE4;crash;status-menus,menus,2020-07-14 14:58:47.000 -0100AE000AEBC000,"Angels of Death",nvdec;status-playable,playable,2021-02-22 14:17:15.000 -010001E00A5F6000,"AngerForce: Reloaded for Nintendo Switch",status-playable,playable,2022-07-21 10:37:17.000 -0100F3500D05E000,"Angry Bunnies: Colossal Carrot Crusade",status-playable;online-broken,playable,2022-09-04 14:53:26.000 -010084500C7DC000,"Angry Video Game Nerd I & II Deluxe",crash;status-ingame,ingame,2020-12-12 23:59:54.000 -0100706005B6A000,"Anima: Gate of Memories",nvdec;status-playable,playable,2021-06-16 18:13:18.000 -010033F00B3FA000,"Anima: Gate of Memories - Arcane Edition",nvdec;status-playable,playable,2021-01-26 16:55:51.000 -01007A400B3F8000,"Anima: Gate of Memories - The Nameless Chronicles",status-playable,playable,2021-06-14 14:33:06.000 -0100F38011CFE000,"Animal Crossing: New Horizons Island Transfer Tool",services;status-ingame;Needs Update;Incomplete,ingame,2022-12-07 13:51:19.000 -01006F8002326000,"Animal Crossing™: New Horizons",gpu;status-ingame;crash;nvdec;online-broken;ldn-works;mac-bug,ingame,2024-09-23 13:31:49.000 -010019500E642000,"Animal Fight Club",gpu;status-ingame,ingame,2020-12-13 13:13:33.000 -01002F4011A8E000,"Animal Fun for Toddlers and Kids",services;status-boots,boots,2020-12-15 16:45:29.000 -010035500CA0E000,"Animal Hunter Z",status-playable,playable,2020-12-13 12:50:35.000 -010033C0121DC000,"Animal Pairs - Matching & Concentration Game for Toddlers & Kids",services;status-boots,boots,2021-11-29 23:43:14.000 -010065B009B3A000,"Animal Rivals: Nintendo Switch Edition",status-playable,playable,2021-02-22 14:02:42.000 -0100EFE009424000,"Animal Super Squad",UE4;status-playable,playable,2021-04-23 20:50:50.000 -0100A16010966000,"Animal Up!",status-playable,playable,2020-12-13 15:39:02.000 -010020D01AD24000,"ANIMAL WELL",status-playable,playable,2024-05-22 18:01:49.000 -0100451012492000,"Animals for Toddlers",services;status-boots,boots,2020-12-15 17:27:27.000 -010098600CF06000,"Animated Jigsaws Collection",nvdec;status-playable,playable,2020-12-15 15:58:34.000 -0100A1900B5B8000,"Animated Jigsaws: Beautiful Japanese Scenery Demo",nvdec;status-playable,playable,2021-02-10 13:49:56.000 -010062500EB84000,"Anime Studio Story",status-playable,playable,2020-12-15 18:14:05.000 -01002B300EB86000,"Anime Studio Story Demo",status-playable,playable,2021-02-10 14:50:39.000 -010097600C322000,"ANIMUS",status-playable,playable,2020-12-13 15:11:47.000 -0100E5A00FD38000,"ANIMUS: Harbinger",status-playable,playable,2022-09-13 22:09:20.000 -010055500CCD2000,"Ankh Guardian - Treasure of the Demon's Temple",status-playable,playable,2020-12-13 15:55:49.000 -01009E600D78C000,"Anode",status-playable,playable,2020-12-15 17:18:58.000 -0100CB9018F5A000,"Another Code™: Recollection",gpu;status-ingame;crash,ingame,2024-09-06 05:58:52.000 -01001A900D312000,"Another Sight",UE4;gpu;nvdec;status-ingame,ingame,2020-12-03 16:49:59.000 -01003C300AAAE000,"Another World",slow;status-playable,playable,2022-07-21 10:42:38.000 -01000FD00DF78000,"AnShi",status-playable;nvdec;UE4,playable,2022-10-21 19:37:01.000 -010054C00D842000,"Anthill",services;status-menus;nvdec,menus,2021-11-18 09:25:25.000 -0100596011E20000,"Anti Hero Bundle",status-playable;nvdec,playable,2022-10-21 20:10:30.000 -0100016007154000,"Antiquia Lost",status-playable,playable,2020-05-28 11:57:32.000 -0100FE1011400000,"AntVentor",nvdec;status-playable,playable,2020-12-15 20:09:27.000 -0100FA100620C000,"Ao no Kanata no Four Rhythm",status-playable,playable,2022-07-21 10:50:42.000 -010047000E9AA000,"AO Tennis 2",status-playable;online-broken,playable,2022-09-17 12:05:07.000 -0100990011866000,"Aokana - Four Rhythms Across the Blue",status-playable,playable,2022-10-04 13:50:26.000 -01005B100C268000,"Ape Out",status-playable,playable,2022-09-26 19:04:47.000 -010054500E6D4000,"Ape Out DEMO",status-playable,playable,2021-02-10 14:33:06.000 -010051C003A08000,"Aperion Cyberstorm",status-playable,playable,2020-12-14 00:40:16.000 -01008CA00D71C000,"Aperion Cyberstorm [DEMO]",status-playable,playable,2021-02-10 15:53:21.000 -01008FC00C5BC000,"Apocalipsis Wormwood Edition",deadlock;status-menus,menus,2020-05-27 12:56:37.000 -010045D009EFC000,"Apocryph: an old-school shooter",gpu;status-ingame,ingame,2020-12-13 23:24:10.000 -010020D01B890000,"Apollo Justice: Ace Attorney Trilogy",status-playable,playable,2024-06-21 21:54:27.000 -01005F20116A0000,"Apparition",nvdec;slow;status-ingame,ingame,2020-12-13 23:57:04.000 -0100AC10085CE000,"AQUA KITTY UDX",online;status-playable,playable,2021-04-12 15:34:11.000 -0100FE0010886000,"Aqua Lungers",crash;status-ingame,ingame,2020-12-14 11:25:57.000 -0100D0D00516A000,"Aqua Moto Racing Utopia",status-playable,playable,2021-02-21 21:21:00.000 -010071800BA74000,"Aragami: Shadow Edition",nvdec;status-playable,playable,2021-02-21 20:33:23.000 -0100C7D00E6A0000,"Arc of Alchemist",status-playable;nvdec,playable,2022-10-07 19:15:54.000 -0100BE80097FA000,"Arcade Archives 10-Yard Fight",online;status-playable,playable,2021-03-25 21:26:41.000 -01005DD00BE08000,"Arcade Archives ALPHA MISSION",online;status-playable,playable,2021-04-15 09:20:43.000 -010083800DC70000,"Arcade Archives ALPINE SKI",online;status-playable,playable,2021-04-15 09:28:46.000 -0100A5700AF32000,"Arcade Archives ARGUS",online;status-playable,playable,2021-04-16 06:51:25.000 -010014F001DE2000,"Arcade Archives Armed F",online;status-playable,playable,2021-04-16 07:00:17.000 -0100BEC00C7A2000,"Arcade Archives ATHENA",online;status-playable,playable,2021-04-16 07:10:12.000 -0100426001DE4000,"Arcade Archives Atomic Robo-Kid",online;status-playable,playable,2021-04-16 07:20:29.000 -0100192009824000,"Arcade Archives BOMB JACK",online;status-playable,playable,2021-04-16 09:48:26.000 -010007A00980C000,"Arcade Archives City CONNECTION",online;status-playable,playable,2021-03-25 22:16:15.000 -0100EDC00E35A000,"Arcade Archives CLU CLU LAND",online;status-playable,playable,2021-04-16 10:00:42.000 -0100BB1001DD6000,"Arcade Archives CRAZY CLIMBER",online;status-playable,playable,2021-03-25 22:24:15.000 -0100E9E00B052000,"Arcade Archives DONKEY KONG",Needs Update;crash;services;status-menus,menus,2021-03-24 18:18:43.000 -0100F25001DD0000,"Arcade Archives DOUBLE DRAGON",online;status-playable,playable,2021-03-25 22:44:34.000 -01009E3001DDE000,"Arcade Archives DOUBLE DRAGON II The Revenge",online;status-playable,playable,2021-04-12 16:05:29.000 -0100496006EC8000,"Arcade Archives FRONT LINE",online;status-playable,playable,2021-05-05 14:10:49.000 -01009A4008A30000,"Arcade Archives HEROIC EPISODE",online;status-playable,playable,2021-03-25 23:01:26.000 -01007D200D3FC000,"Arcade Archives ICE CLIMBER",online;status-playable,playable,2021-05-05 14:18:34.000 -010049400C7A8000,"Arcade Archives IKARI WARRIORS",online;status-playable,playable,2021-05-05 14:24:46.000 -01000DB00980A000,"Arcade Archives Ikki",online;status-playable,playable,2021-03-25 23:11:28.000 -010008300C978000,"Arcade Archives IMAGE FIGHT",online;status-playable,playable,2021-05-05 14:31:21.000 -010010B008A36000,"Arcade Archives Kid Niki Radical Ninja",audio;status-ingame;online,ingame,2022-07-21 11:02:04.000 -0100E7C001DE0000,"Arcade Archives Kid's Horehore Daisakusen",online;status-playable,playable,2021-04-12 16:21:29.000 -0100F380105A4000,"Arcade Archives LIFE FORCE",status-playable,playable,2020-09-04 13:26:25.000 -0100755004608000,"Arcade Archives Mario Bros.",online;status-playable,playable,2021-03-26 11:31:32.000 -01000BE001DD8000,"Arcade Archives MOON CRESTA",online;status-playable,playable,2021-05-05 14:39:29.000 -01003000097FE000,"Arcade Archives MOON PATROL",online;status-playable,playable,2021-03-26 11:42:04.000 -01003EF00D3B4000,"Arcade Archives NINJA GAIDEN",audio;online;status-ingame,ingame,2021-04-12 16:27:53.000 -01002F300D2C6000,"Arcade Archives Ninja Spirit",online;status-playable,playable,2021-05-05 14:45:31.000 -0100369001DDC000,"Arcade Archives Ninja-Kid",online;status-playable,playable,2021-03-26 20:55:07.000 -01004A200BB48000,"Arcade Archives OMEGA FIGHTER",crash;services;status-menus,menus,2020-08-18 20:50:54.000 -01007F8010C66000,"Arcade Archives PLUS ALPHA",audio;status-ingame,ingame,2020-07-04 20:47:55.000 -0100A6E00D3F8000,"Arcade Archives POOYAN",online;status-playable,playable,2021-05-05 17:58:19.000 -01000D200C7A4000,"Arcade Archives PSYCHO SOLDIER",online;status-playable,playable,2021-05-05 18:02:19.000 -01001530097F8000,"Arcade Archives PUNCH-OUT!!",online;status-playable,playable,2021-03-25 22:10:55.000 -010081E001DD2000,"Arcade Archives Renegade",status-playable;online,playable,2022-07-21 11:45:40.000 -0100FBA00E35C000,"Arcade Archives ROAD FIGHTER",online;status-playable,playable,2021-05-05 18:09:17.000 -010060000BF7C000,"Arcade Archives ROUTE 16",online;status-playable,playable,2021-05-05 18:40:41.000 -0100C2D00981E000,"Arcade Archives RYGAR",online;status-playable,playable,2021-04-15 08:48:30.000 -01007A4009834000,"Arcade Archives Shusse Ozumo",online;status-playable,playable,2021-05-05 17:52:25.000 -010008F00B054000,"Arcade Archives Sky Skipper",online;status-playable,playable,2021-04-15 08:58:09.000 -01008C900982E000,"Arcade Archives Solomon's Key",online;status-playable,playable,2021-04-19 16:27:18.000 -010069F008A38000,"Arcade Archives STAR FORCE",online;status-playable,playable,2021-04-15 08:39:09.000 -0100422001DDA000,"Arcade Archives TERRA CRESTA",crash;services;status-menus,menus,2020-08-18 20:20:55.000 -0100348001DE6000,"Arcade Archives TERRA FORCE",online;status-playable,playable,2021-04-16 20:03:27.000 -0100DFD016B7A000,"Arcade Archives TETRIS® THE GRAND MASTER",status-playable,playable,2024-06-23 01:50:29.000 -0100DC000983A000,"Arcade Archives THE NINJA WARRIORS",online;slow;status-ingame,ingame,2021-04-16 19:54:56.000 -0100AF300D2E8000,"Arcade Archives TIME PILOT",online;status-playable,playable,2021-04-16 19:22:31.000 -010029D006ED8000,"Arcade Archives Traverse USA",online;status-playable,playable,2021-04-15 08:11:06.000 -010042200BE0C000,"Arcade Archives URBAN CHAMPION",online;status-playable,playable,2021-04-16 10:20:03.000 -01004EC00E634000,"Arcade Archives VS. GRADIUS",online;status-playable,playable,2021-04-12 14:53:58.000 -010021D00812A000,"Arcade Archives VS. SUPER MARIO BROS.",online;status-playable,playable,2021-04-08 14:48:11.000 -01001B000D8B6000,"Arcade Archives WILD WESTERN",online;status-playable,playable,2021-04-16 10:11:36.000 -010050000D6C4000,"Arcade Classics Anniversary Collection",status-playable,playable,2021-06-03 13:55:10.000 -01005A8010C7E000,"ARCADE FUZZ",status-playable,playable,2020-08-15 12:37:36.000 -010077000F620000,"Arcade Spirits",status-playable,playable,2020-06-21 11:45:03.000 -0100E680149DC000,"Arcaea",status-playable,playable,2023-03-16 19:31:21.000 -01003C2010C78000,"Archaica: The Path Of Light",crash;status-nothing,nothing,2020-10-16 13:22:26.000 -01004DA012976000,"Area 86",status-playable,playable,2020-12-16 16:45:52.000 -0100691013C46000,"ARIA CHRONICLE",status-playable,playable,2022-11-16 13:50:55.000 -0100D4A00B284000,"ARK: Survival Evolved",gpu;status-ingame;nvdec;online-broken;UE4;ldn-untested,ingame,2024-04-16 00:53:56.000 -0100C56012C96000,"Arkanoid vs. Space Invaders",services;status-ingame,ingame,2021-01-21 12:50:30.000 -010069A010606000,"Arkham Horror: Mother's Embrace",nvdec;status-playable,playable,2021-04-19 15:40:55.000 -0100C5B0113A0000,"Armed 7 DX",status-playable,playable,2020-12-14 11:49:56.000 -010070A00A5F4000,"Armello",nvdec;status-playable,playable,2021-01-07 11:43:26.000 -0100A5400AC86000,"ARMS Demo",status-playable,playable,2021-02-10 16:30:13.000 -01009B500007C000,"ARMS™",status-playable;ldn-works;LAN,playable,2024-08-28 07:49:24.000 -0100184011B32000,"Arrest of a stone Buddha",status-nothing;crash,nothing,2022-12-07 16:55:00.000 -01007AB012102000,"Arrog",status-playable,playable,2020-12-16 17:20:50.000 -01008EC006BE2000,"Art of Balance",gpu;status-ingame;ldn-works,ingame,2022-07-21 17:13:57.000 -010062F00CAE2000,"Art of Balance DEMO",gpu;slow;status-ingame,ingame,2021-02-10 17:17:12.000 -01006AA013086000,"Art Sqool",status-playable;nvdec,playable,2022-10-16 20:42:37.000 -0100CDD00DA70000,"Artifact Adventure Gaiden DX",status-playable,playable,2020-12-16 17:49:25.000 -0100C2500CAB6000,"Ary and the Secret of Seasons",status-playable,playable,2022-10-07 20:45:09.000 -0100C9F00AAEE000,"ASCENDANCE",status-playable,playable,2021-01-05 10:54:40.000 -0100D5800DECA000,"Asemblance",UE4;gpu;status-ingame,ingame,2020-12-16 18:01:23.000 -0100E4C00DE30000,"Ash of Gods: Redemption",deadlock;status-nothing,nothing,2020-08-10 18:08:32.000 -010027B00E40E000,"Ashen",status-playable;nvdec;online-broken;UE4,playable,2022-09-17 12:19:14.000 -01007B000C834000,"Asphalt Legends Unite",services;status-menus;crash;online-broken,menus,2022-12-07 13:28:29.000 -01007F600B134000,"Assassin's Creed® III: Remastered",status-boots;nvdec,boots,2024-06-25 20:12:11.000 -010044700DEB0000,"Assassin’s Creed®: The Rebel Collection",gpu;status-ingame,ingame,2024-05-19 07:58:56.000 -0100DF200B24C000,"Assault Android Cactus+",status-playable,playable,2021-06-03 13:23:55.000 -0100BF8012A30000,"Assault ChaingunS KM",crash;gpu;status-ingame,ingame,2020-12-14 12:48:34.000 -0100C5E00E540000,"Assault on Metaltron Demo",status-playable,playable,2021-02-10 19:48:06.000 -010057A00C1F6000,"Astebreed",status-playable,playable,2022-07-21 17:33:54.000 -010081500EA1E000,"Asterix & Obelix XXL 3 - The Crystal Menhir",gpu;status-ingame;nvdec;regression,ingame,2022-11-28 14:19:23.000 -0100F46011B50000,"Asterix & Obelix XXL: Romastered",gpu;status-ingame;nvdec;opengl,ingame,2023-08-16 21:22:06.000 -01007300020FA000,"ASTRAL CHAIN",status-playable,playable,2024-07-17 18:02:19.000 -0100E5F00643C000,"Astro Bears Party",status-playable,playable,2020-05-28 11:21:58.000 -0100F0400351C000,"Astro Duel Deluxe",32-bit;status-playable,playable,2021-06-03 11:21:48.000 -0100B80010C48000,"Astrologaster",cpu;status-nothing;32-bit;crash,nothing,2023-06-28 15:39:31.000 -0100DF401249C000,"AstroWings: Space War",status-playable,playable,2020-12-14 13:10:44.000 -010099801870E000,"Atari 50: The Anniversary Celebration",slow;status-playable,playable,2022-11-14 19:42:10.000 -010088600C66E000,"Atelier Arland series Deluxe Pack",nvdec;status-playable,playable,2021-04-08 15:33:15.000 -0100D9D00EE8C000,"Atelier Ayesha: The Alchemist of Dusk DX",status-menus;crash;nvdec;Needs Update,menus,2021-11-24 07:29:54.000 -0100E5600EE8E000,"Atelier Escha & Logy: Alchemists of the Dusk Sky DX",status-playable;nvdec,playable,2022-11-20 16:01:41.000 -010023201421E000,"Atelier Firis: The Alchemist and the Mysterious Journey DX",gpu;status-ingame;nvdec,ingame,2022-10-25 22:46:19.000 -0100B1400CD50000,"Atelier Lulua ~The Scion of Arland~",nvdec;status-playable,playable,2020-12-16 14:29:19.000 -010009900947A000,"Atelier Lydie & Suelle ~The Alchemists and the Mysterious Paintings~",nvdec;status-playable,playable,2021-06-03 18:37:01.000 -01001A5014220000,"Atelier Lydie & Suelle: The Alchemists and the Mysterious Paintings DX",status-playable,playable,2022-10-25 23:06:20.000 -0100ADD00C6FA000,"Atelier Meruru ~The Apprentice of Arland~ DX",nvdec;status-playable,playable,2020-06-12 00:50:48.000 -01002D700B906000,"Atelier Rorona Arland no Renkinjutsushi DX (JP)",status-playable;nvdec,playable,2022-12-02 17:26:54.000 -01009A9012022000,"Atelier Ryza 2: Lost Legends & the Secret Fairy",status-playable,playable,2022-10-16 21:06:06.000 -0100D1900EC80000,"Atelier Ryza: Ever Darkness & the Secret Hideout",status-playable,playable,2023-10-15 16:36:50.000 -010005C00EE90000,"Atelier Shallie: Alchemists of the Dusk Sea DX",nvdec;status-playable,playable,2020-11-25 20:54:12.000 -010082A01538E000,"Atelier Sophie 2: The Alchemist of the Mysterious Dream",status-ingame;crash,ingame,2022-12-01 04:34:03.000 -01009BC00C6F6000,"Atelier Totori ~The Adventurer of Arland~ DX",nvdec;status-playable,playable,2020-06-12 01:04:56.000 -0100B9400FA38000,"ATOM RPG",status-playable;nvdec,playable,2022-10-22 10:11:48.000 -01005FE00EC4E000,"Atomic Heist",status-playable,playable,2022-10-16 21:24:32.000 -0100AD30095A4000,"Atomicrops",status-playable,playable,2022-08-06 10:05:07.000 -01000D1006CEC000,"ATOMIK: RunGunJumpGun",status-playable,playable,2020-12-14 13:19:24.000 -0100FB500631E000,"ATOMINE",gpu;nvdec;slow;status-playable,playable,2020-12-14 18:56:50.000 -010039600E7AC000,"Attack of the Toy Tanks",slow;status-ingame,ingame,2020-12-14 12:59:12.000 -010034500641A000,"Attack on Titan 2",status-playable,playable,2021-01-04 11:40:01.000 -01000F600B01E000,"ATV Drift & Tricks",UE4;online;status-playable,playable,2021-04-08 17:29:17.000 -0100AA800DA42000,"Automachef",status-playable,playable,2020-12-16 19:51:25.000 -01006B700EA6A000,"Automachef Demo",status-playable,playable,2021-02-10 20:35:37.000 -0100B280106A0000,"Aviary Attorney: Definitive Edition",status-playable,playable,2020-08-09 20:32:12.000 -010064600F982000,"AVICII Invector",status-playable,playable,2020-10-25 12:12:56.000 -0100E100128BA000,"AVICII Invector Demo",status-playable,playable,2021-02-10 21:04:58.000 -01008FB011248000,"AvoCuddle",status-playable,playable,2020-09-02 14:50:13.000 -0100085012D64000,"Awakening of Cthulhu",UE4;status-playable,playable,2021-04-26 13:03:07.000 -01002F1005F3C000,"Away: Journey To The Unexpected",status-playable;nvdec;vulkan-backend-bug,playable,2022-11-06 15:31:04.000 -0100B8C00CFCE000,"Awesome Pea",status-playable,playable,2020-10-11 12:39:23.000 -010023800D3F2000,"Awesome Pea (Demo)",status-playable,playable,2021-02-10 21:48:21.000 -0100B7D01147E000,"Awesome Pea 2",status-playable,playable,2022-10-01 12:34:19.000 -0100D2011E28000,"Awesome Pea 2 (Demo)",crash;status-nothing,nothing,2021-02-10 22:08:27.000 -0100DA3011174000,"AXES",status-playable,playable,2021-04-08 13:01:58.000 -0100052004384000,"Axiom Verge",status-playable,playable,2020-10-20 01:07:18.000 -010075400DEC6000,"Ayakashi Koi Gikyoku《Trial version》",status-playable,playable,2021-02-10 22:22:11.000 -01006AF012FC8000,"Azur Lane: Crosswave",UE4;nvdec;status-playable,playable,2021-04-05 15:15:25.000 -0100C7D00DE24000,"Azuran Tales: TRIALS",status-playable,playable,2020-08-12 15:23:07.000 -01006FB00990E000,"Azure Reflections",nvdec;online;status-playable,playable,2021-04-08 13:18:25.000 -01004E90149AA000,"Azure Striker GUNVOLT 3",status-playable,playable,2022-08-10 13:46:49.000 -0100192003FA4000,"Azure Striker GUNVOLT: STRIKER PACK",32-bit;status-playable,playable,2024-02-10 23:51:21.000 -010031D012BA4000,"Azurebreak Heroes",status-playable,playable,2020-12-16 21:26:17.000 -01009B901145C000,"B.ARK",status-playable;nvdec,playable,2022-11-17 13:35:02.000 -01002CD00A51C000,"Baba Is You",status-playable,playable,2022-07-17 05:36:54.000 -0100F4100AF16000,"Back to Bed",nvdec;status-playable,playable,2020-12-16 20:52:04.000 -0100FEA014316000,"Backworlds",status-playable,playable,2022-10-25 23:20:34.000 -0100EAF00E32E000,"Bacon Man: An Adventure",status-menus;crash;nvdec,menus,2021-11-20 02:36:21.000 -01000CB00D094000,"Bad Dream: Coma",deadlock;status-boots,boots,2023-08-03 00:54:18.000 -0100B3B00D81C000,"Bad Dream: Fever",status-playable,playable,2021-06-04 18:33:12.000 -0100E98006F22000,"Bad North",status-playable,playable,2022-07-17 13:44:25.000 -010075000D092000,"Bad North Demo",status-playable,playable,2021-02-10 22:48:38.000 -01004C70086EC000,"BAFL - Brakes Are For Losers",status-playable,playable,2021-01-13 08:32:51.000 -010076B011EC8000,"Baila Latino",status-playable,playable,2021-04-14 16:40:24.000 -0100730011BDC000,"Bakugan: Champions of Vestroia",status-playable,playable,2020-11-06 19:07:39.000 -01008260138C4000,"Bakumatsu Renka SHINSENGUMI",status-playable,playable,2022-10-25 23:37:31.000 -0100438012EC8000,"BALAN WONDERWORLD",status-playable;nvdec;UE4,playable,2022-10-22 13:08:43.000 -0100E48013A34000,"Balan Wonderworld Demo",gpu;services;status-ingame;UE4;demo,ingame,2023-02-16 20:05:07.000 -0100CD801CE5E000,"Balatro",status-ingame,ingame,2024-04-21 02:01:53.000 -010010A00DA48000,"Baldur's Gate and Baldur's Gate II: Enhanced Editions",32-bit;status-playable,playable,2022-09-12 23:52:15.000 -0100BC400FB64000,"Balthazar's Dream",status-playable,playable,2022-09-13 00:13:22.000 -01008D30128E0000,"Bamerang",status-playable,playable,2022-10-26 00:29:39.000 -010013C010C5C000,"Banner of the Maid",status-playable,playable,2021-06-14 15:23:37.000 -0100388008758000,"Banner Saga 2",crash;status-boots,boots,2021-01-13 08:56:09.000 -010071E00875A000,"Banner Saga 3",slow;status-boots,boots,2021-01-11 16:53:57.000 -0100CE800B94A000,"Banner Saga Trilogy",slow;status-playable,playable,2024-03-06 11:25:20.000 -0100425009FB2000,"Baobabs Mausoleum Ep.1: Ovnifagos Don't Eat Flamingos",status-playable,playable,2020-07-15 05:06:29.000 -010079300E976000,"Baobabs Mausoleum Ep.2: 1313 Barnabas Dead End Drive",status-playable,playable,2020-12-17 11:22:50.000 -01006D300FFA6000,"Baobabs Mausoleum Ep.3: Un Pato en Muertoburgo",nvdec;status-playable,playable,2020-12-17 11:43:10.000 -0100D3000AEC2000,"Baobabs Mausoleum: DEMO",status-playable,playable,2021-02-10 22:59:25.000 -01003350102E2000,"Barbarous: Tavern of Emyr",status-playable,playable,2022-10-16 21:50:24.000 -0100F7E01308C000,"Barbearian",Needs Update;gpu;status-ingame,ingame,2021-06-28 16:27:50.000 -010039C0106C6000,"Baron: Fur Is Gonna Fly",status-boots;crash,boots,2022-02-06 02:05:43.000 -0100FB000EB96000,"Barry Bradford's Putt Panic Party",nvdec;status-playable,playable,2020-06-17 01:08:34.000 -01004860080A0000,"Baseball Riot",status-playable,playable,2021-06-04 18:07:27.000 -010038600B27E000,"Bastion",status-playable,playable,2022-02-15 14:15:24.000 -01005F3012748000,"Batbarian: Testament of the Primordials",status-playable,playable,2020-12-17 12:00:59.000 -0100C07018CA6000,"Baten Kaitos I & II HD Remaster (Europe/USA)",services;status-boots;Needs Update,boots,2023-10-01 00:44:32.000 -0100F28018CA4000,"Baten Kaitos I & II HD Remaster (Japan)",services;status-boots;Needs Update,boots,2023-10-24 23:11:54.000 -0100011005D92000,"Batman - The Telltale Series",nvdec;slow;status-playable,playable,2021-01-11 18:19:35.000 -01003F00163CE000,"Batman: Arkham City",status-playable,playable,2024-09-11 00:30:19.000 -0100ACD0163D0000,"Batman: Arkham Knight",gpu;status-ingame;mac-bug,ingame,2024-06-25 20:24:42.000 -0100E6300AA3A000,"Batman: The Enemy Within",crash;status-nothing,nothing,2020-10-16 05:49:27.000 -0100747011890000,"Battle Axe",status-playable,playable,2022-10-26 00:38:01.000 -0100551001D88000,"Battle Chasers: Nightwar",nvdec;slow;status-playable,playable,2021-01-12 12:27:34.000 -0100CC2001C6C000,"Battle Chef Brigade Deluxe",status-playable,playable,2021-01-11 14:16:28.000 -0100DBB00CAEE000,"Battle Chef Brigade Demo",status-playable,playable,2021-02-10 23:15:07.000 -0100A3B011EDE000,"Battle Hunters",gpu;status-ingame,ingame,2022-11-12 09:19:17.000 -010035E00C1AE000,"Battle of Kings",slow;status-playable,playable,2020-12-17 12:45:23.000 -0100D2800EB40000,"Battle Planet - Judgement Day",status-playable,playable,2020-12-17 14:06:20.000 -0100C4D0093EA000,"Battle Princess Madelyn",status-playable,playable,2021-01-11 13:47:23.000 -0100A7500DF64000,"Battle Princess Madelyn Royal Edition",status-playable,playable,2022-09-26 19:14:49.000 -010099B00E898000,"Battle Supremacy - Evolution",gpu;status-boots;nvdec,boots,2022-02-17 09:02:50.000 -0100DEB00D5A8000,"Battle Worlds: Kronos",nvdec;status-playable,playable,2021-06-04 17:48:02.000 -0100650010DD4000,"Battleground",status-ingame;crash,ingame,2021-09-06 11:53:23.000 -010044E00D97C000,"BATTLESLOTHS",status-playable,playable,2020-10-03 08:32:22.000 -010059C00E39C000,"Battlestar Galactica Deadlock",nvdec;status-playable,playable,2020-06-27 17:35:44.000 -01006D800A988000,"Battlezone Gold Edition",gpu;ldn-untested;online;status-boots,boots,2021-06-04 18:36:05.000 -010048300D5C2000,"BATTLLOON",status-playable,playable,2020-12-17 15:48:23.000 -0100194010422000,"bayala - the game",status-playable,playable,2022-10-04 14:09:25.000 -0100CF5010FEC000,"Bayonetta Origins: Cereza and the Lost Demon™",gpu;status-ingame,ingame,2024-02-27 01:39:49.000 -010002801A3FA000,"Bayonetta Origins: Cereza and the Lost Demon™ Demo",gpu;status-ingame;demo,ingame,2024-02-17 06:06:28.000 -010076F0049A2000,"Bayonetta™",status-playable;audout,playable,2022-11-20 15:51:59.000 -01007960049A0000,"Bayonetta™ 2",status-playable;nvdec;ldn-works;LAN,playable,2022-11-26 03:46:09.000 -01004A4010FEA000,"Bayonetta™ 3",gpu;status-ingame;crash;nvdec;vulkan-backend-bug;opengl-backend-bug;amd-vendor-bug;ASTC,ingame,2024-09-28 14:34:33.000 -01002FA00DE72000,"BDSM: Big Drunk Satanic Massacre",status-playable,playable,2021-03-04 21:28:22.000 -01003A1010E3C000,"BE-A Walker",slow;status-ingame,ingame,2020-09-02 15:00:31.000 -010095C00406C000,"Beach Buggy Racing",online;status-playable,playable,2021-04-13 23:16:50.000 -010020700DE04000,"Bear With Me: The Lost Robots",nvdec;status-playable,playable,2021-02-27 14:20:10.000 -010024200E97E800,"Bear With Me: The Lost Robots Demo",nvdec;status-playable,playable,2021-02-12 22:38:12.000 -0100C0E014A4E000,"Bear's Restaurant",status-playable,playable,2024-08-11 21:26:59.000 -,"BEAST Darling! ~Kemomimi Danshi to Himitsu no Ryou~",crash;status-menus,menus,2020-10-04 06:12:08.000 -01009C300BB4C000,"Beat Cop",status-playable,playable,2021-01-06 19:26:48.000 -01002D20129FC000,"Beat Me!",status-playable;online-broken,playable,2022-10-16 21:59:26.000 -01006B0014590000,"BEAUTIFUL DESOLATION",gpu;status-ingame;nvdec,ingame,2022-10-26 10:34:38.000 -01009E700DB2E000,"Bee Simulator",UE4;crash;status-boots,boots,2020-07-15 12:13:13.000 -010018F007786000,"BeeFense BeeMastered",status-playable,playable,2022-11-17 15:38:12.000 -0100558010B26000,"Behold the Kickmen",status-playable,playable,2020-06-27 12:49:45.000 -0100D1300C1EA000,"Beholder: Complete Edition",status-playable,playable,2020-10-16 12:48:58.000 -01006E1004404000,"Ben 10",nvdec;status-playable,playable,2021-02-26 14:08:35.000 -01009CD00E3AA000,"Ben 10: Power Trip!",status-playable;nvdec,playable,2022-10-09 10:52:12.000 -010074500BBC4000,"Bendy and the Ink Machine",status-playable,playable,2023-05-06 20:35:39.000 -010068600AD16000,"Beyblade Burst Battle Zero",services;status-menus;crash;Needs Update,menus,2022-11-20 15:48:32.000 -010056500CAD8000,"Beyond Enemy Lines: Covert Operations",status-playable;UE4,playable,2022-10-01 13:11:50.000 -0100B8F00DACA000,"Beyond Enemy Lines: Essentials",status-playable;nvdec;UE4,playable,2022-09-26 19:48:16.000 -0100BF400AF38000,"Bibi & Tina – Adventures with Horses",nvdec;slow;status-playable,playable,2021-01-13 08:58:09.000 -010062400E69C000,"Bibi & Tina at the horse farm",status-playable,playable,2021-04-06 16:31:39.000 -01005FF00AF36000,"Bibi Blocksberg – Big Broom Race 3",status-playable,playable,2021-01-11 19:07:16.000 -010062B00A874000,"Big Buck Hunter Arcade",nvdec;status-playable,playable,2021-01-12 20:31:39.000 -010088100C35E000,"Big Crown: Showdown",status-menus;nvdec;online;ldn-untested,menus,2022-07-17 18:25:32.000 -0100A42011B28000,"Big Dipper",status-playable,playable,2021-06-14 15:08:19.000 -010077E00F30E000,"Big Pharma",status-playable,playable,2020-07-14 15:27:30.000 -010007401287E000,"BIG-Bobby-Car - The Big Race",slow;status-playable,playable,2020-12-10 14:25:06.000 -010057700FF7C000,"Billion Road",status-playable,playable,2022-11-19 15:57:43.000 -010087D008D64000,"BINGO for Nintendo Switch",status-playable,playable,2020-07-23 16:17:36.000 -01004BA017CD6000,"Biomutant",status-ingame;crash,ingame,2024-05-16 15:46:36.000 -01002620102C6000,"BioShock 2 Remastered",services;status-nothing,nothing,2022-10-29 14:39:22.000 -0100D560102C8000,"BioShock Infinite: The Complete Edition",services-horizon;status-nothing;crash,nothing,2024-08-11 21:35:01.000 -0100AD10102B2000,"BioShock Remastered",services-horizon;status-boots;crash;Needs Update,boots,2024-06-06 01:08:52.000 -010053B0117F8000,"Biped",status-playable;nvdec,playable,2022-10-01 13:32:58.000 -01001B700B278000,"Bird Game +",status-playable;online,playable,2022-07-17 18:41:57.000 -0100B6B012FF4000,"Birds and Blocks Demo",services;status-boots;demo,boots,2022-04-10 04:53:03.000 -0100E62012D3C000,"BIT.TRIP RUNNER",status-playable,playable,2022-10-17 14:23:24.000 -01000AD012D3A000,"BIT.TRIP VOID",status-playable,playable,2022-10-17 14:31:23.000 -0100A0800EA9C000,"Bite the Bullet",status-playable,playable,2020-10-14 23:10:11.000 -010026E0141C8000,"Bitmaster",status-playable,playable,2022-12-13 14:05:51.000 -010061D00FD26000,"Biz Builder Delux",slow;status-playable,playable,2020-12-15 21:36:25.000 -0100DD1014AB8000,"Black Book",status-playable;nvdec,playable,2022-12-13 16:38:53.000 -010049000B69E000,"Black Future '88",status-playable;nvdec,playable,2022-09-13 11:24:37.000 -01004BE00A682000,"Black Hole Demo",status-playable,playable,2021-02-12 23:02:17.000 -0100C3200E7E6000,"Black Legend",gpu;status-ingame;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-10-22 12:54:48.000 -010043A012A32000,"Blackjack Hands",status-playable,playable,2020-11-30 14:04:51.000 -0100A0A00E660000,"Blackmoor 2",status-playable;online-broken,playable,2022-09-26 20:26:34.000 -010032000EA2C000,"Blacksad: Under the Skin",status-playable,playable,2022-09-13 11:38:04.000 -01006B400C178000,"Blacksea Odyssey",status-playable;nvdec,playable,2022-10-16 22:14:34.000 -010068E013450000,"Blacksmith of the Sand Kingdom",status-playable,playable,2022-10-16 22:37:44.000 -0100C4400CB7C000,"BLADE ARCUS Rebellion From Shining",status-playable,playable,2022-07-17 18:52:28.000 -0100EA1018A2E000,"Blade Assault",audio;status-nothing,nothing,2024-04-29 14:32:50.000 -01009CC00E224000,"Blade II - The Return Of Evil",audio;status-ingame;crash;UE4,ingame,2021-11-14 02:49:59.000 -01005950022EC000,"Blade Strangers",status-playable;nvdec,playable,2022-07-17 19:02:43.000 -0100DF0011A6A000,"Bladed Fury",status-playable,playable,2022-10-26 11:36:26.000 -0100CFA00CC74000,"Blades of Time",deadlock;status-boots;online,boots,2022-07-17 19:19:58.000 -01006CC01182C000,"Blair Witch",status-playable;nvdec;UE4,playable,2022-10-01 14:06:16.000 -010039501405E000,"Blanc",gpu;slow;status-ingame,ingame,2023-02-22 14:00:13.000 -0100698009C6E000,"Blasphemous",nvdec;status-playable,playable,2021-03-01 12:15:31.000 -0100302010338000,"Blasphemous Demo",status-playable,playable,2021-02-12 23:49:56.000 -0100225000FEE000,"Blaster Master Zero",32-bit;status-playable,playable,2021-03-05 13:22:33.000 -01005AA00D676000,"Blaster Master Zero 2",status-playable,playable,2021-04-08 15:22:59.000 -010025B002E92000,"Blaster Master Zero Demo",status-playable,playable,2021-02-12 23:59:06.000 -0100E53013E1C000,"Blastoid Breakout",status-playable,playable,2021-01-25 23:28:02.000 -0100EE800C93E000,"BLAZBLUE CENTRALFICTION Special Edition",nvdec;status-playable,playable,2020-12-15 23:50:04.000 -0100B61008208000,"BLAZBLUE CROSS TAG BATTLE",nvdec;online;status-playable,playable,2021-01-05 20:29:37.000 -010021A00DE54000,"Blazing Beaks",status-playable,playable,2020-06-04 20:37:06.000 -0100C2700C252000,"Blazing Chrome",status-playable,playable,2020-11-16 04:56:54.000 -010091700EA2A000,"Bleep Bloop DEMO",nvdec;status-playable,playable,2021-02-13 00:20:53.000 -010089D011310000,"Blind Men",audout;status-playable,playable,2021-02-20 14:15:38.000 -0100743013D56000,"Blizzard® Arcade Collection",status-playable;nvdec,playable,2022-08-03 19:37:26.000 -0100F3500A20C000,"BlobCat",status-playable,playable,2021-04-23 17:09:30.000 -0100E1C00DB6C000,"Block-a-Pix Deluxe Demo",status-playable,playable,2021-02-13 00:37:39.000 -0100C6A01AD56000,"Bloo Kid",status-playable,playable,2024-05-01 17:18:04.000 -010055900FADA000,"Bloo Kid 2",status-playable,playable,2024-05-01 17:16:57.000 -0100EE5011DB6000,"Blood and Guts Bundle",status-playable,playable,2020-06-27 12:57:35.000 -01007E700D17E000,"Blood Waves",gpu;status-ingame,ingame,2022-07-18 13:04:46.000 -0100E060102AA000,"Blood will be Spilled",nvdec;status-playable,playable,2020-12-17 03:02:03.000 -01004B800AF5A000,"Bloodstained: Curse of the Moon",status-playable,playable,2020-09-04 10:42:17.000 -01004680124E6000,"Bloodstained: Curse of the Moon 2",status-playable,playable,2020-09-04 10:56:27.000 -010025A00DF2A000,"Bloodstained: Ritual of the Night",status-playable;nvdec;UE4,playable,2022-07-18 14:27:35.000 -0100E510143EC000,"Bloody Bunny, The Game",status-playable;nvdec;UE4,playable,2022-10-22 13:18:55.000 -0100B8400A1C6000,"Bloons TD 5",Needs Update;audio;gpu;services;status-boots,boots,2021-04-18 23:02:46.000 -01000EB01023E000,"Blossom Tales Demo",status-playable,playable,2021-02-13 14:22:53.000 -0100C1000706C000,"Blossom Tales: The Sleeping King",status-playable,playable,2022-07-18 16:43:07.000 -010073B010F6E000,"Blue Fire",status-playable;UE4,playable,2022-10-22 14:46:11.000 -0100721013510000,"Body of Evidence",status-playable,playable,2021-04-25 22:22:11.000 -0100AD1010CCE000,"Bohemian Killing",status-playable;vulkan-backend-bug,playable,2022-09-26 22:41:37.000 -010093700ECEC000,"Boku to Nurse no Kenshuu Nisshi",status-playable,playable,2022-11-21 20:38:34.000 -01001D900D9AC000,"Bokujou Monogatari Saikai no Mineraru Taun (Story of Seasons: Friends of Mineral Town)",slow;status-ingame;crash;Needs Update,ingame,2022-04-24 22:46:04.000 -0100317014B7C000,"Bomb Rush Cyberfunk",status-playable,playable,2023-09-28 19:51:57.000 -01007900080B6000,"Bomber Crew",status-playable,playable,2021-06-03 14:21:28.000 -0100A1F012948000,"Bomber Fox",nvdec;status-playable,playable,2021-04-19 17:58:13.000 -010087300445A000,"Bombslinger",services;status-menus,menus,2022-07-19 12:53:15.000 -01007A200F452000,"Book of Demons",status-playable,playable,2022-09-29 12:03:43.000 -010054500F564000,"Bookbound Brigade",status-playable,playable,2020-10-09 14:30:29.000 -01002E6013ED8000,"Boom Blaster",status-playable,playable,2021-03-24 10:55:56.000 -010081A00EE62000,"Boomerang Fu",status-playable,playable,2024-07-28 01:12:41.000 -010069F0135C4000,"Boomerang Fu Demo Version",demo;status-playable,playable,2021-02-13 14:38:13.000 -01009970122E4000,"Borderlands 3 Ultimate Edition",gpu;status-ingame,ingame,2024-07-15 04:38:14.000 -010064800F66A000,"Borderlands: Game of the Year Edition",slow;status-ingame;online-broken;ldn-untested,ingame,2023-07-23 21:10:36.000 -010096F00FF22000,"Borderlands: The Handsome Collection",status-playable,playable,2022-04-22 18:35:07.000 -010007400FF24000,"Borderlands: The Pre-Sequel",nvdec;status-playable,playable,2021-06-09 20:17:10.000 -01008E500AFF6000,"Boreal Blade",gpu;ldn-untested;online;status-ingame,ingame,2021-06-11 15:37:14.000 -010092C013FB8000,"BORIS THE ROCKET",status-playable,playable,2022-10-26 13:23:09.000 -010076F00EBE4000,"BOSSGARD",status-playable;online-broken,playable,2022-10-04 14:21:13.000 -010069B00EAC8000,"Bot Vice Demo",crash;demo;status-ingame,ingame,2021-02-13 14:52:42.000 -010081100FE08000,"Bouncy Bob 2",status-playable,playable,2020-07-14 16:51:53.000 -0100E1200DC1A000,"Bounty Battle",status-playable;nvdec,playable,2022-10-04 14:40:51.000 -0100B4700C57E000,"Bow to Blood: Last Captain Standing",slow;status-playable,playable,2020-10-23 10:51:21.000 -010040800BA8A000,"Box Align",crash;services;status-nothing,nothing,2020-04-03 17:26:56.000 -010018300D006000,"BOXBOY! + BOXGIRL!™",status-playable,playable,2020-11-08 01:11:54.000 -0100B7200E02E000,"BOXBOY! + BOXGIRL!™ Demo",demo;status-playable,playable,2021-02-13 14:59:08.000 -0100CA400B6D0000,"BQM -BlockQuest Maker-",online;status-playable,playable,2020-07-31 20:56:50.000 -0100E87017D0E000,"Bramble: The Mountain King",services-horizon;status-playable,playable,2024-03-06 09:32:17.000 -01000F5003068000,"Brave Dungeon + Dark Witch Story:COMBAT",status-playable,playable,2021-01-12 21:06:34.000 -01006DC010326000,"BRAVELY DEFAULT™ II",gpu;status-ingame;crash;Needs Update;UE4,ingame,2024-04-26 06:11:26.000 -0100B6801137E000,"Bravely Default™ II Demo",gpu;status-ingame;crash;UE4;demo,ingame,2022-09-27 05:39:47.000 -010081501371E000,"BraveMatch",status-playable;UE4,playable,2022-10-26 13:32:15.000 -0100F60017D4E000,"Bravery and Greed",gpu;deadlock;status-boots,boots,2022-12-04 02:23:47.000 -0100A42004718000,"BRAWL",nvdec;slow;status-playable,playable,2020-06-04 14:23:18.000 -010068F00F444000,"Brawl Chess",status-playable;nvdec,playable,2022-10-26 13:59:17.000 -0100C6800B934000,"Brawlhalla",online;opengl;status-playable,playable,2021-06-03 18:26:09.000 -010060200A4BE000,"Brawlout",ldn-untested;online;status-playable,playable,2021-06-04 17:35:35.000 -0100C1B00E1CA000,"Brawlout Demo",demo;status-playable,playable,2021-02-13 22:46:53.000 -010022C016DC8000,"Breakout: Recharged",slow;status-ingame,ingame,2022-11-06 15:32:57.000 -01000AA013A5E000,"Breathedge",UE4;nvdec;status-playable,playable,2021-05-06 15:44:28.000 -01003D50100F4000,"Breathing Fear",status-playable,playable,2020-07-14 15:12:29.000 -010026800BB06000,"Brick Breaker",nvdec;online;status-playable,playable,2020-12-15 18:26:23.000 -01002AD0126AE000,"Bridge Constructor: The Walking Dead",gpu;slow;status-ingame,ingame,2020-12-11 17:31:32.000 -01000B1010D8E000,"Bridge! 3",status-playable,playable,2020-10-08 20:47:24.000 -010011000EA7A000,"BRIGANDINE The Legend of Runersia",status-playable,playable,2021-06-20 06:52:25.000 -0100703011258000,"BRIGANDINE The Legend of Runersia Demo",status-playable,playable,2021-02-14 14:44:10.000 -01000BF00BE40000,"Bring Them Home",UE4;status-playable,playable,2021-04-12 14:14:43.000 -010060A00B53C000,"Broforce",ldn-untested;online;status-playable,playable,2021-05-28 12:23:38.000 -0100EDD0068A6000,"Broken Age",status-playable,playable,2021-06-04 17:40:32.000 -0100A5800F6AC000,"Broken Lines",status-playable,playable,2020-10-16 00:01:37.000 -01001E60085E6000,"Broken Sword 5 - the Serpent's Curse",status-playable,playable,2021-06-04 17:28:59.000 -0100F19011226000,"Brotherhood United Demo",demo;status-playable,playable,2021-02-14 21:10:57.000 -01000D500D08A000,"Brothers: A Tale of Two Sons",status-playable;nvdec;UE4,playable,2022-07-19 14:02:22.000 -0100B2700E90E000,"Brunch Club",status-playable,playable,2020-06-24 13:54:07.000 -010010900F7B4000,"Bubble Bobble 4 Friends: The Baron is Back!",nvdec;status-playable,playable,2021-06-04 15:27:55.000 -0100DBE00C554000,"Bubsy: Paws on Fire!",slow;status-ingame,ingame,2023-08-24 02:44:51.000 -0100089010A92000,"Bucket Knight",crash;status-ingame,ingame,2020-09-04 13:11:24.000 -0100F1B010A90000,"Bucket Knight demo",demo;status-playable,playable,2021-02-14 21:23:09.000 -01000D200AC0C000,"Bud Spencer & Terence Hill - Slaps And Beans",status-playable,playable,2022-07-17 12:37:00.000 -010051A00E99E000,"Bug Fables: The Everlasting Sapling",status-playable,playable,2020-06-09 11:27:00.000 -01003DD00D658000,"Bulletstorm: Duke of Switch Edition",status-playable;nvdec,playable,2022-03-03 08:30:24.000 -01006BB00E8FA000,"BurgerTime Party!",slow;status-playable,playable,2020-11-21 14:11:53.000 -01005780106E8000,"BurgerTime Party! Demo",demo;status-playable,playable,2021-02-14 21:34:16.000 -010078C00DB40000,"Buried Stars",status-playable,playable,2020-09-07 14:11:58.000 -0100DBF01000A000,"Burnout™ Paradise Remastered",nvdec;online;status-playable,playable,2021-06-13 02:54:46.000 -010066F00C76A000,"Bury me, my Love",status-playable,playable,2020-11-07 12:47:37.000 -010030D012FF6000,"Bus Driver Simulator",status-playable,playable,2022-10-17 13:55:27.000 -0100A9101418C000,"BUSTAFELLOWS",nvdec;status-playable,playable,2020-10-17 20:04:41.000 -0100177005C8A000,"BUTCHER",status-playable,playable,2021-01-11 18:50:17.000 -01000B900D8B0000,"Cadence of Hyrule: Crypt of the NecroDancer Featuring The Legend of Zelda",slow;status-playable;nvdec,playable,2024-04-01 22:43:40.000 -010065700EE06000,"Cadence of Hyrule: Crypt of the NecroDancer Featuring The Legend of Zelda Demo",demo;gpu;nvdec;status-ingame,ingame,2021-02-14 21:48:15.000 -01005C00117A8000,"Café Enchanté",status-playable,playable,2020-11-13 14:54:25.000 -010060400D21C000,"Cafeteria Nipponica Demo",demo;status-playable,playable,2021-02-14 22:11:35.000 -0100699012F82000,"Cake Bash Demo",crash;demo;status-ingame,ingame,2021-02-14 22:21:15.000 -01004FD00D66A000,"Caladrius Blaze",deadlock;status-nothing;nvdec,nothing,2022-12-07 16:44:37.000 -01004B500AB88000,"Calculation Castle : Greco's Ghostly Challenge Addition""""",32-bit;status-playable,playable,2020-11-01 23:40:11.000 -010045500B212000,"Calculation Castle : Greco's Ghostly Challenge Division """"",32-bit;status-playable,playable,2020-11-01 23:54:55.000 -0100ECE00B210000,"Calculation Castle : Greco's Ghostly Challenge Multiplication """"",32-bit;status-playable,playable,2020-11-02 00:04:33.000 -0100A6500B176000,"Calculation Castle : Greco's Ghostly Challenge Subtraction """"",32-bit;status-playable,playable,2020-11-01 23:47:42.000 -010004701504A000,"Calculator",status-playable,playable,2021-06-11 13:27:20.000 -010013A00E750000,"Calico",status-playable,playable,2022-10-17 14:44:28.000 -010046000EE40000,"Call of Cthulhu",status-playable;nvdec;UE4,playable,2022-12-18 03:08:30.000 -0100B4700BFC6000,"Call of Juarez: Gunslinger",gpu;status-ingame;nvdec,ingame,2022-09-17 16:49:46.000 -0100593008BDC000,"Can't Drive This",status-playable,playable,2022-10-22 14:55:17.000 -0100E4600B166000,"Candle: The Power of the Flame",nvdec;status-playable,playable,2020-05-26 12:10:20.000 -01001E0013208000,"Capcom Arcade Stadium",status-playable,playable,2021-03-17 05:45:14.000 -010094E00B52E000,"Capcom Beat 'Em Up Bundle",status-playable,playable,2020-03-23 18:31:24.000 -0100F6400A77E000,"CAPCOM BELT ACTION COLLECTION",status-playable;online;ldn-untested,playable,2022-07-21 20:51:23.000 -01009BF0072D4000,"Captain Toad™: Treasure Tracker",32-bit;status-playable,playable,2024-04-25 00:50:16.000 -01002C400B6B6000,"Captain Toad™: Treasure Tracker Demo",32-bit;demo;status-playable,playable,2021-02-14 22:36:09.000 -0100EAE010560000,"Captain Tsubasa: Rise of New Champions",status-playable;online-broken;vulkan-backend-bug,playable,2022-10-09 11:20:50.000 -01002320137CC000,"CAPTAIN TSUBASA: RISE OF NEW CHAMPIONS DEMO VERSION",slow;status-playable,playable,2021-02-14 22:45:35.000 -010048800D95C000,"Car Mechanic Manager",status-playable,playable,2020-07-23 18:50:17.000 -01007BD00AE70000,"Car Quest",deadlock;status-menus,menus,2021-11-18 08:59:18.000 -0100DA70115E6000,"Caretaker",status-playable,playable,2022-10-04 14:52:24.000 -0100DD6014870000,"Cargo Crew Driver",status-playable,playable,2021-04-19 12:54:22.000 -010088C0092FE000,"Carnival Games®",status-playable;nvdec,playable,2022-07-21 21:01:22.000 -01005F5011AC4000,"Carnivores: Dinosaur Hunt",status-playable,playable,2022-12-14 18:46:06.000 -0100B1600E9AE000,"CARRION",crash;status-nothing,nothing,2020-08-13 17:15:12.000 -01008D1001512000,"Cars 3: Driven to Win",gpu;status-ingame,ingame,2022-07-21 21:21:05.000 -0100810012A1A000,"Carto",status-playable,playable,2022-09-04 15:37:06.000 -0100085003A2A000,"Cartoon Network Battle Crashers",status-playable,playable,2022-07-21 21:55:40.000 -0100C4C0132F8000,"CASE 2: Animatronics Survival",status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-10-09 11:45:03.000 -010066F01A0E0000,"Cassette Beasts",status-playable,playable,2024-07-22 20:38:43.000 -010001300D14A000,"Castle Crashers Remastered",gpu;status-boots,boots,2024-08-10 09:21:20.000 -0100F6D01060E000,"Castle Crashers Remastered Demo",gpu;status-boots;demo,boots,2022-04-10 10:57:10.000 -01003C100445C000,"Castle of Heart",status-playable;nvdec,playable,2022-07-21 23:10:45.000 -0100F5500FA0E000,"Castle of no Escape 2",status-playable,playable,2022-09-13 13:51:42.000 -0100DA2011F18000,"Castle Pals",status-playable,playable,2021-03-04 21:00:33.000 -010097C00AB66000,"CastleStorm",status-playable;nvdec,playable,2022-07-21 22:49:14.000 -010007400EB64000,"CastleStorm II",UE4;crash;nvdec;status-boots,boots,2020-10-25 11:22:44.000 -01001A800D6BC000,"Castlevania Anniversary Collection",audio;status-playable,playable,2020-05-23 11:40:29.000 -010076000C86E000,"Cat Girl Without Salad: Amuse-Bouche",status-playable,playable,2022-09-03 13:01:47.000 -0100A2F006FBE000,"Cat Quest",status-playable,playable,2020-04-02 23:09:32.000 -01008BE00E968000,"Cat Quest II",status-playable,playable,2020-07-06 23:52:09.000 -0100E86010220000,"Cat Quest II Demo",demo;status-playable,playable,2021-02-15 14:11:57.000 -0100BAE0077E4000,"Catherine Full Body for Nintendo Switch (JP)",Needs Update;gpu;status-ingame,ingame,2021-02-21 18:06:11.000 -0100BF00112C0000,"Catherine: Full Body",status-playable;nvdec,playable,2023-04-02 11:00:37.000 -010004400B28A000,"Cattails",status-playable,playable,2021-06-03 14:36:57.000 -0100B7D0022EE000,"Cave Story+",status-playable,playable,2020-05-22 09:57:25.000 -01001A100C0E8000,"Caveblazers",slow;status-ingame,ingame,2021-06-09 17:57:28.000 -01006DB004566000,"Caveman Warriors",status-playable,playable,2020-05-22 11:44:20.000 -010078700B2CC000,"Caveman Warriors Demo",demo;status-playable,playable,2021-02-15 14:44:08.000 -01002B30028F6000,"Celeste",status-playable,playable,2020-06-17 10:14:40.000 -01006B000A666000,"Cendrillon palikA",gpu;status-ingame;nvdec,ingame,2022-07-21 22:52:24.000 -01007600115CE000,"CHAOS CODE -NEW SIGN OF CATASTROPHE-",status-boots;crash;nvdec,boots,2022-04-04 12:24:21.000 -0100957016B90000,"CHAOS;HEAD NOAH",status-playable,playable,2022-06-02 22:57:19.000 -0100F52013A66000,"Charge Kid",gpu;status-boots;audout,boots,2024-02-11 01:17:47.000 -0100DE200C350000,"Chasm",status-playable,playable,2020-10-23 11:03:43.000 -010034301A556000,"Chasm: The Rift",gpu;status-ingame,ingame,2024-04-29 19:02:48.000 -0100A5900472E000,"Chess Ultra",status-playable;UE4,playable,2023-08-30 23:06:31.000 -0100E3C00A118000,"Chicken Assassin: Reloaded",status-playable,playable,2021-02-20 13:29:01.000 -0100713010E7A000,"Chicken Police – Paint it RED!",nvdec;status-playable,playable,2020-12-10 15:10:11.000 -0100F6C00A016000,"Chicken Range",status-playable,playable,2021-04-23 12:14:23.000 -01002E500E3EE000,"Chicken Rider",status-playable,playable,2020-05-22 11:31:17.000 -0100CAC011C3A000,"Chickens Madness DEMO",UE4;demo;gpu;nvdec;status-ingame,ingame,2021-02-15 15:02:10.000 -01007D000AD8A000,"Child of Light® Ultimate Edition",nvdec;status-playable,playable,2020-12-16 10:23:10.000 -01002DE00C250000,"Children of Morta",gpu;status-ingame;nvdec,ingame,2022-09-13 17:48:47.000 -0100C1A00AC3E000,"Children of Zodiarcs",status-playable,playable,2020-10-04 14:23:33.000 -010046F012A04000,"Chinese Parents",status-playable,playable,2021-04-08 12:56:41.000 -01005A001489A000,"Chiptune Arrange Sound(DoDonPachi Resurrection)",status-ingame;32-bit;crash,ingame,2024-01-25 14:37:32.000 -01006A30124CA000,"Chocobo GP",gpu;status-ingame;crash,ingame,2022-06-04 14:52:18.000 -0100BF600BF26000,"Chocobo's Mystery Dungeon EVERY BUDDY!",slow;status-playable,playable,2020-05-26 13:53:13.000 -01000BA0132EA000,"Choices That Matter: And The Sun Went Out",status-playable,playable,2020-12-17 15:44:08.000 -,"Chou no Doku Hana no Kusari: Taishou Irokoi Ibun",gpu;nvdec;status-ingame,ingame,2020-09-28 17:58:04.000 -010039A008E76000,"ChromaGun",status-playable,playable,2020-05-26 12:56:42.000 -010006800E13A000,"Chronos: Before the Ashes",UE4;gpu;nvdec;status-ingame,ingame,2020-12-11 22:16:35.000 -010039700BA7E000,"Circle of Sumo",status-playable,playable,2020-05-22 12:45:21.000 -01008FA00D686000,"Circuits",status-playable,playable,2022-09-19 11:52:50.000 -0100D8800B87C000,"Cities: Skylines - Nintendo Switch™ Edition",status-playable,playable,2020-12-16 10:34:57.000 -0100E4200D84E000,"Citizens of Space",gpu;status-boots,boots,2023-10-22 06:45:44.000 -0100D9C012900000,"Citizens Unite!: Earth x Space",gpu;status-ingame,ingame,2023-10-22 06:44:19.000 -01005E501284E000,"City Bus Driving Simulator",status-playable,playable,2021-06-15 21:25:59.000 -0100A3A00CC7E000,"CLANNAD",status-playable,playable,2021-06-03 17:01:02.000 -01007B501372C000,"CLANNAD Side Stories",status-playable,playable,2022-10-26 15:03:04.000 -01005ED0107F4000,"Clash Force",status-playable,playable,2022-10-01 23:45:48.000 -010009300AA6C000,"Claybook",slow;status-playable;nvdec;online;UE4,playable,2022-07-22 11:11:34.000 -010058900F52E000,"Clea",crash;status-ingame,ingame,2020-12-15 16:22:56.000 -010045E0142A4000,"Clea 2",status-playable,playable,2021-04-18 14:25:18.000 -01008C100C572000,"Clock Zero ~Shuuen no Ichibyou~ Devote",status-playable;nvdec,playable,2022-12-04 22:19:14.000 -0100DF9013AD4000,"Clocker",status-playable,playable,2021-04-05 15:05:13.000 -0100B7200DAC6000,"Close to the Sun",status-boots;crash;nvdec;UE4,boots,2021-11-04 09:19:41.000 -010047700D540000,"Clubhouse Games™: 51 Worldwide Classics",status-playable;ldn-works,playable,2024-05-21 16:12:57.000 -0100C1401CEDC000,"Clue",crash;online;status-menus,menus,2020-11-10 09:23:48.000 -010085A00821A000,"ClusterPuck 99",status-playable,playable,2021-01-06 00:28:12.000 -010096900A4D2000,"Clustertruck",slow;status-ingame,ingame,2021-02-19 21:07:09.000 -01005790110F0000,"Cobra Kai: The Karate Kid Saga Continues",status-playable,playable,2021-06-17 15:59:13.000 -01002E700C366000,"COCOON",gpu;status-ingame,ingame,2024-03-06 11:33:08.000 -010034E005C9C000,"Code of Princess EX",nvdec;online;status-playable,playable,2021-06-03 10:50:13.000 -010086100CDCA000,"CODE SHIFTER",status-playable,playable,2020-08-09 15:20:55.000 -010002400F408000,"Code: Realize ~Future Blessings~",status-playable;nvdec,playable,2023-03-31 16:57:47.000 -0100CF800C810000,"Coffee Crisis",status-playable,playable,2021-02-20 12:34:52.000 -010066200E1E6000,"Coffee Talk",status-playable,playable,2020-08-10 09:48:44.000 -0100178009648000,"Coffin Dodgers",status-playable,playable,2021-02-20 14:57:41.000 -010035B01706E000,"Cold Silence",cpu;status-nothing;crash,nothing,2024-07-11 17:06:14.000 -010083E00F40E000,"Collar X Malice",status-playable;nvdec,playable,2022-10-02 11:51:56.000 -0100E3B00F412000,"Collar X Malice -Unlimited-",status-playable;nvdec,playable,2022-10-04 15:30:40.000 -01002A600D7FC000,"Collection of Mana",status-playable,playable,2020-10-19 19:29:45.000 -0100B77012266000,"COLLECTION of SaGa FINAL FANTASY LEGEND",status-playable,playable,2020-12-30 19:11:16.000 -010030800BC36000,"Collidalot",status-playable;nvdec,playable,2022-09-13 14:09:27.000 -0100CA100C0BA000,"Color Zen",status-playable,playable,2020-05-22 10:56:17.000 -010039B011312000,"Colorgrid",status-playable,playable,2020-10-04 01:50:52.000 -0100A7000BD28000,"Coloring Book",status-playable,playable,2022-07-22 11:17:05.000 -010020500BD86000,"Colors Live",gpu;services;status-boots;crash,boots,2023-02-26 02:51:07.000 -0100E2F0128B4000,"Colossus Down",status-playable,playable,2021-02-04 20:49:50.000 -0100C4D00D16A000,"Commander Keen in Keen Dreams",gpu;status-ingame,ingame,2022-08-04 20:34:20.000 -0100E400129EC000,"Commander Keen in Keen Dreams: Definitive Edition",status-playable,playable,2021-05-11 19:33:54.000 -010065A01158E000,"Commandos 2 - HD Remaster",gpu;status-ingame;nvdec,ingame,2022-08-10 21:52:27.000 -010015801308E000,"Conarium",UE4;nvdec;status-playable,playable,2021-04-26 17:57:53.000 -0100971011224000,"Concept Destruction",status-playable,playable,2022-09-29 12:28:56.000 -010043700C9B0000,"Conduct TOGETHER!",nvdec;status-playable,playable,2021-02-20 12:59:00.000 -01007EF00399C000,"Conga Master Party!",status-playable,playable,2020-05-22 13:22:24.000 -0100A5600FAC0000,"Construction Simulator 3 - Console Edition",status-playable,playable,2023-02-06 09:31:23.000 -0100A330022C2000,"Constructor Plus",status-playable,playable,2020-05-26 12:37:40.000 -0100DCA00DA7E000,"Contra Anniversary Collection",status-playable,playable,2022-07-22 11:30:12.000 -0100F2600D710000,"CONTRA: ROGUE CORPS",crash;nvdec;regression;status-menus,menus,2021-01-07 13:23:35.000 -0100B8200ECA6000,"CONTRA: ROGUE CORPS Demo",gpu;status-ingame,ingame,2022-09-04 16:46:52.000 -01007D701298A000,"Contraptions",status-playable,playable,2021-02-08 18:40:50.000 -0100041013360000,"Control Ultimate Edition - Cloud Version",Needs Update;crash;services;status-nothing,nothing,2021-04-18 22:34:06.000 -010058800E90A000,"Convoy: A Tactical Roguelike",status-playable,playable,2020-10-15 14:43:50.000 -0100B82010B6C000,"Cook, Serve, Delicious! 3?!",status-playable,playable,2022-10-09 12:09:34.000 -010060700EFBA000,"Cooking Mama: Cookstar",status-menus;crash;loader-allocator,menus,2021-11-20 03:19:35.000 -01001E400FD58000,"Cooking Simulator",status-playable,playable,2021-04-18 13:25:23.000 -0100DF9010206000,"Cooking Tycoons - 3 in 1 Bundle",status-playable,playable,2020-11-16 22:44:26.000 -01005350126E0000,"Cooking Tycoons 2 - 3 in 1 Bundle",status-playable,playable,2020-11-16 22:19:33.000 -0100C5A0115C4000,"CopperBell",status-playable,playable,2020-10-04 15:54:36.000 -010016400B1FE000,"Corpse Party: Blood Drive",nvdec;status-playable,playable,2021-03-01 12:44:23.000 -0100CCB01B1A0000,"COSMIC FANTASY COLLECTION",status-ingame,ingame,2024-05-21 17:56:37.000 -010067C00A776000,"Cosmic Star Heroine",status-playable,playable,2021-02-20 14:30:47.000 -01003DD00F94A000,"COTTOn Reboot! [ コットン リブート! ]",status-playable,playable,2022-05-24 16:29:24.000 -,"Cotton/Guardian Saturn Tribute Games",gpu;status-boots,boots,2022-11-27 21:00:51.000 -01000E301107A000,"Couch Co-Op Bundle Vol. 2",status-playable;nvdec,playable,2022-10-02 12:04:21.000 -0100C1E012A42000,"Country Tales",status-playable,playable,2021-06-17 16:45:39.000 -01003370136EA000,"Cozy Grove",gpu;status-ingame,ingame,2023-07-30 22:22:19.000 -010073401175E000,"Crash Bandicoot™ 4: It’s About Time",status-playable;nvdec;UE4,playable,2024-03-17 07:13:45.000 -0100D1B006744000,"Crash Bandicoot™ N. Sane Trilogy",status-playable,playable,2024-02-11 11:38:14.000 -010007900FCE2000,"Crash Drive 2",online;status-playable,playable,2020-12-17 02:45:46.000 -010046600BD0E000,"Crash Dummy",nvdec;status-playable,playable,2020-05-23 11:12:43.000 -0100BF200CD74000,"Crashbots",status-playable,playable,2022-07-22 13:50:52.000 -010027100BD16000,"Crashlands",status-playable,playable,2021-05-27 20:30:06.000 -0100F9F00C696000,"Crash™ Team Racing Nitro-Fueled",gpu;status-ingame;nvdec;online-broken,ingame,2023-06-25 02:40:17.000 -0100BF7006BCA000,"Crawl",status-playable,playable,2020-05-22 10:16:05.000 -0100C66007E96000,"Crayola Scoot",status-playable;nvdec,playable,2022-07-22 14:01:55.000 -01005BA00F486000,"Crayon Shin-chan Ora to Hakase no Natsuyasumi Owaranai Nanokakan no Tabi",status-playable,playable,2021-07-21 10:41:33.000 -0100D470106DC000,"CRAYON SHINCHAN The Storm Called FLAMING KASUKABE RUNNER!!",services;status-menus,menus,2020-03-20 14:00:57.000 -01006BC00C27A000,"Crazy Strike Bowling EX",UE4;gpu;nvdec;status-ingame,ingame,2020-08-07 18:15:59.000 -0100F9900D8C8000,"Crazy Zen Mini Golf",status-playable,playable,2020-08-05 14:00:00.000 -0100B0E010CF8000,"Creaks",status-playable,playable,2020-08-15 12:20:52.000 -01007C600D778000,"Creature in the Well",UE4;gpu;status-ingame,ingame,2020-11-16 12:52:40.000 -0100A19011EEE000,"Creepy Tale",status-playable,playable,2020-12-15 21:58:03.000 -01005C2013B00000,"Cresteaju",gpu;status-ingame,ingame,2021-03-24 10:46:06.000 -010022D00D4F0000,"Cricket 19",gpu;status-ingame,ingame,2021-06-14 14:56:07.000 -0100387017100000,"Cricket 22 The Official Game Of The Ashes",status-boots;crash,boots,2023-10-18 08:01:57.000 -01005640080B0000,"Crimsonland",status-playable,playable,2021-05-27 20:50:54.000 -0100B0400EBC4000,"Cris Tales",crash;status-ingame,ingame,2021-07-29 15:10:53.000 -01004BC0166CC000,"CRISIS CORE –FINAL FANTASY VII– REUNION",status-playable,playable,2022-12-19 15:53:59.000 -01004F800C4DA000,"Croc's World",status-playable,playable,2020-05-22 11:21:09.000 -01009DB00DE12000,"Croc's World 2",status-playable,playable,2020-12-16 20:01:40.000 -010025200FC54000,"Croc's World 3",status-playable,playable,2020-12-30 18:53:26.000 -01000F0007D92000,"Croixleur Sigma",status-playable;online,playable,2022-07-22 14:26:54.000 -01003D90058FC000,"CrossCode",status-playable,playable,2024-02-17 10:23:19.000 -0100B1E00AA56000,"Crossing Souls",nvdec;status-playable,playable,2021-02-20 15:42:54.000 -0100059012BAE000,"Crown Trick",status-playable,playable,2021-06-16 19:36:29.000 -0100B41013C82000,"Cruis'n Blast",gpu;status-ingame,ingame,2023-07-30 10:33:47.000 -01000CC01C108000,"Crymachina Trial Edition ( Demo ) [ クライマキナ ]",status-playable;demo,playable,2023-08-06 05:33:21.000 -0100CEA007D08000,"Crypt of the NecroDancer: Nintendo Switch Edition",status-playable;nvdec,playable,2022-11-01 09:52:06.000 -0100582010AE0000,"Crysis 2 Remastered",deadlock;status-menus,menus,2023-09-21 10:46:17.000 -0100CD3010AE2000,"Crysis 3 Remastered",deadlock;status-menus,menus,2023-09-10 16:03:50.000 -0100E66010ADE000,"Crysis Remastered",status-menus;nvdec,menus,2024-08-13 05:23:24.000 -0100972008234000,"Crystal Crisis",nvdec;status-playable,playable,2021-02-20 13:52:44.000 -01006FA012FE0000,"Cthulhu Saves Christmas",status-playable,playable,2020-12-14 00:58:55.000 -010001600D1E8000,"Cube Creator X",status-menus;crash,menus,2021-11-25 08:53:28.000 -010082E00F1CE000,"Cubers: Arena",status-playable;nvdec;UE4,playable,2022-10-04 16:05:40.000 -010040D011D04000,"Cubicity",status-playable,playable,2021-06-14 14:19:51.000 -0100A5C00D162000,"Cuphead",status-playable,playable,2022-02-01 22:45:55.000 -0100F7E00DFC8000,"Cupid Parasite",gpu;status-ingame,ingame,2023-08-21 05:52:36.000 -010054501075C000,"Curious Cases",status-playable,playable,2020-08-10 09:30:48.000 -0100D4A0118EA000,"Curse of the Dead Gods",status-playable,playable,2022-08-30 12:25:38.000 -0100CE5014026000,"Curved Space",status-playable,playable,2023-01-14 22:03:50.000 -0100C1300DE74000,"Cyber Protocol",nvdec;status-playable,playable,2020-09-28 14:47:40.000 -0100C1F0141AA000,"Cyber Shadow",status-playable,playable,2022-07-17 05:37:41.000 -01006B9013672000,"Cybxus Hearts",gpu;slow;status-ingame,ingame,2022-01-15 05:00:49.000 -010063100B2C2000,"Cytus α",nvdec;status-playable,playable,2021-02-20 13:40:46.000 -0100B6400CA56000,"DAEMON X MACHINA™",UE4;audout;ldn-untested;nvdec;status-playable,playable,2021-06-09 19:22:29.000 -010061300DF48000,"Dairoku: Ayakashimori",status-nothing;Needs Update;loader-allocator,nothing,2021-11-30 05:09:38.000 -0100BD2009A1C000,"Damsel",status-playable,playable,2022-09-06 11:54:39.000 -0100BFC002B4E000,"Dandara: Trials of Fear Edition",status-playable,playable,2020-05-26 12:42:33.000 -0100DFB00D808000,"Dandy Dungeon - Legend of Brave Yamada -",status-playable,playable,2021-01-06 09:48:47.000 -01003ED0099B0000,"Danger Mouse: The Danger Games",status-boots;crash;online,boots,2022-07-22 15:49:45.000 -0100EFA013E7C000,"Danger Scavenger",nvdec;status-playable,playable,2021-04-17 15:53:04.000 -0100417007F78000,"Danmaku Unlimited 3",status-playable,playable,2020-11-15 00:48:35.000 -,"Darius Cozmic Collection",status-playable,playable,2021-02-19 20:59:06.000 -010059C00BED4000,"Darius Cozmic Collection Special Edition",status-playable,playable,2022-07-22 16:26:50.000 -010015800F93C000,"Dariusburst - Another Chronicle EX+",online;status-playable,playable,2021-04-05 14:21:43.000 -01003D301357A000,"Dark Arcana: The Carnival",gpu;slow;status-ingame,ingame,2022-02-19 08:52:28.000 -010083A00BF6C000,"Dark Devotion",status-playable;nvdec,playable,2022-08-09 09:41:18.000 -0100BFF00D5AE000,"Dark Quest 2",status-playable,playable,2020-11-16 21:34:52.000 -01004AB00A260000,"DARK SOULS™: REMASTERED",gpu;status-ingame;nvdec;online-broken,ingame,2024-04-09 19:47:58.000 -01001FA0034E2000,"Dark Witch Music Episode: Rudymical",status-playable,playable,2020-05-22 09:44:44.000 -01008F1008DA6000,"Darkest Dungeon",status-playable;nvdec,playable,2022-07-22 18:49:18.000 -0100F2300D4BA000,"Darksiders Genesis",status-playable;nvdec;online-broken;UE4;ldn-broken,playable,2022-09-21 18:06:25.000 -010071800BA98000,"Darksiders II Deathinitive Edition",gpu;status-ingame;nvdec;online-broken,ingame,2024-06-26 00:37:25.000 -0100E1400BA96000,"Darksiders Warmastered Edition",status-playable;nvdec,playable,2023-03-02 18:08:09.000 -010033500B7B6000,"Darkwood",status-playable,playable,2021-01-08 21:24:06.000 -0100440012FFA000,"DARQ Complete Edition",audout;status-playable,playable,2021-04-07 15:26:21.000 -0100BA500B660000,"Darts Up",status-playable,playable,2021-04-14 17:22:22.000 -0100F0B0081DA000,"Dawn of the Breakers",status-menus;online-broken;vulkan-backend-bug,menus,2022-12-08 14:40:03.000 -0100FCF00F6CC000,"Day and Night",status-playable,playable,2020-12-17 12:30:51.000 -0100D0A009310000,"de Blob",nvdec;status-playable,playable,2021-01-06 17:34:46.000 -010034E00A114000,"de Blob 2",nvdec;status-playable,playable,2021-01-06 13:00:16.000 -01008E900471E000,"De Mambo",status-playable,playable,2021-04-10 12:39:40.000 -01004C400CF96000,"Dead by Daylight",status-boots;nvdec;online-broken;UE4,boots,2022-09-13 14:32:13.000 -0100646009FBE000,"Dead Cells",status-playable,playable,2021-09-22 22:18:49.000 -01004C500BD40000,"Dead End Job",status-playable;nvdec,playable,2022-09-19 12:48:44.000 -01009CC00C97C000,"DEAD OR ALIVE Xtreme 3 Scarlet",status-playable,playable,2022-07-23 17:05:06.000 -0100A5000F7AA000,"DEAD OR SCHOOL",status-playable;nvdec,playable,2022-09-06 12:04:09.000 -0100A24011F52000,"Dead Z Meat",UE4;services;status-ingame,ingame,2021-04-14 16:50:16.000 -010095A011A14000,"Deadly Days",status-playable,playable,2020-11-27 13:38:55.000 -0100BAC011928000,"Deadly Premonition 2: A Blessing In Disguise",status-playable,playable,2021-06-15 14:12:36.000 -0100EBE00F22E000,"Deadly Premonition Origins",32-bit;status-playable;nvdec,playable,2024-03-25 12:47:46.000 -,"Dear Magi - Mahou Shounen Gakka -",status-playable,playable,2020-11-22 16:45:16.000 -01000D60126B6000,"Death and Taxes",status-playable,playable,2020-12-15 20:27:49.000 -010012B011AB2000,"Death Come True",nvdec;status-playable,playable,2021-06-10 22:30:49.000 -0100F3B00CF32000,"Death Coming",status-nothing;crash,nothing,2022-02-06 07:43:03.000 -0100AEC013DDA000,"Death end re;Quest",status-playable,playable,2023-07-09 12:19:54.000 -0100423009358000,"Death Road to Canada",gpu;audio;status-nothing;32-bit;crash,nothing,2023-06-28 15:39:26.000 -010085900337E000,"Death Squared",status-playable,playable,2020-12-04 13:00:15.000 -0100A51013550000,"Death Tales",status-playable,playable,2020-12-17 10:55:52.000 -0100492011A8A000,"Death's Hangover",gpu;status-boots,boots,2023-08-01 22:38:06.000 -01009120119B4000,"Deathsmiles I・II",status-playable,playable,2024-04-08 19:29:00.000 -010034F00BFC8000,"Debris Infinity",nvdec;online;status-playable,playable,2021-05-28 12:14:39.000 -010027700FD2E000,"Decay of Logos",status-playable;nvdec,playable,2022-09-13 14:42:13.000 -01002CC0062B8000,"DEEMO",status-playable,playable,2022-07-24 11:34:33.000 -01008B10132A2000,"DEEMO -Reborn-",status-playable;nvdec;online-broken,playable,2022-10-17 15:18:11.000 -010026800FA88000,"Deep Diving Adventures",status-playable,playable,2022-09-22 16:43:37.000 -0100FAF009562000,"Deep Ones",services;status-nothing,nothing,2020-04-03 02:54:19.000 -0100C3E00D68E000,"Deep Sky Derelicts: Definitive Edition",status-playable,playable,2022-09-27 11:21:08.000 -01000A700F956000,"Deep Space Rush",status-playable,playable,2020-07-07 23:30:33.000 -0100961011BE6000,"DeepOne",services-horizon;status-nothing;Needs Update,nothing,2024-01-18 15:01:05.000 -01008BB00F824000,"Defenders of Ekron: Definitive Edition",status-playable,playable,2021-06-11 16:31:03.000 -0100CDE0136E6000,"Defentron",status-playable,playable,2022-10-17 15:47:56.000 -010039300BDB2000,"Defunct",status-playable,playable,2021-01-08 21:33:46.000 -010067900B9C4000,"Degrees of Separation",status-playable,playable,2021-01-10 13:40:04.000 -010071C00CBA4000,"Dei Gratia no Rashinban",crash;status-nothing,nothing,2021-07-13 02:25:32.000 -010092E00E7F4000,"Deleveled",slow;status-playable,playable,2020-12-15 21:02:29.000 -010023800D64A000,"DELTARUNE Chapter 1&2",status-playable,playable,2023-01-22 04:47:44.000 -010038B01D2CA000,"Dementium: The Ward",status-boots;crash,boots,2024-09-02 08:28:14.000 -0100AB600ACB4000,"Demetrios - The BIG Cynical Adventure",status-playable,playable,2021-06-04 12:01:01.000 -010099D00D1A4000,"Demolish & Build 2018",status-playable,playable,2021-06-13 15:27:26.000 -010084600F51C000,"Demon Pit",status-playable;nvdec,playable,2022-09-19 13:35:15.000 -0100309016E7A000,"Demon Slayer -Kimetsu no Yaiba- The Hinokami Chronicles",status-playable;UE4,playable,2024-08-08 04:51:49.000 -0100A2B00BD88000,"Demon's Crystals",status-nothing;crash;regression,nothing,2022-12-07 16:33:17.000 -0100E29013818000,"Demon's Rise - Lords of Chaos",status-playable,playable,2021-04-06 16:20:06.000 -0100C3501094E000,"Demon's Rise - War for the Deep",status-playable,playable,2020-07-29 12:26:27.000 -0100161011458000,"Demon's Tier+",status-playable,playable,2021-06-09 17:25:36.000 -0100BE800E6D8000,"DEMON'S TILT",status-playable,playable,2022-09-19 13:22:46.000 -010000401313A000,"Demong Hunter",status-playable,playable,2020-12-12 15:27:08.000 -0100BC501355A000,"Densha de go!! Hashirou Yamanote Sen",status-playable;nvdec;UE4,playable,2023-11-09 07:47:58.000 -0100C9100FAE2000,"Depixtion",status-playable,playable,2020-10-10 18:52:37.000 -01000BF00B6BC000,"Deployment",slow;status-playable;online-broken,playable,2022-10-17 16:23:59.000 -010023600C704000,"Deponia",nvdec;status-playable,playable,2021-01-26 17:17:19.000 -0100ED700469A000,"Deru - The Art of Cooperation",status-playable,playable,2021-01-07 16:59:59.000 -0100D4600D0E4000,"Descenders",gpu;status-ingame,ingame,2020-12-10 15:22:36.000 -,"Desire remaster ver.",crash;status-boots,boots,2021-01-17 02:34:37.000 -010069500DD86000,"Destiny Connect: Tick-Tock Travelers",UE4;gpu;nvdec;status-ingame,ingame,2020-12-16 12:20:36.000 -01008BB011ED6000,"Destrobots",status-playable,playable,2021-03-06 14:37:05.000 -01009E701356A000,"Destroy All Humans!",gpu;status-ingame;nvdec;UE4,ingame,2023-01-14 22:23:53.000 -010030600E65A000,"Detective Dolittle",status-playable,playable,2021-03-02 14:03:59.000 -01009C0009842000,"Detective Gallo",status-playable;nvdec,playable,2022-07-24 11:51:04.000 -,"Detective Jinguji Saburo Prism of Eyes",status-playable,playable,2020-10-02 21:54:41.000 -010007500F27C000,"Detective Pikachu™ Returns",status-playable,playable,2023-10-07 10:24:59.000 -010031B00CF66000,"Devil Engine",status-playable,playable,2021-06-04 11:54:30.000 -01002F000E8F2000,"Devil Kingdom",status-playable,playable,2023-01-31 08:58:44.000 -0100E8000D5B8000,"Devil May Cry",nvdec;status-playable,playable,2021-01-04 19:43:08.000 -01007CF00D5BA000,"Devil May Cry 2",status-playable;nvdec,playable,2023-01-24 23:03:20.000 -01007B600D5BC000,"Devil May Cry 3 Special Edition",status-playable;nvdec,playable,2024-07-08 12:33:23.000 -01003C900EFF6000,"Devil Slayer Raksasi",status-playable,playable,2022-10-26 19:42:32.000 -01009EA00A320000,"Devious Dungeon",status-playable,playable,2021-03-04 13:03:06.000 -01003F601025E000,"Dex",nvdec;status-playable,playable,2020-08-12 16:48:12.000 -010044000CBCA000,"Dexteritrip",status-playable,playable,2021-01-06 12:51:12.000 -0100AFC00E06A000,"Dezatopia",online;status-playable,playable,2021-06-15 21:06:11.000 -01001B300B9BE000,"Diablo III: Eternal Collection",status-playable;online-broken;ldn-works,playable,2023-08-21 23:48:03.000 -0100726014352000,"Diablo® II: Resurrected™",gpu;status-ingame;nvdec,ingame,2023-08-18 18:42:47.000 -0100F73011456000,"Diabolic",status-playable,playable,2021-06-11 14:45:08.000 -010027400BD24000,"DIABOLIK LOVERS CHAOS LINEAGE",gpu;status-ingame;Needs Update,ingame,2023-06-08 02:20:44.000 -0100BBF011394000,"Dicey Dungeons",gpu;audio;slow;status-ingame,ingame,2023-08-02 20:30:12.000 -0100D98005E8C000,"Die for Valhalla!",status-playable,playable,2021-01-06 16:09:14.000 -0100BB900B5B4000,"Dies irae Amantes amentes For Nintendo Switch",status-nothing;32-bit;crash,nothing,2022-02-16 07:09:05.000 -0100A5A00DBB0000,"Dig Dog",gpu;status-ingame,ingame,2021-06-02 17:17:51.000 -01004DE011076000,"Digerati Indie Darling Bundle Vol. 3",status-playable,playable,2022-10-02 13:01:57.000 -010035D0121EC000,"Digerati Presents: The Dungeon Crawl Vol. 1",slow;status-ingame,ingame,2021-04-18 14:04:55.000 -010014E00DB56000,"Digimon Story Cyber Sleuth: Complete Edition",status-playable;nvdec;opengl,playable,2022-09-13 15:02:37.000 -0100F00014254000,"Digimon World: Next Order",status-playable,playable,2023-05-09 20:41:06.000 -0100B6D00DA6E000,"Ding Dong XL",status-playable,playable,2020-07-14 16:13:19.000 -01002E4011924000,"Dininho Adventures",status-playable,playable,2020-10-03 17:25:51.000 -010027E0158A6000,"Dininho Space Adventure",status-playable,playable,2023-01-14 22:43:04.000 -0100A8A013DA4000,"Dirt Bike Insanity",status-playable,playable,2021-01-31 13:27:38.000 -01004CB01378A000,"Dirt Trackin Sprint Cars",status-playable;nvdec;online-broken,playable,2022-10-17 16:34:56.000 -0100918014B02000,"Disagaea 6: Defiance of Destiny Demo",status-playable;demo,playable,2022-10-26 20:02:04.000 -010020700E2A2000,"Disaster Report 4: Summer Memories",status-playable;nvdec;UE4,playable,2022-09-27 19:41:31.000 -0100510004D2C000,"Disc Jam",UE4;ldn-untested;nvdec;online;status-playable,playable,2021-04-08 16:40:35.000 -0100C81004780000,"Disco Dodgeball - REMIX",online;status-playable,playable,2020-09-28 23:24:49.000 -01004B100AF18000,"Disgaea 1 Complete",status-playable,playable,2023-01-30 21:45:23.000 -0100A9800E9B4000,"Disgaea 4 Complete+",gpu;slow;status-playable,playable,2020-02-18 10:54:28.000 -010068C00F324000,"Disgaea 4 Complete+ Demo",status-playable;nvdec,playable,2022-09-13 15:21:59.000 -01005700031AE000,"Disgaea 5 Complete",nvdec;status-playable,playable,2021-03-04 15:32:54.000 -0100ABC013136000,"Disgaea 6: Defiance of Destiny",deadlock;status-ingame,ingame,2023-04-15 00:50:32.000 -0100307011D80000,"Disgaea 6: Defiance of Destiny [ FG ] [ 魔界戦記ディスガイア6 ]",status-playable,playable,2021-06-08 13:20:33.000 -01005EE013888000,"Disgaea 6: Defiance of Destiny Demo [ 魔界戦記ディスガイア6 ]",gpu;status-ingame;demo,ingame,2022-12-06 15:27:59.000 -01000B70122A2000,"Disjunction",gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug,ingame,2024-04-28 23:55:24.000 -0100A2F00EEFC000,"Disney Classic Games Collection",status-playable;online-broken,playable,2022-09-13 15:44:17.000 -0100DA201EBF8000,"Disney Epic Mickey: Rebrushed",status-ingame;crash,ingame,2024-09-26 22:11:51.000 -0100F0401435E000,"Disney Speedstorm",services;status-boots,boots,2023-11-27 02:15:32.000 -010012800EBAE000,"Disney TSUM TSUM FESTIVAL",crash;status-menus,menus,2020-07-14 14:05:28.000 -01009740120FE000,"DISTRAINT 2",status-playable,playable,2020-09-03 16:08:12.000 -010075B004DD2000,"DISTRAINT: Deluxe Edition",status-playable,playable,2020-06-15 23:42:24.000 -010027400CDC6000,"Divinity: Original Sin 2 - Definitive Edition",services;status-menus;crash;online-broken;regression,menus,2023-08-13 17:20:03.000 -01001770115C8000,"Dodo Peak",status-playable;nvdec;UE4,playable,2022-10-04 16:13:05.000 -010077B0100DA000,"Dogurai",status-playable,playable,2020-10-04 02:40:16.000 -010048100D51A000,"Dokapon Up! Mugen no Roulette",gpu;status-menus;Needs Update,menus,2022-12-08 19:39:10.000 -01005EE00BC78000,"Dokuro (ドクロ)",nvdec;status-playable,playable,2020-12-17 14:47:09.000 -010007200AC0E000,"Don't Die, Mr Robot!",status-playable;nvdec,playable,2022-09-02 18:34:38.000 -0100E470067A8000,"Don't Knock Twice",status-playable,playable,2024-05-08 22:37:58.000 -0100C4D00B608000,"Don't Sink",gpu;status-ingame,ingame,2021-02-26 15:41:11.000 -0100751007ADA000,"Don't Starve: Nintendo Switch Edition",status-playable;nvdec,playable,2022-02-05 20:43:34.000 -010088B010DD2000,"Dongo Adventure",status-playable,playable,2022-10-04 16:22:26.000 -0100C1F0051B6000,"Donkey Kong Country™: Tropical Freeze",status-playable,playable,2024-08-05 16:46:10.000 -0100F2C00F060000,"Doodle Derby",status-boots,boots,2020-12-04 22:51:48.000 -0100416004C00000,"DOOM",gpu;slow;status-ingame;nvdec;online-broken,ingame,2024-09-23 15:40:07.000 -010018900DD00000,"DOOM (1993)",status-menus;nvdec;online-broken,menus,2022-09-06 13:32:19.000 -01008CB01E52E000,"DOOM + DOOM II",status-playable;opengl;ldn-untested;LAN,playable,2024-09-12 07:06:01.000 -010029D00E740000,"DOOM 3",status-menus;crash,menus,2024-08-03 05:25:47.000 -01005D700E742000,"DOOM 64",nvdec;status-playable;vulkan,playable,2020-10-13 23:47:28.000 -0100D4F00DD02000,"DOOM II (Classic)",nvdec;online;status-playable,playable,2021-06-03 20:10:01.000 -0100B1A00D8CE000,"DOOM® Eternal",gpu;slow;status-ingame;nvdec;online-broken,ingame,2024-08-28 15:57:17.000 -01005ED00CD70000,"Door Kickers: Action Squad",status-playable;online-broken;ldn-broken,playable,2022-09-13 16:28:53.000 -010073700E412000,"DORAEMON STORY OF SEASONS",nvdec;status-playable,playable,2020-07-13 20:28:11.000 -0100F7300BD8E000,"Double Cross",status-playable,playable,2021-01-07 15:34:22.000 -0100B1500E9F2000,"Double Dragon & Kunio-kun: Retro Brawler Bundle",status-playable,playable,2020-09-01 12:48:46.000 -01001AD00E49A000,"DOUBLE DRAGON Ⅲ: The Sacred Stones",online;status-playable,playable,2021-06-11 15:41:44.000 -01005B10132B2000,"Double Dragon Neon",gpu;audio;status-ingame;32-bit,ingame,2022-09-20 18:00:20.000 -01000F400C1A4000,"Double Kick Heroes",gpu;status-ingame,ingame,2020-10-03 14:33:59.000 -0100A5D00C7C0000,"Double Pug Switch",status-playable;nvdec,playable,2022-10-10 10:59:35.000 -0100FC000EE10000,"Double Switch - 25th Anniversary Edition",status-playable;nvdec,playable,2022-09-19 13:41:50.000 -0100B6600FE06000,"Down to Hell",gpu;status-ingame;nvdec,ingame,2022-09-19 14:01:26.000 -010093D00C726000,"Downwell",status-playable,playable,2021-04-25 20:05:24.000 -0100ED000D390000,"Dr Kawashima's Brain Training",services;status-ingame,ingame,2023-06-04 00:06:46.000 -01001B80099F6000,"Dracula's Legacy",nvdec;status-playable,playable,2020-12-10 13:24:25.000 -0100566009238000,"DragoDino",gpu;nvdec;status-ingame,ingame,2020-08-03 20:49:16.000 -0100DBC00BD5A000,"Dragon Audit",crash;status-ingame,ingame,2021-05-16 14:24:46.000 -0100A250097F0000,"DRAGON BALL FighterZ",UE4;ldn-broken;nvdec;online;status-playable,playable,2021-06-11 16:19:04.000 -010078D000F88000,"DRAGON BALL XENOVERSE 2 for Nintendo Switch",gpu;status-ingame;nvdec;online;ldn-untested,ingame,2022-07-24 12:31:01.000 -010051C0134F8000,"DRAGON BALL Z: KAKAROT + A NEW POWER AWAKENS SET",status-playable;vulkan-backend-bug,playable,2024-08-28 00:03:50.000 -010099B00A2DC000,"Dragon Blaze for Nintendo Switch",32-bit;status-playable,playable,2020-10-14 11:11:28.000 -010089700150E000,"Dragon Marked for Death: Advanced Attackers",status-playable;ldn-untested;audout,playable,2022-03-10 06:44:34.000 -0100EFC00EFB2000,"DRAGON QUEST",gpu;status-boots,boots,2021-11-09 03:31:32.000 -010008900705C000,"Dragon Quest Builders™",gpu;status-ingame;nvdec,ingame,2023-08-14 09:54:36.000 -010042000A986000,"DRAGON QUEST BUILDERS™ 2",status-playable,playable,2024-04-19 16:36:38.000 -0100CD3000BDC000,"Dragon Quest Heroes I + II (JP)",nvdec;status-playable,playable,2021-04-08 14:27:16.000 -010062200EFB4000,"DRAGON QUEST II: Luminaries of the Legendary Line",status-playable,playable,2022-09-13 16:44:11.000 -01003E601E324000,"DRAGON QUEST III HD-2D Remake",status-ingame;vulkan-backend-bug;UE4;audout;mac-bug,ingame,2025-01-07 04:10:27.000 -010015600EFB6000,"DRAGON QUEST III: The Seeds of Salvation",gpu;status-boots,boots,2021-11-09 03:38:34.000 -0100A77018EA0000,"DRAGON QUEST MONSTERS: The Dark Prince",status-playable,playable,2023-12-29 16:10:05.000 -0100217014266000,"Dragon Quest Treasures",gpu;status-ingame;UE4,ingame,2023-05-09 11:16:52.000 -0100E2E0152E4000,"Dragon Quest X Awakening Five Races Offline",status-playable;nvdec;UE4,playable,2024-08-20 10:04:24.000 -01006C300E9F0000,"DRAGON QUEST® XI S: Echoes of an Elusive Age – Definitive Edition",status-playable;UE4,playable,2021-11-27 12:27:11.000 -010032C00AC58000,"Dragon's Dogma: Dark Arisen",status-playable,playable,2022-07-24 12:58:33.000 -010027100C544000,"Dragon's Lair Trilogy",nvdec;status-playable,playable,2021-01-13 22:12:07.000 -0100DA0006F50000,"DragonFangZ - The Rose & Dungeon of Time",status-playable,playable,2020-09-28 21:35:18.000 -0100F7800A434000,"Drawful 2",status-ingame,ingame,2022-07-24 13:50:21.000 -0100B7E0102E4000,"Drawngeon: Dungeons of Ink and Paper",gpu;status-ingame,ingame,2022-09-19 15:41:25.000 -01008B20129F2000,"Dream",status-playable,playable,2020-12-15 19:55:07.000 -01000AA0093DC000,"Dream Alone",nvdec;status-playable,playable,2021-01-27 19:41:50.000 -010034D00F330000,"DreamBall",UE4;crash;gpu;status-ingame,ingame,2020-08-05 14:45:25.000 -010058B00F3C0000,"Dreaming Canvas",UE4;gpu;status-ingame,ingame,2021-06-13 22:50:07.000 -0100D24013466000,"DREAMO",status-playable;UE4,playable,2022-10-17 18:25:28.000 -0100ED200B6FC000,"DreamWorks Dragons Dawn of New Riders",nvdec;status-playable,playable,2021-01-27 20:05:26.000 -0100236011B4C000,"DreamWorks Spirit Lucky’s Big Adventure",status-playable,playable,2022-10-27 13:30:52.000 -010058C00A916000,"Drone Fight",status-playable,playable,2022-07-24 14:31:56.000 -010052000A574000,"Drowning",status-playable,playable,2022-07-25 14:28:26.000 -0100652012F58000,"Drums",status-playable,playable,2020-12-17 17:21:51.000 -01005BC012C66000,"Duck Life Adventure",status-playable,playable,2022-10-10 11:27:03.000 -01007EF00CB88000,"Duke Nukem 3D: 20th Anniversary World Tour",32-bit;status-playable;ldn-untested,playable,2022-08-19 22:22:40.000 -010068D0141F2000,"Dull Grey",status-playable,playable,2022-10-27 13:40:38.000 -0100926013600000,"Dungeon Nightmares 1 + 2 Collection",status-playable,playable,2022-10-17 18:54:22.000 -010034300F0E2000,"Dungeon of the Endless",nvdec;status-playable,playable,2021-05-27 19:16:26.000 -0100E79009A94000,"Dungeon Stars",status-playable,playable,2021-01-18 14:28:37.000 -0100BE801360E000,"Dungeons & Bombs",status-playable,playable,2021-04-06 12:46:22.000 -0100EC30140B6000,"Dunk Lords",status-playable,playable,2024-06-26 00:07:26.000 -010011C00E636000,"Dusk Diver",status-boots;crash;UE4,boots,2021-11-06 09:01:30.000 -0100B6E00A420000,"Dust: An Elysian Tail",status-playable,playable,2022-07-25 15:28:12.000 -0100D7E012F2E000,"Dustoff Z",status-playable,playable,2020-12-04 23:22:29.000 -01008C8012920000,"Dying Light: Definitive Edition",services-horizon;status-boots,boots,2024-03-11 10:43:32.000 -01007DD00DFDE000,"Dyna Bomb",status-playable,playable,2020-06-07 13:26:55.000 -0100E9A00CB30000,"DYNASTY WARRIORS 8: Xtreme Legends Definitive Edition",status-playable;nvdec,playable,2024-06-26 00:16:30.000 -010008900BC5A000,"DYSMANTLE",gpu;status-ingame,ingame,2024-07-15 16:24:12.000 -010054E01D878000,"EA SPORTS FC 25",status-ingame;crash,ingame,2024-09-25 21:07:50.000 -0100BDB01A0E6000,"EA SPORTS FC™ 24",status-boots,boots,2023-10-04 18:32:59.000 -01001C8016B4E000,"EA SPORTS FIFA 23 Nintendo Switch™ Legacy Edition",gpu;status-ingame;crash,ingame,2024-06-10 23:33:05.000 -01005DE00D05C000,"EA SPORTS™ FIFA 20 Nintendo Switch™ Legacy Edition",gpu;status-ingame;nvdec;online-broken;ldn-untested,ingame,2022-09-13 17:57:20.000 -010037400C7DA000,"Eagle Island Twist",status-playable,playable,2021-04-10 13:15:42.000 -0100B9E012992000,"Earth Defense Force World Brothers ( ま~るい地球が四角くなった!? デジボク地球防衛軍 )",status-playable;UE4,playable,2022-12-07 12:59:16.000 -0100298014030000,"Earth Defense Force: World Brothers",status-playable;UE4,playable,2022-10-27 14:13:31.000 -01009B7006C88000,"EARTH WARS",status-playable,playable,2021-06-05 11:18:33.000 -0100DFC00E472000,"Earthfall: Alien Horde",status-playable;nvdec;UE4;ldn-untested,playable,2022-09-13 17:32:37.000 -01006E50042EA000,"EARTHLOCK",status-playable,playable,2021-06-05 11:51:02.000 -0100A2E00BB0C000,"EarthNight",status-playable,playable,2022-09-19 21:02:20.000 -0100DCE00B756000,"Earthworms",status-playable,playable,2022-07-25 16:28:55.000 -0100E3500BD84000,"Earthworms Demo",status-playable,playable,2021-01-05 16:57:11.000 -0100ECF01800C000,"Easy Come Easy Golf",status-playable;online-broken;regression,playable,2024-04-04 16:15:00.000 -0100A9B009678000,"EAT BEAT DEADSPIKE-san",audio;status-playable;Needs Update,playable,2022-12-02 19:25:29.000 -0100BCA016636000,"eBaseball Powerful Pro Yakyuu 2022",gpu;services-horizon;status-nothing;crash,nothing,2024-05-26 23:07:19.000 -01001F20100B8000,"Eclipse: Edge of Light",status-playable,playable,2020-08-11 23:06:29.000 -0100E0A0110F4000,"eCrossminton",status-playable,playable,2020-07-11 18:24:27.000 -0100ABE00DB4E000,"Edna & Harvey: Harvey's New Eyes",nvdec;status-playable,playable,2021-01-26 14:36:08.000 -01004F000B716000,"Edna & Harvey: The Breakout – Anniversary Edition",status-ingame;crash;nvdec,ingame,2022-08-01 16:59:56.000 -01002550129F0000,"Effie",status-playable,playable,2022-10-27 14:36:39.000 -0100CC0010A46000,"Ego Protocol: Remastered",nvdec;status-playable,playable,2020-12-16 20:16:35.000 -,"Eiga Sumikko Gurashi Tobidasu Ehon to Himitsu no Ko Game de Asobo Ehon no Sekai",status-playable,playable,2020-11-12 00:11:50.000 -01003AD013BD2000,"Eight Dragons",status-playable;nvdec,playable,2022-10-27 14:47:28.000 -010020A01209C000,"El Hijo - A Wild West Tale",nvdec;status-playable,playable,2021-04-19 17:44:08.000 -0100B5B00EF38000,"Elden: Path of the Forgotten",status-playable,playable,2020-12-15 00:33:19.000 -010068F012880000,"Eldrador® Creatures",slow;status-playable,playable,2020-12-12 12:35:35.000 -010008E010012000,"ELEA: Paradigm Shift",UE4;crash;status-nothing,nothing,2020-10-04 19:07:43.000 -0100A6700AF10000,"Element",status-playable,playable,2022-07-25 17:17:16.000 -0100128003A24000,"Elliot Quest",status-playable,playable,2022-07-25 17:46:14.000 -010041A00FEC6000,"Ember",status-playable;nvdec,playable,2022-09-19 21:16:11.000 -010071B012940000,"Embracelet",status-playable,playable,2020-12-04 23:45:00.000 -010017B0102A8000,"Emma: Lost in Memories",nvdec;status-playable,playable,2021-01-28 16:19:10.000 -010068300E08E000,"Enchanted in the Moonlight - Kiryu, Chikage & Yukinojo -",gpu;status-ingame;nvdec,ingame,2022-11-20 16:18:45.000 -01007A4008486000,"Enchanting Mahjong Match",gpu;status-ingame,ingame,2020-04-17 22:01:31.000 -01004F3011F92000,"Endless Fables: Dark Moor",gpu;nvdec;status-ingame,ingame,2021-03-07 15:31:03.000 -010067B017588000,"Endless Ocean™ Luminous",services-horizon;status-ingame;crash,ingame,2024-05-30 02:05:57.000 -0100B8700BD14000,"Energy Cycle Edge",services;status-ingame,ingame,2021-11-30 05:02:31.000 -0100A8E0090B0000,"Energy Invasion",status-playable,playable,2021-01-14 21:32:26.000 -0100C6200A0AA000,"Enigmatis 2: The Mists of Ravenwood",crash;regression;status-boots,boots,2021-06-06 15:15:30.000 -01009D60076F6000,"Enter the Gungeon",status-playable,playable,2022-07-25 20:28:33.000 -0100262009626000,"Epic Loon",status-playable;nvdec,playable,2022-07-25 22:06:13.000 -01000FA0149B6000,"EQI",status-playable;nvdec;UE4,playable,2022-10-27 16:42:32.000 -0100E95010058000,"EQQO",UE4;nvdec;status-playable,playable,2021-06-13 23:10:51.000 -01000E8010A98000,"Escape First",status-playable,playable,2020-10-20 22:46:53.000 -010021201296A000,"Escape First 2",status-playable,playable,2021-03-24 11:59:41.000 -0100FEF00F0AA000,"Escape from Chernobyl",status-boots;crash,boots,2022-09-19 21:36:58.000 -010023E013244000,"Escape from Life Inc",status-playable,playable,2021-04-19 17:34:09.000 -010092901203A000,"Escape From Tethys",status-playable,playable,2020-10-14 22:38:25.000 -0100B0F011A84000,"Escape Game Fort Boyard",status-playable,playable,2020-07-12 12:45:43.000 -0100F9600E746000,"ESP Ra.De. Psi",audio;slow;status-ingame,ingame,2024-03-07 15:05:08.000 -010073000FE18000,"Esports powerful pro yakyuu 2020",gpu;status-ingame;crash;Needs More Attention,ingame,2024-04-29 05:34:14.000 -01004F9012FD8000,"Estranged: The Departure",status-playable;nvdec;UE4,playable,2022-10-24 10:37:58.000 -0100CB900B498000,"Eternum Ex",status-playable,playable,2021-01-13 20:28:32.000 -010092501EB2C000,"Europa (Demo)",gpu;status-ingame;crash;UE4,ingame,2024-04-23 10:47:12.000 -01007BE0160D6000,"EVE ghost enemies",gpu;status-ingame,ingame,2023-01-14 03:13:30.000 -010095E01581C000,"even if TEMPEST",gpu;status-ingame,ingame,2023-06-22 23:50:25.000 -010072C010002000,"Event Horizon: Space Defense",status-playable,playable,2020-07-31 20:31:24.000 -0100DCF0093EC000,"Everspace™ - Stellar Edition",status-playable;UE4,playable,2022-08-14 01:16:24.000 -01006F900BF8E000,"Everybody 1-2-Switch!™",services;deadlock;status-nothing,nothing,2023-07-01 05:52:55.000 -010080600B53E000,"Evil Defenders",nvdec;status-playable,playable,2020-09-28 17:11:00.000 -01006A800FA22000,"Evolution Board Game",online;status-playable,playable,2021-01-20 22:37:56.000 -0100F2D00C7DE000,"Exception",status-playable;online-broken,playable,2022-09-20 12:47:10.000 -0100DD30110CC000,"Exit the Gungeon",status-playable,playable,2022-09-22 17:04:43.000 -0100A82013976000,"Exodemon",status-playable,playable,2022-10-27 20:17:52.000 -0100FA800A1F4000,"EXORDER",nvdec;status-playable,playable,2021-04-15 14:17:20.000 -01009B7010B42000,"Explosive Jake",status-boots;crash,boots,2021-11-03 07:48:32.000 -0100EFE00A3C2000,"Eyes: The Horror Game",status-playable,playable,2021-01-20 21:59:46.000 -0100E3D0103CE000,"Fable of Fairy Stones",status-playable,playable,2021-05-05 21:04:54.000 -01004200189F4000,"Factorio",deadlock;status-boots,boots,2024-06-11 19:26:16.000 -010073F0189B6000,"Fae Farm",status-playable,playable,2024-08-25 15:12:12.000 -010069100DB08000,"Faeria",status-menus;nvdec;online-broken,menus,2022-10-04 16:44:41.000 -01008A6009758000,"Fairune Collection",status-playable,playable,2021-06-06 15:29:56.000 -0100F6D00B8F2000,"Fairy Fencer F™: Advent Dark Force",status-ingame;32-bit;crash;nvdec,ingame,2023-04-16 03:53:48.000 -0100CF900FA3E000,"FAIRY TAIL",status-playable;nvdec,playable,2022-10-04 23:00:32.000 -01005A600BE60000,"Fall of Light: Darkest Edition",slow;status-ingame;nvdec,ingame,2024-07-24 04:19:26.000 -0100AA801258C000,"Fallen Legion Revenants",status-menus;crash,menus,2021-11-25 08:53:20.000 -0100D670126F6000,"Famicom Detective Club™: The Girl Who Stands Behind",status-playable;nvdec,playable,2022-10-27 20:41:40.000 -010033F0126F4000,"Famicom Detective Club™: The Missing Heir",status-playable;nvdec,playable,2022-10-27 20:56:23.000 -010060200FC44000,"Family Feud®",status-playable;online-broken,playable,2022-10-10 11:42:21.000 -0100034012606000,"Family Mysteries: Poisonous Promises",audio;status-menus;crash,menus,2021-11-26 12:35:06.000 -010017C012726000,"Fantasy Friends",status-playable,playable,2022-10-17 19:42:39.000 -0100767008502000,"FANTASY HERO ~unsigned legacy~",status-playable,playable,2022-07-26 12:28:52.000 -0100944003820000,"Fantasy Strike",online;status-playable,playable,2021-02-27 01:59:18.000 -01000E2012F6E000,"Fantasy Tavern Sextet -Vol.1 New World Days-",gpu;status-ingame;crash;Needs Update,ingame,2022-12-05 16:48:00.000 -01005C10136CA000,"Fantasy Tavern Sextet -Vol.2 Adventurer's Days-",gpu;slow;status-ingame;crash,ingame,2021-11-06 02:57:29.000 -010022700E7D6000,"FAR: Lone Sails",status-playable,playable,2022-09-06 16:33:05.000 -0100C9E00FD62000,"Farabel",status-playable,playable,2020-08-03 17:47:28.000 -,"Farm Expert 2019 for Nintendo Switch",status-playable,playable,2020-07-09 21:42:57.000 -01000E400ED98000,"Farm Mystery",status-playable;nvdec,playable,2022-09-06 16:46:47.000 -010086B00BB50000,"Farm Together",status-playable,playable,2021-01-19 20:01:19.000 -0100EB600E914000,"Farming Simulator 20",nvdec;status-playable,playable,2021-06-13 10:52:44.000 -0100D04004176000,"Farming Simulator Nintendo Switch Edition",nvdec;status-playable,playable,2021-01-19 14:46:44.000 -0100E99019B3A000,"Fashion Dreamer",status-playable,playable,2023-11-12 06:42:52.000 -01009510001CA000,"FAST RMX",slow;status-ingame;crash;ldn-partial,ingame,2024-06-22 20:48:58.000 -0100BEB015604000,"FATAL FRAME: Maiden of Black Water",status-playable,playable,2023-07-05 16:01:40.000 -0100DAE019110000,"FATAL FRAME: Mask of the Lunar Eclipse",status-playable;Incomplete,playable,2024-04-11 06:01:30.000 -010051400B17A000,"Fate/EXTELLA LINK",ldn-untested;nvdec;status-playable,playable,2021-01-27 00:45:50.000 -010053E002EA2000,"Fate/EXTELLA: The Umbral Star",gpu;status-ingame;nvdec;online-broken;vulkan-backend-bug;opengl-backend-bug,ingame,2023-04-24 23:37:55.000 -0100F6200B7D4000,"fault - milestone one",nvdec;status-playable,playable,2021-03-24 10:41:49.000 -01005AC0068F6000,"Fear Effect Sedna",nvdec;status-playable,playable,2021-01-19 13:10:33.000 -0100F5501CE12000,"Fearmonium",status-boots;crash,boots,2024-03-06 11:26:11.000 -0100E4300CB3E000,"Feather",status-playable,playable,2021-06-03 14:11:27.000 -010003B00D3A2000,"Felix The Reaper",nvdec;status-playable,playable,2020-10-20 23:43:03.000 -0100AA3009738000,"Feudal Alloy",status-playable,playable,2021-01-14 08:48:14.000 -01008D900B984000,"FEZ",gpu;status-ingame,ingame,2021-04-18 17:10:16.000 -01007510040E8000,"FIA European Truck Racing Championship",status-playable;nvdec,playable,2022-09-06 17:51:59.000 -0100F7B002340000,"FIFA 18",gpu;status-ingame;online-broken;ldn-untested,ingame,2022-07-26 12:43:59.000 -0100FFA0093E8000,"FIFA 19",gpu;status-ingame;nvdec;online-broken;ldn-untested,ingame,2022-07-26 13:07:07.000 -01000A001171A000,"FIFA 21 Nintendo Switch™ Legacy Edition",gpu;status-ingame;online-broken,ingame,2023-12-11 22:10:19.000 -0100216014472000,"FIFA 22 Nintendo Switch™ Legacy Edition",gpu;status-ingame,ingame,2024-03-02 14:13:48.000 -01006980127F0000,"Fight Crab",status-playable;online-broken;ldn-untested,playable,2022-10-05 10:24:04.000 -010047E010B3E000,"Fight of Animals",online;status-playable,playable,2020-10-15 15:08:28.000 -0100C7D00E730000,"Fight'N Rage",status-playable,playable,2020-06-16 23:35:19.000 -0100D02014048000,"FIGHTING EX LAYER ANOTHER DASH",status-playable;online-broken;UE4,playable,2024-04-07 10:22:33.000 -0100118009C68000,"Figment",nvdec;status-playable,playable,2021-01-27 19:36:05.000 -010095600AA36000,"Fill-a-Pix: Phil's Epic Adventure",status-playable,playable,2020-12-22 13:48:22.000 -0100C3A00BB76000,"Fimbul",status-playable;nvdec,playable,2022-07-26 13:31:47.000 -0100C8200E942000,"Fin and the Ancient Mystery",nvdec;status-playable,playable,2020-12-17 16:40:39.000 -01000EA014150000,"FINAL FANTASY",status-nothing;crash,nothing,2024-09-05 20:55:30.000 -01006B7014156000,"FINAL FANTASY II",status-nothing;crash,nothing,2024-04-13 19:18:04.000 -01006F000B056000,"FINAL FANTASY IX",audout;nvdec;status-playable,playable,2021-06-05 11:35:00.000 -0100AA201415C000,"FINAL FANTASY V",status-playable,playable,2023-04-26 01:11:55.000 -0100A5B00BDC6000,"FINAL FANTASY VII",status-playable,playable,2022-12-09 17:03:30.000 -01008B900DC0A000,"FINAL FANTASY VIII Remastered",status-playable;nvdec,playable,2023-02-15 10:57:48.000 -0100BC300CB48000,"FINAL FANTASY X/X-2 HD Remaster",gpu;status-ingame,ingame,2022-08-16 20:29:26.000 -0100EB100AB42000,"FINAL FANTASY XII THE ZODIAC AGE",status-playable;opengl;vulkan-backend-bug,playable,2024-08-11 07:01:54.000 -010068F00AA78000,"FINAL FANTASY XV POCKET EDITION HD",status-playable,playable,2021-01-05 17:52:08.000 -0100CE4010AAC000,"FINAL FANTASY® CRYSTAL CHRONICLES™ Remastered Edition",status-playable,playable,2023-04-02 23:39:12.000 -01001BA00AE4E000,"Final Light, The Prison",status-playable,playable,2020-07-31 21:48:44.000 -0100FF100FB68000,"Finding Teddy 2 : Definitive Edition",gpu;status-ingame,ingame,2024-04-19 16:51:33.000 -0100F4E013AAE000,"Fire & Water",status-playable,playable,2020-12-15 15:43:20.000 -0100F15003E64000,"Fire Emblem Warriors",status-playable;nvdec,playable,2023-05-10 01:53:10.000 -010071F0143EA000,"Fire Emblem Warriors: Three Hopes",gpu;status-ingame;nvdec,ingame,2024-05-01 07:07:42.000 -0100A6301214E000,"Fire Emblem™ Engage",status-playable;amd-vendor-bug;mac-bug,playable,2024-09-01 23:37:26.000 -0100A12011CC8000,"Fire Emblem™: Shadow Dragon & the Blade of Light",status-playable,playable,2022-10-17 19:49:14.000 -010055D009F78000,"Fire Emblem™: Three Houses",status-playable;online-broken,playable,2024-09-14 23:53:50.000 -010025C014798000,"Fire: Ungh’s Quest",status-playable;nvdec,playable,2022-10-27 21:41:26.000 -0100434003C58000,"Firefighters – The Simulation",status-playable,playable,2021-02-19 13:32:05.000 -0100BB1009E50000,"Firefighters: Airport Fire Department",status-playable,playable,2021-02-15 19:17:00.000 -0100AC300919A000,"Firewatch",status-playable,playable,2021-06-03 10:56:38.000 -0100BA9012B36000,"Firework",status-playable,playable,2020-12-04 20:20:09.000 -0100DEB00ACE2000,"Fishing Star World Tour",status-playable,playable,2022-09-13 19:08:51.000 -010069800D292000,"Fishing Universe Simulator",status-playable,playable,2021-04-15 14:00:43.000 -0100807008868000,"Fit Boxing",status-playable,playable,2022-07-26 19:24:55.000 -0100E7300AAD4000,"Fitness Boxing",status-playable,playable,2021-04-14 20:33:33.000 -0100073011382000,"Fitness Boxing 2: Rhythm & Exercise",crash;status-ingame,ingame,2021-04-14 20:40:48.000 -0100C7E0134BE000,"Five Dates",nvdec;status-playable,playable,2020-12-11 15:17:11.000 -0100B6200D8D2000,"Five Nights at Freddy's",status-playable,playable,2022-09-13 19:26:36.000 -01004EB00E43A000,"Five Nights at Freddy's 2",status-playable,playable,2023-02-08 15:48:24.000 -010056100E43C000,"Five Nights at Freddy's 3",status-playable,playable,2022-09-13 20:58:07.000 -010083800E43E000,"Five Nights at Freddy's 4",status-playable,playable,2023-08-19 07:28:03.000 -0100F7901118C000,"Five Nights at Freddy's: Help Wanted",status-playable;UE4,playable,2022-09-29 12:40:09.000 -01009060193C4000,"Five Nights at Freddy's: Security Breach",gpu;status-ingame;crash;mac-bug,ingame,2023-04-23 22:33:28.000 -01003B200E440000,"Five Nights at Freddy's: Sister Location",status-playable,playable,2023-10-06 09:00:58.000 -010038200E088000,"Flan",status-ingame;crash;regression,ingame,2021-11-17 07:39:28.000 -01000A0004C50000,"FLASHBACK™",nvdec;status-playable,playable,2020-05-14 13:57:29.000 -0100C53004C52000,"Flat Heroes",gpu;status-ingame,ingame,2022-07-26 19:37:37.000 -0100B54012798000,"Flatland: Prologue",status-playable,playable,2020-12-11 20:41:12.000 -0100307004B4C000,"Flinthook",online;status-playable,playable,2021-03-25 20:42:29.000 -010095A004040000,"Flip Wars",services;status-ingame;ldn-untested,ingame,2022-05-02 15:39:18.000 -01009FB002B2E000,"Flipping Death",status-playable,playable,2021-02-17 16:12:30.000 -0100D1700ACFC000,"Flood of Light",status-playable,playable,2020-05-15 14:15:25.000 -0100DF9005E7A000,"Floor Kids",status-playable;nvdec,playable,2024-08-18 19:38:49.000 -010040700E8FC000,"Florence",status-playable,playable,2020-09-05 01:22:30.000 -0100F5D00CD58000,"Flowlines VS",status-playable,playable,2020-12-17 17:01:53.000 -010039C00E2CE000,"Flux8",nvdec;status-playable,playable,2020-06-19 20:55:11.000 -0100EDA00BBBE000,"Fly O'Clock",status-playable,playable,2020-05-17 13:39:52.000 -0100FC300F4A4000,"Fly Punch Boom!",online;status-playable,playable,2020-06-21 12:06:11.000 -0100419013A8A000,"Flying Hero X",status-menus;crash,menus,2021-11-17 07:46:58.000 -010056000BA1C000,"Fobia",status-playable,playable,2020-12-14 21:05:23.000 -0100F3900D0F0000,"Food Truck Tycoon",status-playable,playable,2022-10-17 20:15:55.000 -01007CF013152000,"Football Manager 2021 Touch",gpu;status-ingame,ingame,2022-10-17 20:08:23.000 -0100EDC01990E000,"Football Manager 2023 Touch",gpu;status-ingame,ingame,2023-08-01 03:40:53.000 -010097F0099B4000,"Football Manager Touch 2018",status-playable,playable,2022-07-26 20:17:56.000 -010069400B6BE000,"For The King",nvdec;status-playable,playable,2021-02-15 18:51:44.000 -01001D200BCC4000,"Forager",status-menus;crash,menus,2021-11-24 07:10:17.000 -0100AE001256E000,"FORECLOSED",status-ingame;crash;Needs More Attention;nvdec,ingame,2022-12-06 14:41:12.000 -010044B00E70A000,"Foregone",deadlock;status-ingame,ingame,2020-12-17 15:26:53.000 -010059E00B93C000,"Forgotton Anne",nvdec;status-playable,playable,2021-02-15 18:28:07.000 -01008EA00405C000,"forma.8",nvdec;status-playable,playable,2020-11-15 01:04:32.000 -010025400AECE000,"Fortnite",services-horizon;status-nothing,nothing,2024-04-06 18:23:25.000 -0100AAE01E39C000,"Fortress Challenge - Fort Boyard",nvdec;slow;status-playable,playable,2020-05-15 13:22:53.000 -0100CA500756C000,"Fossil Hunters",status-playable;nvdec,playable,2022-07-27 11:37:20.000 -01008A100A028000,"FOX n FORESTS",status-playable,playable,2021-02-16 14:27:49.000 -0100D2501001A000,"FoxyLand",status-playable,playable,2020-07-29 20:55:20.000 -01000AC010024000,"FoxyLand 2",status-playable,playable,2020-08-06 14:41:30.000 -01004200099F2000,"Fractured Minds",status-playable,playable,2022-09-13 21:21:40.000 -0100F1A00A5DC000,"FRAMED Collection",status-playable;nvdec,playable,2022-07-27 11:48:15.000 -0100AC40108D8000,"Fred3ric",status-playable,playable,2021-04-15 13:30:31.000 -01000490067AE000,"Frederic 2: Evil Strikes Back",status-playable,playable,2020-07-23 16:44:37.000 -01005B1006988000,"Frederic: Resurrection of Music",nvdec;status-playable,playable,2020-07-23 16:59:53.000 -010082B00EE50000,"Freedom Finger",nvdec;status-playable,playable,2021-06-09 19:31:30.000 -0100EB800B614000,"Freedom Planet",status-playable,playable,2020-05-14 12:23:06.000 -010003F00BD48000,"Friday the 13th: Killer Puzzle",status-playable,playable,2021-01-28 01:33:38.000 -010092A00C4B6000,"Friday the 13th: The Game Ultimate Slasher Edition",status-playable;nvdec;online-broken;UE4,playable,2022-09-06 17:33:27.000 -0100F200178F4000,"FRONT MISSION 1st: Remake",status-playable,playable,2023-06-09 07:44:24.000 -0100861012474000,"Frontline Zed",status-playable,playable,2020-10-03 12:55:59.000 -0100B5300B49A000,"Frost",status-playable,playable,2022-07-27 12:00:36.000 -010038A007AA4000,"FruitFall Crush",status-playable,playable,2020-10-20 11:33:33.000 -01008D800AE4A000,"FullBlast",status-playable,playable,2020-05-19 10:34:13.000 -010002F00CC20000,"FUN! FUN! Animal Park",status-playable,playable,2021-04-14 17:08:52.000 -0100A8F00B3D0000,"FunBox Party",status-playable,playable,2020-05-15 12:07:02.000 -0100E7B00BF24000,"Funghi Explosion",status-playable,playable,2020-11-23 14:17:41.000 -01008E10130F8000,"Funimation",gpu;status-boots,boots,2021-04-08 13:08:17.000 -0100EA501033C000,"Funny Bunny Adventures",status-playable,playable,2020-08-05 13:46:56.000 -01000EC00AF98000,"Furi",status-playable,playable,2022-07-27 12:21:20.000 -0100A6B00D4EC000,"Furwind",status-playable,playable,2021-02-19 19:44:08.000 -0100ECE00C0C4000,"Fury Unleashed",crash;services;status-ingame,ingame,2020-10-18 11:52:40.000 -010070000ED9E000,"Fury Unleashed Demo",status-playable,playable,2020-10-08 20:09:21.000 -0100E1F013674000,"FUSER™",status-playable;nvdec;UE4,playable,2022-10-17 20:58:32.000 -,"Fushigi no Gensokyo Lotus Labyrinth",Needs Update;audio;gpu;nvdec;status-ingame,ingame,2021-01-20 15:30:02.000 -01003C300B274000,"Futari de! Nyanko Daisensou",status-playable,playable,2024-01-05 22:26:52.000 -010055801134E000,"FUZE Player",status-ingame;online-broken;vulkan-backend-bug,ingame,2022-10-18 12:23:53.000 -0100EAD007E98000,"FUZE4 Nintendo Switch",status-playable;vulkan-backend-bug,playable,2022-09-06 19:25:01.000 -010067600F1A0000,"FuzzBall",crash;status-nothing,nothing,2021-03-29 20:13:21.000 -,"G-MODE Archives 06 The strongest ever Julia Miyamoto",status-playable,playable,2020-10-15 13:06:26.000 -0100EB10108EA000,"G.I. Joe: Operation Blackout",UE4;crash;status-boots,boots,2020-11-21 12:37:44.000 -010048600B14E000,"Gal Metal",status-playable,playable,2022-07-27 20:57:48.000 -010024700901A000,"Gal*Gun 2",status-playable;nvdec;UE4,playable,2022-07-27 12:45:37.000 -0100047013378000,"Gal*Gun Returns [ ぎゃる☆がん りたーんず ]",status-playable;nvdec,playable,2022-10-17 23:50:46.000 -0100C9800A454000,"GALAK-Z: Variant S",status-boots;online-broken,boots,2022-07-29 11:59:12.000 -0100C62011050000,"Game Boy™ – Nintendo Switch Online",status-playable,playable,2023-03-21 12:43:48.000 -010012F017576000,"Game Boy™ Advance – Nintendo Switch Online",status-playable,playable,2023-02-16 20:38:15.000 -0100FA5010788000,"Game Builder Garage™",status-ingame,ingame,2024-04-20 21:46:22.000 -0100AF700BCD2000,"Game Dev Story",status-playable,playable,2020-05-20 00:00:38.000 -01006BD00F8C0000,"Game Doraemon Nobita no Shin Kyoryu",gpu;status-ingame,ingame,2023-02-27 02:03:28.000 -01000FA00A4E4000,"Garage",status-playable,playable,2020-05-19 20:59:53.000 -010061E00E8BE000,"Garfield Kart Furious Racing",status-playable;ldn-works;loader-allocator,playable,2022-09-13 21:40:25.000 -0100EA001069E000,"Gates Of Hell",slow;status-playable,playable,2020-10-22 12:44:26.000 -010025500C098000,"Gato Roboto",status-playable,playable,2023-01-20 15:04:11.000 -010065E003FD8000,"Gear.Club Unlimited",status-playable,playable,2021-06-08 13:03:19.000 -010072900AFF0000,"Gear.Club Unlimited 2",status-playable;nvdec;online-broken,playable,2022-07-29 12:52:16.000 -01000F000D9F0000,"Geki Yaba Runner Anniversary Edition",status-playable,playable,2021-02-19 18:59:07.000 -010052A00942A000,"Gekido Kintaro's Revenge",status-playable,playable,2020-10-27 12:44:05.000 -01009D000AF3A000,"Gelly Break Deluxe",UE4;status-playable,playable,2021-03-03 16:04:02.000 -01001A4008192000,"Gem Smashers",nvdec;status-playable,playable,2021-06-08 13:40:51.000 -010014901144C000,"Genetic Disaster",status-playable,playable,2020-06-19 21:41:12.000 -0100D7E0110B2000,"Genkai Tokki Moero Crystal H- 極限凸起 萌情水晶 H - 한계돌파 모에로크리스탈 H",32-bit;status-playable,playable,2022-06-06 00:42:09.000 -010000300C79C000,"GensokyoDefenders",status-playable;online-broken;UE4,playable,2022-07-29 13:48:12.000 -0100AC600EB4C000,"Gensou Rougoku no Kaleidscope",status-menus;crash,menus,2021-11-24 08:45:07.000 -01007FC012FD4000,"Georifters",UE4;crash;nvdec;status-menus,menus,2020-12-04 22:30:50.000 -010058F010296000,"GERRRMS",status-playable,playable,2020-08-15 11:32:52.000 -01006F30129F8000,"Get 10 quest",status-playable,playable,2020-08-03 12:48:39.000 -0100B5B00E77C000,"Get Over Here",status-playable,playable,2022-10-28 11:53:52.000 -0100EEB005ACC000,"Ghost 1.0",status-playable,playable,2021-02-19 20:48:47.000 -010063200C588000,"Ghost Blade HD",status-playable;online-broken,playable,2022-09-13 21:51:21.000 -010057500E744000,"Ghost Grab 3000",status-playable,playable,2020-07-11 18:09:52.000 -010094C00E180000,"Ghost Parade",status-playable,playable,2020-07-14 00:43:54.000 -01004B301108C000,"Ghost Sweeper",status-playable,playable,2022-10-10 12:45:36.000 -010029B018432000,"Ghost Trick: Phantom Detective",status-playable,playable,2023-08-23 14:50:12.000 -010008A00F632000,"Ghostbusters: The Video Game Remastered",status-playable;nvdec,playable,2021-09-17 07:26:57.000 -010090F012916000,"Ghostrunner",UE4;crash;gpu;nvdec;status-ingame,ingame,2020-12-17 13:01:59.000 -0100D6200F2BA000,"Ghosts 'n Goblins Resurrection",status-playable,playable,2023-05-09 12:40:41.000 -01003830092B8000,"Giana Sisters: Twisted Dreams - Owltimate Edition",status-playable,playable,2022-07-29 14:06:12.000 -0100D95012C0A000,"Gibbous - A Cthulhu Adventure",status-playable;nvdec,playable,2022-10-10 12:57:17.000 -010045F00BFC2000,"GIGA WRECKER ALT.",status-playable,playable,2022-07-29 14:13:54.000 -01002C400E526000,"Gigantosaurus The Game",status-playable;UE4,playable,2022-09-27 21:20:00.000 -0100C50007070000,"Ginger: Beyond the Crystal",status-playable,playable,2021-02-17 16:27:00.000 -01006BA013990000,"Girabox",status-playable,playable,2020-12-12 13:55:05.000 -01007E90116CE000,"Giraffe and Annika",UE4;crash;status-ingame,ingame,2020-12-04 22:41:57.000 -01006DD00CC96000,"Girls und Panzer Dream Tank Match DX",status-playable;ldn-untested,playable,2022-09-12 16:07:11.000 -01005CB009E20000,"Glaive: Brick Breaker",status-playable,playable,2020-05-20 12:15:59.000 -0100B6F01227C000,"Glitch's Trip",status-playable,playable,2020-12-17 16:00:57.000 -0100EB501130E000,"Glyph",status-playable,playable,2021-02-08 19:56:51.000 -0100EB8011B0C000,"Gnome More War",status-playable,playable,2020-12-17 16:33:07.000 -010008D00CCEC000,"Gnomes Garden 2",status-playable,playable,2021-02-19 20:08:13.000 -010036C00D0D6000,"Gnomes Garden: Lost King",deadlock;status-menus,menus,2021-11-18 11:14:03.000 -01008EF013A7C000,"Gnosia",status-playable,playable,2021-04-05 17:20:30.000 -01000C800FADC000,"Go All Out!",status-playable;online-broken,playable,2022-09-21 19:16:34.000 -010055A0161F4000,"Go Rally",gpu;status-ingame,ingame,2023-08-16 21:18:23.000 -0100C1800A9B6000,"Go Vacation™",status-playable;nvdec;ldn-works,playable,2024-05-13 19:28:53.000 -0100E6300F854000,"Go! Fish Go!",status-playable,playable,2020-07-27 13:52:28.000 -010032600C8CE000,"Goat Simulator: The GOATY",32-bit;status-playable,playable,2022-07-29 21:02:33.000 -01001C700873E000,"GOD EATER 3",gpu;status-ingame;nvdec,ingame,2022-07-29 21:33:21.000 -0100F3D00B032000,"GOD WARS The Complete Legend",nvdec;status-playable,playable,2020-05-19 14:37:50.000 -0100CFA0111C8000,"Gods Will Fall",status-playable,playable,2021-02-08 16:49:59.000 -0100D82009024000,"Goetia",status-playable,playable,2020-05-19 12:55:39.000 -01004D501113C000,"Going Under",deadlock;nvdec;status-ingame,ingame,2020-12-11 22:29:46.000 -0100126006EF0000,"GOKEN",status-playable,playable,2020-08-05 20:22:38.000 -010013800F0A4000,"Golazo!",status-playable,playable,2022-09-13 21:58:37.000 -01003C000D84C000,"Golem Gates",status-ingame;crash;nvdec;online-broken;UE4,ingame,2022-07-30 11:35:11.000 -0100779004172000,"Golf Story",status-playable,playable,2020-05-14 14:56:17.000 -01006FB00EBE0000,"Golf With Your Friends",status-playable;online-broken,playable,2022-09-29 12:55:11.000 -0100EEC00AA6E000,"Gone Home",status-playable,playable,2022-08-01 11:14:20.000 -01007C2002B3C000,"GoNNER",status-playable,playable,2020-05-19 12:05:02.000 -0100B0500FE4E000,"Good Job!™",status-playable,playable,2021-03-02 13:15:55.000 -01003AD0123A2000,"Good Night, Knight",status-nothing;crash,nothing,2023-07-30 23:38:13.000 -0100F610122F6000,"Good Pizza, Great Pizza",status-playable,playable,2020-12-04 22:59:18.000 -010014C0100C6000,"Goosebumps Dead of Night",gpu;nvdec;status-ingame,ingame,2020-12-10 20:02:16.000 -0100B8000B190000,"Goosebumps The Game",status-playable,playable,2020-05-19 11:56:52.000 -0100F2A005C98000,"Gorogoa",status-playable,playable,2022-08-01 11:55:08.000 -01000C7003FE8000,"GORSD",status-playable,playable,2020-12-04 22:15:21.000 -0100E8D007E16000,"Gotcha Racing 2nd",status-playable,playable,2020-07-23 17:14:04.000 -01001010121DE000,"Gothic Murder: Adventure That Changes Destiny",deadlock;status-ingame;crash,ingame,2022-09-30 23:16:53.000 -01003FF009E60000,"Grab the Bottle",status-playable,playable,2020-07-14 17:06:41.000 -01004D10020F2000,"Graceful Explosion Machine",status-playable,playable,2020-05-19 20:36:55.000 -010038D00EC88000,"Grand Brix Shooter",slow;status-playable,playable,2020-06-24 13:23:54.000 -010038100D436000,"Grand Guilds",UE4;nvdec;status-playable,playable,2021-04-26 12:49:05.000 -0100BE600D07A000,"Grand Prix Story",status-playable,playable,2022-08-01 12:42:23.000 -05B1D2ABD3D30000,"Grand Theft Auto 3",services;status-nothing;crash;homebrew,nothing,2023-05-01 22:01:58.000 -0100E0600BBC8000,"GRANDIA HD Collection",status-boots;crash,boots,2024-08-19 04:29:48.000 -010028200E132000,"Grass Cutter - Mutated Lawns",slow;status-ingame,ingame,2020-05-19 18:27:42.000 -010074E0099FA000,"Grave Danger",status-playable,playable,2020-05-18 17:41:28.000 -010054A013E0C000,"GraviFire",status-playable,playable,2021-04-05 17:13:32.000 -01002C2011828000,"Gravity Rider Zero",gpu;status-ingame;vulkan-backend-bug,ingame,2022-09-29 13:56:13.000 -0100BD800DFA6000,"Greedroid",status-playable,playable,2020-12-14 11:14:32.000 -010068D00AE68000,"GREEN",status-playable,playable,2022-08-01 12:54:15.000 -0100CBB0070EE000,"Green Game: TimeSwapper",nvdec;status-playable,playable,2021-02-19 18:51:55.000 -0100DFE00F002000,"GREEN The Life Algorithm",status-playable,playable,2022-09-27 21:37:13.000 -0100DA7013792000,"Grey Skies: A War of the Worlds Story",status-playable;UE4,playable,2022-10-24 11:13:59.000 -010031200981C000,"Grid Mania",status-playable,playable,2020-05-19 14:11:05.000 -0100197008B52000,"GRIDD: Retroenhanced",status-playable,playable,2020-05-20 11:32:40.000 -0100DC800A602000,"GRID™ Autosport",status-playable;nvdec;online-broken;ldn-untested,playable,2023-03-02 20:14:45.000 -0100B7900B024000,"Grim Fandango Remastered",status-playable;nvdec,playable,2022-08-01 13:55:58.000 -010078E012D80000,"Grim Legends 2: Song of the Dark Swan",status-playable;nvdec,playable,2022-10-18 12:58:45.000 -010009F011F90000,"Grim Legends: The Forsaken Bride",status-playable;nvdec,playable,2022-10-18 13:14:06.000 -01001E200F2F8000,"Grimshade",status-playable,playable,2022-10-02 12:44:20.000 -0100538012496000,"Grindstone",status-playable,playable,2023-02-08 15:54:06.000 -0100459009A2A000,"GRIP",status-playable;nvdec;online-broken;UE4,playable,2022-08-01 15:00:22.000 -0100E1700C31C000,"GRIS",nvdec;status-playable,playable,2021-06-03 13:33:44.000 -01009D7011B02000,"GRISAIA PHANTOM TRIGGER 01&02",status-playable;nvdec,playable,2022-12-04 21:16:06.000 -01005250123B8000,"GRISAIA PHANTOM TRIGGER 03",audout;status-playable,playable,2021-01-31 12:30:47.000 -0100D970123BA000,"GRISAIA PHANTOM TRIGGER 04",audout;status-playable,playable,2021-01-31 12:40:37.000 -01002330123BC000,"GRISAIA PHANTOM TRIGGER 05",audout;nvdec;status-playable,playable,2021-01-31 12:49:59.000 -0100CAF013AE6000,"GRISAIA PHANTOM TRIGGER 5.5",audout;nvdec;status-playable,playable,2021-01-31 12:59:44.000 -010091300FFA0000,"Grizzland",gpu;status-ingame,ingame,2024-07-11 16:28:34.000 -0100EB500D92E000,"GROOVE COASTER WAI WAI PARTY!!!!",status-playable;nvdec;ldn-broken,playable,2021-11-06 14:54:27.000 -01007E100456C000,"Guacamelee! 2",status-playable,playable,2020-05-15 14:56:59.000 -0100BAE00B470000,"Guacamelee! Super Turbo Championship Edition",status-playable,playable,2020-05-13 23:44:18.000 -010089900C9FA000,"Guess the Character",status-playable,playable,2020-05-20 13:14:19.000 -01005DC00D80C000,"Guess the word",status-playable,playable,2020-07-26 21:34:25.000 -01006F80082E4000,"GUILTY GEAR XX ACCENT CORE PLUS R",nvdec;status-playable,playable,2021-01-13 09:28:33.000 -01003C6008940000,"GUNBIRD for Nintendo Switch",32-bit;status-playable,playable,2021-06-04 19:16:01.000 -0100BCB00AE98000,"GUNBIRD2 for Nintendo Switch",status-playable,playable,2020-10-10 14:41:16.000 -,"Gunka o haita neko",gpu;nvdec;status-ingame,ingame,2020-08-25 12:37:56.000 -010061000D318000,"Gunman Clive HD Collection",status-playable,playable,2020-10-09 12:17:35.000 -01006D4003BCE000,"Guns, Gore and Cannoli 2",online;status-playable,playable,2021-01-06 18:43:59.000 -01008C800E654000,"Gunvolt Chronicles Luminous Avenger iX - Retail Version",status-playable,playable,2020-06-16 22:47:07.000 -0100763015C2E000,"Gunvolt Chronicles: Luminous Avenger iX 2",status-nothing;crash;Needs Update,nothing,2022-04-29 15:34:34.000 -01002C8018554000,"Gurimugurimoa OnceMore Demo",status-playable,playable,2022-07-29 22:07:31.000 -0100AC601DCA8000,"GYLT",status-ingame;crash,ingame,2024-03-18 20:16:51.000 -0100822012D76000,"HAAK",gpu;status-ingame,ingame,2023-02-19 14:31:05.000 -01007E100EFA8000,"Habroxia",status-playable,playable,2020-06-16 23:04:42.000 -0100535012974000,"Hades",status-playable;vulkan,playable,2022-10-05 10:45:21.000 -0100618010D76000,"Hakoniwa Explorer Plus",slow;status-ingame,ingame,2021-02-19 16:56:19.000 -0100E0D00C336000,"Halloween Pinball",status-playable,playable,2021-01-12 16:00:46.000 -01006FF014152000,"Hamidashi Creative",gpu;status-ingame,ingame,2021-12-19 15:30:51.000 -01003B9007E86000,"Hammerwatch",status-playable;online-broken;ldn-broken,playable,2022-08-01 16:28:46.000 -01003620068EA000,"Hand of Fate 2",status-playable,playable,2022-08-01 15:44:16.000 -0100973011358000,"Hang The Kings",status-playable,playable,2020-07-28 22:56:59.000 -010066C018E50000,"Happy Animals Mini Golf",gpu;status-ingame,ingame,2022-12-04 19:24:28.000 -0100ECE00D13E000,"Hard West",status-nothing;regression,nothing,2022-02-09 07:45:56.000 -0100D55011D60000,"Hardcore Maze Cube",status-playable,playable,2020-12-04 20:01:24.000 -01002F0011DD4000,"HARDCORE MECHA",slow;status-playable,playable,2020-11-01 15:06:33.000 -01000C90117FA000,"HardCube",status-playable,playable,2021-05-05 18:33:03.000 -0100BB600C096000,"Hardway Party",status-playable,playable,2020-07-26 12:35:07.000 -0100D0500AD30000,"Harvest Life",status-playable,playable,2022-08-01 16:51:45.000 -010016B010FDE000,"Harvest Moon®: One World",status-playable,playable,2023-05-26 09:17:19.000 -0100A280187BC000,"Harvestella",status-playable;UE4;vulkan-backend-bug;mac-bug,playable,2024-02-13 07:04:11.000 -0100E29001298000,"Has-Been Heroes",status-playable,playable,2021-01-13 13:31:48.000 -01001CC00FA1A000,"Hatsune Miku: Project DIVA Mega Mix",audio;status-playable;online-broken,playable,2024-01-07 23:12:57.000 -01009E6014F18000,"Haunted Dawn: The Zombie Apocalypse",status-playable,playable,2022-10-28 12:31:51.000 -010023F008204000,"Haunted Dungeons:Hyakki Castle",status-playable,playable,2020-08-12 14:21:48.000 -0100E2600DBAA000,"Haven",status-playable,playable,2021-03-24 11:52:41.000 -0100EA900FB2C000,"Hayfever",status-playable;loader-allocator,playable,2022-09-22 17:35:41.000 -0100EFE00E1DC000,"Headliner: NoviNews",online;status-playable,playable,2021-03-01 11:36:00.000 -0100A8200C372000,"Headsnatchers",UE4;crash;status-menus,menus,2020-07-14 13:29:14.000 -010067400EA5C000,"Headspun",status-playable,playable,2020-07-31 19:46:47.000 -0100D12008EE4000,"Heart&Slash",status-playable,playable,2021-01-13 20:56:32.000 -010059100D928000,"Heaven Dust",status-playable,playable,2020-05-17 14:02:41.000 -0100FD901000C000,"Heaven's Vault",crash;status-ingame,ingame,2021-02-08 18:22:01.000 -0100B9C012B66000,"Helheim Hassle",status-playable,playable,2020-10-14 11:38:36.000 -0100E4300C278000,"Hell is Other Demons",status-playable,playable,2021-01-13 13:23:02.000 -01000938017E5C00,"Hell Pie0",status-playable;nvdec;UE4,playable,2022-11-03 16:48:46.000 -0100A4600E27A000,"Hell Warders",online;status-playable,playable,2021-02-27 02:31:03.000 -010044500CF8E000,"Hellblade: Senua's Sacrifice",gpu;status-ingame;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-01 19:36:50.000 -010087D0084A8000,"Hello Kitty Kruisers With Sanrio Friends",nvdec;status-playable,playable,2021-06-04 19:08:46.000 -0100FAA00B168000,"Hello Neighbor",status-playable;UE4,playable,2022-08-01 21:32:23.000 -010092B00C4F0000,"Hello Neighbor Hide and Seek",UE4;gpu;slow;status-ingame,ingame,2020-10-24 10:59:57.000 -010024600C794000,"Hellpoint",status-menus,menus,2021-11-26 13:24:20.000 -0100BEA00E63A000,"Hero Express",nvdec;status-playable,playable,2020-08-06 13:23:43.000 -010077D01094C000,"Hero-U: Rogue to Redemption",nvdec;status-playable,playable,2021-03-24 11:40:01.000 -0100D2B00BC54000,"Heroes of Hammerwatch - Ultimate Edition",status-playable,playable,2022-08-01 18:30:21.000 -01001B70080F0000,"HEROINE ANTHEM ZERO episode 1",status-playable;vulkan-backend-bug,playable,2022-08-01 22:02:36.000 -010057300B0DC000,"Heroki",gpu;status-ingame,ingame,2023-07-30 19:30:01.000 -0100C2700E338000,"Heroland",status-playable,playable,2020-08-05 15:35:39.000 -01007AC00E012000,"HexaGravity",status-playable,playable,2021-05-28 13:47:48.000 -01004E800F03C000,"Hidden",slow;status-ingame,ingame,2022-10-05 10:56:53.000 -0100F6A00A684000,"Higurashi no Naku Koro ni Hō",audio;status-ingame,ingame,2021-09-18 14:40:28.000 -0100F8D0129F4000,"Himehibi 1 gakki - Princess Days",status-nothing;crash,nothing,2021-11-03 08:34:19.000 -0100F3D008436000,"Hiragana Pixel Party",status-playable,playable,2021-01-14 08:36:50.000 -01004990132AC000,"HITMAN 3 - Cloud Version",Needs Update;crash;services;status-nothing,nothing,2021-04-18 22:35:07.000 -010083A018262000,"Hitman: Blood Money — Reprisal",deadlock;status-ingame,ingame,2024-09-28 16:28:50.000 -01004B100A5CC000,"Hob: The Definitive Edition",status-playable,playable,2021-01-13 09:39:19.000 -0100F7300ED2C000,"Hoggy2",status-playable,playable,2022-10-10 13:53:35.000 -0100F7E00C70E000,"Hogwarts Legacy",status-ingame;slow,ingame,2024-09-03 19:53:58.000 -0100633007D48000,"Hollow Knight",status-playable;nvdec,playable,2023-01-16 15:44:56.000 -0100F2100061E800,"Hollow0",UE4;gpu;status-ingame,ingame,2021-03-03 23:42:56.000 -0100342009E16000,"Holy Potatoes! What The Hell?!",status-playable,playable,2020-07-03 10:48:56.000 -010071B00C904000,"HoPiKo",status-playable,playable,2021-01-13 20:12:38.000 -010087800EE5A000,"Hopping girl KOHANE Jumping Kingdom: Princess of the Black Rabbit",status-boots;crash,boots,2023-02-19 00:51:21.000 -010086D011EB8000,"Horace",status-playable,playable,2022-10-10 14:03:50.000 -0100001019F6E000,"Horizon Chase 2",deadlock;slow;status-ingame;crash;UE4,ingame,2024-08-19 04:24:06.000 -01009EA00B714000,"Horizon Chase Turbo",status-playable,playable,2021-02-19 19:40:56.000 -0100E4200FA82000,"Horror Pinball Bundle",status-menus;crash,menus,2022-09-13 22:15:34.000 -0100017007980000,"Hotel Transylvania 3 Monsters Overboard",nvdec;status-playable,playable,2021-01-27 18:55:31.000 -0100D0E00E51E000,"Hotline Miami Collection",status-playable;nvdec,playable,2022-09-09 16:41:19.000 -0100BDE008218000,"Hotshot Racing",gpu;status-ingame;nvdec;online-broken;ldn-untested;vulkan-backend-bug,ingame,2024-02-04 21:31:17.000 -0100CAE00EB02000,"House Flipper",status-playable,playable,2021-06-16 18:28:32.000 -0100F6800910A000,"Hover",status-playable;online-broken,playable,2022-09-20 12:54:46.000 -0100A66003384000,"Hulu",status-boots;online-broken,boots,2022-12-09 10:05:00.000 -0100701001D92000,"Human Resource Machine",32-bit;status-playable,playable,2020-12-17 21:47:09.000 -01000CA004DCA000,"Human: Fall Flat",status-playable,playable,2021-01-13 18:36:05.000 -0100E1A00AF40000,"Hungry Shark® World",status-playable,playable,2021-01-13 18:26:08.000 -0100EBA004726000,"Huntdown",status-playable,playable,2021-04-05 16:59:54.000 -010068000CAC0000,"Hunter's Legacy: Purrfect Edition",status-playable,playable,2022-08-02 10:33:31.000 -0100C460040EA000,"Hunting Simulator",status-playable;UE4,playable,2022-08-02 10:54:08.000 -010061F010C3A000,"Hunting Simulator 2",status-playable;UE4,playable,2022-10-10 14:25:51.000 -0100B3300B4AA000,"Hyper Jam",UE4;crash;status-boots,boots,2020-12-15 22:52:11.000 -01003B200B372000,"Hyper Light Drifter - Special Edition",status-playable;vulkan-backend-bug,playable,2023-01-13 15:44:48.000 -01006C500A29C000,"HyperBrawl Tournament",crash;services;status-boots,boots,2020-12-04 23:03:27.000 -0100A8B00F0B4000,"HYPERCHARGE Unboxed",status-playable;nvdec;online-broken;UE4;ldn-untested,playable,2022-09-27 21:52:39.000 -010061400ED90000,"HyperParasite",status-playable;nvdec;UE4,playable,2022-09-27 22:05:44.000 -0100959010466000,"Hypnospace Outlaw",status-ingame;nvdec,ingame,2023-08-02 22:46:49.000 -01002B00111A2000,"Hyrule Warriors: Age of Calamity",gpu;deadlock;slow;status-ingame;crash;nvdec;amd-vendor-bug,ingame,2024-02-28 00:47:00.000 -0100A2C01320E000,"Hyrule Warriors: Age of Calamity - Demo Version",slow;status-playable,playable,2022-10-10 17:37:41.000 -0100AE00096EA000,"Hyrule Warriors: Definitive Edition",services-horizon;status-ingame;nvdec,ingame,2024-06-16 10:34:05.000 -0100849000BDA000,"I Am Setsuna",status-playable,playable,2021-11-28 11:06:11.000 -01001860140B0000,"I Saw Black Clouds",nvdec;status-playable,playable,2021-04-19 17:22:16.000 -0100429006A06000,"I, Zombie",status-playable,playable,2021-01-13 14:53:44.000 -01004E5007E92000,"Ice Age Scrat's Nutty Adventure!",status-playable;nvdec,playable,2022-09-13 22:22:29.000 -010053700A25A000,"Ice Cream Surfer",status-playable,playable,2020-07-29 12:04:07.000 -0100954014718000,"Ice Station Z",status-menus;crash,menus,2021-11-21 20:02:15.000 -0100BE9007E7E000,"ICEY",status-playable,playable,2021-01-14 16:16:04.000 -0100BC60099FE000,"Iconoclasts",status-playable,playable,2021-08-30 21:11:04.000 -01001E700EB28000,"Idle Champions of the Forgotten Realms",online;status-boots,boots,2020-12-17 18:24:57.000 -01002EC014BCA000,"IdolDays",gpu;status-ingame;crash,ingame,2021-12-19 15:31:28.000 -01006550129C6000,"If Found...",status-playable,playable,2020-12-11 13:43:14.000 -01001AC00ED72000,"If My Heart Had Wings",status-playable,playable,2022-09-29 14:54:57.000 -01009F20086A0000,"Ikaruga",status-playable,playable,2023-04-06 15:00:02.000 -010040900AF46000,"Ikenfell",status-playable,playable,2021-06-16 17:18:44.000 -01007BC00E55A000,"Immortal Planet",status-playable,playable,2022-09-20 13:40:43.000 -010079501025C000,"Immortal Realms: Vampire Wars",nvdec;status-playable,playable,2021-06-17 17:41:46.000 -01000F400435A000,"Immortal Redneck",nvdec;status-playable,playable,2021-01-27 18:36:28.000 -01004A600EC0A000,"Immortals Fenyx Rising™",gpu;status-menus;crash,menus,2023-02-24 16:19:55.000 -0100737003190000,"IMPLOSION",status-playable;nvdec,playable,2021-12-12 03:52:13.000 -0100A760129A0000,"In rays of the Light",status-playable,playable,2021-04-07 15:18:07.000 -0100A2101107C000,"Indie Puzzle Bundle Vol 1",status-playable,playable,2022-09-27 22:23:21.000 -010002A00CD68000,"Indiecalypse",nvdec;status-playable,playable,2020-06-11 20:19:09.000 -01001D3003FDE000,"Indivisible",status-playable;nvdec,playable,2022-09-29 15:20:57.000 -01002BD00F626000,"Inertial Drift",status-playable;online-broken,playable,2022-10-11 12:22:19.000 -0100D4300A4CA000,"Infernium",UE4;regression;status-nothing,nothing,2021-01-13 16:36:07.000 -010039C001296000,"Infinite Minigolf",online;status-playable,playable,2020-09-29 12:26:25.000 -01001CB00EFD6000,"Infliction: Extended Cut",status-playable;nvdec;UE4,playable,2022-10-02 13:15:55.000 -0100F1401161E000,"INMOST",status-playable,playable,2022-10-05 11:27:40.000 -0100F200049C8000,"InnerSpace",status-playable,playable,2021-01-13 19:36:14.000 -0100D2D009028000,"INSIDE",status-playable,playable,2021-12-25 20:24:56.000 -0100EC7012D34000,"Inside Grass: A little adventure",status-playable,playable,2020-10-15 15:26:27.000 -010099700D750000,"Instant Sports",status-playable,playable,2022-09-09 12:59:40.000 -010099A011A46000,"Instant Sports Summer Games",gpu;status-menus,menus,2020-09-02 13:39:28.000 -010031B0145B8000,"INSTANT SPORTS TENNIS",status-playable,playable,2022-10-28 16:42:17.000 -010041501005E000,"Interrogation: You will be deceived",status-playable,playable,2022-10-05 11:40:10.000 -01000F700DECE000,"Into the Dead 2",status-playable;nvdec,playable,2022-09-14 12:36:14.000 -01001D0003B96000,"INVERSUS Deluxe",status-playable;online-broken,playable,2022-08-02 14:35:36.000 -0100C5B00FADE000,"Invisible Fist",status-playable,playable,2020-08-08 13:25:52.000 -010031B00C48C000,"Invisible, Inc. Nintendo Switch Edition",crash;status-nothing,nothing,2021-01-29 16:28:13.000 -01005F400E644000,"Invisigun Reloaded",gpu;online;status-ingame,ingame,2021-06-10 12:13:24.000 -010041C00D086000,"Ion Fury",status-ingame;vulkan-backend-bug,ingame,2022-08-07 08:27:51.000 -010095C016C14000,"Iridium",status-playable,playable,2022-08-05 23:19:53.000 -0100AD300B786000,"Iris School of Wizardry -Vinculum Hearts-",status-playable,playable,2022-12-05 13:11:15.000 -0100945012168000,"Iris.Fall",status-playable;nvdec,playable,2022-10-18 13:40:22.000 -01005270118D6000,"Iron Wings",slow;status-ingame,ingame,2022-08-07 08:32:57.000 -01004DB003E6A000,"IRONCAST",status-playable,playable,2021-01-13 13:54:29.000 -0100E5700CD56000,"Irony Curtain: From Matryoshka with Love",status-playable,playable,2021-06-04 20:12:37.000 -010063E0104BE000,"Is It Wrong to Try to Pick Up Girls in a Dungeon? Familia Myth Infinite Combate",status-playable,playable,2020-08-31 13:52:21.000 -0100F06013710000,"ISLAND",status-playable,playable,2021-05-06 15:11:47.000 -010077900440A000,"Island Flight Simulator",status-playable,playable,2021-06-04 19:42:46.000 -0100A2600FCA0000,"Island Saver",nvdec;status-playable,playable,2020-10-23 22:07:02.000 -010065200D192000,"Isoland",status-playable,playable,2020-07-26 13:48:16.000 -0100F5600D194000,"Isoland 2 - Ashes of Time",status-playable,playable,2020-07-26 14:29:05.000 -010001F0145A8000,"Isolomus",services;status-boots,boots,2021-11-03 07:48:21.000 -010068700C70A000,"ITTA",status-playable,playable,2021-06-07 03:15:52.000 -01004070022F0000,"Ittle Dew 2+",status-playable,playable,2020-11-17 11:44:32.000 -0100DEB00F12A000,"IxSHE Tell",status-playable;nvdec,playable,2022-12-02 18:00:42.000 -0100D8E00C874000,"izneo",status-menus;online-broken,menus,2022-08-06 15:56:23.000 -0100CD5008D9E000,"James Pond Codename Robocod",status-playable,playable,2021-01-13 09:48:45.000 -01005F4010AF0000,"Japanese Rail Sim: Journey to Kyoto",nvdec;status-playable,playable,2020-07-29 17:14:21.000 -010002D00EDD0000,"JDM Racing",status-playable,playable,2020-08-03 17:02:37.000 -0100C2700AEB8000,"Jenny LeClue - Detectivu",crash;status-nothing,nothing,2020-12-15 21:07:07.000 -01006E400AE2A000,"Jeopardy!®",audout;nvdec;online;status-playable,playable,2021-02-22 13:53:46.000 -0100E4900D266000,"Jet Kave Adventure",status-playable;nvdec,playable,2022-09-09 14:50:39.000 -0100F3500C70C000,"Jet Lancer",gpu;status-ingame,ingame,2021-02-15 18:15:47.000 -0100A5A00AF26000,"Jettomero: Hero of the Universe",status-playable,playable,2022-08-02 14:46:43.000 -01008330134DA000,"Jiffy",gpu;status-ingame;opengl,ingame,2024-02-03 23:11:24.000 -01001F5006DF6000,"Jim is Moving Out!",deadlock;status-ingame,ingame,2020-06-03 22:05:19.000 -0100F4D00D8BE000,"Jinrui no Ninasama he",status-ingame;crash,ingame,2023-03-07 02:04:17.000 -010038D011F08000,"Jisei: The First Case HD",audio;status-playable,playable,2022-10-05 11:43:33.000 -01007CE00C960000,"Job the Leprechaun",status-playable,playable,2020-06-05 12:10:06.000 -01007090104EC000,"John Wick Hex",status-playable,playable,2022-08-07 08:29:12.000 -01006E4003832000,"Johnny Turbo's Arcade: Bad Dudes",status-playable,playable,2020-12-10 12:30:56.000 -010069B002CDE000,"Johnny Turbo's Arcade: Gate Of Doom",status-playable,playable,2022-07-29 12:17:50.000 -010080D002CC6000,"Johnny Turbo's Arcade: Two Crude Dudes",status-playable,playable,2022-08-02 20:29:50.000 -0100D230069CC000,"Johnny Turbo's Arcade: Wizard Fire",status-playable,playable,2022-08-02 20:39:15.000 -01008120128C2000,"JoJos Bizarre Adventure All-Star Battle R",status-playable,playable,2022-12-03 10:45:10.000 -01008B60117EC000,"Journey to the Savage Planet",status-playable;nvdec;UE4;ldn-untested,playable,2022-10-02 18:48:12.000 -0100C7600F654000,"Juicy Realm",status-playable,playable,2023-02-21 19:16:20.000 -0100B4D00C76E000,"JUMANJI: The Video Game",UE4;crash;status-boots,boots,2020-07-12 13:52:25.000 -0100183010F12000,"JUMP FORCE - Deluxe Edition",status-playable;nvdec;online-broken;UE4,playable,2023-10-01 15:56:05.000 -01003D601014A000,"Jump King",status-playable,playable,2020-06-09 10:12:39.000 -0100B9C012706000,"Jump Rope Challenge",services;status-boots;crash;Needs Update,boots,2023-02-27 01:24:28.000 -0100D87009954000,"Jumping Joe & Friends",status-playable,playable,2021-01-13 17:09:42.000 -010069800D2B4000,"JUNK PLANET",status-playable,playable,2020-11-09 12:38:33.000 -0100CE100A826000,"Jurassic Pinball",status-playable,playable,2021-06-04 19:02:37.000 -010050A011344000,"Jurassic World Evolution: Complete Edition",cpu;status-menus;crash,menus,2023-08-04 18:06:54.000 -0100BCE000598000,"Just Dance 2017®",online;status-playable,playable,2021-03-05 09:46:01.000 -0100BEE017FC0000,"Just Dance 2023",status-nothing,nothing,2023-06-05 16:44:54.000 -010075600AE96000,"Just Dance® 2019",gpu;online;status-ingame,ingame,2021-02-27 17:21:27.000 -0100DDB00DB38000,"Just Dance® 2020",status-playable,playable,2022-01-24 13:31:57.000 -0100EA6014BB8000,"Just Dance® 2022",gpu;services;status-ingame;crash;Needs Update,ingame,2022-10-28 11:01:53.000 -0100AC600CF0A000,"Just Die Already",status-playable;UE4,playable,2022-12-13 13:37:50.000 -01002C301033E000,"Just Glide",status-playable,playable,2020-08-07 17:38:10.000 -0100830008426000,"Just Shapes & Beats",ldn-untested;nvdec;status-playable,playable,2021-02-09 12:18:36.000 -010035A0044E8000,"JYDGE",status-playable,playable,2022-08-02 21:20:13.000 -0100D58012FC2000,"Kagamihara/Justice",crash;status-nothing,nothing,2021-06-21 16:41:29.000 -0100D5F00EC52000,"Kairobotica",status-playable,playable,2021-05-06 12:17:56.000 -0100BDC00A664000,"KAMEN RIDER CLIMAX SCRAMBLE",status-playable;nvdec;ldn-untested,playable,2024-07-03 08:51:11.000 -0100A9801180E000,"KAMEN RIDER memory of heroez / Premium Sound Edition",status-playable,playable,2022-12-06 03:14:26.000 -010085300314E000,"KAMIKO",status-playable,playable,2020-05-13 12:48:57.000 -,"Kangokuto Mary Skelter Finale",audio;crash;status-ingame,ingame,2021-01-09 22:39:28.000 -01007FD00DB20000,"Katakoi Contrast - collection of branch -",status-playable;nvdec,playable,2022-12-09 09:41:26.000 -0100D7000C2C6000,"Katamari Damacy REROLL",status-playable,playable,2022-08-02 21:35:05.000 -0100F9800EDFA000,"KATANA KAMI: A Way of the Samurai Story",slow;status-playable,playable,2022-04-09 10:40:16.000 -010029600D56A000,"Katana ZERO",status-playable,playable,2022-08-26 08:09:09.000 -010038B00F142000,"Kaze and the Wild Masks",status-playable,playable,2021-04-19 17:11:03.000 -0100D7C01115E000,"Keen: One Girl Army",status-playable,playable,2020-12-14 23:19:52.000 -01008D400A584000,"Keep Talking and Nobody Explodes",status-playable,playable,2021-02-15 18:05:21.000 -01004B100BDA2000,"KEMONO FRIENDS PICROSS",status-playable,playable,2023-02-08 15:54:34.000 -0100A8200B15C000,"Kentucky Robo Chicken",status-playable,playable,2020-05-12 20:54:17.000 -0100327005C94000,"Kentucky Route Zero: TV Edition",status-playable,playable,2024-04-09 23:22:46.000 -0100DA200A09A000,"Kero Blaster",status-playable,playable,2020-05-12 20:42:52.000 -0100F680116A2000,"Kholat",UE4;nvdec;status-playable,playable,2021-06-17 11:52:48.000 -0100C0A004C2C000,"Kid Tripp",crash;status-nothing,nothing,2020-10-15 07:41:23.000 -0100FB400D832000,"KILL la KILL -IF",status-playable,playable,2020-06-09 14:47:08.000 -010011B00910C000,"Kill The Bad Guy",status-playable,playable,2020-05-12 22:16:10.000 -0100F2900B3E2000,"Killer Queen Black",ldn-untested;online;status-playable,playable,2021-04-08 12:46:18.000 -,"Kin'iro no Corda Octave",status-playable,playable,2020-09-22 13:23:12.000 -010089000F0E8000,"Kine",status-playable;UE4,playable,2022-09-14 14:28:37.000 -0100E6B00FFBA000,"King Lucas",status-playable,playable,2022-09-21 19:43:23.000 -0100B1300783E000,"King Oddball",status-playable,playable,2020-05-13 13:47:57.000 -01008D80148C8000,"King of Seas",status-playable;nvdec;UE4,playable,2022-10-28 18:29:41.000 -0100515014A94000,"King of Seas Demo",status-playable;nvdec;UE4,playable,2022-10-28 18:09:31.000 -01005D2011EA8000,"KINGDOM HEARTS Melody of Memory",crash;nvdec;status-ingame,ingame,2021-03-03 17:34:12.000 -0100A280121F6000,"Kingdom Rush",status-nothing;32-bit;crash;Needs More Attention,nothing,2022-10-05 12:34:00.000 -01005EF003FF2000,"Kingdom Two Crowns",status-playable,playable,2020-05-16 19:36:21.000 -0100BD9004AB6000,"Kingdom: New Lands",status-playable,playable,2022-08-02 21:48:50.000 -0100EF50132BE000,"Kingdoms of Amalur: Re-Reckoning",status-playable,playable,2023-08-10 13:05:08.000 -010091201605A000,"Kirby and the Forgotten Land (Demo version)",status-playable;demo,playable,2022-08-21 21:03:01.000 -0100227010460000,"Kirby Fighters™ 2",ldn-works;online;status-playable,playable,2021-06-17 13:06:39.000 -0100A8E016236000,"Kirby’s Dream Buffet™",status-ingame;crash;online-broken;Needs Update;ldn-works,ingame,2024-03-03 17:04:44.000 -010091D01A57E000,"Kirby’s Return to Dream Land Deluxe - Demo",status-playable;demo,playable,2023-02-18 17:21:55.000 -01006B601380E000,"Kirby’s Return to Dream Land™ Deluxe",status-playable,playable,2024-05-16 19:58:04.000 -01004D300C5AE000,"Kirby™ and the Forgotten Land",gpu;status-ingame,ingame,2024-03-11 17:11:21.000 -01007E3006DDA000,"Kirby™ Star Allies",status-playable;nvdec,playable,2023-11-15 17:06:19.000 -0100F3A00F4CA000,"Kissed by the Baddest Bidder",gpu;status-ingame;nvdec,ingame,2022-12-04 20:57:11.000 -01000C900A136000,"Kitten Squad",status-playable;nvdec,playable,2022-08-03 12:01:59.000 -010079D00C8AE000,"Klondike Solitaire",status-playable,playable,2020-12-13 16:17:27.000 -0100A6800DE70000,"Knight Squad",status-playable,playable,2020-08-09 16:54:51.000 -010024B00E1D6000,"Knight Squad 2",status-playable;nvdec;online-broken,playable,2022-10-28 18:38:09.000 -0100D51006AAC000,"Knight Terrors",status-playable,playable,2020-05-13 13:09:22.000 -01005F8010D98000,"Knightin'+",status-playable,playable,2020-08-31 18:18:21.000 -010004400B22A000,"Knights of Pen & Paper 2 Deluxiest Edition",status-playable,playable,2020-05-13 14:07:00.000 -0100D3F008746000,"Knights of Pen and Paper +1 Deluxier Edition",status-playable,playable,2020-05-11 21:46:32.000 -010001A00A1F6000,"Knock-Knock",nvdec;status-playable,playable,2021-02-01 20:03:19.000 -01009EF00DDB4000,"Knockout City™",services;status-boots;online-broken,boots,2022-12-09 09:48:58.000 -0100C57019BA2000,"Koa and the Five Pirates of Mara",gpu;status-ingame,ingame,2024-07-11 16:14:44.000 -01001E500401C000,"Koi DX",status-playable,playable,2020-05-11 21:37:51.000 -,"Koi no Hanasaku Hyakkaen",32-bit;gpu;nvdec;status-ingame,ingame,2020-10-03 14:17:10.000 -01005D200C9AA000,"Koloro",status-playable,playable,2022-08-03 12:34:02.000 -0100464009294000,"Kona",status-playable,playable,2022-08-03 12:48:19.000 -010016C011AAA000,"Kono Subarashii Sekai ni Shukufuku o Kono Yokubo no Isho ni Choai o",status-playable,playable,2023-04-26 09:51:08.000 -010088500D5EE000,"KORAL",UE4;crash;gpu;status-menus,menus,2020-11-16 12:41:26.000 -0100EC8004762000,"KORG Gadget for Nintendo Switch",status-playable,playable,2020-05-13 13:57:24.000 -010046600CCA4000,"Kotodama: The 7 Mysteries of Fujisawa",audout;status-playable,playable,2021-02-01 20:28:37.000 -010022801242C000,"KukkoroDays",status-menus;crash,menus,2021-11-25 08:52:56.000 -010035A00DF62000,"KUNAI",status-playable;nvdec,playable,2022-09-20 13:48:34.000 -010060400ADD2000,"Kunio-Kun: The World Classics Collection",online;status-playable,playable,2021-01-29 20:21:46.000 -010037500F282000,"KUUKIYOMI 2: Consider It More! - New Era",status-nothing;crash;Needs Update,nothing,2021-11-02 09:34:40.000 -0100894011F62000,"Kwaidan ~Azuma manor story~",status-playable,playable,2022-10-05 12:50:44.000 -0100830004FB6000,"L.A. Noire",status-playable,playable,2022-08-03 16:49:35.000 -0100732009CAE000,"L.F.O. -Lost Future Omega-",UE4;deadlock;status-boots,boots,2020-10-16 12:16:44.000 -0100F2B0123AE000,"L.O.L. Surprise! Remix: We Rule The World",status-playable,playable,2022-10-11 22:48:03.000 -010026000F662800,"LA-MULANA",gpu;status-ingame,ingame,2022-08-12 01:06:21.000 -0100E5D00F4AE000,"LA-MULANA 1 & 2",status-playable,playable,2022-09-22 17:56:36.000 -010038000F644000,"LA-MULANA 2",status-playable,playable,2022-09-03 13:45:57.000 -010058500B3E0000,"Labyrinth of Refrain: Coven of Dusk",status-playable,playable,2021-02-15 17:38:48.000 -010022D0089AE000,"Labyrinth of the Witch",status-playable,playable,2020-11-01 14:42:37.000 -0100BAB00E8C0000,"Langrisser I & II",status-playable,playable,2021-02-19 15:46:10.000 -0100E7200B272000,"Lanota",status-playable,playable,2019-09-04 01:58:14.000 -01005E000D3D8000,"Lapis x Labyrinth",status-playable,playable,2021-02-01 18:58:08.000 -0100AFE00E882000,"Laraan",status-playable,playable,2020-12-16 12:45:48.000 -0100DA700879C000,"Last Day of June",nvdec;status-playable,playable,2021-06-08 11:35:32.000 -01009E100BDD6000,"LASTFIGHT",status-playable,playable,2022-09-20 13:54:55.000 -0100055007B86000,"Late Shift",nvdec;status-playable,playable,2021-02-01 18:43:58.000 -01004EB00DACE000,"Later Daters Part One",status-playable,playable,2020-07-29 16:35:45.000 -01001730144DA000,"Layers of Fear 2",status-playable;nvdec;UE4,playable,2022-10-28 18:49:52.000 -0100BF5006A7C000,"Layers of Fear: Legacy",nvdec;status-playable,playable,2021-02-15 16:30:41.000 -0100CE500D226000,"Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy - Deluxe Edition",status-playable;nvdec;opengl,playable,2022-09-14 15:01:57.000 -0100FDB00AA80000,"Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy DX+0",gpu;status-ingame;nvdec;opengl,ingame,2022-09-14 15:15:55.000 -01009C100390E000,"League of Evil",online;status-playable,playable,2021-06-08 11:23:27.000 -01002E900CD6E000,"Left-Right : The Mansion",status-playable,playable,2020-05-13 13:02:12.000 -010079901C898000,"Legacy of Kain™ Soul Reaver 1&2 Remastered",status-playable,playable,2025-01-07 05:50:01.000 -01002DB007A96000,"Legend of Kay Anniversary",nvdec;status-playable,playable,2021-01-29 18:38:29.000 -0100ECC00EF3C000,"Legend of the Skyfish",status-playable,playable,2020-06-24 13:04:22.000 -01007E900DFB6000,"Legend of the Tetrarchs",deadlock;status-ingame,ingame,2020-07-10 07:54:03.000 -0100A73006E74000,"Legendary Eleven",status-playable,playable,2021-06-08 12:09:03.000 -0100A7700B46C000,"Legendary Fishing",online;status-playable,playable,2021-04-14 15:08:46.000 -0100739018020000,"LEGO® 2K Drive",gpu;status-ingame;ldn-works,ingame,2024-04-09 02:05:12.000 -01003A30012C0000,"LEGO® CITY Undercover",status-playable;nvdec,playable,2024-09-30 08:44:27.000 -010070D009FEC000,"LEGO® DC Super-Villains",status-playable,playable,2021-05-27 18:10:37.000 -010052A00B5D2000,"LEGO® Harry Potter™ Collection",status-ingame;crash,ingame,2024-01-31 10:28:07.000 -010073C01AF34000,"LEGO® Horizon Adventures™",status-ingame;vulkan-backend-bug;opengl-backend-bug;UE4,ingame,2025-01-07 04:24:56.000 -01001C100E772000,"LEGO® Jurassic World",status-playable,playable,2021-05-27 17:00:20.000 -0100D3A00409E000,"LEGO® Marvel Super Heroes 2",status-nothing;crash,nothing,2023-03-02 17:12:33.000 -01006F600FFC8000,"LEGO® Marvel™ Super Heroes",status-playable,playable,2024-09-10 19:02:19.000 -01007FC00206E000,"LEGO® NINJAGO® Movie Video Game",status-nothing;crash,nothing,2022-08-22 19:12:53.000 -010042D00D900000,"LEGO® Star Wars™: The Skywalker Saga",gpu;slow;status-ingame,ingame,2024-04-13 20:08:46.000 -0100A01006E00000,"LEGO® The Incredibles",status-nothing;crash,nothing,2022-08-03 18:36:59.000 -0100838002AEA000,"LEGO® Worlds",crash;slow;status-ingame,ingame,2020-07-17 13:35:39.000 -0100E7500BF84000,"LEGRAND LEGACY: Tale of the Fatebounds",nvdec;status-playable,playable,2020-07-26 12:27:36.000 -0100A8E00CAA0000,"Leisure Suit Larry - Wet Dreams Don't Dry",status-playable,playable,2022-08-03 19:51:44.000 -010031A0135CA000,"Leisure Suit Larry - Wet Dreams Dry Twice",status-playable,playable,2022-10-28 19:00:57.000 -01003AB00983C000,"Lethal League Blaze",online;status-playable,playable,2021-01-29 20:13:31.000 -01008C300648E000,"Letter Quest Remastered",status-playable,playable,2020-05-11 21:30:34.000 -0100CE301678E800,"Letters - a written adventure",gpu;status-ingame,ingame,2023-02-21 20:12:38.000 -01009A200BE42000,"Levelhead",online;status-ingame,ingame,2020-10-18 11:44:51.000 -0100C960041DC000,"Levels+ : Addictive Puzzle Game",status-playable,playable,2020-05-12 13:51:39.000 -0100C8000F146000,"Liberated",gpu;status-ingame;nvdec,ingame,2024-07-04 04:58:24.000 -01003A90133A6000,"Liberated: Enhanced Edition",gpu;status-ingame;nvdec,ingame,2024-07-04 04:48:48.000 -01004360045C8000,"Lichtspeer: Double Speer Edition",status-playable,playable,2020-05-12 16:43:09.000 -010041F0128AE000,"Liege Dragon",status-playable,playable,2022-10-12 10:27:03.000 -010006300AFFE000,"Life Goes On",status-playable,playable,2021-01-29 19:01:20.000 -0100FD101186C000,"Life is Strange 2",status-playable;UE4,playable,2024-07-04 05:05:58.000 -0100DC301186A000,"Life is Strange Remastered",status-playable;UE4,playable,2022-10-03 16:54:44.000 -010008501186E000,"Life is Strange: Before the Storm Remastered",status-playable,playable,2023-09-28 17:15:44.000 -0100500012AB4000,"Life is Strange: True Colors™",gpu;status-ingame;UE4,ingame,2024-04-08 16:11:52.000 -01003AB012F00000,"Life of Boris: Super Slav",status-ingame,ingame,2020-12-17 11:40:05.000 -0100B3A0135D6000,"Life of Fly",status-playable,playable,2021-01-25 23:41:07.000 -010069A01506E000,"Life of Fly 2",slow;status-playable,playable,2022-10-28 19:26:52.000 -01005B6008132000,"Lifeless Planet: Premiere Edition",status-playable,playable,2022-08-03 21:25:13.000 -010030A006F6E000,"Light Fall",nvdec;status-playable,playable,2021-01-18 14:55:36.000 -010087700D07C000,"Light Tracer",nvdec;status-playable,playable,2021-05-05 19:15:43.000 -01009C8009026000,"LIMBO",cpu;status-boots;32-bit,boots,2023-06-28 15:39:19.000 -0100EDE012B58000,"Linelight",status-playable,playable,2020-12-17 12:18:07.000 -0100FAD00E65E000,"Lines X",status-playable,playable,2020-05-11 15:28:30.000 -010032F01096C000,"Lines XL",status-playable,playable,2020-08-31 17:48:23.000 -0100943010310000,"Little Busters! Converted Edition",status-playable;nvdec,playable,2022-09-29 15:34:56.000 -0100A3F009142000,"Little Dragons Café",status-playable,playable,2020-05-12 00:00:52.000 -010079A00D9E8000,"Little Friends: Dogs & Cats",status-playable,playable,2020-11-12 12:45:51.000 -0100B18001D8E000,"Little Inferno",32-bit;gpu;nvdec;status-ingame,ingame,2020-12-17 21:43:56.000 -0100E7000E826000,"Little Misfortune",nvdec;status-playable,playable,2021-02-23 20:39:44.000 -0100FE0014200000,"Little Mouse's Encyclopedia",status-playable,playable,2022-10-28 19:38:58.000 -01002FC00412C000,"Little Nightmares Complete Edition",status-playable;nvdec;UE4,playable,2022-08-03 21:45:35.000 -010097100EDD6000,"Little Nightmares II",status-playable;UE4,playable,2023-02-10 18:24:44.000 -010093A0135D6000,"Little Nightmares II DEMO",status-playable;UE4;demo;vulkan-backend-bug,playable,2024-05-16 18:47:20.000 -0100535014D76000,"Little Noah: Scion of Paradise",status-playable;opengl-backend-bug,playable,2022-09-14 04:17:13.000 -0100E6D00E81C000,"Little Racer",status-playable,playable,2022-10-18 16:41:13.000 -0100DD700D95E000,"Little Shopping",status-playable,playable,2020-10-03 16:34:35.000 -01000FB00AA90000,"Little Town Hero",status-playable,playable,2020-10-15 23:28:48.000 -01000690085BE000,"Little Triangle",status-playable,playable,2020-06-17 14:46:26.000 -0100CF801776C000,"LIVE A LIVE",status-playable;UE4;amd-vendor-bug,playable,2023-02-05 15:12:07.000 -0100BA000FC9C000,"LocO-SportS",status-playable,playable,2022-09-20 14:09:30.000 -010016C009374000,"Lode Runner Legacy",status-playable,playable,2021-01-10 14:10:28.000 -0100D2C013288000,"Lofi Ping Pong",crash;status-ingame,ingame,2020-12-15 20:09:22.000 -0100B6D016EE6000,"Lone Ruin",status-ingame;crash;nvdec,ingame,2023-01-17 06:41:19.000 -0100A0C00E0DE000,"Lonely Mountains: Downhill",status-playable;online-broken,playable,2024-07-04 05:08:11.000 -010062A0178A8000,"LOOPERS",gpu;slow;status-ingame;crash,ingame,2022-06-17 19:21:45.000 -010064200F7D8000,"Lost Horizon",status-playable,playable,2020-09-01 13:41:22.000 -01005ED010642000,"Lost Horizon 2",nvdec;status-playable,playable,2020-06-16 12:02:12.000 -01005FE01291A000,"Lost in Random™",gpu;status-ingame,ingame,2022-12-18 07:09:28.000 -0100133014510000,"Lost Lands 2: The Four Horsemen",status-playable;nvdec,playable,2022-10-24 16:41:00.000 -0100156014C6A000,"Lost Lands 3: The Golden Curse",status-playable;nvdec,playable,2022-10-24 16:30:00.000 -0100BDD010AC8000,"Lost Lands: Dark Overlord",status-playable,playable,2022-10-03 11:52:58.000 -010054600AC74000,"LOST ORBIT: Terminal Velocity",status-playable,playable,2021-06-14 12:21:12.000 -010046600B76A000,"Lost Phone Stories",services;status-ingame,ingame,2020-04-05 23:17:33.000 -01008AD013A86800,"Lost Ruins",gpu;status-ingame,ingame,2023-02-19 14:09:00.000 -010077B0038B2000,"LOST SPHEAR",status-playable,playable,2021-01-10 06:01:21.000 -0100018013124000,"Lost Words: Beyond the Page",status-playable,playable,2022-10-24 17:03:21.000 -0100D36011AD4000,"Love Letter from Thief X",gpu;status-ingame;nvdec,ingame,2023-11-14 03:55:31.000 -0100F0300B7BE000,"Ludomania",crash;services;status-nothing,nothing,2020-04-03 00:33:47.000 -010048701995E000,"Luigi's Mansion™ 2 HD",status-ingame;ldn-broken;amd-vendor-bug,ingame,2024-09-05 23:47:27.000 -0100DCA0064A6000,"Luigi’s Mansion™ 3",gpu;slow;status-ingame;Needs Update;ldn-works,ingame,2024-09-27 22:17:36.000 -010052B00B194000,"Lumini",status-playable,playable,2020-08-09 20:45:09.000 -0100FF00042EE000,"Lumo",status-playable;nvdec,playable,2022-02-11 18:20:30.000 -0100F3100EB44000,"Lust for Darkness",nvdec;status-playable,playable,2020-07-26 12:09:15.000 -0100F0B00F68E000,"Lust for Darkness: Dawn Edition",nvdec;status-playable,playable,2021-06-16 13:47:46.000 -0100EC2011A80000,"Luxar",status-playable,playable,2021-03-04 21:11:57.000 -0100F2400D434000,"MachiKnights -Blood bagos-",status-playable;nvdec;UE4,playable,2022-09-14 15:08:04.000 -010024A009428000,"Mad Carnage",status-playable,playable,2021-01-10 13:00:07.000 -01005E7013476000,"Mad Father",status-playable,playable,2020-11-12 13:22:10.000 -010061E00EB1E000,"Mad Games Tycoon",status-playable,playable,2022-09-20 14:23:14.000 -01004A200E722000,"Magazine Mogul",status-playable;loader-allocator,playable,2022-10-03 12:05:34.000 -01008E500BF62000,"MagiCat",status-playable,playable,2020-12-11 15:22:07.000 -010032C011356000,"Magicolors",status-playable,playable,2020-08-12 18:39:11.000 -01008C300B624000,"Mahjong Solitaire Refresh",status-boots;crash,boots,2022-12-09 12:02:55.000 -010099A0145E8000,"Mahluk dark demon",status-playable,playable,2021-04-15 13:14:24.000 -01001C100D80E000,"Mainlining",status-playable,playable,2020-06-05 01:02:00.000 -0100D9900F220000,"Maitetsu:Pure Station",status-playable,playable,2022-09-20 15:12:49.000 -0100A78017BD6000,"Makai Senki Disgaea 7",status-playable,playable,2023-10-05 00:22:18.000 -01005A700CC3C000,"Mana Spark",status-playable,playable,2020-12-10 13:41:01.000 -010093D00CB22000,"Maneater",status-playable;nvdec;UE4,playable,2024-05-21 16:11:57.000 -0100361009B1A000,"Manifold Garden",status-playable,playable,2020-10-13 20:27:13.000 -0100C9A00952A000,"Manticore - Galaxy on Fire",status-boots;crash;nvdec,boots,2024-02-04 04:37:24.000 -0100E98002F6E000,"Mantis Burn Racing",status-playable;online-broken;ldn-broken,playable,2024-09-02 02:13:04.000 -01008E800D1FE000,"Marble Power Blast",status-playable,playable,2021-06-04 16:00:02.000 -01001B2012D5E000,"Märchen Forest",status-playable,playable,2021-02-04 21:33:34.000 -0100DA7017C9E000,"Marco & The Galaxy Dragon Demo",gpu;status-ingame;demo,ingame,2023-06-03 13:05:33.000 -01006D0017F7A000,"Mario & Luigi: Brothership",status-ingame;crash;slow;UE4;mac-bug,ingame,2025-01-07 04:00:00.000 -010002C00C270000,"MARIO & SONIC AT THE OLYMPIC GAMES TOKYO 2020",status-ingame;crash;online-broken;ldn-works,ingame,2024-08-23 16:12:55.000 -0100317013770000,"MARIO + RABBIDS SPARKS OF HOPE",gpu;status-ingame;Needs Update,ingame,2024-06-20 19:56:19.000 -010067300059A000,"Mario + Rabbids® Kingdom Battle",slow;status-playable;opengl-backend-bug,playable,2024-05-06 10:16:54.000 -0100C9C00E25C000,"Mario Golf™: Super Rush",gpu;status-ingame,ingame,2024-08-18 21:31:48.000 -0100ED100BA3A000,"Mario Kart Live: Home Circuit™",services;status-nothing;crash;Needs More Attention,nothing,2022-12-07 22:36:52.000 -0100152000022000,"Mario Kart™ 8 Deluxe",32-bit;status-playable;ldn-works;LAN;amd-vendor-bug,playable,2024-09-19 11:55:17.000 -01006FE013472000,"Mario Party™ Superstars",gpu;status-ingame;ldn-works;mac-bug,ingame,2024-05-16 11:23:34.000 -010019401051C000,"Mario Strikers™: Battle League",status-boots;crash;nvdec,boots,2024-05-07 06:23:56.000 -0100BDE00862A000,"Mario Tennis™ Aces",gpu;status-ingame;nvdec;ldn-works;LAN,ingame,2024-09-28 15:54:40.000 -0100B99019412000,"Mario vs. Donkey Kong™",status-playable,playable,2024-05-04 21:22:39.000 -0100D9E01DBB0000,"Mario vs. Donkey Kong™ Demo",status-playable,playable,2024-02-18 10:40:06.000 -01009A700A538000,"Mark of the Ninja: Remastered",status-playable,playable,2022-08-04 15:48:30.000 -010044600FDF0000,"Marooners",status-playable;nvdec;online-broken,playable,2022-10-18 21:35:26.000 -010060700AC50000,"MARVEL ULTIMATE ALLIANCE 3: The Black Order",status-playable;nvdec;ldn-untested,playable,2024-02-14 19:51:51.000 -01003DE00C95E000,"Mary Skelter 2",status-ingame;crash;regression,ingame,2023-09-12 07:37:28.000 -0100113008262000,"Masquerada: Songs and Shadows",status-playable,playable,2022-09-20 15:18:54.000 -01004800197F0000,"Master Detective Archives: Rain Code",gpu;status-ingame,ingame,2024-04-19 20:11:09.000 -0100CC7009196000,"Masters of Anima",status-playable;nvdec,playable,2022-08-04 16:00:09.000 -01004B100A1C4000,"MathLand",status-playable,playable,2020-09-01 15:40:06.000 -0100A8C011F26000,"Max and the book of chaos",status-playable,playable,2020-09-02 12:24:43.000 -01001C9007614000,"Max: The Curse of Brotherhood",status-playable;nvdec,playable,2022-08-04 16:33:04.000 -0100E8B012FBC000,"Maze",status-playable,playable,2020-12-17 16:13:58.000 -0100EEF00CBC0000,"MEANDERS",UE4;gpu;status-ingame,ingame,2021-06-11 19:19:33.000 -0100EC000CE24000,"Mech Rage",status-playable,playable,2020-11-18 12:30:16.000 -0100C4F005EB4000,"Mecho Tales",status-playable,playable,2022-08-04 17:03:19.000 -0100E4600D31A000,"Mechstermination Force",status-playable,playable,2024-07-04 05:39:15.000 -,"Medarot Classics Plus Kabuto Ver",status-playable,playable,2020-11-21 11:31:18.000 -,"Medarot Classics Plus Kuwagata Ver",status-playable,playable,2020-11-21 11:30:40.000 -0100BBC00CB9A000,"Mega Mall Story",slow;status-playable,playable,2022-08-04 17:10:58.000 -0100B0C0086B0000,"Mega Man 11",status-playable,playable,2021-04-26 12:07:53.000 -010038E016264000,"Mega Man Battle Network Legacy Collection Vol. 1",status-playable,playable,2023-04-25 03:55:57.000 -0100734016266000,"Mega Man Battle Network Legacy Collection Vol. 2",status-playable,playable,2023-08-03 18:04:32.000 -01002D4007AE0000,"Mega Man Legacy Collection",gpu;status-ingame,ingame,2021-06-03 18:17:17.000 -0100842008EC4000,"Mega Man Legacy Collection 2",status-playable,playable,2021-01-06 08:47:59.000 -01005C60086BE000,"Mega Man X Legacy Collection",audio;crash;services;status-menus,menus,2020-12-04 04:30:17.000 -010025C00D410000,"Mega Man Zero/ZX Legacy Collection",status-playable,playable,2021-06-14 16:17:32.000 -0100FC700F942000,"Megabyte Punch",status-playable,playable,2020-10-16 14:07:18.000 -010006F011220000,"Megadimension Neptunia VII",32-bit;nvdec;status-playable,playable,2020-12-17 20:56:03.000 -010082B00E8B8000,"Megaquarium",status-playable,playable,2022-09-14 16:50:00.000 -010005A00B312000,"Megaton Rainfall",gpu;status-boots;opengl,boots,2022-08-04 18:29:43.000 -0100EA100DF92000,"Meiji Katsugeki Haikara Ryuuseigumi - Seibai Shimaseu, Yonaoshi Kagyou",32-bit;status-playable;nvdec,playable,2022-12-05 13:19:12.000 -0100B360068B2000,"Mekorama",gpu;status-boots,boots,2021-06-17 16:37:21.000 -01000FA010340000,"Melbits World",status-menus;nvdec;online,menus,2021-11-26 13:51:22.000 -0100F68019636000,"Melon Journey",status-playable,playable,2023-04-23 21:20:01.000 -,"Memories Off -Innocent Fille- for Dearest",status-playable,playable,2020-08-04 07:31:22.000 -010062F011E7C000,"Memory Lane",status-playable;UE4,playable,2022-10-05 14:31:03.000 -0100EBE00D5B0000,"Meow Motors",UE4;gpu;status-ingame,ingame,2020-12-18 00:24:01.000 -0100273008FBC000,"Mercenaries Saga Chronicles",status-playable,playable,2021-01-10 12:48:19.000 -010094500C216000,"Mercenaries Wings: The False Phoenix",crash;services;status-nothing,nothing,2020-05-08 22:42:12.000 -0100F900046C4000,"Mercenary Kings: Reloaded Edition",online;status-playable,playable,2020-10-16 13:05:58.000 -0100E5000D3CA000,"Merchants of Kaidan",status-playable,playable,2021-04-15 11:44:28.000 -01009A500D4A8000,"METAGAL",status-playable,playable,2020-06-05 00:05:48.000 -010047F01AA10000,"METAL GEAR SOLID 3: Snake Eater - Master Collection Version",services-horizon;status-menus,menus,2024-07-24 06:34:06.000 -0100E8F00F6BE000,"METAL MAX Xeno Reborn",status-playable,playable,2022-12-05 15:33:53.000 -01002DE00E5D0000,"Metaloid: Origin",status-playable,playable,2020-06-04 20:26:35.000 -010055200E87E000,"Metamorphosis",UE4;audout;gpu;nvdec;status-ingame,ingame,2021-06-16 16:18:11.000 -0100D4900E82C000,"Metro 2033 Redux",gpu;status-ingame,ingame,2022-11-09 10:53:13.000 -0100F0400E850000,"Metro: Last Light Redux",slow;status-ingame;nvdec;vulkan-backend-bug,ingame,2023-11-01 11:53:52.000 -010012101468C000,"Metroid Prime™ Remastered",gpu;status-ingame;Needs Update;vulkan-backend-bug;opengl-backend-bug,ingame,2024-05-07 22:48:15.000 -010093801237C000,"Metroid™ Dread",status-playable,playable,2023-11-13 04:02:36.000 -0100A1200F20C000,"Midnight Evil",status-playable,playable,2022-10-18 22:55:19.000 -0100C1E0135E0000,"Mighty Fight Federation",online;status-playable,playable,2021-04-06 18:39:56.000 -0100AD701344C000,"Mighty Goose",status-playable;nvdec,playable,2022-10-28 20:25:38.000 -01000E2003FA0000,"MIGHTY GUNVOLT BURST",status-playable,playable,2020-10-19 16:05:49.000 -010060D00AE36000,"Mighty Switch Force! Collection",status-playable,playable,2022-10-28 20:40:32.000 -01003DA010E8A000,"Miitopia™",gpu;services-horizon;status-ingame,ingame,2024-09-06 10:39:13.000 -01007DA0140E8000,"Miitopia™ Demo",services;status-menus;crash;demo,menus,2023-02-24 11:50:58.000 -01004B7009F00000,"Miles & Kilo",status-playable,playable,2020-10-22 11:39:49.000 -0100976008FBE000,"Millie",status-playable,playable,2021-01-26 20:47:19.000 -0100F5700C9A8000,"MIND: Path to Thalamus",UE4;status-playable,playable,2021-06-16 17:37:25.000 -0100D71004694000,"Minecraft",status-ingame;crash;ldn-broken,ingame,2024-09-29 12:08:59.000 -01006C100EC08000,"Minecraft Dungeons",status-playable;nvdec;online-broken;UE4,playable,2024-06-26 22:10:43.000 -01007C6012CC8000,"Minecraft Legends",gpu;status-ingame;crash,ingame,2024-03-04 00:32:24.000 -01006BD001E06000,"Minecraft: Nintendo Switch Edition",status-playable;ldn-broken,playable,2023-10-15 01:47:08.000 -01003EF007ABA000,"Minecraft: Story Mode - Season Two",status-playable;online-broken,playable,2023-03-04 00:30:50.000 -010059C002AC2000,"Minecraft: Story Mode - The Complete Adventure",status-boots;crash;online-broken,boots,2022-08-04 18:56:58.000 -0100B7500F756000,"Minefield",status-playable,playable,2022-10-05 15:03:29.000 -01003560119A6000,"Mini Motor Racing X",status-playable,playable,2021-04-13 17:54:49.000 -0100FB700DE1A000,"Mini Trains",status-playable,playable,2020-07-29 23:06:20.000 -010039200EC66000,"Miniature - The Story Puzzle",status-playable;UE4,playable,2022-09-14 17:18:50.000 -010069200EB80000,"Ministry of Broadcast",status-playable,playable,2022-08-10 00:31:16.000 -0100C3F000BD8000,"Minna de Wai Wai! Spelunker",status-nothing;crash,nothing,2021-11-03 07:17:11.000 -0100FAE010864000,"Minoria",status-playable,playable,2022-08-06 18:50:50.000 -01005AB015994000,"Miss Kobayashi's Dragonmaid Burst Forth!! Choro-gon☆Breath",gpu;status-playable,playable,2022-03-28 02:22:24.000 -0100CFA0138C8000,"Missile Dancer",status-playable,playable,2021-01-31 12:22:03.000 -0100E3601495C000,"Missing Features: 2D",status-playable,playable,2022-10-28 20:52:54.000 -010059200CC40000,"Mist Hunter",status-playable,playable,2021-06-16 13:58:58.000 -0100F65011E52000,"Mittelborg: City of Mages",status-playable,playable,2020-08-12 19:58:06.000 -0100876015D74000,"MLB® The Show™ 22",gpu;slow;status-ingame,ingame,2023-04-25 06:28:43.000 -0100A9F01776A000,"MLB® The Show™ 22 Tech Test",services;status-nothing;crash;Needs Update;demo,nothing,2022-12-09 10:28:34.000 -0100913019170000,"MLB® The Show™ 23",gpu;status-ingame,ingame,2024-07-26 00:56:50.000 -0100E2E01C32E000,"MLB® The Show™ 24",services-horizon;status-nothing,nothing,2024-03-31 04:54:11.000 -010011300F74C000,"MO:Astray",crash;status-ingame,ingame,2020-12-11 21:45:44.000 -010020400BDD2000,"Moai VI: Unexpected Guests",slow;status-playable,playable,2020-10-27 16:40:20.000 -0100D8700B712000,"Modern Combat Blackout",crash;status-nothing,nothing,2021-03-29 19:47:15.000 -010004900D772000,"Modern Tales: Age of Invention",slow;status-playable,playable,2022-10-12 11:20:19.000 -0100B8500D570000,"Moero Chronicle™ Hyper",32-bit;status-playable,playable,2022-08-11 07:21:56.000 -01004EB0119AC000,"Moero Crystal H",32-bit;status-playable;nvdec;vulkan-backend-bug,playable,2023-07-05 12:04:22.000 -0100B46017500000,"MOFUMOFUSENSEN",gpu;status-menus,menus,2024-09-21 21:51:08.000 -01004A400C320000,"Momodora: Reverie Under the Moonlight",deadlock;status-nothing,nothing,2022-02-06 03:47:43.000 -01002CC00BC4C000,"Momonga Pinball Adventures",status-playable,playable,2022-09-20 16:00:40.000 -010093100DA04000,"Momotaro Dentetsu Showa, Heisei, Reiwa mo Teiban!",gpu;status-ingame,ingame,2023-09-22 10:21:46.000 -0100FBD00ED24000,"MONKEY BARRELS",status-playable,playable,2022-09-14 17:28:52.000 -01004C500B8E0000,"Monkey King: Master of the Clouds",status-playable,playable,2020-09-28 22:35:48.000 -01003030161DC000,"Monomals",gpu;status-ingame,ingame,2024-08-06 22:02:51.000 -0100F3A00FB78000,"Mononoke Slashdown",status-menus;crash,menus,2022-05-04 20:55:47.000 -01007430037F6000,"MONOPOLY® for Nintendo Switch™",status-playable;nvdec;online-broken,playable,2024-02-06 23:13:01.000 -01005FF013DC2000,"MONOPOLY® Madness",status-playable,playable,2022-01-29 21:13:52.000 -0100E2D0128E6000,"Monster Blast",gpu;status-ingame,ingame,2023-09-02 20:02:32.000 -01006F7001D10000,"Monster Boy and the Cursed Kingdom",status-playable;nvdec,playable,2022-08-04 20:06:32.000 -01005FC01000E000,"Monster Bugs Eat People",status-playable,playable,2020-07-26 02:05:34.000 -0100742007266000,"Monster Energy Supercross - The Official Videogame",status-playable;nvdec;UE4,playable,2022-08-04 20:25:00.000 -0100F8100B982000,"Monster Energy Supercross - The Official Videogame 2",status-playable;nvdec;UE4;ldn-untested,playable,2022-08-04 21:21:24.000 -010097800EA20000,"Monster Energy Supercross - The Official Videogame 3",UE4;audout;nvdec;online;status-playable,playable,2021-06-14 12:37:54.000 -0100E9900ED74000,"Monster Farm",32-bit;nvdec;status-playable,playable,2021-05-05 19:29:13.000 -0100770008DD8000,"Monster Hunter Generations Ultimate™",32-bit;status-playable;online-broken;ldn-works,playable,2024-03-18 14:35:36.000 -0100B04011742000,"Monster Hunter Rise",gpu;slow;status-ingame;crash;nvdec;online-broken;Needs Update;ldn-works,ingame,2024-08-24 11:04:59.000 -010093A01305C000,"Monster Hunter Rise Demo",status-playable;online-broken;ldn-works;demo,playable,2022-10-18 23:04:17.000 -0100E21011446000,"Monster Hunter Stories 2: Wings of Ruin",services;status-ingame,ingame,2022-07-10 19:27:30.000 -010042501329E000,"MONSTER HUNTER STORIES 2: WINGS OF RUIN Trial Version",status-playable;demo,playable,2022-11-13 22:20:26.000 -,"Monster Hunter XX Demo",32-bit;cpu;status-nothing,nothing,2020-03-22 10:12:28.000 -0100C3800049C000,"Monster Hunter XX Nintendo Switch Ver ( Double Cross )",status-playable,playable,2024-07-21 14:08:09.000 -010088400366E000,"Monster Jam Crush It!",UE4;nvdec;online;status-playable,playable,2021-04-08 19:29:27.000 -010095C00F354000,"Monster Jam Steel Titans",status-menus;crash;nvdec;UE4,menus,2021-11-14 09:45:38.000 -010051B0131F0000,"Monster Jam Steel Titans 2",status-playable;nvdec;UE4,playable,2022-10-24 17:17:59.000 -01004DE00DD44000,"Monster Puzzle",status-playable,playable,2020-09-28 22:23:10.000 -0100A0F00DA68000,"Monster Sanctuary",crash;status-ingame,ingame,2021-04-04 05:06:41.000 -0100D30010C42000,"Monster Truck Championship",slow;status-playable;nvdec;online-broken;UE4,playable,2022-10-18 23:16:51.000 -01004E10142FE000,"Monster wo taoshite tsuyoi ken ya yoroi wo te ni shinasai. Shinde mo akiramezu ni tsuyoku nari nasai. Yuushatai ga maoh wo taosu sono hi wo shinzite imasu. - モンスターを倒して強い剣や鎧を手にしなさい。死んでも諦めずに強くなりなさい。勇者隊が魔王を倒すその日を信じています。",crash;status-ingame,ingame,2021-07-23 10:56:44.000 -010039F00EF70000,"Monstrum",status-playable,playable,2021-01-31 11:07:26.000 -0100C2E00B494000,"Moonfall Ultimate",nvdec;status-playable,playable,2021-01-17 14:01:25.000 -0100E3D014ABC000,"Moorhuhn Jump and Run 'Traps and Treasures'",status-playable,playable,2024-03-08 15:10:02.000 -010045C00F274000,"Moorhuhn Kart 2",status-playable;online-broken,playable,2022-10-28 21:10:35.000 -010040E00F642000,"Morbid: The Seven Acolytes",status-playable,playable,2022-08-09 17:21:58.000 -01004230123E0000,"More Dark",status-playable,playable,2020-12-15 16:01:06.000 -01005DA003E6E000,"Morphies Law",UE4;crash;ldn-untested;nvdec;online;status-menus,menus,2020-11-22 17:05:29.000 -0100776003F0C000,"Morphite",status-playable,playable,2021-01-05 19:40:55.000 -0100F2200C984000,"Mortal Kombat 11",slow;status-ingame;nvdec;online-broken;ldn-broken,ingame,2024-06-19 02:22:17.000 -01006560184E6000,"Mortal Kombat™ 1",gpu;status-ingame,ingame,2024-09-04 15:45:47.000 -010032800D740000,"Mosaic",status-playable,playable,2020-08-11 13:07:35.000 -01002ED00B01C000,"Moto Racer 4",UE4;nvdec;online;status-playable,playable,2021-04-08 19:09:11.000 -01003F200D0F2000,"Moto Rush GT",status-playable,playable,2022-08-05 11:23:55.000 -0100361007268000,"MotoGP™18",status-playable;nvdec;UE4;ldn-untested,playable,2022-08-05 11:41:45.000 -01004B800D0E8000,"MotoGP™19",status-playable;nvdec;online-broken;UE4,playable,2022-08-05 11:54:14.000 -01001FA00FBBC000,"MotoGP™20",status-playable;ldn-untested,playable,2022-09-29 17:58:01.000 -01000F5013820000,"MotoGP™21",gpu;status-ingame;nvdec;online-broken;UE4;ldn-untested,ingame,2022-10-28 21:35:08.000 -010040401D564000,"MotoGP™24",gpu;status-ingame,ingame,2024-05-10 23:41:00.000 -01002A900D6D6000,"Motorsport Manager for Nintendo Switch™",status-playable;nvdec,playable,2022-08-05 12:48:14.000 -01009DB00D6E0000,"Mountain Rescue Simulator",status-playable,playable,2022-09-20 16:36:48.000 -0100C4C00E73E000,"Moving Out",nvdec;status-playable,playable,2021-06-07 21:17:24.000 -0100D3300F110000,"Mr Blaster",status-playable,playable,2022-09-14 17:56:24.000 -0100DCA011262000,"Mr. DRILLER DrillLand",nvdec;status-playable,playable,2020-07-24 13:56:48.000 -010031F002B66000,"Mr. Shifty",slow;status-playable,playable,2020-05-08 15:28:16.000 -01005EF00B4BC000,"Ms. Splosion Man",online;status-playable,playable,2020-05-09 20:45:43.000 -010087C009246000,"Muddledash",services;status-ingame,ingame,2020-05-08 16:46:14.000 -01009D200952E000,"MudRunner - American Wilds",gpu;status-ingame;ldn-untested;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-16 11:40:52.000 -010073E008E6E000,"Mugsters",status-playable,playable,2021-01-28 17:57:17.000 -0100A8400471A000,"MUJO",status-playable,playable,2020-05-08 16:31:04.000 -0100211005E94000,"Mulaka",status-playable,playable,2021-01-28 18:07:20.000 -010038B00B9AE000,"Mummy Pinball",status-playable,playable,2022-08-05 16:08:11.000 -01008E200C5C2000,"Muse Dash",status-playable,playable,2020-06-06 14:41:29.000 -010035901046C000,"Mushroom Quest",status-playable,playable,2020-05-17 13:07:08.000 -0100700006EF6000,"Mushroom Wars 2",nvdec;status-playable,playable,2020-09-28 15:26:08.000 -010046400F310000,"Music Racer",status-playable,playable,2020-08-10 08:51:23.000 -,"Musou Orochi 2 Ultimate",crash;nvdec;status-boots,boots,2021-04-09 19:39:16.000 -0100F6000EAA8000,"Must Dash Amigos",status-playable,playable,2022-09-20 16:45:56.000 -01007B6006092000,"MUSYNX",status-playable,playable,2020-05-08 14:24:43.000 -0100C3E00ACAA000,"Mutant Football League: Dynasty Edition",status-playable;online-broken,playable,2022-08-05 17:01:51.000 -01004BE004A86000,"Mutant Mudds Collection",status-playable,playable,2022-08-05 17:11:38.000 -0100E6B00DEA4000,"Mutant Year Zero: Road to Eden - Deluxe Edition",status-playable;nvdec;UE4,playable,2022-09-10 13:31:10.000 -0100161009E5C000,"MX Nitro: Unleashed",status-playable,playable,2022-09-27 22:34:33.000 -0100218011E7E000,"MX vs ATV All Out",status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-10-25 19:51:46.000 -0100D940063A0000,"MXGP3 - The Official Motocross Videogame",UE4;gpu;nvdec;status-ingame,ingame,2020-12-16 14:00:20.000 -01002C6012334000,"My Aunt is a Witch",status-playable,playable,2022-10-19 09:21:17.000 -0100F6F0118B8000,"My Butler",status-playable,playable,2020-06-27 13:46:23.000 -010031200B94C000,"My Friend Pedro",nvdec;status-playable,playable,2021-05-28 11:19:17.000 -01000D700BE88000,"My Girlfriend is a Mermaid!?",nvdec;status-playable,playable,2020-05-08 13:32:55.000 -010039000B68E000,"MY HERO ONE'S JUSTICE",UE4;crash;gpu;online;status-menus,menus,2020-12-10 13:11:04.000 -01007E700DBF6000,"MY HERO ONE'S JUSTICE 2",UE4;gpu;nvdec;status-ingame,ingame,2020-12-18 14:08:47.000 -0100E4701373E000,"My Hidden Things",status-playable,playable,2021-04-15 11:26:06.000 -0100872012B34000,"My Little Dog Adventure",gpu;status-ingame,ingame,2020-12-10 17:47:37.000 -01008C600395A000,"My Little Riding Champion",slow;status-playable,playable,2020-05-08 17:00:53.000 -010086B00C784000,"My Lovely Daughter: ReBorn",status-playable,playable,2022-11-24 17:25:32.000 -0100E7700C284000,"My Memory of Us",status-playable,playable,2022-08-20 11:03:14.000 -010028F00ABAE000,"My Riding Stables - Life with Horses",status-playable,playable,2022-08-05 21:39:07.000 -010042A00FBF0000,"My Riding Stables 2: A New Adventure",status-playable,playable,2021-05-16 14:14:59.000 -0100E25008E68000,"My Time at Portia",status-playable,playable,2021-05-28 12:42:55.000 -0100158011A08000,"My Universe - Cooking Star Restaurant",status-playable,playable,2022-10-19 10:00:44.000 -0100F71011A0A000,"My Universe - Fashion Boutique",status-playable;nvdec,playable,2022-10-12 14:54:19.000 -0100CD5011A02000,"My Universe - PET CLINIC CATS & DOGS",status-boots;crash;nvdec,boots,2022-02-06 02:05:53.000 -01006C301199C000,"My Universe - School Teacher",nvdec;status-playable,playable,2021-01-21 16:02:52.000 -01000D5005974000,"N++ (NPLUSPLUS)",status-playable,playable,2022-08-05 21:54:58.000 -0100A6F00AC70000,"NAIRI: Tower of Shirin",nvdec;status-playable,playable,2020-08-09 19:49:12.000 -010002F001220000,"NAMCO MUSEUM",status-playable;ldn-untested,playable,2024-08-13 07:52:21.000 -0100DAA00AEE6000,"NAMCO MUSEUM™ ARCADE PAC™",status-playable,playable,2021-06-07 21:44:50.000 -,"NAMCOT COLLECTION",audio;status-playable,playable,2020-06-25 13:35:22.000 -010072B00BDDE000,"Narcos: Rise of the Cartels",UE4;crash;nvdec;status-boots,boots,2021-03-22 13:18:47.000 -01006BB00800A000,"NARUTO SHIPPUDEN: Ultimate Ninja STORM 3 Full Burst",status-playable;nvdec,playable,2024-06-16 14:58:05.000 -010084D00CF5E000,"NARUTO SHIPPUDEN™: Ultimate Ninja® STORM 4 ROAD TO BORUTO",status-playable,playable,2024-06-29 13:04:22.000 -0100D2D0190A4000,"NARUTO X BORUTO Ultimate Ninja STORM CONNECTIONS",services-horizon;status-nothing,nothing,2024-07-25 05:16:48.000 -0100715007354000,"NARUTO: Ultimate Ninja STORM",status-playable;nvdec,playable,2022-08-06 14:10:31.000 -0100545016D5E000,"NASCAR Rivals",status-ingame;crash;Incomplete,ingame,2023-04-21 01:17:47.000 -0100103011894000,"Naught",UE4;status-playable,playable,2021-04-26 13:31:45.000 -01001AE00C1B2000,"NBA 2K Playgrounds 2",status-playable;nvdec;online-broken;UE4;vulkan-backend-bug,playable,2022-08-06 14:40:38.000 -0100760002048000,"NBA 2K18",gpu;status-ingame;ldn-untested,ingame,2022-08-06 14:17:51.000 -01001FF00B544000,"NBA 2K19",crash;ldn-untested;services;status-nothing,nothing,2021-04-16 13:07:21.000 -0100E24011D1E000,"NBA 2K21",gpu;status-boots,boots,2022-10-05 15:31:51.000 -0100ACA017E4E800,"NBA 2K23",status-boots,boots,2023-10-10 23:07:14.000 -010006501A8D8000,"NBA 2K24 Kobe Bryant Edition",cpu;gpu;status-boots,boots,2024-08-11 18:23:08.000 -010002900294A000,"NBA Playgrounds",status-playable;nvdec;online-broken;UE4,playable,2022-08-06 17:06:59.000 -0100F5A008126000,"NBA Playgrounds - Enhanced Edition",status-playable;nvdec;online-broken;UE4,playable,2022-08-06 16:13:44.000 -0100BBC00E4F8000,"Need a packet?",status-playable,playable,2020-08-12 16:09:01.000 -010029B0118E8000,"Need for Speed™ Hot Pursuit Remastered",status-playable;online-broken,playable,2024-03-20 21:58:02.000 -010023500B0BA000,"Nefarious",status-playable,playable,2020-12-17 03:20:33.000 -01008390136FC000,"Negative: The Way of Shinobi",nvdec;status-playable,playable,2021-03-24 11:29:41.000 -010065F00F55A000,"Neighbours back From Hell",status-playable;nvdec,playable,2022-10-12 15:36:48.000 -0100B4900AD3E000,"NEKOPARA Vol.1",status-playable;nvdec,playable,2022-08-06 18:25:54.000 -010012900C782000,"NEKOPARA Vol.2",status-playable,playable,2020-12-16 11:04:47.000 -010045000E418000,"NEKOPARA Vol.3",status-playable,playable,2022-10-03 12:49:04.000 -010049F013656000,"NEKOPARA Vol.4",crash;status-ingame,ingame,2021-01-17 01:47:18.000 -01006ED00BC76000,"Nelke & the Legendary Alchemists ~Ateliers of the New World~",status-playable,playable,2021-01-28 19:39:42.000 -01005F000B784000,"Nelly Cootalot: The Fowl Fleet",status-playable,playable,2020-06-11 20:55:42.000 -01001AB0141A8000,"Neo : The World Ends with You (DEMO)- 新すばらしきこのせかい (体験版)",crash;status-ingame,ingame,2021-07-18 07:29:18.000 -0100EBB00D2F4000,"Neo Cab",status-playable,playable,2021-04-24 00:27:58.000 -010040000DB98000,"Neo Cab Demo",crash;status-boots,boots,2020-06-16 00:14:00.000 -010006D0128B4000,"NEOGEO POCKET COLOR SELECTION Vol.1",status-playable,playable,2023-07-08 20:55:36.000 -0100BAB01113A000,"Neon Abyss",status-playable,playable,2022-10-05 15:59:44.000 -010075E0047F8000,"Neon Chrome",status-playable,playable,2022-08-06 18:38:34.000 -010032000EAC6000,"Neon Drive",status-playable,playable,2022-09-10 13:45:48.000 -0100B9201406A000,"Neon White",status-ingame;crash,ingame,2023-02-02 22:25:06.000 -0100743008694000,"Neonwall",status-playable;nvdec,playable,2022-08-06 18:49:52.000 -01001A201331E000,"Neoverse Trinity Edition",status-playable,playable,2022-10-19 10:28:03.000 -01000B2011352000,"Nerdook Bundle Vol. 1",gpu;slow;status-ingame,ingame,2020-10-07 14:27:10.000 -01008B0010160000,"Nerved",status-playable;UE4,playable,2022-09-20 17:14:03.000 -0100BA0004F38000,"NeuroVoider",status-playable,playable,2020-06-04 18:20:05.000 -0100C20012A54000,"Nevaeh",gpu;nvdec;status-ingame,ingame,2021-06-16 17:29:03.000 -010039801093A000,"Never Breakup",status-playable,playable,2022-10-05 16:12:12.000 -0100F79012600000,"Neverending Nightmares",crash;gpu;status-boots,boots,2021-04-24 01:43:35.000 -0100A9600EDF8000,"Neverlast",slow;status-ingame,ingame,2020-07-13 23:55:19.000 -010013700DA4A000,"Neverwinter Nights: Enhanced Edition",gpu;status-menus;nvdec,menus,2024-09-30 02:59:19.000 -01004C200100E000,"New Frontier Days ~Founding Pioneers~",status-playable,playable,2020-12-10 12:45:07.000 -0100F4300BF2C000,"New Pokémon Snap™",status-playable,playable,2023-01-15 23:26:57.000 -010017700B6C2000,"New Super Lucky's Tale",status-playable,playable,2024-03-11 14:14:10.000 -0100EA80032EA000,"New Super Mario Bros.™ U Deluxe",32-bit;status-playable,playable,2023-10-08 02:06:37.000 -0100B9500E886000,"Newt One",status-playable,playable,2020-10-17 21:21:48.000 -01005A5011A44000,"Nexomon: Extinction",status-playable,playable,2020-11-30 15:02:22.000 -0100B69012EC6000,"Nexoria: Dungeon Rogue Heroes",gpu;status-ingame,ingame,2021-10-04 18:41:29.000 -0100271004570000,"Next Up Hero",online;status-playable,playable,2021-01-04 22:39:36.000 -0100E5600D446000,"Ni no Kuni: Wrath of the White Witch",status-boots;32-bit;nvdec,boots,2024-07-12 04:52:59.000 -0100EDD00D530000,"Nice Slice",nvdec;status-playable,playable,2020-06-17 15:13:27.000 -01000EC010BF4000,"Niche - a genetics survival game",nvdec;status-playable,playable,2020-11-27 14:01:11.000 -010010701AFB2000,"Nickelodeon All-Star Brawl 2",status-playable,playable,2024-06-03 14:15:01.000 -0100D6200933C000,"Nickelodeon Kart Racers",status-playable,playable,2021-01-07 12:16:49.000 -010058800F860000,"Nicky - The Home Alone Golf Ball",status-playable,playable,2020-08-08 13:45:39.000 -0100A95012668000,"Nicole",status-playable;audout,playable,2022-10-05 16:41:44.000 -0100B8E016F76000,"NieR:Automata The End of YoRHa Edition",slow;status-ingame;crash,ingame,2024-05-17 01:06:34.000 -0100F3A0095A6000,"Night Call",status-playable;nvdec,playable,2022-10-03 12:57:00.000 -0100921006A04000,"Night in the Woods",status-playable,playable,2022-12-03 20:17:54.000 -0100D8500A692000,"Night Trap - 25th Anniversary Edition",status-playable;nvdec,playable,2022-08-08 13:16:14.000 -01005F4009112000,"Nightmare Boy: The New Horizons of Reigns of Dreams, a Metroidvania journey with little rusty nightmares, the empire of knight final boss",status-playable,playable,2021-01-05 15:52:29.000 -01006E700B702000,"Nightmares from the Deep 2: The Siren`s Call",status-playable;nvdec,playable,2022-10-19 10:58:53.000 -0100628004BCE000,"Nights of Azure 2: Bride of the New Moon",status-menus;crash;nvdec;regression,menus,2022-11-24 16:00:39.000 -010042300C4F6000,"Nightshade/百花百狼",nvdec;status-playable,playable,2020-05-10 19:43:31.000 -0100AA0008736000,"Nihilumbra",status-playable,playable,2020-05-10 16:00:12.000 -0100D03003F0E000,"Nine Parchments",status-playable;ldn-untested,playable,2022-08-07 12:32:08.000 -0100E2F014F46000,"NINJA GAIDEN Σ",status-playable;nvdec,playable,2022-11-13 16:27:02.000 -0100696014F4A000,"NINJA GAIDEN Σ2",status-playable;nvdec,playable,2024-07-31 21:53:48.000 -01002AF014F4C000,"NINJA GAIDEN: Master Collection",status-playable;nvdec,playable,2023-08-11 08:25:31.000 -010088E003A76000,"Ninja Shodown",status-playable,playable,2020-05-11 12:31:21.000 -010081D00A480000,"Ninja Striker!",status-playable,playable,2020-12-08 19:33:29.000 -0100CCD0073EA000,"Ninjala",status-boots;online-broken;UE4,boots,2024-07-03 20:04:49.000 -010003C00B868000,"Ninjin: Clash of Carrots",status-playable;online-broken,playable,2024-07-10 05:12:26.000 -0100746010E4C000,"NinNinDays",status-playable,playable,2022-11-20 15:17:29.000 -0100C9A00ECE6000,"Nintendo 64™ – Nintendo Switch Online",gpu;status-ingame;vulkan,ingame,2024-04-23 20:21:07.000 -0100D870045B6000,"Nintendo Entertainment System™ - Nintendo Switch Online",status-playable;online,playable,2022-07-01 15:45:06.000 -0100C4B0034B2000,"Nintendo Labo Toy-Con 01 Variety Kit",gpu;status-ingame,ingame,2022-08-07 12:56:07.000 -01001E9003502000,"Nintendo Labo Toy-Con 03 Vehicle Kit",services;status-menus;crash,menus,2022-08-03 17:20:11.000 -0100165003504000,"Nintendo Labo Toy-Con 04 VR Kit",services;status-boots;crash,boots,2023-01-17 22:30:24.000 -01009AB0034E0000,"Nintendo Labo™ Toy-Con 02: Robot Kit",gpu;status-ingame,ingame,2022-08-07 13:03:19.000 -0100D2F00D5C0000,"Nintendo Switch™ Sports",deadlock;status-boots,boots,2024-09-10 14:20:24.000 -01000EE017182000,"Nintendo Switch™ Sports Online Play Test",gpu;status-ingame,ingame,2022-03-16 07:44:12.000 -010037200C72A000,"Nippon Marathon",nvdec;status-playable,playable,2021-01-28 20:32:46.000 -010020901088A000,"Nirvana Pilot Yume",status-playable,playable,2022-10-29 11:49:49.000 -01009B400ACBA000,"No Heroes Here",online;status-playable,playable,2020-05-10 02:41:57.000 -0100853015E86000,"No Man's Sky",gpu;status-ingame,ingame,2024-07-25 05:18:17.000 -0100F0400F202000,"No More Heroes",32-bit;status-playable,playable,2022-09-13 07:44:27.000 -010071400F204000,"No More Heroes 2: Desperate Struggle",32-bit;status-playable;nvdec,playable,2022-11-19 01:38:13.000 -01007C600EB42000,"No More Heroes 3",gpu;status-ingame;UE4,ingame,2024-03-11 17:06:19.000 -01009F3011004000,"No Straight Roads",status-playable;nvdec,playable,2022-10-05 17:01:38.000 -0100F7D00A1BC000,"NO THING",status-playable,playable,2021-01-04 19:06:01.000 -0100542012884000,"Nongunz: Doppelganger Edition",status-playable,playable,2022-10-29 12:00:39.000 -010016E011EFA000,"Norman's Great Illusion",status-playable,playable,2020-12-15 19:28:24.000 -01001A500AD6A000,"Norn9 ~Norn + Nonette~ LOFN",status-playable;nvdec;vulkan-backend-bug,playable,2022-12-09 09:29:16.000 -01004840086FE000,"NORTH",nvdec;status-playable,playable,2021-01-05 16:17:44.000 -0100A9E00D97A000,"Northgard",status-menus;crash,menus,2022-02-06 02:05:35.000 -01008AE019614000,"nOS new Operating System",status-playable,playable,2023-03-22 16:49:08.000 -0100CB800B07E000,"NOT A HERO: SUPER SNAZZY EDITION",status-playable,playable,2021-01-28 19:31:24.000 -01004D500D9BE000,"Not Not - A Brain Buster",status-playable,playable,2020-05-10 02:05:26.000 -0100DAF00D0E2000,"Not Tonight: Take Back Control Edition",status-playable;nvdec,playable,2022-10-19 11:48:47.000 -0100343013248000,"Nubarron: The adventure of an unlucky gnome",status-playable,playable,2020-12-17 16:45:17.000 -01005140089F6000,"Nuclien",status-playable,playable,2020-05-10 05:32:55.000 -010002700C34C000,"Numbala",status-playable,playable,2020-05-11 12:01:07.000 -010020500C8C8000,"Number Place 10000",gpu;status-menus,menus,2021-11-24 09:14:23.000 -010003701002C000,"Nurse Love Syndrome",status-playable,playable,2022-10-13 10:05:22.000 -0000000000000000,"nx-hbmenu",status-boots;Needs Update;homebrew,boots,2024-04-06 22:05:32.000 -,"nxquake2",services;status-nothing;crash;homebrew,nothing,2022-08-04 23:14:04.000 -010049F00EC30000,"Nyan Cat: Lost in Space",online;status-playable,playable,2021-06-12 13:22:03.000 -01002E6014FC4000,"O---O",status-playable,playable,2022-10-29 12:12:14.000 -010074600CC7A000,"OBAKEIDORO!",nvdec;online;status-playable,playable,2020-10-16 16:57:34.000 -01002A000C478000,"Observer",UE4;gpu;nvdec;status-ingame,ingame,2021-03-03 20:19:45.000 -01007D7001D0E000,"Oceanhorn - Monster of Uncharted Seas",status-playable,playable,2021-01-05 13:55:22.000 -01006CB010840000,"Oceanhorn 2: Knights of the Lost Realm",status-playable,playable,2021-05-21 18:26:10.000 -010096B00A08E000,"Octocopter: Double or Squids",status-playable,playable,2021-01-06 01:30:16.000 -0100CAB006F54000,"Octodad: Dadliest Catch",crash;status-boots,boots,2021-04-23 15:26:12.000 -0100A3501946E000,"OCTOPATH TRAVELER II",gpu;status-ingame;amd-vendor-bug,ingame,2024-09-22 11:39:20.000 -010057D006492000,"Octopath Traveler™",UE4;crash;gpu;status-ingame,ingame,2020-08-31 02:34:36.000 -010084300C816000,"Odallus: The Dark Call",status-playable,playable,2022-08-08 12:37:58.000 -0100BB500EE3C000,"Oddworld: Munch's Oddysee",gpu;nvdec;status-ingame,ingame,2021-06-17 12:11:50.000 -01005E700ABB8000,"Oddworld: New 'n' Tasty",nvdec;status-playable,playable,2021-06-17 17:51:32.000 -0100D210177C6000,"ODDWORLD: SOULSTORM",services-horizon;status-boots;crash,boots,2024-08-18 13:13:26.000 -01002EA00ABBA000,"Oddworld: Stranger's Wrath",status-menus;crash;nvdec;loader-allocator,menus,2021-11-23 09:23:21.000 -010029F00C876000,"Odium to the Core",gpu;status-ingame,ingame,2021-01-08 14:03:52.000 -01006F5013202000,"Off And On Again",status-playable,playable,2022-10-29 19:46:26.000 -01003CD00E8BC000,"Offroad Racing - Buggy X ATV X Moto",status-playable;online-broken;UE4,playable,2022-09-14 18:53:22.000 -01003B900AE12000,"Oh My Godheads: Party Edition",status-playable,playable,2021-04-15 11:04:11.000 -0100F45006A00000,"Oh...Sir! The Hollywood Roast",status-ingame,ingame,2020-12-06 00:42:30.000 -010030B00B2F6000,"OK K.O.! Let’s Play Heroes",nvdec;status-playable,playable,2021-01-11 18:41:02.000 -0100276009872000,"OKAMI HD",status-playable;nvdec,playable,2024-04-05 06:24:58.000 -01006AB00BD82000,"OkunoKA",status-playable;online-broken,playable,2022-08-08 14:41:51.000 -0100CE2007A86000,"Old Man's Journey",nvdec;status-playable,playable,2021-01-28 19:16:52.000 -0100C3D00923A000,"Old School Musical",status-playable,playable,2020-12-10 12:51:12.000 -010099000BA48000,"Old School Racer 2",status-playable,playable,2020-10-19 12:11:26.000 -0100E0200B980000,"OlliOlli: Switch Stance",gpu;status-boots,boots,2024-04-25 08:36:37.000 -0100F9D00C186000,"Olympia Soiree",status-playable,playable,2022-12-04 21:07:12.000 -0100A8B00E14A000,"Olympic Games Tokyo 2020 – The Official Video Game™",ldn-untested;nvdec;online;status-playable,playable,2021-01-06 01:20:24.000 -01001D600E51A000,"Omega Labyrinth Life",status-playable,playable,2021-02-23 21:03:03.000 -,"Omega Vampire",nvdec;status-playable,playable,2020-10-17 19:15:35.000 -0100CDC00C40A000,"Omensight: Definitive Edition",UE4;crash;nvdec;status-ingame,ingame,2020-07-26 01:45:14.000 -01006DB00D970000,"OMG Zombies!",32-bit;status-playable,playable,2021-04-12 18:04:45.000 -010014E017B14000,"OMORI",status-playable,playable,2023-01-07 20:21:02.000 -,"Once Upon A Coma",nvdec;status-playable,playable,2020-08-01 12:09:39.000 -0100BD3006A02000,"One More Dungeon",status-playable,playable,2021-01-06 09:10:58.000 -010076600FD64000,"One Person Story",status-playable,playable,2020-07-14 11:51:02.000 -0100774009CF6000,"ONE PIECE Pirate Warriors 3 Deluxe Edition",nvdec;status-playable,playable,2020-05-10 06:23:52.000 -01008FE00E2F6000,"ONE PIECE: PIRATE WARRIORS 4",status-playable;online-broken;ldn-untested,playable,2022-09-27 22:55:46.000 -0100574002AF4000,"ONE PIECE: Unlimited World Red Deluxe Edition",status-playable,playable,2020-05-10 22:26:32.000 -0100EEA00E3EA000,"One-Way Ticket",UE4;status-playable,playable,2020-06-20 17:20:49.000 -0100463013246000,"Oneiros",status-playable,playable,2022-10-13 10:17:22.000 -010057C00D374000,"Oniken",status-playable,playable,2022-09-10 14:22:38.000 -010037900C814000,"Oniken: Unstoppable Edition",status-playable,playable,2022-08-08 14:52:06.000 -0100416008A12000,"Onimusha: Warlords",nvdec;status-playable,playable,2020-07-31 13:08:39.000 -0100CF4011B2A000,"OniNaki",nvdec;status-playable,playable,2021-02-27 21:52:42.000 -010074000BE8E000,"oOo: Ascension",status-playable,playable,2021-01-25 14:13:34.000 -0100D5400BD90000,"Operación Triunfo 2017",services;status-ingame;nvdec,ingame,2022-08-08 15:06:42.000 -01006CF00CFA4000,"Operencia: The Stolen Sun",UE4;nvdec;status-playable,playable,2021-06-08 13:51:07.000 -01004A200BE82000,"OPUS Collection",status-playable,playable,2021-01-25 15:24:04.000 -010049C0075F0000,"OPUS: The Day We Found Earth",nvdec;status-playable,playable,2021-01-21 18:29:31.000 -0100F9A012892000,"Ord.",status-playable,playable,2020-12-14 11:59:06.000 -010061D00DB74000,"Ori and the Blind Forest: Definitive Edition",status-playable;nvdec;online-broken,playable,2022-09-14 19:58:13.000 -010005800F46E000,"Ori and the Blind Forest: Definitive Edition Demo",status-playable,playable,2022-09-10 14:40:12.000 -01008DD013200000,"Ori and the Will of the Wisps",status-playable,playable,2023-03-07 00:47:13.000 -01006C70102EA000,"Orn: The Tiny Forest Sprite",UE4;gpu;status-ingame,ingame,2020-08-07 14:25:30.000 -0100E5900F49A000,"Othercide",status-playable;nvdec,playable,2022-10-05 19:04:38.000 -01006AA00EE44000,"Otokomizu",status-playable,playable,2020-07-13 21:00:44.000 -01006AF013A9E000,"Otti: The House Keeper",status-playable,playable,2021-01-31 12:11:24.000 -01000320060AC000,"OTTTD: Over The Top Tower Defense",slow;status-ingame,ingame,2020-10-10 19:31:07.000 -010097F010FE6000,"Our Two Bedroom Story",gpu;status-ingame;nvdec,ingame,2023-10-10 17:41:20.000 -0100D5D00C6BE000,"Our World Is Ended.",nvdec;status-playable,playable,2021-01-19 22:46:57.000 -01005A700A166000,"OUT OF THE BOX",status-playable,playable,2021-01-28 01:34:27.000 -0100D9F013102000,"Outbreak Lost Hope",crash;status-boots,boots,2021-04-26 18:01:23.000 -01006EE013100000,"Outbreak The Nightmare Chronicles",status-playable,playable,2022-10-13 10:41:57.000 -0100A0D013464000,"Outbreak: Endless Nightmares",status-playable,playable,2022-10-29 12:35:49.000 -0100C850130FE000,"Outbreak: Epidemic",status-playable,playable,2022-10-13 10:27:31.000 -0100B450130FC000,"Outbreak: The New Nightmare",status-playable,playable,2022-10-19 15:42:07.000 -0100B8900EFA6000,"Outbuddies DX",gpu;status-ingame,ingame,2022-08-04 22:39:24.000 -0100DE70085E8000,"Outlast 2",status-ingame;crash;nvdec,ingame,2022-01-22 22:28:05.000 -01008D4007A1E000,"Outlast: Bundle of Terror",status-playable;nvdec;loader-allocator;vulkan-backend-bug,playable,2024-01-27 04:44:26.000 -01009B900401E000,"Overcooked Special Edition",status-playable,playable,2022-08-08 20:48:52.000 -01006FD0080B2000,"Overcooked! 2",status-playable;ldn-untested,playable,2022-08-08 16:48:10.000 -0100F28011892000,"Overcooked! All You Can Eat",ldn-untested;online;status-playable,playable,2021-04-15 10:33:52.000 -0100D7F00EC64000,"Overlanders",status-playable;nvdec;UE4,playable,2022-09-14 20:15:06.000 -01008EA00E816000,"OVERPASS™",status-playable;online-broken;UE4;ldn-untested,playable,2022-10-17 15:29:47.000 -0100647012F62000,"Override 2: Super Mech League",status-playable;online-broken;UE4,playable,2022-10-19 15:56:04.000 -01008A700F7EE000,"Override: Mech City Brawl - Super Charged Mega Edition",status-playable;nvdec;online-broken;UE4,playable,2022-09-20 17:33:32.000 -0100F8600E21E000,"Overwatch® 2",deadlock;status-boots,boots,2022-09-14 20:22:22.000 -01005F000CC18000,"OVERWHELM",status-playable,playable,2021-01-21 18:37:18.000 -0100BC2004FF4000,"Owlboy",status-playable,playable,2020-10-19 14:24:45.000 -0100AD9012510000,"PAC-MAN™ 99",gpu;status-ingame;online-broken,ingame,2024-04-23 00:48:25.000 -010024C001224000,"PAC-MAN™ CHAMPIONSHIP EDITION 2 PLUS",status-playable,playable,2021-01-19 22:06:18.000 -011123900AEE0000,"Paladins",online;status-menus,menus,2021-01-21 19:21:37.000 -0100F0D004CAE000,"PAN-PAN A tiny big adventure",audout;status-playable,playable,2021-01-25 14:42:00.000 -010083700B730000,"Pang Adventures",status-playable,playable,2021-04-10 12:16:59.000 -010006E00DFAE000,"Pantsu Hunter: Back to the 90s",status-playable,playable,2021-02-19 15:12:27.000 -0100C6A00E94A000,"Panzer Dragoon: Remake",status-playable,playable,2020-10-04 04:03:55.000 -01004AE0108E0000,"Panzer Paladin",status-playable,playable,2021-05-05 18:26:00.000 -010004500DE50000,"Paper Dolls Original",UE4;crash;status-boots,boots,2020-07-13 20:26:21.000 -0100A3900C3E2000,"Paper Mario™: The Origami King",audio;status-playable;Needs Update,playable,2024-08-09 18:27:40.000 -0100ECD018EBE000,"Paper Mario™: The Thousand-Year Door",gpu;status-ingame;intel-vendor-bug;slow,ingame,2025-01-07 04:27:35.000 -01006AD00B82C000,"Paperbound Brawlers",status-playable,playable,2021-01-25 14:32:15.000 -0100DC70174E0000,"Paradigm Paradox",status-playable;vulkan-backend-bug,playable,2022-12-03 22:28:13.000 -01007FB010DC8000,"Paradise Killer",status-playable;UE4,playable,2022-10-05 19:33:05.000 -010063400B2EC000,"Paranautical Activity",status-playable,playable,2021-01-25 13:49:19.000 -01006B5012B32000,"Part Time UFO™",status-ingame;crash,ingame,2023-03-03 03:13:05.000 -01007FC00A040000,"Party Arcade",status-playable;online-broken;UE4;ldn-untested,playable,2022-08-09 12:32:53.000 -0100B8E00359E000,"Party Golf",status-playable;nvdec,playable,2022-08-09 12:38:30.000 -010022801217E000,"Party Hard 2",status-playable;nvdec,playable,2022-10-05 20:31:48.000 -010027D00F63C000,"Party Treats",status-playable,playable,2020-07-02 00:05:00.000 -01001E500EA16000,"Path of Sin: Greed",status-menus;crash,menus,2021-11-24 08:00:00.000 -010031F006E76000,"Pato Box",status-playable,playable,2021-01-25 15:17:52.000 -01001F201121E000,"PAW Patrol Mighty Pups Save Adventure Bay",status-playable,playable,2022-10-13 12:17:55.000 -0100360016800000,"PAW Patrol: Grand Prix",gpu;status-ingame,ingame,2024-05-03 16:16:11.000 -0100CEC003A4A000,"PAW Patrol: On a Roll!",nvdec;status-playable,playable,2021-01-28 21:14:49.000 -01000C4015030000,"Pawapoke R",services-horizon;status-nothing,nothing,2024-05-14 14:28:32.000 -0100A56006CEE000,"Pawarumi",status-playable;online-broken,playable,2022-09-10 15:19:33.000 -0100274004052000,"PAYDAY 2",status-playable;nvdec;online-broken;ldn-untested,playable,2022-08-09 12:56:39.000 -010085700ABC8000,"PBA Pro Bowling",status-playable;nvdec;online-broken;UE4,playable,2022-09-14 23:00:49.000 -0100F95013772000,"PBA Pro Bowling 2021",status-playable;online-broken;UE4,playable,2022-10-19 16:46:40.000 -010072800CBE8000,"PC Building Simulator",status-playable,playable,2020-06-12 00:31:58.000 -010002100CDCC000,"Peaky Blinders: Mastermind",status-playable,playable,2022-10-19 16:56:35.000 -010028A0048A6000,"Peasant Knight",status-playable,playable,2020-12-22 09:30:50.000 -0100C510049E0000,"Penny-Punching Princess",status-playable,playable,2022-08-09 13:37:05.000 -0100CA901AA9C000,"Penny’s Big Breakaway",status-playable;amd-vendor-bug,playable,2024-05-27 07:58:51.000 -0100563005B70000,"Perception",UE4;crash;nvdec;status-menus,menus,2020-12-18 11:49:23.000 -010011700D1B2000,"Perchang",status-playable,playable,2021-01-25 14:19:52.000 -010089F00A3B4000,"Perfect Angle",status-playable,playable,2021-01-21 18:48:45.000 -01005CD012DC0000,"Perky Little Things",status-boots;crash;vulkan,boots,2024-08-04 07:22:46.000 -01005EB013FBA000,"Persephone",status-playable,playable,2021-03-23 22:39:19.000 -0100A0300FC3E000,"Perseverance",status-playable,playable,2020-07-13 18:48:27.000 -010062B01525C000,"Persona 4 Golden",status-playable,playable,2024-08-07 17:48:07.000 -01005CA01580E000,"Persona 5 Royal",gpu;status-ingame,ingame,2024-08-17 21:45:15.000 -010087701B092000,"Persona 5 Tactica",status-playable,playable,2024-04-01 22:21:03.000 -,"Persona 5: Scramble",deadlock;status-boots,boots,2020-10-04 03:22:29.000 -0100801011C3E000,"Persona® 5 Strikers",status-playable;nvdec;mac-bug,playable,2023-09-26 09:36:01.000 -010044400EEAE000,"Petoons Party",nvdec;status-playable,playable,2021-03-02 21:07:58.000 -010053401147C000,"PGA TOUR 2K21",deadlock;status-ingame;nvdec,ingame,2022-10-05 21:53:50.000 -0100DDD00C0EA000,"Phantaruk",status-playable,playable,2021-06-11 18:09:54.000 -0100063005C86000,"Phantom Breaker: Battle Grounds Overdrive",audio;status-playable;nvdec,playable,2024-02-29 14:20:35.000 -010096F00E5B0000,"Phantom Doctrine",status-playable;UE4,playable,2022-09-15 10:51:50.000 -0100C31005A50000,"Phantom Trigger",status-playable,playable,2022-08-09 14:27:30.000 -0100CB000A142000,"Phoenix Wright: Ace Attorney Trilogy",status-playable,playable,2023-09-15 22:03:12.000 -0100DA400F624000,"PHOGS!",online;status-playable,playable,2021-01-18 15:18:37.000 -0100BF1003B9A000,"Physical Contact: 2048",slow;status-playable,playable,2021-01-25 15:18:32.000 -01008110036FE000,"Physical Contact: SPEED",status-playable,playable,2022-08-09 14:40:46.000 -010077300A86C000,"PIANISTA",status-playable;online-broken,playable,2022-08-09 14:52:56.000 -010012100E8DC000,"PICROSS LORD OF THE NAZARICK",status-playable,playable,2023-02-08 15:54:56.000 -0100C9600A88E000,"PICROSS S2",status-playable,playable,2020-10-15 12:01:40.000 -010079200D330000,"PICROSS S3",status-playable,playable,2020-10-15 11:55:27.000 -0100C250115DC000,"PICROSS S4",status-playable,playable,2020-10-15 12:33:46.000 -0100AC30133EC000,"PICROSS S5",status-playable,playable,2022-10-17 18:51:42.000 -010025901432A000,"PICROSS S6",status-playable,playable,2022-10-29 17:52:19.000 -01009B2016104000,"PICROSS S7",status-playable,playable,2022-02-16 12:51:25.000 -010043B00E1CE000,"PictoQuest",status-playable,playable,2021-02-27 15:03:16.000 -0100D06003056000,"Piczle Lines DX",UE4;crash;nvdec;status-menus,menus,2020-11-16 04:21:31.000 -010017600B532000,"Piczle Lines DX 500 More Puzzles!",UE4;status-playable,playable,2020-12-15 23:42:51.000 -01000FD00D5CC000,"Pig Eat Ball",services;status-ingame,ingame,2021-11-30 01:57:45.000 -01001CB0106F8000,"Pikmin 3 Deluxe Demo",32-bit;crash;demo;gpu;status-ingame,ingame,2021-06-16 18:38:07.000 -0100E0B019974000,"Pikmin 4 Demo",gpu;status-ingame;nvdec;UE4;demo;amd-vendor-bug,ingame,2023-09-22 21:41:08.000 -0100AA80194B0000,"Pikmin™ 1",audio;status-ingame,ingame,2024-05-28 18:56:11.000 -0100D680194B2000,"Pikmin™ 1+2",gpu;status-ingame,ingame,2023-07-31 08:53:41.000 -0100F4C009322000,"Pikmin™ 3 Deluxe",gpu;status-ingame;32-bit;nvdec;Needs Update,ingame,2024-09-03 00:28:26.000 -0100B7C00933A000,"Pikmin™ 4",gpu;status-ingame;crash;UE4,ingame,2024-08-26 03:39:08.000 -0100D6200E130000,"Pillars of Eternity: Complete Edition",status-playable,playable,2021-02-27 00:24:21.000 -01007A500B0B2000,"Pilot Sports",status-playable,playable,2021-01-20 15:04:17.000 -0100DA70186D4000,"Pinball FX",status-playable,playable,2024-05-03 17:09:11.000 -0100DB7003828000,"Pinball FX3",status-playable;online-broken,playable,2022-11-11 23:49:07.000 -01002BA00D662000,"Pine",slow;status-ingame,ingame,2020-07-29 16:57:39.000 -010041100B148000,"Pinstripe",status-playable,playable,2020-11-26 10:40:40.000 -01002B20174EE000,"Piofiore: Episodio 1926",status-playable,playable,2022-11-23 18:36:05.000 -01009240117A2000,"Piofiore: Fated Memories",nvdec;status-playable,playable,2020-11-30 14:27:50.000 -0100EA2013BCC000,"Pixel Game Maker Series Puzzle Pedestrians",status-playable,playable,2022-10-24 20:15:50.000 -0100859013CE6000,"Pixel Game Maker Series Werewolf Princess Kaguya",crash;services;status-nothing,nothing,2021-03-26 00:23:07.000 -010060A00F5E8000,"Pixel Gladiator",status-playable,playable,2020-07-08 02:41:26.000 -010000E00E612000,"Pixel Puzzle Makeout League",status-playable,playable,2022-10-13 12:34:00.000 -0100382011002000,"PixelJunk Eden 2",crash;status-ingame,ingame,2020-12-17 11:55:52.000 -0100E4D00A690000,"PixelJunk™ Monsters 2",status-playable,playable,2021-06-07 03:40:01.000 -01004A900C352000,"Pizza Titan Ultra",nvdec;status-playable,playable,2021-01-20 15:58:42.000 -05000FD261232000,"Pizza Tower",status-ingame;crash,ingame,2024-09-16 00:21:56.000 -0100FF8005EB2000,"Plague Road",status-playable,playable,2022-08-09 15:27:14.000 -010030B00C316000,"Planescape: Torment and Icewind Dale: Enhanced Editions",cpu;status-boots;32-bit;crash;Needs Update,boots,2022-09-10 03:58:26.000 -010003C0099EE000,"PLANET ALPHA",UE4;gpu;status-ingame,ingame,2020-12-16 14:42:20.000 -01007EA019CFC000,"Planet Cube: Edge",status-playable,playable,2023-03-22 17:10:12.000 -0100F0A01F112000,"planetarian: The Reverie of a Little Planet & Snow Globe",status-playable,playable,2020-10-17 20:26:20.000 -010087000428E000,"Plantera Deluxe",status-playable,playable,2022-08-09 15:36:28.000 -0100C56010FD8000,"Plants vs. Zombies: Battle for Neighborville™ Complete Edition",gpu;audio;status-boots;crash,boots,2024-09-02 12:58:14.000 -0100E5B011F48000,"PLOID SAGA",status-playable,playable,2021-04-19 16:58:45.000 -01009440095FE000,"Pode",nvdec;status-playable,playable,2021-01-25 12:58:35.000 -010086F0064CE000,"Poi: Explorer Edition",nvdec;status-playable,playable,2021-01-21 19:32:00.000 -0100EB6012FD2000,"Poison Control",status-playable,playable,2021-05-16 14:01:54.000 -010072400E04A000,"Pokémon Café ReMix",status-playable,playable,2021-08-17 20:00:04.000 -01003D200BAA2000,"Pokémon Mystery Dungeon™: Rescue Team DX",status-playable;mac-bug,playable,2024-01-21 00:16:32.000 -01008DB008C2C000,"Pokémon Shield + Pokémon Shield Expansion Pass",deadlock;status-ingame;crash;online-broken;ldn-works;LAN,ingame,2024-08-12 07:20:22.000 -0100ABF008968000,"Pokémon Sword + Pokémon Sword Expansion Pass",deadlock;status-ingame;crash;online-broken;ldn-works;LAN,ingame,2024-08-26 15:40:37.000 -01009AD008C4C000,"Pokémon: Let's Go, Pikachu! demo",slow;status-playable;demo,playable,2023-11-26 11:23:20.000 -0100000011D90000,"Pokémon™ Brilliant Diamond",gpu;status-ingame;ldn-works,ingame,2024-08-28 13:26:35.000 -010015F008C54000,"Pokémon™ HOME",Needs Update;crash;services;status-menus,menus,2020-12-06 06:01:51.000 -01001F5010DFA000,"Pokémon™ Legends: Arceus",gpu;status-ingame;Needs Update;ldn-works,ingame,2024-09-19 10:02:02.000 -01005D100807A000,"Pokémon™ Quest",status-playable,playable,2022-02-22 16:12:32.000 -0100A3D008C5C000,"Pokémon™ Scarlet",gpu;status-ingame;nvdec;ldn-works;amd-vendor-bug,ingame,2023-12-14 13:18:29.000 -01008F6008C5E000,"Pokémon™ Violet",gpu;status-ingame;nvdec;ldn-works;amd-vendor-bug;mac-bug,ingame,2024-07-30 02:51:48.000 -0100187003A36000,"Pokémon™: Let’s Go, Eevee!",status-ingame;crash;nvdec;online-broken;ldn-broken,ingame,2024-06-01 15:03:04.000 -010003F003A34000,"Pokémon™: Let’s Go, Pikachu!",status-ingame;crash;nvdec;online-broken;ldn-broken,ingame,2024-03-15 07:55:41.000 -0100B3F000BE2000,"Pokkén Tournament™ DX",status-playable;nvdec;ldn-works;opengl-backend-bug;LAN;amd-vendor-bug;intel-vendor-bug,playable,2024-07-18 23:11:08.000 -010030D005AE6000,"Pokkén Tournament™ DX Demo",status-playable;demo;opengl-backend-bug,playable,2022-08-10 12:03:19.000 -0100A3500B4EC000,"Polandball: Can Into Space",status-playable,playable,2020-06-25 15:13:26.000 -0100EAB00605C000,"Poly Bridge",services;status-playable,playable,2020-06-08 23:32:41.000 -010017600B180000,"Polygod",slow;status-ingame;regression,ingame,2022-08-10 14:38:14.000 -010074B00ED32000,"Polyroll",gpu;status-boots,boots,2021-07-01 16:16:50.000 -010096B01179A000,"Ponpu",status-playable,playable,2020-12-16 19:09:34.000 -01005C5011086000,"Pooplers",status-playable,playable,2020-11-02 11:52:10.000 -01007EF013CA0000,"Port Royale 4",status-menus;crash;nvdec,menus,2022-10-30 14:34:06.000 -01007BB017812000,"Portal",status-playable,playable,2024-06-12 03:48:29.000 -0100ABD01785C000,"Portal 2",gpu;status-ingame,ingame,2023-02-20 22:44:15.000 -010050D00FE0C000,"Portal Dogs",status-playable,playable,2020-09-04 12:55:46.000 -0100437004170000,"Portal Knights",ldn-untested;online;status-playable,playable,2021-05-27 19:29:04.000 -01005FC010EB2000,"Potata: Fairy Flower",nvdec;status-playable,playable,2020-06-17 09:51:34.000 -01000A4014596000,"Potion Party",status-playable,playable,2021-05-06 14:26:54.000 -0100E1E00CF1A000,"Power Rangers: Battle for the Grid",status-playable,playable,2020-06-21 16:52:42.000 -0100D1C01C194000,"Powerful Pro Baseball 2024-2025",gpu;status-ingame,ingame,2024-08-25 06:40:48.000 -01008E100E416000,"PowerSlave Exhumed",gpu;status-ingame,ingame,2023-07-31 23:19:10.000 -010054F01266C000,"Prehistoric Dude",gpu;status-ingame,ingame,2020-10-12 12:38:48.000 -,"Pretty Princess Magical Coordinate",status-playable,playable,2020-10-15 11:43:41.000 -01007F00128CC000,"Pretty Princess Party",status-playable,playable,2022-10-19 17:23:58.000 -010009300D278000,"Preventive Strike",status-playable;nvdec,playable,2022-10-06 10:55:51.000 -0100210019428000,"Prince of Persia The Lost Crown",status-ingame;crash,ingame,2024-06-08 21:31:58.000 -01007A3009184000,"Princess Peach™: Showtime!",status-playable;UE4,playable,2024-09-21 13:39:45.000 -010024701DC2E000,"Princess Peach™: Showtime! Demo",status-playable;UE4;demo,playable,2024-03-10 17:46:45.000 -01001FA01451C000,"Prinny Presents NIS Classics Volume 1: Phantom Brave: The Hermuda Triangle Remastered / Soul Nomad & the World Eaters",status-boots;crash;Needs Update,boots,2023-02-02 07:23:09.000 -01008FA01187A000,"Prinny® 2: Dawn of Operation Panties, Dood!",32-bit;status-playable,playable,2022-10-13 12:42:58.000 -01007A0011878000,"Prinny®: Can I Really Be the Hero?",32-bit;status-playable;nvdec,playable,2023-10-22 09:25:25.000 -010007F00879E000,"PriPara: All Idol Perfect Stage",status-playable,playable,2022-11-22 16:35:52.000 -010029200AB1C000,"Prison Architect: Nintendo Switch™ Edition",status-playable,playable,2021-04-10 12:27:58.000 -0100C1801B914000,"Prison City",gpu;status-ingame,ingame,2024-03-01 08:19:33.000 -0100F4800F872000,"Prison Princess",status-playable,playable,2022-11-20 15:00:25.000 -0100A9800A1B6000,"Professional Construction – The Simulation",slow;status-playable,playable,2022-08-10 15:15:45.000 -010077B00BDD8000,"Professional Farmer: Nintendo Switch™ Edition",slow;status-playable,playable,2020-12-16 13:38:19.000 -010018300C83A000,"Professor Lupo and his Horrible Pets",status-playable,playable,2020-06-12 00:08:45.000 -0100D1F0132F6000,"Professor Lupo: Ocean",status-playable,playable,2021-04-14 16:33:33.000 -0100BBD00976C000,"Project Highrise: Architect's Edition",status-playable,playable,2022-08-10 17:19:12.000 -0100ACE00DAB6000,"Project Nimbus: Complete Edition",status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-08-10 17:35:43.000 -01002980140F6000,"Project TRIANGLE STRATEGY™ Debut Demo",status-playable;UE4;demo,playable,2022-10-24 21:40:27.000 -0100BDB01150E000,"Project Warlock",status-playable,playable,2020-06-16 10:50:41.000 -,"Psikyo Collection Vol 1",32-bit;status-playable,playable,2020-10-11 13:18:47.000 -0100A2300DB78000,"Psikyo Collection Vol. 3",status-ingame,ingame,2021-06-07 02:46:23.000 -01009D400C4A8000,"Psikyo Collection Vol.2",32-bit;status-playable,playable,2021-06-07 03:22:07.000 -01007A200F2E2000,"Psikyo Shooting Stars Alpha",32-bit;status-playable,playable,2021-04-13 12:03:43.000 -0100D7400F2E4000,"Psikyo Shooting Stars Bravo",32-bit;status-playable,playable,2021-06-14 12:09:07.000 -0100EC100A790000,"PSYVARIAR DELTA",nvdec;status-playable,playable,2021-01-20 13:01:46.000 -,"Puchitto kurasutā",Need-Update;crash;services;status-menus,menus,2020-07-04 16:44:28.000 -0100D61010526000,"Pulstario",status-playable,playable,2022-10-06 11:02:01.000 -01009AE00B788000,"Pumped BMX Pro",status-playable;nvdec;online-broken,playable,2022-09-20 17:40:50.000 -01006C10131F6000,"Pumpkin Jack",status-playable;nvdec;UE4,playable,2022-10-13 12:52:32.000 -010016400F07E000,"Push the Crate",status-playable;nvdec;UE4,playable,2022-09-15 13:28:41.000 -0100B60010432000,"Push the Crate 2",UE4;gpu;nvdec;status-ingame,ingame,2021-06-10 14:20:01.000 -0100F1200F6D8000,"Pushy and Pully in Blockland",status-playable,playable,2020-07-04 11:44:41.000 -0100AAE00CAB4000,"Puyo Puyo Champions",online;status-playable,playable,2020-06-19 11:35:08.000 -010038E011940000,"Puyo Puyo™ Tetris® 2",status-playable;ldn-untested,playable,2023-09-26 11:35:25.000 -0100C5700ECE0000,"Puzzle & Dragons GOLD",slow;status-playable,playable,2020-05-13 15:09:34.000 -010079E01A1E0000,"Puzzle Bobble Everybubble!",audio;status-playable;ldn-works,playable,2023-06-10 03:53:40.000 -010043100F0EA000,"Puzzle Book",status-playable,playable,2020-09-28 13:26:01.000 -0100476004A9E000,"Puzzle Box Maker",status-playable;nvdec;online-broken,playable,2022-08-10 18:00:52.000 -0100A4E017372000,"Pyramid Quest",gpu;status-ingame,ingame,2023-08-16 21:14:52.000 -0100F1100E606000,"Q-YO Blaster",gpu;status-ingame,ingame,2020-06-07 22:36:53.000 -010023600AA34000,"Q.U.B.E. 2",UE4;status-playable,playable,2021-03-03 21:38:57.000 -0100A8D003BAE000,"Qbics Paint",gpu;services;status-ingame,ingame,2021-06-07 10:54:09.000 -0100BA5012E54000,"QUAKE",gpu;status-menus;crash,menus,2022-08-08 12:40:34.000 -010048F0195E8000,"Quake II",status-playable,playable,2023-08-15 03:42:14.000 -,"QuakespasmNX",status-nothing;crash;homebrew,nothing,2022-07-23 19:28:07.000 -010045101288A000,"Quantum Replica",status-playable;nvdec;UE4,playable,2022-10-30 21:17:22.000 -0100F1400BA88000,"Quarantine Circular",status-playable,playable,2021-01-20 15:24:15.000 -0100DCF00F13A000,"Queen's Quest 4: Sacred Truce",status-playable;nvdec,playable,2022-10-13 12:59:21.000 -0100492012378000,"Quell",gpu;status-ingame,ingame,2021-06-11 15:59:53.000 -01001DE005012000,"Quest of Dungeons",status-playable,playable,2021-06-07 10:29:22.000 -,"QuietMansion2",status-playable,playable,2020-09-03 14:59:35.000 -0100AF100EE76000,"Quiplash 2 InterLASHional: The Say Anything Party Game!",status-playable;online-working,playable,2022-10-19 17:43:45.000 -0100E5400BE64000,"R-Type Dimensions EX",status-playable,playable,2020-10-09 12:04:43.000 -0100F930136B6000,"R-Type® Final 2",slow;status-ingame;nvdec;UE4,ingame,2022-10-30 21:46:29.000 -01007B0014300000,"R-Type® Final 2 Demo",slow;status-ingame;nvdec;UE4;demo,ingame,2022-10-24 21:57:42.000 -0100B5A004302000,"R.B.I. Baseball 17",status-playable;online-working,playable,2022-08-11 11:55:47.000 -01005CC007616000,"R.B.I. Baseball 18",status-playable;nvdec;online-working,playable,2022-08-11 11:27:52.000 -0100FCB00BF40000,"R.B.I. Baseball 19",status-playable;nvdec;online-working,playable,2022-08-11 11:43:52.000 -010061400E7D4000,"R.B.I. Baseball 20",status-playable,playable,2021-06-15 21:16:29.000 -0100B4A0115CA000,"R.B.I. Baseball 21",status-playable;online-working,playable,2022-10-24 22:31:45.000 -01005BF00E4DE000,"Rabi-Ribi",status-playable,playable,2022-08-06 17:02:44.000 -010075D00DD04000,"Race with Ryan",UE4;gpu;nvdec;slow;status-ingame,ingame,2020-11-16 04:35:33.000 -0100B8100C54A000,"Rack N Ruin",status-playable,playable,2020-09-04 15:20:26.000 -010024400C516000,"RAD",gpu;status-menus;crash;UE4,menus,2021-11-29 02:01:56.000 -010000600CD54000,"Rad Rodgers Radical Edition",status-playable;nvdec;online-broken,playable,2022-08-10 19:57:23.000 -0100DA400E07E000,"Radiation City",status-ingame;crash,ingame,2022-09-30 11:15:04.000 -01009E40095EE000,"Radiation Island",status-ingame;opengl;vulkan-backend-bug,ingame,2022-08-11 10:51:04.000 -0100C8B00D2BE000,"Radical Rabbit Stew",status-playable,playable,2020-08-03 12:02:56.000 -0100BAD013B6E000,"Radio Commander",nvdec;status-playable,playable,2021-03-24 11:20:46.000 -01008FA00ACEC000,"RADIOHAMMER STATION",audout;status-playable,playable,2021-02-26 20:20:06.000 -01003D00099EC000,"Raging Justice",status-playable,playable,2021-06-03 14:06:50.000 -01005CD013116000,"Raiden IV x Mikado Remix [ 雷電Ⅳ×MIKADO remix ]",status-playable,playable,2022-07-29 15:50:13.000 -01002B000D97E000,"Raiden V: Director's Cut",deadlock;status-boots;nvdec,boots,2024-07-12 07:31:46.000 -01002EE00DC02000,"Railway Empire - Nintendo Switch™ Edition",status-playable;nvdec,playable,2022-10-03 13:53:50.000 -01003C700D0DE000,"Rain City",status-playable,playable,2020-10-08 16:59:03.000 -0100BDD014232000,"Rain on Your Parade",status-playable,playable,2021-05-06 19:32:04.000 -010047600BF72000,"Rain World",status-playable,playable,2023-05-10 23:34:08.000 -01009D9010B9E000,"Rainbows, toilets & unicorns",nvdec;status-playable,playable,2020-10-03 18:08:18.000 -010010B00DDA2000,"Raji: An Ancient Epic",UE4;gpu;nvdec;status-ingame,ingame,2020-12-16 10:05:25.000 -010042A00A9CC000,"Rapala Fishing Pro Series",nvdec;status-playable,playable,2020-12-16 13:26:53.000 -0100E73010754000,"Rascal Fight",status-playable,playable,2020-10-08 13:23:30.000 -010003F00C5C0000,"Rawr-Off",crash;nvdec;status-menus,menus,2020-07-02 00:14:44.000 -01005FF002E2A000,"Rayman® Legends Definitive Edition",status-playable;nvdec;ldn-works,playable,2023-05-27 18:33:07.000 -0100F03011616000,"Re:Turn - One Way Trip",status-playable,playable,2022-08-29 22:42:53.000 -01000B20117B8000,"Re:ZERO -Starting Life in Another World- The Prophecy of the Throne",gpu;status-boots;crash;nvdec;vulkan,boots,2023-03-07 21:27:24.000 -0100A8A00E462000,"Real Drift Racing",status-playable,playable,2020-07-25 14:31:31.000 -010048600CC16000,"Real Heroes: Firefighter",status-playable,playable,2022-09-20 18:18:44.000 -0100E64010BAA000,"realMyst: Masterpiece Edition",nvdec;status-playable,playable,2020-11-30 15:25:42.000 -01000F300F082000,"Reaper: Tale of a Pale Swordsman",status-playable,playable,2020-12-12 15:12:23.000 -0100D9B00E22C000,"Rebel Cops",status-playable,playable,2022-09-11 10:02:53.000 -0100CAA01084A000,"Rebel Galaxy Outlaw",status-playable;nvdec,playable,2022-12-01 07:44:56.000 -0100EF0015A9A000,"Record of Lodoss War-Deedlit in Wonder Labyrinth-",deadlock;status-ingame;Needs Update;Incomplete,ingame,2022-01-19 10:00:59.000 -0100CF600FF7A000,"Red Bow",services;status-ingame,ingame,2021-11-29 03:51:34.000 -0100351013A06000,"Red Colony",status-playable,playable,2021-01-25 20:44:41.000 -01007820196A6000,"Red Dead Redemption",status-playable;amd-vendor-bug,playable,2024-09-13 13:26:13.000 -0100069010592000,"Red Death",status-playable,playable,2020-08-30 13:07:37.000 -010075000C608000,"Red Faction Guerrilla Re-Mars-tered",ldn-untested;nvdec;online;status-playable,playable,2021-06-07 03:02:13.000 -01002290070E4000,"Red Game Without a Great Name",status-playable,playable,2021-01-19 21:42:35.000 -010045400D73E000,"Red Siren: Space Defense",UE4;status-playable,playable,2021-04-25 21:21:29.000 -0100D8A00E880000,"Red Wings: Aces of the Sky",status-playable,playable,2020-06-12 01:19:53.000 -01000D100DCF8000,"Redeemer: Enhanced Edition",status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-09-11 10:20:24.000 -0100326010B98000,"Redout: Space Assault",status-playable;UE4,playable,2022-10-19 23:04:35.000 -010007C00E558000,"Reel Fishing: Road Trip Adventure",status-playable,playable,2021-03-02 16:06:43.000 -010045D01273A000,"Reflection of Mine",audio;status-playable,playable,2020-12-17 15:06:37.000 -01003AA00F5C4000,"Refreshing Sideways Puzzle Ghost Hammer",status-playable,playable,2020-10-18 12:08:54.000 -01007A800D520000,"Refunct",UE4;status-playable,playable,2020-12-15 22:46:21.000 -0100FDF0083A6000,"Regalia: Of Men and Monarchs - Royal Edition",status-playable,playable,2022-08-11 12:24:01.000 -01005FD00F15A000,"Regions of Ruin",status-playable,playable,2020-08-05 11:38:58.000 -,"Reine des Fleurs",cpu;crash;status-boots,boots,2020-09-27 18:50:39.000 -0100F1900B144000,"REKT! High Octane Stunts",online;status-playable,playable,2020-09-28 12:33:56.000 -01002AD013C52000,"Relicta",status-playable;nvdec;UE4,playable,2022-10-31 12:48:33.000 -010095900B436000,"RemiLore",status-playable,playable,2021-06-03 18:58:15.000 -0100FBD00F5F6000,"Remothered: Broken Porcelain",UE4;gpu;nvdec;status-ingame,ingame,2021-06-17 15:13:11.000 -01001F100E8AE000,"Remothered: Tormented Fathers",status-playable;nvdec;UE4,playable,2022-10-19 23:26:50.000 -01008EE00B22C000,"Rento Fortune",ldn-untested;online;status-playable,playable,2021-01-19 19:52:21.000 -01007CC0130C6000,"Renzo Racer",status-playable,playable,2021-03-23 22:28:05.000 -01003C400AD42000,"Rescue Tale",status-playable,playable,2022-09-20 18:40:18.000 -010099A00BC1E000,"resident evil 4",status-playable;nvdec,playable,2022-11-16 21:16:04.000 -010018100CD46000,"Resident Evil 5",status-playable;nvdec,playable,2024-02-18 17:15:29.000 -01002A000CD48000,"Resident Evil 6",status-playable;nvdec,playable,2022-09-15 14:31:47.000 -0100643002136000,"Resident Evil Revelations",status-playable;nvdec;ldn-untested,playable,2022-08-11 12:44:19.000 -010095300212A000,"Resident Evil Revelations 2",status-playable;online-broken;ldn-untested,playable,2022-08-11 12:57:50.000 -0100E7F00FFB8000,"Resolutiion",crash;status-boots,boots,2021-04-25 21:57:56.000 -0100FF201568E000,"Restless Night",status-nothing;crash,nothing,2022-02-09 10:54:49.000 -0100069000078000,"Retail Interactive Display Menu (DevQuestMenu)",services;status-nothing;crash,nothing,2022-08-11 13:19:41.000 -010086E00BCB2000,"Retimed",status-playable,playable,2022-08-11 13:32:39.000 -0100F17004156000,"Retro City Rampage DX",status-playable,playable,2021-01-05 17:04:17.000 -01000ED014A2C000,"Retro Machina",status-playable;online-broken,playable,2022-10-31 13:38:58.000 -010032E00E6E2000,"Return of the Obra Dinn",status-playable,playable,2022-09-15 19:56:45.000 -010027400F708000,"Revenge of Justice",status-playable;nvdec,playable,2022-11-20 15:43:23.000 -0100E2E00EA42000,"Reventure",status-playable,playable,2022-09-15 20:07:06.000 -010071D00F156000,"REZ PLZ",status-playable,playable,2020-10-24 13:26:12.000 -0100729012D18000,"Rhythm Fighter",crash;status-nothing,nothing,2021-02-16 18:51:30.000 -010081D0100F0000,"Rhythm of the Gods",UE4;crash;status-nothing,nothing,2020-10-03 17:39:59.000 -01009D5009234000,"RICO",status-playable;nvdec;online-broken,playable,2022-08-11 20:16:40.000 -01002C700C326000,"Riddled Corpses EX",status-playable,playable,2021-06-06 16:02:44.000 -0100AC600D898000,"Rift Keeper",status-playable,playable,2022-09-20 19:48:20.000 -0100A62002042000,"RiME",UE4;crash;gpu;status-boots,boots,2020-07-20 15:52:38.000 -01006AC00EE6E000,"Rimelands: Hammer of Thor",status-playable,playable,2022-10-13 13:32:56.000 -01002FF008C24000,"RingFit Adventure",crash;services;status-nothing,nothing,2021-04-14 19:00:01.000 -010088E00B816000,"RIOT - Civil Unrest",status-playable,playable,2022-08-11 20:27:56.000 -01002A6006AA4000,"Riptide GP: Renegade",online;status-playable,playable,2021-04-13 23:33:02.000 -010065B00B0EC000,"Rise and Shine",status-playable,playable,2020-12-12 15:56:43.000 -0100E9C010EA8000,"Rise of Insanity",status-playable,playable,2020-08-30 15:42:14.000 -01006BA00E652000,"Rise: Race The Future",status-playable,playable,2021-02-27 13:29:06.000 -010020C012F48000,"Rising Hell",status-playable,playable,2022-10-31 13:54:02.000 -010076D00E4BA000,"Risk of Rain 2",status-playable;online-broken,playable,2024-03-04 17:01:05.000 -0100E8300A67A000,"RISK® Global Domination",status-playable;nvdec;online-broken,playable,2022-08-01 18:53:28.000 -010042500FABA000,"Ritual: Crown of Horns",status-playable,playable,2021-01-26 16:01:47.000 -0100BD300F0EC000,"Ritual: Sorcerer Angel",status-playable,playable,2021-03-02 13:51:19.000 -0100A7D008392000,"Rival Megagun",nvdec;online;status-playable,playable,2021-01-19 14:01:46.000 -010069C00401A000,"RIVE: Ultimate Edition",status-playable,playable,2021-03-24 18:45:55.000 -01004E700DFE6000,"River City Girls",nvdec;status-playable,playable,2020-06-10 23:44:09.000 -01002E80168F4000,"River City Girls 2",status-playable,playable,2022-12-07 00:46:27.000 -0100B2100767C000,"River City Melee Mach!!",status-playable;online-broken,playable,2022-09-20 20:51:57.000 -01008AC0115C6000,"RMX Real Motocross",status-playable,playable,2020-10-08 21:06:15.000 -010053000B986000,"Road Redemption",status-playable;online-broken,playable,2022-08-12 11:26:20.000 -010002F009A7A000,"Road to Ballhalla",UE4;status-playable,playable,2021-06-07 02:22:36.000 -0100735010F58000,"Road To Guangdong",slow;status-playable,playable,2020-10-12 12:15:32.000 -010068200C5BE000,"Roarr! Jurassic Edition",status-playable,playable,2022-10-19 23:57:45.000 -0100618004096000,"Robonauts",status-playable;nvdec,playable,2022-08-12 11:33:23.000 -010039A0117C0000,"ROBOTICS;NOTES DaSH",status-playable,playable,2020-11-16 23:09:54.000 -01002A900EE8A000,"ROBOTICS;NOTES ELITE",status-playable,playable,2020-11-26 10:28:20.000 -010044A010BB8000,"Robozarro",status-playable,playable,2020-09-03 13:33:40.000 -01000CC012D74000,"Rock 'N Racing Bundle Grand Prix & Rally",status-playable,playable,2021-01-06 20:23:57.000 -0100A1B00DB36000,"Rock of Ages 3: Make & Break",status-playable;UE4,playable,2022-10-06 12:18:29.000 -0100513005AF4000,"Rock'N Racing Off Road DX",status-playable,playable,2021-01-10 15:27:15.000 -01005EE0036EC000,"Rocket League®",gpu;status-ingame;online-broken;ldn-untested,ingame,2024-02-08 19:51:36.000 -0100E88009A34000,"Rocket Wars",status-playable,playable,2020-07-24 14:27:39.000 -0100EC7009348000,"Rogue Aces",gpu;services;status-ingame;nvdec,ingame,2021-11-30 02:18:30.000 -01009FA010848000,"Rogue Heroes: Ruins of Tasos",online;status-playable,playable,2021-04-01 15:41:25.000 -010056500AD50000,"Rogue Legacy",status-playable,playable,2020-08-10 19:17:28.000 -0100F3B010F56000,"Rogue Robots",status-playable,playable,2020-06-16 12:16:11.000 -01001CC00416C000,"Rogue Trooper Redux",status-playable;nvdec;online-broken,playable,2022-08-12 11:53:01.000 -0100C7300C0EC000,"RogueCube",status-playable,playable,2021-06-16 12:16:42.000 -0100B7200FC96000,"Roll'd",status-playable,playable,2020-07-04 20:24:01.000 -01004900113F8000,"RollerCoaster Tycoon 3 Complete Edition",32-bit;status-playable,playable,2022-10-17 14:18:01.000 -0100E3900B598000,"RollerCoaster Tycoon Adventures",nvdec;status-playable,playable,2021-01-05 18:14:18.000 -010076200CA16000,"Rolling Gunner",status-playable,playable,2021-05-26 12:54:18.000 -0100579011B40000,"Rolling Sky 2",status-playable,playable,2022-11-03 10:21:12.000 -010050400BD38000,"Roman Rumble in Las Vegum - Asterix & Obelix XXL 2",deadlock;status-ingame;nvdec,ingame,2022-07-21 17:54:14.000 -01001F600829A000,"Romancing SaGa 2",status-playable,playable,2022-08-12 12:02:24.000 -0100D0400D27A000,"Romancing SaGa 3",audio;gpu;status-ingame,ingame,2020-06-27 20:26:18.000 -010088100DD42000,"Roof Rage",status-boots;crash;regression,boots,2023-11-12 03:47:18.000 -0100F3000FA58000,"Roombo: First Blood",nvdec;status-playable,playable,2020-08-05 12:11:37.000 -0100936011556000,"Root Double -Before Crime * After Days- Xtend Edition",status-nothing;crash,nothing,2022-02-05 02:03:49.000 -010030A00DA3A000,"Root Letter: Last Answer",status-playable;vulkan-backend-bug,playable,2022-09-17 10:25:57.000 -0100AFE00DDAC000,"Royal Roads",status-playable,playable,2020-11-17 12:54:38.000 -0100E2C00B414000,"RPG Maker MV",nvdec;status-playable,playable,2021-01-05 20:12:01.000 -01005CD015986000,"rRootage Reloaded",status-playable,playable,2022-08-05 23:20:18.000 -0000000000000000,"RSDKv5u",status-ingame;homebrew,ingame,2024-04-01 16:25:34.000 -010009B00D33C000,"Rugby Challenge 4",slow;status-playable;online-broken;UE4,playable,2022-10-06 12:45:53.000 -01006EC00F2CC000,"RUINER",status-playable;UE4,playable,2022-10-03 14:11:33.000 -010074F00DE4A000,"Run the Fan",status-playable,playable,2021-02-27 13:36:28.000 -0100ADF00700E000,"Runbow",online;status-playable,playable,2021-01-08 22:47:44.000 -0100D37009B8A000,"Runbow Deluxe Edition",status-playable;online-broken,playable,2022-08-12 12:20:25.000 -010081C0191D8000,"Rune Factory 3 Special",status-playable,playable,2023-10-15 08:32:49.000 -010051D00E3A4000,"Rune Factory 4 Special",status-ingame;32-bit;crash;nvdec,ingame,2023-05-06 08:49:17.000 -010014D01216E000,"Rune Factory 5 (JP)",gpu;status-ingame,ingame,2021-06-01 12:00:36.000 -0100E21013908000,"RWBY: Grimm Eclipse - Definitive Edition",status-playable;online-broken,playable,2022-11-03 10:44:01.000 -010012C0060F0000,"RXN -Raijin-",nvdec;status-playable,playable,2021-01-10 16:05:43.000 -0100B8B012ECA000,"S.N.I.P.E.R. - Hunter Scope",status-playable,playable,2021-04-19 15:58:09.000 -010007700CFA2000,"Saboteur II: Avenging Angel",Needs Update;cpu;crash;status-nothing,nothing,2021-01-26 14:47:37.000 -0100D94012FE8000,"Saboteur SiO",slow;status-ingame,ingame,2020-12-17 16:59:49.000 -0100A5200C2E0000,"Safety First!",status-playable,playable,2021-01-06 09:05:23.000 -0100A51013530000,"SaGa Frontier Remastered",status-playable;nvdec,playable,2022-11-03 13:54:56.000 -010003A00D0B4000,"SaGa SCARLET GRACE: AMBITIONS™",status-playable,playable,2022-10-06 13:20:31.000 -01008D100D43E000,"Saints Row IV®: Re-Elected™",status-playable;ldn-untested;LAN,playable,2023-12-04 18:33:37.000 -0100DE600BEEE000,"SAINTS ROW®: THE THIRD™ - THE FULL PACKAGE",slow;status-playable;LAN,playable,2023-08-24 02:40:58.000 -01007F000EB36000,"Sakai and...",status-playable;nvdec,playable,2022-12-15 13:53:19.000 -0100B1400E8FE000,"Sakuna: Of Rice and Ruin",status-playable,playable,2023-07-24 13:47:13.000 -0100BBF0122B4000,"Sally Face",status-playable,playable,2022-06-06 18:41:24.000 -0100D250083B4000,"Salt and Sanctuary",status-playable,playable,2020-10-22 11:52:19.000 -0100CD301354E000,"Sam & Max Save the World",status-playable,playable,2020-12-12 13:11:51.000 -010014000C63C000,"Samsara: Deluxe Edition",status-playable,playable,2021-01-11 15:14:12.000 -0100ADF0096F2000,"Samurai Aces for Nintendo Switch",32-bit;status-playable,playable,2020-11-24 20:26:55.000 -01006C600E46E000,"Samurai Jack: Battle Through Time",status-playable;nvdec;UE4,playable,2022-10-06 13:33:59.000 -01002DF00F76C000,"SAMURAI SHODOWN",UE4;crash;nvdec;status-menus,menus,2020-09-06 02:17:00.000 -0100F6800F48E000,"SAMURAI SHODOWN NEOGEO COLLECTION",nvdec;status-playable,playable,2021-06-14 17:12:56.000 -0100B6501A360000,"Samurai Warrior",status-playable,playable,2023-02-27 18:42:38.000 -,"Sangoku Rensenki ~Otome no Heihou!~",gpu;nvdec;status-ingame,ingame,2020-10-17 19:13:14.000 -0100A4700BC98000,"Satsujin Tantei Jack the Ripper",status-playable,playable,2021-06-21 16:32:54.000 -0100F0000869C000,"Saturday Morning RPG",status-playable;nvdec,playable,2022-08-12 12:41:50.000 -01006EE00380C000,"Sausage Sports Club",gpu;status-ingame,ingame,2021-01-10 05:37:17.000 -0100C8300FA90000,"Save Koch",status-playable,playable,2022-09-26 17:06:56.000 -0100D6E008700000,"Save the Ninja Clan",status-playable,playable,2021-01-11 13:56:37.000 -010091000F72C000,"Save Your Nuts",status-playable;nvdec;online-broken;UE4,playable,2022-09-27 23:12:02.000 -0100AA00128BA000,"Saviors of Sapphire Wings / Stranger of Sword City Revisited",status-menus;crash,menus,2022-10-24 23:00:46.000 -01001C3012912000,"Say No! More",status-playable,playable,2021-05-06 13:43:34.000 -010010A00A95E000,"Sayonara Wild Hearts",status-playable,playable,2023-10-23 03:20:01.000 -0100ACB004006000,"Schlag den Star",slow;status-playable;nvdec,playable,2022-08-12 14:28:22.000 -0100394011C30000,"Scott Pilgrim vs. The World™: The Game – Complete Edition",services-horizon;status-nothing;crash,nothing,2024-07-12 08:13:03.000 -0100E7100B198000,"Scribblenauts Mega Pack",nvdec;status-playable,playable,2020-12-17 22:56:14.000 -01001E40041BE000,"Scribblenauts Showdown",gpu;nvdec;status-ingame,ingame,2020-12-17 23:05:53.000 -0100829018568000,"SD GUNDAM BATTLE ALLIANCE Demo",audio;status-ingame;crash;demo,ingame,2022-08-01 23:01:20.000 -010055700CEA8000,"SD GUNDAM G GENERATION CROSS RAYS",status-playable;nvdec,playable,2022-09-15 20:58:44.000 -010022900D3EC00,"SD GUNDAM G GENERATION CROSS RAYS PREMIUM G SOUND EDITION",status-playable;nvdec,playable,2022-09-15 20:45:57.000 -0100E4A00D066000,"Sea King",UE4;nvdec;status-playable,playable,2021-06-04 15:49:22.000 -0100AFE012BA2000,"Sea of Solitude: The Director's Cut",gpu;status-ingame,ingame,2024-07-12 18:29:29.000 -01008C0016544000,"Sea of Stars",status-playable,playable,2024-03-15 20:27:12.000 -010036F0182C4000,"Sea of Stars Demo",status-playable;demo,playable,2023-02-12 15:33:56.000 -0100C2400D68C000,"SeaBed",status-playable,playable,2020-05-17 13:25:37.000 -010077100CA6E000,"Season Match Bundle",status-playable,playable,2020-10-27 16:15:22.000 -010028F010644000,"Secret Files 3",nvdec;status-playable,playable,2020-10-24 15:32:39.000 -010075D0101FA000,"Seek Hearts",status-playable,playable,2022-11-22 15:06:26.000 -0100394010844000,"Seers Isle",status-playable,playable,2020-11-17 12:28:50.000 -0100A8900AF04000,"SEGA AGES Alex Kidd in Miracle World",online;status-playable,playable,2021-05-05 16:35:47.000 -01001E600AF08000,"SEGA AGES Gain Ground",online;status-playable,playable,2021-05-05 16:16:27.000 -0100D4D00AC62000,"SEGA AGES Out Run",status-playable,playable,2021-01-11 13:13:59.000 -01005A300C9F6000,"SEGA AGES Phantasy Star",status-playable,playable,2021-01-11 12:49:48.000 -01005F600CB0E000,"SEGA AGES Puyo Puyo",online;status-playable,playable,2021-05-05 16:09:28.000 -010051F00AC5E000,"SEGA AGES Sonic The Hedgehog",slow;status-playable,playable,2023-03-05 20:16:31.000 -01000D200C614000,"SEGA AGES Sonic The Hedgehog 2",status-playable,playable,2022-09-21 20:26:35.000 -0100C3E00B700000,"SEGA AGES Space Harrier",status-playable,playable,2021-01-11 12:57:40.000 -010054400D2E6000,"SEGA AGES Virtua Racing",status-playable;online-broken,playable,2023-01-29 17:08:39.000 -01001E700AC60000,"SEGA AGES Wonder Boy: Monster Land",online;status-playable,playable,2021-05-05 16:28:25.000 -0100B3C014BDA000,"SEGA Genesis™ – Nintendo Switch Online",status-nothing;crash;regression,nothing,2022-04-11 07:27:21.000 -,"SEGA Mega Drive Classics",online;status-playable,playable,2021-01-05 11:08:00.000 -01009840046BC000,"Semispheres",status-playable,playable,2021-01-06 23:08:31.000 -0100D1800D902000,"SENRAN KAGURA Peach Ball",status-playable,playable,2021-06-03 15:12:10.000 -0100E0C00ADAC000,"SENRAN KAGURA Reflexions",status-playable,playable,2020-03-23 19:15:23.000 -01009E500D29C000,"Sentinels of Freedom",status-playable,playable,2021-06-14 16:42:19.000 -0100A5D012DAC000,"SENTRY",status-playable,playable,2020-12-13 12:00:24.000 -010059700D4A0000,"Sephirothic Stories",services;status-menus,menus,2021-11-25 08:52:17.000 -010007D00D43A000,"Serious Sam Collection",status-boots;vulkan-backend-bug,boots,2022-10-13 13:53:34.000 -0100B2C00E4DA000,"Served!",status-playable;nvdec,playable,2022-09-28 12:46:00.000 -010018400C24E000,"Seven Knights -Time Wanderer-",status-playable;vulkan-backend-bug,playable,2022-10-13 22:08:54.000 -0100D6F016676000,"Seven Pirates H",status-playable,playable,2024-06-03 14:54:12.000 -0100157004512000,"Severed",status-playable,playable,2020-12-15 21:48:48.000 -0100D5500DA94000,"Shadow Blade: Reload",nvdec;status-playable,playable,2021-06-11 18:40:43.000 -0100BE501382A000,"Shadow Gangs",cpu;gpu;status-ingame;crash;regression,ingame,2024-04-29 00:07:26.000 -0100C3A013840000,"Shadow Man Remastered",gpu;status-ingame,ingame,2024-05-20 06:01:39.000 -010073400B696000,"Shadowgate",status-playable,playable,2021-04-24 07:32:57.000 -0100371013B3E000,"Shadowrun Returns",gpu;status-ingame;Needs Update,ingame,2022-10-04 21:32:31.000 -01008310154C4000,"Shadowrun: Dragonfall - Director's Cut",gpu;status-ingame;Needs Update,ingame,2022-10-04 20:52:18.000 -0100C610154CA000,"Shadowrun: Hong Kong - Extended Edition",gpu;status-ingame;Needs Update,ingame,2022-10-04 20:53:09.000 -010000000EEF0000,"Shadows 2: Perfidia",status-playable,playable,2020-08-07 12:43:46.000 -0100AD700CBBE000,"Shadows of Adam",status-playable,playable,2021-01-11 13:35:58.000 -01002A800C064000,"Shadowverse Champions Battle",status-playable,playable,2022-10-02 22:59:29.000 -01003B90136DA000,"Shadowverse: Champion's Battle",status-nothing;crash,nothing,2023-03-06 00:31:50.000 -0100820013612000,"Shady Part of Me",status-playable,playable,2022-10-20 11:31:55.000 -0100B10002904000,"Shakedown: Hawaii",status-playable,playable,2021-01-07 09:44:36.000 -01008DA012EC0000,"Shakes on a Plane",status-menus;crash,menus,2021-11-25 08:52:25.000 -0100B4900E008000,"Shalnor Legends: Sacred Lands",status-playable,playable,2021-06-11 14:57:11.000 -010006C00CC10000,"Shanky: The Vegan`s Nightmare",status-playable,playable,2021-01-26 15:03:55.000 -0100430013120000,"Shantae",status-playable,playable,2021-05-21 04:53:26.000 -0100EFD00A4FA000,"Shantae and the Pirate's Curse",status-playable,playable,2024-04-29 17:21:57.000 -0100EB901040A000,"Shantae and the Seven Sirens",nvdec;status-playable,playable,2020-06-19 12:23:40.000 -01006A200936C000,"Shantae: Half- Genie Hero Ultimate Edition",status-playable,playable,2020-06-04 20:14:20.000 -0100ADA012370000,"Shantae: Risky's Revenge - Director's Cut",status-playable,playable,2022-10-06 20:47:39.000 -01003AB01062C000,"Shaolin vs Wutang",deadlock;status-nothing,nothing,2021-03-29 20:38:54.000 -0100B250009B9600,"Shape Of The World0",UE4;status-playable,playable,2021-03-05 16:42:28.000 -01004F50085F2000,"She Remembered Caterpillars",status-playable,playable,2022-08-12 17:45:14.000 -01000320110C2000,"She Sees Red - Interactive Movie",status-playable;nvdec,playable,2022-09-30 11:30:15.000 -01009EB004CB0000,"Shelter Generations",status-playable,playable,2021-06-04 16:52:39.000 -010020F014DBE000,"Sherlock Holmes: The Devil’s Daughter",gpu;status-ingame,ingame,2022-07-11 00:07:26.000 -0100B1000AC3A000,"Shift Happens",status-playable,playable,2021-01-05 21:24:18.000 -01000E8009E1C000,"Shift Quantum",UE4;crash;status-ingame,ingame,2020-11-06 21:54:08.000 -01000750084B2000,"Shiftlings - Enhanced Edition",nvdec;status-playable,playable,2021-03-04 13:49:54.000 -01003B0012DC2000,"Shin Megami Tensei III Nocturne HD Remaster",status-playable,playable,2022-11-03 22:53:27.000 -010045800ED1E000,"Shin Megami Tensei III NOCTURNE HD REMASTER",gpu;status-ingame;Needs Update,ingame,2022-11-03 19:57:01.000 -010063B012DC6000,"Shin Megami Tensei V",status-playable;UE4,playable,2024-02-21 06:30:07.000 -010069C01AB82000,"Shin Megami Tensei V: Vengeance",gpu;status-ingame;vulkan-backend-bug,ingame,2024-07-14 11:28:24.000 -01009050133B4000,"Shing! (サムライフォース:斬!)",status-playable;nvdec,playable,2022-10-22 00:48:54.000 -01009A5009A9E000,"Shining Resonance Refrain",status-playable;nvdec,playable,2022-08-12 18:03:01.000 -01004EE0104F6000,"Shinsekai Into the Depths™",status-playable,playable,2022-09-28 14:07:51.000 -0100C2F00A568000,"Shio",status-playable,playable,2021-02-22 16:25:09.000 -0100B2E00F13E000,"Shipped",status-playable,playable,2020-11-21 14:22:32.000 -01000E800FCB4000,"Ships",status-playable,playable,2021-06-11 16:14:37.000 -01007430122D0000,"Shiren the Wanderer: The Tower of Fortune and the Dice of Fate",status-playable;nvdec,playable,2022-10-20 11:44:36.000 -,"Shiritsu Berubara Gakuen ~Versailles no Bara Re*imagination~",cpu;crash;status-boots,boots,2020-09-27 19:01:25.000 -01000244016BAE00,"Shiro0",gpu;status-ingame,ingame,2024-01-13 08:54:39.000 -0100CCE00DDB6000,"Shoot 1UP DX",status-playable,playable,2020-12-13 12:32:47.000 -01001180021FA000,"Shovel Knight: Specter of Torment",status-playable,playable,2020-05-30 08:34:17.000 -010057D0021E8000,"Shovel Knight: Treasure Trove",status-playable,playable,2021-02-14 18:24:39.000 -01003DD00BF0E000,"Shred! 2 - ft Sam Pilgrim",status-playable,playable,2020-05-30 14:34:09.000 -01001DE0076A4000,"Shu",nvdec;status-playable,playable,2020-05-30 09:08:59.000 -0100A7900B936000,"Shut Eye",status-playable,playable,2020-07-23 18:08:35.000 -010044500C182000,"Sid Meier’s Civilization VI",status-playable;ldn-untested,playable,2024-04-08 16:03:40.000 -01007FC00B674000,"Sigi - A Fart for Melusina",status-playable,playable,2021-02-22 16:46:58.000 -0100F1400B0D6000,"Silence",nvdec;status-playable,playable,2021-06-03 14:46:17.000 -0100A32010618000,"Silent World",status-playable,playable,2020-08-28 13:45:13.000 -010045500DFE2000,"Silk",nvdec;status-playable,playable,2021-06-10 15:34:37.000 -010016D00A964000,"SilverStarChess",status-playable,playable,2021-05-06 15:25:57.000 -0100E8C019B36000,"Simona's Requiem",gpu;status-ingame,ingame,2023-02-21 18:29:19.000 -01006FE010438000,"Sin Slayers",status-playable,playable,2022-10-20 11:53:52.000 -01002820036A8000,"Sine Mora EX",gpu;status-ingame;online-broken,ingame,2022-08-12 19:36:18.000 -0100F10012002000,"Singled Out",online;status-playable,playable,2020-08-03 13:06:18.000 -0100B8800F858000,"Sinless",nvdec;status-playable,playable,2020-08-09 20:18:55.000 -0100B16009C10000,"SINNER: Sacrifice for Redemption",status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-08-12 20:37:33.000 -0100E9201410E000,"Sir Lovelot",status-playable,playable,2021-04-05 16:21:46.000 -0100134011E32000,"Skate City",status-playable,playable,2022-11-04 11:37:39.000 -0100B2F008BD8000,"Skee-Ball",status-playable,playable,2020-11-16 04:44:07.000 -01001A900F862000,"Skelattack",status-playable,playable,2021-06-09 15:26:26.000 -01008E700F952000,"Skelittle: A Giant Party!",status-playable,playable,2021-06-09 19:08:34.000 -01006C000DC8A000,"Skelly Selest",status-playable,playable,2020-05-30 15:38:18.000 -0100D67006F14000,"Skies of Fury DX",status-playable,playable,2020-05-30 16:40:54.000 -010046B00DE62000,"Skullgirls 2nd Encore",status-playable,playable,2022-09-15 21:21:25.000 -0100D1100BF9C000,"Skulls of the Shogun: Bone-A-Fide Edition",status-playable,playable,2020-08-31 18:58:12.000 -0100D7B011654000,"Skully",status-playable;nvdec;UE4,playable,2022-10-06 13:52:59.000 -010083100B5CA000,"Sky Force Anniversary",status-playable;online-broken,playable,2022-08-12 20:50:07.000 -01006FE005B6E000,"Sky Force Reloaded",status-playable,playable,2021-01-04 20:06:57.000 -010003F00CC98000,"Sky Gamblers - Afterburner",gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-12 21:04:55.000 -010093D00AC38000,"Sky Gamblers: Storm Raiders",gpu;audio;status-ingame;32-bit,ingame,2022-08-12 21:13:36.000 -010068200E96E000,"Sky Gamblers: Storm Raiders 2",gpu;status-ingame,ingame,2022-09-13 12:24:04.000 -01004F0010A02000,"Sky Racket",status-playable,playable,2020-09-07 12:22:24.000 -0100DDB004F30000,"Sky Ride",status-playable,playable,2021-02-22 16:53:07.000 -0100C5700434C000,"Sky Rogue",status-playable,playable,2020-05-30 08:26:28.000 -0100C52011460000,"Sky: Children of the Light",cpu;status-nothing;online-broken,nothing,2023-02-23 10:57:10.000 -010041C01014E000,"Skybolt Zack",status-playable,playable,2021-04-12 18:28:00.000 -0100A0A00D1AA000,"SKYHILL",status-playable,playable,2021-03-05 15:19:11.000 -,"Skylanders Imaginators",crash;services;status-boots,boots,2020-05-30 18:49:18.000 -010021A00ABEE000,"SKYPEACE",status-playable,playable,2020-05-29 14:14:30.000 -0100EA400BF44000,"SkyScrappers",status-playable,playable,2020-05-28 22:11:25.000 -0100F3C00C400000,"SkyTime",slow;status-ingame,ingame,2020-05-30 09:24:51.000 -01003AD00DEAE000,"SlabWell: The Quest For Kaktun's Alpaca",status-playable,playable,2021-02-22 17:02:51.000 -0100224004004000,"Slain: Back from Hell",status-playable,playable,2022-08-12 23:36:19.000 -010026300BA4A000,"Slay the Spire",status-playable,playable,2023-01-20 15:09:26.000 -0100501006494000,"Slayaway Camp: Butcher's Cut",status-playable;opengl-backend-bug,playable,2022-08-12 23:44:05.000 -01004E900EDDA000,"Slayin 2",gpu;status-ingame,ingame,2024-04-19 16:15:26.000 -01004AC0081DC000,"Sleep Tight",gpu;status-ingame;UE4,ingame,2022-08-13 00:17:32.000 -0100F4500AA4E000,"Slice, Dice & Rice",online;status-playable,playable,2021-02-22 17:44:23.000 -010010D011E1C000,"Slide Stars",status-menus;crash,menus,2021-11-25 08:53:43.000 -0100112003B8A000,"Slime-san",status-playable,playable,2020-05-30 16:15:12.000 -01002AA00C974000,"SMASHING THE BATTLE",status-playable,playable,2021-06-11 15:53:57.000 -0100C9100B06A000,"SmileBASIC 4",gpu;status-menus,menus,2021-07-29 17:35:59.000 -0100207007EB2000,"Smoke And Sacrifice",status-playable,playable,2022-08-14 12:38:27.000 -01009790186FE000,"SMURFS KART",status-playable,playable,2023-10-18 00:55:00.000 -0100F2800D46E000,"Snack World The Dungeon Crawl Gold",gpu;slow;status-ingame;nvdec;audout,ingame,2022-05-01 21:12:44.000 -0100C0F0020E8000,"Snake Pass",status-playable;nvdec;UE4,playable,2022-01-03 04:31:52.000 -010075A00BA14000,"Sniper Elite 3 Ultimate Edition",status-playable;ldn-untested,playable,2024-04-18 07:47:49.000 -010007B010FCC000,"Sniper Elite 4",gpu;status-ingame;vulkan-backend-bug;opengl-backend-bug,ingame,2024-06-18 17:53:15.000 -0100BB000A3AA000,"Sniper Elite V2 Remastered",slow;status-ingame;nvdec;online-broken;ldn-untested,ingame,2022-08-14 13:23:13.000 -01008E20047DC000,"Snipperclips Plus: Cut It Out, Together!",status-playable,playable,2023-02-14 20:20:13.000 -0100704000B3A000,"Snipperclips™ – Cut it out, together!",status-playable,playable,2022-12-05 12:44:55.000 -01004AB00AEF8000,"SNK 40th ANNIVERSARY COLLECTION",status-playable,playable,2022-08-14 13:33:15.000 -010027F00AD6C000,"SNK HEROINES Tag Team Frenzy",status-playable;nvdec;online-broken;ldn-untested,playable,2022-08-14 14:19:25.000 -01008DA00CBBA000,"Snooker 19",status-playable;nvdec;online-broken;UE4,playable,2022-09-11 17:43:22.000 -010045300516E000,"Snow Moto Racing Freedom",gpu;status-ingame;vulkan-backend-bug,ingame,2022-08-15 16:05:14.000 -0100BE200C34A000,"Snowboarding The Next Phase",nvdec;status-playable,playable,2021-02-23 12:56:58.000 -0100FBD013AB6000,"SnowRunner",services;status-boots;crash,boots,2023-10-07 00:01:16.000 -010017B012AFC000,"Soccer Club Life: Playing Manager",gpu;status-ingame,ingame,2022-10-25 11:59:22.000 -0100B5000E05C000,"Soccer Pinball",UE4;gpu;status-ingame,ingame,2021-06-15 20:56:51.000 -010011A00A9A8000,"Soccer Slammers",status-playable,playable,2020-05-30 07:48:14.000 -010095C00F9DE000,"Soccer, Tactics & Glory",gpu;status-ingame,ingame,2022-09-26 17:15:58.000 -0100590009C38000,"SOL DIVIDE -SWORD OF DARKNESS- for Nintendo Switch",32-bit;status-playable,playable,2021-06-09 14:13:03.000 -0100A290048B0000,"Soldam: Drop, Connect, Erase",status-playable,playable,2020-05-30 09:18:54.000 -010008600D1AC000,"Solo: Islands of the Heart",gpu;status-ingame;nvdec,ingame,2022-09-11 17:54:43.000 -01009EE00E91E000,"Some Distant Memory",status-playable,playable,2022-09-15 21:48:19.000 -01004F401BEBE000,"Song of Nunu: A League of Legends Story",status-ingame,ingame,2024-07-12 18:53:44.000 -0100E5400BF94000,"Songbird Symphony",status-playable,playable,2021-02-27 02:44:04.000 -010031D00A604000,"Songbringer",status-playable,playable,2020-06-22 10:42:02.000 -0000000000000000,"Sonic 1 (2013)",status-ingame;crash;homebrew,ingame,2024-04-06 18:31:20.000 -0000000000000000,"Sonic 2 (2013)",status-ingame;crash;homebrew,ingame,2024-04-01 16:25:30.000 -0000000000000000,"Sonic A.I.R",status-ingame;homebrew,ingame,2024-04-01 16:25:32.000 -0000000000000000,"Sonic CD",status-ingame;crash;homebrew,ingame,2024-04-01 16:25:31.000 -010040E0116B8000,"Sonic Colors: Ultimate",status-playable,playable,2022-11-12 21:24:26.000 -01001270012B6000,"SONIC FORCES™",status-playable,playable,2024-07-28 13:11:21.000 -01004AD014BF0000,"Sonic Frontiers",gpu;deadlock;status-ingame;amd-vendor-bug;intel-vendor-bug,ingame,2024-09-05 09:18:53.000 -01009AA000FAA000,"Sonic Mania",status-playable,playable,2020-06-08 17:30:57.000 -01009FB016286000,"Sonic Origins",status-ingame;crash,ingame,2024-06-02 07:20:15.000 -01008F701C074000,"SONIC SUPERSTARS",gpu;status-ingame;nvdec,ingame,2023-10-28 17:48:07.000 -010088801C150000,"Sonic Superstars Digital Art Book with Mini Digital Soundtrack",status-playable,playable,2024-08-20 13:26:56.000 -01005EA01C0FC000,"SONIC X SHADOW GENERATIONS",status-ingame;crash,ingame,2025-01-07 04:20:45.000 -010064F00C212000,"Soul Axiom Rebooted",nvdec;slow;status-ingame,ingame,2020-09-04 12:41:01.000 -0100F2100F0B2000,"Soul Searching",status-playable,playable,2020-07-09 18:39:07.000 -01008F2005154000,"South Park™: The Fractured but Whole™ - Standard Edition",slow;status-playable;online-broken,playable,2024-07-08 17:47:28.000 -0100B9F00C162000,"Space Blaze",status-playable,playable,2020-08-30 16:18:05.000 -010005500E81E000,"Space Cows",UE4;crash;status-menus,menus,2020-06-15 11:33:20.000 -0100707011722000,"Space Elite Force",status-playable,playable,2020-11-27 15:21:05.000 -010047B010260000,"Space Pioneer",status-playable,playable,2022-10-20 12:24:37.000 -010010A009830000,"Space Ribbon",status-playable,playable,2022-08-15 17:17:10.000 -0000000000000000,"SpaceCadetPinball",status-ingame;homebrew,ingame,2024-04-18 19:30:04.000 -0100D9B0041CE000,"Spacecats with Lasers",status-playable,playable,2022-08-15 17:22:44.000 -010034800FB60000,"Spaceland",status-playable,playable,2020-11-01 14:31:56.000 -010028D0045CE000,"Sparkle 2",status-playable,playable,2020-10-19 11:51:39.000 -01000DC007E90000,"Sparkle Unleashed",status-playable,playable,2021-06-03 14:52:15.000 -0100E4F00AE14000,"Sparkle ZERO",gpu;slow;status-ingame,ingame,2020-03-23 18:19:18.000 -01007ED00C032000,"Sparklite",status-playable,playable,2022-08-06 11:35:41.000 -0100E6A009A26000,"Spartan",UE4;nvdec;status-playable,playable,2021-03-05 15:53:19.000 -010020500E7A6000,"Speaking Simulator",status-playable,playable,2020-10-08 13:00:39.000 -01008B000A5AE000,"Spectrum",status-playable,playable,2022-08-16 11:15:59.000 -0100F18010BA0000,"Speed 3: Grand Prix",status-playable;UE4,playable,2022-10-20 12:32:31.000 -010040F00AA9A000,"Speed Brawl",slow;status-playable,playable,2020-09-18 22:08:16.000 -01000540139F6000,"Speed Limit",gpu;status-ingame,ingame,2022-09-02 18:37:40.000 -010061F013A0E000,"Speed Truck Racing",status-playable,playable,2022-10-20 12:57:04.000 -0100E74007EAC000,"Spellspire",status-playable,playable,2022-08-16 11:21:21.000 -010021F004270000,"Spelunker Party!",services;status-boots,boots,2022-08-16 11:25:49.000 -0100710013ABA000,"Spelunky",status-playable,playable,2021-11-20 17:45:03.000 -0100BD500BA94000,"Sphinx and the Cursed Mummy",gpu;status-ingame;32-bit;opengl,ingame,2024-05-20 06:00:51.000 -010092A0102AE000,"Spider Solitaire",status-playable,playable,2020-12-16 16:19:30.000 -010076D0122A8000,"Spinch",status-playable,playable,2024-07-12 19:02:10.000 -01001E40136FE000,"Spinny's Journey",status-ingame;crash,ingame,2021-11-30 03:39:44.000 -010023E008702000,"Spiral Splatter",status-playable,playable,2020-06-04 14:03:57.000 -0100D1B00B6FA000,"Spirit Hunter: Death Mark",status-playable,playable,2020-12-13 10:56:25.000 -0100FAE00E19A000,"Spirit Hunter: NG",32-bit;status-playable,playable,2020-12-17 20:38:47.000 -01005E101122E000,"Spirit of the North",status-playable;UE4,playable,2022-09-30 11:40:47.000 -01000AC00F5EC000,"Spirit Roots",nvdec;status-playable,playable,2020-07-10 13:33:32.000 -0100BD400DC52000,"Spiritfarer",gpu;status-ingame,ingame,2022-10-06 16:31:38.000 -01009D60080B4000,"SpiritSphere DX",status-playable,playable,2021-07-03 23:37:49.000 -010042700E3FC000,"Spitlings",status-playable;online-broken,playable,2022-10-06 16:42:39.000 -01003BC0000A0000,"Splatoon™ 2",status-playable;ldn-works;LAN,playable,2024-07-12 19:11:15.000 -0100C2500FC20000,"Splatoon™ 3",status-playable;ldn-works;opengl-backend-bug;LAN;amd-vendor-bug,playable,2024-08-04 23:49:11.000 -0100BA0018500000,"Splatoon™ 3: Splatfest World Premiere",gpu;status-ingame;online-broken;demo,ingame,2022-09-19 03:17:12.000 -010062800D39C000,"SpongeBob SquarePants: Battle for Bikini Bottom - Rehydrated",status-playable;online-broken;UE4;ldn-broken;vulkan-backend-bug,playable,2023-08-01 19:29:34.000 -01009FB0172F4000,"SpongeBob SquarePants: The Cosmic Shake",gpu;status-ingame;UE4,ingame,2023-08-01 19:29:53.000 -010097C01336A000,"Spooky Chase",status-playable,playable,2022-11-04 12:17:44.000 -0100C6100D75E000,"Spooky Ghosts Dot Com",status-playable,playable,2021-06-15 15:16:11.000 -0100DE9005170000,"Sports Party",nvdec;status-playable,playable,2021-03-05 13:40:42.000 -0100E04009BD4000,"Spot The Difference",status-playable,playable,2022-08-16 11:49:52.000 -010052100D1B4000,"Spot The Differences: Party!",status-playable,playable,2022-08-16 11:55:26.000 -01000E6015350000,"Spy Alarm",services;status-ingame,ingame,2022-12-09 10:12:51.000 -01005D701264A000,"SpyHack",status-playable,playable,2021-04-15 10:53:51.000 -010077B00E046000,"Spyro™ Reignited Trilogy",status-playable;nvdec;UE4,playable,2022-09-11 18:38:33.000 -0100085012A0E000,"Squeakers",status-playable,playable,2020-12-13 12:13:05.000 -010009300D31C000,"Squidgies Takeover",status-playable,playable,2020-07-20 22:28:08.000 -0100FCD0102EC000,"Squidlit",status-playable,playable,2020-08-06 12:38:32.000 -0100EBF00E702000,"STAR OCEAN First Departure R",nvdec;status-playable,playable,2021-07-05 19:29:16.000 -010065301A2E0000,"STAR OCEAN THE SECOND STORY R",status-ingame;crash,ingame,2024-06-01 02:39:59.000 -010060D00F658000,"Star Renegades",nvdec;status-playable,playable,2020-12-11 12:19:23.000 -0100D7000AE6A000,"Star Story: The Horizon Escape",status-playable,playable,2020-08-11 22:31:38.000 -01009DF015776000,"Star Trek Prodigy: Supernova",status-playable;nvdec;UE4;opengl-backend-bug,playable,2022-10-14 10:18:50.000 -0100BD100FFBE000,"STAR WARS™ Episode I Racer",slow;status-playable;nvdec,playable,2022-10-03 16:08:36.000 -0100BB500EACA000,"STAR WARS™ Jedi Knight II: Jedi Outcast™",gpu;status-ingame,ingame,2022-09-15 22:51:00.000 -01008CA00FAE8000,"STAR WARS™ Jedi Knight: Jedi Academy",gpu;status-boots,boots,2021-06-16 12:35:30.000 -01006DA00DEAC000,"Star Wars™ Pinball",status-playable;online-broken,playable,2022-09-11 18:53:31.000 -0100FA10115F8000,"STAR WARS™ Republic Commando™",gpu;status-ingame;32-bit,ingame,2023-10-31 15:57:17.000 -010040701B948000,"STAR WARS™: Battlefront Classic Collection",gpu;status-ingame;vulkan,ingame,2024-07-12 19:24:21.000 -0100854015868000,"STAR WARS™: Knights of the Old Republic™",gpu;deadlock;status-boots,boots,2024-02-12 10:13:51.000 -0100153014544000,"STAR WARS™: The Force Unleashed™",status-playable,playable,2024-05-01 17:41:28.000 -01005EB00EA10000,"Star-Crossed Myth - The Department of Wishes -",gpu;status-ingame,ingame,2021-06-04 19:34:36.000 -0100E6B0115FC000,"Star99",status-menus;online,menus,2021-11-26 14:18:51.000 -01002100137BA000,"Stardash",status-playable,playable,2021-01-21 16:31:19.000 -0100E65002BB8000,"Stardew Valley",status-playable;online-broken;ldn-untested,playable,2024-02-14 03:11:19.000 -01002CC003FE6000,"Starlink: Battle for Atlas™ Digital Edition",services-horizon;status-nothing;crash;Needs Update,nothing,2024-05-05 17:25:11.000 -010098E010FDA000,"Starlit Adventures Golden Stars",status-playable,playable,2020-11-21 12:14:43.000 -01001BB00AC26000,"STARSHIP AVENGER Operation: Take Back Earth",status-playable,playable,2021-01-12 15:52:55.000 -010000700A572000,"State of Anarchy: Master of Mayhem",nvdec;status-playable,playable,2021-01-12 19:00:05.000 -0100844004CB6000,"State of Mind",UE4;crash;status-boots,boots,2020-06-22 22:17:50.000 -0100616009082000,"STAY",crash;services;status-boots,boots,2021-04-23 14:24:52.000 -0100B61009C60000,"STAY COOL, KOBAYASHI-SAN!: A RIVER CITY RANSOM STORY",status-playable,playable,2021-01-26 17:37:28.000 -01008010118CC000,"Steam Prison",nvdec;status-playable,playable,2021-04-01 15:34:11.000 -0100AE100DAFA000,"Steam Tactics",status-playable,playable,2022-10-06 16:53:45.000 -01004DD00C87A000,"Steamburg",status-playable,playable,2021-01-13 08:42:01.000 -01009320084A4000,"SteamWorld Dig",status-playable,playable,2024-08-19 12:12:23.000 -0100CA9002322000,"SteamWorld Dig 2",status-playable,playable,2022-12-21 19:25:42.000 -0100F6D00D83E000,"SteamWorld Quest: Hand of Gilgamech",nvdec;status-playable,playable,2020-11-09 13:10:04.000 -01001C6014772000,"Steel Assault",status-playable,playable,2022-12-06 14:48:30.000 -010042800B880000,"STEINS;GATE ELITE",status-playable,playable,2020-08-04 07:33:32.000 -0100CB400E9BC000,"STEINS;GATE: My Darling's Embrace",status-playable;nvdec,playable,2022-11-20 16:48:34.000 -01002DE01043E000,"Stela",UE4;status-playable,playable,2021-06-15 13:28:34.000 -01005A700C954000,"Stellar Interface",status-playable,playable,2022-10-20 13:44:33.000 -0100BC800EDA2000,"STELLATUM",gpu;status-playable,playable,2021-03-07 16:30:23.000 -0100775004794000,"Steredenn: Binary Stars",status-playable,playable,2021-01-13 09:19:42.000 -0100AE0006474000,"Stern Pinball Arcade",status-playable,playable,2022-08-16 14:24:41.000 -0100E24006FA8000,"Stikbold! A Dodgeball Adventure DELUXE",status-playable,playable,2021-01-11 20:12:54.000 -010077B014518000,"Stitchy in Tooki Trouble",status-playable,playable,2021-05-06 16:25:53.000 -010070D00F640000,"STONE",status-playable;UE4,playable,2022-09-30 11:53:32.000 -010074400F6A8000,"Stories Untold",status-playable;nvdec,playable,2022-12-22 01:08:46.000 -010040D00BCF4000,"Storm Boy",status-playable,playable,2022-10-20 14:15:06.000 -0100B2300B932000,"Storm In A Teacup",gpu;status-ingame,ingame,2021-11-06 02:03:19.000 -0100D5D00DAF2000,"Story of a Gladiator",status-playable,playable,2020-07-29 15:08:18.000 -010017301007E000,"STORY OF SEASONS Pioneers of Olive [ 牧場物語 オリーブタウンと希望の大地 ]",status-playable,playable,2021-03-18 11:42:19.000 -0100ED400EEC2000,"STORY OF SEASONS: Friends of Mineral Town",status-playable,playable,2022-10-03 16:40:31.000 -010078D00E8F4000,"Stranded Sails - Explorers of the Cursed Islands",slow;status-playable;nvdec;UE4,playable,2022-09-16 11:58:38.000 -01000A6013F86000,"Strange Field Football",status-playable,playable,2022-11-04 12:25:57.000 -0100DD600DD48000,"Stranger Things 3: The Game",status-playable,playable,2021-01-11 17:44:09.000 -0100D7E011C64000,"Strawberry Vinegar",status-playable;nvdec,playable,2022-12-05 16:25:40.000 -010075101EF84000,"Stray",status-ingame;crash,ingame,2025-01-07 04:03:00.000 -0100024008310000,"Street Fighter 30th Anniversary Collection",status-playable;online-broken;ldn-partial,playable,2022-08-20 16:50:47.000 -010012400D202000,"Street Outlaws: The List",nvdec;status-playable,playable,2021-06-11 12:15:32.000 -0100888011CB2000,"Street Power Soccer",UE4;crash;status-boots,boots,2020-11-21 12:28:57.000 -0100EC9010258000,"Streets of Rage 4",nvdec;online;status-playable,playable,2020-07-07 21:21:22.000 -0100BDE012928000,"Strife: Veteran Edition",gpu;status-ingame,ingame,2022-01-15 05:10:42.000 -010039100DACC000,"Strike Force - War on Terror",status-menus;crash;Needs Update,menus,2021-11-24 08:08:20.000 -010038A00E6C6000,"Strike Force Kitty",nvdec;status-playable,playable,2020-07-29 16:22:15.000 -010072500D52E000,"Strike Suit Zero: Director's Cut",crash;status-boots,boots,2021-04-23 17:15:14.000 -0100FF5005B76000,"STRIKERS1945 for Nintendo Switch",32-bit;status-playable,playable,2021-06-03 19:35:04.000 -0100720008ED2000,"STRIKERS1945 Ⅱ for Nintendo Switch",32-bit;status-playable,playable,2021-06-03 19:43:00.000 -0100681011B56000,"Struggling",status-playable,playable,2020-10-15 20:37:03.000 -0100AF000B4AE000,"Stunt Kite Party",nvdec;status-playable,playable,2021-01-25 17:16:56.000 -0100C5500E7AE000,"STURMWIND EX",audio;32-bit;status-playable,playable,2022-09-16 12:01:39.000 -,"Subarashiki Kono Sekai -Final Remix-",services;slow;status-ingame,ingame,2020-02-10 16:21:51.000 -010001400E474000,"Subdivision Infinity DX",UE4;crash;status-boots,boots,2021-03-03 14:26:46.000 -0100E6400BCE8000,"Sublevel Zero Redux",status-playable,playable,2022-09-16 12:30:03.000 -0100EDA00D866000,"Submerged",status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-08-16 15:17:01.000 -0100429011144000,"Subnautica",status-playable;vulkan-backend-bug,playable,2022-11-04 13:07:29.000 -010014C011146000,"Subnautica: Below Zero",status-playable,playable,2022-12-23 14:15:13.000 -0100BF9012AC6000,"Suguru Nature",crash;status-ingame,ingame,2021-07-29 11:36:27.000 -01005CD00A2A2000,"Suicide Guy",status-playable,playable,2021-01-26 13:13:54.000 -0100DE000C2E4000,"Suicide Guy: Sleepin' Deeply",status-ingame;Needs More Attention,ingame,2022-09-20 23:45:25.000 -01003D50126A4000,"Sumire",status-playable,playable,2022-11-12 13:40:43.000 -0100A130109B2000,"Summer in Mara",nvdec;status-playable,playable,2021-03-06 14:10:38.000 -01004E500DB9E000,"Summer Sweetheart",status-playable;nvdec,playable,2022-09-16 12:51:46.000 -0100BFE014476000,"Sunblaze",status-playable,playable,2022-11-12 13:59:23.000 -01002D3007962000,"Sundered: Eldritch Edition",gpu;status-ingame,ingame,2021-06-07 11:46:00.000 -0100F7000464A000,"Super Beat Sports™",status-playable;ldn-untested,playable,2022-08-16 16:05:50.000 -010051A00D716000,"Super Blood Hockey",status-playable,playable,2020-12-11 20:01:41.000 -01007AD00013E000,"Super Bomberman R",status-playable;nvdec;online-broken;ldn-works,playable,2022-08-16 19:19:14.000 -0100B87017D94000,"SUPER BOMBERMAN R 2",deadlock;status-boots,boots,2023-09-29 13:19:51.000 -0100D9B00DB5E000,"Super Cane Magic ZERO",status-playable,playable,2022-09-12 15:33:46.000 -010065F004E5E000,"Super Chariot",status-playable,playable,2021-06-03 13:19:01.000 -0100E5E00C464000,"SUPER DRAGON BALL HEROES WORLD MISSION",status-playable;nvdec;online-broken,playable,2022-08-17 12:56:30.000 -010023100B19A000,"Super Dungeon Tactics",status-playable,playable,2022-10-06 17:40:40.000 -010056800B534000,"Super Inefficient Golf",status-playable;UE4,playable,2022-08-17 15:53:45.000 -010015700D5DC000,"Super Jumpy Ball",status-playable,playable,2020-07-04 18:40:36.000 -0100196009998000,"Super Kickers League Ultimate",status-playable,playable,2021-01-26 13:36:48.000 -01003FB00C5A8000,"Super Kirby Clash™",status-playable;ldn-works,playable,2024-07-30 18:21:55.000 -010000D00F81A000,"Super Korotama",status-playable,playable,2021-06-06 19:06:22.000 -01003E300FCAE000,"Super Loop Drive",status-playable;nvdec;UE4,playable,2022-09-22 10:58:05.000 -054507E0B7552000,"Super Mario 64",status-ingame;homebrew,ingame,2024-03-20 16:57:27.000 -0100277011F1A000,"Super Mario Bros.™ 35",status-menus;online-broken,menus,2022-08-07 16:27:25.000 -010015100B514000,"Super Mario Bros.™ Wonder",status-playable;amd-vendor-bug,playable,2024-09-06 13:21:21.000 -01009B90006DC000,"Super Mario Maker™ 2",status-playable;online-broken;ldn-broken,playable,2024-08-25 11:05:19.000 -0100000000010000,"Super Mario Odyssey™",status-playable;nvdec;intel-vendor-bug;mac-bug,playable,2024-08-25 01:32:34.000 -010036B0034E4000,"Super Mario Party™",gpu;status-ingame;Needs Update;ldn-works,ingame,2024-06-21 05:10:16.000 -0100BC0018138000,"Super Mario RPG™",gpu;audio;status-ingame;nvdec,ingame,2024-06-19 17:43:42.000 -0000000000000000,"Super Mario World",status-boots;homebrew,boots,2024-06-13 01:40:31.000 -010049900F546000,"Super Mario™ 3D All-Stars",services-horizon;slow;status-ingame;vulkan;amd-vendor-bug,ingame,2024-05-07 02:38:16.000 -010028600EBDA000,"Super Mario™ 3D World + Bowser’s Fury",status-playable;ldn-works,playable,2024-07-31 10:45:37.000 -01004F8006A78000,"Super Meat Boy",services;status-playable,playable,2020-04-02 23:10:07.000 -01009C200D60E000,"Super Meat Boy Forever",gpu;status-boots,boots,2021-04-26 14:25:39.000 -0100BDD00EC5C000,"Super Mega Space Blaster Special Turbo",online;status-playable,playable,2020-08-06 12:13:25.000 -010031F019294000,"Super Monkey Ball Banana Rumble",status-playable,playable,2024-06-28 10:39:18.000 -0100B2A00E1E0000,"Super Monkey Ball: Banana Blitz HD",status-playable;online-broken,playable,2022-09-16 13:16:25.000 -01006D000D2A0000,"Super Mutant Alien Assault",status-playable,playable,2020-06-07 23:32:45.000 -01004D600AC14000,"Super Neptunia RPG",status-playable;nvdec,playable,2022-08-17 16:38:52.000 -01008D300C50C000,"Super Nintendo Entertainment System™ - Nintendo Switch Online",status-playable,playable,2021-01-05 00:29:48.000 -0100284007D6C000,"Super One More Jump",status-playable,playable,2022-08-17 16:47:47.000 -01001F90122B2000,"Super Punch Patrol",status-playable,playable,2024-07-12 19:49:02.000 -0100331005E8E000,"Super Putty Squad",gpu;status-ingame;32-bit,ingame,2024-04-29 15:51:54.000 -,"SUPER ROBOT WARS T",online;status-playable,playable,2021-03-25 11:00:40.000 -,"SUPER ROBOT WARS V",online;status-playable,playable,2020-06-23 12:56:37.000 -,"SUPER ROBOT WARS X",online;status-playable,playable,2020-08-05 19:18:51.000 -01004CF00A60E000,"Super Saurio Fly",nvdec;status-playable,playable,2020-08-06 13:12:14.000 -010039700D200000,"Super Skelemania",status-playable,playable,2020-06-07 22:59:50.000 -01006A800016E000,"Super Smash Bros.™ Ultimate",gpu;status-ingame;crash;nvdec;ldn-works;intel-vendor-bug,ingame,2024-09-14 23:05:21.000 -0100D61012270000,"Super Soccer Blast",gpu;status-ingame,ingame,2022-02-16 08:39:12.000 -0100A9300A4AE000,"Super Sportmatchen",status-playable,playable,2022-08-19 12:34:40.000 -0100FB400F54E000,"Super Street: Racer",status-playable;UE4,playable,2022-09-16 13:43:14.000 -010000500DB50000,"Super Tennis Blast",status-playable,playable,2022-08-19 16:20:48.000 -0100C6800D770000,"Super Toy Cars 2",gpu;regression;status-ingame,ingame,2021-03-02 20:15:15.000 -010035B00B3F0000,"Super Volley Blast",status-playable,playable,2022-08-19 18:14:40.000 -0100FF60051E2000,"Superbeat: Xonic EX",status-ingame;crash;nvdec,ingame,2022-08-19 18:54:40.000 -0100630010252000,"SuperEpic: The Entertainment War",status-playable,playable,2022-10-13 23:02:48.000 -01001A500E8B4000,"SUPERHOT",status-playable,playable,2021-05-05 19:51:30.000 -010075701153A000,"Superliminal",status-playable,playable,2020-09-03 13:20:50.000 -0100C01012654000,"Supermarket Shriek",status-playable,playable,2022-10-13 23:19:20.000 -0100A6E01201C000,"Supraland",status-playable;nvdec;UE4;opengl-backend-bug,playable,2022-10-14 09:49:11.000 -010029A00AEB0000,"Survive! MR.CUBE",status-playable,playable,2022-10-20 14:44:47.000 -01005AB01119C000,"SUSHI REVERSI",status-playable,playable,2021-06-11 19:26:58.000 -0100DDD0085A4000,"Sushi Striker™: The Way of Sushido",nvdec;status-playable,playable,2020-06-26 20:49:11.000 -0100D6D00EC2C000,"Sweet Witches",status-playable;nvdec,playable,2022-10-20 14:56:37.000 -010049D00C8B0000,"Swimsanity!",status-menus;online,menus,2021-11-26 14:27:16.000 -01005DF00DC26000,"SWORD ART ONLINE: FATAL BULLET Complete Edition",UE4;gpu;online;status-ingame,ingame,2021-06-09 16:58:50.000 -01001B600D1D6000,"SWORD ART ONLINE: Hollow Realization Deluxe Edition",status-playable;nvdec,playable,2022-08-19 19:19:15.000 -01000D70049BE000,"Sword of the Guardian",status-playable,playable,2020-07-16 12:24:39.000 -0100E4701355C000,"Sword of the Necromancer",status-ingame;crash,ingame,2022-12-10 01:28:39.000 -01004BB00421E000,"Syberia 1 & 2",status-playable,playable,2021-12-24 12:06:25.000 -010028C003FD6000,"Syberia 2",gpu;status-ingame,ingame,2022-08-24 12:43:03.000 -0100CBE004E6C000,"Syberia 3",nvdec;status-playable,playable,2021-01-25 16:15:12.000 -010007300C482000,"Sydney Hunter and the Curse of the Mayan",status-playable,playable,2020-06-15 12:15:57.000 -0100D8400DAF0000,"SYNAPTIC DRIVE",online;status-playable,playable,2020-09-07 13:44:05.000 -01009E700F448000,"Synergia",status-playable,playable,2021-04-06 17:58:04.000 -01009BF00E7D2000,"SYNTHETIK: Ultimate",gpu;status-ingame;crash,ingame,2022-08-30 03:19:25.000 -010015B00BB00000,"Table Top Racing: World Tour - Nitro Edition",status-playable,playable,2020-04-05 23:21:30.000 -01000F20083A8000,"Tactical Mind",status-playable,playable,2021-01-25 18:05:00.000 -0100BD700F5F0000,"Tactical Mind 2",status-playable,playable,2020-07-01 23:11:07.000 -0100E12013C1A000,"Tactics Ogre: Reborn",status-playable;vulkan-backend-bug,playable,2024-04-09 06:21:35.000 -01007C7006AEE000,"Tactics V: Obsidian Brigade""""",status-playable,playable,2021-02-28 15:09:42.000 -01002C000B552000,"Taiko no Tatsujin: Drum 'n' Fun!",status-playable;online-broken;ldn-broken,playable,2023-05-20 15:10:12.000 -0100BCA0135A0000,"Taiko no Tatsujin: Rhythm Festival",status-playable,playable,2023-11-13 13:16:34.000 -0100DD6012644000,"Taiko no Tatsujin: Rhythmic Adventure Pack",status-playable,playable,2020-12-03 07:28:26.000 -0100346017304000,"Taiko Risshiden V DX",status-nothing;crash,nothing,2022-06-06 16:25:31.000 -010040A00EA26000,"Taimumari: Complete Edition",status-playable,playable,2022-12-06 13:34:49.000 -0100F0C011A68000,"Tales from the Borderlands",status-playable;nvdec,playable,2022-10-25 18:44:14.000 -0100408007078000,"Tales of the Tiny Planet",status-playable,playable,2021-01-25 15:47:41.000 -01002C0008E52000,"Tales of Vesperia™: Definitive Edition",status-playable,playable,2024-09-28 03:20:47.000 -010012800EE3E000,"Tamashii",status-playable,playable,2021-06-10 15:26:20.000 -010008A0128C4000,"Tamiku",gpu;status-ingame,ingame,2021-06-15 20:06:55.000 -010048F007ADE000,"Tangledeep",crash;status-boots,boots,2021-01-05 04:08:41.000 -01007DB010D2C000,"TaniNani",crash;kernel;status-nothing,nothing,2021-04-08 03:06:44.000 -0100E06012BB4000,"Tank Mechanic Simulator",status-playable,playable,2020-12-11 15:10:45.000 -01007A601318C000,"Tanuki Justice",status-playable;opengl,playable,2023-02-21 18:28:10.000 -01004DF007564000,"Tanzia",status-playable,playable,2021-06-07 11:10:25.000 -01002D4011208000,"Task Force Kampas",status-playable,playable,2020-11-30 14:44:15.000 -0100B76011DAA000,"Taxi Chaos",slow;status-playable;online-broken;UE4,playable,2022-10-25 19:13:00.000 -0100F43011E5A000,"Tcheco in the Castle of Lucio",status-playable,playable,2020-06-27 13:35:43.000 -010092B0091D0000,"Team Sonic Racing",status-playable;online-broken;ldn-works,playable,2024-02-05 15:05:27.000 -0100FE701475A000,"Teenage Mutant Ninja Turtles: Shredder's Revenge",deadlock;status-boots;crash,boots,2024-09-28 09:31:39.000 -01005CF01E784000,"Teenage Mutant Ninja Turtles: Splintered Fate",status-playable,playable,2024-08-03 13:50:42.000 -0100FDB0154E4000,"Teenage Mutant Ninja Turtles: The Cowabunga Collection",status-playable,playable,2024-01-22 19:39:04.000 -010021100DF22000,"Telling Lies",status-playable,playable,2020-10-23 21:14:51.000 -0100C8B012DEA000,"Temtem",status-menus;online-broken,menus,2022-12-17 17:36:11.000 -0100B2600A398000,"TENGAI for Nintendo Switch",32-bit;status-playable,playable,2020-11-25 19:52:26.000 -0100D7A005DFC000,"Tennis",status-playable,playable,2020-06-01 20:50:36.000 -01002970080AA000,"Tennis in the Face",status-playable,playable,2022-08-22 14:10:54.000 -0100092006814000,"Tennis World Tour",status-playable;online-broken,playable,2022-08-22 14:27:10.000 -0100950012F66000,"Tennis World Tour 2",status-playable;online-broken,playable,2022-10-14 10:43:16.000 -0100E46006708000,"Terraria",status-playable;online-broken,playable,2022-09-12 16:14:57.000 -010070C00FB56000,"TERROR SQUID",status-playable;online-broken,playable,2023-10-30 22:29:29.000 -010043700EB68000,"TERRORHYTHM (TRRT)",status-playable,playable,2021-02-27 13:18:14.000 -0100FBC007EAE000,"Tesla vs Lovecraft",status-playable,playable,2023-11-21 06:19:36.000 -01005C8005F34000,"Teslagrad",status-playable,playable,2021-02-23 14:41:02.000 -01006F701507A000,"Tested on Humans: Escape Room",status-playable,playable,2022-11-12 14:42:52.000 -0100671016432000,"TETRA for Nintendo Switch™ International Edition",status-playable,playable,2020-06-26 20:49:55.000 -01004E500A15C000,"TETRA's Escape",status-playable,playable,2020-06-03 18:21:14.000 -010040600C5CE000,"Tetris 99 Retail Bundle",gpu;status-ingame;online-broken;ldn-untested,ingame,2024-05-02 16:36:41.000 -0100EC000D39A000,"Tetsumo Party",status-playable,playable,2020-06-09 22:39:55.000 -01008ED0087A4000,"The Adventure Pals",status-playable,playable,2022-08-22 14:48:52.000 -0100137010152000,"The Adventures of 00 Dilly®",status-playable,playable,2020-12-30 19:32:29.000 -01003B400A00A000,"The Adventures of Bertram Fiddle: Episode 1: A Dreadly Business",status-playable;nvdec,playable,2022-09-17 11:07:56.000 -010035C00A4BC000,"The Adventures of Elena Temple",status-playable,playable,2020-06-03 23:15:35.000 -010045A00E038000,"The Alliance Alive HD Remastered",nvdec;status-playable,playable,2021-03-07 15:43:45.000 -010079A0112BE000,"The Almost Gone",status-playable,playable,2020-07-05 12:33:07.000 -0100CD500DDAE000,"The Bard's Tale ARPG: Remastered and Resnarkled",gpu;status-ingame;nvdec;online-working,ingame,2024-07-18 12:52:01.000 -01001E50141BC000,"The Battle Cats Unite!",deadlock;status-ingame,ingame,2021-12-14 21:38:34.000 -010089600E66A000,"The Big Journey",status-playable,playable,2022-09-16 14:03:08.000 -010021C000B6A000,"The Binding of Isaac: Afterbirth+",status-playable,playable,2021-04-26 14:11:56.000 -0100A5A00B2AA000,"The Bluecoats North & South",nvdec;status-playable,playable,2020-12-10 21:22:29.000 -010062500BFC0000,"The Book of Unwritten Tales 2",status-playable,playable,2021-06-09 14:42:53.000 -01002A2004530000,"The Bridge",status-playable,playable,2020-06-03 13:53:26.000 -01008D700AB14000,"The Bug Butcher",status-playable,playable,2020-06-03 12:02:04.000 -01001B40086E2000,"The Bunker",status-playable;nvdec,playable,2022-09-16 14:24:05.000 -010069100B7F0000,"The Caligula Effect: Overdose",UE4;gpu;status-ingame,ingame,2021-01-04 11:07:50.000 -010066800E9F8000,"The Childs Sight",status-playable,playable,2021-06-11 19:04:56.000 -0100B7C01169C000,"The Coma 2: Vicious Sisters",gpu;status-ingame,ingame,2020-06-20 12:51:51.000 -010033100691A000,"The Coma: Recut",status-playable,playable,2020-06-03 15:11:23.000 -01004170113D4000,"The Complex",status-playable;nvdec,playable,2022-09-28 14:35:41.000 -01000F20102AC000,"The Copper Canyon Dixie Dash",status-playable;UE4,playable,2022-09-29 11:42:29.000 -01000850037C0000,"The Count Lucanor",status-playable;nvdec,playable,2022-08-22 15:26:37.000 -0100EBA01548E000,"The Cruel King and the Great Hero",gpu;services;status-ingame,ingame,2022-12-02 07:02:08.000 -010051800E922000,"The Dark Crystal: Age of Resistance Tactics",status-playable,playable,2020-08-11 13:43:41.000 -01003DE00918E000,"The Darkside Detective",status-playable,playable,2020-06-03 22:16:18.000 -01000A10041EA000,"The Elder Scrolls V: Skyrim",gpu;status-ingame;crash,ingame,2024-07-14 03:21:31.000 -01004A9006B84000,"The End Is Nigh",status-playable,playable,2020-06-01 11:26:45.000 -0100CA100489C000,"The Escapists 2",nvdec;status-playable,playable,2020-09-24 12:31:31.000 -01001B700BA7C000,"The Escapists: Complete Edition",status-playable,playable,2021-02-24 17:50:31.000 -0100C2E0129A6000,"The Executioner",nvdec;status-playable,playable,2021-01-23 00:31:28.000 -01006050114D4000,"The Experiment: Escape Room",gpu;status-ingame,ingame,2022-09-30 13:20:35.000 -0100B5900DFB2000,"The Eyes of Ara",status-playable,playable,2022-09-16 14:44:06.000 -01002DD00AF9E000,"The Fall",gpu;status-ingame,ingame,2020-05-31 23:31:16.000 -01003E5002320000,"The Fall Part 2: Unbound",status-playable,playable,2021-11-06 02:18:08.000 -0100CDC00789E000,"The Final Station",status-playable;nvdec,playable,2022-08-22 15:54:39.000 -010098800A1E4000,"The First Tree",status-playable,playable,2021-02-24 15:51:05.000 -0100C38004DCC000,"The Flame In The Flood: Complete Edition",gpu;status-ingame;nvdec;UE4,ingame,2022-08-22 16:23:49.000 -010007700D4AC000,"The Forbidden Arts",status-playable,playable,2021-01-26 16:26:24.000 -010030700CBBC000,"The friends of Ringo Ishikawa",status-playable,playable,2022-08-22 16:33:17.000 -01006350148DA000,"The Gardener and the Wild Vines",gpu;status-ingame,ingame,2024-04-29 16:32:10.000 -0100B13007A6A000,"The Gardens Between",status-playable,playable,2021-01-29 16:16:53.000 -010036E00FB20000,"The Great Ace Attorney Chronicles",status-playable,playable,2023-06-22 21:26:29.000 -010007B012514000,"The Great Perhaps",status-playable,playable,2020-09-02 15:57:04.000 -01003B300E4AA000,"THE GRISAIA TRILOGY",status-playable,playable,2021-01-31 15:53:59.000 -01001950137D8000,"The Hong Kong Massacre",crash;status-ingame,ingame,2021-01-21 12:06:56.000 -01004AD00E094000,"The House of Da Vinci",status-playable,playable,2021-01-05 14:17:19.000 -01005A80113D2000,"The House of Da Vinci 2",status-playable,playable,2020-10-23 20:47:17.000 -0100E24004510000,"The Hunt - Championship Edition",status-menus;32-bit,menus,2022-07-21 20:21:25.000 -01008940086E0000,"The Infectious Madness of Doctor Dekker",status-playable;nvdec,playable,2022-08-22 16:45:01.000 -0100B0B00B318000,"The Inner World",nvdec;status-playable,playable,2020-06-03 21:22:29.000 -0100A9D00B31A000,"The Inner World - The Last Wind Monk",nvdec;status-playable,playable,2020-11-16 13:09:40.000 -0100AE5003EE6000,"The Jackbox Party Pack",status-playable;online-working,playable,2023-05-28 09:28:40.000 -010015D003EE4000,"The Jackbox Party Pack 2",status-playable;online-working,playable,2022-08-22 18:23:40.000 -0100CC80013D6000,"The Jackbox Party Pack 3",slow;status-playable;online-working,playable,2022-08-22 18:41:06.000 -0100E1F003EE8000,"The Jackbox Party Pack 4",status-playable;online-working,playable,2022-08-22 18:56:34.000 -010052C00B184000,"The Journey Down: Chapter One",nvdec;status-playable,playable,2021-02-24 13:32:41.000 -01006BC00B188000,"The Journey Down: Chapter Three",nvdec;status-playable,playable,2021-02-24 13:45:27.000 -01009AB00B186000,"The Journey Down: Chapter Two",nvdec;status-playable,playable,2021-02-24 13:32:13.000 -010020500BD98000,"The King's Bird",status-playable,playable,2022-08-22 19:07:46.000 -010031B00DB34000,"the Knight & the Dragon",gpu;status-ingame,ingame,2023-08-14 10:31:43.000 -01007AF012E16000,"The Language Of Love",Needs Update;crash;status-nothing,nothing,2020-12-03 17:54:00.000 -010079C017F5E000,"The Lara Croft Collection",services-horizon;deadlock;status-nothing,nothing,2024-07-12 22:45:51.000 -0100449011506000,"The Last Campfire",status-playable,playable,2022-10-20 16:44:19.000 -0100AAD011592000,"The Last Dead End",gpu;status-ingame;UE4,ingame,2022-10-20 16:59:44.000 -0100AC800D022000,"THE LAST REMNANT Remastered",status-playable;nvdec;UE4,playable,2023-02-09 17:24:44.000 -0100B1900F0B6000,"The Legend of Dark Witch",status-playable,playable,2020-07-12 15:18:33.000 -01001920156C2000,"The Legend of Heroes: Trails from Zero",gpu;status-ingame;mac-bug,ingame,2024-09-14 21:41:41.000 -01005420101DA000,"The Legend of Heroes: Trails of Cold Steel III",status-playable,playable,2020-12-16 10:59:18.000 -01009B101044C000,"The Legend of Heroes: Trails of Cold Steel III Demo",demo;nvdec;status-playable,playable,2021-04-23 01:07:32.000 -0100D3C010DE8000,"The Legend of Heroes: Trails of Cold Steel IV",nvdec;status-playable,playable,2021-04-23 14:01:05.000 -01005E5013862000,"THE LEGEND OF HEROES: ZERO NO KISEKI KAI [英雄傳說 零之軌跡:改]",status-nothing;crash,nothing,2021-09-30 14:41:07.000 -01008CF01BAAC000,"The Legend of Zelda Echoes of Wisdom",status-playable;nvdec;ASTC;intel-vendor-bug,playable,2024-10-01 14:11:01.000 -0100509005AF2000,"The Legend of Zelda: Breath of the Wild Demo",status-ingame;demo,ingame,2022-12-24 05:02:58.000 -01007EF00011E000,"The Legend of Zelda™: Breath of the Wild",gpu;status-ingame;amd-vendor-bug;mac-bug,ingame,2024-09-23 19:35:46.000 -01006BB00C6F0000,"The Legend of Zelda™: Link’s Awakening",gpu;status-ingame;nvdec;mac-bug,ingame,2023-08-09 17:37:40.000 -01002DA013484000,"The Legend of Zelda™: Skyward Sword HD",gpu;status-ingame,ingame,2024-06-14 16:48:29.000 -0100F2C0115B6000,"The Legend of Zelda™: Tears of the Kingdom",gpu;status-ingame;amd-vendor-bug;intel-vendor-bug;mac-bug,ingame,2024-08-24 12:38:30.000 -0100A4400BE74000,"The LEGO Movie 2 Videogame",status-playable,playable,2023-03-01 11:23:37.000 -010064B00B95C000,"The Liar Princess and the Blind Prince",audio;slow;status-playable,playable,2020-06-08 21:23:28.000 -0100735004898000,"The Lion's Song",status-playable,playable,2021-06-09 15:07:16.000 -0100A5000D590000,"The Little Acre",nvdec;status-playable,playable,2021-03-02 20:22:27.000 -01007A700A87C000,"The Long Dark",status-playable,playable,2021-02-21 14:19:52.000 -010052B003A38000,"The Long Reach",nvdec;status-playable,playable,2021-02-24 14:09:48.000 -01003C3013300000,"The Long Return",slow;status-playable,playable,2020-12-10 21:05:10.000 -0100CE1004E72000,"The Longest Five Minutes",gpu;status-boots,boots,2023-02-19 18:33:11.000 -0100F3D0122C2000,"The Longing",gpu;status-ingame,ingame,2022-11-12 15:00:58.000 -010085A00C5E8000,"The Lord of the Rings: Adventure Card Game - Definitive Edition",status-menus;online-broken,menus,2022-09-16 15:19:32.000 -01008A000A404000,"The Lost Child",nvdec;status-playable,playable,2021-02-23 15:44:20.000 -0100BAB00A116000,"The Low Road",status-playable,playable,2021-02-26 13:23:22.000 -,"The Mahjong",Needs Update;crash;services;status-nothing,nothing,2021-04-01 22:06:22.000 -0100DC300AC78000,"The Messenger",status-playable,playable,2020-03-22 13:51:37.000 -0100DEC00B2BC000,"The Midnight Sanctuary",status-playable;nvdec;UE4;vulkan-backend-bug,playable,2022-10-03 17:17:32.000 -0100F1B00B456000,"The MISSING: J.J. Macfield and the Island of Memories",status-playable,playable,2022-08-22 19:36:18.000 -010033300AC1A000,"The Mooseman",status-playable,playable,2021-02-24 12:58:57.000 -01005E9016BDE000,"The movie The Quintessential Bride -Five Memories Spent with You-",status-playable,playable,2023-12-14 14:43:43.000 -0100496004194000,"The Mummy Demastered",status-playable,playable,2021-02-23 13:11:27.000 -01004C500AAF6000,"The Mystery of the Hudson Case",status-playable,playable,2020-06-01 11:03:36.000 -01000CF0084BC000,"The Next Penelope",status-playable,playable,2021-01-29 16:26:11.000 -01001FB00E386000,"THE NINJA SAVIORS Return of the Warriors",online;status-playable,playable,2021-03-25 23:48:07.000 -0100B080184BC000,"The Oregon Trail",gpu;status-ingame,ingame,2022-11-25 16:11:49.000 -0100B0101265C000,"The Otterman Empire",UE4;gpu;status-ingame,ingame,2021-06-17 12:27:15.000 -01000BC01801A000,"The Outbound Ghost",status-nothing,nothing,2024-03-02 17:10:58.000 -0100626011656000,"The Outer Worlds",gpu;status-ingame;nvdec;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-10-03 17:55:32.000 -01005C500D690000,"The Park",UE4;crash;gpu;status-ingame,ingame,2020-12-18 12:50:07.000 -010050101127C000,"The Persistence",nvdec;status-playable,playable,2021-06-06 19:15:40.000 -0100CD300880E000,"The Pinball Arcade",status-playable;online-broken,playable,2022-08-22 19:49:46.000 -01006BD018B54000,"The Plucky Squire",status-ingame;crash,ingame,2024-09-27 22:32:33.000 -0100E6A00B960000,"The Princess Guide",status-playable,playable,2021-02-24 14:23:34.000 -010058A00BF1C000,"The Raven Remastered",status-playable;nvdec,playable,2022-08-22 20:02:47.000 -0100EB100D17C000,"The Red Strings Club",status-playable,playable,2020-06-01 10:51:18.000 -010079400BEE0000,"The Room",status-playable,playable,2021-04-14 18:57:05.000 -010033100EE12000,"The Ryuo's Work is Never Done!",status-playable,playable,2022-03-29 00:35:37.000 -01002BA00C7CE000,"The Savior's Gang",gpu;status-ingame;nvdec;UE4,ingame,2022-09-21 12:37:48.000 -0100F3200E7CA000,"The Settlers®: New Allies",deadlock;status-nothing,nothing,2023-10-25 00:18:05.000 -0100F89003BC8000,"The Sexy Brutale",status-playable,playable,2021-01-06 17:48:28.000 -01001FF00BEE8000,"The Shapeshifting Detective",nvdec;status-playable,playable,2021-01-10 13:10:49.000 -010028D00BA1A000,"The Sinking City",status-playable;nvdec;UE4,playable,2022-09-12 16:41:55.000 -010041C00A68C000,"The Spectrum Retreat",status-playable,playable,2022-10-03 18:52:40.000 -010029300E5C4000,"The Stanley Parable: Ultra Deluxe",gpu;status-ingame,ingame,2024-07-12 23:18:26.000 -010007F00AF56000,"The Station",status-playable,playable,2022-09-28 18:15:27.000 -0100858010DC4000,"the StoryTale",status-playable,playable,2022-09-03 13:00:25.000 -0100AA400A238000,"The Stretchers™",status-playable;nvdec;UE4,playable,2022-09-16 15:40:58.000 -0100E3100450E000,"The Strike - Championship Edition",gpu;status-boots;32-bit,boots,2022-12-09 15:58:16.000 -0100EF200DA60000,"The Survivalists",status-playable,playable,2020-10-27 15:51:13.000 -010040D00B7CE000,"The Swindle",status-playable;nvdec,playable,2022-08-22 20:53:52.000 -010037D00D568000,"The Swords of Ditto: Mormo's Curse",slow;status-ingame,ingame,2020-12-06 00:13:12.000 -01009B300D76A000,"The Tiny Bang Story",status-playable,playable,2021-03-05 15:39:05.000 -0100C3300D8C4000,"The Touryst",status-ingame;crash,ingame,2023-08-22 01:32:38.000 -010047300EBA6000,"The Tower of Beatrice",status-playable,playable,2022-09-12 16:51:42.000 -010058000A576000,"The Town of Light: Deluxe Edition",gpu;status-playable,playable,2022-09-21 12:51:34.000 -0100B0E0086F6000,"The Trail: Frontier Challenge",slow;status-playable,playable,2022-08-23 15:10:51.000 -0100EA100F516000,"The Turing Test",status-playable;nvdec,playable,2022-09-21 13:24:07.000 -010064E00ECBC000,"The Unicorn Princess",status-playable,playable,2022-09-16 16:20:56.000 -0100BCF00E970000,"The Vanishing of Ethan Carter",UE4;status-playable,playable,2021-06-09 17:14:47.000 -0100D0500B0A6000,"The VideoKid",nvdec;status-playable,playable,2021-01-06 09:28:24.000 -,"The Voice",services;status-menus,menus,2020-07-28 20:48:49.000 -010056E00B4F4000,"The Walking Dead: A New Frontier",status-playable,playable,2022-09-21 13:40:48.000 -010099100B6AC000,"The Walking Dead: Season Two",status-playable,playable,2020-08-09 12:57:06.000 -010029200B6AA000,"The Walking Dead: The Complete First Season",status-playable,playable,2021-06-04 13:10:56.000 -010060F00AA70000,"The Walking Dead: The Final Season - Season Pass",status-playable;online-broken,playable,2022-08-23 17:22:32.000 -010095F010568000,"The Wanderer: Frankenstein's Creature",status-playable,playable,2020-07-11 12:49:51.000 -01008B200FC6C000,"The Wardrobe: Even Better Edition",status-playable,playable,2022-09-16 19:14:55.000 -01003D100E9C6000,"The Witcher 3: Wild Hunt",status-playable;nvdec;vulkan-backend-bug;amd-vendor-bug,playable,2024-02-22 12:21:51.000 -0100B1300FF08000,"The Wonderful 101: Remastered",slow;status-playable;nvdec,playable,2022-09-30 13:49:28.000 -0100C1500B82E000,"The World Ends with You®: Final Remix",status-playable;ldn-untested,playable,2022-07-09 01:11:21.000 -0100E6200D56E000,"The World Next Door",status-playable,playable,2022-09-21 14:15:23.000 -010075900CD1C000,"Thea: The Awakening",status-playable,playable,2021-01-18 15:08:47.000 -010081B01777C000,"THEATRHYTHM FINAL BAR LINE",status-ingame;Incomplete,ingame,2024-08-05 14:24:55.000 -01001C2010D08000,"They Bleed Pixels",gpu;status-ingame,ingame,2024-08-09 05:52:18.000 -0100768010970000,"They Came From the Sky",status-playable,playable,2020-06-12 16:38:19.000 -0100CE700F62A000,"Thief of Thieves: Season One",status-nothing;crash;loader-allocator,nothing,2021-11-03 07:16:30.000 -0100CE400E34E000,"Thief Simulator",status-playable,playable,2023-04-22 04:39:11.000 -01009BD003B36000,"Thimbleweed Park",status-playable,playable,2022-08-24 11:15:31.000 -0100F2300A5DA000,"Think of the Children",deadlock;status-menus,menus,2021-11-23 09:04:45.000 -0100066004D68000,"This Is the Police",status-playable,playable,2022-08-24 11:37:05.000 -01004C100A04C000,"This is the Police 2",status-playable,playable,2022-08-24 11:49:17.000 -0100C7C00F77C000,"This Strange Realm Of Mine",status-playable,playable,2020-08-28 12:07:24.000 -0100A8700BC2A000,"This War of Mine: Complete Edition",gpu;status-ingame;32-bit;nvdec,ingame,2022-08-24 12:00:44.000 -0100AC500EEE8000,"THOTH",status-playable,playable,2020-08-05 18:35:28.000 -0100E910103B4000,"Thronebreaker: The Witcher Tales",nvdec;status-playable,playable,2021-06-03 16:40:15.000 -01006F6002840000,"Thumper",gpu;status-ingame,ingame,2024-08-12 02:41:07.000 -01000AC011588000,"Thy Sword",status-ingame;crash,ingame,2022-09-30 16:43:14.000 -0100E9000C42C000,"Tick Tock: A Tale for Two",status-menus,menus,2020-07-14 14:49:38.000 -0100B6D00C2DE000,"Tied Together",nvdec;status-playable,playable,2021-04-10 14:03:46.000 -010074500699A000,"Timber Tennis: Versus",online;status-playable,playable,2020-10-03 17:07:15.000 -01004C500B698000,"Time Carnage",status-playable,playable,2021-06-16 17:57:28.000 -0100F770045CA000,"Time Recoil",status-playable,playable,2022-08-24 12:44:03.000 -0100DD300CF3A000,"Timespinner",gpu;status-ingame,ingame,2022-08-09 09:39:11.000 -0100393013A10000,"Timothy and the Mysterious Forest",gpu;slow;status-ingame,ingame,2021-06-02 00:42:11.000 -0100F7C010AF6000,"Tin & Kuna",status-playable,playable,2020-11-17 12:16:12.000 -0100DF900FC52000,"Tiny Gladiators",status-playable,playable,2020-12-14 00:09:43.000 -010061A00AE64000,"Tiny Hands Adventure",status-playable,playable,2022-08-24 16:07:48.000 -010074800741A000,"TINY METAL",UE4;gpu;nvdec;status-ingame,ingame,2021-03-05 17:11:57.000 -01005D0011A40000,"Tiny Racer",status-playable,playable,2022-10-07 11:13:03.000 -010002401AE94000,"Tiny Thor",gpu;status-ingame,ingame,2024-07-26 08:37:35.000 -0100A73016576000,"Tinykin",gpu;status-ingame,ingame,2023-06-18 12:12:24.000 -0100FE801185E000,"Titan Glory",status-boots,boots,2022-10-07 11:36:40.000 -0100605008268000,"Titan Quest",status-playable;nvdec;online-broken,playable,2022-08-19 21:54:15.000 -01009C400E93E000,"Titans Pinball",slow;status-playable,playable,2020-06-09 16:53:52.000 -010019500DB1E000,"Tlicolity Eyes - twinkle showtime -",gpu;status-boots,boots,2021-05-29 19:43:44.000 -010036700F83E000,"To the Moon",status-playable,playable,2021-03-20 15:33:38.000 -010014900865A000,"Toast Time: Smash Up!",crash;services;status-menus,menus,2020-04-03 12:26:59.000 -0100A4A00B2E8000,"Toby: The Secret Mine",nvdec;status-playable,playable,2021-01-06 09:22:33.000 -0100B5200BB7C000,"ToeJam & Earl: Back in the Groove!",status-playable,playable,2021-01-06 22:56:58.000 -0100B5E011920000,"TOHU",slow;status-playable,playable,2021-02-08 15:40:44.000 -0100F3400A432000,"Toki",nvdec;status-playable,playable,2021-01-06 19:59:23.000 -01003E500F962000,"Tokyo Dark – Remembrance –",nvdec;status-playable,playable,2021-06-10 20:09:49.000 -0100A9400C9C2000,"Tokyo Mirage Sessions™ #FE Encore",32-bit;status-playable;nvdec,playable,2022-07-07 09:41:07.000 -0100E2E00CB14000,"Tokyo School Life",status-playable,playable,2022-09-16 20:25:54.000 -010024601BB16000,"Tomb Raider I-III Remastered Starring Lara Croft",gpu;status-ingame;opengl,ingame,2024-09-27 12:32:04.000 -0100D7F01E49C000,"Tomba! Special Edition",services-horizon;status-nothing,nothing,2024-09-15 21:59:54.000 -0100D400100F8000,"Tonight We Riot",status-playable,playable,2021-02-26 15:55:09.000 -0100CC00102B4000,"Tony Hawk's™ Pro Skater™ 1 + 2",gpu;status-ingame;Needs Update,ingame,2024-09-24 08:18:14.000 -010093F00E818000,"Tools Up!",crash;status-ingame,ingame,2020-07-21 12:58:17.000 -01009EA00E2B8000,"Toon War",status-playable,playable,2021-06-11 16:41:53.000 -010090400D366000,"Torchlight II",status-playable,playable,2020-07-27 14:18:37.000 -010075400DDB8000,"Torchlight III",status-playable;nvdec;online-broken;UE4,playable,2022-10-14 22:20:17.000 -01007AF011732000,"TORICKY-S",deadlock;status-menus,menus,2021-11-25 08:53:36.000 -0100BEB010F2A000,"Torn Tales: Rebound Edition",status-playable,playable,2020-11-01 14:11:59.000 -0100A64010D48000,"Total Arcade Racing",status-playable,playable,2022-11-12 15:12:48.000 -0100512010728000,"Totally Reliable Delivery Service",status-playable;online-broken,playable,2024-09-27 19:32:22.000 -01004E900B082000,"Touhou Genso Wanderer Reloaded",gpu;status-ingame;nvdec,ingame,2022-08-25 11:57:36.000 -010010F004022000,"Touhou Kobuto V: Burst Battle",status-playable,playable,2021-01-11 15:28:58.000 -0100E9D00D6C2000,"TOUHOU Spell Bubble",status-playable,playable,2020-10-18 11:43:43.000 -0100F7B00595C000,"Tower Of Babel",status-playable,playable,2021-01-06 17:05:15.000 -010094600DC86000,"Tower Of Time",gpu;nvdec;status-ingame,ingame,2020-07-03 11:11:12.000 -0100A1C00359C000,"TowerFall",status-playable,playable,2020-05-16 18:58:07.000 -0100F6200F77E000,"Towertale",status-playable,playable,2020-10-15 13:56:58.000 -010049E00BA34000,"Townsmen - A Kingdom Rebuilt",status-playable;nvdec,playable,2022-10-14 22:48:59.000 -01009FF00A160000,"Toy Stunt Bike: Tiptop's Trials",UE4;status-playable,playable,2021-04-10 13:56:34.000 -0100192010F5A000,"Tracks - Toybox Edition",UE4;crash;status-nothing,nothing,2021-02-08 15:19:18.000 -0100BCA00843A000,"Trailblazers",status-playable,playable,2021-03-02 20:40:49.000 -010009F004E66000,"Transcripted",status-playable,playable,2022-08-25 12:13:11.000 -01005E500E528000,"TRANSFORMERS: BATTLEGROUNDS",online;status-playable,playable,2021-06-17 18:08:19.000 -0100BE500BEA2000,"Transistor",status-playable,playable,2020-10-22 11:28:02.000 -0100A8D010BFA000,"Travel Mosaics 2: Roman Holiday",status-playable,playable,2021-05-26 12:33:16.000 -0100102010BFC000,"Travel Mosaics 3: Tokyo Animated",status-playable,playable,2021-05-26 12:06:27.000 -010096D010BFE000,"Travel Mosaics 4: Adventures In Rio",status-playable,playable,2021-05-26 11:54:58.000 -01004C4010C00000,"Travel Mosaics 5: Waltzing Vienna",status-playable,playable,2021-05-26 11:49:35.000 -0100D520119D6000,"Travel Mosaics 6: Christmas Around the World",status-playable,playable,2021-05-26 00:52:47.000 -01000BD0119DE000,"Travel Mosaics 7: Fantastic Berlin",status-playable,playable,2021-05-22 18:37:34.000 -01007DB00A226000,"Travel Mosaics: A Paris Tour",status-playable,playable,2021-05-26 12:42:26.000 -010011600C946000,"Travis Strikes Again: No More Heroes",status-playable;nvdec;UE4,playable,2022-08-25 12:36:38.000 -01006EB004B0E000,"Treadnauts",status-playable,playable,2021-01-10 14:57:41.000 -0100D7800E9E0000,"Trials of Mana",status-playable;UE4,playable,2022-09-30 21:50:37.000 -0100E1D00FBDE000,"Trials of Mana Demo",status-playable;nvdec;UE4;demo;vulkan-backend-bug,playable,2022-09-26 18:00:02.000 -01003E800A102000,"Trials Rising Standard Edition",status-playable,playable,2024-02-11 01:36:39.000 -0100CC80140F8000,"TRIANGLE STRATEGY™",gpu;status-ingame;Needs Update;UE4;vulkan-backend-bug,ingame,2024-09-25 20:48:37.000 -010064E00A932000,"Trine 2: Complete Story",nvdec;status-playable,playable,2021-06-03 11:45:20.000 -0100DEC00A934000,"Trine 3: The Artifacts of Power",ldn-untested;online;status-playable,playable,2021-06-03 12:01:24.000 -010055E00CA68000,"Trine 4: The Nightmare Prince",gpu;status-nothing,nothing,2025-01-07 05:47:46.000 -0100D9000A930000,"Trine Enchanted Edition",ldn-untested;nvdec;status-playable,playable,2021-06-03 11:28:15.000 -01002D7010A54000,"Trinity Trigger",status-ingame;crash,ingame,2023-03-03 03:09:09.000 -0100868013FFC000,"TRIVIAL PURSUIT Live! 2",status-boots,boots,2022-12-19 00:04:33.000 -0100F78002040000,"Troll and I™",gpu;nvdec;status-ingame,ingame,2021-06-04 16:58:50.000 -0100145011008000,"Trollhunters: Defenders of Arcadia",gpu;nvdec;status-ingame,ingame,2020-11-30 13:27:09.000 -0100FBE0113CC000,"Tropico 6 - Nintendo Switch™ Edition",status-playable;nvdec;UE4,playable,2022-10-14 23:21:03.000 -0100D06018DCA000,"Trouble Witches Final! Episode 01: Daughters of Amalgam",status-playable,playable,2024-04-08 15:08:11.000 -0100B5B0113CE000,"Troubleshooter",UE4;crash;status-nothing,nothing,2020-10-04 13:46:50.000 -010089600FB72000,"Trover Saves The Universe",UE4;crash;status-nothing,nothing,2020-10-03 10:25:27.000 -0100E6300D448000,"Trüberbrook",status-playable,playable,2021-06-04 17:08:00.000 -0100F2100AA5C000,"Truck and Logistics Simulator",status-playable,playable,2021-06-11 13:29:08.000 -0100CB50107BA000,"Truck Driver",status-playable;online-broken,playable,2022-10-20 17:42:33.000 -0100E75004766000,"True Fear: Forsaken Souls - Part 1",nvdec;status-playable,playable,2020-12-15 21:39:52.000 -010099900CAB2000,"TT Isle of Man",nvdec;status-playable,playable,2020-06-22 12:25:13.000 -010000400F582000,"TT Isle of Man Ride on the Edge 2",gpu;status-ingame;nvdec;online-broken,ingame,2022-09-30 22:13:05.000 -0100752011628000,"TTV2",status-playable,playable,2020-11-27 13:21:36.000 -0100AFE00452E000,"Tumblestone",status-playable,playable,2021-01-07 17:49:20.000 -010085500D5F6000,"Turok",gpu;status-ingame,ingame,2021-06-04 13:16:24.000 -0100CDC00D8D6000,"Turok 2: Seeds of Evil",gpu;status-ingame;vulkan,ingame,2022-09-12 17:50:05.000 -010004B0130C8000,"Turrican Flashback",status-playable;audout,playable,2021-08-30 10:07:56.000 -0100B1F0090F2000,"TurtlePop: Journey to Freedom",status-playable,playable,2020-06-12 17:45:39.000 -0100047009742000,"Twin Robots: Ultimate Edition",status-playable;nvdec,playable,2022-08-25 14:24:03.000 -010031200E044000,"Two Point Hospital™",status-ingame;crash;nvdec,ingame,2022-09-22 11:22:23.000 -010038400C2FE000,"TY the Tasmanian Tiger™ HD",32-bit;crash;nvdec;status-menus,menus,2020-12-17 21:15:00.000 -010073A00C4B2000,"Tyd wag vir Niemand",status-playable,playable,2021-03-02 13:39:53.000 -0100D5B00D6DA000,"Type:Rider",status-playable,playable,2021-01-06 13:12:55.000 -010040D01222C000,"UBERMOSH: SANTICIDE",status-playable,playable,2020-11-27 15:05:01.000 -0100992010BF8000,"Ubongo",status-playable,playable,2021-02-04 21:15:01.000 -010079000B56C000,"UglyDolls: An Imperfect Adventure",status-playable;nvdec;UE4,playable,2022-08-25 14:42:16.000 -010048901295C000,"Ultimate Fishing Simulator",status-playable,playable,2021-06-16 18:38:23.000 -01009D000FAE0000,"Ultimate Racing 2D",status-playable,playable,2020-08-05 17:27:09.000 -010045200A1C2000,"Ultimate Runner",status-playable,playable,2022-08-29 12:52:40.000 -01006B601117E000,"Ultimate Ski Jumping 2020",online;status-playable,playable,2021-03-02 20:54:11.000 -01002D4012222000,"Ultra Hat Dimension",services;audio;status-menus,menus,2021-11-18 09:05:20.000 -01009C000415A000,"Ultra Hyperball",status-playable,playable,2021-01-06 10:09:55.000 -01007330027EE000,"Ultra Street Fighter® II: The Final Challengers",status-playable;ldn-untested,playable,2021-11-25 07:54:58.000 -01006A300BA2C000,"Umineko no Naku Koro ni Saku - うみねこのなく頃に咲 ~猫箱と夢想の交響曲~",status-playable;audout,playable,2023-05-04 17:25:23.000 -0100592005164000,"UNBOX: Newbie's Adventure",status-playable;UE4,playable,2022-08-29 13:12:56.000 -01002D900C5E4000,"Uncanny Valley",nvdec;status-playable,playable,2021-06-04 13:28:45.000 -010076F011F54000,"Undead & Beyond",status-playable;nvdec,playable,2022-10-04 09:11:18.000 -01008F3013E4E000,"Under Leaves",status-playable,playable,2021-05-22 18:13:58.000 -010080B00AD66000,"Undertale",status-playable,playable,2022-08-31 17:31:46.000 -01008F80049C6000,"Unepic",status-playable,playable,2024-01-15 17:03:00.000 -01007820096FC000,"UnExplored",status-playable,playable,2021-01-06 10:02:16.000 -01007D1013512000,"Unhatched",status-playable,playable,2020-12-11 12:11:09.000 -010069401ADB8000,"Unicorn Overlord",status-playable,playable,2024-09-27 14:04:32.000 -0100B1400D92A000,"Unit 4",status-playable,playable,2020-12-16 18:54:13.000 -010045200D3A4000,"Unknown Fate",slow;status-ingame,ingame,2020-10-15 12:27:42.000 -0100AB2010B4C000,"Unlock The King",status-playable,playable,2020-09-01 13:58:27.000 -0100A3E011CB0000,"Unlock the King 2",status-playable,playable,2021-06-15 20:43:55.000 -01005AA00372A000,"UNO® for Nintendo Switch",status-playable;nvdec;ldn-untested,playable,2022-07-28 14:49:47.000 -0100E5D00CC0C000,"Unravel Two",status-playable;nvdec,playable,2024-05-23 15:45:05.000 -010001300CC4A000,"Unruly Heroes",status-playable,playable,2021-01-07 18:09:31.000 -0100B410138C0000,"Unspottable",status-playable,playable,2022-10-25 19:28:49.000 -010082400BCC6000,"Untitled Goose Game",status-playable,playable,2020-09-26 13:18:06.000 -0100E49013190000,"Unto The End",gpu;status-ingame,ingame,2022-10-21 11:13:29.000 -0100B110109F8000,"Urban Flow",services;status-playable,playable,2020-07-05 12:51:47.000 -010054F014016000,"Urban Street Fighting",status-playable,playable,2021-02-20 19:16:36.000 -01001B10068EC000,"Urban Trial Playground",UE4;nvdec;online;status-playable,playable,2021-03-25 20:56:51.000 -0100A2500EB92000,"Urban Trial Tricky",status-playable;nvdec;UE4,playable,2022-12-06 13:07:56.000 -01007C0003AEC000,"Use Your Words",status-menus;nvdec;online-broken,menus,2022-08-29 17:22:10.000 -0100D4300EBF8000,"Uta no Prince-sama Amazing Aria & Sweet Serenade LOVE",status-nothing;crash;Needs More Attention;Needs Update,nothing,2022-02-09 08:57:44.000 -010024200E00A000,"Uta no☆Prince-sama♪ Repeat Love",status-playable;nvdec,playable,2022-12-09 09:21:51.000 -010029B00CC3E000,"UTOPIA 9 - A Volatile Vacation",nvdec;status-playable,playable,2020-12-16 17:06:42.000 -010064400B138000,"V-Rally 4",gpu;nvdec;status-ingame,ingame,2021-06-07 19:37:31.000 -0100A6700D66E000,"VA-11 HALL-A",status-playable,playable,2021-02-26 15:05:34.000 -01009E2003FE2000,"Vaccine",nvdec;status-playable,playable,2021-01-06 01:02:07.000 -010089700F30C000,"Valfaris",status-playable,playable,2022-09-16 21:37:24.000 -0100CAF00B744000,"Valkyria Chronicles",status-ingame;32-bit;crash;nvdec,ingame,2022-11-23 20:03:32.000 -01005C600AC68000,"Valkyria Chronicles 4",audout;nvdec;status-playable,playable,2021-06-03 18:12:25.000 -0100FBD00B91E000,"Valkyria Chronicles 4 Demo",slow;status-ingame;demo,ingame,2022-08-29 20:39:07.000 -0100E0E00B108000,"Valley",status-playable;nvdec,playable,2022-09-28 19:27:58.000 -010089A0197E4000,"Vampire Survivors",status-ingame,ingame,2024-06-17 09:57:38.000 -010020C00FFB6000,"Vampire: The Masquerade - Coteries of New York",status-playable,playable,2020-10-04 14:55:22.000 -01000BD00CE64000,"VAMPYR",status-playable;nvdec;UE4,playable,2022-09-16 22:15:51.000 -01007C500D650000,"Vandals",status-playable,playable,2021-01-27 21:45:46.000 -010030F00CA1E000,"Vaporum",nvdec;status-playable,playable,2021-05-28 14:25:33.000 -010045C0109F2000,"VARIABLE BARRICADE NS",status-playable;nvdec,playable,2022-02-26 15:50:13.000 -0100FE200AF48000,"VASARA Collection",nvdec;status-playable,playable,2021-02-28 15:26:10.000 -0100AD300E4FA000,"Vasilis",status-playable,playable,2020-09-01 15:05:35.000 -01009CD003A0A000,"Vegas Party",status-playable,playable,2021-04-14 19:21:41.000 -010098400E39E000,"Vektor Wars",status-playable;online-broken;vulkan-backend-bug,playable,2022-10-04 09:23:46.000 -01003A8018E60000,"Vengeful Guardian: Moonrider",deadlock;status-boots,boots,2024-03-17 23:35:37.000 -010095B00DBC8000,"Venture Kid",crash;gpu;status-ingame,ingame,2021-04-18 16:33:17.000 -0100C850134A0000,"Vera Blanc: Full Moon",audio;status-playable,playable,2020-12-17 12:09:30.000 -0100379013A62000,"Very Very Valet",status-playable;nvdec,playable,2022-11-12 15:25:51.000 -01006C8014DDA000,"Very Very Valet Demo",status-boots;crash;Needs Update;demo,boots,2022-11-12 15:26:13.000 -010057B00712C000,"Vesta",status-playable;nvdec,playable,2022-08-29 21:03:39.000 -0100E81007A06000,"Victor Vran Overkill Edition",gpu;deadlock;status-ingame;nvdec;opengl,ingame,2022-08-30 11:46:56.000 -01005880063AA000,"Violett",nvdec;status-playable,playable,2021-01-28 13:09:36.000 -010037900CB1C000,"Viviette",status-playable,playable,2021-06-11 15:33:40.000 -0100D010113A8000,"Void Bastards",status-playable,playable,2022-10-15 00:04:19.000 -0100FF7010E7E000,"void tRrLM(); //Void Terrarium",gpu;status-ingame;Needs Update;regression,ingame,2023-02-10 01:13:25.000 -010078D0175EE000,"void* tRrLM2(); //Void Terrarium 2",status-playable,playable,2023-12-21 11:00:41.000 -0100B1A0066DC000,"Volgarr the Viking",status-playable,playable,2020-12-18 15:25:50.000 -0100A7900E79C000,"Volta-X",status-playable;online-broken,playable,2022-10-07 12:20:51.000 -01004D8007368000,"Vostok Inc.",status-playable,playable,2021-01-27 17:43:59.000 -0100B1E0100A4000,"Voxel Galaxy",status-playable,playable,2022-09-28 22:45:02.000 -0100AFA011068000,"Voxel Pirates",status-playable,playable,2022-09-28 22:55:02.000 -0100BFB00D1F4000,"Voxel Sword",status-playable,playable,2022-08-30 14:57:27.000 -01004E90028A2000,"Vroom in the night sky",status-playable;Needs Update;vulkan-backend-bug,playable,2023-02-20 02:32:29.000 -0100C7C00AE6C000,"VSR: Void Space Racing",status-playable,playable,2021-01-27 14:08:59.000 -0100B130119D0000,"Waifu Uncovered",status-ingame;crash,ingame,2023-02-27 01:17:46.000 -0100E29010A4A000,"Wanba Warriors",status-playable,playable,2020-10-04 17:56:22.000 -010078800825E000,"Wanderjahr TryAgainOrWalkAway",status-playable,playable,2020-12-16 09:46:04.000 -0100B27010436000,"Wanderlust Travel Stories",status-playable,playable,2021-04-07 16:09:12.000 -0100F8A00853C000,"Wandersong",nvdec;status-playable,playable,2021-06-04 15:33:34.000 -0100D67013910000,"Wanna Survive",status-playable,playable,2022-11-12 21:15:43.000 -010056901285A000,"War Dogs: Red's Return",status-playable,playable,2022-11-13 15:29:01.000 -01004FA01391A000,"War Of Stealth - assassin",status-playable,playable,2021-05-22 17:34:38.000 -010035A00D4E6000,"War Party",nvdec;status-playable,playable,2021-01-27 18:26:32.000 -010049500DE56000,"War Tech Fighters",status-playable;nvdec,playable,2022-09-16 22:29:31.000 -010084D00A134000,"War Theatre",gpu;status-ingame,ingame,2021-06-07 19:42:45.000 -0100B6B013B8A000,"War Truck Simulator",status-playable,playable,2021-01-31 11:22:54.000 -0100563011B4A000,"War-Torn Dreams",crash;status-nothing,nothing,2020-10-21 11:36:16.000 -010054900F51A000,"WARBORN",status-playable,playable,2020-06-25 12:36:47.000 -01000F0002BB6000,"Wargroove",status-playable;online-broken,playable,2022-08-31 10:30:45.000 -0100C6000EEA8000,"Warhammer 40,000: Mechanicus",nvdec;status-playable,playable,2021-06-13 10:46:38.000 -0100E5600D7B2000,"WARHAMMER 40,000: SPACE WOLF",status-playable;online-broken,playable,2022-09-20 21:11:20.000 -010031201307A000,"Warhammer Age of Sigmar: Storm Ground",status-playable;nvdec;online-broken;UE4,playable,2022-11-13 15:46:14.000 -01002FF00F460000,"Warhammer Quest 2: The End Times",status-playable,playable,2020-08-04 15:28:03.000 -0100563010E0C000,"WarioWare™: Get It Together!",gpu;status-ingame;opengl-backend-bug,ingame,2024-04-23 01:04:56.000 -010045B018EC2000,"WarioWare™: Move It!",status-playable,playable,2023-11-14 00:23:51.000 -0100E0400E320000,"Warlocks 2: God Slayers",status-playable,playable,2020-12-16 17:36:50.000 -0100DB300A026000,"Warp Shift",nvdec;status-playable,playable,2020-12-15 14:48:48.000 -010032700EAC4000,"WarriOrb",UE4;status-playable,playable,2021-06-17 15:45:14.000 -0100E8500AD58000,"WARRIORS OROCHI 4 ULTIMATE",status-playable;nvdec;online-broken,playable,2024-08-07 01:50:37.000 -0100CD900FB24000,"WARTILE",UE4;crash;gpu;status-menus,menus,2020-12-11 21:56:10.000 -010039A00BC64000,"Wasteland 2: Director's Cut",nvdec;status-playable,playable,2021-01-27 13:34:11.000 -0100B79011F06000,"Water Balloon Mania",status-playable,playable,2020-10-23 20:20:59.000 -0100BA200C378000,"Way of the Passive Fist",gpu;status-ingame,ingame,2021-02-26 21:07:06.000 -0100560010E3E000,"We should talk.",crash;status-nothing,nothing,2020-08-03 12:32:36.000 -010096000EEBA000,"Welcome to Hanwell",UE4;crash;status-boots,boots,2020-08-03 11:54:57.000 -0100D7F010B94000,"Welcome to Primrose Lake",status-playable,playable,2022-10-21 11:30:57.000 -010035600EC94000,"Wenjia",status-playable,playable,2020-06-08 11:38:30.000 -010031B00A4E8000,"West of Loathing",status-playable,playable,2021-01-28 12:35:19.000 -010038900DFE0000,"What Remains of Edith Finch",slow;status-playable;UE4,playable,2022-08-31 19:57:59.000 -010033600ADE6000,"Wheel of Fortune®",status-boots;crash;Needs More Attention;nvdec,boots,2023-11-12 20:29:24.000 -0100DFC00405E000,"Wheels of Aurelia",status-playable,playable,2021-01-27 21:59:25.000 -010027D011C9C000,"Where Angels Cry",gpu;status-ingame;nvdec,ingame,2022-09-30 22:24:47.000 -0100FDB0092B4000,"Where Are My Friends?",status-playable,playable,2022-09-21 14:39:26.000 -01000C000C966000,"Where the Bees Make Honey",status-playable,playable,2020-07-15 12:40:49.000 -010017500E7E0000,"Whipseey and the Lost Atlas",status-playable,playable,2020-06-23 20:24:14.000 -010015A00AF1E000,"Whispering Willows",status-playable;nvdec,playable,2022-09-30 22:33:05.000 -010027F0128EA000,"Who Wants to Be a Millionaire?",crash;status-nothing,nothing,2020-12-11 20:22:42.000 -0100C7800CA06000,"Widget Satchel",status-playable,playable,2022-09-16 22:41:07.000 -0100CFC00A1D8000,"Wild Guns™ Reloaded",status-playable,playable,2021-01-28 12:29:05.000 -010071F00D65A000,"Wilmot's Warehouse",audio;gpu;status-ingame,ingame,2021-06-02 17:24:32.000 -010048800B638000,"Windjammers",online;status-playable,playable,2020-10-13 11:24:25.000 -010059900BA3C000,"Windscape",status-playable,playable,2022-10-21 11:49:42.000 -0100D6800CEAC000,"Windstorm: An Unexpected Arrival",UE4;status-playable,playable,2021-06-07 19:33:19.000 -01005A100B314000,"Windstorm: Start of a Great Friendship",UE4;gpu;nvdec;status-ingame,ingame,2020-12-22 13:17:48.000 -010035B012F28000,"Wing of Darkness",status-playable;UE4,playable,2022-11-13 16:03:51.000 -0100A4A015FF0000,"Winter Games 2023",deadlock;status-menus,menus,2023-11-07 20:47:36.000 -010012A017F18800,"Witch On The Holy Night",status-playable,playable,2023-03-06 23:28:11.000 -0100454012E32000,"Witch Spring 3 Re:Fine -The Story of the Marionette Witch Eirudy-",status-ingame;crash,ingame,2021-08-08 11:56:18.000 -01002FC00C6D0000,"Witch Thief",status-playable,playable,2021-01-27 18:16:07.000 -010061501904E000,"Witch's Garden",gpu;status-ingame;crash;vulkan-backend-bug;opengl-backend-bug,ingame,2023-01-11 02:11:24.000 -0100BD4011FFE000,"Witcheye",status-playable,playable,2020-12-14 22:56:08.000 -0100522007AAA000,"Wizard of Legend",status-playable,playable,2021-06-07 12:20:46.000 -010081900F9E2000,"Wizards of Brandel",status-nothing,nothing,2020-10-14 15:52:33.000 -0100C7600E77E000,"Wizards: Wand of Epicosity",status-playable,playable,2022-10-07 12:32:06.000 -01009040091E0000,"Wolfenstein II®: The New Colossus™",gpu;status-ingame,ingame,2024-04-05 05:39:46.000 -01003BD00CAAE000,"Wolfenstein: Youngblood",status-boots;online-broken,boots,2024-07-12 23:49:20.000 -010037A00F5E2000,"Wonder Blade",status-playable,playable,2020-12-11 17:55:31.000 -0100B49016FF0000,"Wonder Boy Anniversary Collection",deadlock;status-nothing,nothing,2023-04-20 16:01:48.000 -0100EB2012E36000,"Wonder Boy Asha in Monster World",status-nothing;crash,nothing,2021-11-03 08:45:06.000 -0100A6300150C000,"Wonder Boy: The Dragon's Trap",status-playable,playable,2021-06-25 04:53:21.000 -0100F5D00C812000,"Wondershot",status-playable,playable,2022-08-31 21:05:31.000 -0100E0300EB04000,"Woodle Tree 2: Deluxe",gpu;slow;status-ingame,ingame,2020-06-04 18:44:00.000 -0100288012966000,"Woodsalt",status-playable,playable,2021-04-06 17:01:48.000 -010083E011BC8000,"Wordify",status-playable,playable,2020-10-03 09:01:07.000 -01009D500A194000,"World Conqueror X",status-playable,playable,2020-12-22 16:10:29.000 -010072000BD32000,"WORLD OF FINAL FANTASY MAXIMA",status-playable,playable,2020-06-07 13:57:23.000 -010009E001D90000,"World of Goo",gpu;status-boots;32-bit;crash;regression,boots,2024-04-12 05:52:14.000 -010061F01DB7C800,"World of Goo 2",status-boots,boots,2024-08-08 22:52:49.000 -01001E300B038000,"World Soccer Pinball",status-playable,playable,2021-01-06 00:37:02.000 -010048900CF64000,"Worldend Syndrome",status-playable,playable,2021-01-03 14:16:32.000 -01008E9007064000,"WorldNeverland - Elnea Kingdom",status-playable,playable,2021-01-28 17:44:23.000 -010000301025A000,"Worlds of Magic: Planar Conquest",status-playable,playable,2021-06-12 12:51:28.000 -01009CD012CC0000,"Worm Jazz",gpu;services;status-ingame;UE4;regression,ingame,2021-11-10 10:33:04.000 -01001AE005166000,"Worms W.M.D",gpu;status-boots;crash;nvdec;ldn-untested,boots,2023-09-16 21:42:59.000 -010037500C4DE000,"Worse Than Death",status-playable,playable,2021-06-11 16:05:40.000 -01006F100EB16000,"Woven",nvdec;status-playable,playable,2021-06-02 13:41:08.000 -010087800DCEA000,"WRC 8 FIA World Rally Championship",status-playable;nvdec,playable,2022-09-16 23:03:36.000 -01001A0011798000,"WRC 9 The Official Game",gpu;slow;status-ingame;nvdec,ingame,2022-10-25 19:47:39.000 -0100DC0012E48000,"Wreckfest",status-playable,playable,2023-02-12 16:13:00.000 -0100C5D00EDB8000,"Wreckin' Ball Adventure",status-playable;UE4,playable,2022-09-12 18:56:28.000 -010033700418A000,"Wulverblade",nvdec;status-playable,playable,2021-01-27 22:29:05.000 -01001C400482C000,"Wunderling DX",audio;status-ingame;crash,ingame,2022-09-10 13:20:12.000 -01003B401148E000,"Wurroom",status-playable,playable,2020-10-07 22:46:21.000 -010081700EDF4000,"WWE 2K Battlegrounds",status-playable;nvdec;online-broken;UE4,playable,2022-10-07 12:44:40.000 -010009800203E000,"WWE 2K18",status-playable;nvdec,playable,2023-10-21 17:22:01.000 -0100DF100B97C000,"X-Morph: Defense",status-playable,playable,2020-06-22 11:05:31.000 -0100D0B00FB74000,"XCOM® 2 Collection",gpu;status-ingame;crash,ingame,2022-10-04 09:38:30.000 -0100CC9015360000,"XEL",gpu;status-ingame,ingame,2022-10-03 10:19:39.000 -0100C9F009F7A000,"Xenoblade Chronicles 2: Torna ~ The Golden Country",slow;status-playable;nvdec,playable,2023-01-28 16:47:28.000 -0100E95004038000,"Xenoblade Chronicles™ 2",deadlock;status-ingame;amd-vendor-bug,ingame,2024-03-28 14:31:41.000 -010074F013262000,"Xenoblade Chronicles™ 3",gpu;status-ingame;crash;nvdec;vulkan-backend-bug;amd-vendor-bug,ingame,2024-08-06 19:56:44.000 -0100FF500E34A000,"Xenoblade Chronicles™ Definitive Edition",status-playable;nvdec,playable,2024-05-04 20:12:41.000 -010028600BA16000,"Xenon Racer",status-playable;nvdec;UE4,playable,2022-08-31 22:05:30.000 -010064200C324000,"Xenon Valkyrie+",status-playable,playable,2021-06-07 20:25:53.000 -0100928005BD2000,"Xenoraid",status-playable,playable,2022-09-03 13:01:10.000 -01005B5009364000,"Xeodrifter",status-playable,playable,2022-09-03 13:18:39.000 -01006FB00DB02000,"Yaga",status-playable;nvdec,playable,2022-09-16 23:17:17.000 -010076B0101A0000,"YesterMorrow",crash;status-ingame,ingame,2020-12-17 17:15:25.000 -010085500B29A000,"Yet Another Zombie Defense HD",status-playable,playable,2021-01-06 00:18:39.000 -0100725019978000,"YGGDRA UNION ~WE'LL NEVER FIGHT ALONE~",status-playable,playable,2020-04-03 02:20:47.000 -0100634008266000,"YIIK: A Postmodern RPG",status-playable,playable,2021-01-28 13:38:37.000 -0100C0000CEEA000,"Yo kai watch 1 for Nintendo Switch",gpu;status-ingame;opengl,ingame,2024-05-28 11:11:49.000 -010086C00AF7C000,"Yo-Kai Watch 4++",status-playable,playable,2024-06-18 20:21:44.000 -010002D00632E000,"Yoku's Island Express",status-playable;nvdec,playable,2022-09-03 13:59:02.000 -0100F47016F26000,"Yomawari 3",status-playable,playable,2022-05-10 08:26:51.000 -010012F00B6F2000,"Yomawari: The Long Night Collection",status-playable,playable,2022-09-03 14:36:59.000 -0100CC600ABB2000,"Yonder: The Cloud Catcher Chronicles (Retail Only)",status-playable,playable,2021-01-28 14:06:25.000 -0100BE50042F6000,"Yono and the Celestial Elephants",status-playable,playable,2021-01-28 18:23:58.000 -0100F110029C8000,"Yooka-Laylee",status-playable,playable,2021-01-28 14:21:45.000 -010022F00DA66000,"Yooka-Laylee and the Impossible Lair",status-playable,playable,2021-03-05 17:32:21.000 -01006000040C2000,"Yoshi’s Crafted World™",gpu;status-ingame;audout,ingame,2021-08-30 13:25:51.000 -0100AE800C9C6000,"Yoshi’s Crafted World™ Demo",gpu;status-boots;status-ingame,boots,2020-12-16 14:57:40.000 -,"Yoshiwara Higanbana Kuon no Chigiri",nvdec;status-playable,playable,2020-10-17 19:14:46.000 -01003A400C3DA800,"YouTube",status-playable,playable,2024-06-08 05:24:10.000 -00100A7700CCAA40,"Youtubers Life00",status-playable;nvdec,playable,2022-09-03 14:56:19.000 -0100E390124D8000,"Ys IX: Monstrum Nox",status-playable,playable,2022-06-12 04:14:42.000 -0100F90010882000,"Ys Origin",status-playable;nvdec,playable,2024-04-17 05:07:33.000 -01007F200B0C0000,"Ys VIII: Lacrimosa of DANA",status-playable;nvdec,playable,2023-08-05 09:26:41.000 -010022400BE5A000,"Yu-Gi-Oh! Legacy of the Duelist : Link Evolution",status-playable,playable,2024-09-27 21:48:43.000 -01002D60188DE000,"Yu-Gi-Oh! Rush Duel: Dawn of the Battle Royale!! Let's Go! Go Rush!!",status-ingame;crash,ingame,2023-03-17 01:54:01.000 -010037D00DBDC000,"YU-NO: A girl who chants love at the bound of this world.",nvdec;status-playable,playable,2021-01-26 17:03:52.000 -0100B56011502000,"Yumeutsutsu Re:After",status-playable,playable,2022-11-20 16:09:06.000 -,"Yunohana Spring! - Mellow Times -",audio;crash;status-menus,menus,2020-09-27 19:27:40.000 -0100307011C44000,"Yuppie Psycho: Executive Edition",crash;status-ingame,ingame,2020-12-11 10:37:06.000 -0100FC900963E000,"Yuri",status-playable,playable,2021-06-11 13:08:50.000 -010092400A678000,"Zaccaria Pinball",status-playable;online-broken,playable,2022-09-03 15:44:28.000 -0100E7900C4C0000,"Zarvot",status-playable,playable,2021-01-28 13:51:36.000 -01005F200F7C2000,"Zen Chess Collection",status-playable,playable,2020-07-01 22:28:27.000 -01008DD0114AE000,"Zenge",status-playable,playable,2020-10-22 13:23:57.000 -0100057011E50000,"Zengeon",services-horizon;status-boots;crash,boots,2024-04-29 15:43:07.000 -0100AAC00E692000,"Zenith",status-playable,playable,2022-09-17 09:57:02.000 -0100A6A00894C000,"ZERO GUNNER 2- for Nintendo Switch",status-playable,playable,2021-01-04 20:17:14.000 -01004B001058C000,"Zero Strain",services;status-menus;UE4,menus,2021-11-10 07:48:32.000 -,"Zettai kaikyu gakuen",gpu;nvdec;status-ingame,ingame,2020-08-25 15:15:54.000 -0100D7B013DD0000,"Ziggy the Chaser",status-playable,playable,2021-02-04 20:34:27.000 -010086700EF16000,"ZikSquare",gpu;status-ingame,ingame,2021-11-06 02:02:48.000 -010069C0123D8000,"Zoids Wild Blast Unleashed",status-playable;nvdec,playable,2022-10-15 11:26:59.000 -0100C7300EEE4000,"Zombie Army Trilogy",ldn-untested;online;status-playable,playable,2020-12-16 12:02:28.000 -01006CF00DA8C000,"Zombie Driver Immortal Edition",nvdec;status-playable,playable,2020-12-14 23:15:10.000 -0100CFE003A64000,"ZOMBIE GOLD RUSH",online;status-playable,playable,2020-09-24 12:56:08.000 -01001740116EC000,"Zombie's Cool",status-playable,playable,2020-12-17 12:41:26.000 -01000E5800D32C00,"Zombieland: Double Tap - Road Trip0",status-playable,playable,2022-09-17 10:08:45.000 -0100CD300A1BA000,"Zombillie",status-playable,playable,2020-07-23 17:42:23.000 -01001EE00A6B0000,"Zotrix: Solar Division",status-playable,playable,2021-06-07 20:34:05.000 -0100B9B00C6A4000,"この世の果てで恋を唄う少女YU-NO",audio;status-ingame,ingame,2021-01-22 07:00:16.000 -,"スーパーファミコン Nintendo Switch Online",slow;status-ingame,ingame,2020-03-14 05:48:38.000 -01000BB01CB8A000,"トラブル・マギア ~訳アリ少女は未来を勝ち取るために異国の魔法学校へ留学します~(Trouble Magia ~Wakeari Shoujo wa Mirai o Kachitoru Tame ni Ikoku no Mahou Gakkou e Ryuugaku Shimasu~)",status-nothing,nothing,2024-09-28 07:03:14.000 -010065500B218000,"メモリーズオフ - Innocent Fille",status-playable,playable,2022-12-02 17:36:48.000 -010032400E700000,"二ノ国 白き聖灰の女王",services;status-menus;32-bit,menus,2023-04-16 17:11:06.000 -0100F3100DA46000,"初音ミク Project DIVA MEGA39's",audio;status-playable;loader-allocator,playable,2022-07-29 11:45:52.000 -010047F012BE2000,"密室のサクリファイス/ABYSS OF THE SACRIFICE",status-playable;nvdec,playable,2022-10-21 13:56:28.000 -0100BF401AF9C000,"御伽活劇 豆狸のバケル ~オラクル祭太郎の祭難!!~ (Otogi Katsugeki Mameda no Bakeru Oracle Saitarou no Sainan!!)",slow;status-playable,playable,2023-12-31 14:37:17.000 -0100AFA01750C000,"死神と少女/Shinigami to Shoujo",gpu;status-ingame;Incomplete,ingame,2024-03-22 01:06:45.000 -01001BA01EBFC000,"燃えよ! 乙女道士 ~華遊恋語~ (Moeyo! Otome Doushi Kayu Koigatari)",services-horizon;status-nothing,nothing,2024-09-28 12:22:55.000 -0100936018EB4000,"牧場物語 Welcome!ワンダフルライフ",status-ingame;crash,ingame,2023-04-25 19:43:52.000 -0100F4401940A000,"超探偵事件簿 レインコード (Master Detective Archives: Rain Code)",status-ingame;crash,ingame,2024-02-12 20:58:31.000 -010064801A01C000,"超次元ゲイム ネプテューヌ GameMaker R:Evolution",status-nothing;crash,nothing,2023-10-30 22:37:40.000 -010088401495E000,"The House of the Dead: Remake",status-playable,playable,2025-01-11 00:36:01 +010099F00EF3E000,"-KLAUS-",nvdec,playable,2020-06-27 13:27:30 +0100BA9014A02000,".hack//G.U. Last Recode",deadlock,boots,2022-03-12 19:15:47 +010098800C4B0000,"'n Verlore Verstand",slow,ingame,2020-12-10 18:00:28 +01009A500E3DA000,"'n Verlore Verstand - Demo",,playable,2021-02-09 00:13:32 +0100A5D01174C000,"/Connection Haunted ",slow,playable,2020-12-10 18:57:14 +01001E500F7FC000,"#Funtime",,playable,2020-12-10 16:54:35 +01000E50134A4000,"#Halloween, Super Puzzles Dream",nvdec,playable,2020-12-10 20:43:58 +01004D100C510000,"#KILLALLZOMBIES",slow,playable,2020-12-16 01:50:25 +0100325012C12000,"#NoLimitFantasy, Super Puzzles Dream",nvdec,playable,2020-12-12 17:21:32 +01005D400E5C8000,"#RaceDieRun",,playable,2020-07-04 20:23:16 +01003DB011AE8000,"#womenUp, Super Puzzles Dream",,playable,2020-12-12 16:57:25 +0100D87012A14000,"#womenUp, Super Puzzles Dream Demo",nvdec,playable,2021-02-09 00:03:31 +01000320000CC000,"1-2-Switch™",services,playable,2022-02-18 14:44:03 +01004D1007926000,"10 Second Run RETURNS",gpu,ingame,2022-07-17 13:06:18 +0100DC000A472000,"10 Second Run RETURNS Demo",gpu,ingame,2021-02-09 00:17:18 +0100D82015774000,"112 Operator",nvdec,playable,2022-11-13 22:42:50 +010051E012302000,"112th Seed",,playable,2020-10-03 10:32:38 +01007F600D1B8000,"12 is Better Than 6",,playable,2021-02-22 16:10:12 +0100B1A010014000,"12 Labours of Hercules II: The Cretan Bull",cpu;32-bit;crash,nothing,2022-12-07 13:43:10 +0100A840047C2000,"12 orbits",,playable,2020-05-28 16:13:26 +01003FC01670C000,"13 Sentinels: Aegis Rim",slow,ingame,2024-06-10 20:33:38 +0100C54015002000,"13 Sentinels: Aegis Rim Demo",demo,playable,2022-04-13 14:15:48 +01007E600EEE6000,"140",,playable,2020-08-05 20:01:33 +0100B94013D28000,"16-Bit Soccer Demo",,playable,2021-02-09 00:23:07 +01005CA0099AA000,"1917 - The Alien Invasion DX",,playable,2021-01-08 22:11:16 +0100829010F4A000,"1971 Project Helios",,playable,2021-04-14 13:50:19 +0100D1000B18C000,"1979 Revolution: Black Friday",nvdec,playable,2021-02-21 21:03:43 +01007BB00FC8A000,"198X",,playable,2020-08-07 13:24:38 +010075601150A000,"1993 Shenandoah",,playable,2020-10-24 13:55:42 +0100148012550000,"1993 Shenandoah Demo",,playable,2021-02-09 00:43:43 +010096500EA94000,"2048 Battles",,playable,2020-12-12 14:21:25 +010024C0067C4000,"2064: Read Only Memories INTEGRAL",deadlock,menus,2020-05-28 16:53:58 +0100749009844000,"20XX",gpu,ingame,2023-08-14 09:41:44 +01007550131EE000,"2URVIVE",,playable,2022-11-17 13:49:37 +0100E20012886000,"2weistein – The Curse of the Red Dragon",nvdec;UE4,playable,2022-11-18 14:47:07 +0100DAC013D0A000,"30 in 1 game collection vol. 2",online-broken,playable,2022-10-15 17:22:27 +010056D00E234000,"30-in-1 Game Collection",online-broken,playable,2022-10-15 17:47:09 +0100FB5010D2E000,"3000th Duel",,playable,2022-09-21 17:12:08 +01003670066DE000,"36 Fragments of Midnight",,playable,2020-05-28 15:12:59 +0100AF400C4CE000,"39 Days to Mars",,playable,2021-02-21 22:12:46 +010010C013F2A000,"3D Arcade Fishing",,playable,2022-10-25 21:50:51 +01006DA00707C000,"3D MiniGolf",,playable,2021-01-06 09:22:11 +01006890126E4000,"4x4 Dirt Track",,playable,2020-12-12 21:41:42 +010010100FF14000,"60 Parsecs!",,playable,2022-09-17 11:01:17 +0100969005E98000,"60 Seconds!",services,ingame,2021-11-30 01:04:14 +0100ECF008474000,"6180 the moon",,playable,2020-05-28 15:39:24 +0100EFE00E964000,"64.0",,playable,2020-12-12 21:31:58 +0100DA900B67A000,"7 Billion Humans",32-bit,playable,2020-12-17 21:04:58 +01004B200DF76000,"7th Sector",nvdec,playable,2020-08-10 14:22:14 +0100E9F00B882000,"8-BIT ADV STEINS;GATE",audio,ingame,2020-01-12 15:05:06 +0100B0700E944000,"80 DAYS",,playable,2020-06-22 21:43:01 +01006B1011B9E000,"80's OVERDRIVE",,playable,2020-10-16 14:33:32 +010006A0042F0000,"88 Heroes - 98 Heroes Edition",,playable,2020-05-28 14:13:02 +010005E00E2BC000,"9 Monkeys of Shaolin",UE4;gpu;slow,ingame,2020-11-17 11:58:43 +0100C5F012E3E000,"9 Monkeys of Shaolin Demo",UE4;gpu;nvdec,ingame,2021-02-09 01:03:30 +01000360107BC000,"911 Operator Deluxe Edition",,playable,2020-07-14 13:57:44 +0100B2C00682E000,"99Vidas - Definitive Edition",online,playable,2020-10-29 13:00:40 +010023500C2F0000,"99Vidas Demo",,playable,2021-02-09 12:51:31 +0100DB00117BA000,"9th Dawn III",,playable,2020-12-12 22:27:27 +010096A00CC80000,"A Ch'ti Bundle",nvdec,playable,2022-10-04 12:48:44 +010021D00D53E000,"A Dark Room",gpu,ingame,2020-12-14 16:14:28 +010026B006802000,"A Duel Hand Disaster: Trackher",nvdec;online-working,playable,2022-09-04 14:24:55 +0100582012B90000,"A Duel Hand Disaster: Trackher DEMO",crash;demo;nvdec,ingame,2021-03-24 18:45:27 +01006CE0134E6000,"A Frog Game",,playable,2020-12-14 16:09:53 +010056E00853A000,"A Hat in Time",,playable,2024-06-25 19:52:44 +01009E1011EC4000,"A HERO AND A GARDEN",,playable,2022-12-05 16:37:47 +01005EF00CFDA000,"A Knight's Quest",UE4,playable,2022-09-12 20:44:20 +01008DD006C52000,"A Magical High School Girl",,playable,2022-07-19 14:40:50 +01004890117B2000,"A Short Hike",,playable,2020-10-15 00:19:58 +0100F0901006C000,"A Sound Plan",crash,boots,2020-12-14 16:46:21 +01007DD011C4A000,"A Summer with the Shiba Inu",,playable,2021-06-10 20:51:16 +0100A3E010E56000,"A-Train: All Aboard! Tourism",nvdec,playable,2021-04-06 17:48:19 +010097A00CC0A000,"Aaero: Complete Edition",nvdec,playable,2022-07-19 14:49:55 +0100EFC010398000,"Aborigenus",,playable,2020-08-05 19:47:24 +0100A5B010A66000,"Absolute Drift",,playable,2020-12-10 14:02:44 +0100C1300BBC6000,"ABZÛ",UE4,playable,2022-07-19 15:02:52 +01003C400871E000,"ACA NEOGEO 2020 SUPER BASEBALL",online,playable,2021-04-12 13:23:51 +0100FC000AFC6000,"ACA NEOGEO 3 COUNT BOUT",online,playable,2021-04-12 13:16:42 +0100AC40038F4000,"ACA NEOGEO AERO FIGHTERS 2",online,playable,2021-04-08 15:44:09 +0100B91008780000,"ACA NEOGEO AERO FIGHTERS 3",online,playable,2021-04-12 13:11:17 +0100B4800AFBA000,"ACA NEOGEO AGGRESSORS OF DARK KOMBAT",online,playable,2021-04-01 22:48:01 +01003FE00A2F6000,"ACA NEOGEO BASEBALL STARS PROFESSIONAL",online,playable,2021-04-01 21:23:05 +0100DFC003398000,"ACA NEOGEO BLAZING STAR",crash;services,menus,2020-05-26 17:29:02 +0100D2400AFB0000,"ACA NEOGEO CROSSED SWORDS",online,playable,2021-04-01 20:42:59 +0100EE6002B48000,"ACA NEOGEO FATAL FURY",online,playable,2021-04-01 20:36:23 +0100EEA00AFB2000,"ACA NEOGEO FOOTBALL FRENZY",,playable,2021-03-29 20:12:12 +0100CB2001DB8000,"ACA NEOGEO GAROU: MARK OF THE WOLVES",online,playable,2021-04-01 20:31:10 +01005D700A2F8000,"ACA NEOGEO GHOST PILOTS",online,playable,2021-04-01 20:26:45 +01000D10038E6000,"ACA NEOGEO LAST RESORT",online,playable,2021-04-01 19:51:22 +0100A2900AFA4000,"ACA NEOGEO LEAGUE BOWLING",crash;services,menus,2020-05-26 17:11:04 +0100A050038F2000,"ACA NEOGEO MAGICAL DROP II",crash;services,menus,2020-05-26 16:48:24 +01007920038F6000,"ACA NEOGEO MAGICIAN LORD",online,playable,2021-04-01 19:33:26 +0100EBE002B3E000,"ACA NEOGEO METAL SLUG",,playable,2021-02-21 13:56:48 +010086300486E000,"ACA NEOGEO METAL SLUG 2",online,playable,2021-04-01 19:25:52 +0100BA8001DC6000,"ACA NEOGEO METAL SLUG 3",crash;services,menus,2020-05-26 16:32:45 +01009CE00AFAE000,"ACA NEOGEO METAL SLUG 4",online,playable,2021-04-01 18:12:18 +01008FD004DB6000,"ACA NEOGEO METAL SLUG X",crash;services,menus,2020-05-26 14:07:20 +010038F00AFA0000,"ACA NEOGEO Money Puzzle Exchanger",online,playable,2021-04-01 17:59:56 +01002E70032E8000,"ACA NEOGEO NEO TURF MASTERS",,playable,2021-02-21 15:12:01 +010052A00A306000,"ACA NEOGEO NINJA COMBAT",,playable,2021-03-29 21:17:28 +01007E800AFB6000,"ACA NEOGEO NINJA COMMANDO",online,playable,2021-04-01 17:28:18 +01003A5001DBA000,"ACA NEOGEO OVER TOP",,playable,2021-02-21 13:16:25 +010088500878C000,"ACA NEOGEO REAL BOUT FATAL FURY SPECIAL",online,playable,2021-04-01 17:18:27 +01005C9002B42000,"ACA NEOGEO SAMURAI SHODOWN",online,playable,2021-04-01 17:11:35 +010047F001DBC000,"ACA NEOGEO SAMURAI SHODOWN IV",online,playable,2021-04-12 12:58:54 +010049F00AFE8000,"ACA NEOGEO SAMURAI SHODOWN V SPECIAL",online,playable,2021-04-10 18:07:13 +01009B300872A000,"ACA NEOGEO SENGOKU 2",online,playable,2021-04-10 17:36:44 +01008D000877C000,"ACA NEOGEO SENGOKU 3",online,playable,2021-04-10 16:11:53 +01008A9001DC2000,"ACA NEOGEO SHOCK TROOPERS",crash;services,menus,2020-05-26 15:29:34 +01007D1004DBA000,"ACA NEOGEO SPIN MASTER",online,playable,2021-04-10 15:50:19 +010055A00A300000,"ACA NEOGEO SUPER SIDEKICKS 2",online,playable,2021-04-10 16:05:58 +0100A4D00A308000,"ACA NEOGEO SUPER SIDEKICKS 3 : THE NEXT GLORY",online,playable,2021-04-10 15:39:22 +0100EB2001DCC000,"ACA NEOGEO THE KING OF FIGHTERS '94",crash;services,menus,2020-05-26 15:03:44 +01009DC001DB6000,"ACA NEOGEO THE KING OF FIGHTERS '95",,playable,2021-03-29 20:27:35 +01006F0004FB4000,"ACA NEOGEO THE KING OF FIGHTERS '96",online,playable,2021-04-10 14:49:10 +0100170008728000,"ACA NEOGEO THE KING OF FIGHTERS '97",online,playable,2021-04-10 14:43:27 +0100B42001DB4000,"ACA NEOGEO THE KING OF FIGHTERS '98",crash;services,menus,2020-05-26 14:54:20 +0100583001DCA000,"ACA NEOGEO THE KING OF FIGHTERS '99",online,playable,2021-04-10 14:36:56 +0100B97002B44000,"ACA NEOGEO THE KING OF FIGHTERS 2000",online,playable,2021-04-10 15:24:35 +010048200AFC2000,"ACA NEOGEO THE KING OF FIGHTERS 2001",online,playable,2021-04-10 15:16:23 +0100CFD00AFDE000,"ACA NEOGEO THE KING OF FIGHTERS 2002",online,playable,2021-04-10 15:01:55 +0100EF100AFE6000,"ACA NEOGEO THE KING OF FIGHTERS 2003",online,playable,2021-04-10 14:54:31 +0100699008792000,"ACA NEOGEO THE LAST BLADE 2",online,playable,2021-04-10 14:31:54 +0100F7F00AFA2000,"ACA NEOGEO THE SUPER SPY",online,playable,2021-04-10 14:26:33 +0100CEF001DC0000,"ACA NEOGEO WAKU WAKU 7",online,playable,2021-04-10 14:20:52 +01009D4001DC4000,"ACA NEOGEO WORLD HEROES PERFECT",crash;services,menus,2020-05-26 14:14:36 +01002E700AFC4000,"ACA NEOGEO ZUPAPA!",online,playable,2021-03-25 20:07:33 +0100A9900CB5C000,"Access Denied",,playable,2022-07-19 15:25:10 +01007C50132C8000,"Ace Angler: Fishing Spirits",crash,menus,2023-03-03 03:21:39 +010005501E68C000,"Ace Attorney Investigations Collection",,playable,2024-09-19 16:38:05 +010033401E68E000,"Ace Attorney Investigations Collection DEMO",,playable,2024-09-07 06:16:42 +010039301B7E0000,"Ace Combat 7 - Skies Unknown Deluxe Edition",gpu;UE4,ingame,2024-09-27 14:31:43 +0100FF1004D56000,"Ace of Seafood",,playable,2022-07-19 15:32:25 +0100B28003440000,"Aces of the Luftwaffe - Squadron",nvdec;slow,playable,2020-05-27 12:29:42 +010054300D822000,"Aces of the Luftwaffe - Squadron Demo",nvdec,playable,2021-02-09 13:12:28 +010079B00B3F4000,"Achtung! Cthulhu Tactics",,playable,2020-12-14 18:40:27 +0100DBC0081A4000,"ACORN Tactics",,playable,2021-02-22 12:57:40 +010043C010AEA000,"Across the Grooves",,playable,2020-06-27 12:29:51 +010039A010DA0000,"Active Neurons - Puzzle game",,playable,2021-01-27 21:31:21 +01000D1011EF0000,"Active Neurons 2",,playable,2022-10-07 16:21:42 +010031C0122B0000,"Active Neurons 2 Demo",,playable,2021-02-09 13:40:21 +0100EE1013E12000,"Active Neurons 3 - Wonders Of The World",,playable,2021-03-24 12:20:20 +0100CD40104DE000,"Actual Sunlight",gpu,ingame,2020-12-14 17:18:41 +0100C0C0040E4000,"Adam's Venture™: Origins",,playable,2021-03-04 18:43:57 +010029700EB76000,"Adrenaline Rush - Miami Drive",,playable,2020-12-12 22:49:50 +0100300012F2A000,"Advance Wars™ 1+2: Re-Boot Camp",,playable,2024-01-30 18:19:44 +010014B0130F2000,"Adventure Llama",,playable,2020-12-14 19:32:24 +0100C990102A0000,"Adventure Pinball Bundle",slow,playable,2020-12-14 20:31:53 +0100C4E004406000,"Adventure Time: Pirates of the Enchiridion",nvdec,playable,2022-07-21 21:49:01 +010021F00C1C0000,"Adventures of Bertram Fiddle Episode 2: A Bleaker Predicklement",nvdec,playable,2021-02-22 14:56:37 +010072601233C000,"Adventures of Chris",,playable,2020-12-12 23:00:02 +0100A0A0136E8000,"Adventures of Chris Demo",,playable,2021-02-09 13:49:21 +01002B5012004000,"Adventures of Pip",nvdec,playable,2020-12-12 22:11:55 +01008C901266E000,"ADVERSE",UE4,playable,2021-04-26 14:32:51 +01008E6006502000,"Aegis Defenders",,playable,2021-02-22 13:29:33 +010064500AF72000,"Aegis Defenders demo",,playable,2021-02-09 14:04:17 +010001C011354000,"Aeolis Tournament",online,playable,2020-12-12 22:02:14 +01006710122CE000,"Aeolis Tournament Demo",nvdec,playable,2021-02-09 14:22:30 +0100A0400DDE0000,"AER Memories of Old",nvdec,playable,2021-03-05 18:43:43 +0100E9B013D4A000,"Aerial_Knight's Never Yield",,playable,2022-10-25 22:05:00 +0100087012810000,"Aery - Broken Memories",,playable,2022-10-04 13:11:52 +01000A8015390000,"Aery - Calm Mind",,playable,2022-11-14 14:26:58 +0100875011D0C000,"Aery - Little Bird Adventure",,playable,2021-03-07 15:25:51 +010018E012914000,"Aery - Sky Castle",,playable,2022-10-21 17:58:49 +0100DF8014056000,"Aery – A Journey Beyond Time",,playable,2021-04-05 15:52:25 +01006C40086EA000,"AeternoBlade",nvdec,playable,2020-12-14 20:06:48 +0100B1C00949A000,"AeternoBlade Demo",nvdec,playable,2021-02-09 14:39:26 +01009D100EA28000,"AeternoBlade II",online-broken;UE4;vulkan-backend-bug,playable,2022-09-12 21:11:18 +,"AeternoBlade II Demo Version",gpu;nvdec,ingame,2021-02-09 15:10:19 +01001B400D334000,"AFL Evolution 2",slow;online-broken;UE4,playable,2022-12-07 12:45:56 +0100DB100BBCE000,"Afterparty",,playable,2022-09-22 12:23:19 +010087C011C4E000,"Agatha Christie - The ABC Murders",,playable,2020-10-27 17:08:23 +010093600A60C000,"Agatha Knife",,playable,2020-05-28 12:37:58 +010005400A45E000,"Agent A: A puzzle in disguise",,playable,2020-11-16 22:53:27 +01008E8012C02000,"Agent A: A puzzle in disguise (Demo)",,playable,2021-02-09 18:30:41 +0100E4700E040000,"Ages of Mages: The last keeper",vulkan-backend-bug,playable,2022-10-04 11:44:05 +010004D00A9C0000,"Aggelos",gpu,ingame,2023-02-19 13:24:23 +010072600D21C000,"Agony",UE4;crash,boots,2020-07-10 16:21:18 +010089B00D09C000,"AI: THE SOMNIUM FILES",nvdec,playable,2022-09-04 14:45:06 +0100C1700FB34000,"AI: THE SOMNIUM FILES Demo",nvdec,playable,2021-02-10 12:52:33 +01006E8011C1E000,"Ailment",,playable,2020-12-12 22:30:41 +0100C7600C7D6000,"Air Conflicts: Pacific Carriers",,playable,2021-01-04 10:52:50 +010005A00A4F4000,"Air Hockey",,playable,2020-05-28 16:44:37 +0100C9E00F54C000,"Air Missions: HIND",,playable,2020-12-13 10:16:45 +0100E95011FDC000,"Aircraft Evolution",nvdec,playable,2021-06-14 13:30:18 +010010A00DB72000,"Airfield Mania Demo",services;demo,boots,2022-04-10 03:43:02 +01003DD00BFEE000,"Airheart - Tales of broken Wings",,playable,2021-02-26 15:20:27 +01007F100DE52000,"Akane",nvdec,playable,2022-07-21 00:12:18 +01009A800F0C8000,"Akash: Path of the Five",gpu;nvdec,ingame,2020-12-14 22:33:12 +010053100B0EA000,"Akihabara - Feel the Rhythm Remixed",,playable,2021-02-22 14:39:35 +0100D4C00EE0C000,"Akuarium",slow,playable,2020-12-12 23:43:36 +010026E00FEBE000,"Akuto: Showdown",,playable,2020-08-04 19:43:27 +0100F5400AB6C000,"Alchemic Jousts",gpu,ingame,2022-12-08 15:06:28 +010001E00F75A000,"Alchemist's Castle",,playable,2020-12-12 23:54:08 +01004510110C4000,"Alder's Blood Prologue",crash,ingame,2021-02-09 19:03:03 +0100D740110C0000,"Alder's Blood: Definitive Edition",,playable,2020-08-28 15:15:23 +01000E000EEF8000,"Aldred Knight",services,playable,2021-11-30 01:49:17 +010025D01221A000,"Alex Kidd in Miracle World DX",,playable,2022-11-14 15:01:34 +0100A2E00D0E0000,"Alien Cruise",,playable,2020-08-12 13:56:05 +0100C1500DBDE000,"Alien Escape",,playable,2020-06-03 23:43:18 +010075D00E8BA000,"Alien: Isolation",nvdec;vulkan-backend-bug,playable,2022-09-17 11:48:41 +0100CBD012FB6000,"All Walls Must Fall",UE4,playable,2022-10-15 19:16:30 +0100C1F00A9B8000,"All-Star Fruit Racing",nvdec;UE4,playable,2022-07-21 00:35:37 +0100AC501122A000,"Alluris",gpu;UE4,ingame,2023-08-02 23:13:50 +010063000C3CE000,"Almightree: The Last Dreamer",slow,playable,2020-12-15 13:59:03 +010083E010AE8000,"Along the Edge",,playable,2020-11-18 15:00:07 +010083E013188000,"Alpaca Ball: Allstars",nvdec,playable,2020-12-11 12:26:29 +01000A800B998000,"ALPHA",,playable,2020-12-13 12:17:45 +010053B0123DC000,"Alphaset by POWGI",,playable,2020-12-15 15:15:15 +01003E700FD66000,"Alt-Frequencies",,playable,2020-12-15 19:01:33 +01004DB00935A000,"Alteric",,playable,2020-11-08 13:53:22 +0100C3D00D1D4000,"Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz",,playable,2020-08-31 14:17:42 +0100A8A00D27E000,"Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz Trial version",,playable,2021-02-10 13:33:59 +010045201487C000,"Aluna: Sentinel of the Shards",nvdec,playable,2022-10-25 22:17:03 +01004C200B0B4000,"Alwa's Awakening",,playable,2020-10-13 11:52:01 +01001B7012214000,"Alwa's Legacy",,playable,2020-12-13 13:00:57 +010002B00C534000,"American Fugitive",nvdec,playable,2021-01-04 20:45:11 +010089D00A3FA000,"American Ninja Warrior: Challenge",nvdec,playable,2021-06-09 13:11:17 +01003CC00D0BE000,"Amnesia: Collection",,playable,2022-10-04 13:36:15 +010041D00DEB2000,"Amoeba Battle - Microscopic RTS Action",,playable,2021-05-06 13:33:41 +010046500C8D2000,"Among the Sleep - Enhanced Edition",nvdec,playable,2021-06-03 15:06:25 +0100B0C013912000,"Among Us",online;ldn-broken,menus,2021-09-22 15:20:17 +010050900E1C6000,"Anarcute",,playable,2021-02-22 13:17:59 +01009EE0111CC000,"Ancestors Legacy",nvdec;UE4,playable,2022-10-01 12:25:36 +010021700BC56000,"Ancient Rush 2",UE4;crash,menus,2020-07-14 14:58:47 +0100AE000AEBC000,"Angels of Death",nvdec,playable,2021-02-22 14:17:15 +010001E00A5F6000,"AngerForce: Reloaded for Nintendo Switch",,playable,2022-07-21 10:37:17 +0100F3500D05E000,"Angry Bunnies: Colossal Carrot Crusade",online-broken,playable,2022-09-04 14:53:26 +010084500C7DC000,"Angry Video Game Nerd I & II Deluxe",crash,ingame,2020-12-12 23:59:54 +0100706005B6A000,"Anima: Gate of Memories",nvdec,playable,2021-06-16 18:13:18 +010033F00B3FA000,"Anima: Gate of Memories - Arcane Edition",nvdec,playable,2021-01-26 16:55:51 +01007A400B3F8000,"Anima: Gate of Memories - The Nameless Chronicles",,playable,2021-06-14 14:33:06 +0100F38011CFE000,"Animal Crossing: New Horizons Island Transfer Tool",services;Needs Update;Incomplete,ingame,2022-12-07 13:51:19 +01006F8002326000,"Animal Crossing™: New Horizons",gpu;crash;nvdec;online-broken;ldn-works;mac-bug,ingame,2024-09-23 13:31:49 +010019500E642000,"Animal Fight Club",gpu,ingame,2020-12-13 13:13:33 +01002F4011A8E000,"Animal Fun for Toddlers and Kids",services,boots,2020-12-15 16:45:29 +010035500CA0E000,"Animal Hunter Z",,playable,2020-12-13 12:50:35 +010033C0121DC000,"Animal Pairs - Matching & Concentration Game for Toddlers & Kids",services,boots,2021-11-29 23:43:14 +010065B009B3A000,"Animal Rivals: Nintendo Switch Edition",,playable,2021-02-22 14:02:42 +0100EFE009424000,"Animal Super Squad",UE4,playable,2021-04-23 20:50:50 +0100A16010966000,"Animal Up!",,playable,2020-12-13 15:39:02 +010020D01AD24000,"ANIMAL WELL",,playable,2024-05-22 18:01:49 +0100451012492000,"Animals for Toddlers",services,boots,2020-12-15 17:27:27 +010098600CF06000,"Animated Jigsaws Collection",nvdec,playable,2020-12-15 15:58:34 +0100A1900B5B8000,"Animated Jigsaws: Beautiful Japanese Scenery Demo",nvdec,playable,2021-02-10 13:49:56 +010062500EB84000,"Anime Studio Story",,playable,2020-12-15 18:14:05 +01002B300EB86000,"Anime Studio Story Demo",,playable,2021-02-10 14:50:39 +010097600C322000,"ANIMUS",,playable,2020-12-13 15:11:47 +0100E5A00FD38000,"ANIMUS: Harbinger",,playable,2022-09-13 22:09:20 +010055500CCD2000,"Ankh Guardian - Treasure of the Demon's Temple",,playable,2020-12-13 15:55:49 +01009E600D78C000,"Anode",,playable,2020-12-15 17:18:58 +0100CB9018F5A000,"Another Code™: Recollection",gpu;crash,ingame,2024-09-06 05:58:52 +01001A900D312000,"Another Sight",UE4;gpu;nvdec,ingame,2020-12-03 16:49:59 +01003C300AAAE000,"Another World",slow,playable,2022-07-21 10:42:38 +01000FD00DF78000,"AnShi",nvdec;UE4,playable,2022-10-21 19:37:01 +010054C00D842000,"Anthill",services;nvdec,menus,2021-11-18 09:25:25 +0100596011E20000,"Anti Hero Bundle",nvdec,playable,2022-10-21 20:10:30 +0100016007154000,"Antiquia Lost",,playable,2020-05-28 11:57:32 +0100FE1011400000,"AntVentor",nvdec,playable,2020-12-15 20:09:27 +0100FA100620C000,"Ao no Kanata no Four Rhythm",,playable,2022-07-21 10:50:42 +010047000E9AA000,"AO Tennis 2",online-broken,playable,2022-09-17 12:05:07 +0100990011866000,"Aokana - Four Rhythms Across the Blue",,playable,2022-10-04 13:50:26 +01005B100C268000,"Ape Out",,playable,2022-09-26 19:04:47 +010054500E6D4000,"Ape Out DEMO",,playable,2021-02-10 14:33:06 +010051C003A08000,"Aperion Cyberstorm",,playable,2020-12-14 00:40:16 +01008CA00D71C000,"Aperion Cyberstorm [DEMO]",,playable,2021-02-10 15:53:21 +01008FC00C5BC000,"Apocalipsis Wormwood Edition",deadlock,menus,2020-05-27 12:56:37 +010045D009EFC000,"Apocryph: an old-school shooter",gpu,ingame,2020-12-13 23:24:10 +010020D01B890000,"Apollo Justice: Ace Attorney Trilogy",,playable,2024-06-21 21:54:27 +01005F20116A0000,"Apparition",nvdec;slow,ingame,2020-12-13 23:57:04 +0100AC10085CE000,"AQUA KITTY UDX",online,playable,2021-04-12 15:34:11 +0100FE0010886000,"Aqua Lungers",crash,ingame,2020-12-14 11:25:57 +0100D0D00516A000,"Aqua Moto Racing Utopia",,playable,2021-02-21 21:21:00 +010071800BA74000,"Aragami: Shadow Edition",nvdec,playable,2021-02-21 20:33:23 +0100C7D00E6A0000,"Arc of Alchemist",nvdec,playable,2022-10-07 19:15:54 +0100BE80097FA000,"Arcade Archives 10-Yard Fight",online,playable,2021-03-25 21:26:41 +01005DD00BE08000,"Arcade Archives ALPHA MISSION",online,playable,2021-04-15 09:20:43 +010083800DC70000,"Arcade Archives ALPINE SKI",online,playable,2021-04-15 09:28:46 +0100A5700AF32000,"Arcade Archives ARGUS",online,playable,2021-04-16 06:51:25 +010014F001DE2000,"Arcade Archives Armed F",online,playable,2021-04-16 07:00:17 +0100BEC00C7A2000,"Arcade Archives ATHENA",online,playable,2021-04-16 07:10:12 +0100426001DE4000,"Arcade Archives Atomic Robo-Kid",online,playable,2021-04-16 07:20:29 +0100192009824000,"Arcade Archives BOMB JACK",online,playable,2021-04-16 09:48:26 +010007A00980C000,"Arcade Archives City CONNECTION",online,playable,2021-03-25 22:16:15 +0100EDC00E35A000,"Arcade Archives CLU CLU LAND",online,playable,2021-04-16 10:00:42 +0100BB1001DD6000,"Arcade Archives CRAZY CLIMBER",online,playable,2021-03-25 22:24:15 +0100E9E00B052000,"Arcade Archives DONKEY KONG",Needs Update;crash;services,menus,2021-03-24 18:18:43 +0100F25001DD0000,"Arcade Archives DOUBLE DRAGON",online,playable,2021-03-25 22:44:34 +01009E3001DDE000,"Arcade Archives DOUBLE DRAGON II The Revenge",online,playable,2021-04-12 16:05:29 +0100496006EC8000,"Arcade Archives FRONT LINE",online,playable,2021-05-05 14:10:49 +01009A4008A30000,"Arcade Archives HEROIC EPISODE",online,playable,2021-03-25 23:01:26 +01007D200D3FC000,"Arcade Archives ICE CLIMBER",online,playable,2021-05-05 14:18:34 +010049400C7A8000,"Arcade Archives IKARI WARRIORS",online,playable,2021-05-05 14:24:46 +01000DB00980A000,"Arcade Archives Ikki",online,playable,2021-03-25 23:11:28 +010008300C978000,"Arcade Archives IMAGE FIGHT",online,playable,2021-05-05 14:31:21 +010010B008A36000,"Arcade Archives Kid Niki Radical Ninja",audio;online,ingame,2022-07-21 11:02:04 +0100E7C001DE0000,"Arcade Archives Kid's Horehore Daisakusen",online,playable,2021-04-12 16:21:29 +0100F380105A4000,"Arcade Archives LIFE FORCE",,playable,2020-09-04 13:26:25 +0100755004608000,"Arcade Archives Mario Bros.",online,playable,2021-03-26 11:31:32 +01000BE001DD8000,"Arcade Archives MOON CRESTA",online,playable,2021-05-05 14:39:29 +01003000097FE000,"Arcade Archives MOON PATROL",online,playable,2021-03-26 11:42:04 +01003EF00D3B4000,"Arcade Archives NINJA GAIDEN",audio;online,ingame,2021-04-12 16:27:53 +01002F300D2C6000,"Arcade Archives Ninja Spirit",online,playable,2021-05-05 14:45:31 +0100369001DDC000,"Arcade Archives Ninja-Kid",online,playable,2021-03-26 20:55:07 +01004A200BB48000,"Arcade Archives OMEGA FIGHTER",crash;services,menus,2020-08-18 20:50:54 +01007F8010C66000,"Arcade Archives PLUS ALPHA",audio,ingame,2020-07-04 20:47:55 +0100A6E00D3F8000,"Arcade Archives POOYAN",online,playable,2021-05-05 17:58:19 +01000D200C7A4000,"Arcade Archives PSYCHO SOLDIER",online,playable,2021-05-05 18:02:19 +01001530097F8000,"Arcade Archives PUNCH-OUT!!",online,playable,2021-03-25 22:10:55 +010081E001DD2000,"Arcade Archives Renegade",online,playable,2022-07-21 11:45:40 +0100FBA00E35C000,"Arcade Archives ROAD FIGHTER",online,playable,2021-05-05 18:09:17 +010060000BF7C000,"Arcade Archives ROUTE 16",online,playable,2021-05-05 18:40:41 +0100C2D00981E000,"Arcade Archives RYGAR",online,playable,2021-04-15 08:48:30 +01007A4009834000,"Arcade Archives Shusse Ozumo",online,playable,2021-05-05 17:52:25 +010008F00B054000,"Arcade Archives Sky Skipper",online,playable,2021-04-15 08:58:09 +01008C900982E000,"Arcade Archives Solomon's Key",online,playable,2021-04-19 16:27:18 +010069F008A38000,"Arcade Archives STAR FORCE",online,playable,2021-04-15 08:39:09 +0100422001DDA000,"Arcade Archives TERRA CRESTA",crash;services,menus,2020-08-18 20:20:55 +0100348001DE6000,"Arcade Archives TERRA FORCE",online,playable,2021-04-16 20:03:27 +0100DFD016B7A000,"Arcade Archives TETRIS® THE GRAND MASTER",,playable,2024-06-23 01:50:29 +0100DC000983A000,"Arcade Archives THE NINJA WARRIORS",online;slow,ingame,2021-04-16 19:54:56 +0100AF300D2E8000,"Arcade Archives TIME PILOT",online,playable,2021-04-16 19:22:31 +010029D006ED8000,"Arcade Archives Traverse USA",online,playable,2021-04-15 08:11:06 +010042200BE0C000,"Arcade Archives URBAN CHAMPION",online,playable,2021-04-16 10:20:03 +01004EC00E634000,"Arcade Archives VS. GRADIUS",online,playable,2021-04-12 14:53:58 +010021D00812A000,"Arcade Archives VS. SUPER MARIO BROS.",online,playable,2021-04-08 14:48:11 +01001B000D8B6000,"Arcade Archives WILD WESTERN",online,playable,2021-04-16 10:11:36 +010050000D6C4000,"Arcade Classics Anniversary Collection",,playable,2021-06-03 13:55:10 +01005A8010C7E000,"ARCADE FUZZ",,playable,2020-08-15 12:37:36 +010077000F620000,"Arcade Spirits",,playable,2020-06-21 11:45:03 +0100E680149DC000,"Arcaea",,playable,2023-03-16 19:31:21 +01003C2010C78000,"Archaica: The Path Of Light",crash,nothing,2020-10-16 13:22:26 +01004DA012976000,"Area 86",,playable,2020-12-16 16:45:52 +0100691013C46000,"ARIA CHRONICLE",,playable,2022-11-16 13:50:55 +0100D4A00B284000,"ARK: Survival Evolved",gpu;nvdec;online-broken;UE4;ldn-untested,ingame,2024-04-16 00:53:56 +0100C56012C96000,"Arkanoid vs. Space Invaders",services,ingame,2021-01-21 12:50:30 +010069A010606000,"Arkham Horror: Mother's Embrace",nvdec,playable,2021-04-19 15:40:55 +0100C5B0113A0000,"Armed 7 DX",,playable,2020-12-14 11:49:56 +010070A00A5F4000,"Armello",nvdec,playable,2021-01-07 11:43:26 +0100A5400AC86000,"ARMS Demo",,playable,2021-02-10 16:30:13 +01009B500007C000,"ARMS™",ldn-works;LAN,playable,2024-08-28 07:49:24 +0100184011B32000,"Arrest of a stone Buddha",crash,nothing,2022-12-07 16:55:00 +01007AB012102000,"Arrog",,playable,2020-12-16 17:20:50 +01008EC006BE2000,"Art of Balance",gpu;ldn-works,ingame,2022-07-21 17:13:57 +010062F00CAE2000,"Art of Balance DEMO",gpu;slow,ingame,2021-02-10 17:17:12 +01006AA013086000,"Art Sqool",nvdec,playable,2022-10-16 20:42:37 +0100CDD00DA70000,"Artifact Adventure Gaiden DX",,playable,2020-12-16 17:49:25 +0100C2500CAB6000,"Ary and the Secret of Seasons",,playable,2022-10-07 20:45:09 +0100C9F00AAEE000,"ASCENDANCE",,playable,2021-01-05 10:54:40 +0100D5800DECA000,"Asemblance",UE4;gpu,ingame,2020-12-16 18:01:23 +0100E4C00DE30000,"Ash of Gods: Redemption",deadlock,nothing,2020-08-10 18:08:32 +010027B00E40E000,"Ashen",nvdec;online-broken;UE4,playable,2022-09-17 12:19:14 +01007B000C834000,"Asphalt Legends Unite",services;crash;online-broken,menus,2022-12-07 13:28:29 +01007F600B134000,"Assassin's Creed® III: Remastered",nvdec,boots,2024-06-25 20:12:11 +010044700DEB0000,"Assassin’s Creed®: The Rebel Collection",gpu,ingame,2024-05-19 07:58:56 +0100DF200B24C000,"Assault Android Cactus+",,playable,2021-06-03 13:23:55 +0100BF8012A30000,"Assault ChaingunS KM",crash;gpu,ingame,2020-12-14 12:48:34 +0100C5E00E540000,"Assault on Metaltron Demo",,playable,2021-02-10 19:48:06 +010057A00C1F6000,"Astebreed",,playable,2022-07-21 17:33:54 +010081500EA1E000,"Asterix & Obelix XXL 3 - The Crystal Menhir",gpu;nvdec;regression,ingame,2022-11-28 14:19:23 +0100F46011B50000,"Asterix & Obelix XXL: Romastered",gpu;nvdec;opengl,ingame,2023-08-16 21:22:06 +01007300020FA000,"ASTRAL CHAIN",,playable,2024-07-17 18:02:19 +0100E5F00643C000,"Astro Bears Party",,playable,2020-05-28 11:21:58 +0100F0400351C000,"Astro Duel Deluxe",32-bit,playable,2021-06-03 11:21:48 +0100B80010C48000,"Astrologaster",cpu;32-bit;crash,nothing,2023-06-28 15:39:31 +0100DF401249C000,"AstroWings: Space War",,playable,2020-12-14 13:10:44 +010099801870E000,"Atari 50: The Anniversary Celebration",slow,playable,2022-11-14 19:42:10 +010088600C66E000,"Atelier Arland series Deluxe Pack",nvdec,playable,2021-04-08 15:33:15 +0100D9D00EE8C000,"Atelier Ayesha: The Alchemist of Dusk DX",crash;nvdec;Needs Update,menus,2021-11-24 07:29:54 +0100E5600EE8E000,"Atelier Escha & Logy: Alchemists of the Dusk Sky DX",nvdec,playable,2022-11-20 16:01:41 +010023201421E000,"Atelier Firis: The Alchemist and the Mysterious Journey DX",gpu;nvdec,ingame,2022-10-25 22:46:19 +0100B1400CD50000,"Atelier Lulua ~The Scion of Arland~",nvdec,playable,2020-12-16 14:29:19 +010009900947A000,"Atelier Lydie & Suelle ~The Alchemists and the Mysterious Paintings~",nvdec,playable,2021-06-03 18:37:01 +01001A5014220000,"Atelier Lydie & Suelle: The Alchemists and the Mysterious Paintings DX",,playable,2022-10-25 23:06:20 +0100ADD00C6FA000,"Atelier Meruru ~The Apprentice of Arland~ DX",nvdec,playable,2020-06-12 00:50:48 +01002D700B906000,"Atelier Rorona Arland no Renkinjutsushi DX (JP)",nvdec,playable,2022-12-02 17:26:54 +01009A9012022000,"Atelier Ryza 2: Lost Legends & the Secret Fairy",,playable,2022-10-16 21:06:06 +0100D1900EC80000,"Atelier Ryza: Ever Darkness & the Secret Hideout",,playable,2023-10-15 16:36:50 +010005C00EE90000,"Atelier Shallie: Alchemists of the Dusk Sea DX",nvdec,playable,2020-11-25 20:54:12 +010082A01538E000,"Atelier Sophie 2: The Alchemist of the Mysterious Dream",crash,ingame,2022-12-01 04:34:03 +01009BC00C6F6000,"Atelier Totori ~The Adventurer of Arland~ DX",nvdec,playable,2020-06-12 01:04:56 +0100B9400FA38000,"ATOM RPG",nvdec,playable,2022-10-22 10:11:48 +01005FE00EC4E000,"Atomic Heist",,playable,2022-10-16 21:24:32 +0100AD30095A4000,"Atomicrops",,playable,2022-08-06 10:05:07 +01000D1006CEC000,"ATOMIK: RunGunJumpGun",,playable,2020-12-14 13:19:24 +0100FB500631E000,"ATOMINE",gpu;nvdec;slow,playable,2020-12-14 18:56:50 +010039600E7AC000,"Attack of the Toy Tanks",slow,ingame,2020-12-14 12:59:12 +010034500641A000,"Attack on Titan 2",,playable,2021-01-04 11:40:01 +01000F600B01E000,"ATV Drift & Tricks",UE4;online,playable,2021-04-08 17:29:17 +0100AA800DA42000,"Automachef",,playable,2020-12-16 19:51:25 +01006B700EA6A000,"Automachef Demo",,playable,2021-02-10 20:35:37 +0100B280106A0000,"Aviary Attorney: Definitive Edition",,playable,2020-08-09 20:32:12 +010064600F982000,"AVICII Invector",,playable,2020-10-25 12:12:56 +0100E100128BA000,"AVICII Invector Demo",,playable,2021-02-10 21:04:58 +01008FB011248000,"AvoCuddle",,playable,2020-09-02 14:50:13 +0100085012D64000,"Awakening of Cthulhu",UE4,playable,2021-04-26 13:03:07 +01002F1005F3C000,"Away: Journey To The Unexpected",nvdec;vulkan-backend-bug,playable,2022-11-06 15:31:04 +0100B8C00CFCE000,"Awesome Pea",,playable,2020-10-11 12:39:23 +010023800D3F2000,"Awesome Pea (Demo)",,playable,2021-02-10 21:48:21 +0100B7D01147E000,"Awesome Pea 2",,playable,2022-10-01 12:34:19 +0100D2011E28000,"Awesome Pea 2 (Demo)",crash,nothing,2021-02-10 22:08:27 +0100DA3011174000,"AXES",,playable,2021-04-08 13:01:58 +0100052004384000,"Axiom Verge",,playable,2020-10-20 01:07:18 +010075400DEC6000,"Ayakashi Koi Gikyoku《Trial version》",,playable,2021-02-10 22:22:11 +01006AF012FC8000,"Azur Lane: Crosswave",UE4;nvdec,playable,2021-04-05 15:15:25 +0100C7D00DE24000,"Azuran Tales: TRIALS",,playable,2020-08-12 15:23:07 +01006FB00990E000,"Azure Reflections",nvdec;online,playable,2021-04-08 13:18:25 +01004E90149AA000,"Azure Striker GUNVOLT 3",,playable,2022-08-10 13:46:49 +0100192003FA4000,"Azure Striker GUNVOLT: STRIKER PACK",32-bit,playable,2024-02-10 23:51:21 +010031D012BA4000,"Azurebreak Heroes",,playable,2020-12-16 21:26:17 +01009B901145C000,"B.ARK",nvdec,playable,2022-11-17 13:35:02 +01002CD00A51C000,"Baba Is You",,playable,2022-07-17 05:36:54 +0100F4100AF16000,"Back to Bed",nvdec,playable,2020-12-16 20:52:04 +0100FEA014316000,"Backworlds",,playable,2022-10-25 23:20:34 +0100EAF00E32E000,"Bacon Man: An Adventure",crash;nvdec,menus,2021-11-20 02:36:21 +01000CB00D094000,"Bad Dream: Coma",deadlock,boots,2023-08-03 00:54:18 +0100B3B00D81C000,"Bad Dream: Fever",,playable,2021-06-04 18:33:12 +0100E98006F22000,"Bad North",,playable,2022-07-17 13:44:25 +010075000D092000,"Bad North Demo",,playable,2021-02-10 22:48:38 +01004C70086EC000,"BAFL - Brakes Are For Losers",,playable,2021-01-13 08:32:51 +010076B011EC8000,"Baila Latino",,playable,2021-04-14 16:40:24 +0100730011BDC000,"Bakugan: Champions of Vestroia",,playable,2020-11-06 19:07:39 +01008260138C4000,"Bakumatsu Renka SHINSENGUMI",,playable,2022-10-25 23:37:31 +0100438012EC8000,"BALAN WONDERWORLD",nvdec;UE4,playable,2022-10-22 13:08:43 +0100E48013A34000,"Balan Wonderworld Demo",gpu;services;UE4;demo,ingame,2023-02-16 20:05:07 +0100CD801CE5E000,"Balatro",,ingame,2024-04-21 02:01:53 +010010A00DA48000,"Baldur's Gate and Baldur's Gate II: Enhanced Editions",32-bit,playable,2022-09-12 23:52:15 +0100BC400FB64000,"Balthazar's Dream",,playable,2022-09-13 00:13:22 +01008D30128E0000,"Bamerang",,playable,2022-10-26 00:29:39 +010013C010C5C000,"Banner of the Maid",,playable,2021-06-14 15:23:37 +0100388008758000,"Banner Saga 2",crash,boots,2021-01-13 08:56:09 +010071E00875A000,"Banner Saga 3",slow,boots,2021-01-11 16:53:57 +0100CE800B94A000,"Banner Saga Trilogy",slow,playable,2024-03-06 11:25:20 +0100425009FB2000,"Baobabs Mausoleum Ep.1: Ovnifagos Don't Eat Flamingos",,playable,2020-07-15 05:06:29 +010079300E976000,"Baobabs Mausoleum Ep.2: 1313 Barnabas Dead End Drive",,playable,2020-12-17 11:22:50 +01006D300FFA6000,"Baobabs Mausoleum Ep.3: Un Pato en Muertoburgo",nvdec,playable,2020-12-17 11:43:10 +0100D3000AEC2000,"Baobabs Mausoleum: DEMO",,playable,2021-02-10 22:59:25 +01003350102E2000,"Barbarous: Tavern of Emyr",,playable,2022-10-16 21:50:24 +0100F7E01308C000,"Barbearian",Needs Update;gpu,ingame,2021-06-28 16:27:50 +010039C0106C6000,"Baron: Fur Is Gonna Fly",crash,boots,2022-02-06 02:05:43 +0100FB000EB96000,"Barry Bradford's Putt Panic Party",nvdec,playable,2020-06-17 01:08:34 +01004860080A0000,"Baseball Riot",,playable,2021-06-04 18:07:27 +010038600B27E000,"Bastion",,playable,2022-02-15 14:15:24 +01005F3012748000,"Batbarian: Testament of the Primordials",,playable,2020-12-17 12:00:59 +0100C07018CA6000,"Baten Kaitos I & II HD Remaster (Europe/USA)",services;Needs Update,boots,2023-10-01 00:44:32 +0100F28018CA4000,"Baten Kaitos I & II HD Remaster (Japan)",services;Needs Update,boots,2023-10-24 23:11:54 +0100011005D92000,"Batman - The Telltale Series",nvdec;slow,playable,2021-01-11 18:19:35 +01003F00163CE000,"Batman: Arkham City",,playable,2024-09-11 00:30:19 +0100ACD0163D0000,"Batman: Arkham Knight",gpu;mac-bug,ingame,2024-06-25 20:24:42 +0100E6300AA3A000,"Batman: The Enemy Within",crash,nothing,2020-10-16 05:49:27 +0100747011890000,"Battle Axe",,playable,2022-10-26 00:38:01 +0100551001D88000,"Battle Chasers: Nightwar",nvdec;slow,playable,2021-01-12 12:27:34 +0100CC2001C6C000,"Battle Chef Brigade Deluxe",,playable,2021-01-11 14:16:28 +0100DBB00CAEE000,"Battle Chef Brigade Demo",,playable,2021-02-10 23:15:07 +0100A3B011EDE000,"Battle Hunters",gpu,ingame,2022-11-12 09:19:17 +010035E00C1AE000,"Battle of Kings",slow,playable,2020-12-17 12:45:23 +0100D2800EB40000,"Battle Planet - Judgement Day",,playable,2020-12-17 14:06:20 +0100C4D0093EA000,"Battle Princess Madelyn",,playable,2021-01-11 13:47:23 +0100A7500DF64000,"Battle Princess Madelyn Royal Edition",,playable,2022-09-26 19:14:49 +010099B00E898000,"Battle Supremacy - Evolution",gpu;nvdec,boots,2022-02-17 09:02:50 +0100DEB00D5A8000,"Battle Worlds: Kronos",nvdec,playable,2021-06-04 17:48:02 +0100650010DD4000,"Battleground",crash,ingame,2021-09-06 11:53:23 +010044E00D97C000,"BATTLESLOTHS",,playable,2020-10-03 08:32:22 +010059C00E39C000,"Battlestar Galactica Deadlock",nvdec,playable,2020-06-27 17:35:44 +01006D800A988000,"Battlezone Gold Edition",gpu;ldn-untested;online,boots,2021-06-04 18:36:05 +010048300D5C2000,"BATTLLOON",,playable,2020-12-17 15:48:23 +0100194010422000,"bayala - the game",,playable,2022-10-04 14:09:25 +0100CF5010FEC000,"Bayonetta Origins: Cereza and the Lost Demon™",gpu,ingame,2024-02-27 01:39:49 +010002801A3FA000,"Bayonetta Origins: Cereza and the Lost Demon™ Demo",gpu;demo,ingame,2024-02-17 06:06:28 +010076F0049A2000,"Bayonetta™",audout,playable,2022-11-20 15:51:59 +01007960049A0000,"Bayonetta™ 2",nvdec;ldn-works;LAN,playable,2022-11-26 03:46:09 +01004A4010FEA000,"Bayonetta™ 3",gpu;crash;nvdec;vulkan-backend-bug;opengl-backend-bug;amd-vendor-bug;ASTC,ingame,2024-09-28 14:34:33 +01002FA00DE72000,"BDSM: Big Drunk Satanic Massacre",,playable,2021-03-04 21:28:22 +01003A1010E3C000,"BE-A Walker",slow,ingame,2020-09-02 15:00:31 +010095C00406C000,"Beach Buggy Racing",online,playable,2021-04-13 23:16:50 +010020700DE04000,"Bear With Me: The Lost Robots",nvdec,playable,2021-02-27 14:20:10 +010024200E97E800,"Bear With Me: The Lost Robots Demo",nvdec,playable,2021-02-12 22:38:12 +0100C0E014A4E000,"Bear's Restaurant",,playable,2024-08-11 21:26:59 +,"BEAST Darling! ~Kemomimi Danshi to Himitsu no Ryou~",crash,menus,2020-10-04 06:12:08 +01009C300BB4C000,"Beat Cop",,playable,2021-01-06 19:26:48 +01002D20129FC000,"Beat Me!",online-broken,playable,2022-10-16 21:59:26 +01006B0014590000,"BEAUTIFUL DESOLATION",gpu;nvdec,ingame,2022-10-26 10:34:38 +01009E700DB2E000,"Bee Simulator",UE4;crash,boots,2020-07-15 12:13:13 +010018F007786000,"BeeFense BeeMastered",,playable,2022-11-17 15:38:12 +0100558010B26000,"Behold the Kickmen",,playable,2020-06-27 12:49:45 +0100D1300C1EA000,"Beholder: Complete Edition",,playable,2020-10-16 12:48:58 +01006E1004404000,"Ben 10",nvdec,playable,2021-02-26 14:08:35 +01009CD00E3AA000,"Ben 10: Power Trip!",nvdec,playable,2022-10-09 10:52:12 +010074500BBC4000,"Bendy and the Ink Machine",,playable,2023-05-06 20:35:39 +010068600AD16000,"Beyblade Burst Battle Zero",services;crash;Needs Update,menus,2022-11-20 15:48:32 +010056500CAD8000,"Beyond Enemy Lines: Covert Operations",UE4,playable,2022-10-01 13:11:50 +0100B8F00DACA000,"Beyond Enemy Lines: Essentials",nvdec;UE4,playable,2022-09-26 19:48:16 +0100BF400AF38000,"Bibi & Tina – Adventures with Horses",nvdec;slow,playable,2021-01-13 08:58:09 +010062400E69C000,"Bibi & Tina at the horse farm",,playable,2021-04-06 16:31:39 +01005FF00AF36000,"Bibi Blocksberg – Big Broom Race 3",,playable,2021-01-11 19:07:16 +010062B00A874000,"Big Buck Hunter Arcade",nvdec,playable,2021-01-12 20:31:39 +010088100C35E000,"Big Crown: Showdown",nvdec;online;ldn-untested,menus,2022-07-17 18:25:32 +0100A42011B28000,"Big Dipper",,playable,2021-06-14 15:08:19 +010077E00F30E000,"Big Pharma",,playable,2020-07-14 15:27:30 +010007401287E000,"BIG-Bobby-Car - The Big Race",slow,playable,2020-12-10 14:25:06 +010057700FF7C000,"Billion Road",,playable,2022-11-19 15:57:43 +010087D008D64000,"BINGO for Nintendo Switch",,playable,2020-07-23 16:17:36 +01004BA017CD6000,"Biomutant",crash,ingame,2024-05-16 15:46:36 +01002620102C6000,"BioShock 2 Remastered",services,nothing,2022-10-29 14:39:22 +0100D560102C8000,"BioShock Infinite: The Complete Edition",services-horizon;crash,nothing,2024-08-11 21:35:01 +0100AD10102B2000,"BioShock Remastered",services-horizon;crash;Needs Update,boots,2024-06-06 01:08:52 +010053B0117F8000,"Biped",nvdec,playable,2022-10-01 13:32:58 +01001B700B278000,"Bird Game +",online,playable,2022-07-17 18:41:57 +0100B6B012FF4000,"Birds and Blocks Demo",services;demo,boots,2022-04-10 04:53:03 +0100E62012D3C000,"BIT.TRIP RUNNER",,playable,2022-10-17 14:23:24 +01000AD012D3A000,"BIT.TRIP VOID",,playable,2022-10-17 14:31:23 +0100A0800EA9C000,"Bite the Bullet",,playable,2020-10-14 23:10:11 +010026E0141C8000,"Bitmaster",,playable,2022-12-13 14:05:51 +010061D00FD26000,"Biz Builder Delux",slow,playable,2020-12-15 21:36:25 +0100DD1014AB8000,"Black Book",nvdec,playable,2022-12-13 16:38:53 +010049000B69E000,"Black Future '88",nvdec,playable,2022-09-13 11:24:37 +01004BE00A682000,"Black Hole Demo",,playable,2021-02-12 23:02:17 +0100C3200E7E6000,"Black Legend",gpu;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-10-22 12:54:48 +010043A012A32000,"Blackjack Hands",,playable,2020-11-30 14:04:51 +0100A0A00E660000,"Blackmoor 2",online-broken,playable,2022-09-26 20:26:34 +010032000EA2C000,"Blacksad: Under the Skin",,playable,2022-09-13 11:38:04 +01006B400C178000,"Blacksea Odyssey",nvdec,playable,2022-10-16 22:14:34 +010068E013450000,"Blacksmith of the Sand Kingdom",,playable,2022-10-16 22:37:44 +0100C4400CB7C000,"BLADE ARCUS Rebellion From Shining",,playable,2022-07-17 18:52:28 +0100EA1018A2E000,"Blade Assault",audio,nothing,2024-04-29 14:32:50 +01009CC00E224000,"Blade II - The Return Of Evil",audio;crash;UE4,ingame,2021-11-14 02:49:59 +01005950022EC000,"Blade Strangers",nvdec,playable,2022-07-17 19:02:43 +0100DF0011A6A000,"Bladed Fury",,playable,2022-10-26 11:36:26 +0100CFA00CC74000,"Blades of Time",deadlock;online,boots,2022-07-17 19:19:58 +01006CC01182C000,"Blair Witch",nvdec;UE4,playable,2022-10-01 14:06:16 +010039501405E000,"Blanc",gpu;slow,ingame,2023-02-22 14:00:13 +0100698009C6E000,"Blasphemous",nvdec,playable,2021-03-01 12:15:31 +0100302010338000,"Blasphemous Demo",,playable,2021-02-12 23:49:56 +0100225000FEE000,"Blaster Master Zero",32-bit,playable,2021-03-05 13:22:33 +01005AA00D676000,"Blaster Master Zero 2",,playable,2021-04-08 15:22:59 +010025B002E92000,"Blaster Master Zero Demo",,playable,2021-02-12 23:59:06 +0100E53013E1C000,"Blastoid Breakout",,playable,2021-01-25 23:28:02 +0100EE800C93E000,"BLAZBLUE CENTRALFICTION Special Edition",nvdec,playable,2020-12-15 23:50:04 +0100B61008208000,"BLAZBLUE CROSS TAG BATTLE",nvdec;online,playable,2021-01-05 20:29:37 +010021A00DE54000,"Blazing Beaks",,playable,2020-06-04 20:37:06 +0100C2700C252000,"Blazing Chrome",,playable,2020-11-16 04:56:54 +010091700EA2A000,"Bleep Bloop DEMO",nvdec,playable,2021-02-13 00:20:53 +010089D011310000,"Blind Men",audout,playable,2021-02-20 14:15:38 +0100743013D56000,"Blizzard® Arcade Collection",nvdec,playable,2022-08-03 19:37:26 +0100F3500A20C000,"BlobCat",,playable,2021-04-23 17:09:30 +0100E1C00DB6C000,"Block-a-Pix Deluxe Demo",,playable,2021-02-13 00:37:39 +0100C6A01AD56000,"Bloo Kid",,playable,2024-05-01 17:18:04 +010055900FADA000,"Bloo Kid 2",,playable,2024-05-01 17:16:57 +0100EE5011DB6000,"Blood and Guts Bundle",,playable,2020-06-27 12:57:35 +01007E700D17E000,"Blood Waves",gpu,ingame,2022-07-18 13:04:46 +0100E060102AA000,"Blood will be Spilled",nvdec,playable,2020-12-17 03:02:03 +01004B800AF5A000,"Bloodstained: Curse of the Moon",,playable,2020-09-04 10:42:17 +01004680124E6000,"Bloodstained: Curse of the Moon 2",,playable,2020-09-04 10:56:27 +010025A00DF2A000,"Bloodstained: Ritual of the Night",nvdec;UE4,playable,2022-07-18 14:27:35 +0100E510143EC000,"Bloody Bunny, The Game",nvdec;UE4,playable,2022-10-22 13:18:55 +0100B8400A1C6000,"Bloons TD 5",Needs Update;audio;gpu;services,boots,2021-04-18 23:02:46 +01000EB01023E000,"Blossom Tales Demo",,playable,2021-02-13 14:22:53 +0100C1000706C000,"Blossom Tales: The Sleeping King",,playable,2022-07-18 16:43:07 +010073B010F6E000,"Blue Fire",UE4,playable,2022-10-22 14:46:11 +0100721013510000,"Body of Evidence",,playable,2021-04-25 22:22:11 +0100AD1010CCE000,"Bohemian Killing",vulkan-backend-bug,playable,2022-09-26 22:41:37 +010093700ECEC000,"Boku to Nurse no Kenshuu Nisshi",,playable,2022-11-21 20:38:34 +01001D900D9AC000,"Bokujou Monogatari Saikai no Mineraru Taun (Story of Seasons: Friends of Mineral Town)",slow;crash;Needs Update,ingame,2022-04-24 22:46:04 +0100317014B7C000,"Bomb Rush Cyberfunk",,playable,2023-09-28 19:51:57 +01007900080B6000,"Bomber Crew",,playable,2021-06-03 14:21:28 +0100A1F012948000,"Bomber Fox",nvdec,playable,2021-04-19 17:58:13 +010087300445A000,"Bombslinger",services,menus,2022-07-19 12:53:15 +01007A200F452000,"Book of Demons",,playable,2022-09-29 12:03:43 +010054500F564000,"Bookbound Brigade",,playable,2020-10-09 14:30:29 +01002E6013ED8000,"Boom Blaster",,playable,2021-03-24 10:55:56 +010081A00EE62000,"Boomerang Fu",,playable,2024-07-28 01:12:41 +010069F0135C4000,"Boomerang Fu Demo Version",demo,playable,2021-02-13 14:38:13 +01009970122E4000,"Borderlands 3 Ultimate Edition",gpu,ingame,2024-07-15 04:38:14 +010064800F66A000,"Borderlands: Game of the Year Edition",slow;online-broken;ldn-untested,ingame,2023-07-23 21:10:36 +010096F00FF22000,"Borderlands: The Handsome Collection",,playable,2022-04-22 18:35:07 +010007400FF24000,"Borderlands: The Pre-Sequel",nvdec,playable,2021-06-09 20:17:10 +01008E500AFF6000,"Boreal Blade",gpu;ldn-untested;online,ingame,2021-06-11 15:37:14 +010092C013FB8000,"BORIS THE ROCKET",,playable,2022-10-26 13:23:09 +010076F00EBE4000,"BOSSGARD",online-broken,playable,2022-10-04 14:21:13 +010069B00EAC8000,"Bot Vice Demo",crash;demo,ingame,2021-02-13 14:52:42 +010081100FE08000,"Bouncy Bob 2",,playable,2020-07-14 16:51:53 +0100E1200DC1A000,"Bounty Battle",nvdec,playable,2022-10-04 14:40:51 +0100B4700C57E000,"Bow to Blood: Last Captain Standing",slow,playable,2020-10-23 10:51:21 +010040800BA8A000,"Box Align",crash;services,nothing,2020-04-03 17:26:56 +010018300D006000,"BOXBOY! + BOXGIRL!™",,playable,2020-11-08 01:11:54 +0100B7200E02E000,"BOXBOY! + BOXGIRL!™ Demo",demo,playable,2021-02-13 14:59:08 +0100CA400B6D0000,"BQM -BlockQuest Maker-",online,playable,2020-07-31 20:56:50 +0100E87017D0E000,"Bramble: The Mountain King",services-horizon,playable,2024-03-06 09:32:17 +01000F5003068000,"Brave Dungeon + Dark Witch Story:COMBAT",,playable,2021-01-12 21:06:34 +01006DC010326000,"BRAVELY DEFAULT™ II",gpu;crash;Needs Update;UE4,ingame,2024-04-26 06:11:26 +0100B6801137E000,"Bravely Default™ II Demo",gpu;crash;UE4;demo,ingame,2022-09-27 05:39:47 +010081501371E000,"BraveMatch",UE4,playable,2022-10-26 13:32:15 +0100F60017D4E000,"Bravery and Greed",gpu;deadlock,boots,2022-12-04 02:23:47 +0100A42004718000,"BRAWL",nvdec;slow,playable,2020-06-04 14:23:18 +010068F00F444000,"Brawl Chess",nvdec,playable,2022-10-26 13:59:17 +0100C6800B934000,"Brawlhalla",online;opengl,playable,2021-06-03 18:26:09 +010060200A4BE000,"Brawlout",ldn-untested;online,playable,2021-06-04 17:35:35 +0100C1B00E1CA000,"Brawlout Demo",demo,playable,2021-02-13 22:46:53 +010022C016DC8000,"Breakout: Recharged",slow,ingame,2022-11-06 15:32:57 +01000AA013A5E000,"Breathedge",UE4;nvdec,playable,2021-05-06 15:44:28 +01003D50100F4000,"Breathing Fear",,playable,2020-07-14 15:12:29 +010026800BB06000,"Brick Breaker",nvdec;online,playable,2020-12-15 18:26:23 +01002AD0126AE000,"Bridge Constructor: The Walking Dead",gpu;slow,ingame,2020-12-11 17:31:32 +01000B1010D8E000,"Bridge! 3",,playable,2020-10-08 20:47:24 +010011000EA7A000,"BRIGANDINE The Legend of Runersia",,playable,2021-06-20 06:52:25 +0100703011258000,"BRIGANDINE The Legend of Runersia Demo",,playable,2021-02-14 14:44:10 +01000BF00BE40000,"Bring Them Home",UE4,playable,2021-04-12 14:14:43 +010060A00B53C000,"Broforce",ldn-untested;online,playable,2021-05-28 12:23:38 +0100EDD0068A6000,"Broken Age",,playable,2021-06-04 17:40:32 +0100A5800F6AC000,"Broken Lines",,playable,2020-10-16 00:01:37 +01001E60085E6000,"Broken Sword 5 - the Serpent's Curse",,playable,2021-06-04 17:28:59 +0100F19011226000,"Brotherhood United Demo",demo,playable,2021-02-14 21:10:57 +01000D500D08A000,"Brothers: A Tale of Two Sons",nvdec;UE4,playable,2022-07-19 14:02:22 +0100B2700E90E000,"Brunch Club",,playable,2020-06-24 13:54:07 +010010900F7B4000,"Bubble Bobble 4 Friends: The Baron is Back!",nvdec,playable,2021-06-04 15:27:55 +0100DBE00C554000,"Bubsy: Paws on Fire!",slow,ingame,2023-08-24 02:44:51 +0100089010A92000,"Bucket Knight",crash,ingame,2020-09-04 13:11:24 +0100F1B010A90000,"Bucket Knight demo",demo,playable,2021-02-14 21:23:09 +01000D200AC0C000,"Bud Spencer & Terence Hill - Slaps And Beans",,playable,2022-07-17 12:37:00 +010051A00E99E000,"Bug Fables: The Everlasting Sapling",,playable,2020-06-09 11:27:00 +01003DD00D658000,"Bulletstorm: Duke of Switch Edition",nvdec,playable,2022-03-03 08:30:24 +01006BB00E8FA000,"BurgerTime Party!",slow,playable,2020-11-21 14:11:53 +01005780106E8000,"BurgerTime Party! Demo",demo,playable,2021-02-14 21:34:16 +010078C00DB40000,"Buried Stars",,playable,2020-09-07 14:11:58 +0100DBF01000A000,"Burnout™ Paradise Remastered",nvdec;online,playable,2021-06-13 02:54:46 +010066F00C76A000,"Bury me, my Love",,playable,2020-11-07 12:47:37 +010030D012FF6000,"Bus Driver Simulator",,playable,2022-10-17 13:55:27 +0100A9101418C000,"BUSTAFELLOWS",nvdec,playable,2020-10-17 20:04:41 +0100177005C8A000,"BUTCHER",,playable,2021-01-11 18:50:17 +01000B900D8B0000,"Cadence of Hyrule: Crypt of the NecroDancer Featuring The Legend of Zelda",slow;nvdec,playable,2024-04-01 22:43:40 +010065700EE06000,"Cadence of Hyrule: Crypt of the NecroDancer Featuring The Legend of Zelda Demo",demo;gpu;nvdec,ingame,2021-02-14 21:48:15 +01005C00117A8000,"Café Enchanté",,playable,2020-11-13 14:54:25 +010060400D21C000,"Cafeteria Nipponica Demo",demo,playable,2021-02-14 22:11:35 +0100699012F82000,"Cake Bash Demo",crash;demo,ingame,2021-02-14 22:21:15 +01004FD00D66A000,"Caladrius Blaze",deadlock;nvdec,nothing,2022-12-07 16:44:37 +01004B500AB88000,"Calculation Castle : Greco's Ghostly Challenge Addition",32-bit,playable,2020-11-01 23:40:11 +010045500B212000,"Calculation Castle : Greco's Ghostly Challenge Division",32-bit,playable,2020-11-01 23:54:55 +0100ECE00B210000,"Calculation Castle : Greco's Ghostly Challenge Multiplication",32-bit,playable,2020-11-02 00:04:33 +0100A6500B176000,"Calculation Castle : Greco's Ghostly Challenge Subtraction",32-bit,playable,2020-11-01 23:47:42 +010004701504A000,"Calculator",,playable,2021-06-11 13:27:20 +010013A00E750000,"Calico",,playable,2022-10-17 14:44:28 +010046000EE40000,"Call of Cthulhu",nvdec;UE4,playable,2022-12-18 03:08:30 +0100B4700BFC6000,"Call of Juarez: Gunslinger",gpu;nvdec,ingame,2022-09-17 16:49:46 +0100593008BDC000,"Can't Drive This",,playable,2022-10-22 14:55:17 +0100E4600B166000,"Candle: The Power of the Flame",nvdec,playable,2020-05-26 12:10:20 +01001E0013208000,"Capcom Arcade Stadium",,playable,2021-03-17 05:45:14 +010094E00B52E000,"Capcom Beat 'Em Up Bundle",,playable,2020-03-23 18:31:24 +0100F6400A77E000,"CAPCOM BELT ACTION COLLECTION",online;ldn-untested,playable,2022-07-21 20:51:23 +01009BF0072D4000,"Captain Toad™: Treasure Tracker",32-bit,playable,2024-04-25 00:50:16 +01002C400B6B6000,"Captain Toad™: Treasure Tracker Demo",32-bit;demo,playable,2021-02-14 22:36:09 +0100EAE010560000,"Captain Tsubasa: Rise of New Champions",online-broken;vulkan-backend-bug,playable,2022-10-09 11:20:50 +01002320137CC000,"CAPTAIN TSUBASA: RISE OF NEW CHAMPIONS DEMO VERSION",slow,playable,2021-02-14 22:45:35 +010048800D95C000,"Car Mechanic Manager",,playable,2020-07-23 18:50:17 +01007BD00AE70000,"Car Quest",deadlock,menus,2021-11-18 08:59:18 +0100DA70115E6000,"Caretaker",,playable,2022-10-04 14:52:24 +0100DD6014870000,"Cargo Crew Driver",,playable,2021-04-19 12:54:22 +010088C0092FE000,"Carnival Games®",nvdec,playable,2022-07-21 21:01:22 +01005F5011AC4000,"Carnivores: Dinosaur Hunt",,playable,2022-12-14 18:46:06 +0100B1600E9AE000,"CARRION",crash,nothing,2020-08-13 17:15:12 +01008D1001512000,"Cars 3: Driven to Win",gpu,ingame,2022-07-21 21:21:05 +0100810012A1A000,"Carto",,playable,2022-09-04 15:37:06 +0100085003A2A000,"Cartoon Network Battle Crashers",,playable,2022-07-21 21:55:40 +0100C4C0132F8000,"CASE 2: Animatronics Survival",nvdec;UE4;vulkan-backend-bug,playable,2022-10-09 11:45:03 +010066F01A0E0000,"Cassette Beasts",,playable,2024-07-22 20:38:43 +010001300D14A000,"Castle Crashers Remastered",gpu,boots,2024-08-10 09:21:20 +0100F6D01060E000,"Castle Crashers Remastered Demo",gpu;demo,boots,2022-04-10 10:57:10 +01003C100445C000,"Castle of Heart",nvdec,playable,2022-07-21 23:10:45 +0100F5500FA0E000,"Castle of no Escape 2",,playable,2022-09-13 13:51:42 +0100DA2011F18000,"Castle Pals",,playable,2021-03-04 21:00:33 +010097C00AB66000,"CastleStorm",nvdec,playable,2022-07-21 22:49:14 +010007400EB64000,"CastleStorm II",UE4;crash;nvdec,boots,2020-10-25 11:22:44 +01001A800D6BC000,"Castlevania Anniversary Collection",audio,playable,2020-05-23 11:40:29 +010076000C86E000,"Cat Girl Without Salad: Amuse-Bouche",,playable,2022-09-03 13:01:47 +0100A2F006FBE000,"Cat Quest",,playable,2020-04-02 23:09:32 +01008BE00E968000,"Cat Quest II",,playable,2020-07-06 23:52:09 +0100E86010220000,"Cat Quest II Demo",demo,playable,2021-02-15 14:11:57 +0100BAE0077E4000,"Catherine Full Body for Nintendo Switch (JP)",Needs Update;gpu,ingame,2021-02-21 18:06:11 +0100BF00112C0000,"Catherine: Full Body",nvdec,playable,2023-04-02 11:00:37 +010004400B28A000,"Cattails",,playable,2021-06-03 14:36:57 +0100B7D0022EE000,"Cave Story+",,playable,2020-05-22 09:57:25 +01001A100C0E8000,"Caveblazers",slow,ingame,2021-06-09 17:57:28 +01006DB004566000,"Caveman Warriors",,playable,2020-05-22 11:44:20 +010078700B2CC000,"Caveman Warriors Demo",demo,playable,2021-02-15 14:44:08 +01002B30028F6000,"Celeste",,playable,2020-06-17 10:14:40 +01006B000A666000,"Cendrillon palikA",gpu;nvdec,ingame,2022-07-21 22:52:24 +01007600115CE000,"CHAOS CODE -NEW SIGN OF CATASTROPHE-",crash;nvdec,boots,2022-04-04 12:24:21 +0100957016B90000,"CHAOS;HEAD NOAH",,playable,2022-06-02 22:57:19 +0100F52013A66000,"Charge Kid",gpu;audout,boots,2024-02-11 01:17:47 +0100DE200C350000,"Chasm",,playable,2020-10-23 11:03:43 +010034301A556000,"Chasm: The Rift",gpu,ingame,2024-04-29 19:02:48 +0100A5900472E000,"Chess Ultra",UE4,playable,2023-08-30 23:06:31 +0100E3C00A118000,"Chicken Assassin: Reloaded",,playable,2021-02-20 13:29:01 +0100713010E7A000,"Chicken Police – Paint it RED!",nvdec,playable,2020-12-10 15:10:11 +0100F6C00A016000,"Chicken Range",,playable,2021-04-23 12:14:23 +01002E500E3EE000,"Chicken Rider",,playable,2020-05-22 11:31:17 +0100CAC011C3A000,"Chickens Madness DEMO",UE4;demo;gpu;nvdec,ingame,2021-02-15 15:02:10 +01007D000AD8A000,"Child of Light® Ultimate Edition",nvdec,playable,2020-12-16 10:23:10 +01002DE00C250000,"Children of Morta",gpu;nvdec,ingame,2022-09-13 17:48:47 +0100C1A00AC3E000,"Children of Zodiarcs",,playable,2020-10-04 14:23:33 +010046F012A04000,"Chinese Parents",,playable,2021-04-08 12:56:41 +01005A001489A000,"Chiptune Arrange Sound(DoDonPachi Resurrection)",32-bit;crash,ingame,2024-01-25 14:37:32 +01006A30124CA000,"Chocobo GP",gpu;crash,ingame,2022-06-04 14:52:18 +0100BF600BF26000,"Chocobo's Mystery Dungeon EVERY BUDDY!",slow,playable,2020-05-26 13:53:13 +01000BA0132EA000,"Choices That Matter: And The Sun Went Out",,playable,2020-12-17 15:44:08 +,"Chou no Doku Hana no Kusari: Taishou Irokoi Ibun",gpu;nvdec,ingame,2020-09-28 17:58:04 +010039A008E76000,"ChromaGun",,playable,2020-05-26 12:56:42 +010006800E13A000,"Chronos: Before the Ashes",UE4;gpu;nvdec,ingame,2020-12-11 22:16:35 +010039700BA7E000,"Circle of Sumo",,playable,2020-05-22 12:45:21 +01008FA00D686000,"Circuits",,playable,2022-09-19 11:52:50 +0100D8800B87C000,"Cities: Skylines - Nintendo Switch™ Edition",,playable,2020-12-16 10:34:57 +0100E4200D84E000,"Citizens of Space",gpu,boots,2023-10-22 06:45:44 +0100D9C012900000,"Citizens Unite!: Earth x Space",gpu,ingame,2023-10-22 06:44:19 +01005E501284E000,"City Bus Driving Simulator",,playable,2021-06-15 21:25:59 +0100A3A00CC7E000,"CLANNAD",,playable,2021-06-03 17:01:02 +01007B501372C000,"CLANNAD Side Stories",,playable,2022-10-26 15:03:04 +01005ED0107F4000,"Clash Force",,playable,2022-10-01 23:45:48 +010009300AA6C000,"Claybook",slow;nvdec;online;UE4,playable,2022-07-22 11:11:34 +010058900F52E000,"Clea",crash,ingame,2020-12-15 16:22:56 +010045E0142A4000,"Clea 2",,playable,2021-04-18 14:25:18 +01008C100C572000,"Clock Zero ~Shuuen no Ichibyou~ Devote",nvdec,playable,2022-12-04 22:19:14 +0100DF9013AD4000,"Clocker",,playable,2021-04-05 15:05:13 +0100B7200DAC6000,"Close to the Sun",crash;nvdec;UE4,boots,2021-11-04 09:19:41 +010047700D540000,"Clubhouse Games™: 51 Worldwide Classics",ldn-works,playable,2024-05-21 16:12:57 +0100C1401CEDC000,"Clue",crash;online,menus,2020-11-10 09:23:48 +010085A00821A000,"ClusterPuck 99",,playable,2021-01-06 00:28:12 +010096900A4D2000,"Clustertruck",slow,ingame,2021-02-19 21:07:09 +01005790110F0000,"Cobra Kai: The Karate Kid Saga Continues",,playable,2021-06-17 15:59:13 +01002E700C366000,"COCOON",gpu,ingame,2024-03-06 11:33:08 +010034E005C9C000,"Code of Princess EX",nvdec;online,playable,2021-06-03 10:50:13 +010086100CDCA000,"CODE SHIFTER",,playable,2020-08-09 15:20:55 +010002400F408000,"Code: Realize ~Future Blessings~",nvdec,playable,2023-03-31 16:57:47 +0100CF800C810000,"Coffee Crisis",,playable,2021-02-20 12:34:52 +010066200E1E6000,"Coffee Talk",,playable,2020-08-10 09:48:44 +0100178009648000,"Coffin Dodgers",,playable,2021-02-20 14:57:41 +010035B01706E000,"Cold Silence",cpu;crash,nothing,2024-07-11 17:06:14 +010083E00F40E000,"Collar X Malice",nvdec,playable,2022-10-02 11:51:56 +0100E3B00F412000,"Collar X Malice -Unlimited-",nvdec,playable,2022-10-04 15:30:40 +01002A600D7FC000,"Collection of Mana",,playable,2020-10-19 19:29:45 +0100B77012266000,"COLLECTION of SaGa FINAL FANTASY LEGEND",,playable,2020-12-30 19:11:16 +010030800BC36000,"Collidalot",nvdec,playable,2022-09-13 14:09:27 +0100CA100C0BA000,"Color Zen",,playable,2020-05-22 10:56:17 +010039B011312000,"Colorgrid",,playable,2020-10-04 01:50:52 +0100A7000BD28000,"Coloring Book",,playable,2022-07-22 11:17:05 +010020500BD86000,"Colors Live",gpu;services;crash,boots,2023-02-26 02:51:07 +0100E2F0128B4000,"Colossus Down",,playable,2021-02-04 20:49:50 +0100C4D00D16A000,"Commander Keen in Keen Dreams",gpu,ingame,2022-08-04 20:34:20 +0100E400129EC000,"Commander Keen in Keen Dreams: Definitive Edition",,playable,2021-05-11 19:33:54 +010065A01158E000,"Commandos 2 - HD Remaster",gpu;nvdec,ingame,2022-08-10 21:52:27 +010015801308E000,"Conarium",UE4;nvdec,playable,2021-04-26 17:57:53 +0100971011224000,"Concept Destruction",,playable,2022-09-29 12:28:56 +010043700C9B0000,"Conduct TOGETHER!",nvdec,playable,2021-02-20 12:59:00 +01007EF00399C000,"Conga Master Party!",,playable,2020-05-22 13:22:24 +0100A5600FAC0000,"Construction Simulator 3 - Console Edition",,playable,2023-02-06 09:31:23 +0100A330022C2000,"Constructor Plus",,playable,2020-05-26 12:37:40 +0100DCA00DA7E000,"Contra Anniversary Collection",,playable,2022-07-22 11:30:12 +0100F2600D710000,"CONTRA: ROGUE CORPS",crash;nvdec;regression,menus,2021-01-07 13:23:35 +0100B8200ECA6000,"CONTRA: ROGUE CORPS Demo",gpu,ingame,2022-09-04 16:46:52 +01007D701298A000,"Contraptions",,playable,2021-02-08 18:40:50 +0100041013360000,"Control Ultimate Edition - Cloud Version",Needs Update;crash;services,nothing,2021-04-18 22:34:06 +010058800E90A000,"Convoy: A Tactical Roguelike",,playable,2020-10-15 14:43:50 +0100B82010B6C000,"Cook, Serve, Delicious! 3?!",,playable,2022-10-09 12:09:34 +010060700EFBA000,"Cooking Mama: Cookstar",crash;loader-allocator,menus,2021-11-20 03:19:35 +01001E400FD58000,"Cooking Simulator",,playable,2021-04-18 13:25:23 +0100DF9010206000,"Cooking Tycoons - 3 in 1 Bundle",,playable,2020-11-16 22:44:26 +01005350126E0000,"Cooking Tycoons 2 - 3 in 1 Bundle",,playable,2020-11-16 22:19:33 +0100C5A0115C4000,"CopperBell",,playable,2020-10-04 15:54:36 +010016400B1FE000,"Corpse Party: Blood Drive",nvdec,playable,2021-03-01 12:44:23 +0100CCB01B1A0000,"COSMIC FANTASY COLLECTION",,ingame,2024-05-21 17:56:37 +010067C00A776000,"Cosmic Star Heroine",,playable,2021-02-20 14:30:47 +01003DD00F94A000,"COTTOn Reboot! [ コットン リブート! ]",,playable,2022-05-24 16:29:24 +,"Cotton/Guardian Saturn Tribute Games",gpu,boots,2022-11-27 21:00:51 +01000E301107A000,"Couch Co-Op Bundle Vol. 2",nvdec,playable,2022-10-02 12:04:21 +0100C1E012A42000,"Country Tales",,playable,2021-06-17 16:45:39 +01003370136EA000,"Cozy Grove",gpu,ingame,2023-07-30 22:22:19 +010073401175E000,"Crash Bandicoot™ 4: It’s About Time",nvdec;UE4,playable,2024-03-17 07:13:45 +0100D1B006744000,"Crash Bandicoot™ N. Sane Trilogy",,playable,2024-02-11 11:38:14 +010007900FCE2000,"Crash Drive 2",online,playable,2020-12-17 02:45:46 +010046600BD0E000,"Crash Dummy",nvdec,playable,2020-05-23 11:12:43 +0100BF200CD74000,"Crashbots",,playable,2022-07-22 13:50:52 +010027100BD16000,"Crashlands",,playable,2021-05-27 20:30:06 +0100F9F00C696000,"Crash™ Team Racing Nitro-Fueled",gpu;nvdec;online-broken,ingame,2023-06-25 02:40:17 +0100BF7006BCA000,"Crawl",,playable,2020-05-22 10:16:05 +0100C66007E96000,"Crayola Scoot",nvdec,playable,2022-07-22 14:01:55 +01005BA00F486000,"Crayon Shin-chan Ora to Hakase no Natsuyasumi Owaranai Nanokakan no Tabi",,playable,2021-07-21 10:41:33 +0100D470106DC000,"CRAYON SHINCHAN The Storm Called FLAMING KASUKABE RUNNER!!",services,menus,2020-03-20 14:00:57 +01006BC00C27A000,"Crazy Strike Bowling EX",UE4;gpu;nvdec,ingame,2020-08-07 18:15:59 +0100F9900D8C8000,"Crazy Zen Mini Golf",,playable,2020-08-05 14:00:00 +0100B0E010CF8000,"Creaks",,playable,2020-08-15 12:20:52 +01007C600D778000,"Creature in the Well",UE4;gpu,ingame,2020-11-16 12:52:40 +0100A19011EEE000,"Creepy Tale",,playable,2020-12-15 21:58:03 +01005C2013B00000,"Cresteaju",gpu,ingame,2021-03-24 10:46:06 +010022D00D4F0000,"Cricket 19",gpu,ingame,2021-06-14 14:56:07 +0100387017100000,"Cricket 22 The Official Game Of The Ashes",crash,boots,2023-10-18 08:01:57 +01005640080B0000,"Crimsonland",,playable,2021-05-27 20:50:54 +0100B0400EBC4000,"Cris Tales",crash,ingame,2021-07-29 15:10:53 +01004BC0166CC000,"CRISIS CORE –FINAL FANTASY VII– REUNION",,playable,2022-12-19 15:53:59 +01004F800C4DA000,"Croc's World",,playable,2020-05-22 11:21:09 +01009DB00DE12000,"Croc's World 2",,playable,2020-12-16 20:01:40 +010025200FC54000,"Croc's World 3",,playable,2020-12-30 18:53:26 +01000F0007D92000,"Croixleur Sigma",online,playable,2022-07-22 14:26:54 +01003D90058FC000,"CrossCode",,playable,2024-02-17 10:23:19 +0100B1E00AA56000,"Crossing Souls",nvdec,playable,2021-02-20 15:42:54 +0100059012BAE000,"Crown Trick",,playable,2021-06-16 19:36:29 +0100B41013C82000,"Cruis'n Blast",gpu,ingame,2023-07-30 10:33:47 +01000CC01C108000,"Crymachina Trial Edition ( Demo ) [ クライマキナ ]",demo,playable,2023-08-06 05:33:21 +0100CEA007D08000,"Crypt of the NecroDancer: Nintendo Switch Edition",nvdec,playable,2022-11-01 09:52:06 +0100582010AE0000,"Crysis 2 Remastered",deadlock,menus,2023-09-21 10:46:17 +0100CD3010AE2000,"Crysis 3 Remastered",deadlock,menus,2023-09-10 16:03:50 +0100E66010ADE000,"Crysis Remastered",nvdec,menus,2024-08-13 05:23:24 +0100972008234000,"Crystal Crisis",nvdec,playable,2021-02-20 13:52:44 +01006FA012FE0000,"Cthulhu Saves Christmas",,playable,2020-12-14 00:58:55 +010001600D1E8000,"Cube Creator X",crash,menus,2021-11-25 08:53:28 +010082E00F1CE000,"Cubers: Arena",nvdec;UE4,playable,2022-10-04 16:05:40 +010040D011D04000,"Cubicity",,playable,2021-06-14 14:19:51 +0100A5C00D162000,"Cuphead",,playable,2022-02-01 22:45:55 +0100F7E00DFC8000,"Cupid Parasite",gpu,ingame,2023-08-21 05:52:36 +010054501075C000,"Curious Cases",,playable,2020-08-10 09:30:48 +0100D4A0118EA000,"Curse of the Dead Gods",,playable,2022-08-30 12:25:38 +0100CE5014026000,"Curved Space",,playable,2023-01-14 22:03:50 +0100C1300DE74000,"Cyber Protocol",nvdec,playable,2020-09-28 14:47:40 +0100C1F0141AA000,"Cyber Shadow",,playable,2022-07-17 05:37:41 +01006B9013672000,"Cybxus Hearts",gpu;slow,ingame,2022-01-15 05:00:49 +010063100B2C2000,"Cytus α",nvdec,playable,2021-02-20 13:40:46 +0100B6400CA56000,"DAEMON X MACHINA™",UE4;audout;ldn-untested;nvdec,playable,2021-06-09 19:22:29 +010061300DF48000,"Dairoku: Ayakashimori",Needs Update;loader-allocator,nothing,2021-11-30 05:09:38 +0100BD2009A1C000,"Damsel",,playable,2022-09-06 11:54:39 +0100BFC002B4E000,"Dandara: Trials of Fear Edition",,playable,2020-05-26 12:42:33 +0100DFB00D808000,"Dandy Dungeon - Legend of Brave Yamada -",,playable,2021-01-06 09:48:47 +01003ED0099B0000,"Danger Mouse: The Danger Games",crash;online,boots,2022-07-22 15:49:45 +0100EFA013E7C000,"Danger Scavenger",nvdec,playable,2021-04-17 15:53:04 +0100417007F78000,"Danmaku Unlimited 3",,playable,2020-11-15 00:48:35 +,"Darius Cozmic Collection",,playable,2021-02-19 20:59:06 +010059C00BED4000,"Darius Cozmic Collection Special Edition",,playable,2022-07-22 16:26:50 +010015800F93C000,"Dariusburst - Another Chronicle EX+",online,playable,2021-04-05 14:21:43 +01003D301357A000,"Dark Arcana: The Carnival",gpu;slow,ingame,2022-02-19 08:52:28 +010083A00BF6C000,"Dark Devotion",nvdec,playable,2022-08-09 09:41:18 +0100BFF00D5AE000,"Dark Quest 2",,playable,2020-11-16 21:34:52 +01004AB00A260000,"DARK SOULS™: REMASTERED",gpu;nvdec;online-broken,ingame,2024-04-09 19:47:58 +01001FA0034E2000,"Dark Witch Music Episode: Rudymical",,playable,2020-05-22 09:44:44 +01008F1008DA6000,"Darkest Dungeon",nvdec,playable,2022-07-22 18:49:18 +0100F2300D4BA000,"Darksiders Genesis",nvdec;online-broken;UE4;ldn-broken,playable,2022-09-21 18:06:25 +010071800BA98000,"Darksiders II Deathinitive Edition",gpu;nvdec;online-broken,ingame,2024-06-26 00:37:25 +0100E1400BA96000,"Darksiders Warmastered Edition",nvdec,playable,2023-03-02 18:08:09 +010033500B7B6000,"Darkwood",,playable,2021-01-08 21:24:06 +0100440012FFA000,"DARQ Complete Edition",audout,playable,2021-04-07 15:26:21 +0100BA500B660000,"Darts Up",,playable,2021-04-14 17:22:22 +0100F0B0081DA000,"Dawn of the Breakers",online-broken;vulkan-backend-bug,menus,2022-12-08 14:40:03 +0100FCF00F6CC000,"Day and Night",,playable,2020-12-17 12:30:51 +0100D0A009310000,"de Blob",nvdec,playable,2021-01-06 17:34:46 +010034E00A114000,"de Blob 2",nvdec,playable,2021-01-06 13:00:16 +01008E900471E000,"De Mambo",,playable,2021-04-10 12:39:40 +01004C400CF96000,"Dead by Daylight",nvdec;online-broken;UE4,boots,2022-09-13 14:32:13 +0100646009FBE000,"Dead Cells",,playable,2021-09-22 22:18:49 +01004C500BD40000,"Dead End Job",nvdec,playable,2022-09-19 12:48:44 +01009CC00C97C000,"DEAD OR ALIVE Xtreme 3 Scarlet",,playable,2022-07-23 17:05:06 +0100A5000F7AA000,"DEAD OR SCHOOL",nvdec,playable,2022-09-06 12:04:09 +0100A24011F52000,"Dead Z Meat",UE4;services,ingame,2021-04-14 16:50:16 +010095A011A14000,"Deadly Days",,playable,2020-11-27 13:38:55 +0100BAC011928000,"Deadly Premonition 2: A Blessing In Disguise",,playable,2021-06-15 14:12:36 +0100EBE00F22E000,"Deadly Premonition Origins",32-bit;nvdec,playable,2024-03-25 12:47:46 +,"Dear Magi - Mahou Shounen Gakka -",,playable,2020-11-22 16:45:16 +01000D60126B6000,"Death and Taxes",,playable,2020-12-15 20:27:49 +010012B011AB2000,"Death Come True",nvdec,playable,2021-06-10 22:30:49 +0100F3B00CF32000,"Death Coming",crash,nothing,2022-02-06 07:43:03 +0100AEC013DDA000,"Death end re;Quest",,playable,2023-07-09 12:19:54 +0100423009358000,"Death Road to Canada",gpu;audio;32-bit;crash,nothing,2023-06-28 15:39:26 +010085900337E000,"Death Squared",,playable,2020-12-04 13:00:15 +0100A51013550000,"Death Tales",,playable,2020-12-17 10:55:52 +0100492011A8A000,"Death's Hangover",gpu,boots,2023-08-01 22:38:06 +01009120119B4000,"Deathsmiles I・II",,playable,2024-04-08 19:29:00 +010034F00BFC8000,"Debris Infinity",nvdec;online,playable,2021-05-28 12:14:39 +010027700FD2E000,"Decay of Logos",nvdec,playable,2022-09-13 14:42:13 +01002CC0062B8000,"DEEMO",,playable,2022-07-24 11:34:33 +01008B10132A2000,"DEEMO -Reborn-",nvdec;online-broken,playable,2022-10-17 15:18:11 +010026800FA88000,"Deep Diving Adventures",,playable,2022-09-22 16:43:37 +0100FAF009562000,"Deep Ones",services,nothing,2020-04-03 02:54:19 +0100C3E00D68E000,"Deep Sky Derelicts: Definitive Edition",,playable,2022-09-27 11:21:08 +01000A700F956000,"Deep Space Rush",,playable,2020-07-07 23:30:33 +0100961011BE6000,"DeepOne",services-horizon;Needs Update,nothing,2024-01-18 15:01:05 +01008BB00F824000,"Defenders of Ekron: Definitive Edition",,playable,2021-06-11 16:31:03 +0100CDE0136E6000,"Defentron",,playable,2022-10-17 15:47:56 +010039300BDB2000,"Defunct",,playable,2021-01-08 21:33:46 +010067900B9C4000,"Degrees of Separation",,playable,2021-01-10 13:40:04 +010071C00CBA4000,"Dei Gratia no Rashinban",crash,nothing,2021-07-13 02:25:32 +010092E00E7F4000,"Deleveled",slow,playable,2020-12-15 21:02:29 +010023800D64A000,"DELTARUNE Chapter 1&2",,playable,2023-01-22 04:47:44 +010038B01D2CA000,"Dementium: The Ward",crash,boots,2024-09-02 08:28:14 +0100AB600ACB4000,"Demetrios - The BIG Cynical Adventure",,playable,2021-06-04 12:01:01 +010099D00D1A4000,"Demolish & Build 2018",,playable,2021-06-13 15:27:26 +010084600F51C000,"Demon Pit",nvdec,playable,2022-09-19 13:35:15 +0100309016E7A000,"Demon Slayer -Kimetsu no Yaiba- The Hinokami Chronicles",UE4,playable,2024-08-08 04:51:49 +0100A2B00BD88000,"Demon's Crystals",crash;regression,nothing,2022-12-07 16:33:17 +0100E29013818000,"Demon's Rise - Lords of Chaos",,playable,2021-04-06 16:20:06 +0100C3501094E000,"Demon's Rise - War for the Deep",,playable,2020-07-29 12:26:27 +0100161011458000,"Demon's Tier+",,playable,2021-06-09 17:25:36 +0100BE800E6D8000,"DEMON'S TILT",,playable,2022-09-19 13:22:46 +010000401313A000,"Demong Hunter",,playable,2020-12-12 15:27:08 +0100BC501355A000,"Densha de go!! Hashirou Yamanote Sen",nvdec;UE4,playable,2023-11-09 07:47:58 +0100C9100FAE2000,"Depixtion",,playable,2020-10-10 18:52:37 +01000BF00B6BC000,"Deployment",slow;online-broken,playable,2022-10-17 16:23:59 +010023600C704000,"Deponia",nvdec,playable,2021-01-26 17:17:19 +0100ED700469A000,"Deru - The Art of Cooperation",,playable,2021-01-07 16:59:59 +0100D4600D0E4000,"Descenders",gpu,ingame,2020-12-10 15:22:36 +,"Desire remaster ver.",crash,boots,2021-01-17 02:34:37 +010069500DD86000,"Destiny Connect: Tick-Tock Travelers",UE4;gpu;nvdec,ingame,2020-12-16 12:20:36 +01008BB011ED6000,"Destrobots",,playable,2021-03-06 14:37:05 +01009E701356A000,"Destroy All Humans!",gpu;nvdec;UE4,ingame,2023-01-14 22:23:53 +010030600E65A000,"Detective Dolittle",,playable,2021-03-02 14:03:59 +01009C0009842000,"Detective Gallo",nvdec,playable,2022-07-24 11:51:04 +,"Detective Jinguji Saburo Prism of Eyes",,playable,2020-10-02 21:54:41 +010007500F27C000,"Detective Pikachu™ Returns",,playable,2023-10-07 10:24:59 +010031B00CF66000,"Devil Engine",,playable,2021-06-04 11:54:30 +01002F000E8F2000,"Devil Kingdom",,playable,2023-01-31 08:58:44 +0100E8000D5B8000,"Devil May Cry",nvdec,playable,2021-01-04 19:43:08 +01007CF00D5BA000,"Devil May Cry 2",nvdec,playable,2023-01-24 23:03:20 +01007B600D5BC000,"Devil May Cry 3 Special Edition",nvdec,playable,2024-07-08 12:33:23 +01003C900EFF6000,"Devil Slayer Raksasi",,playable,2022-10-26 19:42:32 +01009EA00A320000,"Devious Dungeon",,playable,2021-03-04 13:03:06 +01003F601025E000,"Dex",nvdec,playable,2020-08-12 16:48:12 +010044000CBCA000,"Dexteritrip",,playable,2021-01-06 12:51:12 +0100AFC00E06A000,"Dezatopia",online,playable,2021-06-15 21:06:11 +01001B300B9BE000,"Diablo III: Eternal Collection",online-broken;ldn-works,playable,2023-08-21 23:48:03 +0100726014352000,"Diablo® II: Resurrected™",gpu;nvdec,ingame,2023-08-18 18:42:47 +0100F73011456000,"Diabolic",,playable,2021-06-11 14:45:08 +010027400BD24000,"DIABOLIK LOVERS CHAOS LINEAGE",gpu;Needs Update,ingame,2023-06-08 02:20:44 +0100BBF011394000,"Dicey Dungeons",gpu;audio;slow,ingame,2023-08-02 20:30:12 +0100D98005E8C000,"Die for Valhalla!",,playable,2021-01-06 16:09:14 +0100BB900B5B4000,"Dies irae Amantes amentes For Nintendo Switch",32-bit;crash,nothing,2022-02-16 07:09:05 +0100A5A00DBB0000,"Dig Dog",gpu,ingame,2021-06-02 17:17:51 +01004DE011076000,"Digerati Indie Darling Bundle Vol. 3",,playable,2022-10-02 13:01:57 +010035D0121EC000,"Digerati Presents: The Dungeon Crawl Vol. 1",slow,ingame,2021-04-18 14:04:55 +010014E00DB56000,"Digimon Story Cyber Sleuth: Complete Edition",nvdec;opengl,playable,2022-09-13 15:02:37 +0100F00014254000,"Digimon World: Next Order",,playable,2023-05-09 20:41:06 +0100B6D00DA6E000,"Ding Dong XL",,playable,2020-07-14 16:13:19 +01002E4011924000,"Dininho Adventures",,playable,2020-10-03 17:25:51 +010027E0158A6000,"Dininho Space Adventure",,playable,2023-01-14 22:43:04 +0100A8A013DA4000,"Dirt Bike Insanity",,playable,2021-01-31 13:27:38 +01004CB01378A000,"Dirt Trackin Sprint Cars",nvdec;online-broken,playable,2022-10-17 16:34:56 +0100918014B02000,"Disagaea 6: Defiance of Destiny Demo",demo,playable,2022-10-26 20:02:04 +010020700E2A2000,"Disaster Report 4: Summer Memories",nvdec;UE4,playable,2022-09-27 19:41:31 +0100510004D2C000,"Disc Jam",UE4;ldn-untested;nvdec;online,playable,2021-04-08 16:40:35 +0100C81004780000,"Disco Dodgeball - REMIX",online,playable,2020-09-28 23:24:49 +01004B100AF18000,"Disgaea 1 Complete",,playable,2023-01-30 21:45:23 +0100A9800E9B4000,"Disgaea 4 Complete+",gpu;slow,playable,2020-02-18 10:54:28 +010068C00F324000,"Disgaea 4 Complete+ Demo",nvdec,playable,2022-09-13 15:21:59 +01005700031AE000,"Disgaea 5 Complete",nvdec,playable,2021-03-04 15:32:54 +0100ABC013136000,"Disgaea 6: Defiance of Destiny",deadlock,ingame,2023-04-15 00:50:32 +0100307011D80000,"Disgaea 6: Defiance of Destiny [ FG ] [ 魔界戦記ディスガイア6 ]",,playable,2021-06-08 13:20:33 +01005EE013888000,"Disgaea 6: Defiance of Destiny Demo [ 魔界戦記ディスガイア6 ]",gpu;demo,ingame,2022-12-06 15:27:59 +01000B70122A2000,"Disjunction",gpu;vulkan-backend-bug;opengl-backend-bug,ingame,2024-04-28 23:55:24 +0100A2F00EEFC000,"Disney Classic Games Collection",online-broken,playable,2022-09-13 15:44:17 +0100DA201EBF8000,"Disney Epic Mickey: Rebrushed",crash,ingame,2024-09-26 22:11:51 +0100F0401435E000,"Disney Speedstorm",services,boots,2023-11-27 02:15:32 +010012800EBAE000,"Disney TSUM TSUM FESTIVAL",crash,menus,2020-07-14 14:05:28 +01009740120FE000,"DISTRAINT 2",,playable,2020-09-03 16:08:12 +010075B004DD2000,"DISTRAINT: Deluxe Edition",,playable,2020-06-15 23:42:24 +010027400CDC6000,"Divinity: Original Sin 2 - Definitive Edition",services;crash;online-broken;regression,menus,2023-08-13 17:20:03 +01001770115C8000,"Dodo Peak",nvdec;UE4,playable,2022-10-04 16:13:05 +010077B0100DA000,"Dogurai",,playable,2020-10-04 02:40:16 +010048100D51A000,"Dokapon Up! Mugen no Roulette",gpu;Needs Update,menus,2022-12-08 19:39:10 +01005EE00BC78000,"Dokuro (ドクロ)",nvdec,playable,2020-12-17 14:47:09 +010007200AC0E000,"Don't Die, Mr Robot!",nvdec,playable,2022-09-02 18:34:38 +0100E470067A8000,"Don't Knock Twice",,playable,2024-05-08 22:37:58 +0100C4D00B608000,"Don't Sink",gpu,ingame,2021-02-26 15:41:11 +0100751007ADA000,"Don't Starve: Nintendo Switch Edition",nvdec,playable,2022-02-05 20:43:34 +010088B010DD2000,"Dongo Adventure",,playable,2022-10-04 16:22:26 +0100C1F0051B6000,"Donkey Kong Country™: Tropical Freeze",,playable,2024-08-05 16:46:10 +0100F2C00F060000,"Doodle Derby",,boots,2020-12-04 22:51:48 +0100416004C00000,"DOOM",gpu;slow;nvdec;online-broken,ingame,2024-09-23 15:40:07 +010018900DD00000,"DOOM (1993)",nvdec;online-broken,menus,2022-09-06 13:32:19 +01008CB01E52E000,"DOOM + DOOM II",opengl;ldn-untested;LAN,playable,2024-09-12 07:06:01 +010029D00E740000,"DOOM 3",crash,menus,2024-08-03 05:25:47 +01005D700E742000,"DOOM 64",nvdec;vulkan,playable,2020-10-13 23:47:28 +0100D4F00DD02000,"DOOM II (Classic)",nvdec;online,playable,2021-06-03 20:10:01 +0100B1A00D8CE000,"DOOM® Eternal",gpu;slow;nvdec;online-broken,ingame,2024-08-28 15:57:17 +01005ED00CD70000,"Door Kickers: Action Squad",online-broken;ldn-broken,playable,2022-09-13 16:28:53 +010073700E412000,"DORAEMON STORY OF SEASONS",nvdec,playable,2020-07-13 20:28:11 +0100F7300BD8E000,"Double Cross",,playable,2021-01-07 15:34:22 +0100B1500E9F2000,"Double Dragon & Kunio-kun: Retro Brawler Bundle",,playable,2020-09-01 12:48:46 +01001AD00E49A000,"DOUBLE DRAGON Ⅲ: The Sacred Stones",online,playable,2021-06-11 15:41:44 +01005B10132B2000,"Double Dragon Neon",gpu;audio;32-bit,ingame,2022-09-20 18:00:20 +01000F400C1A4000,"Double Kick Heroes",gpu,ingame,2020-10-03 14:33:59 +0100A5D00C7C0000,"Double Pug Switch",nvdec,playable,2022-10-10 10:59:35 +0100FC000EE10000,"Double Switch - 25th Anniversary Edition",nvdec,playable,2022-09-19 13:41:50 +0100B6600FE06000,"Down to Hell",gpu;nvdec,ingame,2022-09-19 14:01:26 +010093D00C726000,"Downwell",,playable,2021-04-25 20:05:24 +0100ED000D390000,"Dr Kawashima's Brain Training",services,ingame,2023-06-04 00:06:46 +01001B80099F6000,"Dracula's Legacy",nvdec,playable,2020-12-10 13:24:25 +0100566009238000,"DragoDino",gpu;nvdec,ingame,2020-08-03 20:49:16 +0100DBC00BD5A000,"Dragon Audit",crash,ingame,2021-05-16 14:24:46 +0100A250097F0000,"DRAGON BALL FighterZ",UE4;ldn-broken;nvdec;online,playable,2021-06-11 16:19:04 +010078D000F88000,"DRAGON BALL XENOVERSE 2 for Nintendo Switch",gpu;nvdec;online;ldn-untested,ingame,2022-07-24 12:31:01 +010051C0134F8000,"DRAGON BALL Z: KAKAROT + A NEW POWER AWAKENS SET",vulkan-backend-bug,playable,2024-08-28 00:03:50 +010099B00A2DC000,"Dragon Blaze for Nintendo Switch",32-bit,playable,2020-10-14 11:11:28 +010089700150E000,"Dragon Marked for Death: Advanced Attackers",ldn-untested;audout,playable,2022-03-10 06:44:34 +0100EFC00EFB2000,"DRAGON QUEST",gpu,boots,2021-11-09 03:31:32 +010008900705C000,"Dragon Quest Builders™",gpu;nvdec,ingame,2023-08-14 09:54:36 +010042000A986000,"DRAGON QUEST BUILDERS™ 2",,playable,2024-04-19 16:36:38 +0100CD3000BDC000,"Dragon Quest Heroes I + II (JP)",nvdec,playable,2021-04-08 14:27:16 +010062200EFB4000,"DRAGON QUEST II: Luminaries of the Legendary Line",,playable,2022-09-13 16:44:11 +01003E601E324000,"DRAGON QUEST III HD-2D Remake",vulkan-backend-bug;UE4;audout;mac-bug,ingame,2025-01-07 04:10:27 +010015600EFB6000,"DRAGON QUEST III: The Seeds of Salvation",gpu,boots,2021-11-09 03:38:34 +0100A77018EA0000,"DRAGON QUEST MONSTERS: The Dark Prince",,playable,2023-12-29 16:10:05 +0100217014266000,"Dragon Quest Treasures",gpu;UE4,ingame,2023-05-09 11:16:52 +0100E2E0152E4000,"Dragon Quest X Awakening Five Races Offline",nvdec;UE4,playable,2024-08-20 10:04:24 +01006C300E9F0000,"DRAGON QUEST® XI S: Echoes of an Elusive Age – Definitive Edition",UE4,playable,2021-11-27 12:27:11 +010032C00AC58000,"Dragon's Dogma: Dark Arisen",,playable,2022-07-24 12:58:33 +010027100C544000,"Dragon's Lair Trilogy",nvdec,playable,2021-01-13 22:12:07 +0100DA0006F50000,"DragonFangZ - The Rose & Dungeon of Time",,playable,2020-09-28 21:35:18 +0100F7800A434000,"Drawful 2",,ingame,2022-07-24 13:50:21 +0100B7E0102E4000,"Drawngeon: Dungeons of Ink and Paper",gpu,ingame,2022-09-19 15:41:25 +01008B20129F2000,"Dream",,playable,2020-12-15 19:55:07 +01000AA0093DC000,"Dream Alone",nvdec,playable,2021-01-27 19:41:50 +010034D00F330000,"DreamBall",UE4;crash;gpu,ingame,2020-08-05 14:45:25 +010058B00F3C0000,"Dreaming Canvas",UE4;gpu,ingame,2021-06-13 22:50:07 +0100D24013466000,"DREAMO",UE4,playable,2022-10-17 18:25:28 +0100ED200B6FC000,"DreamWorks Dragons Dawn of New Riders",nvdec,playable,2021-01-27 20:05:26 +0100236011B4C000,"DreamWorks Spirit Lucky’s Big Adventure",,playable,2022-10-27 13:30:52 +010058C00A916000,"Drone Fight",,playable,2022-07-24 14:31:56 +010052000A574000,"Drowning",,playable,2022-07-25 14:28:26 +0100652012F58000,"Drums",,playable,2020-12-17 17:21:51 +01005BC012C66000,"Duck Life Adventure",,playable,2022-10-10 11:27:03 +01007EF00CB88000,"Duke Nukem 3D: 20th Anniversary World Tour",32-bit;ldn-untested,playable,2022-08-19 22:22:40 +010068D0141F2000,"Dull Grey",,playable,2022-10-27 13:40:38 +0100926013600000,"Dungeon Nightmares 1 + 2 Collection",,playable,2022-10-17 18:54:22 +010034300F0E2000,"Dungeon of the Endless",nvdec,playable,2021-05-27 19:16:26 +0100E79009A94000,"Dungeon Stars",,playable,2021-01-18 14:28:37 +0100BE801360E000,"Dungeons & Bombs",,playable,2021-04-06 12:46:22 +0100EC30140B6000,"Dunk Lords",,playable,2024-06-26 00:07:26 +010011C00E636000,"Dusk Diver",crash;UE4,boots,2021-11-06 09:01:30 +0100B6E00A420000,"Dust: An Elysian Tail",,playable,2022-07-25 15:28:12 +0100D7E012F2E000,"Dustoff Z",,playable,2020-12-04 23:22:29 +01008C8012920000,"Dying Light: Definitive Edition",services-horizon,boots,2024-03-11 10:43:32 +01007DD00DFDE000,"Dyna Bomb",,playable,2020-06-07 13:26:55 +0100E9A00CB30000,"DYNASTY WARRIORS 8: Xtreme Legends Definitive Edition",nvdec,playable,2024-06-26 00:16:30 +010008900BC5A000,"DYSMANTLE",gpu,ingame,2024-07-15 16:24:12 +010054E01D878000,"EA SPORTS FC 25",crash,ingame,2024-09-25 21:07:50 +0100BDB01A0E6000,"EA SPORTS FC™ 24",,boots,2023-10-04 18:32:59 +01001C8016B4E000,"EA SPORTS FIFA 23 Nintendo Switch™ Legacy Edition",gpu;crash,ingame,2024-06-10 23:33:05 +01005DE00D05C000,"EA SPORTS™ FIFA 20 Nintendo Switch™ Legacy Edition",gpu;nvdec;online-broken;ldn-untested,ingame,2022-09-13 17:57:20 +010037400C7DA000,"Eagle Island Twist",,playable,2021-04-10 13:15:42 +0100B9E012992000,"Earth Defense Force World Brothers ( ま~るい地球が四角くなった!? デジボク地球防衛軍 )",UE4,playable,2022-12-07 12:59:16 +0100298014030000,"Earth Defense Force: World Brothers",UE4,playable,2022-10-27 14:13:31 +01009B7006C88000,"EARTH WARS",,playable,2021-06-05 11:18:33 +0100DFC00E472000,"Earthfall: Alien Horde",nvdec;UE4;ldn-untested,playable,2022-09-13 17:32:37 +01006E50042EA000,"EARTHLOCK",,playable,2021-06-05 11:51:02 +0100A2E00BB0C000,"EarthNight",,playable,2022-09-19 21:02:20 +0100DCE00B756000,"Earthworms",,playable,2022-07-25 16:28:55 +0100E3500BD84000,"Earthworms Demo",,playable,2021-01-05 16:57:11 +0100ECF01800C000,"Easy Come Easy Golf",online-broken;regression,playable,2024-04-04 16:15:00 +0100A9B009678000,"EAT BEAT DEADSPIKE-san",audio;Needs Update,playable,2022-12-02 19:25:29 +0100BCA016636000,"eBaseball Powerful Pro Yakyuu 2022",gpu;services-horizon;crash,nothing,2024-05-26 23:07:19 +01001F20100B8000,"Eclipse: Edge of Light",,playable,2020-08-11 23:06:29 +0100E0A0110F4000,"eCrossminton",,playable,2020-07-11 18:24:27 +0100ABE00DB4E000,"Edna & Harvey: Harvey's New Eyes",nvdec,playable,2021-01-26 14:36:08 +01004F000B716000,"Edna & Harvey: The Breakout – Anniversary Edition",crash;nvdec,ingame,2022-08-01 16:59:56 +01002550129F0000,"Effie",,playable,2022-10-27 14:36:39 +0100CC0010A46000,"Ego Protocol: Remastered",nvdec,playable,2020-12-16 20:16:35 +,"Eiga Sumikko Gurashi Tobidasu Ehon to Himitsu no Ko Game de Asobo Ehon no Sekai",,playable,2020-11-12 00:11:50 +01003AD013BD2000,"Eight Dragons",nvdec,playable,2022-10-27 14:47:28 +010020A01209C000,"El Hijo - A Wild West Tale",nvdec,playable,2021-04-19 17:44:08 +0100B5B00EF38000,"Elden: Path of the Forgotten",,playable,2020-12-15 00:33:19 +010068F012880000,"Eldrador® Creatures",slow,playable,2020-12-12 12:35:35 +010008E010012000,"ELEA: Paradigm Shift",UE4;crash,nothing,2020-10-04 19:07:43 +0100A6700AF10000,"Element",,playable,2022-07-25 17:17:16 +0100128003A24000,"Elliot Quest",,playable,2022-07-25 17:46:14 +010041A00FEC6000,"Ember",nvdec,playable,2022-09-19 21:16:11 +010071B012940000,"Embracelet",,playable,2020-12-04 23:45:00 +010017B0102A8000,"Emma: Lost in Memories",nvdec,playable,2021-01-28 16:19:10 +010068300E08E000,"Enchanted in the Moonlight - Kiryu, Chikage & Yukinojo -",gpu;nvdec,ingame,2022-11-20 16:18:45 +01007A4008486000,"Enchanting Mahjong Match",gpu,ingame,2020-04-17 22:01:31 +01004F3011F92000,"Endless Fables: Dark Moor",gpu;nvdec,ingame,2021-03-07 15:31:03 +010067B017588000,"Endless Ocean™ Luminous",services-horizon;crash,ingame,2024-05-30 02:05:57 +0100B8700BD14000,"Energy Cycle Edge",services,ingame,2021-11-30 05:02:31 +0100A8E0090B0000,"Energy Invasion",,playable,2021-01-14 21:32:26 +0100C6200A0AA000,"Enigmatis 2: The Mists of Ravenwood",crash;regression,boots,2021-06-06 15:15:30 +01009D60076F6000,"Enter the Gungeon",,playable,2022-07-25 20:28:33 +0100262009626000,"Epic Loon",nvdec,playable,2022-07-25 22:06:13 +01000FA0149B6000,"EQI",nvdec;UE4,playable,2022-10-27 16:42:32 +0100E95010058000,"EQQO",UE4;nvdec,playable,2021-06-13 23:10:51 +01000E8010A98000,"Escape First",,playable,2020-10-20 22:46:53 +010021201296A000,"Escape First 2",,playable,2021-03-24 11:59:41 +0100FEF00F0AA000,"Escape from Chernobyl",crash,boots,2022-09-19 21:36:58 +010023E013244000,"Escape from Life Inc",,playable,2021-04-19 17:34:09 +010092901203A000,"Escape From Tethys",,playable,2020-10-14 22:38:25 +0100B0F011A84000,"Escape Game Fort Boyard",,playable,2020-07-12 12:45:43 +0100F9600E746000,"ESP Ra.De. Psi",audio;slow,ingame,2024-03-07 15:05:08 +010073000FE18000,"Esports powerful pro yakyuu 2020",gpu;crash;Needs More Attention,ingame,2024-04-29 05:34:14 +01004F9012FD8000,"Estranged: The Departure",nvdec;UE4,playable,2022-10-24 10:37:58 +0100CB900B498000,"Eternum Ex",,playable,2021-01-13 20:28:32 +010092501EB2C000,"Europa (Demo)",gpu;crash;UE4,ingame,2024-04-23 10:47:12 +01007BE0160D6000,"EVE ghost enemies",gpu,ingame,2023-01-14 03:13:30 +010095E01581C000,"even if TEMPEST",gpu,ingame,2023-06-22 23:50:25 +010072C010002000,"Event Horizon: Space Defense",,playable,2020-07-31 20:31:24 +0100DCF0093EC000,"Everspace™ - Stellar Edition",UE4,playable,2022-08-14 01:16:24 +01006F900BF8E000,"Everybody 1-2-Switch!™",services;deadlock,nothing,2023-07-01 05:52:55 +010080600B53E000,"Evil Defenders",nvdec,playable,2020-09-28 17:11:00 +01006A800FA22000,"Evolution Board Game",online,playable,2021-01-20 22:37:56 +0100F2D00C7DE000,"Exception",online-broken,playable,2022-09-20 12:47:10 +0100DD30110CC000,"Exit the Gungeon",,playable,2022-09-22 17:04:43 +0100A82013976000,"Exodemon",,playable,2022-10-27 20:17:52 +0100FA800A1F4000,"EXORDER",nvdec,playable,2021-04-15 14:17:20 +01009B7010B42000,"Explosive Jake",crash,boots,2021-11-03 07:48:32 +0100EFE00A3C2000,"Eyes: The Horror Game",,playable,2021-01-20 21:59:46 +0100E3D0103CE000,"Fable of Fairy Stones",,playable,2021-05-05 21:04:54 +01004200189F4000,"Factorio",deadlock,boots,2024-06-11 19:26:16 +010073F0189B6000,"Fae Farm",,playable,2024-08-25 15:12:12 +010069100DB08000,"Faeria",nvdec;online-broken,menus,2022-10-04 16:44:41 +01008A6009758000,"Fairune Collection",,playable,2021-06-06 15:29:56 +0100F6D00B8F2000,"Fairy Fencer F™: Advent Dark Force",32-bit;crash;nvdec,ingame,2023-04-16 03:53:48 +0100CF900FA3E000,"FAIRY TAIL",nvdec,playable,2022-10-04 23:00:32 +01005A600BE60000,"Fall of Light: Darkest Edition",slow;nvdec,ingame,2024-07-24 04:19:26 +0100AA801258C000,"Fallen Legion Revenants",crash,menus,2021-11-25 08:53:20 +0100D670126F6000,"Famicom Detective Club™: The Girl Who Stands Behind",nvdec,playable,2022-10-27 20:41:40 +010033F0126F4000,"Famicom Detective Club™: The Missing Heir",nvdec,playable,2022-10-27 20:56:23 +010060200FC44000,"Family Feud®",online-broken,playable,2022-10-10 11:42:21 +0100034012606000,"Family Mysteries: Poisonous Promises",audio;crash,menus,2021-11-26 12:35:06 +010017C012726000,"Fantasy Friends",,playable,2022-10-17 19:42:39 +0100767008502000,"FANTASY HERO ~unsigned legacy~",,playable,2022-07-26 12:28:52 +0100944003820000,"Fantasy Strike",online,playable,2021-02-27 01:59:18 +01000E2012F6E000,"Fantasy Tavern Sextet -Vol.1 New World Days-",gpu;crash;Needs Update,ingame,2022-12-05 16:48:00 +01005C10136CA000,"Fantasy Tavern Sextet -Vol.2 Adventurer's Days-",gpu;slow;crash,ingame,2021-11-06 02:57:29 +010022700E7D6000,"FAR: Lone Sails",,playable,2022-09-06 16:33:05 +0100C9E00FD62000,"Farabel",,playable,2020-08-03 17:47:28 +,"Farm Expert 2019 for Nintendo Switch",,playable,2020-07-09 21:42:57 +01000E400ED98000,"Farm Mystery",nvdec,playable,2022-09-06 16:46:47 +010086B00BB50000,"Farm Together",,playable,2021-01-19 20:01:19 +0100EB600E914000,"Farming Simulator 20",nvdec,playable,2021-06-13 10:52:44 +0100D04004176000,"Farming Simulator Nintendo Switch Edition",nvdec,playable,2021-01-19 14:46:44 +0100E99019B3A000,"Fashion Dreamer",,playable,2023-11-12 06:42:52 +01009510001CA000,"FAST RMX",slow;crash;ldn-partial,ingame,2024-06-22 20:48:58 +0100BEB015604000,"FATAL FRAME: Maiden of Black Water",,playable,2023-07-05 16:01:40 +0100DAE019110000,"FATAL FRAME: Mask of the Lunar Eclipse",Incomplete,playable,2024-04-11 06:01:30 +010051400B17A000,"Fate/EXTELLA LINK",ldn-untested;nvdec,playable,2021-01-27 00:45:50 +010053E002EA2000,"Fate/EXTELLA: The Umbral Star",gpu;nvdec;online-broken;vulkan-backend-bug;opengl-backend-bug,ingame,2023-04-24 23:37:55 +0100F6200B7D4000,"fault - milestone one",nvdec,playable,2021-03-24 10:41:49 +01005AC0068F6000,"Fear Effect Sedna",nvdec,playable,2021-01-19 13:10:33 +0100F5501CE12000,"Fearmonium",crash,boots,2024-03-06 11:26:11 +0100E4300CB3E000,"Feather",,playable,2021-06-03 14:11:27 +010003B00D3A2000,"Felix The Reaper",nvdec,playable,2020-10-20 23:43:03 +0100AA3009738000,"Feudal Alloy",,playable,2021-01-14 08:48:14 +01008D900B984000,"FEZ",gpu,ingame,2021-04-18 17:10:16 +01007510040E8000,"FIA European Truck Racing Championship",nvdec,playable,2022-09-06 17:51:59 +0100F7B002340000,"FIFA 18",gpu;online-broken;ldn-untested,ingame,2022-07-26 12:43:59 +0100FFA0093E8000,"FIFA 19",gpu;nvdec;online-broken;ldn-untested,ingame,2022-07-26 13:07:07 +01000A001171A000,"FIFA 21 Nintendo Switch™ Legacy Edition",gpu;online-broken,ingame,2023-12-11 22:10:19 +0100216014472000,"FIFA 22 Nintendo Switch™ Legacy Edition",gpu,ingame,2024-03-02 14:13:48 +01006980127F0000,"Fight Crab",online-broken;ldn-untested,playable,2022-10-05 10:24:04 +010047E010B3E000,"Fight of Animals",online,playable,2020-10-15 15:08:28 +0100C7D00E730000,"Fight'N Rage",,playable,2020-06-16 23:35:19 +0100D02014048000,"FIGHTING EX LAYER ANOTHER DASH",online-broken;UE4,playable,2024-04-07 10:22:33 +0100118009C68000,"Figment",nvdec,playable,2021-01-27 19:36:05 +010095600AA36000,"Fill-a-Pix: Phil's Epic Adventure",,playable,2020-12-22 13:48:22 +0100C3A00BB76000,"Fimbul",nvdec,playable,2022-07-26 13:31:47 +0100C8200E942000,"Fin and the Ancient Mystery",nvdec,playable,2020-12-17 16:40:39 +01000EA014150000,"FINAL FANTASY",crash,nothing,2024-09-05 20:55:30 +01006B7014156000,"FINAL FANTASY II",crash,nothing,2024-04-13 19:18:04 +01006F000B056000,"FINAL FANTASY IX",audout;nvdec,playable,2021-06-05 11:35:00 +0100AA201415C000,"FINAL FANTASY V",,playable,2023-04-26 01:11:55 +0100A5B00BDC6000,"FINAL FANTASY VII",,playable,2022-12-09 17:03:30 +01008B900DC0A000,"FINAL FANTASY VIII Remastered",nvdec,playable,2023-02-15 10:57:48 +0100BC300CB48000,"FINAL FANTASY X/X-2 HD Remaster",gpu,ingame,2022-08-16 20:29:26 +0100EB100AB42000,"FINAL FANTASY XII THE ZODIAC AGE",opengl;vulkan-backend-bug,playable,2024-08-11 07:01:54 +010068F00AA78000,"FINAL FANTASY XV POCKET EDITION HD",,playable,2021-01-05 17:52:08 +0100CE4010AAC000,"FINAL FANTASY® CRYSTAL CHRONICLES™ Remastered Edition",,playable,2023-04-02 23:39:12 +01001BA00AE4E000,"Final Light, The Prison",,playable,2020-07-31 21:48:44 +0100FF100FB68000,"Finding Teddy 2 : Definitive Edition",gpu,ingame,2024-04-19 16:51:33 +0100F4E013AAE000,"Fire & Water",,playable,2020-12-15 15:43:20 +0100F15003E64000,"Fire Emblem Warriors",nvdec,playable,2023-05-10 01:53:10 +010071F0143EA000,"Fire Emblem Warriors: Three Hopes",gpu;nvdec,ingame,2024-05-01 07:07:42 +0100A6301214E000,"Fire Emblem™ Engage",amd-vendor-bug;mac-bug,playable,2024-09-01 23:37:26 +0100A12011CC8000,"Fire Emblem™: Shadow Dragon & the Blade of Light",,playable,2022-10-17 19:49:14 +010055D009F78000,"Fire Emblem™: Three Houses",online-broken,playable,2024-09-14 23:53:50 +010025C014798000,"Fire: Ungh’s Quest",nvdec,playable,2022-10-27 21:41:26 +0100434003C58000,"Firefighters – The Simulation",,playable,2021-02-19 13:32:05 +0100BB1009E50000,"Firefighters: Airport Fire Department",,playable,2021-02-15 19:17:00 +0100AC300919A000,"Firewatch",,playable,2021-06-03 10:56:38 +0100BA9012B36000,"Firework",,playable,2020-12-04 20:20:09 +0100DEB00ACE2000,"Fishing Star World Tour",,playable,2022-09-13 19:08:51 +010069800D292000,"Fishing Universe Simulator",,playable,2021-04-15 14:00:43 +0100807008868000,"Fit Boxing",,playable,2022-07-26 19:24:55 +0100E7300AAD4000,"Fitness Boxing",,playable,2021-04-14 20:33:33 +0100073011382000,"Fitness Boxing 2: Rhythm & Exercise",crash,ingame,2021-04-14 20:40:48 +0100C7E0134BE000,"Five Dates",nvdec,playable,2020-12-11 15:17:11 +0100B6200D8D2000,"Five Nights at Freddy's",,playable,2022-09-13 19:26:36 +01004EB00E43A000,"Five Nights at Freddy's 2",,playable,2023-02-08 15:48:24 +010056100E43C000,"Five Nights at Freddy's 3",,playable,2022-09-13 20:58:07 +010083800E43E000,"Five Nights at Freddy's 4",,playable,2023-08-19 07:28:03 +0100F7901118C000,"Five Nights at Freddy's: Help Wanted",UE4,playable,2022-09-29 12:40:09 +01009060193C4000,"Five Nights at Freddy's: Security Breach",gpu;crash;mac-bug,ingame,2023-04-23 22:33:28 +01003B200E440000,"Five Nights at Freddy's: Sister Location",,playable,2023-10-06 09:00:58 +010038200E088000,"Flan",crash;regression,ingame,2021-11-17 07:39:28 +01000A0004C50000,"FLASHBACK™",nvdec,playable,2020-05-14 13:57:29 +0100C53004C52000,"Flat Heroes",gpu,ingame,2022-07-26 19:37:37 +0100B54012798000,"Flatland: Prologue",,playable,2020-12-11 20:41:12 +0100307004B4C000,"Flinthook",online,playable,2021-03-25 20:42:29 +010095A004040000,"Flip Wars",services;ldn-untested,ingame,2022-05-02 15:39:18 +01009FB002B2E000,"Flipping Death",,playable,2021-02-17 16:12:30 +0100D1700ACFC000,"Flood of Light",,playable,2020-05-15 14:15:25 +0100DF9005E7A000,"Floor Kids",nvdec,playable,2024-08-18 19:38:49 +010040700E8FC000,"Florence",,playable,2020-09-05 01:22:30 +0100F5D00CD58000,"Flowlines VS",,playable,2020-12-17 17:01:53 +010039C00E2CE000,"Flux8",nvdec,playable,2020-06-19 20:55:11 +0100EDA00BBBE000,"Fly O'Clock",,playable,2020-05-17 13:39:52 +0100FC300F4A4000,"Fly Punch Boom!",online,playable,2020-06-21 12:06:11 +0100419013A8A000,"Flying Hero X",crash,menus,2021-11-17 07:46:58 +010056000BA1C000,"Fobia",,playable,2020-12-14 21:05:23 +0100F3900D0F0000,"Food Truck Tycoon",,playable,2022-10-17 20:15:55 +01007CF013152000,"Football Manager 2021 Touch",gpu,ingame,2022-10-17 20:08:23 +0100EDC01990E000,"Football Manager 2023 Touch",gpu,ingame,2023-08-01 03:40:53 +010097F0099B4000,"Football Manager Touch 2018",,playable,2022-07-26 20:17:56 +010069400B6BE000,"For The King",nvdec,playable,2021-02-15 18:51:44 +01001D200BCC4000,"Forager",crash,menus,2021-11-24 07:10:17 +0100AE001256E000,"FORECLOSED",crash;Needs More Attention;nvdec,ingame,2022-12-06 14:41:12 +010044B00E70A000,"Foregone",deadlock,ingame,2020-12-17 15:26:53 +010059E00B93C000,"Forgotton Anne",nvdec,playable,2021-02-15 18:28:07 +01008EA00405C000,"forma.8",nvdec,playable,2020-11-15 01:04:32 +010025400AECE000,"Fortnite",services-horizon,nothing,2024-04-06 18:23:25 +0100AAE01E39C000,"Fortress Challenge - Fort Boyard",nvdec;slow,playable,2020-05-15 13:22:53 +0100CA500756C000,"Fossil Hunters",nvdec,playable,2022-07-27 11:37:20 +01008A100A028000,"FOX n FORESTS",,playable,2021-02-16 14:27:49 +0100D2501001A000,"FoxyLand",,playable,2020-07-29 20:55:20 +01000AC010024000,"FoxyLand 2",,playable,2020-08-06 14:41:30 +01004200099F2000,"Fractured Minds",,playable,2022-09-13 21:21:40 +0100F1A00A5DC000,"FRAMED Collection",nvdec,playable,2022-07-27 11:48:15 +0100AC40108D8000,"Fred3ric",,playable,2021-04-15 13:30:31 +01000490067AE000,"Frederic 2: Evil Strikes Back",,playable,2020-07-23 16:44:37 +01005B1006988000,"Frederic: Resurrection of Music",nvdec,playable,2020-07-23 16:59:53 +010082B00EE50000,"Freedom Finger",nvdec,playable,2021-06-09 19:31:30 +0100EB800B614000,"Freedom Planet",,playable,2020-05-14 12:23:06 +010003F00BD48000,"Friday the 13th: Killer Puzzle",,playable,2021-01-28 01:33:38 +010092A00C4B6000,"Friday the 13th: The Game Ultimate Slasher Edition",nvdec;online-broken;UE4,playable,2022-09-06 17:33:27 +0100F200178F4000,"FRONT MISSION 1st: Remake",,playable,2023-06-09 07:44:24 +0100861012474000,"Frontline Zed",,playable,2020-10-03 12:55:59 +0100B5300B49A000,"Frost",,playable,2022-07-27 12:00:36 +010038A007AA4000,"FruitFall Crush",,playable,2020-10-20 11:33:33 +01008D800AE4A000,"FullBlast",,playable,2020-05-19 10:34:13 +010002F00CC20000,"FUN! FUN! Animal Park",,playable,2021-04-14 17:08:52 +0100A8F00B3D0000,"FunBox Party",,playable,2020-05-15 12:07:02 +0100E7B00BF24000,"Funghi Explosion",,playable,2020-11-23 14:17:41 +01008E10130F8000,"Funimation",gpu,boots,2021-04-08 13:08:17 +0100EA501033C000,"Funny Bunny Adventures",,playable,2020-08-05 13:46:56 +01000EC00AF98000,"Furi",,playable,2022-07-27 12:21:20 +0100A6B00D4EC000,"Furwind",,playable,2021-02-19 19:44:08 +0100ECE00C0C4000,"Fury Unleashed",crash;services,ingame,2020-10-18 11:52:40 +010070000ED9E000,"Fury Unleashed Demo",,playable,2020-10-08 20:09:21 +0100E1F013674000,"FUSER™",nvdec;UE4,playable,2022-10-17 20:58:32 +,"Fushigi no Gensokyo Lotus Labyrinth",Needs Update;audio;gpu;nvdec,ingame,2021-01-20 15:30:02 +01003C300B274000,"Futari de! Nyanko Daisensou",,playable,2024-01-05 22:26:52 +010055801134E000,"FUZE Player",online-broken;vulkan-backend-bug,ingame,2022-10-18 12:23:53 +0100EAD007E98000,"FUZE4 Nintendo Switch",vulkan-backend-bug,playable,2022-09-06 19:25:01 +010067600F1A0000,"FuzzBall",crash,nothing,2021-03-29 20:13:21 +,"G-MODE Archives 06 The strongest ever Julia Miyamoto",,playable,2020-10-15 13:06:26 +0100EB10108EA000,"G.I. Joe: Operation Blackout",UE4;crash,boots,2020-11-21 12:37:44 +010048600B14E000,"Gal Metal",,playable,2022-07-27 20:57:48 +010024700901A000,"Gal*Gun 2",nvdec;UE4,playable,2022-07-27 12:45:37 +0100047013378000,"Gal*Gun Returns [ ぎゃる☆がん りたーんず ]",nvdec,playable,2022-10-17 23:50:46 +0100C9800A454000,"GALAK-Z: Variant S",online-broken,boots,2022-07-29 11:59:12 +0100C62011050000,"Game Boy™ – Nintendo Switch Online",,playable,2023-03-21 12:43:48 +010012F017576000,"Game Boy™ Advance – Nintendo Switch Online",,playable,2023-02-16 20:38:15 +0100FA5010788000,"Game Builder Garage™",,ingame,2024-04-20 21:46:22 +0100AF700BCD2000,"Game Dev Story",,playable,2020-05-20 00:00:38 +01006BD00F8C0000,"Game Doraemon Nobita no Shin Kyoryu",gpu,ingame,2023-02-27 02:03:28 +01000FA00A4E4000,"Garage",,playable,2020-05-19 20:59:53 +010061E00E8BE000,"Garfield Kart Furious Racing",ldn-works;loader-allocator,playable,2022-09-13 21:40:25 +0100EA001069E000,"Gates Of Hell",slow,playable,2020-10-22 12:44:26 +010025500C098000,"Gato Roboto",,playable,2023-01-20 15:04:11 +010065E003FD8000,"Gear.Club Unlimited",,playable,2021-06-08 13:03:19 +010072900AFF0000,"Gear.Club Unlimited 2",nvdec;online-broken,playable,2022-07-29 12:52:16 +01000F000D9F0000,"Geki Yaba Runner Anniversary Edition",,playable,2021-02-19 18:59:07 +010052A00942A000,"Gekido Kintaro's Revenge",,playable,2020-10-27 12:44:05 +01009D000AF3A000,"Gelly Break Deluxe",UE4,playable,2021-03-03 16:04:02 +01001A4008192000,"Gem Smashers",nvdec,playable,2021-06-08 13:40:51 +010014901144C000,"Genetic Disaster",,playable,2020-06-19 21:41:12 +0100D7E0110B2000,"Genkai Tokki Moero Crystal H- 極限凸起 萌情水晶 H - 한계돌파 모에로크리스탈 H",32-bit,playable,2022-06-06 00:42:09 +010000300C79C000,"GensokyoDefenders",online-broken;UE4,playable,2022-07-29 13:48:12 +0100AC600EB4C000,"Gensou Rougoku no Kaleidscope",crash,menus,2021-11-24 08:45:07 +01007FC012FD4000,"Georifters",UE4;crash;nvdec,menus,2020-12-04 22:30:50 +010058F010296000,"GERRRMS",,playable,2020-08-15 11:32:52 +01006F30129F8000,"Get 10 quest",,playable,2020-08-03 12:48:39 +0100B5B00E77C000,"Get Over Here",,playable,2022-10-28 11:53:52 +0100EEB005ACC000,"Ghost 1.0",,playable,2021-02-19 20:48:47 +010063200C588000,"Ghost Blade HD",online-broken,playable,2022-09-13 21:51:21 +010057500E744000,"Ghost Grab 3000",,playable,2020-07-11 18:09:52 +010094C00E180000,"Ghost Parade",,playable,2020-07-14 00:43:54 +01004B301108C000,"Ghost Sweeper",,playable,2022-10-10 12:45:36 +010029B018432000,"Ghost Trick: Phantom Detective",,playable,2023-08-23 14:50:12 +010008A00F632000,"Ghostbusters: The Video Game Remastered",nvdec,playable,2021-09-17 07:26:57 +010090F012916000,"Ghostrunner",UE4;crash;gpu;nvdec,ingame,2020-12-17 13:01:59 +0100D6200F2BA000,"Ghosts 'n Goblins Resurrection",,playable,2023-05-09 12:40:41 +01003830092B8000,"Giana Sisters: Twisted Dreams - Owltimate Edition",,playable,2022-07-29 14:06:12 +0100D95012C0A000,"Gibbous - A Cthulhu Adventure",nvdec,playable,2022-10-10 12:57:17 +010045F00BFC2000,"GIGA WRECKER ALT.",,playable,2022-07-29 14:13:54 +01002C400E526000,"Gigantosaurus The Game",UE4,playable,2022-09-27 21:20:00 +0100C50007070000,"Ginger: Beyond the Crystal",,playable,2021-02-17 16:27:00 +01006BA013990000,"Girabox",,playable,2020-12-12 13:55:05 +01007E90116CE000,"Giraffe and Annika",UE4;crash,ingame,2020-12-04 22:41:57 +01006DD00CC96000,"Girls und Panzer Dream Tank Match DX",ldn-untested,playable,2022-09-12 16:07:11 +01005CB009E20000,"Glaive: Brick Breaker",,playable,2020-05-20 12:15:59 +0100B6F01227C000,"Glitch's Trip",,playable,2020-12-17 16:00:57 +0100EB501130E000,"Glyph",,playable,2021-02-08 19:56:51 +0100EB8011B0C000,"Gnome More War",,playable,2020-12-17 16:33:07 +010008D00CCEC000,"Gnomes Garden 2",,playable,2021-02-19 20:08:13 +010036C00D0D6000,"Gnomes Garden: Lost King",deadlock,menus,2021-11-18 11:14:03 +01008EF013A7C000,"Gnosia",,playable,2021-04-05 17:20:30 +01000C800FADC000,"Go All Out!",online-broken,playable,2022-09-21 19:16:34 +010055A0161F4000,"Go Rally",gpu,ingame,2023-08-16 21:18:23 +0100C1800A9B6000,"Go Vacation™",nvdec;ldn-works,playable,2024-05-13 19:28:53 +0100E6300F854000,"Go! Fish Go!",,playable,2020-07-27 13:52:28 +010032600C8CE000,"Goat Simulator: The GOATY",32-bit,playable,2022-07-29 21:02:33 +01001C700873E000,"GOD EATER 3",gpu;nvdec,ingame,2022-07-29 21:33:21 +0100F3D00B032000,"GOD WARS The Complete Legend",nvdec,playable,2020-05-19 14:37:50 +0100CFA0111C8000,"Gods Will Fall",,playable,2021-02-08 16:49:59 +0100D82009024000,"Goetia",,playable,2020-05-19 12:55:39 +01004D501113C000,"Going Under",deadlock;nvdec,ingame,2020-12-11 22:29:46 +0100126006EF0000,"GOKEN",,playable,2020-08-05 20:22:38 +010013800F0A4000,"Golazo!",,playable,2022-09-13 21:58:37 +01003C000D84C000,"Golem Gates",crash;nvdec;online-broken;UE4,ingame,2022-07-30 11:35:11 +0100779004172000,"Golf Story",,playable,2020-05-14 14:56:17 +01006FB00EBE0000,"Golf With Your Friends",online-broken,playable,2022-09-29 12:55:11 +0100EEC00AA6E000,"Gone Home",,playable,2022-08-01 11:14:20 +01007C2002B3C000,"GoNNER",,playable,2020-05-19 12:05:02 +0100B0500FE4E000,"Good Job!™",,playable,2021-03-02 13:15:55 +01003AD0123A2000,"Good Night, Knight",crash,nothing,2023-07-30 23:38:13 +0100F610122F6000,"Good Pizza, Great Pizza",,playable,2020-12-04 22:59:18 +010014C0100C6000,"Goosebumps Dead of Night",gpu;nvdec,ingame,2020-12-10 20:02:16 +0100B8000B190000,"Goosebumps The Game",,playable,2020-05-19 11:56:52 +0100F2A005C98000,"Gorogoa",,playable,2022-08-01 11:55:08 +01000C7003FE8000,"GORSD",,playable,2020-12-04 22:15:21 +0100E8D007E16000,"Gotcha Racing 2nd",,playable,2020-07-23 17:14:04 +01001010121DE000,"Gothic Murder: Adventure That Changes Destiny",deadlock;crash,ingame,2022-09-30 23:16:53 +01003FF009E60000,"Grab the Bottle",,playable,2020-07-14 17:06:41 +01004D10020F2000,"Graceful Explosion Machine",,playable,2020-05-19 20:36:55 +010038D00EC88000,"Grand Brix Shooter",slow,playable,2020-06-24 13:23:54 +010038100D436000,"Grand Guilds",UE4;nvdec,playable,2021-04-26 12:49:05 +0100BE600D07A000,"Grand Prix Story",,playable,2022-08-01 12:42:23 +05B1D2ABD3D30000,"Grand Theft Auto 3",services;crash;homebrew,nothing,2023-05-01 22:01:58 +0100E0600BBC8000,"GRANDIA HD Collection",crash,boots,2024-08-19 04:29:48 +010028200E132000,"Grass Cutter - Mutated Lawns",slow,ingame,2020-05-19 18:27:42 +010074E0099FA000,"Grave Danger",,playable,2020-05-18 17:41:28 +010054A013E0C000,"GraviFire",,playable,2021-04-05 17:13:32 +01002C2011828000,"Gravity Rider Zero",gpu;vulkan-backend-bug,ingame,2022-09-29 13:56:13 +0100BD800DFA6000,"Greedroid",,playable,2020-12-14 11:14:32 +010068D00AE68000,"GREEN",,playable,2022-08-01 12:54:15 +0100CBB0070EE000,"Green Game: TimeSwapper",nvdec,playable,2021-02-19 18:51:55 +0100DFE00F002000,"GREEN The Life Algorithm",,playable,2022-09-27 21:37:13 +0100DA7013792000,"Grey Skies: A War of the Worlds Story",UE4,playable,2022-10-24 11:13:59 +010031200981C000,"Grid Mania",,playable,2020-05-19 14:11:05 +0100197008B52000,"GRIDD: Retroenhanced",,playable,2020-05-20 11:32:40 +0100DC800A602000,"GRID™ Autosport",nvdec;online-broken;ldn-untested,playable,2023-03-02 20:14:45 +0100B7900B024000,"Grim Fandango Remastered",nvdec,playable,2022-08-01 13:55:58 +010078E012D80000,"Grim Legends 2: Song of the Dark Swan",nvdec,playable,2022-10-18 12:58:45 +010009F011F90000,"Grim Legends: The Forsaken Bride",nvdec,playable,2022-10-18 13:14:06 +01001E200F2F8000,"Grimshade",,playable,2022-10-02 12:44:20 +0100538012496000,"Grindstone",,playable,2023-02-08 15:54:06 +0100459009A2A000,"GRIP",nvdec;online-broken;UE4,playable,2022-08-01 15:00:22 +0100E1700C31C000,"GRIS",nvdec,playable,2021-06-03 13:33:44 +01009D7011B02000,"GRISAIA PHANTOM TRIGGER 01&02",nvdec,playable,2022-12-04 21:16:06 +01005250123B8000,"GRISAIA PHANTOM TRIGGER 03",audout,playable,2021-01-31 12:30:47 +0100D970123BA000,"GRISAIA PHANTOM TRIGGER 04",audout,playable,2021-01-31 12:40:37 +01002330123BC000,"GRISAIA PHANTOM TRIGGER 05",audout;nvdec,playable,2021-01-31 12:49:59 +0100CAF013AE6000,"GRISAIA PHANTOM TRIGGER 5.5",audout;nvdec,playable,2021-01-31 12:59:44 +010091300FFA0000,"Grizzland",gpu,ingame,2024-07-11 16:28:34 +0100EB500D92E000,"GROOVE COASTER WAI WAI PARTY!!!!",nvdec;ldn-broken,playable,2021-11-06 14:54:27 +01007E100456C000,"Guacamelee! 2",,playable,2020-05-15 14:56:59 +0100BAE00B470000,"Guacamelee! Super Turbo Championship Edition",,playable,2020-05-13 23:44:18 +010089900C9FA000,"Guess the Character",,playable,2020-05-20 13:14:19 +01005DC00D80C000,"Guess the word",,playable,2020-07-26 21:34:25 +01006F80082E4000,"GUILTY GEAR XX ACCENT CORE PLUS R",nvdec,playable,2021-01-13 09:28:33 +01003C6008940000,"GUNBIRD for Nintendo Switch",32-bit,playable,2021-06-04 19:16:01 +0100BCB00AE98000,"GUNBIRD2 for Nintendo Switch",,playable,2020-10-10 14:41:16 +,"Gunka o haita neko",gpu;nvdec,ingame,2020-08-25 12:37:56 +010061000D318000,"Gunman Clive HD Collection",,playable,2020-10-09 12:17:35 +01006D4003BCE000,"Guns, Gore and Cannoli 2",online,playable,2021-01-06 18:43:59 +01008C800E654000,"Gunvolt Chronicles Luminous Avenger iX - Retail Version",,playable,2020-06-16 22:47:07 +0100763015C2E000,"Gunvolt Chronicles: Luminous Avenger iX 2",crash;Needs Update,nothing,2022-04-29 15:34:34 +01002C8018554000,"Gurimugurimoa OnceMore Demo",,playable,2022-07-29 22:07:31 +0100AC601DCA8000,"GYLT",crash,ingame,2024-03-18 20:16:51 +0100822012D76000,"HAAK",gpu,ingame,2023-02-19 14:31:05 +01007E100EFA8000,"Habroxia",,playable,2020-06-16 23:04:42 +0100535012974000,"Hades",vulkan,playable,2022-10-05 10:45:21 +0100618010D76000,"Hakoniwa Explorer Plus",slow,ingame,2021-02-19 16:56:19 +0100E0D00C336000,"Halloween Pinball",,playable,2021-01-12 16:00:46 +01006FF014152000,"Hamidashi Creative",gpu,ingame,2021-12-19 15:30:51 +01003B9007E86000,"Hammerwatch",online-broken;ldn-broken,playable,2022-08-01 16:28:46 +01003620068EA000,"Hand of Fate 2",,playable,2022-08-01 15:44:16 +0100973011358000,"Hang The Kings",,playable,2020-07-28 22:56:59 +010066C018E50000,"Happy Animals Mini Golf",gpu,ingame,2022-12-04 19:24:28 +0100ECE00D13E000,"Hard West",regression,nothing,2022-02-09 07:45:56 +0100D55011D60000,"Hardcore Maze Cube",,playable,2020-12-04 20:01:24 +01002F0011DD4000,"HARDCORE MECHA",slow,playable,2020-11-01 15:06:33 +01000C90117FA000,"HardCube",,playable,2021-05-05 18:33:03 +0100BB600C096000,"Hardway Party",,playable,2020-07-26 12:35:07 +0100D0500AD30000,"Harvest Life",,playable,2022-08-01 16:51:45 +010016B010FDE000,"Harvest Moon®: One World",,playable,2023-05-26 09:17:19 +0100A280187BC000,"Harvestella",UE4;vulkan-backend-bug;mac-bug,playable,2024-02-13 07:04:11 +0100E29001298000,"Has-Been Heroes",,playable,2021-01-13 13:31:48 +01001CC00FA1A000,"Hatsune Miku: Project DIVA Mega Mix",audio;online-broken,playable,2024-01-07 23:12:57 +01009E6014F18000,"Haunted Dawn: The Zombie Apocalypse",,playable,2022-10-28 12:31:51 +010023F008204000,"Haunted Dungeons:Hyakki Castle",,playable,2020-08-12 14:21:48 +0100E2600DBAA000,"Haven",,playable,2021-03-24 11:52:41 +0100EA900FB2C000,"Hayfever",loader-allocator,playable,2022-09-22 17:35:41 +0100EFE00E1DC000,"Headliner: NoviNews",online,playable,2021-03-01 11:36:00 +0100A8200C372000,"Headsnatchers",UE4;crash,menus,2020-07-14 13:29:14 +010067400EA5C000,"Headspun",,playable,2020-07-31 19:46:47 +0100D12008EE4000,"Heart&Slash",,playable,2021-01-13 20:56:32 +010059100D928000,"Heaven Dust",,playable,2020-05-17 14:02:41 +0100FD901000C000,"Heaven's Vault",crash,ingame,2021-02-08 18:22:01 +0100B9C012B66000,"Helheim Hassle",,playable,2020-10-14 11:38:36 +0100E4300C278000,"Hell is Other Demons",,playable,2021-01-13 13:23:02 +01000938017E5C00,"Hell Pie0",nvdec;UE4,playable,2022-11-03 16:48:46 +0100A4600E27A000,"Hell Warders",online,playable,2021-02-27 02:31:03 +010044500CF8E000,"Hellblade: Senua's Sacrifice",gpu;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-01 19:36:50 +010087D0084A8000,"Hello Kitty Kruisers With Sanrio Friends",nvdec,playable,2021-06-04 19:08:46 +0100FAA00B168000,"Hello Neighbor",UE4,playable,2022-08-01 21:32:23 +010092B00C4F0000,"Hello Neighbor Hide and Seek",UE4;gpu;slow,ingame,2020-10-24 10:59:57 +010024600C794000,"Hellpoint",,menus,2021-11-26 13:24:20 +0100BEA00E63A000,"Hero Express",nvdec,playable,2020-08-06 13:23:43 +010077D01094C000,"Hero-U: Rogue to Redemption",nvdec,playable,2021-03-24 11:40:01 +0100D2B00BC54000,"Heroes of Hammerwatch - Ultimate Edition",,playable,2022-08-01 18:30:21 +01001B70080F0000,"HEROINE ANTHEM ZERO episode 1",vulkan-backend-bug,playable,2022-08-01 22:02:36 +010057300B0DC000,"Heroki",gpu,ingame,2023-07-30 19:30:01 +0100C2700E338000,"Heroland",,playable,2020-08-05 15:35:39 +01007AC00E012000,"HexaGravity",,playable,2021-05-28 13:47:48 +01004E800F03C000,"Hidden",slow,ingame,2022-10-05 10:56:53 +0100F6A00A684000,"Higurashi no Naku Koro ni Hō",audio,ingame,2021-09-18 14:40:28 +0100F8D0129F4000,"Himehibi 1 gakki - Princess Days",crash,nothing,2021-11-03 08:34:19 +0100F3D008436000,"Hiragana Pixel Party",,playable,2021-01-14 08:36:50 +01004990132AC000,"HITMAN 3 - Cloud Version",Needs Update;crash;services,nothing,2021-04-18 22:35:07 +010083A018262000,"Hitman: Blood Money — Reprisal",deadlock,ingame,2024-09-28 16:28:50 +01004B100A5CC000,"Hob: The Definitive Edition",,playable,2021-01-13 09:39:19 +0100F7300ED2C000,"Hoggy2",,playable,2022-10-10 13:53:35 +0100F7E00C70E000,"Hogwarts Legacy",slow,ingame,2024-09-03 19:53:58 +0100633007D48000,"Hollow Knight",nvdec,playable,2023-01-16 15:44:56 +0100F2100061E800,"Hollow0",UE4;gpu,ingame,2021-03-03 23:42:56 +0100342009E16000,"Holy Potatoes! What The Hell?!",,playable,2020-07-03 10:48:56 +010071B00C904000,"HoPiKo",,playable,2021-01-13 20:12:38 +010087800EE5A000,"Hopping girl KOHANE Jumping Kingdom: Princess of the Black Rabbit",crash,boots,2023-02-19 00:51:21 +010086D011EB8000,"Horace",,playable,2022-10-10 14:03:50 +0100001019F6E000,"Horizon Chase 2",deadlock;slow;crash;UE4,ingame,2024-08-19 04:24:06 +01009EA00B714000,"Horizon Chase Turbo",,playable,2021-02-19 19:40:56 +0100E4200FA82000,"Horror Pinball Bundle",crash,menus,2022-09-13 22:15:34 +0100017007980000,"Hotel Transylvania 3 Monsters Overboard",nvdec,playable,2021-01-27 18:55:31 +0100D0E00E51E000,"Hotline Miami Collection",nvdec,playable,2022-09-09 16:41:19 +0100BDE008218000,"Hotshot Racing",gpu;nvdec;online-broken;ldn-untested;vulkan-backend-bug,ingame,2024-02-04 21:31:17 +0100CAE00EB02000,"House Flipper",,playable,2021-06-16 18:28:32 +0100F6800910A000,"Hover",online-broken,playable,2022-09-20 12:54:46 +0100A66003384000,"Hulu",online-broken,boots,2022-12-09 10:05:00 +0100701001D92000,"Human Resource Machine",32-bit,playable,2020-12-17 21:47:09 +01000CA004DCA000,"Human: Fall Flat",,playable,2021-01-13 18:36:05 +0100E1A00AF40000,"Hungry Shark® World",,playable,2021-01-13 18:26:08 +0100EBA004726000,"Huntdown",,playable,2021-04-05 16:59:54 +010068000CAC0000,"Hunter's Legacy: Purrfect Edition",,playable,2022-08-02 10:33:31 +0100C460040EA000,"Hunting Simulator",UE4,playable,2022-08-02 10:54:08 +010061F010C3A000,"Hunting Simulator 2",UE4,playable,2022-10-10 14:25:51 +0100B3300B4AA000,"Hyper Jam",UE4;crash,boots,2020-12-15 22:52:11 +01003B200B372000,"Hyper Light Drifter - Special Edition",vulkan-backend-bug,playable,2023-01-13 15:44:48 +01006C500A29C000,"HyperBrawl Tournament",crash;services,boots,2020-12-04 23:03:27 +0100A8B00F0B4000,"HYPERCHARGE Unboxed",nvdec;online-broken;UE4;ldn-untested,playable,2022-09-27 21:52:39 +010061400ED90000,"HyperParasite",nvdec;UE4,playable,2022-09-27 22:05:44 +0100959010466000,"Hypnospace Outlaw",nvdec,ingame,2023-08-02 22:46:49 +01002B00111A2000,"Hyrule Warriors: Age of Calamity",gpu;deadlock;slow;crash;nvdec;amd-vendor-bug,ingame,2024-02-28 00:47:00 +0100A2C01320E000,"Hyrule Warriors: Age of Calamity - Demo Version",slow,playable,2022-10-10 17:37:41 +0100AE00096EA000,"Hyrule Warriors: Definitive Edition",services-horizon;nvdec,ingame,2024-06-16 10:34:05 +0100849000BDA000,"I Am Setsuna",,playable,2021-11-28 11:06:11 +01001860140B0000,"I Saw Black Clouds",nvdec,playable,2021-04-19 17:22:16 +0100429006A06000,"I, Zombie",,playable,2021-01-13 14:53:44 +01004E5007E92000,"Ice Age Scrat's Nutty Adventure!",nvdec,playable,2022-09-13 22:22:29 +010053700A25A000,"Ice Cream Surfer",,playable,2020-07-29 12:04:07 +0100954014718000,"Ice Station Z",crash,menus,2021-11-21 20:02:15 +0100BE9007E7E000,"ICEY",,playable,2021-01-14 16:16:04 +0100BC60099FE000,"Iconoclasts",,playable,2021-08-30 21:11:04 +01001E700EB28000,"Idle Champions of the Forgotten Realms",online,boots,2020-12-17 18:24:57 +01002EC014BCA000,"IdolDays",gpu;crash,ingame,2021-12-19 15:31:28 +01006550129C6000,"If Found...",,playable,2020-12-11 13:43:14 +01001AC00ED72000,"If My Heart Had Wings",,playable,2022-09-29 14:54:57 +01009F20086A0000,"Ikaruga",,playable,2023-04-06 15:00:02 +010040900AF46000,"Ikenfell",,playable,2021-06-16 17:18:44 +01007BC00E55A000,"Immortal Planet",,playable,2022-09-20 13:40:43 +010079501025C000,"Immortal Realms: Vampire Wars",nvdec,playable,2021-06-17 17:41:46 +01000F400435A000,"Immortal Redneck",nvdec,playable,2021-01-27 18:36:28 +01004A600EC0A000,"Immortals Fenyx Rising™",gpu;crash,menus,2023-02-24 16:19:55 +0100737003190000,"IMPLOSION",nvdec,playable,2021-12-12 03:52:13 +0100A760129A0000,"In rays of the Light",,playable,2021-04-07 15:18:07 +0100A2101107C000,"Indie Puzzle Bundle Vol 1",,playable,2022-09-27 22:23:21 +010002A00CD68000,"Indiecalypse",nvdec,playable,2020-06-11 20:19:09 +01001D3003FDE000,"Indivisible",nvdec,playable,2022-09-29 15:20:57 +01002BD00F626000,"Inertial Drift",online-broken,playable,2022-10-11 12:22:19 +0100D4300A4CA000,"Infernium",UE4;regression,nothing,2021-01-13 16:36:07 +010039C001296000,"Infinite Minigolf",online,playable,2020-09-29 12:26:25 +01001CB00EFD6000,"Infliction: Extended Cut",nvdec;UE4,playable,2022-10-02 13:15:55 +0100F1401161E000,"INMOST",,playable,2022-10-05 11:27:40 +0100F200049C8000,"InnerSpace",,playable,2021-01-13 19:36:14 +0100D2D009028000,"INSIDE",,playable,2021-12-25 20:24:56 +0100EC7012D34000,"Inside Grass: A little adventure",,playable,2020-10-15 15:26:27 +010099700D750000,"Instant Sports",,playable,2022-09-09 12:59:40 +010099A011A46000,"Instant Sports Summer Games",gpu,menus,2020-09-02 13:39:28 +010031B0145B8000,"INSTANT SPORTS TENNIS",,playable,2022-10-28 16:42:17 +010041501005E000,"Interrogation: You will be deceived",,playable,2022-10-05 11:40:10 +01000F700DECE000,"Into the Dead 2",nvdec,playable,2022-09-14 12:36:14 +01001D0003B96000,"INVERSUS Deluxe",online-broken,playable,2022-08-02 14:35:36 +0100C5B00FADE000,"Invisible Fist",,playable,2020-08-08 13:25:52 +010031B00C48C000,"Invisible, Inc. Nintendo Switch Edition",crash,nothing,2021-01-29 16:28:13 +01005F400E644000,"Invisigun Reloaded",gpu;online,ingame,2021-06-10 12:13:24 +010041C00D086000,"Ion Fury",vulkan-backend-bug,ingame,2022-08-07 08:27:51 +010095C016C14000,"Iridium",,playable,2022-08-05 23:19:53 +0100AD300B786000,"Iris School of Wizardry -Vinculum Hearts-",,playable,2022-12-05 13:11:15 +0100945012168000,"Iris.Fall",nvdec,playable,2022-10-18 13:40:22 +01005270118D6000,"Iron Wings",slow,ingame,2022-08-07 08:32:57 +01004DB003E6A000,"IRONCAST",,playable,2021-01-13 13:54:29 +0100E5700CD56000,"Irony Curtain: From Matryoshka with Love",,playable,2021-06-04 20:12:37 +010063E0104BE000,"Is It Wrong to Try to Pick Up Girls in a Dungeon? Familia Myth Infinite Combate",,playable,2020-08-31 13:52:21 +0100F06013710000,"ISLAND",,playable,2021-05-06 15:11:47 +010077900440A000,"Island Flight Simulator",,playable,2021-06-04 19:42:46 +0100A2600FCA0000,"Island Saver",nvdec,playable,2020-10-23 22:07:02 +010065200D192000,"Isoland",,playable,2020-07-26 13:48:16 +0100F5600D194000,"Isoland 2 - Ashes of Time",,playable,2020-07-26 14:29:05 +010001F0145A8000,"Isolomus",services,boots,2021-11-03 07:48:21 +010068700C70A000,"ITTA",,playable,2021-06-07 03:15:52 +01004070022F0000,"Ittle Dew 2+",,playable,2020-11-17 11:44:32 +0100DEB00F12A000,"IxSHE Tell",nvdec,playable,2022-12-02 18:00:42 +0100D8E00C874000,"izneo",online-broken,menus,2022-08-06 15:56:23 +0100CD5008D9E000,"James Pond Codename Robocod",,playable,2021-01-13 09:48:45 +01005F4010AF0000,"Japanese Rail Sim: Journey to Kyoto",nvdec,playable,2020-07-29 17:14:21 +010002D00EDD0000,"JDM Racing",,playable,2020-08-03 17:02:37 +0100C2700AEB8000,"Jenny LeClue - Detectivu",crash,nothing,2020-12-15 21:07:07 +01006E400AE2A000,"Jeopardy!®",audout;nvdec;online,playable,2021-02-22 13:53:46 +0100E4900D266000,"Jet Kave Adventure",nvdec,playable,2022-09-09 14:50:39 +0100F3500C70C000,"Jet Lancer",gpu,ingame,2021-02-15 18:15:47 +0100A5A00AF26000,"Jettomero: Hero of the Universe",,playable,2022-08-02 14:46:43 +01008330134DA000,"Jiffy",gpu;opengl,ingame,2024-02-03 23:11:24 +01001F5006DF6000,"Jim is Moving Out!",deadlock,ingame,2020-06-03 22:05:19 +0100F4D00D8BE000,"Jinrui no Ninasama he",crash,ingame,2023-03-07 02:04:17 +010038D011F08000,"Jisei: The First Case HD",audio,playable,2022-10-05 11:43:33 +01007CE00C960000,"Job the Leprechaun",,playable,2020-06-05 12:10:06 +01007090104EC000,"John Wick Hex",,playable,2022-08-07 08:29:12 +01006E4003832000,"Johnny Turbo's Arcade: Bad Dudes",,playable,2020-12-10 12:30:56 +010069B002CDE000,"Johnny Turbo's Arcade: Gate Of Doom",,playable,2022-07-29 12:17:50 +010080D002CC6000,"Johnny Turbo's Arcade: Two Crude Dudes",,playable,2022-08-02 20:29:50 +0100D230069CC000,"Johnny Turbo's Arcade: Wizard Fire",,playable,2022-08-02 20:39:15 +01008120128C2000,"JoJos Bizarre Adventure All-Star Battle R",,playable,2022-12-03 10:45:10 +01008B60117EC000,"Journey to the Savage Planet",nvdec;UE4;ldn-untested,playable,2022-10-02 18:48:12 +0100C7600F654000,"Juicy Realm",,playable,2023-02-21 19:16:20 +0100B4D00C76E000,"JUMANJI: The Video Game",UE4;crash,boots,2020-07-12 13:52:25 +0100183010F12000,"JUMP FORCE - Deluxe Edition",nvdec;online-broken;UE4,playable,2023-10-01 15:56:05 +01003D601014A000,"Jump King",,playable,2020-06-09 10:12:39 +0100B9C012706000,"Jump Rope Challenge",services;crash;Needs Update,boots,2023-02-27 01:24:28 +0100D87009954000,"Jumping Joe & Friends",,playable,2021-01-13 17:09:42 +010069800D2B4000,"JUNK PLANET",,playable,2020-11-09 12:38:33 +0100CE100A826000,"Jurassic Pinball",,playable,2021-06-04 19:02:37 +010050A011344000,"Jurassic World Evolution: Complete Edition",cpu;crash,menus,2023-08-04 18:06:54 +0100BCE000598000,"Just Dance 2017®",online,playable,2021-03-05 09:46:01 +0100BEE017FC0000,"Just Dance 2023",,nothing,2023-06-05 16:44:54 +010075600AE96000,"Just Dance® 2019",gpu;online,ingame,2021-02-27 17:21:27 +0100DDB00DB38000,"Just Dance® 2020",,playable,2022-01-24 13:31:57 +0100EA6014BB8000,"Just Dance® 2022",gpu;services;crash;Needs Update,ingame,2022-10-28 11:01:53 +0100AC600CF0A000,"Just Die Already",UE4,playable,2022-12-13 13:37:50 +01002C301033E000,"Just Glide",,playable,2020-08-07 17:38:10 +0100830008426000,"Just Shapes & Beats",ldn-untested;nvdec,playable,2021-02-09 12:18:36 +010035A0044E8000,"JYDGE",,playable,2022-08-02 21:20:13 +0100D58012FC2000,"Kagamihara/Justice",crash,nothing,2021-06-21 16:41:29 +0100D5F00EC52000,"Kairobotica",,playable,2021-05-06 12:17:56 +0100BDC00A664000,"KAMEN RIDER CLIMAX SCRAMBLE",nvdec;ldn-untested,playable,2024-07-03 08:51:11 +0100A9801180E000,"KAMEN RIDER memory of heroez / Premium Sound Edition",,playable,2022-12-06 03:14:26 +010085300314E000,"KAMIKO",,playable,2020-05-13 12:48:57 +,"Kangokuto Mary Skelter Finale",audio;crash,ingame,2021-01-09 22:39:28 +01007FD00DB20000,"Katakoi Contrast - collection of branch -",nvdec,playable,2022-12-09 09:41:26 +0100D7000C2C6000,"Katamari Damacy REROLL",,playable,2022-08-02 21:35:05 +0100F9800EDFA000,"KATANA KAMI: A Way of the Samurai Story",slow,playable,2022-04-09 10:40:16 +010029600D56A000,"Katana ZERO",,playable,2022-08-26 08:09:09 +010038B00F142000,"Kaze and the Wild Masks",,playable,2021-04-19 17:11:03 +0100D7C01115E000,"Keen: One Girl Army",,playable,2020-12-14 23:19:52 +01008D400A584000,"Keep Talking and Nobody Explodes",,playable,2021-02-15 18:05:21 +01004B100BDA2000,"KEMONO FRIENDS PICROSS",,playable,2023-02-08 15:54:34 +0100A8200B15C000,"Kentucky Robo Chicken",,playable,2020-05-12 20:54:17 +0100327005C94000,"Kentucky Route Zero: TV Edition",,playable,2024-04-09 23:22:46 +0100DA200A09A000,"Kero Blaster",,playable,2020-05-12 20:42:52 +0100F680116A2000,"Kholat",UE4;nvdec,playable,2021-06-17 11:52:48 +0100C0A004C2C000,"Kid Tripp",crash,nothing,2020-10-15 07:41:23 +0100FB400D832000,"KILL la KILL -IF",,playable,2020-06-09 14:47:08 +010011B00910C000,"Kill The Bad Guy",,playable,2020-05-12 22:16:10 +0100F2900B3E2000,"Killer Queen Black",ldn-untested;online,playable,2021-04-08 12:46:18 +,"Kin'iro no Corda Octave",,playable,2020-09-22 13:23:12 +010089000F0E8000,"Kine",UE4,playable,2022-09-14 14:28:37 +0100E6B00FFBA000,"King Lucas",,playable,2022-09-21 19:43:23 +0100B1300783E000,"King Oddball",,playable,2020-05-13 13:47:57 +01008D80148C8000,"King of Seas",nvdec;UE4,playable,2022-10-28 18:29:41 +0100515014A94000,"King of Seas Demo",nvdec;UE4,playable,2022-10-28 18:09:31 +01005D2011EA8000,"KINGDOM HEARTS Melody of Memory",crash;nvdec,ingame,2021-03-03 17:34:12 +0100A280121F6000,"Kingdom Rush",32-bit;crash;Needs More Attention,nothing,2022-10-05 12:34:00 +01005EF003FF2000,"Kingdom Two Crowns",,playable,2020-05-16 19:36:21 +0100BD9004AB6000,"Kingdom: New Lands",,playable,2022-08-02 21:48:50 +0100EF50132BE000,"Kingdoms of Amalur: Re-Reckoning",,playable,2023-08-10 13:05:08 +010091201605A000,"Kirby and the Forgotten Land (Demo version)",demo,playable,2022-08-21 21:03:01 +0100227010460000,"Kirby Fighters™ 2",ldn-works;online,playable,2021-06-17 13:06:39 +0100A8E016236000,"Kirby’s Dream Buffet™",crash;online-broken;Needs Update;ldn-works,ingame,2024-03-03 17:04:44 +010091D01A57E000,"Kirby’s Return to Dream Land Deluxe - Demo",demo,playable,2023-02-18 17:21:55 +01006B601380E000,"Kirby’s Return to Dream Land™ Deluxe",,playable,2024-05-16 19:58:04 +01004D300C5AE000,"Kirby™ and the Forgotten Land",gpu,ingame,2024-03-11 17:11:21 +01007E3006DDA000,"Kirby™ Star Allies",nvdec,playable,2023-11-15 17:06:19 +0100F3A00F4CA000,"Kissed by the Baddest Bidder",gpu;nvdec,ingame,2022-12-04 20:57:11 +01000C900A136000,"Kitten Squad",nvdec,playable,2022-08-03 12:01:59 +010079D00C8AE000,"Klondike Solitaire",,playable,2020-12-13 16:17:27 +0100A6800DE70000,"Knight Squad",,playable,2020-08-09 16:54:51 +010024B00E1D6000,"Knight Squad 2",nvdec;online-broken,playable,2022-10-28 18:38:09 +0100D51006AAC000,"Knight Terrors",,playable,2020-05-13 13:09:22 +01005F8010D98000,"Knightin'+",,playable,2020-08-31 18:18:21 +010004400B22A000,"Knights of Pen & Paper 2 Deluxiest Edition",,playable,2020-05-13 14:07:00 +0100D3F008746000,"Knights of Pen and Paper +1 Deluxier Edition",,playable,2020-05-11 21:46:32 +010001A00A1F6000,"Knock-Knock",nvdec,playable,2021-02-01 20:03:19 +01009EF00DDB4000,"Knockout City™",services;online-broken,boots,2022-12-09 09:48:58 +0100C57019BA2000,"Koa and the Five Pirates of Mara",gpu,ingame,2024-07-11 16:14:44 +01001E500401C000,"Koi DX",,playable,2020-05-11 21:37:51 +,"Koi no Hanasaku Hyakkaen",32-bit;gpu;nvdec,ingame,2020-10-03 14:17:10 +01005D200C9AA000,"Koloro",,playable,2022-08-03 12:34:02 +0100464009294000,"Kona",,playable,2022-08-03 12:48:19 +010016C011AAA000,"Kono Subarashii Sekai ni Shukufuku o Kono Yokubo no Isho ni Choai o",,playable,2023-04-26 09:51:08 +010088500D5EE000,"KORAL",UE4;crash;gpu,menus,2020-11-16 12:41:26 +0100EC8004762000,"KORG Gadget for Nintendo Switch",,playable,2020-05-13 13:57:24 +010046600CCA4000,"Kotodama: The 7 Mysteries of Fujisawa",audout,playable,2021-02-01 20:28:37 +010022801242C000,"KukkoroDays",crash,menus,2021-11-25 08:52:56 +010035A00DF62000,"KUNAI",nvdec,playable,2022-09-20 13:48:34 +010060400ADD2000,"Kunio-Kun: The World Classics Collection",online,playable,2021-01-29 20:21:46 +010037500F282000,"KUUKIYOMI 2: Consider It More! - New Era",crash;Needs Update,nothing,2021-11-02 09:34:40 +0100894011F62000,"Kwaidan ~Azuma manor story~",,playable,2022-10-05 12:50:44 +0100830004FB6000,"L.A. Noire",,playable,2022-08-03 16:49:35 +0100732009CAE000,"L.F.O. -Lost Future Omega-",UE4;deadlock,boots,2020-10-16 12:16:44 +0100F2B0123AE000,"L.O.L. Surprise! Remix: We Rule The World",,playable,2022-10-11 22:48:03 +010026000F662800,"LA-MULANA",gpu,ingame,2022-08-12 01:06:21 +0100E5D00F4AE000,"LA-MULANA 1 & 2",,playable,2022-09-22 17:56:36 +010038000F644000,"LA-MULANA 2",,playable,2022-09-03 13:45:57 +010058500B3E0000,"Labyrinth of Refrain: Coven of Dusk",,playable,2021-02-15 17:38:48 +010022D0089AE000,"Labyrinth of the Witch",,playable,2020-11-01 14:42:37 +0100BAB00E8C0000,"Langrisser I & II",,playable,2021-02-19 15:46:10 +0100E7200B272000,"Lanota",,playable,2019-09-04 01:58:14 +01005E000D3D8000,"Lapis x Labyrinth",,playable,2021-02-01 18:58:08 +0100AFE00E882000,"Laraan",,playable,2020-12-16 12:45:48 +0100DA700879C000,"Last Day of June",nvdec,playable,2021-06-08 11:35:32 +01009E100BDD6000,"LASTFIGHT",,playable,2022-09-20 13:54:55 +0100055007B86000,"Late Shift",nvdec,playable,2021-02-01 18:43:58 +01004EB00DACE000,"Later Daters Part One",,playable,2020-07-29 16:35:45 +01001730144DA000,"Layers of Fear 2",nvdec;UE4,playable,2022-10-28 18:49:52 +0100BF5006A7C000,"Layers of Fear: Legacy",nvdec,playable,2021-02-15 16:30:41 +0100CE500D226000,"Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy - Deluxe Edition",nvdec;opengl,playable,2022-09-14 15:01:57 +0100FDB00AA80000,"Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy DX+0",gpu;nvdec;opengl,ingame,2022-09-14 15:15:55 +01009C100390E000,"League of Evil",online,playable,2021-06-08 11:23:27 +01002E900CD6E000,"Left-Right : The Mansion",,playable,2020-05-13 13:02:12 +010079901C898000,"Legacy of Kain™ Soul Reaver 1&2 Remastered",,playable,2025-01-07 05:50:01 +01002DB007A96000,"Legend of Kay Anniversary",nvdec,playable,2021-01-29 18:38:29 +0100ECC00EF3C000,"Legend of the Skyfish",,playable,2020-06-24 13:04:22 +01007E900DFB6000,"Legend of the Tetrarchs",deadlock,ingame,2020-07-10 07:54:03 +0100A73006E74000,"Legendary Eleven",,playable,2021-06-08 12:09:03 +0100A7700B46C000,"Legendary Fishing",online,playable,2021-04-14 15:08:46 +0100739018020000,"LEGO® 2K Drive",gpu;ldn-works,ingame,2024-04-09 02:05:12 +01003A30012C0000,"LEGO® CITY Undercover",nvdec,playable,2024-09-30 08:44:27 +010070D009FEC000,"LEGO® DC Super-Villains",,playable,2021-05-27 18:10:37 +010052A00B5D2000,"LEGO® Harry Potter™ Collection",crash,ingame,2024-01-31 10:28:07 +010073C01AF34000,"LEGO® Horizon Adventures™",vulkan-backend-bug;opengl-backend-bug;UE4,ingame,2025-01-07 04:24:56 +01001C100E772000,"LEGO® Jurassic World",,playable,2021-05-27 17:00:20 +0100D3A00409E000,"LEGO® Marvel Super Heroes 2",crash,nothing,2023-03-02 17:12:33 +01006F600FFC8000,"LEGO® Marvel™ Super Heroes",,playable,2024-09-10 19:02:19 +01007FC00206E000,"LEGO® NINJAGO® Movie Video Game",crash,nothing,2022-08-22 19:12:53 +010042D00D900000,"LEGO® Star Wars™: The Skywalker Saga",gpu;slow,ingame,2024-04-13 20:08:46 +0100A01006E00000,"LEGO® The Incredibles",crash,nothing,2022-08-03 18:36:59 +0100838002AEA000,"LEGO® Worlds",crash;slow,ingame,2020-07-17 13:35:39 +0100E7500BF84000,"LEGRAND LEGACY: Tale of the Fatebounds",nvdec,playable,2020-07-26 12:27:36 +0100A8E00CAA0000,"Leisure Suit Larry - Wet Dreams Don't Dry",,playable,2022-08-03 19:51:44 +010031A0135CA000,"Leisure Suit Larry - Wet Dreams Dry Twice",,playable,2022-10-28 19:00:57 +01003AB00983C000,"Lethal League Blaze",online,playable,2021-01-29 20:13:31 +01008C300648E000,"Letter Quest Remastered",,playable,2020-05-11 21:30:34 +0100CE301678E800,"Letters - a written adventure",gpu,ingame,2023-02-21 20:12:38 +01009A200BE42000,"Levelhead",online,ingame,2020-10-18 11:44:51 +0100C960041DC000,"Levels+ : Addictive Puzzle Game",,playable,2020-05-12 13:51:39 +0100C8000F146000,"Liberated",gpu;nvdec,ingame,2024-07-04 04:58:24 +01003A90133A6000,"Liberated: Enhanced Edition",gpu;nvdec,ingame,2024-07-04 04:48:48 +01004360045C8000,"Lichtspeer: Double Speer Edition",,playable,2020-05-12 16:43:09 +010041F0128AE000,"Liege Dragon",,playable,2022-10-12 10:27:03 +010006300AFFE000,"Life Goes On",,playable,2021-01-29 19:01:20 +0100FD101186C000,"Life is Strange 2",UE4,playable,2024-07-04 05:05:58 +0100DC301186A000,"Life is Strange Remastered",UE4,playable,2022-10-03 16:54:44 +010008501186E000,"Life is Strange: Before the Storm Remastered",,playable,2023-09-28 17:15:44 +0100500012AB4000,"Life is Strange: True Colors™",gpu;UE4,ingame,2024-04-08 16:11:52 +01003AB012F00000,"Life of Boris: Super Slav",,ingame,2020-12-17 11:40:05 +0100B3A0135D6000,"Life of Fly",,playable,2021-01-25 23:41:07 +010069A01506E000,"Life of Fly 2",slow,playable,2022-10-28 19:26:52 +01005B6008132000,"Lifeless Planet: Premiere Edition",,playable,2022-08-03 21:25:13 +010030A006F6E000,"Light Fall",nvdec,playable,2021-01-18 14:55:36 +010087700D07C000,"Light Tracer",nvdec,playable,2021-05-05 19:15:43 +01009C8009026000,"LIMBO",cpu;32-bit,boots,2023-06-28 15:39:19 +0100EDE012B58000,"Linelight",,playable,2020-12-17 12:18:07 +0100FAD00E65E000,"Lines X",,playable,2020-05-11 15:28:30 +010032F01096C000,"Lines XL",,playable,2020-08-31 17:48:23 +0100943010310000,"Little Busters! Converted Edition",nvdec,playable,2022-09-29 15:34:56 +0100A3F009142000,"Little Dragons Café",,playable,2020-05-12 00:00:52 +010079A00D9E8000,"Little Friends: Dogs & Cats",,playable,2020-11-12 12:45:51 +0100B18001D8E000,"Little Inferno",32-bit;gpu;nvdec,ingame,2020-12-17 21:43:56 +0100E7000E826000,"Little Misfortune",nvdec,playable,2021-02-23 20:39:44 +0100FE0014200000,"Little Mouse's Encyclopedia",,playable,2022-10-28 19:38:58 +01002FC00412C000,"Little Nightmares Complete Edition",nvdec;UE4,playable,2022-08-03 21:45:35 +010097100EDD6000,"Little Nightmares II",UE4,playable,2023-02-10 18:24:44 +010093A0135D6000,"Little Nightmares II DEMO",UE4;demo;vulkan-backend-bug,playable,2024-05-16 18:47:20 +0100535014D76000,"Little Noah: Scion of Paradise",opengl-backend-bug,playable,2022-09-14 04:17:13 +0100E6D00E81C000,"Little Racer",,playable,2022-10-18 16:41:13 +0100DD700D95E000,"Little Shopping",,playable,2020-10-03 16:34:35 +01000FB00AA90000,"Little Town Hero",,playable,2020-10-15 23:28:48 +01000690085BE000,"Little Triangle",,playable,2020-06-17 14:46:26 +0100CF801776C000,"LIVE A LIVE",UE4;amd-vendor-bug,playable,2023-02-05 15:12:07 +0100BA000FC9C000,"LocO-SportS",,playable,2022-09-20 14:09:30 +010016C009374000,"Lode Runner Legacy",,playable,2021-01-10 14:10:28 +0100D2C013288000,"Lofi Ping Pong",crash,ingame,2020-12-15 20:09:22 +0100B6D016EE6000,"Lone Ruin",crash;nvdec,ingame,2023-01-17 06:41:19 +0100A0C00E0DE000,"Lonely Mountains: Downhill",online-broken,playable,2024-07-04 05:08:11 +010062A0178A8000,"LOOPERS",gpu;slow;crash,ingame,2022-06-17 19:21:45 +010064200F7D8000,"Lost Horizon",,playable,2020-09-01 13:41:22 +01005ED010642000,"Lost Horizon 2",nvdec,playable,2020-06-16 12:02:12 +01005FE01291A000,"Lost in Random™",gpu,ingame,2022-12-18 07:09:28 +0100133014510000,"Lost Lands 2: The Four Horsemen",nvdec,playable,2022-10-24 16:41:00 +0100156014C6A000,"Lost Lands 3: The Golden Curse",nvdec,playable,2022-10-24 16:30:00 +0100BDD010AC8000,"Lost Lands: Dark Overlord",,playable,2022-10-03 11:52:58 +010054600AC74000,"LOST ORBIT: Terminal Velocity",,playable,2021-06-14 12:21:12 +010046600B76A000,"Lost Phone Stories",services,ingame,2020-04-05 23:17:33 +01008AD013A86800,"Lost Ruins",gpu,ingame,2023-02-19 14:09:00 +010077B0038B2000,"LOST SPHEAR",,playable,2021-01-10 06:01:21 +0100018013124000,"Lost Words: Beyond the Page",,playable,2022-10-24 17:03:21 +0100D36011AD4000,"Love Letter from Thief X",gpu;nvdec,ingame,2023-11-14 03:55:31 +0100F0300B7BE000,"Ludomania",crash;services,nothing,2020-04-03 00:33:47 +010048701995E000,"Luigi's Mansion™ 2 HD",ldn-broken;amd-vendor-bug,ingame,2024-09-05 23:47:27 +0100DCA0064A6000,"Luigi’s Mansion™ 3",gpu;slow;Needs Update;ldn-works,ingame,2024-09-27 22:17:36 +010052B00B194000,"Lumini",,playable,2020-08-09 20:45:09 +0100FF00042EE000,"Lumo",nvdec,playable,2022-02-11 18:20:30 +0100F3100EB44000,"Lust for Darkness",nvdec,playable,2020-07-26 12:09:15 +0100F0B00F68E000,"Lust for Darkness: Dawn Edition",nvdec,playable,2021-06-16 13:47:46 +0100EC2011A80000,"Luxar",,playable,2021-03-04 21:11:57 +0100F2400D434000,"MachiKnights -Blood bagos-",nvdec;UE4,playable,2022-09-14 15:08:04 +010024A009428000,"Mad Carnage",,playable,2021-01-10 13:00:07 +01005E7013476000,"Mad Father",,playable,2020-11-12 13:22:10 +010061E00EB1E000,"Mad Games Tycoon",,playable,2022-09-20 14:23:14 +01004A200E722000,"Magazine Mogul",loader-allocator,playable,2022-10-03 12:05:34 +01008E500BF62000,"MagiCat",,playable,2020-12-11 15:22:07 +010032C011356000,"Magicolors",,playable,2020-08-12 18:39:11 +01008C300B624000,"Mahjong Solitaire Refresh",crash,boots,2022-12-09 12:02:55 +010099A0145E8000,"Mahluk dark demon",,playable,2021-04-15 13:14:24 +01001C100D80E000,"Mainlining",,playable,2020-06-05 01:02:00 +0100D9900F220000,"Maitetsu:Pure Station",,playable,2022-09-20 15:12:49 +0100A78017BD6000,"Makai Senki Disgaea 7",,playable,2023-10-05 00:22:18 +01005A700CC3C000,"Mana Spark",,playable,2020-12-10 13:41:01 +010093D00CB22000,"Maneater",nvdec;UE4,playable,2024-05-21 16:11:57 +0100361009B1A000,"Manifold Garden",,playable,2020-10-13 20:27:13 +0100C9A00952A000,"Manticore - Galaxy on Fire",crash;nvdec,boots,2024-02-04 04:37:24 +0100E98002F6E000,"Mantis Burn Racing",online-broken;ldn-broken,playable,2024-09-02 02:13:04 +01008E800D1FE000,"Marble Power Blast",,playable,2021-06-04 16:00:02 +01001B2012D5E000,"Märchen Forest",,playable,2021-02-04 21:33:34 +0100DA7017C9E000,"Marco & The Galaxy Dragon Demo",gpu;demo,ingame,2023-06-03 13:05:33 +01006D0017F7A000,"Mario & Luigi: Brothership",crash;slow;UE4;mac-bug,ingame,2025-01-07 04:00:00 +010002C00C270000,"MARIO & SONIC AT THE OLYMPIC GAMES TOKYO 2020",crash;online-broken;ldn-works,ingame,2024-08-23 16:12:55 +0100317013770000,"MARIO + RABBIDS SPARKS OF HOPE",gpu;Needs Update,ingame,2024-06-20 19:56:19 +010067300059A000,"Mario + Rabbids® Kingdom Battle",slow;opengl-backend-bug,playable,2024-05-06 10:16:54 +0100C9C00E25C000,"Mario Golf™: Super Rush",gpu,ingame,2024-08-18 21:31:48 +0100ED100BA3A000,"Mario Kart Live: Home Circuit™",services;crash;Needs More Attention,nothing,2022-12-07 22:36:52 +0100152000022000,"Mario Kart™ 8 Deluxe",32-bit;ldn-works;LAN;amd-vendor-bug,playable,2024-09-19 11:55:17 +01006FE013472000,"Mario Party™ Superstars",gpu;ldn-works;mac-bug,ingame,2024-05-16 11:23:34 +010019401051C000,"Mario Strikers™: Battle League",crash;nvdec,boots,2024-05-07 06:23:56 +0100BDE00862A000,"Mario Tennis™ Aces",gpu;nvdec;ldn-works;LAN,ingame,2024-09-28 15:54:40 +0100B99019412000,"Mario vs. Donkey Kong™",,playable,2024-05-04 21:22:39 +0100D9E01DBB0000,"Mario vs. Donkey Kong™ Demo",,playable,2024-02-18 10:40:06 +01009A700A538000,"Mark of the Ninja: Remastered",,playable,2022-08-04 15:48:30 +010044600FDF0000,"Marooners",nvdec;online-broken,playable,2022-10-18 21:35:26 +010060700AC50000,"MARVEL ULTIMATE ALLIANCE 3: The Black Order",nvdec;ldn-untested,playable,2024-02-14 19:51:51 +01003DE00C95E000,"Mary Skelter 2",crash;regression,ingame,2023-09-12 07:37:28 +0100113008262000,"Masquerada: Songs and Shadows",,playable,2022-09-20 15:18:54 +01004800197F0000,"Master Detective Archives: Rain Code",gpu,ingame,2024-04-19 20:11:09 +0100CC7009196000,"Masters of Anima",nvdec,playable,2022-08-04 16:00:09 +01004B100A1C4000,"MathLand",,playable,2020-09-01 15:40:06 +0100A8C011F26000,"Max and the book of chaos",,playable,2020-09-02 12:24:43 +01001C9007614000,"Max: The Curse of Brotherhood",nvdec,playable,2022-08-04 16:33:04 +0100E8B012FBC000,"Maze",,playable,2020-12-17 16:13:58 +0100EEF00CBC0000,"MEANDERS",UE4;gpu,ingame,2021-06-11 19:19:33 +0100EC000CE24000,"Mech Rage",,playable,2020-11-18 12:30:16 +0100C4F005EB4000,"Mecho Tales",,playable,2022-08-04 17:03:19 +0100E4600D31A000,"Mechstermination Force",,playable,2024-07-04 05:39:15 +,"Medarot Classics Plus Kabuto Ver",,playable,2020-11-21 11:31:18 +,"Medarot Classics Plus Kuwagata Ver",,playable,2020-11-21 11:30:40 +0100BBC00CB9A000,"Mega Mall Story",slow,playable,2022-08-04 17:10:58 +0100B0C0086B0000,"Mega Man 11",,playable,2021-04-26 12:07:53 +010038E016264000,"Mega Man Battle Network Legacy Collection Vol. 1",,playable,2023-04-25 03:55:57 +0100734016266000,"Mega Man Battle Network Legacy Collection Vol. 2",,playable,2023-08-03 18:04:32 +01002D4007AE0000,"Mega Man Legacy Collection",gpu,ingame,2021-06-03 18:17:17 +0100842008EC4000,"Mega Man Legacy Collection 2",,playable,2021-01-06 08:47:59 +01005C60086BE000,"Mega Man X Legacy Collection",audio;crash;services,menus,2020-12-04 04:30:17 +010025C00D410000,"Mega Man Zero/ZX Legacy Collection",,playable,2021-06-14 16:17:32 +0100FC700F942000,"Megabyte Punch",,playable,2020-10-16 14:07:18 +010006F011220000,"Megadimension Neptunia VII",32-bit;nvdec,playable,2020-12-17 20:56:03 +010082B00E8B8000,"Megaquarium",,playable,2022-09-14 16:50:00 +010005A00B312000,"Megaton Rainfall",gpu;opengl,boots,2022-08-04 18:29:43 +0100EA100DF92000,"Meiji Katsugeki Haikara Ryuuseigumi - Seibai Shimaseu, Yonaoshi Kagyou",32-bit;nvdec,playable,2022-12-05 13:19:12 +0100B360068B2000,"Mekorama",gpu,boots,2021-06-17 16:37:21 +01000FA010340000,"Melbits World",nvdec;online,menus,2021-11-26 13:51:22 +0100F68019636000,"Melon Journey",,playable,2023-04-23 21:20:01 +,"Memories Off -Innocent Fille- for Dearest",,playable,2020-08-04 07:31:22 +010062F011E7C000,"Memory Lane",UE4,playable,2022-10-05 14:31:03 +0100EBE00D5B0000,"Meow Motors",UE4;gpu,ingame,2020-12-18 00:24:01 +0100273008FBC000,"Mercenaries Saga Chronicles",,playable,2021-01-10 12:48:19 +010094500C216000,"Mercenaries Wings: The False Phoenix",crash;services,nothing,2020-05-08 22:42:12 +0100F900046C4000,"Mercenary Kings: Reloaded Edition",online,playable,2020-10-16 13:05:58 +0100E5000D3CA000,"Merchants of Kaidan",,playable,2021-04-15 11:44:28 +01009A500D4A8000,"METAGAL",,playable,2020-06-05 00:05:48 +010047F01AA10000,"METAL GEAR SOLID 3: Snake Eater - Master Collection Version",services-horizon,menus,2024-07-24 06:34:06 +0100E8F00F6BE000,"METAL MAX Xeno Reborn",,playable,2022-12-05 15:33:53 +01002DE00E5D0000,"Metaloid: Origin",,playable,2020-06-04 20:26:35 +010055200E87E000,"Metamorphosis",UE4;audout;gpu;nvdec,ingame,2021-06-16 16:18:11 +0100D4900E82C000,"Metro 2033 Redux",gpu,ingame,2022-11-09 10:53:13 +0100F0400E850000,"Metro: Last Light Redux",slow;nvdec;vulkan-backend-bug,ingame,2023-11-01 11:53:52 +010012101468C000,"Metroid Prime™ Remastered",gpu;Needs Update;vulkan-backend-bug;opengl-backend-bug,ingame,2024-05-07 22:48:15 +010093801237C000,"Metroid™ Dread",,playable,2023-11-13 04:02:36 +0100A1200F20C000,"Midnight Evil",,playable,2022-10-18 22:55:19 +0100C1E0135E0000,"Mighty Fight Federation",online,playable,2021-04-06 18:39:56 +0100AD701344C000,"Mighty Goose",nvdec,playable,2022-10-28 20:25:38 +01000E2003FA0000,"MIGHTY GUNVOLT BURST",,playable,2020-10-19 16:05:49 +010060D00AE36000,"Mighty Switch Force! Collection",,playable,2022-10-28 20:40:32 +01003DA010E8A000,"Miitopia™",gpu;services-horizon,ingame,2024-09-06 10:39:13 +01007DA0140E8000,"Miitopia™ Demo",services;crash;demo,menus,2023-02-24 11:50:58 +01004B7009F00000,"Miles & Kilo",,playable,2020-10-22 11:39:49 +0100976008FBE000,"Millie",,playable,2021-01-26 20:47:19 +0100F5700C9A8000,"MIND: Path to Thalamus",UE4,playable,2021-06-16 17:37:25 +0100D71004694000,"Minecraft",crash;ldn-broken,ingame,2024-09-29 12:08:59 +01006C100EC08000,"Minecraft Dungeons",nvdec;online-broken;UE4,playable,2024-06-26 22:10:43 +01007C6012CC8000,"Minecraft Legends",gpu;crash,ingame,2024-03-04 00:32:24 +01006BD001E06000,"Minecraft: Nintendo Switch Edition",ldn-broken,playable,2023-10-15 01:47:08 +01003EF007ABA000,"Minecraft: Story Mode - Season Two",online-broken,playable,2023-03-04 00:30:50 +010059C002AC2000,"Minecraft: Story Mode - The Complete Adventure",crash;online-broken,boots,2022-08-04 18:56:58 +0100B7500F756000,"Minefield",,playable,2022-10-05 15:03:29 +01003560119A6000,"Mini Motor Racing X",,playable,2021-04-13 17:54:49 +0100FB700DE1A000,"Mini Trains",,playable,2020-07-29 23:06:20 +010039200EC66000,"Miniature - The Story Puzzle",UE4,playable,2022-09-14 17:18:50 +010069200EB80000,"Ministry of Broadcast",,playable,2022-08-10 00:31:16 +0100C3F000BD8000,"Minna de Wai Wai! Spelunker",crash,nothing,2021-11-03 07:17:11 +0100FAE010864000,"Minoria",,playable,2022-08-06 18:50:50 +01005AB015994000,"Miss Kobayashi's Dragonmaid Burst Forth!! Choro-gon☆Breath",gpu,playable,2022-03-28 02:22:24 +0100CFA0138C8000,"Missile Dancer",,playable,2021-01-31 12:22:03 +0100E3601495C000,"Missing Features: 2D",,playable,2022-10-28 20:52:54 +010059200CC40000,"Mist Hunter",,playable,2021-06-16 13:58:58 +0100F65011E52000,"Mittelborg: City of Mages",,playable,2020-08-12 19:58:06 +0100876015D74000,"MLB® The Show™ 22",gpu;slow,ingame,2023-04-25 06:28:43 +0100A9F01776A000,"MLB® The Show™ 22 Tech Test",services;crash;Needs Update;demo,nothing,2022-12-09 10:28:34 +0100913019170000,"MLB® The Show™ 23",gpu,ingame,2024-07-26 00:56:50 +0100E2E01C32E000,"MLB® The Show™ 24",services-horizon,nothing,2024-03-31 04:54:11 +010011300F74C000,"MO:Astray",crash,ingame,2020-12-11 21:45:44 +010020400BDD2000,"Moai VI: Unexpected Guests",slow,playable,2020-10-27 16:40:20 +0100D8700B712000,"Modern Combat Blackout",crash,nothing,2021-03-29 19:47:15 +010004900D772000,"Modern Tales: Age of Invention",slow,playable,2022-10-12 11:20:19 +0100B8500D570000,"Moero Chronicle™ Hyper",32-bit,playable,2022-08-11 07:21:56 +01004EB0119AC000,"Moero Crystal H",32-bit;nvdec;vulkan-backend-bug,playable,2023-07-05 12:04:22 +0100B46017500000,"MOFUMOFUSENSEN",gpu,menus,2024-09-21 21:51:08 +01004A400C320000,"Momodora: Reverie Under the Moonlight",deadlock,nothing,2022-02-06 03:47:43 +01002CC00BC4C000,"Momonga Pinball Adventures",,playable,2022-09-20 16:00:40 +010093100DA04000,"Momotaro Dentetsu Showa, Heisei, Reiwa mo Teiban!",gpu,ingame,2023-09-22 10:21:46 +0100FBD00ED24000,"MONKEY BARRELS",,playable,2022-09-14 17:28:52 +01004C500B8E0000,"Monkey King: Master of the Clouds",,playable,2020-09-28 22:35:48 +01003030161DC000,"Monomals",gpu,ingame,2024-08-06 22:02:51 +0100F3A00FB78000,"Mononoke Slashdown",crash,menus,2022-05-04 20:55:47 +01007430037F6000,"MONOPOLY® for Nintendo Switch™",nvdec;online-broken,playable,2024-02-06 23:13:01 +01005FF013DC2000,"MONOPOLY® Madness",,playable,2022-01-29 21:13:52 +0100E2D0128E6000,"Monster Blast",gpu,ingame,2023-09-02 20:02:32 +01006F7001D10000,"Monster Boy and the Cursed Kingdom",nvdec,playable,2022-08-04 20:06:32 +01005FC01000E000,"Monster Bugs Eat People",,playable,2020-07-26 02:05:34 +0100742007266000,"Monster Energy Supercross - The Official Videogame",nvdec;UE4,playable,2022-08-04 20:25:00 +0100F8100B982000,"Monster Energy Supercross - The Official Videogame 2",nvdec;UE4;ldn-untested,playable,2022-08-04 21:21:24 +010097800EA20000,"Monster Energy Supercross - The Official Videogame 3",UE4;audout;nvdec;online,playable,2021-06-14 12:37:54 +0100E9900ED74000,"Monster Farm",32-bit;nvdec,playable,2021-05-05 19:29:13 +0100770008DD8000,"Monster Hunter Generations Ultimate™",32-bit;online-broken;ldn-works,playable,2024-03-18 14:35:36 +0100B04011742000,"Monster Hunter Rise",gpu;slow;crash;nvdec;online-broken;Needs Update;ldn-works,ingame,2024-08-24 11:04:59 +010093A01305C000,"Monster Hunter Rise Demo",online-broken;ldn-works;demo,playable,2022-10-18 23:04:17 +0100E21011446000,"Monster Hunter Stories 2: Wings of Ruin",services,ingame,2022-07-10 19:27:30 +010042501329E000,"MONSTER HUNTER STORIES 2: WINGS OF RUIN Trial Version",demo,playable,2022-11-13 22:20:26 +,"Monster Hunter XX Demo",32-bit;cpu,nothing,2020-03-22 10:12:28 +0100C3800049C000,"Monster Hunter XX Nintendo Switch Ver ( Double Cross )",,playable,2024-07-21 14:08:09 +010088400366E000,"Monster Jam Crush It!",UE4;nvdec;online,playable,2021-04-08 19:29:27 +010095C00F354000,"Monster Jam Steel Titans",crash;nvdec;UE4,menus,2021-11-14 09:45:38 +010051B0131F0000,"Monster Jam Steel Titans 2",nvdec;UE4,playable,2022-10-24 17:17:59 +01004DE00DD44000,"Monster Puzzle",,playable,2020-09-28 22:23:10 +0100A0F00DA68000,"Monster Sanctuary",crash,ingame,2021-04-04 05:06:41 +0100D30010C42000,"Monster Truck Championship",slow;nvdec;online-broken;UE4,playable,2022-10-18 23:16:51 +01004E10142FE000,"Monster wo taoshite tsuyoi ken ya yoroi wo te ni shinasai. Shinde mo akiramezu ni tsuyoku nari nasai. Yuushatai ga maoh wo taosu sono hi wo shinzite imasu. - モンスターを倒して強い剣や鎧を手にしなさい。死んでも諦めずに強くなりなさい。勇者隊が魔王を倒すその日を信じています。",crash,ingame,2021-07-23 10:56:44 +010039F00EF70000,"Monstrum",,playable,2021-01-31 11:07:26 +0100C2E00B494000,"Moonfall Ultimate",nvdec,playable,2021-01-17 14:01:25 +0100E3D014ABC000,"Moorhuhn Jump and Run 'Traps and Treasures'",,playable,2024-03-08 15:10:02 +010045C00F274000,"Moorhuhn Kart 2",online-broken,playable,2022-10-28 21:10:35 +010040E00F642000,"Morbid: The Seven Acolytes",,playable,2022-08-09 17:21:58 +01004230123E0000,"More Dark",,playable,2020-12-15 16:01:06 +01005DA003E6E000,"Morphies Law",UE4;crash;ldn-untested;nvdec;online,menus,2020-11-22 17:05:29 +0100776003F0C000,"Morphite",,playable,2021-01-05 19:40:55 +0100F2200C984000,"Mortal Kombat 11",slow;nvdec;online-broken;ldn-broken,ingame,2024-06-19 02:22:17 +01006560184E6000,"Mortal Kombat™ 1",gpu,ingame,2024-09-04 15:45:47 +010032800D740000,"Mosaic",,playable,2020-08-11 13:07:35 +01002ED00B01C000,"Moto Racer 4",UE4;nvdec;online,playable,2021-04-08 19:09:11 +01003F200D0F2000,"Moto Rush GT",,playable,2022-08-05 11:23:55 +0100361007268000,"MotoGP™18",nvdec;UE4;ldn-untested,playable,2022-08-05 11:41:45 +01004B800D0E8000,"MotoGP™19",nvdec;online-broken;UE4,playable,2022-08-05 11:54:14 +01001FA00FBBC000,"MotoGP™20",ldn-untested,playable,2022-09-29 17:58:01 +01000F5013820000,"MotoGP™21",gpu;nvdec;online-broken;UE4;ldn-untested,ingame,2022-10-28 21:35:08 +010040401D564000,"MotoGP™24",gpu,ingame,2024-05-10 23:41:00 +01002A900D6D6000,"Motorsport Manager for Nintendo Switch™",nvdec,playable,2022-08-05 12:48:14 +01009DB00D6E0000,"Mountain Rescue Simulator",,playable,2022-09-20 16:36:48 +0100C4C00E73E000,"Moving Out",nvdec,playable,2021-06-07 21:17:24 +0100D3300F110000,"Mr Blaster",,playable,2022-09-14 17:56:24 +0100DCA011262000,"Mr. DRILLER DrillLand",nvdec,playable,2020-07-24 13:56:48 +010031F002B66000,"Mr. Shifty",slow,playable,2020-05-08 15:28:16 +01005EF00B4BC000,"Ms. Splosion Man",online,playable,2020-05-09 20:45:43 +010087C009246000,"Muddledash",services,ingame,2020-05-08 16:46:14 +01009D200952E000,"MudRunner - American Wilds",gpu;ldn-untested;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-16 11:40:52 +010073E008E6E000,"Mugsters",,playable,2021-01-28 17:57:17 +0100A8400471A000,"MUJO",,playable,2020-05-08 16:31:04 +0100211005E94000,"Mulaka",,playable,2021-01-28 18:07:20 +010038B00B9AE000,"Mummy Pinball",,playable,2022-08-05 16:08:11 +01008E200C5C2000,"Muse Dash",,playable,2020-06-06 14:41:29 +010035901046C000,"Mushroom Quest",,playable,2020-05-17 13:07:08 +0100700006EF6000,"Mushroom Wars 2",nvdec,playable,2020-09-28 15:26:08 +010046400F310000,"Music Racer",,playable,2020-08-10 08:51:23 +,"Musou Orochi 2 Ultimate",crash;nvdec,boots,2021-04-09 19:39:16 +0100F6000EAA8000,"Must Dash Amigos",,playable,2022-09-20 16:45:56 +01007B6006092000,"MUSYNX",,playable,2020-05-08 14:24:43 +0100C3E00ACAA000,"Mutant Football League: Dynasty Edition",online-broken,playable,2022-08-05 17:01:51 +01004BE004A86000,"Mutant Mudds Collection",,playable,2022-08-05 17:11:38 +0100E6B00DEA4000,"Mutant Year Zero: Road to Eden - Deluxe Edition",nvdec;UE4,playable,2022-09-10 13:31:10 +0100161009E5C000,"MX Nitro: Unleashed",,playable,2022-09-27 22:34:33 +0100218011E7E000,"MX vs ATV All Out",nvdec;UE4;vulkan-backend-bug,playable,2022-10-25 19:51:46 +0100D940063A0000,"MXGP3 - The Official Motocross Videogame",UE4;gpu;nvdec,ingame,2020-12-16 14:00:20 +01002C6012334000,"My Aunt is a Witch",,playable,2022-10-19 09:21:17 +0100F6F0118B8000,"My Butler",,playable,2020-06-27 13:46:23 +010031200B94C000,"My Friend Pedro",nvdec,playable,2021-05-28 11:19:17 +01000D700BE88000,"My Girlfriend is a Mermaid!?",nvdec,playable,2020-05-08 13:32:55 +010039000B68E000,"MY HERO ONE'S JUSTICE",UE4;crash;gpu;online,menus,2020-12-10 13:11:04 +01007E700DBF6000,"MY HERO ONE'S JUSTICE 2",UE4;gpu;nvdec,ingame,2020-12-18 14:08:47 +0100E4701373E000,"My Hidden Things",,playable,2021-04-15 11:26:06 +0100872012B34000,"My Little Dog Adventure",gpu,ingame,2020-12-10 17:47:37 +01008C600395A000,"My Little Riding Champion",slow,playable,2020-05-08 17:00:53 +010086B00C784000,"My Lovely Daughter: ReBorn",,playable,2022-11-24 17:25:32 +0100E7700C284000,"My Memory of Us",,playable,2022-08-20 11:03:14 +010028F00ABAE000,"My Riding Stables - Life with Horses",,playable,2022-08-05 21:39:07 +010042A00FBF0000,"My Riding Stables 2: A New Adventure",,playable,2021-05-16 14:14:59 +0100E25008E68000,"My Time at Portia",,playable,2021-05-28 12:42:55 +0100158011A08000,"My Universe - Cooking Star Restaurant",,playable,2022-10-19 10:00:44 +0100F71011A0A000,"My Universe - Fashion Boutique",nvdec,playable,2022-10-12 14:54:19 +0100CD5011A02000,"My Universe - PET CLINIC CATS & DOGS",crash;nvdec,boots,2022-02-06 02:05:53 +01006C301199C000,"My Universe - School Teacher",nvdec,playable,2021-01-21 16:02:52 +01000D5005974000,"N++ (NPLUSPLUS)",,playable,2022-08-05 21:54:58 +0100A6F00AC70000,"NAIRI: Tower of Shirin",nvdec,playable,2020-08-09 19:49:12 +010002F001220000,"NAMCO MUSEUM",ldn-untested,playable,2024-08-13 07:52:21 +0100DAA00AEE6000,"NAMCO MUSEUM™ ARCADE PAC™",,playable,2021-06-07 21:44:50 +,"NAMCOT COLLECTION",audio,playable,2020-06-25 13:35:22 +010072B00BDDE000,"Narcos: Rise of the Cartels",UE4;crash;nvdec,boots,2021-03-22 13:18:47 +01006BB00800A000,"NARUTO SHIPPUDEN: Ultimate Ninja STORM 3 Full Burst",nvdec,playable,2024-06-16 14:58:05 +010084D00CF5E000,"NARUTO SHIPPUDEN™: Ultimate Ninja® STORM 4 ROAD TO BORUTO",,playable,2024-06-29 13:04:22 +0100D2D0190A4000,"NARUTO X BORUTO Ultimate Ninja STORM CONNECTIONS",services-horizon,nothing,2024-07-25 05:16:48 +0100715007354000,"NARUTO: Ultimate Ninja STORM",nvdec,playable,2022-08-06 14:10:31 +0100545016D5E000,"NASCAR Rivals",crash;Incomplete,ingame,2023-04-21 01:17:47 +0100103011894000,"Naught",UE4,playable,2021-04-26 13:31:45 +01001AE00C1B2000,"NBA 2K Playgrounds 2",nvdec;online-broken;UE4;vulkan-backend-bug,playable,2022-08-06 14:40:38 +0100760002048000,"NBA 2K18",gpu;ldn-untested,ingame,2022-08-06 14:17:51 +01001FF00B544000,"NBA 2K19",crash;ldn-untested;services,nothing,2021-04-16 13:07:21 +0100E24011D1E000,"NBA 2K21",gpu,boots,2022-10-05 15:31:51 +0100ACA017E4E800,"NBA 2K23",,boots,2023-10-10 23:07:14 +010006501A8D8000,"NBA 2K24 Kobe Bryant Edition",cpu;gpu,boots,2024-08-11 18:23:08 +010002900294A000,"NBA Playgrounds",nvdec;online-broken;UE4,playable,2022-08-06 17:06:59 +0100F5A008126000,"NBA Playgrounds - Enhanced Edition",nvdec;online-broken;UE4,playable,2022-08-06 16:13:44 +0100BBC00E4F8000,"Need a packet?",,playable,2020-08-12 16:09:01 +010029B0118E8000,"Need for Speed™ Hot Pursuit Remastered",online-broken,playable,2024-03-20 21:58:02 +010023500B0BA000,"Nefarious",,playable,2020-12-17 03:20:33 +01008390136FC000,"Negative: The Way of Shinobi",nvdec,playable,2021-03-24 11:29:41 +010065F00F55A000,"Neighbours back From Hell",nvdec,playable,2022-10-12 15:36:48 +0100B4900AD3E000,"NEKOPARA Vol.1",nvdec,playable,2022-08-06 18:25:54 +010012900C782000,"NEKOPARA Vol.2",,playable,2020-12-16 11:04:47 +010045000E418000,"NEKOPARA Vol.3",,playable,2022-10-03 12:49:04 +010049F013656000,"NEKOPARA Vol.4",crash,ingame,2021-01-17 01:47:18 +01006ED00BC76000,"Nelke & the Legendary Alchemists ~Ateliers of the New World~",,playable,2021-01-28 19:39:42 +01005F000B784000,"Nelly Cootalot: The Fowl Fleet",,playable,2020-06-11 20:55:42 +01001AB0141A8000,"Neo : The World Ends with You (DEMO)- 新すばらしきこのせかい (体験版)",crash,ingame,2021-07-18 07:29:18 +0100EBB00D2F4000,"Neo Cab",,playable,2021-04-24 00:27:58 +010040000DB98000,"Neo Cab Demo",crash,boots,2020-06-16 00:14:00 +010006D0128B4000,"NEOGEO POCKET COLOR SELECTION Vol.1",,playable,2023-07-08 20:55:36 +0100BAB01113A000,"Neon Abyss",,playable,2022-10-05 15:59:44 +010075E0047F8000,"Neon Chrome",,playable,2022-08-06 18:38:34 +010032000EAC6000,"Neon Drive",,playable,2022-09-10 13:45:48 +0100B9201406A000,"Neon White",crash,ingame,2023-02-02 22:25:06 +0100743008694000,"Neonwall",nvdec,playable,2022-08-06 18:49:52 +01001A201331E000,"Neoverse Trinity Edition",,playable,2022-10-19 10:28:03 +01000B2011352000,"Nerdook Bundle Vol. 1",gpu;slow,ingame,2020-10-07 14:27:10 +01008B0010160000,"Nerved",UE4,playable,2022-09-20 17:14:03 +0100BA0004F38000,"NeuroVoider",,playable,2020-06-04 18:20:05 +0100C20012A54000,"Nevaeh",gpu;nvdec,ingame,2021-06-16 17:29:03 +010039801093A000,"Never Breakup",,playable,2022-10-05 16:12:12 +0100F79012600000,"Neverending Nightmares",crash;gpu,boots,2021-04-24 01:43:35 +0100A9600EDF8000,"Neverlast",slow,ingame,2020-07-13 23:55:19 +010013700DA4A000,"Neverwinter Nights: Enhanced Edition",gpu;nvdec,menus,2024-09-30 02:59:19 +01004C200100E000,"New Frontier Days ~Founding Pioneers~",,playable,2020-12-10 12:45:07 +0100F4300BF2C000,"New Pokémon Snap™",,playable,2023-01-15 23:26:57 +010017700B6C2000,"New Super Lucky's Tale",,playable,2024-03-11 14:14:10 +0100EA80032EA000,"New Super Mario Bros.™ U Deluxe",32-bit,playable,2023-10-08 02:06:37 +0100B9500E886000,"Newt One",,playable,2020-10-17 21:21:48 +01005A5011A44000,"Nexomon: Extinction",,playable,2020-11-30 15:02:22 +0100B69012EC6000,"Nexoria: Dungeon Rogue Heroes",gpu,ingame,2021-10-04 18:41:29 +0100271004570000,"Next Up Hero",online,playable,2021-01-04 22:39:36 +0100E5600D446000,"Ni no Kuni: Wrath of the White Witch",32-bit;nvdec,boots,2024-07-12 04:52:59 +0100EDD00D530000,"Nice Slice",nvdec,playable,2020-06-17 15:13:27 +01000EC010BF4000,"Niche - a genetics survival game",nvdec,playable,2020-11-27 14:01:11 +010010701AFB2000,"Nickelodeon All-Star Brawl 2",,playable,2024-06-03 14:15:01 +0100D6200933C000,"Nickelodeon Kart Racers",,playable,2021-01-07 12:16:49 +010058800F860000,"Nicky - The Home Alone Golf Ball",,playable,2020-08-08 13:45:39 +0100A95012668000,"Nicole",audout,playable,2022-10-05 16:41:44 +0100B8E016F76000,"NieR:Automata The End of YoRHa Edition",slow;crash,ingame,2024-05-17 01:06:34 +0100F3A0095A6000,"Night Call",nvdec,playable,2022-10-03 12:57:00 +0100921006A04000,"Night in the Woods",,playable,2022-12-03 20:17:54 +0100D8500A692000,"Night Trap - 25th Anniversary Edition",nvdec,playable,2022-08-08 13:16:14 +01005F4009112000,"Nightmare Boy: The New Horizons of Reigns of Dreams, a Metroidvania journey with little rusty nightmares, the empire of knight final boss",,playable,2021-01-05 15:52:29 +01006E700B702000,"Nightmares from the Deep 2: The Siren`s Call",nvdec,playable,2022-10-19 10:58:53 +0100628004BCE000,"Nights of Azure 2: Bride of the New Moon",crash;nvdec;regression,menus,2022-11-24 16:00:39 +010042300C4F6000,"Nightshade/百花百狼",nvdec,playable,2020-05-10 19:43:31 +0100AA0008736000,"Nihilumbra",,playable,2020-05-10 16:00:12 +0100D03003F0E000,"Nine Parchments",ldn-untested,playable,2022-08-07 12:32:08 +0100E2F014F46000,"NINJA GAIDEN Σ",nvdec,playable,2022-11-13 16:27:02 +0100696014F4A000,"NINJA GAIDEN Σ2",nvdec,playable,2024-07-31 21:53:48 +01002AF014F4C000,"NINJA GAIDEN: Master Collection",nvdec,playable,2023-08-11 08:25:31 +010088E003A76000,"Ninja Shodown",,playable,2020-05-11 12:31:21 +010081D00A480000,"Ninja Striker!",,playable,2020-12-08 19:33:29 +0100CCD0073EA000,"Ninjala",online-broken;UE4,boots,2024-07-03 20:04:49 +010003C00B868000,"Ninjin: Clash of Carrots",online-broken,playable,2024-07-10 05:12:26 +0100746010E4C000,"NinNinDays",,playable,2022-11-20 15:17:29 +0100C9A00ECE6000,"Nintendo 64™ – Nintendo Switch Online",gpu;vulkan,ingame,2024-04-23 20:21:07 +0100D870045B6000,"Nintendo Entertainment System™ - Nintendo Switch Online",online,playable,2022-07-01 15:45:06 +0100C4B0034B2000,"Nintendo Labo Toy-Con 01 Variety Kit",gpu,ingame,2022-08-07 12:56:07 +01001E9003502000,"Nintendo Labo Toy-Con 03 Vehicle Kit",services;crash,menus,2022-08-03 17:20:11 +0100165003504000,"Nintendo Labo Toy-Con 04 VR Kit",services;crash,boots,2023-01-17 22:30:24 +01009AB0034E0000,"Nintendo Labo™ Toy-Con 02: Robot Kit",gpu,ingame,2022-08-07 13:03:19 +0100D2F00D5C0000,"Nintendo Switch™ Sports",deadlock,boots,2024-09-10 14:20:24 +01000EE017182000,"Nintendo Switch™ Sports Online Play Test",gpu,ingame,2022-03-16 07:44:12 +010037200C72A000,"Nippon Marathon",nvdec,playable,2021-01-28 20:32:46 +010020901088A000,"Nirvana Pilot Yume",,playable,2022-10-29 11:49:49 +01009B400ACBA000,"No Heroes Here",online,playable,2020-05-10 02:41:57 +0100853015E86000,"No Man's Sky",gpu,ingame,2024-07-25 05:18:17 +0100F0400F202000,"No More Heroes",32-bit,playable,2022-09-13 07:44:27 +010071400F204000,"No More Heroes 2: Desperate Struggle",32-bit;nvdec,playable,2022-11-19 01:38:13 +01007C600EB42000,"No More Heroes 3",gpu;UE4,ingame,2024-03-11 17:06:19 +01009F3011004000,"No Straight Roads",nvdec,playable,2022-10-05 17:01:38 +0100F7D00A1BC000,"NO THING",,playable,2021-01-04 19:06:01 +0100542012884000,"Nongunz: Doppelganger Edition",,playable,2022-10-29 12:00:39 +010016E011EFA000,"Norman's Great Illusion",,playable,2020-12-15 19:28:24 +01001A500AD6A000,"Norn9 ~Norn + Nonette~ LOFN",nvdec;vulkan-backend-bug,playable,2022-12-09 09:29:16 +01004840086FE000,"NORTH",nvdec,playable,2021-01-05 16:17:44 +0100A9E00D97A000,"Northgard",crash,menus,2022-02-06 02:05:35 +01008AE019614000,"nOS new Operating System",,playable,2023-03-22 16:49:08 +0100CB800B07E000,"NOT A HERO: SUPER SNAZZY EDITION",,playable,2021-01-28 19:31:24 +01004D500D9BE000,"Not Not - A Brain Buster",,playable,2020-05-10 02:05:26 +0100DAF00D0E2000,"Not Tonight: Take Back Control Edition",nvdec,playable,2022-10-19 11:48:47 +0100343013248000,"Nubarron: The adventure of an unlucky gnome",,playable,2020-12-17 16:45:17 +01005140089F6000,"Nuclien",,playable,2020-05-10 05:32:55 +010002700C34C000,"Numbala",,playable,2020-05-11 12:01:07 +010020500C8C8000,"Number Place 10000",gpu,menus,2021-11-24 09:14:23 +010003701002C000,"Nurse Love Syndrome",,playable,2022-10-13 10:05:22 +0000000000000000,"nx-hbmenu",Needs Update;homebrew,boots,2024-04-06 22:05:32 +,"nxquake2",services;crash;homebrew,nothing,2022-08-04 23:14:04 +010049F00EC30000,"Nyan Cat: Lost in Space",online,playable,2021-06-12 13:22:03 +01002E6014FC4000,"O---O",,playable,2022-10-29 12:12:14 +010074600CC7A000,"OBAKEIDORO!",nvdec;online,playable,2020-10-16 16:57:34 +01002A000C478000,"Observer",UE4;gpu;nvdec,ingame,2021-03-03 20:19:45 +01007D7001D0E000,"Oceanhorn - Monster of Uncharted Seas",,playable,2021-01-05 13:55:22 +01006CB010840000,"Oceanhorn 2: Knights of the Lost Realm",,playable,2021-05-21 18:26:10 +010096B00A08E000,"Octocopter: Double or Squids",,playable,2021-01-06 01:30:16 +0100CAB006F54000,"Octodad: Dadliest Catch",crash,boots,2021-04-23 15:26:12 +0100A3501946E000,"OCTOPATH TRAVELER II",gpu;amd-vendor-bug,ingame,2024-09-22 11:39:20 +010057D006492000,"Octopath Traveler™",UE4;crash;gpu,ingame,2020-08-31 02:34:36 +010084300C816000,"Odallus: The Dark Call",,playable,2022-08-08 12:37:58 +0100BB500EE3C000,"Oddworld: Munch's Oddysee",gpu;nvdec,ingame,2021-06-17 12:11:50 +01005E700ABB8000,"Oddworld: New 'n' Tasty",nvdec,playable,2021-06-17 17:51:32 +0100D210177C6000,"ODDWORLD: SOULSTORM",services-horizon;crash,boots,2024-08-18 13:13:26 +01002EA00ABBA000,"Oddworld: Stranger's Wrath",crash;nvdec;loader-allocator,menus,2021-11-23 09:23:21 +010029F00C876000,"Odium to the Core",gpu,ingame,2021-01-08 14:03:52 +01006F5013202000,"Off And On Again",,playable,2022-10-29 19:46:26 +01003CD00E8BC000,"Offroad Racing - Buggy X ATV X Moto",online-broken;UE4,playable,2022-09-14 18:53:22 +01003B900AE12000,"Oh My Godheads: Party Edition",,playable,2021-04-15 11:04:11 +0100F45006A00000,"Oh...Sir! The Hollywood Roast",,ingame,2020-12-06 00:42:30 +010030B00B2F6000,"OK K.O.! Let’s Play Heroes",nvdec,playable,2021-01-11 18:41:02 +0100276009872000,"OKAMI HD",nvdec,playable,2024-04-05 06:24:58 +01006AB00BD82000,"OkunoKA",online-broken,playable,2022-08-08 14:41:51 +0100CE2007A86000,"Old Man's Journey",nvdec,playable,2021-01-28 19:16:52 +0100C3D00923A000,"Old School Musical",,playable,2020-12-10 12:51:12 +010099000BA48000,"Old School Racer 2",,playable,2020-10-19 12:11:26 +0100E0200B980000,"OlliOlli: Switch Stance",gpu,boots,2024-04-25 08:36:37 +0100F9D00C186000,"Olympia Soiree",,playable,2022-12-04 21:07:12 +0100A8B00E14A000,"Olympic Games Tokyo 2020 – The Official Video Game™",ldn-untested;nvdec;online,playable,2021-01-06 01:20:24 +01001D600E51A000,"Omega Labyrinth Life",,playable,2021-02-23 21:03:03 +,"Omega Vampire",nvdec,playable,2020-10-17 19:15:35 +0100CDC00C40A000,"Omensight: Definitive Edition",UE4;crash;nvdec,ingame,2020-07-26 01:45:14 +01006DB00D970000,"OMG Zombies!",32-bit,playable,2021-04-12 18:04:45 +010014E017B14000,"OMORI",,playable,2023-01-07 20:21:02 +,"Once Upon A Coma",nvdec,playable,2020-08-01 12:09:39 +0100BD3006A02000,"One More Dungeon",,playable,2021-01-06 09:10:58 +010076600FD64000,"One Person Story",,playable,2020-07-14 11:51:02 +0100774009CF6000,"ONE PIECE Pirate Warriors 3 Deluxe Edition",nvdec,playable,2020-05-10 06:23:52 +01008FE00E2F6000,"ONE PIECE: PIRATE WARRIORS 4",online-broken;ldn-untested,playable,2022-09-27 22:55:46 +0100574002AF4000,"ONE PIECE: Unlimited World Red Deluxe Edition",,playable,2020-05-10 22:26:32 +0100EEA00E3EA000,"One-Way Ticket",UE4,playable,2020-06-20 17:20:49 +0100463013246000,"Oneiros",,playable,2022-10-13 10:17:22 +010057C00D374000,"Oniken",,playable,2022-09-10 14:22:38 +010037900C814000,"Oniken: Unstoppable Edition",,playable,2022-08-08 14:52:06 +0100416008A12000,"Onimusha: Warlords",nvdec,playable,2020-07-31 13:08:39 +0100CF4011B2A000,"OniNaki",nvdec,playable,2021-02-27 21:52:42 +010074000BE8E000,"oOo: Ascension",,playable,2021-01-25 14:13:34 +0100D5400BD90000,"Operación Triunfo 2017",services;nvdec,ingame,2022-08-08 15:06:42 +01006CF00CFA4000,"Operencia: The Stolen Sun",UE4;nvdec,playable,2021-06-08 13:51:07 +01004A200BE82000,"OPUS Collection",,playable,2021-01-25 15:24:04 +010049C0075F0000,"OPUS: The Day We Found Earth",nvdec,playable,2021-01-21 18:29:31 +0100F9A012892000,"Ord.",,playable,2020-12-14 11:59:06 +010061D00DB74000,"Ori and the Blind Forest: Definitive Edition",nvdec;online-broken,playable,2022-09-14 19:58:13 +010005800F46E000,"Ori and the Blind Forest: Definitive Edition Demo",,playable,2022-09-10 14:40:12 +01008DD013200000,"Ori and the Will of the Wisps",,playable,2023-03-07 00:47:13 +01006C70102EA000,"Orn: The Tiny Forest Sprite",UE4;gpu,ingame,2020-08-07 14:25:30 +0100E5900F49A000,"Othercide",nvdec,playable,2022-10-05 19:04:38 +01006AA00EE44000,"Otokomizu",,playable,2020-07-13 21:00:44 +01006AF013A9E000,"Otti: The House Keeper",,playable,2021-01-31 12:11:24 +01000320060AC000,"OTTTD: Over The Top Tower Defense",slow,ingame,2020-10-10 19:31:07 +010097F010FE6000,"Our Two Bedroom Story",gpu;nvdec,ingame,2023-10-10 17:41:20 +0100D5D00C6BE000,"Our World Is Ended.",nvdec,playable,2021-01-19 22:46:57 +01005A700A166000,"OUT OF THE BOX",,playable,2021-01-28 01:34:27 +0100D9F013102000,"Outbreak Lost Hope",crash,boots,2021-04-26 18:01:23 +01006EE013100000,"Outbreak The Nightmare Chronicles",,playable,2022-10-13 10:41:57 +0100A0D013464000,"Outbreak: Endless Nightmares",,playable,2022-10-29 12:35:49 +0100C850130FE000,"Outbreak: Epidemic",,playable,2022-10-13 10:27:31 +0100B450130FC000,"Outbreak: The New Nightmare",,playable,2022-10-19 15:42:07 +0100B8900EFA6000,"Outbuddies DX",gpu,ingame,2022-08-04 22:39:24 +0100DE70085E8000,"Outlast 2",crash;nvdec,ingame,2022-01-22 22:28:05 +01008D4007A1E000,"Outlast: Bundle of Terror",nvdec;loader-allocator;vulkan-backend-bug,playable,2024-01-27 04:44:26 +01009B900401E000,"Overcooked Special Edition",,playable,2022-08-08 20:48:52 +01006FD0080B2000,"Overcooked! 2",ldn-untested,playable,2022-08-08 16:48:10 +0100F28011892000,"Overcooked! All You Can Eat",ldn-untested;online,playable,2021-04-15 10:33:52 +0100D7F00EC64000,"Overlanders",nvdec;UE4,playable,2022-09-14 20:15:06 +01008EA00E816000,"OVERPASS™",online-broken;UE4;ldn-untested,playable,2022-10-17 15:29:47 +0100647012F62000,"Override 2: Super Mech League",online-broken;UE4,playable,2022-10-19 15:56:04 +01008A700F7EE000,"Override: Mech City Brawl - Super Charged Mega Edition",nvdec;online-broken;UE4,playable,2022-09-20 17:33:32 +0100F8600E21E000,"Overwatch® 2",deadlock,boots,2022-09-14 20:22:22 +01005F000CC18000,"OVERWHELM",,playable,2021-01-21 18:37:18 +0100BC2004FF4000,"Owlboy",,playable,2020-10-19 14:24:45 +0100AD9012510000,"PAC-MAN™ 99",gpu;online-broken,ingame,2024-04-23 00:48:25 +010024C001224000,"PAC-MAN™ CHAMPIONSHIP EDITION 2 PLUS",,playable,2021-01-19 22:06:18 +011123900AEE0000,"Paladins",online,menus,2021-01-21 19:21:37 +0100F0D004CAE000,"PAN-PAN A tiny big adventure",audout,playable,2021-01-25 14:42:00 +010083700B730000,"Pang Adventures",,playable,2021-04-10 12:16:59 +010006E00DFAE000,"Pantsu Hunter: Back to the 90s",,playable,2021-02-19 15:12:27 +0100C6A00E94A000,"Panzer Dragoon: Remake",,playable,2020-10-04 04:03:55 +01004AE0108E0000,"Panzer Paladin",,playable,2021-05-05 18:26:00 +010004500DE50000,"Paper Dolls Original",UE4;crash,boots,2020-07-13 20:26:21 +0100A3900C3E2000,"Paper Mario™: The Origami King",audio;Needs Update,playable,2024-08-09 18:27:40 +0100ECD018EBE000,"Paper Mario™: The Thousand-Year Door",gpu;intel-vendor-bug;slow,ingame,2025-01-07 04:27:35 +01006AD00B82C000,"Paperbound Brawlers",,playable,2021-01-25 14:32:15 +0100DC70174E0000,"Paradigm Paradox",vulkan-backend-bug,playable,2022-12-03 22:28:13 +01007FB010DC8000,"Paradise Killer",UE4,playable,2022-10-05 19:33:05 +010063400B2EC000,"Paranautical Activity",,playable,2021-01-25 13:49:19 +01006B5012B32000,"Part Time UFO™",crash,ingame,2023-03-03 03:13:05 +01007FC00A040000,"Party Arcade",online-broken;UE4;ldn-untested,playable,2022-08-09 12:32:53 +0100B8E00359E000,"Party Golf",nvdec,playable,2022-08-09 12:38:30 +010022801217E000,"Party Hard 2",nvdec,playable,2022-10-05 20:31:48 +010027D00F63C000,"Party Treats",,playable,2020-07-02 00:05:00 +01001E500EA16000,"Path of Sin: Greed",crash,menus,2021-11-24 08:00:00 +010031F006E76000,"Pato Box",,playable,2021-01-25 15:17:52 +01001F201121E000,"PAW Patrol Mighty Pups Save Adventure Bay",,playable,2022-10-13 12:17:55 +0100360016800000,"PAW Patrol: Grand Prix",gpu,ingame,2024-05-03 16:16:11 +0100CEC003A4A000,"PAW Patrol: On a Roll!",nvdec,playable,2021-01-28 21:14:49 +01000C4015030000,"Pawapoke R",services-horizon,nothing,2024-05-14 14:28:32 +0100A56006CEE000,"Pawarumi",online-broken,playable,2022-09-10 15:19:33 +0100274004052000,"PAYDAY 2",nvdec;online-broken;ldn-untested,playable,2022-08-09 12:56:39 +010085700ABC8000,"PBA Pro Bowling",nvdec;online-broken;UE4,playable,2022-09-14 23:00:49 +0100F95013772000,"PBA Pro Bowling 2021",online-broken;UE4,playable,2022-10-19 16:46:40 +010072800CBE8000,"PC Building Simulator",,playable,2020-06-12 00:31:58 +010002100CDCC000,"Peaky Blinders: Mastermind",,playable,2022-10-19 16:56:35 +010028A0048A6000,"Peasant Knight",,playable,2020-12-22 09:30:50 +0100C510049E0000,"Penny-Punching Princess",,playable,2022-08-09 13:37:05 +0100CA901AA9C000,"Penny’s Big Breakaway",amd-vendor-bug,playable,2024-05-27 07:58:51 +0100563005B70000,"Perception",UE4;crash;nvdec,menus,2020-12-18 11:49:23 +010011700D1B2000,"Perchang",,playable,2021-01-25 14:19:52 +010089F00A3B4000,"Perfect Angle",,playable,2021-01-21 18:48:45 +01005CD012DC0000,"Perky Little Things",crash;vulkan,boots,2024-08-04 07:22:46 +01005EB013FBA000,"Persephone",,playable,2021-03-23 22:39:19 +0100A0300FC3E000,"Perseverance",,playable,2020-07-13 18:48:27 +010062B01525C000,"Persona 4 Golden",,playable,2024-08-07 17:48:07 +01005CA01580E000,"Persona 5 Royal",gpu,ingame,2024-08-17 21:45:15 +010087701B092000,"Persona 5 Tactica",,playable,2024-04-01 22:21:03 +,"Persona 5: Scramble",deadlock,boots,2020-10-04 03:22:29 +0100801011C3E000,"Persona® 5 Strikers",nvdec;mac-bug,playable,2023-09-26 09:36:01 +010044400EEAE000,"Petoons Party",nvdec,playable,2021-03-02 21:07:58 +010053401147C000,"PGA TOUR 2K21",deadlock;nvdec,ingame,2022-10-05 21:53:50 +0100DDD00C0EA000,"Phantaruk",,playable,2021-06-11 18:09:54 +0100063005C86000,"Phantom Breaker: Battle Grounds Overdrive",audio;nvdec,playable,2024-02-29 14:20:35 +010096F00E5B0000,"Phantom Doctrine",UE4,playable,2022-09-15 10:51:50 +0100C31005A50000,"Phantom Trigger",,playable,2022-08-09 14:27:30 +0100CB000A142000,"Phoenix Wright: Ace Attorney Trilogy",,playable,2023-09-15 22:03:12 +0100DA400F624000,"PHOGS!",online,playable,2021-01-18 15:18:37 +0100BF1003B9A000,"Physical Contact: 2048",slow,playable,2021-01-25 15:18:32 +01008110036FE000,"Physical Contact: SPEED",,playable,2022-08-09 14:40:46 +010077300A86C000,"PIANISTA",online-broken,playable,2022-08-09 14:52:56 +010012100E8DC000,"PICROSS LORD OF THE NAZARICK",,playable,2023-02-08 15:54:56 +0100C9600A88E000,"PICROSS S2",,playable,2020-10-15 12:01:40 +010079200D330000,"PICROSS S3",,playable,2020-10-15 11:55:27 +0100C250115DC000,"PICROSS S4",,playable,2020-10-15 12:33:46 +0100AC30133EC000,"PICROSS S5",,playable,2022-10-17 18:51:42 +010025901432A000,"PICROSS S6",,playable,2022-10-29 17:52:19 +01009B2016104000,"PICROSS S7",,playable,2022-02-16 12:51:25 +010043B00E1CE000,"PictoQuest",,playable,2021-02-27 15:03:16 +0100D06003056000,"Piczle Lines DX",UE4;crash;nvdec,menus,2020-11-16 04:21:31 +010017600B532000,"Piczle Lines DX 500 More Puzzles!",UE4,playable,2020-12-15 23:42:51 +01000FD00D5CC000,"Pig Eat Ball",services,ingame,2021-11-30 01:57:45 +01001CB0106F8000,"Pikmin 3 Deluxe Demo",32-bit;crash;demo;gpu,ingame,2021-06-16 18:38:07 +0100E0B019974000,"Pikmin 4 Demo",gpu;nvdec;UE4;demo;amd-vendor-bug,ingame,2023-09-22 21:41:08 +0100AA80194B0000,"Pikmin™ 1",audio,ingame,2024-05-28 18:56:11 +0100D680194B2000,"Pikmin™ 1+2",gpu,ingame,2023-07-31 08:53:41 +0100F4C009322000,"Pikmin™ 3 Deluxe",gpu;32-bit;nvdec;Needs Update,ingame,2024-09-03 00:28:26 +0100B7C00933A000,"Pikmin™ 4",gpu;crash;UE4,ingame,2024-08-26 03:39:08 +0100D6200E130000,"Pillars of Eternity: Complete Edition",,playable,2021-02-27 00:24:21 +01007A500B0B2000,"Pilot Sports",,playable,2021-01-20 15:04:17 +0100DA70186D4000,"Pinball FX",,playable,2024-05-03 17:09:11 +0100DB7003828000,"Pinball FX3",online-broken,playable,2022-11-11 23:49:07 +01002BA00D662000,"Pine",slow,ingame,2020-07-29 16:57:39 +010041100B148000,"Pinstripe",,playable,2020-11-26 10:40:40 +01002B20174EE000,"Piofiore: Episodio 1926",,playable,2022-11-23 18:36:05 +01009240117A2000,"Piofiore: Fated Memories",nvdec,playable,2020-11-30 14:27:50 +0100EA2013BCC000,"Pixel Game Maker Series Puzzle Pedestrians",,playable,2022-10-24 20:15:50 +0100859013CE6000,"Pixel Game Maker Series Werewolf Princess Kaguya",crash;services,nothing,2021-03-26 00:23:07 +010060A00F5E8000,"Pixel Gladiator",,playable,2020-07-08 02:41:26 +010000E00E612000,"Pixel Puzzle Makeout League",,playable,2022-10-13 12:34:00 +0100382011002000,"PixelJunk Eden 2",crash,ingame,2020-12-17 11:55:52 +0100E4D00A690000,"PixelJunk™ Monsters 2",,playable,2021-06-07 03:40:01 +01004A900C352000,"Pizza Titan Ultra",nvdec,playable,2021-01-20 15:58:42 +05000FD261232000,"Pizza Tower",crash,ingame,2024-09-16 00:21:56 +0100FF8005EB2000,"Plague Road",,playable,2022-08-09 15:27:14 +010030B00C316000,"Planescape: Torment and Icewind Dale: Enhanced Editions",cpu;32-bit;crash;Needs Update,boots,2022-09-10 03:58:26 +010003C0099EE000,"PLANET ALPHA",UE4;gpu,ingame,2020-12-16 14:42:20 +01007EA019CFC000,"Planet Cube: Edge",,playable,2023-03-22 17:10:12 +0100F0A01F112000,"planetarian: The Reverie of a Little Planet & Snow Globe",,playable,2020-10-17 20:26:20 +010087000428E000,"Plantera Deluxe",,playable,2022-08-09 15:36:28 +0100C56010FD8000,"Plants vs. Zombies: Battle for Neighborville™ Complete Edition",gpu;audio;crash,boots,2024-09-02 12:58:14 +0100E5B011F48000,"PLOID SAGA",,playable,2021-04-19 16:58:45 +01009440095FE000,"Pode",nvdec,playable,2021-01-25 12:58:35 +010086F0064CE000,"Poi: Explorer Edition",nvdec,playable,2021-01-21 19:32:00 +0100EB6012FD2000,"Poison Control",,playable,2021-05-16 14:01:54 +010072400E04A000,"Pokémon Café ReMix",,playable,2021-08-17 20:00:04 +01003D200BAA2000,"Pokémon Mystery Dungeon™: Rescue Team DX",mac-bug,playable,2024-01-21 00:16:32 +01008DB008C2C000,"Pokémon Shield + Pokémon Shield Expansion Pass",deadlock;crash;online-broken;ldn-works;LAN,ingame,2024-08-12 07:20:22 +0100ABF008968000,"Pokémon Sword + Pokémon Sword Expansion Pass",deadlock;crash;online-broken;ldn-works;LAN,ingame,2024-08-26 15:40:37 +01009AD008C4C000,"Pokémon: Let's Go, Pikachu! demo",slow;demo,playable,2023-11-26 11:23:20 +0100000011D90000,"Pokémon™ Brilliant Diamond",gpu;ldn-works,ingame,2024-08-28 13:26:35 +010015F008C54000,"Pokémon™ HOME",Needs Update;crash;services,menus,2020-12-06 06:01:51 +01001F5010DFA000,"Pokémon™ Legends: Arceus",gpu;Needs Update;ldn-works,ingame,2024-09-19 10:02:02 +01005D100807A000,"Pokémon™ Quest",,playable,2022-02-22 16:12:32 +0100A3D008C5C000,"Pokémon™ Scarlet",gpu;nvdec;ldn-works;amd-vendor-bug,ingame,2023-12-14 13:18:29 +01008F6008C5E000,"Pokémon™ Violet",gpu;nvdec;ldn-works;amd-vendor-bug;mac-bug,ingame,2024-07-30 02:51:48 +0100187003A36000,"Pokémon™: Let’s Go, Eevee!",crash;nvdec;online-broken;ldn-broken,ingame,2024-06-01 15:03:04 +010003F003A34000,"Pokémon™: Let’s Go, Pikachu!",crash;nvdec;online-broken;ldn-broken,ingame,2024-03-15 07:55:41 +0100B3F000BE2000,"Pokkén Tournament™ DX",nvdec;ldn-works;opengl-backend-bug;LAN;amd-vendor-bug;intel-vendor-bug,playable,2024-07-18 23:11:08 +010030D005AE6000,"Pokkén Tournament™ DX Demo",demo;opengl-backend-bug,playable,2022-08-10 12:03:19 +0100A3500B4EC000,"Polandball: Can Into Space",,playable,2020-06-25 15:13:26 +0100EAB00605C000,"Poly Bridge",services,playable,2020-06-08 23:32:41 +010017600B180000,"Polygod",slow;regression,ingame,2022-08-10 14:38:14 +010074B00ED32000,"Polyroll",gpu,boots,2021-07-01 16:16:50 +010096B01179A000,"Ponpu",,playable,2020-12-16 19:09:34 +01005C5011086000,"Pooplers",,playable,2020-11-02 11:52:10 +01007EF013CA0000,"Port Royale 4",crash;nvdec,menus,2022-10-30 14:34:06 +01007BB017812000,"Portal",,playable,2024-06-12 03:48:29 +0100ABD01785C000,"Portal 2",gpu,ingame,2023-02-20 22:44:15 +010050D00FE0C000,"Portal Dogs",,playable,2020-09-04 12:55:46 +0100437004170000,"Portal Knights",ldn-untested;online,playable,2021-05-27 19:29:04 +01005FC010EB2000,"Potata: Fairy Flower",nvdec,playable,2020-06-17 09:51:34 +01000A4014596000,"Potion Party",,playable,2021-05-06 14:26:54 +0100E1E00CF1A000,"Power Rangers: Battle for the Grid",,playable,2020-06-21 16:52:42 +0100D1C01C194000,"Powerful Pro Baseball 2024-2025",gpu,ingame,2024-08-25 06:40:48 +01008E100E416000,"PowerSlave Exhumed",gpu,ingame,2023-07-31 23:19:10 +010054F01266C000,"Prehistoric Dude",gpu,ingame,2020-10-12 12:38:48 +,"Pretty Princess Magical Coordinate",,playable,2020-10-15 11:43:41 +01007F00128CC000,"Pretty Princess Party",,playable,2022-10-19 17:23:58 +010009300D278000,"Preventive Strike",nvdec,playable,2022-10-06 10:55:51 +0100210019428000,"Prince of Persia The Lost Crown",crash,ingame,2024-06-08 21:31:58 +01007A3009184000,"Princess Peach™: Showtime!",UE4,playable,2024-09-21 13:39:45 +010024701DC2E000,"Princess Peach™: Showtime! Demo",UE4;demo,playable,2024-03-10 17:46:45 +01001FA01451C000,"Prinny Presents NIS Classics Volume 1: Phantom Brave: The Hermuda Triangle Remastered / Soul Nomad & the World Eaters",crash;Needs Update,boots,2023-02-02 07:23:09 +01008FA01187A000,"Prinny® 2: Dawn of Operation Panties, Dood!",32-bit,playable,2022-10-13 12:42:58 +01007A0011878000,"Prinny®: Can I Really Be the Hero?",32-bit;nvdec,playable,2023-10-22 09:25:25 +010007F00879E000,"PriPara: All Idol Perfect Stage",,playable,2022-11-22 16:35:52 +010029200AB1C000,"Prison Architect: Nintendo Switch™ Edition",,playable,2021-04-10 12:27:58 +0100C1801B914000,"Prison City",gpu,ingame,2024-03-01 08:19:33 +0100F4800F872000,"Prison Princess",,playable,2022-11-20 15:00:25 +0100A9800A1B6000,"Professional Construction – The Simulation",slow,playable,2022-08-10 15:15:45 +010077B00BDD8000,"Professional Farmer: Nintendo Switch™ Edition",slow,playable,2020-12-16 13:38:19 +010018300C83A000,"Professor Lupo and his Horrible Pets",,playable,2020-06-12 00:08:45 +0100D1F0132F6000,"Professor Lupo: Ocean",,playable,2021-04-14 16:33:33 +0100BBD00976C000,"Project Highrise: Architect's Edition",,playable,2022-08-10 17:19:12 +0100ACE00DAB6000,"Project Nimbus: Complete Edition",nvdec;UE4;vulkan-backend-bug,playable,2022-08-10 17:35:43 +01002980140F6000,"Project TRIANGLE STRATEGY™ Debut Demo",UE4;demo,playable,2022-10-24 21:40:27 +0100BDB01150E000,"Project Warlock",,playable,2020-06-16 10:50:41 +,"Psikyo Collection Vol 1",32-bit,playable,2020-10-11 13:18:47 +0100A2300DB78000,"Psikyo Collection Vol. 3",,ingame,2021-06-07 02:46:23 +01009D400C4A8000,"Psikyo Collection Vol.2",32-bit,playable,2021-06-07 03:22:07 +01007A200F2E2000,"Psikyo Shooting Stars Alpha",32-bit,playable,2021-04-13 12:03:43 +0100D7400F2E4000,"Psikyo Shooting Stars Bravo",32-bit,playable,2021-06-14 12:09:07 +0100EC100A790000,"PSYVARIAR DELTA",nvdec,playable,2021-01-20 13:01:46 +,"Puchitto kurasutā",Need-Update;crash;services,menus,2020-07-04 16:44:28 +0100D61010526000,"Pulstario",,playable,2022-10-06 11:02:01 +01009AE00B788000,"Pumped BMX Pro",nvdec;online-broken,playable,2022-09-20 17:40:50 +01006C10131F6000,"Pumpkin Jack",nvdec;UE4,playable,2022-10-13 12:52:32 +010016400F07E000,"Push the Crate",nvdec;UE4,playable,2022-09-15 13:28:41 +0100B60010432000,"Push the Crate 2",UE4;gpu;nvdec,ingame,2021-06-10 14:20:01 +0100F1200F6D8000,"Pushy and Pully in Blockland",,playable,2020-07-04 11:44:41 +0100AAE00CAB4000,"Puyo Puyo Champions",online,playable,2020-06-19 11:35:08 +010038E011940000,"Puyo Puyo™ Tetris® 2",ldn-untested,playable,2023-09-26 11:35:25 +0100C5700ECE0000,"Puzzle & Dragons GOLD",slow,playable,2020-05-13 15:09:34 +010079E01A1E0000,"Puzzle Bobble Everybubble!",audio;ldn-works,playable,2023-06-10 03:53:40 +010043100F0EA000,"Puzzle Book",,playable,2020-09-28 13:26:01 +0100476004A9E000,"Puzzle Box Maker",nvdec;online-broken,playable,2022-08-10 18:00:52 +0100A4E017372000,"Pyramid Quest",gpu,ingame,2023-08-16 21:14:52 +0100F1100E606000,"Q-YO Blaster",gpu,ingame,2020-06-07 22:36:53 +010023600AA34000,"Q.U.B.E. 2",UE4,playable,2021-03-03 21:38:57 +0100A8D003BAE000,"Qbics Paint",gpu;services,ingame,2021-06-07 10:54:09 +0100BA5012E54000,"QUAKE",gpu;crash,menus,2022-08-08 12:40:34 +010048F0195E8000,"Quake II",,playable,2023-08-15 03:42:14 +,"QuakespasmNX",crash;homebrew,nothing,2022-07-23 19:28:07 +010045101288A000,"Quantum Replica",nvdec;UE4,playable,2022-10-30 21:17:22 +0100F1400BA88000,"Quarantine Circular",,playable,2021-01-20 15:24:15 +0100DCF00F13A000,"Queen's Quest 4: Sacred Truce",nvdec,playable,2022-10-13 12:59:21 +0100492012378000,"Quell",gpu,ingame,2021-06-11 15:59:53 +01001DE005012000,"Quest of Dungeons",,playable,2021-06-07 10:29:22 +,"QuietMansion2",,playable,2020-09-03 14:59:35 +0100AF100EE76000,"Quiplash 2 InterLASHional: The Say Anything Party Game!",online-working,playable,2022-10-19 17:43:45 +0100E5400BE64000,"R-Type Dimensions EX",,playable,2020-10-09 12:04:43 +0100F930136B6000,"R-Type® Final 2",slow;nvdec;UE4,ingame,2022-10-30 21:46:29 +01007B0014300000,"R-Type® Final 2 Demo",slow;nvdec;UE4;demo,ingame,2022-10-24 21:57:42 +0100B5A004302000,"R.B.I. Baseball 17",online-working,playable,2022-08-11 11:55:47 +01005CC007616000,"R.B.I. Baseball 18",nvdec;online-working,playable,2022-08-11 11:27:52 +0100FCB00BF40000,"R.B.I. Baseball 19",nvdec;online-working,playable,2022-08-11 11:43:52 +010061400E7D4000,"R.B.I. Baseball 20",,playable,2021-06-15 21:16:29 +0100B4A0115CA000,"R.B.I. Baseball 21",online-working,playable,2022-10-24 22:31:45 +01005BF00E4DE000,"Rabi-Ribi",,playable,2022-08-06 17:02:44 +010075D00DD04000,"Race with Ryan",UE4;gpu;nvdec;slow,ingame,2020-11-16 04:35:33 +0100B8100C54A000,"Rack N Ruin",,playable,2020-09-04 15:20:26 +010024400C516000,"RAD",gpu;crash;UE4,menus,2021-11-29 02:01:56 +010000600CD54000,"Rad Rodgers Radical Edition",nvdec;online-broken,playable,2022-08-10 19:57:23 +0100DA400E07E000,"Radiation City",crash,ingame,2022-09-30 11:15:04 +01009E40095EE000,"Radiation Island",opengl;vulkan-backend-bug,ingame,2022-08-11 10:51:04 +0100C8B00D2BE000,"Radical Rabbit Stew",,playable,2020-08-03 12:02:56 +0100BAD013B6E000,"Radio Commander",nvdec,playable,2021-03-24 11:20:46 +01008FA00ACEC000,"RADIOHAMMER STATION",audout,playable,2021-02-26 20:20:06 +01003D00099EC000,"Raging Justice",,playable,2021-06-03 14:06:50 +01005CD013116000,"Raiden IV x Mikado Remix [ 雷電Ⅳ×MIKADO remix ]",,playable,2022-07-29 15:50:13 +01002B000D97E000,"Raiden V: Director's Cut",deadlock;nvdec,boots,2024-07-12 07:31:46 +01002EE00DC02000,"Railway Empire - Nintendo Switch™ Edition",nvdec,playable,2022-10-03 13:53:50 +01003C700D0DE000,"Rain City",,playable,2020-10-08 16:59:03 +0100BDD014232000,"Rain on Your Parade",,playable,2021-05-06 19:32:04 +010047600BF72000,"Rain World",,playable,2023-05-10 23:34:08 +01009D9010B9E000,"Rainbows, toilets & unicorns",nvdec,playable,2020-10-03 18:08:18 +010010B00DDA2000,"Raji: An Ancient Epic",UE4;gpu;nvdec,ingame,2020-12-16 10:05:25 +010042A00A9CC000,"Rapala Fishing Pro Series",nvdec,playable,2020-12-16 13:26:53 +0100E73010754000,"Rascal Fight",,playable,2020-10-08 13:23:30 +010003F00C5C0000,"Rawr-Off",crash;nvdec,menus,2020-07-02 00:14:44 +01005FF002E2A000,"Rayman® Legends Definitive Edition",nvdec;ldn-works,playable,2023-05-27 18:33:07 +0100F03011616000,"Re:Turn - One Way Trip",,playable,2022-08-29 22:42:53 +01000B20117B8000,"Re:ZERO -Starting Life in Another World- The Prophecy of the Throne",gpu;crash;nvdec;vulkan,boots,2023-03-07 21:27:24 +0100A8A00E462000,"Real Drift Racing",,playable,2020-07-25 14:31:31 +010048600CC16000,"Real Heroes: Firefighter",,playable,2022-09-20 18:18:44 +0100E64010BAA000,"realMyst: Masterpiece Edition",nvdec,playable,2020-11-30 15:25:42 +01000F300F082000,"Reaper: Tale of a Pale Swordsman",,playable,2020-12-12 15:12:23 +0100D9B00E22C000,"Rebel Cops",,playable,2022-09-11 10:02:53 +0100CAA01084A000,"Rebel Galaxy Outlaw",nvdec,playable,2022-12-01 07:44:56 +0100EF0015A9A000,"Record of Lodoss War-Deedlit in Wonder Labyrinth-",deadlock;Needs Update;Incomplete,ingame,2022-01-19 10:00:59 +0100CF600FF7A000,"Red Bow",services,ingame,2021-11-29 03:51:34 +0100351013A06000,"Red Colony",,playable,2021-01-25 20:44:41 +01007820196A6000,"Red Dead Redemption",amd-vendor-bug,playable,2024-09-13 13:26:13 +0100069010592000,"Red Death",,playable,2020-08-30 13:07:37 +010075000C608000,"Red Faction Guerrilla Re-Mars-tered",ldn-untested;nvdec;online,playable,2021-06-07 03:02:13 +01002290070E4000,"Red Game Without a Great Name",,playable,2021-01-19 21:42:35 +010045400D73E000,"Red Siren: Space Defense",UE4,playable,2021-04-25 21:21:29 +0100D8A00E880000,"Red Wings: Aces of the Sky",,playable,2020-06-12 01:19:53 +01000D100DCF8000,"Redeemer: Enhanced Edition",nvdec;UE4;vulkan-backend-bug,playable,2022-09-11 10:20:24 +0100326010B98000,"Redout: Space Assault",UE4,playable,2022-10-19 23:04:35 +010007C00E558000,"Reel Fishing: Road Trip Adventure",,playable,2021-03-02 16:06:43 +010045D01273A000,"Reflection of Mine",audio,playable,2020-12-17 15:06:37 +01003AA00F5C4000,"Refreshing Sideways Puzzle Ghost Hammer",,playable,2020-10-18 12:08:54 +01007A800D520000,"Refunct",UE4,playable,2020-12-15 22:46:21 +0100FDF0083A6000,"Regalia: Of Men and Monarchs - Royal Edition",,playable,2022-08-11 12:24:01 +01005FD00F15A000,"Regions of Ruin",,playable,2020-08-05 11:38:58 +,"Reine des Fleurs",cpu;crash,boots,2020-09-27 18:50:39 +0100F1900B144000,"REKT! High Octane Stunts",online,playable,2020-09-28 12:33:56 +01002AD013C52000,"Relicta",nvdec;UE4,playable,2022-10-31 12:48:33 +010095900B436000,"RemiLore",,playable,2021-06-03 18:58:15 +0100FBD00F5F6000,"Remothered: Broken Porcelain",UE4;gpu;nvdec,ingame,2021-06-17 15:13:11 +01001F100E8AE000,"Remothered: Tormented Fathers",nvdec;UE4,playable,2022-10-19 23:26:50 +01008EE00B22C000,"Rento Fortune",ldn-untested;online,playable,2021-01-19 19:52:21 +01007CC0130C6000,"Renzo Racer",,playable,2021-03-23 22:28:05 +01003C400AD42000,"Rescue Tale",,playable,2022-09-20 18:40:18 +010099A00BC1E000,"resident evil 4",nvdec,playable,2022-11-16 21:16:04 +010018100CD46000,"Resident Evil 5",nvdec,playable,2024-02-18 17:15:29 +01002A000CD48000,"Resident Evil 6",nvdec,playable,2022-09-15 14:31:47 +0100643002136000,"Resident Evil Revelations",nvdec;ldn-untested,playable,2022-08-11 12:44:19 +010095300212A000,"Resident Evil Revelations 2",online-broken;ldn-untested,playable,2022-08-11 12:57:50 +0100E7F00FFB8000,"Resolutiion",crash,boots,2021-04-25 21:57:56 +0100FF201568E000,"Restless Night",crash,nothing,2022-02-09 10:54:49 +0100069000078000,"Retail Interactive Display Menu (DevQuestMenu)",services;crash,nothing,2022-08-11 13:19:41 +010086E00BCB2000,"Retimed",,playable,2022-08-11 13:32:39 +0100F17004156000,"Retro City Rampage DX",,playable,2021-01-05 17:04:17 +01000ED014A2C000,"Retro Machina",online-broken,playable,2022-10-31 13:38:58 +010032E00E6E2000,"Return of the Obra Dinn",,playable,2022-09-15 19:56:45 +010027400F708000,"Revenge of Justice",nvdec,playable,2022-11-20 15:43:23 +0100E2E00EA42000,"Reventure",,playable,2022-09-15 20:07:06 +010071D00F156000,"REZ PLZ",,playable,2020-10-24 13:26:12 +0100729012D18000,"Rhythm Fighter",crash,nothing,2021-02-16 18:51:30 +010081D0100F0000,"Rhythm of the Gods",UE4;crash,nothing,2020-10-03 17:39:59 +01009D5009234000,"RICO",nvdec;online-broken,playable,2022-08-11 20:16:40 +01002C700C326000,"Riddled Corpses EX",,playable,2021-06-06 16:02:44 +0100AC600D898000,"Rift Keeper",,playable,2022-09-20 19:48:20 +0100A62002042000,"RiME",UE4;crash;gpu,boots,2020-07-20 15:52:38 +01006AC00EE6E000,"Rimelands: Hammer of Thor",,playable,2022-10-13 13:32:56 +01002FF008C24000,"RingFit Adventure",crash;services,nothing,2021-04-14 19:00:01 +010088E00B816000,"RIOT - Civil Unrest",,playable,2022-08-11 20:27:56 +01002A6006AA4000,"Riptide GP: Renegade",online,playable,2021-04-13 23:33:02 +010065B00B0EC000,"Rise and Shine",,playable,2020-12-12 15:56:43 +0100E9C010EA8000,"Rise of Insanity",,playable,2020-08-30 15:42:14 +01006BA00E652000,"Rise: Race The Future",,playable,2021-02-27 13:29:06 +010020C012F48000,"Rising Hell",,playable,2022-10-31 13:54:02 +010076D00E4BA000,"Risk of Rain 2",online-broken,playable,2024-03-04 17:01:05 +0100E8300A67A000,"RISK® Global Domination",nvdec;online-broken,playable,2022-08-01 18:53:28 +010042500FABA000,"Ritual: Crown of Horns",,playable,2021-01-26 16:01:47 +0100BD300F0EC000,"Ritual: Sorcerer Angel",,playable,2021-03-02 13:51:19 +0100A7D008392000,"Rival Megagun",nvdec;online,playable,2021-01-19 14:01:46 +010069C00401A000,"RIVE: Ultimate Edition",,playable,2021-03-24 18:45:55 +01004E700DFE6000,"River City Girls",nvdec,playable,2020-06-10 23:44:09 +01002E80168F4000,"River City Girls 2",,playable,2022-12-07 00:46:27 +0100B2100767C000,"River City Melee Mach!!",online-broken,playable,2022-09-20 20:51:57 +01008AC0115C6000,"RMX Real Motocross",,playable,2020-10-08 21:06:15 +010053000B986000,"Road Redemption",online-broken,playable,2022-08-12 11:26:20 +010002F009A7A000,"Road to Ballhalla",UE4,playable,2021-06-07 02:22:36 +0100735010F58000,"Road To Guangdong",slow,playable,2020-10-12 12:15:32 +010068200C5BE000,"Roarr! Jurassic Edition",,playable,2022-10-19 23:57:45 +0100618004096000,"Robonauts",nvdec,playable,2022-08-12 11:33:23 +010039A0117C0000,"ROBOTICS;NOTES DaSH",,playable,2020-11-16 23:09:54 +01002A900EE8A000,"ROBOTICS;NOTES ELITE",,playable,2020-11-26 10:28:20 +010044A010BB8000,"Robozarro",,playable,2020-09-03 13:33:40 +01000CC012D74000,"Rock 'N Racing Bundle Grand Prix & Rally",,playable,2021-01-06 20:23:57 +0100A1B00DB36000,"Rock of Ages 3: Make & Break",UE4,playable,2022-10-06 12:18:29 +0100513005AF4000,"Rock'N Racing Off Road DX",,playable,2021-01-10 15:27:15 +01005EE0036EC000,"Rocket League®",gpu;online-broken;ldn-untested,ingame,2024-02-08 19:51:36 +0100E88009A34000,"Rocket Wars",,playable,2020-07-24 14:27:39 +0100EC7009348000,"Rogue Aces",gpu;services;nvdec,ingame,2021-11-30 02:18:30 +01009FA010848000,"Rogue Heroes: Ruins of Tasos",online,playable,2021-04-01 15:41:25 +010056500AD50000,"Rogue Legacy",,playable,2020-08-10 19:17:28 +0100F3B010F56000,"Rogue Robots",,playable,2020-06-16 12:16:11 +01001CC00416C000,"Rogue Trooper Redux",nvdec;online-broken,playable,2022-08-12 11:53:01 +0100C7300C0EC000,"RogueCube",,playable,2021-06-16 12:16:42 +0100B7200FC96000,"Roll'd",,playable,2020-07-04 20:24:01 +01004900113F8000,"RollerCoaster Tycoon 3 Complete Edition",32-bit,playable,2022-10-17 14:18:01 +0100E3900B598000,"RollerCoaster Tycoon Adventures",nvdec,playable,2021-01-05 18:14:18 +010076200CA16000,"Rolling Gunner",,playable,2021-05-26 12:54:18 +0100579011B40000,"Rolling Sky 2",,playable,2022-11-03 10:21:12 +010050400BD38000,"Roman Rumble in Las Vegum - Asterix & Obelix XXL 2",deadlock;nvdec,ingame,2022-07-21 17:54:14 +01001F600829A000,"Romancing SaGa 2",,playable,2022-08-12 12:02:24 +0100D0400D27A000,"Romancing SaGa 3",audio;gpu,ingame,2020-06-27 20:26:18 +010088100DD42000,"Roof Rage",crash;regression,boots,2023-11-12 03:47:18 +0100F3000FA58000,"Roombo: First Blood",nvdec,playable,2020-08-05 12:11:37 +0100936011556000,"Root Double -Before Crime * After Days- Xtend Edition",crash,nothing,2022-02-05 02:03:49 +010030A00DA3A000,"Root Letter: Last Answer",vulkan-backend-bug,playable,2022-09-17 10:25:57 +0100AFE00DDAC000,"Royal Roads",,playable,2020-11-17 12:54:38 +0100E2C00B414000,"RPG Maker MV",nvdec,playable,2021-01-05 20:12:01 +01005CD015986000,"rRootage Reloaded",,playable,2022-08-05 23:20:18 +0000000000000000,"RSDKv5u",homebrew,ingame,2024-04-01 16:25:34 +010009B00D33C000,"Rugby Challenge 4",slow;online-broken;UE4,playable,2022-10-06 12:45:53 +01006EC00F2CC000,"RUINER",UE4,playable,2022-10-03 14:11:33 +010074F00DE4A000,"Run the Fan",,playable,2021-02-27 13:36:28 +0100ADF00700E000,"Runbow",online,playable,2021-01-08 22:47:44 +0100D37009B8A000,"Runbow Deluxe Edition",online-broken,playable,2022-08-12 12:20:25 +010081C0191D8000,"Rune Factory 3 Special",,playable,2023-10-15 08:32:49 +010051D00E3A4000,"Rune Factory 4 Special",32-bit;crash;nvdec,ingame,2023-05-06 08:49:17 +010014D01216E000,"Rune Factory 5 (JP)",gpu,ingame,2021-06-01 12:00:36 +0100E21013908000,"RWBY: Grimm Eclipse - Definitive Edition",online-broken,playable,2022-11-03 10:44:01 +010012C0060F0000,"RXN -Raijin-",nvdec,playable,2021-01-10 16:05:43 +0100B8B012ECA000,"S.N.I.P.E.R. - Hunter Scope",,playable,2021-04-19 15:58:09 +010007700CFA2000,"Saboteur II: Avenging Angel",Needs Update;cpu;crash,nothing,2021-01-26 14:47:37 +0100D94012FE8000,"Saboteur SiO",slow,ingame,2020-12-17 16:59:49 +0100A5200C2E0000,"Safety First!",,playable,2021-01-06 09:05:23 +0100A51013530000,"SaGa Frontier Remastered",nvdec,playable,2022-11-03 13:54:56 +010003A00D0B4000,"SaGa SCARLET GRACE: AMBITIONS™",,playable,2022-10-06 13:20:31 +01008D100D43E000,"Saints Row IV®: Re-Elected™",ldn-untested;LAN,playable,2023-12-04 18:33:37 +0100DE600BEEE000,"SAINTS ROW®: THE THIRD™ - THE FULL PACKAGE",slow;LAN,playable,2023-08-24 02:40:58 +01007F000EB36000,"Sakai and...",nvdec,playable,2022-12-15 13:53:19 +0100B1400E8FE000,"Sakuna: Of Rice and Ruin",,playable,2023-07-24 13:47:13 +0100BBF0122B4000,"Sally Face",,playable,2022-06-06 18:41:24 +0100D250083B4000,"Salt and Sanctuary",,playable,2020-10-22 11:52:19 +0100CD301354E000,"Sam & Max Save the World",,playable,2020-12-12 13:11:51 +010014000C63C000,"Samsara: Deluxe Edition",,playable,2021-01-11 15:14:12 +0100ADF0096F2000,"Samurai Aces for Nintendo Switch",32-bit,playable,2020-11-24 20:26:55 +01006C600E46E000,"Samurai Jack: Battle Through Time",nvdec;UE4,playable,2022-10-06 13:33:59 +01002DF00F76C000,"SAMURAI SHODOWN",UE4;crash;nvdec,menus,2020-09-06 02:17:00 +0100F6800F48E000,"SAMURAI SHODOWN NEOGEO COLLECTION",nvdec,playable,2021-06-14 17:12:56 +0100B6501A360000,"Samurai Warrior",,playable,2023-02-27 18:42:38 +,"Sangoku Rensenki ~Otome no Heihou!~",gpu;nvdec,ingame,2020-10-17 19:13:14 +0100A4700BC98000,"Satsujin Tantei Jack the Ripper",,playable,2021-06-21 16:32:54 +0100F0000869C000,"Saturday Morning RPG",nvdec,playable,2022-08-12 12:41:50 +01006EE00380C000,"Sausage Sports Club",gpu,ingame,2021-01-10 05:37:17 +0100C8300FA90000,"Save Koch",,playable,2022-09-26 17:06:56 +0100D6E008700000,"Save the Ninja Clan",,playable,2021-01-11 13:56:37 +010091000F72C000,"Save Your Nuts",nvdec;online-broken;UE4,playable,2022-09-27 23:12:02 +0100AA00128BA000,"Saviors of Sapphire Wings / Stranger of Sword City Revisited",crash,menus,2022-10-24 23:00:46 +01001C3012912000,"Say No! More",,playable,2021-05-06 13:43:34 +010010A00A95E000,"Sayonara Wild Hearts",,playable,2023-10-23 03:20:01 +0100ACB004006000,"Schlag den Star",slow;nvdec,playable,2022-08-12 14:28:22 +0100394011C30000,"Scott Pilgrim vs. The World™: The Game – Complete Edition",services-horizon;crash,nothing,2024-07-12 08:13:03 +0100E7100B198000,"Scribblenauts Mega Pack",nvdec,playable,2020-12-17 22:56:14 +01001E40041BE000,"Scribblenauts Showdown",gpu;nvdec,ingame,2020-12-17 23:05:53 +0100829018568000,"SD GUNDAM BATTLE ALLIANCE Demo",audio;crash;demo,ingame,2022-08-01 23:01:20 +010055700CEA8000,"SD GUNDAM G GENERATION CROSS RAYS",nvdec,playable,2022-09-15 20:58:44 +010022900D3EC00,"SD GUNDAM G GENERATION CROSS RAYS PREMIUM G SOUND EDITION",nvdec,playable,2022-09-15 20:45:57 +0100E4A00D066000,"Sea King",UE4;nvdec,playable,2021-06-04 15:49:22 +0100AFE012BA2000,"Sea of Solitude: The Director's Cut",gpu,ingame,2024-07-12 18:29:29 +01008C0016544000,"Sea of Stars",,playable,2024-03-15 20:27:12 +010036F0182C4000,"Sea of Stars Demo",demo,playable,2023-02-12 15:33:56 +0100C2400D68C000,"SeaBed",,playable,2020-05-17 13:25:37 +010077100CA6E000,"Season Match Bundle",,playable,2020-10-27 16:15:22 +010028F010644000,"Secret Files 3",nvdec,playable,2020-10-24 15:32:39 +010075D0101FA000,"Seek Hearts",,playable,2022-11-22 15:06:26 +0100394010844000,"Seers Isle",,playable,2020-11-17 12:28:50 +0100A8900AF04000,"SEGA AGES Alex Kidd in Miracle World",online,playable,2021-05-05 16:35:47 +01001E600AF08000,"SEGA AGES Gain Ground",online,playable,2021-05-05 16:16:27 +0100D4D00AC62000,"SEGA AGES Out Run",,playable,2021-01-11 13:13:59 +01005A300C9F6000,"SEGA AGES Phantasy Star",,playable,2021-01-11 12:49:48 +01005F600CB0E000,"SEGA AGES Puyo Puyo",online,playable,2021-05-05 16:09:28 +010051F00AC5E000,"SEGA AGES Sonic The Hedgehog",slow,playable,2023-03-05 20:16:31 +01000D200C614000,"SEGA AGES Sonic The Hedgehog 2",,playable,2022-09-21 20:26:35 +0100C3E00B700000,"SEGA AGES Space Harrier",,playable,2021-01-11 12:57:40 +010054400D2E6000,"SEGA AGES Virtua Racing",online-broken,playable,2023-01-29 17:08:39 +01001E700AC60000,"SEGA AGES Wonder Boy: Monster Land",online,playable,2021-05-05 16:28:25 +0100B3C014BDA000,"SEGA Genesis™ – Nintendo Switch Online",crash;regression,nothing,2022-04-11 07:27:21 +,"SEGA Mega Drive Classics",online,playable,2021-01-05 11:08:00 +01009840046BC000,"Semispheres",,playable,2021-01-06 23:08:31 +0100D1800D902000,"SENRAN KAGURA Peach Ball",,playable,2021-06-03 15:12:10 +0100E0C00ADAC000,"SENRAN KAGURA Reflexions",,playable,2020-03-23 19:15:23 +01009E500D29C000,"Sentinels of Freedom",,playable,2021-06-14 16:42:19 +0100A5D012DAC000,"SENTRY",,playable,2020-12-13 12:00:24 +010059700D4A0000,"Sephirothic Stories",services,menus,2021-11-25 08:52:17 +010007D00D43A000,"Serious Sam Collection",vulkan-backend-bug,boots,2022-10-13 13:53:34 +0100B2C00E4DA000,"Served!",nvdec,playable,2022-09-28 12:46:00 +010018400C24E000,"Seven Knights -Time Wanderer-",vulkan-backend-bug,playable,2022-10-13 22:08:54 +0100D6F016676000,"Seven Pirates H",,playable,2024-06-03 14:54:12 +0100157004512000,"Severed",,playable,2020-12-15 21:48:48 +0100D5500DA94000,"Shadow Blade: Reload",nvdec,playable,2021-06-11 18:40:43 +0100BE501382A000,"Shadow Gangs",cpu;gpu;crash;regression,ingame,2024-04-29 00:07:26 +0100C3A013840000,"Shadow Man Remastered",gpu,ingame,2024-05-20 06:01:39 +010073400B696000,"Shadowgate",,playable,2021-04-24 07:32:57 +0100371013B3E000,"Shadowrun Returns",gpu;Needs Update,ingame,2022-10-04 21:32:31 +01008310154C4000,"Shadowrun: Dragonfall - Director's Cut",gpu;Needs Update,ingame,2022-10-04 20:52:18 +0100C610154CA000,"Shadowrun: Hong Kong - Extended Edition",gpu;Needs Update,ingame,2022-10-04 20:53:09 +010000000EEF0000,"Shadows 2: Perfidia",,playable,2020-08-07 12:43:46 +0100AD700CBBE000,"Shadows of Adam",,playable,2021-01-11 13:35:58 +01002A800C064000,"Shadowverse Champions Battle",,playable,2022-10-02 22:59:29 +01003B90136DA000,"Shadowverse: Champion's Battle",crash,nothing,2023-03-06 00:31:50 +0100820013612000,"Shady Part of Me",,playable,2022-10-20 11:31:55 +0100B10002904000,"Shakedown: Hawaii",,playable,2021-01-07 09:44:36 +01008DA012EC0000,"Shakes on a Plane",crash,menus,2021-11-25 08:52:25 +0100B4900E008000,"Shalnor Legends: Sacred Lands",,playable,2021-06-11 14:57:11 +010006C00CC10000,"Shanky: The Vegan`s Nightmare",,playable,2021-01-26 15:03:55 +0100430013120000,"Shantae",,playable,2021-05-21 04:53:26 +0100EFD00A4FA000,"Shantae and the Pirate's Curse",,playable,2024-04-29 17:21:57 +0100EB901040A000,"Shantae and the Seven Sirens",nvdec,playable,2020-06-19 12:23:40 +01006A200936C000,"Shantae: Half- Genie Hero Ultimate Edition",,playable,2020-06-04 20:14:20 +0100ADA012370000,"Shantae: Risky's Revenge - Director's Cut",,playable,2022-10-06 20:47:39 +01003AB01062C000,"Shaolin vs Wutang",deadlock,nothing,2021-03-29 20:38:54 +0100B250009B9600,"Shape Of The World0",UE4,playable,2021-03-05 16:42:28 +01004F50085F2000,"She Remembered Caterpillars",,playable,2022-08-12 17:45:14 +01000320110C2000,"She Sees Red - Interactive Movie",nvdec,playable,2022-09-30 11:30:15 +01009EB004CB0000,"Shelter Generations",,playable,2021-06-04 16:52:39 +010020F014DBE000,"Sherlock Holmes: The Devil’s Daughter",gpu,ingame,2022-07-11 00:07:26 +0100B1000AC3A000,"Shift Happens",,playable,2021-01-05 21:24:18 +01000E8009E1C000,"Shift Quantum",UE4;crash,ingame,2020-11-06 21:54:08 +01000750084B2000,"Shiftlings - Enhanced Edition",nvdec,playable,2021-03-04 13:49:54 +01003B0012DC2000,"Shin Megami Tensei III Nocturne HD Remaster",,playable,2022-11-03 22:53:27 +010045800ED1E000,"Shin Megami Tensei III NOCTURNE HD REMASTER",gpu;Needs Update,ingame,2022-11-03 19:57:01 +010063B012DC6000,"Shin Megami Tensei V",UE4,playable,2024-02-21 06:30:07 +010069C01AB82000,"Shin Megami Tensei V: Vengeance",gpu;vulkan-backend-bug,ingame,2024-07-14 11:28:24 +01009050133B4000,"Shing! (サムライフォース:斬!)",nvdec,playable,2022-10-22 00:48:54 +01009A5009A9E000,"Shining Resonance Refrain",nvdec,playable,2022-08-12 18:03:01 +01004EE0104F6000,"Shinsekai Into the Depths™",,playable,2022-09-28 14:07:51 +0100C2F00A568000,"Shio",,playable,2021-02-22 16:25:09 +0100B2E00F13E000,"Shipped",,playable,2020-11-21 14:22:32 +01000E800FCB4000,"Ships",,playable,2021-06-11 16:14:37 +01007430122D0000,"Shiren the Wanderer: The Tower of Fortune and the Dice of Fate",nvdec,playable,2022-10-20 11:44:36 +,"Shiritsu Berubara Gakuen ~Versailles no Bara Re*imagination~",cpu;crash,boots,2020-09-27 19:01:25 +01000244016BAE00,"Shiro0",gpu,ingame,2024-01-13 08:54:39 +0100CCE00DDB6000,"Shoot 1UP DX",,playable,2020-12-13 12:32:47 +01001180021FA000,"Shovel Knight: Specter of Torment",,playable,2020-05-30 08:34:17 +010057D0021E8000,"Shovel Knight: Treasure Trove",,playable,2021-02-14 18:24:39 +01003DD00BF0E000,"Shred! 2 - ft Sam Pilgrim",,playable,2020-05-30 14:34:09 +01001DE0076A4000,"Shu",nvdec,playable,2020-05-30 09:08:59 +0100A7900B936000,"Shut Eye",,playable,2020-07-23 18:08:35 +010044500C182000,"Sid Meier’s Civilization VI",ldn-untested,playable,2024-04-08 16:03:40 +01007FC00B674000,"Sigi - A Fart for Melusina",,playable,2021-02-22 16:46:58 +0100F1400B0D6000,"Silence",nvdec,playable,2021-06-03 14:46:17 +0100A32010618000,"Silent World",,playable,2020-08-28 13:45:13 +010045500DFE2000,"Silk",nvdec,playable,2021-06-10 15:34:37 +010016D00A964000,"SilverStarChess",,playable,2021-05-06 15:25:57 +0100E8C019B36000,"Simona's Requiem",gpu,ingame,2023-02-21 18:29:19 +01006FE010438000,"Sin Slayers",,playable,2022-10-20 11:53:52 +01002820036A8000,"Sine Mora EX",gpu;online-broken,ingame,2022-08-12 19:36:18 +0100F10012002000,"Singled Out",online,playable,2020-08-03 13:06:18 +0100B8800F858000,"Sinless",nvdec,playable,2020-08-09 20:18:55 +0100B16009C10000,"SINNER: Sacrifice for Redemption",nvdec;UE4;vulkan-backend-bug,playable,2022-08-12 20:37:33 +0100E9201410E000,"Sir Lovelot",,playable,2021-04-05 16:21:46 +0100134011E32000,"Skate City",,playable,2022-11-04 11:37:39 +0100B2F008BD8000,"Skee-Ball",,playable,2020-11-16 04:44:07 +01001A900F862000,"Skelattack",,playable,2021-06-09 15:26:26 +01008E700F952000,"Skelittle: A Giant Party!",,playable,2021-06-09 19:08:34 +01006C000DC8A000,"Skelly Selest",,playable,2020-05-30 15:38:18 +0100D67006F14000,"Skies of Fury DX",,playable,2020-05-30 16:40:54 +010046B00DE62000,"Skullgirls 2nd Encore",,playable,2022-09-15 21:21:25 +0100D1100BF9C000,"Skulls of the Shogun: Bone-A-Fide Edition",,playable,2020-08-31 18:58:12 +0100D7B011654000,"Skully",nvdec;UE4,playable,2022-10-06 13:52:59 +010083100B5CA000,"Sky Force Anniversary",online-broken,playable,2022-08-12 20:50:07 +01006FE005B6E000,"Sky Force Reloaded",,playable,2021-01-04 20:06:57 +010003F00CC98000,"Sky Gamblers - Afterburner",gpu;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-12 21:04:55 +010093D00AC38000,"Sky Gamblers: Storm Raiders",gpu;audio;32-bit,ingame,2022-08-12 21:13:36 +010068200E96E000,"Sky Gamblers: Storm Raiders 2",gpu,ingame,2022-09-13 12:24:04 +01004F0010A02000,"Sky Racket",,playable,2020-09-07 12:22:24 +0100DDB004F30000,"Sky Ride",,playable,2021-02-22 16:53:07 +0100C5700434C000,"Sky Rogue",,playable,2020-05-30 08:26:28 +0100C52011460000,"Sky: Children of the Light",cpu;online-broken,nothing,2023-02-23 10:57:10 +010041C01014E000,"Skybolt Zack",,playable,2021-04-12 18:28:00 +0100A0A00D1AA000,"SKYHILL",,playable,2021-03-05 15:19:11 +,"Skylanders Imaginators",crash;services,boots,2020-05-30 18:49:18 +010021A00ABEE000,"SKYPEACE",,playable,2020-05-29 14:14:30 +0100EA400BF44000,"SkyScrappers",,playable,2020-05-28 22:11:25 +0100F3C00C400000,"SkyTime",slow,ingame,2020-05-30 09:24:51 +01003AD00DEAE000,"SlabWell: The Quest For Kaktun's Alpaca",,playable,2021-02-22 17:02:51 +0100224004004000,"Slain: Back from Hell",,playable,2022-08-12 23:36:19 +010026300BA4A000,"Slay the Spire",,playable,2023-01-20 15:09:26 +0100501006494000,"Slayaway Camp: Butcher's Cut",opengl-backend-bug,playable,2022-08-12 23:44:05 +01004E900EDDA000,"Slayin 2",gpu,ingame,2024-04-19 16:15:26 +01004AC0081DC000,"Sleep Tight",gpu;UE4,ingame,2022-08-13 00:17:32 +0100F4500AA4E000,"Slice, Dice & Rice",online,playable,2021-02-22 17:44:23 +010010D011E1C000,"Slide Stars",crash,menus,2021-11-25 08:53:43 +0100112003B8A000,"Slime-san",,playable,2020-05-30 16:15:12 +01002AA00C974000,"SMASHING THE BATTLE",,playable,2021-06-11 15:53:57 +0100C9100B06A000,"SmileBASIC 4",gpu,menus,2021-07-29 17:35:59 +0100207007EB2000,"Smoke And Sacrifice",,playable,2022-08-14 12:38:27 +01009790186FE000,"SMURFS KART",,playable,2023-10-18 00:55:00 +0100F2800D46E000,"Snack World The Dungeon Crawl Gold",gpu;slow;nvdec;audout,ingame,2022-05-01 21:12:44 +0100C0F0020E8000,"Snake Pass",nvdec;UE4,playable,2022-01-03 04:31:52 +010075A00BA14000,"Sniper Elite 3 Ultimate Edition",ldn-untested,playable,2024-04-18 07:47:49 +010007B010FCC000,"Sniper Elite 4",gpu;vulkan-backend-bug;opengl-backend-bug,ingame,2024-06-18 17:53:15 +0100BB000A3AA000,"Sniper Elite V2 Remastered",slow;nvdec;online-broken;ldn-untested,ingame,2022-08-14 13:23:13 +01008E20047DC000,"Snipperclips Plus: Cut It Out, Together!",,playable,2023-02-14 20:20:13 +0100704000B3A000,"Snipperclips™ – Cut it out, together!",,playable,2022-12-05 12:44:55 +01004AB00AEF8000,"SNK 40th ANNIVERSARY COLLECTION",,playable,2022-08-14 13:33:15 +010027F00AD6C000,"SNK HEROINES Tag Team Frenzy",nvdec;online-broken;ldn-untested,playable,2022-08-14 14:19:25 +01008DA00CBBA000,"Snooker 19",nvdec;online-broken;UE4,playable,2022-09-11 17:43:22 +010045300516E000,"Snow Moto Racing Freedom",gpu;vulkan-backend-bug,ingame,2022-08-15 16:05:14 +0100BE200C34A000,"Snowboarding The Next Phase",nvdec,playable,2021-02-23 12:56:58 +0100FBD013AB6000,"SnowRunner",services;crash,boots,2023-10-07 00:01:16 +010017B012AFC000,"Soccer Club Life: Playing Manager",gpu,ingame,2022-10-25 11:59:22 +0100B5000E05C000,"Soccer Pinball",UE4;gpu,ingame,2021-06-15 20:56:51 +010011A00A9A8000,"Soccer Slammers",,playable,2020-05-30 07:48:14 +010095C00F9DE000,"Soccer, Tactics & Glory",gpu,ingame,2022-09-26 17:15:58 +0100590009C38000,"SOL DIVIDE -SWORD OF DARKNESS- for Nintendo Switch",32-bit,playable,2021-06-09 14:13:03 +0100A290048B0000,"Soldam: Drop, Connect, Erase",,playable,2020-05-30 09:18:54 +010008600D1AC000,"Solo: Islands of the Heart",gpu;nvdec,ingame,2022-09-11 17:54:43 +01009EE00E91E000,"Some Distant Memory",,playable,2022-09-15 21:48:19 +01004F401BEBE000,"Song of Nunu: A League of Legends Story",,ingame,2024-07-12 18:53:44 +0100E5400BF94000,"Songbird Symphony",,playable,2021-02-27 02:44:04 +010031D00A604000,"Songbringer",,playable,2020-06-22 10:42:02 +0000000000000000,"Sonic 1 (2013)",crash;homebrew,ingame,2024-04-06 18:31:20 +0000000000000000,"Sonic 2 (2013)",crash;homebrew,ingame,2024-04-01 16:25:30 +0000000000000000,"Sonic A.I.R",homebrew,ingame,2024-04-01 16:25:32 +0000000000000000,"Sonic CD",crash;homebrew,ingame,2024-04-01 16:25:31 +010040E0116B8000,"Sonic Colors: Ultimate",,playable,2022-11-12 21:24:26 +01001270012B6000,"SONIC FORCES™",,playable,2024-07-28 13:11:21 +01004AD014BF0000,"Sonic Frontiers",gpu;deadlock;amd-vendor-bug;intel-vendor-bug,ingame,2024-09-05 09:18:53 +01009AA000FAA000,"Sonic Mania",,playable,2020-06-08 17:30:57 +01009FB016286000,"Sonic Origins",crash,ingame,2024-06-02 07:20:15 +01008F701C074000,"SONIC SUPERSTARS",gpu;nvdec,ingame,2023-10-28 17:48:07 +010088801C150000,"Sonic Superstars Digital Art Book with Mini Digital Soundtrack",,playable,2024-08-20 13:26:56 +01005EA01C0FC000,"SONIC X SHADOW GENERATIONS",crash,ingame,2025-01-07 04:20:45 +010064F00C212000,"Soul Axiom Rebooted",nvdec;slow,ingame,2020-09-04 12:41:01 +0100F2100F0B2000,"Soul Searching",,playable,2020-07-09 18:39:07 +01008F2005154000,"South Park™: The Fractured but Whole™ - Standard Edition",slow;online-broken,playable,2024-07-08 17:47:28 +0100B9F00C162000,"Space Blaze",,playable,2020-08-30 16:18:05 +010005500E81E000,"Space Cows",UE4;crash,menus,2020-06-15 11:33:20 +0100707011722000,"Space Elite Force",,playable,2020-11-27 15:21:05 +010047B010260000,"Space Pioneer",,playable,2022-10-20 12:24:37 +010010A009830000,"Space Ribbon",,playable,2022-08-15 17:17:10 +0000000000000000,"SpaceCadetPinball",homebrew,ingame,2024-04-18 19:30:04 +0100D9B0041CE000,"Spacecats with Lasers",,playable,2022-08-15 17:22:44 +010034800FB60000,"Spaceland",,playable,2020-11-01 14:31:56 +010028D0045CE000,"Sparkle 2",,playable,2020-10-19 11:51:39 +01000DC007E90000,"Sparkle Unleashed",,playable,2021-06-03 14:52:15 +0100E4F00AE14000,"Sparkle ZERO",gpu;slow,ingame,2020-03-23 18:19:18 +01007ED00C032000,"Sparklite",,playable,2022-08-06 11:35:41 +0100E6A009A26000,"Spartan",UE4;nvdec,playable,2021-03-05 15:53:19 +010020500E7A6000,"Speaking Simulator",,playable,2020-10-08 13:00:39 +01008B000A5AE000,"Spectrum",,playable,2022-08-16 11:15:59 +0100F18010BA0000,"Speed 3: Grand Prix",UE4,playable,2022-10-20 12:32:31 +010040F00AA9A000,"Speed Brawl",slow,playable,2020-09-18 22:08:16 +01000540139F6000,"Speed Limit",gpu,ingame,2022-09-02 18:37:40 +010061F013A0E000,"Speed Truck Racing",,playable,2022-10-20 12:57:04 +0100E74007EAC000,"Spellspire",,playable,2022-08-16 11:21:21 +010021F004270000,"Spelunker Party!",services,boots,2022-08-16 11:25:49 +0100710013ABA000,"Spelunky",,playable,2021-11-20 17:45:03 +0100BD500BA94000,"Sphinx and the Cursed Mummy",gpu;32-bit;opengl,ingame,2024-05-20 06:00:51 +010092A0102AE000,"Spider Solitaire",,playable,2020-12-16 16:19:30 +010076D0122A8000,"Spinch",,playable,2024-07-12 19:02:10 +01001E40136FE000,"Spinny's Journey",crash,ingame,2021-11-30 03:39:44 +010023E008702000,"Spiral Splatter",,playable,2020-06-04 14:03:57 +0100D1B00B6FA000,"Spirit Hunter: Death Mark",,playable,2020-12-13 10:56:25 +0100FAE00E19A000,"Spirit Hunter: NG",32-bit,playable,2020-12-17 20:38:47 +01005E101122E000,"Spirit of the North",UE4,playable,2022-09-30 11:40:47 +01000AC00F5EC000,"Spirit Roots",nvdec,playable,2020-07-10 13:33:32 +0100BD400DC52000,"Spiritfarer",gpu,ingame,2022-10-06 16:31:38 +01009D60080B4000,"SpiritSphere DX",,playable,2021-07-03 23:37:49 +010042700E3FC000,"Spitlings",online-broken,playable,2022-10-06 16:42:39 +01003BC0000A0000,"Splatoon™ 2",ldn-works;LAN,playable,2024-07-12 19:11:15 +0100C2500FC20000,"Splatoon™ 3",ldn-works;opengl-backend-bug;LAN;amd-vendor-bug,playable,2024-08-04 23:49:11 +0100BA0018500000,"Splatoon™ 3: Splatfest World Premiere",gpu;online-broken;demo,ingame,2022-09-19 03:17:12 +010062800D39C000,"SpongeBob SquarePants: Battle for Bikini Bottom - Rehydrated",online-broken;UE4;ldn-broken;vulkan-backend-bug,playable,2023-08-01 19:29:34 +01009FB0172F4000,"SpongeBob SquarePants: The Cosmic Shake",gpu;UE4,ingame,2023-08-01 19:29:53 +010097C01336A000,"Spooky Chase",,playable,2022-11-04 12:17:44 +0100C6100D75E000,"Spooky Ghosts Dot Com",,playable,2021-06-15 15:16:11 +0100DE9005170000,"Sports Party",nvdec,playable,2021-03-05 13:40:42 +0100E04009BD4000,"Spot The Difference",,playable,2022-08-16 11:49:52 +010052100D1B4000,"Spot The Differences: Party!",,playable,2022-08-16 11:55:26 +01000E6015350000,"Spy Alarm",services,ingame,2022-12-09 10:12:51 +01005D701264A000,"SpyHack",,playable,2021-04-15 10:53:51 +010077B00E046000,"Spyro™ Reignited Trilogy",nvdec;UE4,playable,2022-09-11 18:38:33 +0100085012A0E000,"Squeakers",,playable,2020-12-13 12:13:05 +010009300D31C000,"Squidgies Takeover",,playable,2020-07-20 22:28:08 +0100FCD0102EC000,"Squidlit",,playable,2020-08-06 12:38:32 +0100EBF00E702000,"STAR OCEAN First Departure R",nvdec,playable,2021-07-05 19:29:16 +010065301A2E0000,"STAR OCEAN THE SECOND STORY R",crash,ingame,2024-06-01 02:39:59 +010060D00F658000,"Star Renegades",nvdec,playable,2020-12-11 12:19:23 +0100D7000AE6A000,"Star Story: The Horizon Escape",,playable,2020-08-11 22:31:38 +01009DF015776000,"Star Trek Prodigy: Supernova",nvdec;UE4;opengl-backend-bug,playable,2022-10-14 10:18:50 +0100BD100FFBE000,"STAR WARS™ Episode I Racer",slow;nvdec,playable,2022-10-03 16:08:36 +0100BB500EACA000,"STAR WARS™ Jedi Knight II: Jedi Outcast™",gpu,ingame,2022-09-15 22:51:00 +01008CA00FAE8000,"STAR WARS™ Jedi Knight: Jedi Academy",gpu,boots,2021-06-16 12:35:30 +01006DA00DEAC000,"Star Wars™ Pinball",online-broken,playable,2022-09-11 18:53:31 +0100FA10115F8000,"STAR WARS™ Republic Commando™",gpu;32-bit,ingame,2023-10-31 15:57:17 +010040701B948000,"STAR WARS™: Battlefront Classic Collection",gpu;vulkan,ingame,2024-07-12 19:24:21 +0100854015868000,"STAR WARS™: Knights of the Old Republic™",gpu;deadlock,boots,2024-02-12 10:13:51 +0100153014544000,"STAR WARS™: The Force Unleashed™",,playable,2024-05-01 17:41:28 +01005EB00EA10000,"Star-Crossed Myth - The Department of Wishes -",gpu,ingame,2021-06-04 19:34:36 +0100E6B0115FC000,"Star99",online,menus,2021-11-26 14:18:51 +01002100137BA000,"Stardash",,playable,2021-01-21 16:31:19 +0100E65002BB8000,"Stardew Valley",online-broken;ldn-untested,playable,2024-02-14 03:11:19 +01002CC003FE6000,"Starlink: Battle for Atlas™ Digital Edition",services-horizon;crash;Needs Update,nothing,2024-05-05 17:25:11 +010098E010FDA000,"Starlit Adventures Golden Stars",,playable,2020-11-21 12:14:43 +01001BB00AC26000,"STARSHIP AVENGER Operation: Take Back Earth",,playable,2021-01-12 15:52:55 +010000700A572000,"State of Anarchy: Master of Mayhem",nvdec,playable,2021-01-12 19:00:05 +0100844004CB6000,"State of Mind",UE4;crash,boots,2020-06-22 22:17:50 +0100616009082000,"STAY",crash;services,boots,2021-04-23 14:24:52 +0100B61009C60000,"STAY COOL, KOBAYASHI-SAN!: A RIVER CITY RANSOM STORY",,playable,2021-01-26 17:37:28 +01008010118CC000,"Steam Prison",nvdec,playable,2021-04-01 15:34:11 +0100AE100DAFA000,"Steam Tactics",,playable,2022-10-06 16:53:45 +01004DD00C87A000,"Steamburg",,playable,2021-01-13 08:42:01 +01009320084A4000,"SteamWorld Dig",,playable,2024-08-19 12:12:23 +0100CA9002322000,"SteamWorld Dig 2",,playable,2022-12-21 19:25:42 +0100F6D00D83E000,"SteamWorld Quest: Hand of Gilgamech",nvdec,playable,2020-11-09 13:10:04 +01001C6014772000,"Steel Assault",,playable,2022-12-06 14:48:30 +010042800B880000,"STEINS;GATE ELITE",,playable,2020-08-04 07:33:32 +0100CB400E9BC000,"STEINS;GATE: My Darling's Embrace",nvdec,playable,2022-11-20 16:48:34 +01002DE01043E000,"Stela",UE4,playable,2021-06-15 13:28:34 +01005A700C954000,"Stellar Interface",,playable,2022-10-20 13:44:33 +0100BC800EDA2000,"STELLATUM",gpu,playable,2021-03-07 16:30:23 +0100775004794000,"Steredenn: Binary Stars",,playable,2021-01-13 09:19:42 +0100AE0006474000,"Stern Pinball Arcade",,playable,2022-08-16 14:24:41 +0100E24006FA8000,"Stikbold! A Dodgeball Adventure DELUXE",,playable,2021-01-11 20:12:54 +010077B014518000,"Stitchy in Tooki Trouble",,playable,2021-05-06 16:25:53 +010070D00F640000,"STONE",UE4,playable,2022-09-30 11:53:32 +010074400F6A8000,"Stories Untold",nvdec,playable,2022-12-22 01:08:46 +010040D00BCF4000,"Storm Boy",,playable,2022-10-20 14:15:06 +0100B2300B932000,"Storm In A Teacup",gpu,ingame,2021-11-06 02:03:19 +0100D5D00DAF2000,"Story of a Gladiator",,playable,2020-07-29 15:08:18 +010017301007E000,"STORY OF SEASONS Pioneers of Olive [ 牧場物語 オリーブタウンと希望の大地 ]",,playable,2021-03-18 11:42:19 +0100ED400EEC2000,"STORY OF SEASONS: Friends of Mineral Town",,playable,2022-10-03 16:40:31 +010078D00E8F4000,"Stranded Sails - Explorers of the Cursed Islands",slow;nvdec;UE4,playable,2022-09-16 11:58:38 +01000A6013F86000,"Strange Field Football",,playable,2022-11-04 12:25:57 +0100DD600DD48000,"Stranger Things 3: The Game",,playable,2021-01-11 17:44:09 +0100D7E011C64000,"Strawberry Vinegar",nvdec,playable,2022-12-05 16:25:40 +010075101EF84000,"Stray",crash,ingame,2025-01-07 04:03:00 +0100024008310000,"Street Fighter 30th Anniversary Collection",online-broken;ldn-partial,playable,2022-08-20 16:50:47 +010012400D202000,"Street Outlaws: The List",nvdec,playable,2021-06-11 12:15:32 +0100888011CB2000,"Street Power Soccer",UE4;crash,boots,2020-11-21 12:28:57 +0100EC9010258000,"Streets of Rage 4",nvdec;online,playable,2020-07-07 21:21:22 +0100BDE012928000,"Strife: Veteran Edition",gpu,ingame,2022-01-15 05:10:42 +010039100DACC000,"Strike Force - War on Terror",crash;Needs Update,menus,2021-11-24 08:08:20 +010038A00E6C6000,"Strike Force Kitty",nvdec,playable,2020-07-29 16:22:15 +010072500D52E000,"Strike Suit Zero: Director's Cut",crash,boots,2021-04-23 17:15:14 +0100FF5005B76000,"STRIKERS1945 for Nintendo Switch",32-bit,playable,2021-06-03 19:35:04 +0100720008ED2000,"STRIKERS1945 Ⅱ for Nintendo Switch",32-bit,playable,2021-06-03 19:43:00 +0100681011B56000,"Struggling",,playable,2020-10-15 20:37:03 +0100AF000B4AE000,"Stunt Kite Party",nvdec,playable,2021-01-25 17:16:56 +0100C5500E7AE000,"STURMWIND EX",audio;32-bit,playable,2022-09-16 12:01:39 +,"Subarashiki Kono Sekai -Final Remix-",services;slow,ingame,2020-02-10 16:21:51 +010001400E474000,"Subdivision Infinity DX",UE4;crash,boots,2021-03-03 14:26:46 +0100E6400BCE8000,"Sublevel Zero Redux",,playable,2022-09-16 12:30:03 +0100EDA00D866000,"Submerged",nvdec;UE4;vulkan-backend-bug,playable,2022-08-16 15:17:01 +0100429011144000,"Subnautica",vulkan-backend-bug,playable,2022-11-04 13:07:29 +010014C011146000,"Subnautica: Below Zero",,playable,2022-12-23 14:15:13 +0100BF9012AC6000,"Suguru Nature",crash,ingame,2021-07-29 11:36:27 +01005CD00A2A2000,"Suicide Guy",,playable,2021-01-26 13:13:54 +0100DE000C2E4000,"Suicide Guy: Sleepin' Deeply",Needs More Attention,ingame,2022-09-20 23:45:25 +01003D50126A4000,"Sumire",,playable,2022-11-12 13:40:43 +0100A130109B2000,"Summer in Mara",nvdec,playable,2021-03-06 14:10:38 +01004E500DB9E000,"Summer Sweetheart",nvdec,playable,2022-09-16 12:51:46 +0100BFE014476000,"Sunblaze",,playable,2022-11-12 13:59:23 +01002D3007962000,"Sundered: Eldritch Edition",gpu,ingame,2021-06-07 11:46:00 +0100F7000464A000,"Super Beat Sports™",ldn-untested,playable,2022-08-16 16:05:50 +010051A00D716000,"Super Blood Hockey",,playable,2020-12-11 20:01:41 +01007AD00013E000,"Super Bomberman R",nvdec;online-broken;ldn-works,playable,2022-08-16 19:19:14 +0100B87017D94000,"SUPER BOMBERMAN R 2",deadlock,boots,2023-09-29 13:19:51 +0100D9B00DB5E000,"Super Cane Magic ZERO",,playable,2022-09-12 15:33:46 +010065F004E5E000,"Super Chariot",,playable,2021-06-03 13:19:01 +0100E5E00C464000,"SUPER DRAGON BALL HEROES WORLD MISSION",nvdec;online-broken,playable,2022-08-17 12:56:30 +010023100B19A000,"Super Dungeon Tactics",,playable,2022-10-06 17:40:40 +010056800B534000,"Super Inefficient Golf",UE4,playable,2022-08-17 15:53:45 +010015700D5DC000,"Super Jumpy Ball",,playable,2020-07-04 18:40:36 +0100196009998000,"Super Kickers League Ultimate",,playable,2021-01-26 13:36:48 +01003FB00C5A8000,"Super Kirby Clash™",ldn-works,playable,2024-07-30 18:21:55 +010000D00F81A000,"Super Korotama",,playable,2021-06-06 19:06:22 +01003E300FCAE000,"Super Loop Drive",nvdec;UE4,playable,2022-09-22 10:58:05 +054507E0B7552000,"Super Mario 64",homebrew,ingame,2024-03-20 16:57:27 +0100277011F1A000,"Super Mario Bros.™ 35",online-broken,menus,2022-08-07 16:27:25 +010015100B514000,"Super Mario Bros.™ Wonder",amd-vendor-bug,playable,2024-09-06 13:21:21 +01009B90006DC000,"Super Mario Maker™ 2",online-broken;ldn-broken,playable,2024-08-25 11:05:19 +0100000000010000,"Super Mario Odyssey™",nvdec;intel-vendor-bug;mac-bug,playable,2024-08-25 01:32:34 +010036B0034E4000,"Super Mario Party™",gpu;Needs Update;ldn-works,ingame,2024-06-21 05:10:16 +0100BC0018138000,"Super Mario RPG™",gpu;audio;nvdec,ingame,2024-06-19 17:43:42 +0000000000000000,"Super Mario World",homebrew,boots,2024-06-13 01:40:31 +010049900F546000,"Super Mario™ 3D All-Stars",services-horizon;slow;vulkan;amd-vendor-bug,ingame,2024-05-07 02:38:16 +010028600EBDA000,"Super Mario™ 3D World + Bowser’s Fury",ldn-works,playable,2024-07-31 10:45:37 +01004F8006A78000,"Super Meat Boy",services,playable,2020-04-02 23:10:07 +01009C200D60E000,"Super Meat Boy Forever",gpu,boots,2021-04-26 14:25:39 +0100BDD00EC5C000,"Super Mega Space Blaster Special Turbo",online,playable,2020-08-06 12:13:25 +010031F019294000,"Super Monkey Ball Banana Rumble",,playable,2024-06-28 10:39:18 +0100B2A00E1E0000,"Super Monkey Ball: Banana Blitz HD",online-broken,playable,2022-09-16 13:16:25 +01006D000D2A0000,"Super Mutant Alien Assault",,playable,2020-06-07 23:32:45 +01004D600AC14000,"Super Neptunia RPG",nvdec,playable,2022-08-17 16:38:52 +01008D300C50C000,"Super Nintendo Entertainment System™ - Nintendo Switch Online",,playable,2021-01-05 00:29:48 +0100284007D6C000,"Super One More Jump",,playable,2022-08-17 16:47:47 +01001F90122B2000,"Super Punch Patrol",,playable,2024-07-12 19:49:02 +0100331005E8E000,"Super Putty Squad",gpu;32-bit,ingame,2024-04-29 15:51:54 +,"SUPER ROBOT WARS T",online,playable,2021-03-25 11:00:40 +,"SUPER ROBOT WARS V",online,playable,2020-06-23 12:56:37 +,"SUPER ROBOT WARS X",online,playable,2020-08-05 19:18:51 +01004CF00A60E000,"Super Saurio Fly",nvdec,playable,2020-08-06 13:12:14 +010039700D200000,"Super Skelemania",,playable,2020-06-07 22:59:50 +01006A800016E000,"Super Smash Bros.™ Ultimate",gpu;crash;nvdec;ldn-works;intel-vendor-bug,ingame,2024-09-14 23:05:21 +0100D61012270000,"Super Soccer Blast",gpu,ingame,2022-02-16 08:39:12 +0100A9300A4AE000,"Super Sportmatchen",,playable,2022-08-19 12:34:40 +0100FB400F54E000,"Super Street: Racer",UE4,playable,2022-09-16 13:43:14 +010000500DB50000,"Super Tennis Blast",,playable,2022-08-19 16:20:48 +0100C6800D770000,"Super Toy Cars 2",gpu;regression,ingame,2021-03-02 20:15:15 +010035B00B3F0000,"Super Volley Blast",,playable,2022-08-19 18:14:40 +0100FF60051E2000,"Superbeat: Xonic EX",crash;nvdec,ingame,2022-08-19 18:54:40 +0100630010252000,"SuperEpic: The Entertainment War",,playable,2022-10-13 23:02:48 +01001A500E8B4000,"SUPERHOT",,playable,2021-05-05 19:51:30 +010075701153A000,"Superliminal",,playable,2020-09-03 13:20:50 +0100C01012654000,"Supermarket Shriek",,playable,2022-10-13 23:19:20 +0100A6E01201C000,"Supraland",nvdec;UE4;opengl-backend-bug,playable,2022-10-14 09:49:11 +010029A00AEB0000,"Survive! MR.CUBE",,playable,2022-10-20 14:44:47 +01005AB01119C000,"SUSHI REVERSI",,playable,2021-06-11 19:26:58 +0100DDD0085A4000,"Sushi Striker™: The Way of Sushido",nvdec,playable,2020-06-26 20:49:11 +0100D6D00EC2C000,"Sweet Witches",nvdec,playable,2022-10-20 14:56:37 +010049D00C8B0000,"Swimsanity!",online,menus,2021-11-26 14:27:16 +01005DF00DC26000,"SWORD ART ONLINE: FATAL BULLET Complete Edition",UE4;gpu;online,ingame,2021-06-09 16:58:50 +01001B600D1D6000,"SWORD ART ONLINE: Hollow Realization Deluxe Edition",nvdec,playable,2022-08-19 19:19:15 +01000D70049BE000,"Sword of the Guardian",,playable,2020-07-16 12:24:39 +0100E4701355C000,"Sword of the Necromancer",crash,ingame,2022-12-10 01:28:39 +01004BB00421E000,"Syberia 1 & 2",,playable,2021-12-24 12:06:25 +010028C003FD6000,"Syberia 2",gpu,ingame,2022-08-24 12:43:03 +0100CBE004E6C000,"Syberia 3",nvdec,playable,2021-01-25 16:15:12 +010007300C482000,"Sydney Hunter and the Curse of the Mayan",,playable,2020-06-15 12:15:57 +0100D8400DAF0000,"SYNAPTIC DRIVE",online,playable,2020-09-07 13:44:05 +01009E700F448000,"Synergia",,playable,2021-04-06 17:58:04 +01009BF00E7D2000,"SYNTHETIK: Ultimate",gpu;crash,ingame,2022-08-30 03:19:25 +010015B00BB00000,"Table Top Racing: World Tour - Nitro Edition",,playable,2020-04-05 23:21:30 +01000F20083A8000,"Tactical Mind",,playable,2021-01-25 18:05:00 +0100BD700F5F0000,"Tactical Mind 2",,playable,2020-07-01 23:11:07 +0100E12013C1A000,"Tactics Ogre: Reborn",vulkan-backend-bug,playable,2024-04-09 06:21:35 +01007C7006AEE000,"Tactics V: Obsidian Brigade",,playable,2021-02-28 15:09:42 +01002C000B552000,"Taiko no Tatsujin: Drum 'n' Fun!",online-broken;ldn-broken,playable,2023-05-20 15:10:12 +0100BCA0135A0000,"Taiko no Tatsujin: Rhythm Festival",,playable,2023-11-13 13:16:34 +0100DD6012644000,"Taiko no Tatsujin: Rhythmic Adventure Pack",,playable,2020-12-03 07:28:26 +0100346017304000,"Taiko Risshiden V DX",crash,nothing,2022-06-06 16:25:31 +010040A00EA26000,"Taimumari: Complete Edition",,playable,2022-12-06 13:34:49 +0100F0C011A68000,"Tales from the Borderlands",nvdec,playable,2022-10-25 18:44:14 +0100408007078000,"Tales of the Tiny Planet",,playable,2021-01-25 15:47:41 +01002C0008E52000,"Tales of Vesperia™: Definitive Edition",,playable,2024-09-28 03:20:47 +010012800EE3E000,"Tamashii",,playable,2021-06-10 15:26:20 +010008A0128C4000,"Tamiku",gpu,ingame,2021-06-15 20:06:55 +010048F007ADE000,"Tangledeep",crash,boots,2021-01-05 04:08:41 +01007DB010D2C000,"TaniNani",crash;kernel,nothing,2021-04-08 03:06:44 +0100E06012BB4000,"Tank Mechanic Simulator",,playable,2020-12-11 15:10:45 +01007A601318C000,"Tanuki Justice",opengl,playable,2023-02-21 18:28:10 +01004DF007564000,"Tanzia",,playable,2021-06-07 11:10:25 +01002D4011208000,"Task Force Kampas",,playable,2020-11-30 14:44:15 +0100B76011DAA000,"Taxi Chaos",slow;online-broken;UE4,playable,2022-10-25 19:13:00 +0100F43011E5A000,"Tcheco in the Castle of Lucio",,playable,2020-06-27 13:35:43 +010092B0091D0000,"Team Sonic Racing",online-broken;ldn-works,playable,2024-02-05 15:05:27 +0100FE701475A000,"Teenage Mutant Ninja Turtles: Shredder's Revenge",deadlock;crash,boots,2024-09-28 09:31:39 +01005CF01E784000,"Teenage Mutant Ninja Turtles: Splintered Fate",,playable,2024-08-03 13:50:42 +0100FDB0154E4000,"Teenage Mutant Ninja Turtles: The Cowabunga Collection",,playable,2024-01-22 19:39:04 +010021100DF22000,"Telling Lies",,playable,2020-10-23 21:14:51 +0100C8B012DEA000,"Temtem",online-broken,menus,2022-12-17 17:36:11 +0100B2600A398000,"TENGAI for Nintendo Switch",32-bit,playable,2020-11-25 19:52:26 +0100D7A005DFC000,"Tennis",,playable,2020-06-01 20:50:36 +01002970080AA000,"Tennis in the Face",,playable,2022-08-22 14:10:54 +0100092006814000,"Tennis World Tour",online-broken,playable,2022-08-22 14:27:10 +0100950012F66000,"Tennis World Tour 2",online-broken,playable,2022-10-14 10:43:16 +0100E46006708000,"Terraria",online-broken,playable,2022-09-12 16:14:57 +010070C00FB56000,"TERROR SQUID",online-broken,playable,2023-10-30 22:29:29 +010043700EB68000,"TERRORHYTHM (TRRT)",,playable,2021-02-27 13:18:14 +0100FBC007EAE000,"Tesla vs Lovecraft",,playable,2023-11-21 06:19:36 +01005C8005F34000,"Teslagrad",,playable,2021-02-23 14:41:02 +01006F701507A000,"Tested on Humans: Escape Room",,playable,2022-11-12 14:42:52 +0100671016432000,"TETRA for Nintendo Switch™ International Edition",,playable,2020-06-26 20:49:55 +01004E500A15C000,"TETRA's Escape",,playable,2020-06-03 18:21:14 +010040600C5CE000,"Tetris 99 Retail Bundle",gpu;online-broken;ldn-untested,ingame,2024-05-02 16:36:41 +0100EC000D39A000,"Tetsumo Party",,playable,2020-06-09 22:39:55 +01008ED0087A4000,"The Adventure Pals",,playable,2022-08-22 14:48:52 +0100137010152000,"The Adventures of 00 Dilly®",,playable,2020-12-30 19:32:29 +01003B400A00A000,"The Adventures of Bertram Fiddle: Episode 1: A Dreadly Business",nvdec,playable,2022-09-17 11:07:56 +010035C00A4BC000,"The Adventures of Elena Temple",,playable,2020-06-03 23:15:35 +010045A00E038000,"The Alliance Alive HD Remastered",nvdec,playable,2021-03-07 15:43:45 +010079A0112BE000,"The Almost Gone",,playable,2020-07-05 12:33:07 +0100CD500DDAE000,"The Bard's Tale ARPG: Remastered and Resnarkled",gpu;nvdec;online-working,ingame,2024-07-18 12:52:01 +01001E50141BC000,"The Battle Cats Unite!",deadlock,ingame,2021-12-14 21:38:34 +010089600E66A000,"The Big Journey",,playable,2022-09-16 14:03:08 +010021C000B6A000,"The Binding of Isaac: Afterbirth+",,playable,2021-04-26 14:11:56 +0100A5A00B2AA000,"The Bluecoats North & South",nvdec,playable,2020-12-10 21:22:29 +010062500BFC0000,"The Book of Unwritten Tales 2",,playable,2021-06-09 14:42:53 +01002A2004530000,"The Bridge",,playable,2020-06-03 13:53:26 +01008D700AB14000,"The Bug Butcher",,playable,2020-06-03 12:02:04 +01001B40086E2000,"The Bunker",nvdec,playable,2022-09-16 14:24:05 +010069100B7F0000,"The Caligula Effect: Overdose",UE4;gpu,ingame,2021-01-04 11:07:50 +010066800E9F8000,"The Childs Sight",,playable,2021-06-11 19:04:56 +0100B7C01169C000,"The Coma 2: Vicious Sisters",gpu,ingame,2020-06-20 12:51:51 +010033100691A000,"The Coma: Recut",,playable,2020-06-03 15:11:23 +01004170113D4000,"The Complex",nvdec,playable,2022-09-28 14:35:41 +01000F20102AC000,"The Copper Canyon Dixie Dash",UE4,playable,2022-09-29 11:42:29 +01000850037C0000,"The Count Lucanor",nvdec,playable,2022-08-22 15:26:37 +0100EBA01548E000,"The Cruel King and the Great Hero",gpu;services,ingame,2022-12-02 07:02:08 +010051800E922000,"The Dark Crystal: Age of Resistance Tactics",,playable,2020-08-11 13:43:41 +01003DE00918E000,"The Darkside Detective",,playable,2020-06-03 22:16:18 +01000A10041EA000,"The Elder Scrolls V: Skyrim",gpu;crash,ingame,2024-07-14 03:21:31 +01004A9006B84000,"The End Is Nigh",,playable,2020-06-01 11:26:45 +0100CA100489C000,"The Escapists 2",nvdec,playable,2020-09-24 12:31:31 +01001B700BA7C000,"The Escapists: Complete Edition",,playable,2021-02-24 17:50:31 +0100C2E0129A6000,"The Executioner",nvdec,playable,2021-01-23 00:31:28 +01006050114D4000,"The Experiment: Escape Room",gpu,ingame,2022-09-30 13:20:35 +0100B5900DFB2000,"The Eyes of Ara",,playable,2022-09-16 14:44:06 +01002DD00AF9E000,"The Fall",gpu,ingame,2020-05-31 23:31:16 +01003E5002320000,"The Fall Part 2: Unbound",,playable,2021-11-06 02:18:08 +0100CDC00789E000,"The Final Station",nvdec,playable,2022-08-22 15:54:39 +010098800A1E4000,"The First Tree",,playable,2021-02-24 15:51:05 +0100C38004DCC000,"The Flame In The Flood: Complete Edition",gpu;nvdec;UE4,ingame,2022-08-22 16:23:49 +010007700D4AC000,"The Forbidden Arts",,playable,2021-01-26 16:26:24 +010030700CBBC000,"The friends of Ringo Ishikawa",,playable,2022-08-22 16:33:17 +01006350148DA000,"The Gardener and the Wild Vines",gpu,ingame,2024-04-29 16:32:10 +0100B13007A6A000,"The Gardens Between",,playable,2021-01-29 16:16:53 +010036E00FB20000,"The Great Ace Attorney Chronicles",,playable,2023-06-22 21:26:29 +010007B012514000,"The Great Perhaps",,playable,2020-09-02 15:57:04 +01003B300E4AA000,"THE GRISAIA TRILOGY",,playable,2021-01-31 15:53:59 +01001950137D8000,"The Hong Kong Massacre",crash,ingame,2021-01-21 12:06:56 +01004AD00E094000,"The House of Da Vinci",,playable,2021-01-05 14:17:19 +01005A80113D2000,"The House of Da Vinci 2",,playable,2020-10-23 20:47:17 +010088401495E000,"The House of the Dead: Remake",,playable,2025-01-11 00:36:01 +0100E24004510000,"The Hunt - Championship Edition",32-bit,menus,2022-07-21 20:21:25 +01008940086E0000,"The Infectious Madness of Doctor Dekker",nvdec,playable,2022-08-22 16:45:01 +0100B0B00B318000,"The Inner World",nvdec,playable,2020-06-03 21:22:29 +0100A9D00B31A000,"The Inner World - The Last Wind Monk",nvdec,playable,2020-11-16 13:09:40 +0100AE5003EE6000,"The Jackbox Party Pack",online-working,playable,2023-05-28 09:28:40 +010015D003EE4000,"The Jackbox Party Pack 2",online-working,playable,2022-08-22 18:23:40 +0100CC80013D6000,"The Jackbox Party Pack 3",slow;online-working,playable,2022-08-22 18:41:06 +0100E1F003EE8000,"The Jackbox Party Pack 4",online-working,playable,2022-08-22 18:56:34 +010052C00B184000,"The Journey Down: Chapter One",nvdec,playable,2021-02-24 13:32:41 +01006BC00B188000,"The Journey Down: Chapter Three",nvdec,playable,2021-02-24 13:45:27 +01009AB00B186000,"The Journey Down: Chapter Two",nvdec,playable,2021-02-24 13:32:13 +010020500BD98000,"The King's Bird",,playable,2022-08-22 19:07:46 +010031B00DB34000,"the Knight & the Dragon",gpu,ingame,2023-08-14 10:31:43 +01007AF012E16000,"The Language Of Love",Needs Update;crash,nothing,2020-12-03 17:54:00 +010079C017F5E000,"The Lara Croft Collection",services-horizon;deadlock,nothing,2024-07-12 22:45:51 +0100449011506000,"The Last Campfire",,playable,2022-10-20 16:44:19 +0100AAD011592000,"The Last Dead End",gpu;UE4,ingame,2022-10-20 16:59:44 +0100AC800D022000,"THE LAST REMNANT Remastered",nvdec;UE4,playable,2023-02-09 17:24:44 +0100B1900F0B6000,"The Legend of Dark Witch",,playable,2020-07-12 15:18:33 +01001920156C2000,"The Legend of Heroes: Trails from Zero",gpu;mac-bug,ingame,2024-09-14 21:41:41 +01005420101DA000,"The Legend of Heroes: Trails of Cold Steel III",,playable,2020-12-16 10:59:18 +01009B101044C000,"The Legend of Heroes: Trails of Cold Steel III Demo",demo;nvdec,playable,2021-04-23 01:07:32 +0100D3C010DE8000,"The Legend of Heroes: Trails of Cold Steel IV",nvdec,playable,2021-04-23 14:01:05 +01005E5013862000,"THE LEGEND OF HEROES: ZERO NO KISEKI KAI [英雄傳說 零之軌跡:改]",crash,nothing,2021-09-30 14:41:07 +01008CF01BAAC000,"The Legend of Zelda Echoes of Wisdom",nvdec;ASTC;intel-vendor-bug,playable,2024-10-01 14:11:01 +0100509005AF2000,"The Legend of Zelda: Breath of the Wild Demo",demo,ingame,2022-12-24 05:02:58 +01007EF00011E000,"The Legend of Zelda™: Breath of the Wild",gpu;amd-vendor-bug;mac-bug,ingame,2024-09-23 19:35:46 +01006BB00C6F0000,"The Legend of Zelda™: Link’s Awakening",gpu;nvdec;mac-bug,ingame,2023-08-09 17:37:40 +01002DA013484000,"The Legend of Zelda™: Skyward Sword HD",gpu,ingame,2024-06-14 16:48:29 +0100F2C0115B6000,"The Legend of Zelda™: Tears of the Kingdom",gpu;amd-vendor-bug;intel-vendor-bug;mac-bug,ingame,2024-08-24 12:38:30 +0100A4400BE74000,"The LEGO Movie 2 Videogame",,playable,2023-03-01 11:23:37 +010064B00B95C000,"The Liar Princess and the Blind Prince",audio;slow,playable,2020-06-08 21:23:28 +0100735004898000,"The Lion's Song",,playable,2021-06-09 15:07:16 +0100A5000D590000,"The Little Acre",nvdec,playable,2021-03-02 20:22:27 +01007A700A87C000,"The Long Dark",,playable,2021-02-21 14:19:52 +010052B003A38000,"The Long Reach",nvdec,playable,2021-02-24 14:09:48 +01003C3013300000,"The Long Return",slow,playable,2020-12-10 21:05:10 +0100CE1004E72000,"The Longest Five Minutes",gpu,boots,2023-02-19 18:33:11 +0100F3D0122C2000,"The Longing",gpu,ingame,2022-11-12 15:00:58 +010085A00C5E8000,"The Lord of the Rings: Adventure Card Game - Definitive Edition",online-broken,menus,2022-09-16 15:19:32 +01008A000A404000,"The Lost Child",nvdec,playable,2021-02-23 15:44:20 +0100BAB00A116000,"The Low Road",,playable,2021-02-26 13:23:22 +,"The Mahjong",Needs Update;crash;services,nothing,2021-04-01 22:06:22 +0100DC300AC78000,"The Messenger",,playable,2020-03-22 13:51:37 +0100DEC00B2BC000,"The Midnight Sanctuary",nvdec;UE4;vulkan-backend-bug,playable,2022-10-03 17:17:32 +0100F1B00B456000,"The MISSING: J.J. Macfield and the Island of Memories",,playable,2022-08-22 19:36:18 +010033300AC1A000,"The Mooseman",,playable,2021-02-24 12:58:57 +01005E9016BDE000,"The movie The Quintessential Bride -Five Memories Spent with You-",,playable,2023-12-14 14:43:43 +0100496004194000,"The Mummy Demastered",,playable,2021-02-23 13:11:27 +01004C500AAF6000,"The Mystery of the Hudson Case",,playable,2020-06-01 11:03:36 +01000CF0084BC000,"The Next Penelope",,playable,2021-01-29 16:26:11 +01001FB00E386000,"THE NINJA SAVIORS Return of the Warriors",online,playable,2021-03-25 23:48:07 +0100B080184BC000,"The Oregon Trail",gpu,ingame,2022-11-25 16:11:49 +0100B0101265C000,"The Otterman Empire",UE4;gpu,ingame,2021-06-17 12:27:15 +01000BC01801A000,"The Outbound Ghost",,nothing,2024-03-02 17:10:58 +0100626011656000,"The Outer Worlds",gpu;nvdec;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-10-03 17:55:32 +01005C500D690000,"The Park",UE4;crash;gpu,ingame,2020-12-18 12:50:07 +010050101127C000,"The Persistence",nvdec,playable,2021-06-06 19:15:40 +0100CD300880E000,"The Pinball Arcade",online-broken,playable,2022-08-22 19:49:46 +01006BD018B54000,"The Plucky Squire",crash,ingame,2024-09-27 22:32:33 +0100E6A00B960000,"The Princess Guide",,playable,2021-02-24 14:23:34 +010058A00BF1C000,"The Raven Remastered",nvdec,playable,2022-08-22 20:02:47 +0100EB100D17C000,"The Red Strings Club",,playable,2020-06-01 10:51:18 +010079400BEE0000,"The Room",,playable,2021-04-14 18:57:05 +010033100EE12000,"The Ryuo's Work is Never Done!",,playable,2022-03-29 00:35:37 +01002BA00C7CE000,"The Savior's Gang",gpu;nvdec;UE4,ingame,2022-09-21 12:37:48 +0100F3200E7CA000,"The Settlers®: New Allies",deadlock,nothing,2023-10-25 00:18:05 +0100F89003BC8000,"The Sexy Brutale",,playable,2021-01-06 17:48:28 +01001FF00BEE8000,"The Shapeshifting Detective",nvdec,playable,2021-01-10 13:10:49 +010028D00BA1A000,"The Sinking City",nvdec;UE4,playable,2022-09-12 16:41:55 +010041C00A68C000,"The Spectrum Retreat",,playable,2022-10-03 18:52:40 +010029300E5C4000,"The Stanley Parable: Ultra Deluxe",gpu,ingame,2024-07-12 23:18:26 +010007F00AF56000,"The Station",,playable,2022-09-28 18:15:27 +0100858010DC4000,"the StoryTale",,playable,2022-09-03 13:00:25 +0100AA400A238000,"The Stretchers™",nvdec;UE4,playable,2022-09-16 15:40:58 +0100E3100450E000,"The Strike - Championship Edition",gpu;32-bit,boots,2022-12-09 15:58:16 +0100EF200DA60000,"The Survivalists",,playable,2020-10-27 15:51:13 +010040D00B7CE000,"The Swindle",nvdec,playable,2022-08-22 20:53:52 +010037D00D568000,"The Swords of Ditto: Mormo's Curse",slow,ingame,2020-12-06 00:13:12 +01009B300D76A000,"The Tiny Bang Story",,playable,2021-03-05 15:39:05 +0100C3300D8C4000,"The Touryst",crash,ingame,2023-08-22 01:32:38 +010047300EBA6000,"The Tower of Beatrice",,playable,2022-09-12 16:51:42 +010058000A576000,"The Town of Light: Deluxe Edition",gpu,playable,2022-09-21 12:51:34 +0100B0E0086F6000,"The Trail: Frontier Challenge",slow,playable,2022-08-23 15:10:51 +0100EA100F516000,"The Turing Test",nvdec,playable,2022-09-21 13:24:07 +010064E00ECBC000,"The Unicorn Princess",,playable,2022-09-16 16:20:56 +0100BCF00E970000,"The Vanishing of Ethan Carter",UE4,playable,2021-06-09 17:14:47 +0100D0500B0A6000,"The VideoKid",nvdec,playable,2021-01-06 09:28:24 +,"The Voice",services,menus,2020-07-28 20:48:49 +010056E00B4F4000,"The Walking Dead: A New Frontier",,playable,2022-09-21 13:40:48 +010099100B6AC000,"The Walking Dead: Season Two",,playable,2020-08-09 12:57:06 +010029200B6AA000,"The Walking Dead: The Complete First Season",,playable,2021-06-04 13:10:56 +010060F00AA70000,"The Walking Dead: The Final Season - Season Pass",online-broken,playable,2022-08-23 17:22:32 +010095F010568000,"The Wanderer: Frankenstein's Creature",,playable,2020-07-11 12:49:51 +01008B200FC6C000,"The Wardrobe: Even Better Edition",,playable,2022-09-16 19:14:55 +01003D100E9C6000,"The Witcher 3: Wild Hunt",nvdec;vulkan-backend-bug;amd-vendor-bug,playable,2024-02-22 12:21:51 +0100B1300FF08000,"The Wonderful 101: Remastered",slow;nvdec,playable,2022-09-30 13:49:28 +0100C1500B82E000,"The World Ends with You®: Final Remix",ldn-untested,playable,2022-07-09 01:11:21 +0100E6200D56E000,"The World Next Door",,playable,2022-09-21 14:15:23 +010075900CD1C000,"Thea: The Awakening",,playable,2021-01-18 15:08:47 +010081B01777C000,"THEATRHYTHM FINAL BAR LINE",Incomplete,ingame,2024-08-05 14:24:55 +01001C2010D08000,"They Bleed Pixels",gpu,ingame,2024-08-09 05:52:18 +0100768010970000,"They Came From the Sky",,playable,2020-06-12 16:38:19 +0100CE700F62A000,"Thief of Thieves: Season One",crash;loader-allocator,nothing,2021-11-03 07:16:30 +0100CE400E34E000,"Thief Simulator",,playable,2023-04-22 04:39:11 +01009BD003B36000,"Thimbleweed Park",,playable,2022-08-24 11:15:31 +0100F2300A5DA000,"Think of the Children",deadlock,menus,2021-11-23 09:04:45 +0100066004D68000,"This Is the Police",,playable,2022-08-24 11:37:05 +01004C100A04C000,"This is the Police 2",,playable,2022-08-24 11:49:17 +0100C7C00F77C000,"This Strange Realm Of Mine",,playable,2020-08-28 12:07:24 +0100A8700BC2A000,"This War of Mine: Complete Edition",gpu;32-bit;nvdec,ingame,2022-08-24 12:00:44 +0100AC500EEE8000,"THOTH",,playable,2020-08-05 18:35:28 +0100E910103B4000,"Thronebreaker: The Witcher Tales",nvdec,playable,2021-06-03 16:40:15 +01006F6002840000,"Thumper",gpu,ingame,2024-08-12 02:41:07 +01000AC011588000,"Thy Sword",crash,ingame,2022-09-30 16:43:14 +0100E9000C42C000,"Tick Tock: A Tale for Two",,menus,2020-07-14 14:49:38 +0100B6D00C2DE000,"Tied Together",nvdec,playable,2021-04-10 14:03:46 +010074500699A000,"Timber Tennis: Versus",online,playable,2020-10-03 17:07:15 +01004C500B698000,"Time Carnage",,playable,2021-06-16 17:57:28 +0100F770045CA000,"Time Recoil",,playable,2022-08-24 12:44:03 +0100DD300CF3A000,"Timespinner",gpu,ingame,2022-08-09 09:39:11 +0100393013A10000,"Timothy and the Mysterious Forest",gpu;slow,ingame,2021-06-02 00:42:11 +0100F7C010AF6000,"Tin & Kuna",,playable,2020-11-17 12:16:12 +0100DF900FC52000,"Tiny Gladiators",,playable,2020-12-14 00:09:43 +010061A00AE64000,"Tiny Hands Adventure",,playable,2022-08-24 16:07:48 +010074800741A000,"TINY METAL",UE4;gpu;nvdec,ingame,2021-03-05 17:11:57 +01005D0011A40000,"Tiny Racer",,playable,2022-10-07 11:13:03 +010002401AE94000,"Tiny Thor",gpu,ingame,2024-07-26 08:37:35 +0100A73016576000,"Tinykin",gpu,ingame,2023-06-18 12:12:24 +0100FE801185E000,"Titan Glory",,boots,2022-10-07 11:36:40 +0100605008268000,"Titan Quest",nvdec;online-broken,playable,2022-08-19 21:54:15 +01009C400E93E000,"Titans Pinball",slow,playable,2020-06-09 16:53:52 +010019500DB1E000,"Tlicolity Eyes - twinkle showtime -",gpu,boots,2021-05-29 19:43:44 +010036700F83E000,"To the Moon",,playable,2021-03-20 15:33:38 +010014900865A000,"Toast Time: Smash Up!",crash;services,menus,2020-04-03 12:26:59 +0100A4A00B2E8000,"Toby: The Secret Mine",nvdec,playable,2021-01-06 09:22:33 +0100B5200BB7C000,"ToeJam & Earl: Back in the Groove!",,playable,2021-01-06 22:56:58 +0100B5E011920000,"TOHU",slow,playable,2021-02-08 15:40:44 +0100F3400A432000,"Toki",nvdec,playable,2021-01-06 19:59:23 +01003E500F962000,"Tokyo Dark – Remembrance –",nvdec,playable,2021-06-10 20:09:49 +0100A9400C9C2000,"Tokyo Mirage Sessions™ #FE Encore",32-bit;nvdec,playable,2022-07-07 09:41:07 +0100E2E00CB14000,"Tokyo School Life",,playable,2022-09-16 20:25:54 +010024601BB16000,"Tomb Raider I-III Remastered Starring Lara Croft",gpu;opengl,ingame,2024-09-27 12:32:04 +0100D7F01E49C000,"Tomba! Special Edition",services-horizon,nothing,2024-09-15 21:59:54 +0100D400100F8000,"Tonight We Riot",,playable,2021-02-26 15:55:09 +0100CC00102B4000,"Tony Hawk's™ Pro Skater™ 1 + 2",gpu;Needs Update,ingame,2024-09-24 08:18:14 +010093F00E818000,"Tools Up!",crash,ingame,2020-07-21 12:58:17 +01009EA00E2B8000,"Toon War",,playable,2021-06-11 16:41:53 +010090400D366000,"Torchlight II",,playable,2020-07-27 14:18:37 +010075400DDB8000,"Torchlight III",nvdec;online-broken;UE4,playable,2022-10-14 22:20:17 +01007AF011732000,"TORICKY-S",deadlock,menus,2021-11-25 08:53:36 +0100BEB010F2A000,"Torn Tales: Rebound Edition",,playable,2020-11-01 14:11:59 +0100A64010D48000,"Total Arcade Racing",,playable,2022-11-12 15:12:48 +0100512010728000,"Totally Reliable Delivery Service",online-broken,playable,2024-09-27 19:32:22 +01004E900B082000,"Touhou Genso Wanderer Reloaded",gpu;nvdec,ingame,2022-08-25 11:57:36 +010010F004022000,"Touhou Kobuto V: Burst Battle",,playable,2021-01-11 15:28:58 +0100E9D00D6C2000,"TOUHOU Spell Bubble",,playable,2020-10-18 11:43:43 +0100F7B00595C000,"Tower Of Babel",,playable,2021-01-06 17:05:15 +010094600DC86000,"Tower Of Time",gpu;nvdec,ingame,2020-07-03 11:11:12 +0100A1C00359C000,"TowerFall",,playable,2020-05-16 18:58:07 +0100F6200F77E000,"Towertale",,playable,2020-10-15 13:56:58 +010049E00BA34000,"Townsmen - A Kingdom Rebuilt",nvdec,playable,2022-10-14 22:48:59 +01009FF00A160000,"Toy Stunt Bike: Tiptop's Trials",UE4,playable,2021-04-10 13:56:34 +0100192010F5A000,"Tracks - Toybox Edition",UE4;crash,nothing,2021-02-08 15:19:18 +0100BCA00843A000,"Trailblazers",,playable,2021-03-02 20:40:49 +010009F004E66000,"Transcripted",,playable,2022-08-25 12:13:11 +01005E500E528000,"TRANSFORMERS: BATTLEGROUNDS",online,playable,2021-06-17 18:08:19 +0100BE500BEA2000,"Transistor",,playable,2020-10-22 11:28:02 +0100A8D010BFA000,"Travel Mosaics 2: Roman Holiday",,playable,2021-05-26 12:33:16 +0100102010BFC000,"Travel Mosaics 3: Tokyo Animated",,playable,2021-05-26 12:06:27 +010096D010BFE000,"Travel Mosaics 4: Adventures In Rio",,playable,2021-05-26 11:54:58 +01004C4010C00000,"Travel Mosaics 5: Waltzing Vienna",,playable,2021-05-26 11:49:35 +0100D520119D6000,"Travel Mosaics 6: Christmas Around the World",,playable,2021-05-26 00:52:47 +01000BD0119DE000,"Travel Mosaics 7: Fantastic Berlin",,playable,2021-05-22 18:37:34 +01007DB00A226000,"Travel Mosaics: A Paris Tour",,playable,2021-05-26 12:42:26 +010011600C946000,"Travis Strikes Again: No More Heroes",nvdec;UE4,playable,2022-08-25 12:36:38 +01006EB004B0E000,"Treadnauts",,playable,2021-01-10 14:57:41 +0100D7800E9E0000,"Trials of Mana",UE4,playable,2022-09-30 21:50:37 +0100E1D00FBDE000,"Trials of Mana Demo",nvdec;UE4;demo;vulkan-backend-bug,playable,2022-09-26 18:00:02 +01003E800A102000,"Trials Rising Standard Edition",,playable,2024-02-11 01:36:39 +0100CC80140F8000,"TRIANGLE STRATEGY™",gpu;Needs Update;UE4;vulkan-backend-bug,ingame,2024-09-25 20:48:37 +010064E00A932000,"Trine 2: Complete Story",nvdec,playable,2021-06-03 11:45:20 +0100DEC00A934000,"Trine 3: The Artifacts of Power",ldn-untested;online,playable,2021-06-03 12:01:24 +010055E00CA68000,"Trine 4: The Nightmare Prince",gpu,nothing,2025-01-07 05:47:46 +0100D9000A930000,"Trine Enchanted Edition",ldn-untested;nvdec,playable,2021-06-03 11:28:15 +01002D7010A54000,"Trinity Trigger",crash,ingame,2023-03-03 03:09:09 +0100868013FFC000,"TRIVIAL PURSUIT Live! 2",,boots,2022-12-19 00:04:33 +0100F78002040000,"Troll and I™",gpu;nvdec,ingame,2021-06-04 16:58:50 +0100145011008000,"Trollhunters: Defenders of Arcadia",gpu;nvdec,ingame,2020-11-30 13:27:09 +0100FBE0113CC000,"Tropico 6 - Nintendo Switch™ Edition",nvdec;UE4,playable,2022-10-14 23:21:03 +0100D06018DCA000,"Trouble Witches Final! Episode 01: Daughters of Amalgam",,playable,2024-04-08 15:08:11 +0100B5B0113CE000,"Troubleshooter",UE4;crash,nothing,2020-10-04 13:46:50 +010089600FB72000,"Trover Saves The Universe",UE4;crash,nothing,2020-10-03 10:25:27 +0100E6300D448000,"Trüberbrook",,playable,2021-06-04 17:08:00 +0100F2100AA5C000,"Truck and Logistics Simulator",,playable,2021-06-11 13:29:08 +0100CB50107BA000,"Truck Driver",online-broken,playable,2022-10-20 17:42:33 +0100E75004766000,"True Fear: Forsaken Souls - Part 1",nvdec,playable,2020-12-15 21:39:52 +010099900CAB2000,"TT Isle of Man",nvdec,playable,2020-06-22 12:25:13 +010000400F582000,"TT Isle of Man Ride on the Edge 2",gpu;nvdec;online-broken,ingame,2022-09-30 22:13:05 +0100752011628000,"TTV2",,playable,2020-11-27 13:21:36 +0100AFE00452E000,"Tumblestone",,playable,2021-01-07 17:49:20 +010085500D5F6000,"Turok",gpu,ingame,2021-06-04 13:16:24 +0100CDC00D8D6000,"Turok 2: Seeds of Evil",gpu;vulkan,ingame,2022-09-12 17:50:05 +010004B0130C8000,"Turrican Flashback",audout,playable,2021-08-30 10:07:56 +0100B1F0090F2000,"TurtlePop: Journey to Freedom",,playable,2020-06-12 17:45:39 +0100047009742000,"Twin Robots: Ultimate Edition",nvdec,playable,2022-08-25 14:24:03 +010031200E044000,"Two Point Hospital™",crash;nvdec,ingame,2022-09-22 11:22:23 +010038400C2FE000,"TY the Tasmanian Tiger™ HD",32-bit;crash;nvdec,menus,2020-12-17 21:15:00 +010073A00C4B2000,"Tyd wag vir Niemand",,playable,2021-03-02 13:39:53 +0100D5B00D6DA000,"Type:Rider",,playable,2021-01-06 13:12:55 +010040D01222C000,"UBERMOSH: SANTICIDE",,playable,2020-11-27 15:05:01 +0100992010BF8000,"Ubongo",,playable,2021-02-04 21:15:01 +010079000B56C000,"UglyDolls: An Imperfect Adventure",nvdec;UE4,playable,2022-08-25 14:42:16 +010048901295C000,"Ultimate Fishing Simulator",,playable,2021-06-16 18:38:23 +01009D000FAE0000,"Ultimate Racing 2D",,playable,2020-08-05 17:27:09 +010045200A1C2000,"Ultimate Runner",,playable,2022-08-29 12:52:40 +01006B601117E000,"Ultimate Ski Jumping 2020",online,playable,2021-03-02 20:54:11 +01002D4012222000,"Ultra Hat Dimension",services;audio,menus,2021-11-18 09:05:20 +01009C000415A000,"Ultra Hyperball",,playable,2021-01-06 10:09:55 +01007330027EE000,"Ultra Street Fighter® II: The Final Challengers",ldn-untested,playable,2021-11-25 07:54:58 +01006A300BA2C000,"Umineko no Naku Koro ni Saku - うみねこのなく頃に咲 ~猫箱と夢想の交響曲~",audout,playable,2023-05-04 17:25:23 +0100592005164000,"UNBOX: Newbie's Adventure",UE4,playable,2022-08-29 13:12:56 +01002D900C5E4000,"Uncanny Valley",nvdec,playable,2021-06-04 13:28:45 +010076F011F54000,"Undead & Beyond",nvdec,playable,2022-10-04 09:11:18 +01008F3013E4E000,"Under Leaves",,playable,2021-05-22 18:13:58 +010080B00AD66000,"Undertale",,playable,2022-08-31 17:31:46 +01008F80049C6000,"Unepic",,playable,2024-01-15 17:03:00 +01007820096FC000,"UnExplored",,playable,2021-01-06 10:02:16 +01007D1013512000,"Unhatched",,playable,2020-12-11 12:11:09 +010069401ADB8000,"Unicorn Overlord",,playable,2024-09-27 14:04:32 +0100B1400D92A000,"Unit 4",,playable,2020-12-16 18:54:13 +010045200D3A4000,"Unknown Fate",slow,ingame,2020-10-15 12:27:42 +0100AB2010B4C000,"Unlock The King",,playable,2020-09-01 13:58:27 +0100A3E011CB0000,"Unlock the King 2",,playable,2021-06-15 20:43:55 +01005AA00372A000,"UNO® for Nintendo Switch",nvdec;ldn-untested,playable,2022-07-28 14:49:47 +0100E5D00CC0C000,"Unravel Two",nvdec,playable,2024-05-23 15:45:05 +010001300CC4A000,"Unruly Heroes",,playable,2021-01-07 18:09:31 +0100B410138C0000,"Unspottable",,playable,2022-10-25 19:28:49 +010082400BCC6000,"Untitled Goose Game",,playable,2020-09-26 13:18:06 +0100E49013190000,"Unto The End",gpu,ingame,2022-10-21 11:13:29 +0100B110109F8000,"Urban Flow",services,playable,2020-07-05 12:51:47 +010054F014016000,"Urban Street Fighting",,playable,2021-02-20 19:16:36 +01001B10068EC000,"Urban Trial Playground",UE4;nvdec;online,playable,2021-03-25 20:56:51 +0100A2500EB92000,"Urban Trial Tricky",nvdec;UE4,playable,2022-12-06 13:07:56 +01007C0003AEC000,"Use Your Words",nvdec;online-broken,menus,2022-08-29 17:22:10 +0100D4300EBF8000,"Uta no Prince-sama Amazing Aria & Sweet Serenade LOVE",crash;Needs More Attention;Needs Update,nothing,2022-02-09 08:57:44 +010024200E00A000,"Uta no☆Prince-sama♪ Repeat Love",nvdec,playable,2022-12-09 09:21:51 +010029B00CC3E000,"UTOPIA 9 - A Volatile Vacation",nvdec,playable,2020-12-16 17:06:42 +010064400B138000,"V-Rally 4",gpu;nvdec,ingame,2021-06-07 19:37:31 +0100A6700D66E000,"VA-11 HALL-A",,playable,2021-02-26 15:05:34 +01009E2003FE2000,"Vaccine",nvdec,playable,2021-01-06 01:02:07 +010089700F30C000,"Valfaris",,playable,2022-09-16 21:37:24 +0100CAF00B744000,"Valkyria Chronicles",32-bit;crash;nvdec,ingame,2022-11-23 20:03:32 +01005C600AC68000,"Valkyria Chronicles 4",audout;nvdec,playable,2021-06-03 18:12:25 +0100FBD00B91E000,"Valkyria Chronicles 4 Demo",slow;demo,ingame,2022-08-29 20:39:07 +0100E0E00B108000,"Valley",nvdec,playable,2022-09-28 19:27:58 +010089A0197E4000,"Vampire Survivors",,ingame,2024-06-17 09:57:38 +010020C00FFB6000,"Vampire: The Masquerade - Coteries of New York",,playable,2020-10-04 14:55:22 +01000BD00CE64000,"VAMPYR",nvdec;UE4,playable,2022-09-16 22:15:51 +01007C500D650000,"Vandals",,playable,2021-01-27 21:45:46 +010030F00CA1E000,"Vaporum",nvdec,playable,2021-05-28 14:25:33 +010045C0109F2000,"VARIABLE BARRICADE NS",nvdec,playable,2022-02-26 15:50:13 +0100FE200AF48000,"VASARA Collection",nvdec,playable,2021-02-28 15:26:10 +0100AD300E4FA000,"Vasilis",,playable,2020-09-01 15:05:35 +01009CD003A0A000,"Vegas Party",,playable,2021-04-14 19:21:41 +010098400E39E000,"Vektor Wars",online-broken;vulkan-backend-bug,playable,2022-10-04 09:23:46 +01003A8018E60000,"Vengeful Guardian: Moonrider",deadlock,boots,2024-03-17 23:35:37 +010095B00DBC8000,"Venture Kid",crash;gpu,ingame,2021-04-18 16:33:17 +0100C850134A0000,"Vera Blanc: Full Moon",audio,playable,2020-12-17 12:09:30 +0100379013A62000,"Very Very Valet",nvdec,playable,2022-11-12 15:25:51 +01006C8014DDA000,"Very Very Valet Demo",crash;Needs Update;demo,boots,2022-11-12 15:26:13 +010057B00712C000,"Vesta",nvdec,playable,2022-08-29 21:03:39 +0100E81007A06000,"Victor Vran Overkill Edition",gpu;deadlock;nvdec;opengl,ingame,2022-08-30 11:46:56 +01005880063AA000,"Violett",nvdec,playable,2021-01-28 13:09:36 +010037900CB1C000,"Viviette",,playable,2021-06-11 15:33:40 +0100D010113A8000,"Void Bastards",,playable,2022-10-15 00:04:19 +0100FF7010E7E000,"void tRrLM(); //Void Terrarium",gpu;Needs Update;regression,ingame,2023-02-10 01:13:25 +010078D0175EE000,"void* tRrLM2(); //Void Terrarium 2",,playable,2023-12-21 11:00:41 +0100B1A0066DC000,"Volgarr the Viking",,playable,2020-12-18 15:25:50 +0100A7900E79C000,"Volta-X",online-broken,playable,2022-10-07 12:20:51 +01004D8007368000,"Vostok Inc.",,playable,2021-01-27 17:43:59 +0100B1E0100A4000,"Voxel Galaxy",,playable,2022-09-28 22:45:02 +0100AFA011068000,"Voxel Pirates",,playable,2022-09-28 22:55:02 +0100BFB00D1F4000,"Voxel Sword",,playable,2022-08-30 14:57:27 +01004E90028A2000,"Vroom in the night sky",Needs Update;vulkan-backend-bug,playable,2023-02-20 02:32:29 +0100C7C00AE6C000,"VSR: Void Space Racing",,playable,2021-01-27 14:08:59 +0100B130119D0000,"Waifu Uncovered",crash,ingame,2023-02-27 01:17:46 +0100E29010A4A000,"Wanba Warriors",,playable,2020-10-04 17:56:22 +010078800825E000,"Wanderjahr TryAgainOrWalkAway",,playable,2020-12-16 09:46:04 +0100B27010436000,"Wanderlust Travel Stories",,playable,2021-04-07 16:09:12 +0100F8A00853C000,"Wandersong",nvdec,playable,2021-06-04 15:33:34 +0100D67013910000,"Wanna Survive",,playable,2022-11-12 21:15:43 +010056901285A000,"War Dogs: Red's Return",,playable,2022-11-13 15:29:01 +01004FA01391A000,"War Of Stealth - assassin",,playable,2021-05-22 17:34:38 +010035A00D4E6000,"War Party",nvdec,playable,2021-01-27 18:26:32 +010049500DE56000,"War Tech Fighters",nvdec,playable,2022-09-16 22:29:31 +010084D00A134000,"War Theatre",gpu,ingame,2021-06-07 19:42:45 +0100B6B013B8A000,"War Truck Simulator",,playable,2021-01-31 11:22:54 +0100563011B4A000,"War-Torn Dreams",crash,nothing,2020-10-21 11:36:16 +010054900F51A000,"WARBORN",,playable,2020-06-25 12:36:47 +01000F0002BB6000,"Wargroove",online-broken,playable,2022-08-31 10:30:45 +0100C6000EEA8000,"Warhammer 40,000: Mechanicus",nvdec,playable,2021-06-13 10:46:38 +0100E5600D7B2000,"WARHAMMER 40,000: SPACE WOLF",online-broken,playable,2022-09-20 21:11:20 +010031201307A000,"Warhammer Age of Sigmar: Storm Ground",nvdec;online-broken;UE4,playable,2022-11-13 15:46:14 +01002FF00F460000,"Warhammer Quest 2: The End Times",,playable,2020-08-04 15:28:03 +0100563010E0C000,"WarioWare™: Get It Together!",gpu;opengl-backend-bug,ingame,2024-04-23 01:04:56 +010045B018EC2000,"WarioWare™: Move It!",,playable,2023-11-14 00:23:51 +0100E0400E320000,"Warlocks 2: God Slayers",,playable,2020-12-16 17:36:50 +0100DB300A026000,"Warp Shift",nvdec,playable,2020-12-15 14:48:48 +010032700EAC4000,"WarriOrb",UE4,playable,2021-06-17 15:45:14 +0100E8500AD58000,"WARRIORS OROCHI 4 ULTIMATE",nvdec;online-broken,playable,2024-08-07 01:50:37 +0100CD900FB24000,"WARTILE",UE4;crash;gpu,menus,2020-12-11 21:56:10 +010039A00BC64000,"Wasteland 2: Director's Cut",nvdec,playable,2021-01-27 13:34:11 +0100B79011F06000,"Water Balloon Mania",,playable,2020-10-23 20:20:59 +0100BA200C378000,"Way of the Passive Fist",gpu,ingame,2021-02-26 21:07:06 +0100560010E3E000,"We should talk.",crash,nothing,2020-08-03 12:32:36 +010096000EEBA000,"Welcome to Hanwell",UE4;crash,boots,2020-08-03 11:54:57 +0100D7F010B94000,"Welcome to Primrose Lake",,playable,2022-10-21 11:30:57 +010035600EC94000,"Wenjia",,playable,2020-06-08 11:38:30 +010031B00A4E8000,"West of Loathing",,playable,2021-01-28 12:35:19 +010038900DFE0000,"What Remains of Edith Finch",slow;UE4,playable,2022-08-31 19:57:59 +010033600ADE6000,"Wheel of Fortune®",crash;Needs More Attention;nvdec,boots,2023-11-12 20:29:24 +0100DFC00405E000,"Wheels of Aurelia",,playable,2021-01-27 21:59:25 +010027D011C9C000,"Where Angels Cry",gpu;nvdec,ingame,2022-09-30 22:24:47 +0100FDB0092B4000,"Where Are My Friends?",,playable,2022-09-21 14:39:26 +01000C000C966000,"Where the Bees Make Honey",,playable,2020-07-15 12:40:49 +010017500E7E0000,"Whipseey and the Lost Atlas",,playable,2020-06-23 20:24:14 +010015A00AF1E000,"Whispering Willows",nvdec,playable,2022-09-30 22:33:05 +010027F0128EA000,"Who Wants to Be a Millionaire?",crash,nothing,2020-12-11 20:22:42 +0100C7800CA06000,"Widget Satchel",,playable,2022-09-16 22:41:07 +0100CFC00A1D8000,"Wild Guns™ Reloaded",,playable,2021-01-28 12:29:05 +010071F00D65A000,"Wilmot's Warehouse",audio;gpu,ingame,2021-06-02 17:24:32 +010048800B638000,"Windjammers",online,playable,2020-10-13 11:24:25 +010059900BA3C000,"Windscape",,playable,2022-10-21 11:49:42 +0100D6800CEAC000,"Windstorm: An Unexpected Arrival",UE4,playable,2021-06-07 19:33:19 +01005A100B314000,"Windstorm: Start of a Great Friendship",UE4;gpu;nvdec,ingame,2020-12-22 13:17:48 +010035B012F28000,"Wing of Darkness",UE4,playable,2022-11-13 16:03:51 +0100A4A015FF0000,"Winter Games 2023",deadlock,menus,2023-11-07 20:47:36 +010012A017F18800,"Witch On The Holy Night",,playable,2023-03-06 23:28:11 +0100454012E32000,"Witch Spring 3 Re:Fine -The Story of the Marionette Witch Eirudy-",crash,ingame,2021-08-08 11:56:18 +01002FC00C6D0000,"Witch Thief",,playable,2021-01-27 18:16:07 +010061501904E000,"Witch's Garden",gpu;crash;vulkan-backend-bug;opengl-backend-bug,ingame,2023-01-11 02:11:24 +0100BD4011FFE000,"Witcheye",,playable,2020-12-14 22:56:08 +0100522007AAA000,"Wizard of Legend",,playable,2021-06-07 12:20:46 +010081900F9E2000,"Wizards of Brandel",,nothing,2020-10-14 15:52:33 +0100C7600E77E000,"Wizards: Wand of Epicosity",,playable,2022-10-07 12:32:06 +01009040091E0000,"Wolfenstein II®: The New Colossus™",gpu,ingame,2024-04-05 05:39:46 +01003BD00CAAE000,"Wolfenstein: Youngblood",online-broken,boots,2024-07-12 23:49:20 +010037A00F5E2000,"Wonder Blade",,playable,2020-12-11 17:55:31 +0100B49016FF0000,"Wonder Boy Anniversary Collection",deadlock,nothing,2023-04-20 16:01:48 +0100EB2012E36000,"Wonder Boy Asha in Monster World",crash,nothing,2021-11-03 08:45:06 +0100A6300150C000,"Wonder Boy: The Dragon's Trap",,playable,2021-06-25 04:53:21 +0100F5D00C812000,"Wondershot",,playable,2022-08-31 21:05:31 +0100E0300EB04000,"Woodle Tree 2: Deluxe",gpu;slow,ingame,2020-06-04 18:44:00 +0100288012966000,"Woodsalt",,playable,2021-04-06 17:01:48 +010083E011BC8000,"Wordify",,playable,2020-10-03 09:01:07 +01009D500A194000,"World Conqueror X",,playable,2020-12-22 16:10:29 +010072000BD32000,"WORLD OF FINAL FANTASY MAXIMA",,playable,2020-06-07 13:57:23 +010009E001D90000,"World of Goo",gpu;32-bit;crash;regression,boots,2024-04-12 05:52:14 +010061F01DB7C800,"World of Goo 2",,boots,2024-08-08 22:52:49 +01001E300B038000,"World Soccer Pinball",,playable,2021-01-06 00:37:02 +010048900CF64000,"Worldend Syndrome",,playable,2021-01-03 14:16:32 +01008E9007064000,"WorldNeverland - Elnea Kingdom",,playable,2021-01-28 17:44:23 +010000301025A000,"Worlds of Magic: Planar Conquest",,playable,2021-06-12 12:51:28 +01009CD012CC0000,"Worm Jazz",gpu;services;UE4;regression,ingame,2021-11-10 10:33:04 +01001AE005166000,"Worms W.M.D",gpu;crash;nvdec;ldn-untested,boots,2023-09-16 21:42:59 +010037500C4DE000,"Worse Than Death",,playable,2021-06-11 16:05:40 +01006F100EB16000,"Woven",nvdec,playable,2021-06-02 13:41:08 +010087800DCEA000,"WRC 8 FIA World Rally Championship",nvdec,playable,2022-09-16 23:03:36 +01001A0011798000,"WRC 9 The Official Game",gpu;slow;nvdec,ingame,2022-10-25 19:47:39 +0100DC0012E48000,"Wreckfest",,playable,2023-02-12 16:13:00 +0100C5D00EDB8000,"Wreckin' Ball Adventure",UE4,playable,2022-09-12 18:56:28 +010033700418A000,"Wulverblade",nvdec,playable,2021-01-27 22:29:05 +01001C400482C000,"Wunderling DX",audio;crash,ingame,2022-09-10 13:20:12 +01003B401148E000,"Wurroom",,playable,2020-10-07 22:46:21 +010081700EDF4000,"WWE 2K Battlegrounds",nvdec;online-broken;UE4,playable,2022-10-07 12:44:40 +010009800203E000,"WWE 2K18",nvdec,playable,2023-10-21 17:22:01 +0100DF100B97C000,"X-Morph: Defense",,playable,2020-06-22 11:05:31 +0100D0B00FB74000,"XCOM® 2 Collection",gpu;crash,ingame,2022-10-04 09:38:30 +0100CC9015360000,"XEL",gpu,ingame,2022-10-03 10:19:39 +0100C9F009F7A000,"Xenoblade Chronicles 2: Torna ~ The Golden Country",slow;nvdec,playable,2023-01-28 16:47:28 +0100E95004038000,"Xenoblade Chronicles™ 2",deadlock;amd-vendor-bug,ingame,2024-03-28 14:31:41 +010074F013262000,"Xenoblade Chronicles™ 3",gpu;crash;nvdec;vulkan-backend-bug;amd-vendor-bug,ingame,2024-08-06 19:56:44 +0100FF500E34A000,"Xenoblade Chronicles™ Definitive Edition",nvdec,playable,2024-05-04 20:12:41 +010028600BA16000,"Xenon Racer",nvdec;UE4,playable,2022-08-31 22:05:30 +010064200C324000,"Xenon Valkyrie+",,playable,2021-06-07 20:25:53 +0100928005BD2000,"Xenoraid",,playable,2022-09-03 13:01:10 +01005B5009364000,"Xeodrifter",,playable,2022-09-03 13:18:39 +01006FB00DB02000,"Yaga",nvdec,playable,2022-09-16 23:17:17 +010076B0101A0000,"YesterMorrow",crash,ingame,2020-12-17 17:15:25 +010085500B29A000,"Yet Another Zombie Defense HD",,playable,2021-01-06 00:18:39 +0100725019978000,"YGGDRA UNION ~WE'LL NEVER FIGHT ALONE~",,playable,2020-04-03 02:20:47 +0100634008266000,"YIIK: A Postmodern RPG",,playable,2021-01-28 13:38:37 +0100C0000CEEA000,"Yo kai watch 1 for Nintendo Switch",gpu;opengl,ingame,2024-05-28 11:11:49 +010086C00AF7C000,"Yo-Kai Watch 4++",,playable,2024-06-18 20:21:44 +010002D00632E000,"Yoku's Island Express",nvdec,playable,2022-09-03 13:59:02 +0100F47016F26000,"Yomawari 3",,playable,2022-05-10 08:26:51 +010012F00B6F2000,"Yomawari: The Long Night Collection",,playable,2022-09-03 14:36:59 +0100CC600ABB2000,"Yonder: The Cloud Catcher Chronicles (Retail Only)",,playable,2021-01-28 14:06:25 +0100BE50042F6000,"Yono and the Celestial Elephants",,playable,2021-01-28 18:23:58 +0100F110029C8000,"Yooka-Laylee",,playable,2021-01-28 14:21:45 +010022F00DA66000,"Yooka-Laylee and the Impossible Lair",,playable,2021-03-05 17:32:21 +01006000040C2000,"Yoshi’s Crafted World™",gpu;audout,ingame,2021-08-30 13:25:51 +0100AE800C9C6000,"Yoshi’s Crafted World™ Demo",gpu,boots,2020-12-16 14:57:40 +,"Yoshiwara Higanbana Kuon no Chigiri",nvdec,playable,2020-10-17 19:14:46 +01003A400C3DA800,"YouTube",,playable,2024-06-08 05:24:10 +00100A7700CCAA40,"Youtubers Life00",nvdec,playable,2022-09-03 14:56:19 +0100E390124D8000,"Ys IX: Monstrum Nox",,playable,2022-06-12 04:14:42 +0100F90010882000,"Ys Origin",nvdec,playable,2024-04-17 05:07:33 +01007F200B0C0000,"Ys VIII: Lacrimosa of DANA",nvdec,playable,2023-08-05 09:26:41 +010022400BE5A000,"Yu-Gi-Oh! Legacy of the Duelist : Link Evolution",,playable,2024-09-27 21:48:43 +01002D60188DE000,"Yu-Gi-Oh! Rush Duel: Dawn of the Battle Royale!! Let's Go! Go Rush!!",crash,ingame,2023-03-17 01:54:01 +010037D00DBDC000,"YU-NO: A girl who chants love at the bound of this world.",nvdec,playable,2021-01-26 17:03:52 +0100B56011502000,"Yumeutsutsu Re:After",,playable,2022-11-20 16:09:06 +,"Yunohana Spring! - Mellow Times -",audio;crash,menus,2020-09-27 19:27:40 +0100307011C44000,"Yuppie Psycho: Executive Edition",crash,ingame,2020-12-11 10:37:06 +0100FC900963E000,"Yuri",,playable,2021-06-11 13:08:50 +010092400A678000,"Zaccaria Pinball",online-broken,playable,2022-09-03 15:44:28 +0100E7900C4C0000,"Zarvot",,playable,2021-01-28 13:51:36 +01005F200F7C2000,"Zen Chess Collection",,playable,2020-07-01 22:28:27 +01008DD0114AE000,"Zenge",,playable,2020-10-22 13:23:57 +0100057011E50000,"Zengeon",services-horizon;crash,boots,2024-04-29 15:43:07 +0100AAC00E692000,"Zenith",,playable,2022-09-17 09:57:02 +0100A6A00894C000,"ZERO GUNNER 2- for Nintendo Switch",,playable,2021-01-04 20:17:14 +01004B001058C000,"Zero Strain",services;UE4,menus,2021-11-10 07:48:32 +,"Zettai kaikyu gakuen",gpu;nvdec,ingame,2020-08-25 15:15:54 +0100D7B013DD0000,"Ziggy the Chaser",,playable,2021-02-04 20:34:27 +010086700EF16000,"ZikSquare",gpu,ingame,2021-11-06 02:02:48 +010069C0123D8000,"Zoids Wild Blast Unleashed",nvdec,playable,2022-10-15 11:26:59 +0100C7300EEE4000,"Zombie Army Trilogy",ldn-untested;online,playable,2020-12-16 12:02:28 +01006CF00DA8C000,"Zombie Driver Immortal Edition",nvdec,playable,2020-12-14 23:15:10 +0100CFE003A64000,"ZOMBIE GOLD RUSH",online,playable,2020-09-24 12:56:08 +01001740116EC000,"Zombie's Cool",,playable,2020-12-17 12:41:26 +01000E5800D32C00,"Zombieland: Double Tap - Road Trip0",,playable,2022-09-17 10:08:45 +0100CD300A1BA000,"Zombillie",,playable,2020-07-23 17:42:23 +01001EE00A6B0000,"Zotrix: Solar Division",,playable,2021-06-07 20:34:05 +0100B9B00C6A4000,"この世の果てで恋を唄う少女YU-NO",audio,ingame,2021-01-22 07:00:16 +,"スーパーファミコン Nintendo Switch Online",slow,ingame,2020-03-14 05:48:38 +01000BB01CB8A000,"トラブル・マギア ~訳アリ少女は未来を勝ち取るために異国の魔法学校へ留学します~(Trouble Magia ~Wakeari Shoujo wa Mirai o Kachitoru Tame ni Ikoku no Mahou Gakkou e Ryuugaku Shimasu~)",,nothing,2024-09-28 07:03:14 +010065500B218000,"メモリーズオフ - Innocent Fille",,playable,2022-12-02 17:36:48 +010032400E700000,"二ノ国 白き聖灰の女王",services;32-bit,menus,2023-04-16 17:11:06 +0100F3100DA46000,"初音ミク Project DIVA MEGA39's",audio;loader-allocator,playable,2022-07-29 11:45:52 +010047F012BE2000,"密室のサクリファイス/ABYSS OF THE SACRIFICE",nvdec,playable,2022-10-21 13:56:28 +0100BF401AF9C000,"御伽活劇 豆狸のバケル ~オラクル祭太郎の祭難!!~ (Otogi Katsugeki Mameda no Bakeru Oracle Saitarou no Sainan!!)",slow,playable,2023-12-31 14:37:17 +0100AFA01750C000,"死神と少女/Shinigami to Shoujo",gpu;Incomplete,ingame,2024-03-22 01:06:45 +01001BA01EBFC000,"燃えよ! 乙女道士 ~華遊恋語~ (Moeyo! Otome Doushi Kayu Koigatari)",services-horizon,nothing,2024-09-28 12:22:55 +0100936018EB4000,"牧場物語 Welcome!ワンダフルライフ",crash,ingame,2023-04-25 19:43:52 +0100F4401940A000,"超探偵事件簿 レインコード (Master Detective Archives: Rain Code)",crash,ingame,2024-02-12 20:58:31 +010064801A01C000,"超次元ゲイム ネプテューヌ GameMaker R:Evolution",crash,nothing,2023-10-30 22:37:40 From 0dd789e8a506e3a6433923c7426bd9ec3e29ae31 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Sat, 11 Jan 2025 01:26:34 -0600 Subject: [PATCH 59/69] misc: chore: remove redundant trimming on CompatibilityEntry.GameName init --- src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs b/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs index 676cf1a52..21b1f503c 100644 --- a/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs +++ b/src/Ryujinx/Utilities/Compat/CompatibilityCsv.cs @@ -57,7 +57,7 @@ namespace Ryujinx.Ava.Utilities.Compat ? titleIdRow : default(Optional); - GameName = ColStr(row[indices.GameName]).Trim().Trim('"'); + GameName = ColStr(row[indices.GameName]); Labels = ColStr(row[indices.Labels]).Split(';'); Status = ColStr(row[indices.Status]).ToLower() switch @@ -92,7 +92,6 @@ namespace Ryujinx.Ava.Utilities.Compat .OrElse(new string(' ', 16)); public string FormattedIssueLabels => Labels - .Where(it => !it.StartsWithIgnoreCase("status")) .Select(FormatLabelName) .JoinToString(", "); From 7694c8c046c7749bdd3f431c91ed031284809928 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Sat, 11 Jan 2025 04:08:11 -0600 Subject: [PATCH 60/69] Do not auto release stable --- .github/workflows/release.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d8bbdd175..ab39634f7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,16 +3,6 @@ name: Release job on: workflow_dispatch: inputs: {} - push: - branches: [ release ] - paths-ignore: - - '.github/**' - - 'docs/**' - - 'assets/**' - - '*.yml' - - '*.json' - - '*.config' - - '*.md' concurrency: release From f9e8f4bc296e28025369f010da856844bf263f31 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Sat, 11 Jan 2025 06:10:48 -0600 Subject: [PATCH 61/69] docs: compat: Ori and the Will of the Wisps is now ingame, not playable --- docs/compatibility.csv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/compatibility.csv b/docs/compatibility.csv index b12c7e500..f047355b2 100644 --- a/docs/compatibility.csv +++ b/docs/compatibility.csv @@ -2113,7 +2113,7 @@ 0100F9A012892000,"Ord.",,playable,2020-12-14 11:59:06 010061D00DB74000,"Ori and the Blind Forest: Definitive Edition",nvdec;online-broken,playable,2022-09-14 19:58:13 010005800F46E000,"Ori and the Blind Forest: Definitive Edition Demo",,playable,2022-09-10 14:40:12 -01008DD013200000,"Ori and the Will of the Wisps",,playable,2023-03-07 00:47:13 +01008DD013200000,"Ori and the Will of the Wisps",gpu,ingame,2025-01-11 06:09:54 01006C70102EA000,"Orn: The Tiny Forest Sprite",UE4;gpu,ingame,2020-08-07 14:25:30 0100E5900F49A000,"Othercide",nvdec,playable,2022-10-05 19:04:38 01006AA00EE44000,"Otokomizu",,playable,2020-07-13 21:00:44 From 47c71966d0f7fa74d35c7b3183623748440dd8cc Mon Sep 17 00:00:00 2001 From: WilliamWsyHK Date: Mon, 13 Jan 2025 02:31:58 +0800 Subject: [PATCH 62/69] Add compat of Xenoblade 2 JP edition same as global edition (#517) --- docs/compatibility.csv | 6847 ++++++++++++++++++++-------------------- 1 file changed, 3424 insertions(+), 3423 deletions(-) diff --git a/docs/compatibility.csv b/docs/compatibility.csv index f047355b2..0158a45cb 100644 --- a/docs/compatibility.csv +++ b/docs/compatibility.csv @@ -1,3423 +1,3424 @@ -"title_id","game_name","labels","status","last_updated" -010099F00EF3E000,"-KLAUS-",nvdec,playable,2020-06-27 13:27:30 -0100BA9014A02000,".hack//G.U. Last Recode",deadlock,boots,2022-03-12 19:15:47 -010098800C4B0000,"'n Verlore Verstand",slow,ingame,2020-12-10 18:00:28 -01009A500E3DA000,"'n Verlore Verstand - Demo",,playable,2021-02-09 00:13:32 -0100A5D01174C000,"/Connection Haunted ",slow,playable,2020-12-10 18:57:14 -01001E500F7FC000,"#Funtime",,playable,2020-12-10 16:54:35 -01000E50134A4000,"#Halloween, Super Puzzles Dream",nvdec,playable,2020-12-10 20:43:58 -01004D100C510000,"#KILLALLZOMBIES",slow,playable,2020-12-16 01:50:25 -0100325012C12000,"#NoLimitFantasy, Super Puzzles Dream",nvdec,playable,2020-12-12 17:21:32 -01005D400E5C8000,"#RaceDieRun",,playable,2020-07-04 20:23:16 -01003DB011AE8000,"#womenUp, Super Puzzles Dream",,playable,2020-12-12 16:57:25 -0100D87012A14000,"#womenUp, Super Puzzles Dream Demo",nvdec,playable,2021-02-09 00:03:31 -01000320000CC000,"1-2-Switch™",services,playable,2022-02-18 14:44:03 -01004D1007926000,"10 Second Run RETURNS",gpu,ingame,2022-07-17 13:06:18 -0100DC000A472000,"10 Second Run RETURNS Demo",gpu,ingame,2021-02-09 00:17:18 -0100D82015774000,"112 Operator",nvdec,playable,2022-11-13 22:42:50 -010051E012302000,"112th Seed",,playable,2020-10-03 10:32:38 -01007F600D1B8000,"12 is Better Than 6",,playable,2021-02-22 16:10:12 -0100B1A010014000,"12 Labours of Hercules II: The Cretan Bull",cpu;32-bit;crash,nothing,2022-12-07 13:43:10 -0100A840047C2000,"12 orbits",,playable,2020-05-28 16:13:26 -01003FC01670C000,"13 Sentinels: Aegis Rim",slow,ingame,2024-06-10 20:33:38 -0100C54015002000,"13 Sentinels: Aegis Rim Demo",demo,playable,2022-04-13 14:15:48 -01007E600EEE6000,"140",,playable,2020-08-05 20:01:33 -0100B94013D28000,"16-Bit Soccer Demo",,playable,2021-02-09 00:23:07 -01005CA0099AA000,"1917 - The Alien Invasion DX",,playable,2021-01-08 22:11:16 -0100829010F4A000,"1971 Project Helios",,playable,2021-04-14 13:50:19 -0100D1000B18C000,"1979 Revolution: Black Friday",nvdec,playable,2021-02-21 21:03:43 -01007BB00FC8A000,"198X",,playable,2020-08-07 13:24:38 -010075601150A000,"1993 Shenandoah",,playable,2020-10-24 13:55:42 -0100148012550000,"1993 Shenandoah Demo",,playable,2021-02-09 00:43:43 -010096500EA94000,"2048 Battles",,playable,2020-12-12 14:21:25 -010024C0067C4000,"2064: Read Only Memories INTEGRAL",deadlock,menus,2020-05-28 16:53:58 -0100749009844000,"20XX",gpu,ingame,2023-08-14 09:41:44 -01007550131EE000,"2URVIVE",,playable,2022-11-17 13:49:37 -0100E20012886000,"2weistein – The Curse of the Red Dragon",nvdec;UE4,playable,2022-11-18 14:47:07 -0100DAC013D0A000,"30 in 1 game collection vol. 2",online-broken,playable,2022-10-15 17:22:27 -010056D00E234000,"30-in-1 Game Collection",online-broken,playable,2022-10-15 17:47:09 -0100FB5010D2E000,"3000th Duel",,playable,2022-09-21 17:12:08 -01003670066DE000,"36 Fragments of Midnight",,playable,2020-05-28 15:12:59 -0100AF400C4CE000,"39 Days to Mars",,playable,2021-02-21 22:12:46 -010010C013F2A000,"3D Arcade Fishing",,playable,2022-10-25 21:50:51 -01006DA00707C000,"3D MiniGolf",,playable,2021-01-06 09:22:11 -01006890126E4000,"4x4 Dirt Track",,playable,2020-12-12 21:41:42 -010010100FF14000,"60 Parsecs!",,playable,2022-09-17 11:01:17 -0100969005E98000,"60 Seconds!",services,ingame,2021-11-30 01:04:14 -0100ECF008474000,"6180 the moon",,playable,2020-05-28 15:39:24 -0100EFE00E964000,"64.0",,playable,2020-12-12 21:31:58 -0100DA900B67A000,"7 Billion Humans",32-bit,playable,2020-12-17 21:04:58 -01004B200DF76000,"7th Sector",nvdec,playable,2020-08-10 14:22:14 -0100E9F00B882000,"8-BIT ADV STEINS;GATE",audio,ingame,2020-01-12 15:05:06 -0100B0700E944000,"80 DAYS",,playable,2020-06-22 21:43:01 -01006B1011B9E000,"80's OVERDRIVE",,playable,2020-10-16 14:33:32 -010006A0042F0000,"88 Heroes - 98 Heroes Edition",,playable,2020-05-28 14:13:02 -010005E00E2BC000,"9 Monkeys of Shaolin",UE4;gpu;slow,ingame,2020-11-17 11:58:43 -0100C5F012E3E000,"9 Monkeys of Shaolin Demo",UE4;gpu;nvdec,ingame,2021-02-09 01:03:30 -01000360107BC000,"911 Operator Deluxe Edition",,playable,2020-07-14 13:57:44 -0100B2C00682E000,"99Vidas - Definitive Edition",online,playable,2020-10-29 13:00:40 -010023500C2F0000,"99Vidas Demo",,playable,2021-02-09 12:51:31 -0100DB00117BA000,"9th Dawn III",,playable,2020-12-12 22:27:27 -010096A00CC80000,"A Ch'ti Bundle",nvdec,playable,2022-10-04 12:48:44 -010021D00D53E000,"A Dark Room",gpu,ingame,2020-12-14 16:14:28 -010026B006802000,"A Duel Hand Disaster: Trackher",nvdec;online-working,playable,2022-09-04 14:24:55 -0100582012B90000,"A Duel Hand Disaster: Trackher DEMO",crash;demo;nvdec,ingame,2021-03-24 18:45:27 -01006CE0134E6000,"A Frog Game",,playable,2020-12-14 16:09:53 -010056E00853A000,"A Hat in Time",,playable,2024-06-25 19:52:44 -01009E1011EC4000,"A HERO AND A GARDEN",,playable,2022-12-05 16:37:47 -01005EF00CFDA000,"A Knight's Quest",UE4,playable,2022-09-12 20:44:20 -01008DD006C52000,"A Magical High School Girl",,playable,2022-07-19 14:40:50 -01004890117B2000,"A Short Hike",,playable,2020-10-15 00:19:58 -0100F0901006C000,"A Sound Plan",crash,boots,2020-12-14 16:46:21 -01007DD011C4A000,"A Summer with the Shiba Inu",,playable,2021-06-10 20:51:16 -0100A3E010E56000,"A-Train: All Aboard! Tourism",nvdec,playable,2021-04-06 17:48:19 -010097A00CC0A000,"Aaero: Complete Edition",nvdec,playable,2022-07-19 14:49:55 -0100EFC010398000,"Aborigenus",,playable,2020-08-05 19:47:24 -0100A5B010A66000,"Absolute Drift",,playable,2020-12-10 14:02:44 -0100C1300BBC6000,"ABZÛ",UE4,playable,2022-07-19 15:02:52 -01003C400871E000,"ACA NEOGEO 2020 SUPER BASEBALL",online,playable,2021-04-12 13:23:51 -0100FC000AFC6000,"ACA NEOGEO 3 COUNT BOUT",online,playable,2021-04-12 13:16:42 -0100AC40038F4000,"ACA NEOGEO AERO FIGHTERS 2",online,playable,2021-04-08 15:44:09 -0100B91008780000,"ACA NEOGEO AERO FIGHTERS 3",online,playable,2021-04-12 13:11:17 -0100B4800AFBA000,"ACA NEOGEO AGGRESSORS OF DARK KOMBAT",online,playable,2021-04-01 22:48:01 -01003FE00A2F6000,"ACA NEOGEO BASEBALL STARS PROFESSIONAL",online,playable,2021-04-01 21:23:05 -0100DFC003398000,"ACA NEOGEO BLAZING STAR",crash;services,menus,2020-05-26 17:29:02 -0100D2400AFB0000,"ACA NEOGEO CROSSED SWORDS",online,playable,2021-04-01 20:42:59 -0100EE6002B48000,"ACA NEOGEO FATAL FURY",online,playable,2021-04-01 20:36:23 -0100EEA00AFB2000,"ACA NEOGEO FOOTBALL FRENZY",,playable,2021-03-29 20:12:12 -0100CB2001DB8000,"ACA NEOGEO GAROU: MARK OF THE WOLVES",online,playable,2021-04-01 20:31:10 -01005D700A2F8000,"ACA NEOGEO GHOST PILOTS",online,playable,2021-04-01 20:26:45 -01000D10038E6000,"ACA NEOGEO LAST RESORT",online,playable,2021-04-01 19:51:22 -0100A2900AFA4000,"ACA NEOGEO LEAGUE BOWLING",crash;services,menus,2020-05-26 17:11:04 -0100A050038F2000,"ACA NEOGEO MAGICAL DROP II",crash;services,menus,2020-05-26 16:48:24 -01007920038F6000,"ACA NEOGEO MAGICIAN LORD",online,playable,2021-04-01 19:33:26 -0100EBE002B3E000,"ACA NEOGEO METAL SLUG",,playable,2021-02-21 13:56:48 -010086300486E000,"ACA NEOGEO METAL SLUG 2",online,playable,2021-04-01 19:25:52 -0100BA8001DC6000,"ACA NEOGEO METAL SLUG 3",crash;services,menus,2020-05-26 16:32:45 -01009CE00AFAE000,"ACA NEOGEO METAL SLUG 4",online,playable,2021-04-01 18:12:18 -01008FD004DB6000,"ACA NEOGEO METAL SLUG X",crash;services,menus,2020-05-26 14:07:20 -010038F00AFA0000,"ACA NEOGEO Money Puzzle Exchanger",online,playable,2021-04-01 17:59:56 -01002E70032E8000,"ACA NEOGEO NEO TURF MASTERS",,playable,2021-02-21 15:12:01 -010052A00A306000,"ACA NEOGEO NINJA COMBAT",,playable,2021-03-29 21:17:28 -01007E800AFB6000,"ACA NEOGEO NINJA COMMANDO",online,playable,2021-04-01 17:28:18 -01003A5001DBA000,"ACA NEOGEO OVER TOP",,playable,2021-02-21 13:16:25 -010088500878C000,"ACA NEOGEO REAL BOUT FATAL FURY SPECIAL",online,playable,2021-04-01 17:18:27 -01005C9002B42000,"ACA NEOGEO SAMURAI SHODOWN",online,playable,2021-04-01 17:11:35 -010047F001DBC000,"ACA NEOGEO SAMURAI SHODOWN IV",online,playable,2021-04-12 12:58:54 -010049F00AFE8000,"ACA NEOGEO SAMURAI SHODOWN V SPECIAL",online,playable,2021-04-10 18:07:13 -01009B300872A000,"ACA NEOGEO SENGOKU 2",online,playable,2021-04-10 17:36:44 -01008D000877C000,"ACA NEOGEO SENGOKU 3",online,playable,2021-04-10 16:11:53 -01008A9001DC2000,"ACA NEOGEO SHOCK TROOPERS",crash;services,menus,2020-05-26 15:29:34 -01007D1004DBA000,"ACA NEOGEO SPIN MASTER",online,playable,2021-04-10 15:50:19 -010055A00A300000,"ACA NEOGEO SUPER SIDEKICKS 2",online,playable,2021-04-10 16:05:58 -0100A4D00A308000,"ACA NEOGEO SUPER SIDEKICKS 3 : THE NEXT GLORY",online,playable,2021-04-10 15:39:22 -0100EB2001DCC000,"ACA NEOGEO THE KING OF FIGHTERS '94",crash;services,menus,2020-05-26 15:03:44 -01009DC001DB6000,"ACA NEOGEO THE KING OF FIGHTERS '95",,playable,2021-03-29 20:27:35 -01006F0004FB4000,"ACA NEOGEO THE KING OF FIGHTERS '96",online,playable,2021-04-10 14:49:10 -0100170008728000,"ACA NEOGEO THE KING OF FIGHTERS '97",online,playable,2021-04-10 14:43:27 -0100B42001DB4000,"ACA NEOGEO THE KING OF FIGHTERS '98",crash;services,menus,2020-05-26 14:54:20 -0100583001DCA000,"ACA NEOGEO THE KING OF FIGHTERS '99",online,playable,2021-04-10 14:36:56 -0100B97002B44000,"ACA NEOGEO THE KING OF FIGHTERS 2000",online,playable,2021-04-10 15:24:35 -010048200AFC2000,"ACA NEOGEO THE KING OF FIGHTERS 2001",online,playable,2021-04-10 15:16:23 -0100CFD00AFDE000,"ACA NEOGEO THE KING OF FIGHTERS 2002",online,playable,2021-04-10 15:01:55 -0100EF100AFE6000,"ACA NEOGEO THE KING OF FIGHTERS 2003",online,playable,2021-04-10 14:54:31 -0100699008792000,"ACA NEOGEO THE LAST BLADE 2",online,playable,2021-04-10 14:31:54 -0100F7F00AFA2000,"ACA NEOGEO THE SUPER SPY",online,playable,2021-04-10 14:26:33 -0100CEF001DC0000,"ACA NEOGEO WAKU WAKU 7",online,playable,2021-04-10 14:20:52 -01009D4001DC4000,"ACA NEOGEO WORLD HEROES PERFECT",crash;services,menus,2020-05-26 14:14:36 -01002E700AFC4000,"ACA NEOGEO ZUPAPA!",online,playable,2021-03-25 20:07:33 -0100A9900CB5C000,"Access Denied",,playable,2022-07-19 15:25:10 -01007C50132C8000,"Ace Angler: Fishing Spirits",crash,menus,2023-03-03 03:21:39 -010005501E68C000,"Ace Attorney Investigations Collection",,playable,2024-09-19 16:38:05 -010033401E68E000,"Ace Attorney Investigations Collection DEMO",,playable,2024-09-07 06:16:42 -010039301B7E0000,"Ace Combat 7 - Skies Unknown Deluxe Edition",gpu;UE4,ingame,2024-09-27 14:31:43 -0100FF1004D56000,"Ace of Seafood",,playable,2022-07-19 15:32:25 -0100B28003440000,"Aces of the Luftwaffe - Squadron",nvdec;slow,playable,2020-05-27 12:29:42 -010054300D822000,"Aces of the Luftwaffe - Squadron Demo",nvdec,playable,2021-02-09 13:12:28 -010079B00B3F4000,"Achtung! Cthulhu Tactics",,playable,2020-12-14 18:40:27 -0100DBC0081A4000,"ACORN Tactics",,playable,2021-02-22 12:57:40 -010043C010AEA000,"Across the Grooves",,playable,2020-06-27 12:29:51 -010039A010DA0000,"Active Neurons - Puzzle game",,playable,2021-01-27 21:31:21 -01000D1011EF0000,"Active Neurons 2",,playable,2022-10-07 16:21:42 -010031C0122B0000,"Active Neurons 2 Demo",,playable,2021-02-09 13:40:21 -0100EE1013E12000,"Active Neurons 3 - Wonders Of The World",,playable,2021-03-24 12:20:20 -0100CD40104DE000,"Actual Sunlight",gpu,ingame,2020-12-14 17:18:41 -0100C0C0040E4000,"Adam's Venture™: Origins",,playable,2021-03-04 18:43:57 -010029700EB76000,"Adrenaline Rush - Miami Drive",,playable,2020-12-12 22:49:50 -0100300012F2A000,"Advance Wars™ 1+2: Re-Boot Camp",,playable,2024-01-30 18:19:44 -010014B0130F2000,"Adventure Llama",,playable,2020-12-14 19:32:24 -0100C990102A0000,"Adventure Pinball Bundle",slow,playable,2020-12-14 20:31:53 -0100C4E004406000,"Adventure Time: Pirates of the Enchiridion",nvdec,playable,2022-07-21 21:49:01 -010021F00C1C0000,"Adventures of Bertram Fiddle Episode 2: A Bleaker Predicklement",nvdec,playable,2021-02-22 14:56:37 -010072601233C000,"Adventures of Chris",,playable,2020-12-12 23:00:02 -0100A0A0136E8000,"Adventures of Chris Demo",,playable,2021-02-09 13:49:21 -01002B5012004000,"Adventures of Pip",nvdec,playable,2020-12-12 22:11:55 -01008C901266E000,"ADVERSE",UE4,playable,2021-04-26 14:32:51 -01008E6006502000,"Aegis Defenders",,playable,2021-02-22 13:29:33 -010064500AF72000,"Aegis Defenders demo",,playable,2021-02-09 14:04:17 -010001C011354000,"Aeolis Tournament",online,playable,2020-12-12 22:02:14 -01006710122CE000,"Aeolis Tournament Demo",nvdec,playable,2021-02-09 14:22:30 -0100A0400DDE0000,"AER Memories of Old",nvdec,playable,2021-03-05 18:43:43 -0100E9B013D4A000,"Aerial_Knight's Never Yield",,playable,2022-10-25 22:05:00 -0100087012810000,"Aery - Broken Memories",,playable,2022-10-04 13:11:52 -01000A8015390000,"Aery - Calm Mind",,playable,2022-11-14 14:26:58 -0100875011D0C000,"Aery - Little Bird Adventure",,playable,2021-03-07 15:25:51 -010018E012914000,"Aery - Sky Castle",,playable,2022-10-21 17:58:49 -0100DF8014056000,"Aery – A Journey Beyond Time",,playable,2021-04-05 15:52:25 -01006C40086EA000,"AeternoBlade",nvdec,playable,2020-12-14 20:06:48 -0100B1C00949A000,"AeternoBlade Demo",nvdec,playable,2021-02-09 14:39:26 -01009D100EA28000,"AeternoBlade II",online-broken;UE4;vulkan-backend-bug,playable,2022-09-12 21:11:18 -,"AeternoBlade II Demo Version",gpu;nvdec,ingame,2021-02-09 15:10:19 -01001B400D334000,"AFL Evolution 2",slow;online-broken;UE4,playable,2022-12-07 12:45:56 -0100DB100BBCE000,"Afterparty",,playable,2022-09-22 12:23:19 -010087C011C4E000,"Agatha Christie - The ABC Murders",,playable,2020-10-27 17:08:23 -010093600A60C000,"Agatha Knife",,playable,2020-05-28 12:37:58 -010005400A45E000,"Agent A: A puzzle in disguise",,playable,2020-11-16 22:53:27 -01008E8012C02000,"Agent A: A puzzle in disguise (Demo)",,playable,2021-02-09 18:30:41 -0100E4700E040000,"Ages of Mages: The last keeper",vulkan-backend-bug,playable,2022-10-04 11:44:05 -010004D00A9C0000,"Aggelos",gpu,ingame,2023-02-19 13:24:23 -010072600D21C000,"Agony",UE4;crash,boots,2020-07-10 16:21:18 -010089B00D09C000,"AI: THE SOMNIUM FILES",nvdec,playable,2022-09-04 14:45:06 -0100C1700FB34000,"AI: THE SOMNIUM FILES Demo",nvdec,playable,2021-02-10 12:52:33 -01006E8011C1E000,"Ailment",,playable,2020-12-12 22:30:41 -0100C7600C7D6000,"Air Conflicts: Pacific Carriers",,playable,2021-01-04 10:52:50 -010005A00A4F4000,"Air Hockey",,playable,2020-05-28 16:44:37 -0100C9E00F54C000,"Air Missions: HIND",,playable,2020-12-13 10:16:45 -0100E95011FDC000,"Aircraft Evolution",nvdec,playable,2021-06-14 13:30:18 -010010A00DB72000,"Airfield Mania Demo",services;demo,boots,2022-04-10 03:43:02 -01003DD00BFEE000,"Airheart - Tales of broken Wings",,playable,2021-02-26 15:20:27 -01007F100DE52000,"Akane",nvdec,playable,2022-07-21 00:12:18 -01009A800F0C8000,"Akash: Path of the Five",gpu;nvdec,ingame,2020-12-14 22:33:12 -010053100B0EA000,"Akihabara - Feel the Rhythm Remixed",,playable,2021-02-22 14:39:35 -0100D4C00EE0C000,"Akuarium",slow,playable,2020-12-12 23:43:36 -010026E00FEBE000,"Akuto: Showdown",,playable,2020-08-04 19:43:27 -0100F5400AB6C000,"Alchemic Jousts",gpu,ingame,2022-12-08 15:06:28 -010001E00F75A000,"Alchemist's Castle",,playable,2020-12-12 23:54:08 -01004510110C4000,"Alder's Blood Prologue",crash,ingame,2021-02-09 19:03:03 -0100D740110C0000,"Alder's Blood: Definitive Edition",,playable,2020-08-28 15:15:23 -01000E000EEF8000,"Aldred Knight",services,playable,2021-11-30 01:49:17 -010025D01221A000,"Alex Kidd in Miracle World DX",,playable,2022-11-14 15:01:34 -0100A2E00D0E0000,"Alien Cruise",,playable,2020-08-12 13:56:05 -0100C1500DBDE000,"Alien Escape",,playable,2020-06-03 23:43:18 -010075D00E8BA000,"Alien: Isolation",nvdec;vulkan-backend-bug,playable,2022-09-17 11:48:41 -0100CBD012FB6000,"All Walls Must Fall",UE4,playable,2022-10-15 19:16:30 -0100C1F00A9B8000,"All-Star Fruit Racing",nvdec;UE4,playable,2022-07-21 00:35:37 -0100AC501122A000,"Alluris",gpu;UE4,ingame,2023-08-02 23:13:50 -010063000C3CE000,"Almightree: The Last Dreamer",slow,playable,2020-12-15 13:59:03 -010083E010AE8000,"Along the Edge",,playable,2020-11-18 15:00:07 -010083E013188000,"Alpaca Ball: Allstars",nvdec,playable,2020-12-11 12:26:29 -01000A800B998000,"ALPHA",,playable,2020-12-13 12:17:45 -010053B0123DC000,"Alphaset by POWGI",,playable,2020-12-15 15:15:15 -01003E700FD66000,"Alt-Frequencies",,playable,2020-12-15 19:01:33 -01004DB00935A000,"Alteric",,playable,2020-11-08 13:53:22 -0100C3D00D1D4000,"Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz",,playable,2020-08-31 14:17:42 -0100A8A00D27E000,"Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz Trial version",,playable,2021-02-10 13:33:59 -010045201487C000,"Aluna: Sentinel of the Shards",nvdec,playable,2022-10-25 22:17:03 -01004C200B0B4000,"Alwa's Awakening",,playable,2020-10-13 11:52:01 -01001B7012214000,"Alwa's Legacy",,playable,2020-12-13 13:00:57 -010002B00C534000,"American Fugitive",nvdec,playable,2021-01-04 20:45:11 -010089D00A3FA000,"American Ninja Warrior: Challenge",nvdec,playable,2021-06-09 13:11:17 -01003CC00D0BE000,"Amnesia: Collection",,playable,2022-10-04 13:36:15 -010041D00DEB2000,"Amoeba Battle - Microscopic RTS Action",,playable,2021-05-06 13:33:41 -010046500C8D2000,"Among the Sleep - Enhanced Edition",nvdec,playable,2021-06-03 15:06:25 -0100B0C013912000,"Among Us",online;ldn-broken,menus,2021-09-22 15:20:17 -010050900E1C6000,"Anarcute",,playable,2021-02-22 13:17:59 -01009EE0111CC000,"Ancestors Legacy",nvdec;UE4,playable,2022-10-01 12:25:36 -010021700BC56000,"Ancient Rush 2",UE4;crash,menus,2020-07-14 14:58:47 -0100AE000AEBC000,"Angels of Death",nvdec,playable,2021-02-22 14:17:15 -010001E00A5F6000,"AngerForce: Reloaded for Nintendo Switch",,playable,2022-07-21 10:37:17 -0100F3500D05E000,"Angry Bunnies: Colossal Carrot Crusade",online-broken,playable,2022-09-04 14:53:26 -010084500C7DC000,"Angry Video Game Nerd I & II Deluxe",crash,ingame,2020-12-12 23:59:54 -0100706005B6A000,"Anima: Gate of Memories",nvdec,playable,2021-06-16 18:13:18 -010033F00B3FA000,"Anima: Gate of Memories - Arcane Edition",nvdec,playable,2021-01-26 16:55:51 -01007A400B3F8000,"Anima: Gate of Memories - The Nameless Chronicles",,playable,2021-06-14 14:33:06 -0100F38011CFE000,"Animal Crossing: New Horizons Island Transfer Tool",services;Needs Update;Incomplete,ingame,2022-12-07 13:51:19 -01006F8002326000,"Animal Crossing™: New Horizons",gpu;crash;nvdec;online-broken;ldn-works;mac-bug,ingame,2024-09-23 13:31:49 -010019500E642000,"Animal Fight Club",gpu,ingame,2020-12-13 13:13:33 -01002F4011A8E000,"Animal Fun for Toddlers and Kids",services,boots,2020-12-15 16:45:29 -010035500CA0E000,"Animal Hunter Z",,playable,2020-12-13 12:50:35 -010033C0121DC000,"Animal Pairs - Matching & Concentration Game for Toddlers & Kids",services,boots,2021-11-29 23:43:14 -010065B009B3A000,"Animal Rivals: Nintendo Switch Edition",,playable,2021-02-22 14:02:42 -0100EFE009424000,"Animal Super Squad",UE4,playable,2021-04-23 20:50:50 -0100A16010966000,"Animal Up!",,playable,2020-12-13 15:39:02 -010020D01AD24000,"ANIMAL WELL",,playable,2024-05-22 18:01:49 -0100451012492000,"Animals for Toddlers",services,boots,2020-12-15 17:27:27 -010098600CF06000,"Animated Jigsaws Collection",nvdec,playable,2020-12-15 15:58:34 -0100A1900B5B8000,"Animated Jigsaws: Beautiful Japanese Scenery Demo",nvdec,playable,2021-02-10 13:49:56 -010062500EB84000,"Anime Studio Story",,playable,2020-12-15 18:14:05 -01002B300EB86000,"Anime Studio Story Demo",,playable,2021-02-10 14:50:39 -010097600C322000,"ANIMUS",,playable,2020-12-13 15:11:47 -0100E5A00FD38000,"ANIMUS: Harbinger",,playable,2022-09-13 22:09:20 -010055500CCD2000,"Ankh Guardian - Treasure of the Demon's Temple",,playable,2020-12-13 15:55:49 -01009E600D78C000,"Anode",,playable,2020-12-15 17:18:58 -0100CB9018F5A000,"Another Code™: Recollection",gpu;crash,ingame,2024-09-06 05:58:52 -01001A900D312000,"Another Sight",UE4;gpu;nvdec,ingame,2020-12-03 16:49:59 -01003C300AAAE000,"Another World",slow,playable,2022-07-21 10:42:38 -01000FD00DF78000,"AnShi",nvdec;UE4,playable,2022-10-21 19:37:01 -010054C00D842000,"Anthill",services;nvdec,menus,2021-11-18 09:25:25 -0100596011E20000,"Anti Hero Bundle",nvdec,playable,2022-10-21 20:10:30 -0100016007154000,"Antiquia Lost",,playable,2020-05-28 11:57:32 -0100FE1011400000,"AntVentor",nvdec,playable,2020-12-15 20:09:27 -0100FA100620C000,"Ao no Kanata no Four Rhythm",,playable,2022-07-21 10:50:42 -010047000E9AA000,"AO Tennis 2",online-broken,playable,2022-09-17 12:05:07 -0100990011866000,"Aokana - Four Rhythms Across the Blue",,playable,2022-10-04 13:50:26 -01005B100C268000,"Ape Out",,playable,2022-09-26 19:04:47 -010054500E6D4000,"Ape Out DEMO",,playable,2021-02-10 14:33:06 -010051C003A08000,"Aperion Cyberstorm",,playable,2020-12-14 00:40:16 -01008CA00D71C000,"Aperion Cyberstorm [DEMO]",,playable,2021-02-10 15:53:21 -01008FC00C5BC000,"Apocalipsis Wormwood Edition",deadlock,menus,2020-05-27 12:56:37 -010045D009EFC000,"Apocryph: an old-school shooter",gpu,ingame,2020-12-13 23:24:10 -010020D01B890000,"Apollo Justice: Ace Attorney Trilogy",,playable,2024-06-21 21:54:27 -01005F20116A0000,"Apparition",nvdec;slow,ingame,2020-12-13 23:57:04 -0100AC10085CE000,"AQUA KITTY UDX",online,playable,2021-04-12 15:34:11 -0100FE0010886000,"Aqua Lungers",crash,ingame,2020-12-14 11:25:57 -0100D0D00516A000,"Aqua Moto Racing Utopia",,playable,2021-02-21 21:21:00 -010071800BA74000,"Aragami: Shadow Edition",nvdec,playable,2021-02-21 20:33:23 -0100C7D00E6A0000,"Arc of Alchemist",nvdec,playable,2022-10-07 19:15:54 -0100BE80097FA000,"Arcade Archives 10-Yard Fight",online,playable,2021-03-25 21:26:41 -01005DD00BE08000,"Arcade Archives ALPHA MISSION",online,playable,2021-04-15 09:20:43 -010083800DC70000,"Arcade Archives ALPINE SKI",online,playable,2021-04-15 09:28:46 -0100A5700AF32000,"Arcade Archives ARGUS",online,playable,2021-04-16 06:51:25 -010014F001DE2000,"Arcade Archives Armed F",online,playable,2021-04-16 07:00:17 -0100BEC00C7A2000,"Arcade Archives ATHENA",online,playable,2021-04-16 07:10:12 -0100426001DE4000,"Arcade Archives Atomic Robo-Kid",online,playable,2021-04-16 07:20:29 -0100192009824000,"Arcade Archives BOMB JACK",online,playable,2021-04-16 09:48:26 -010007A00980C000,"Arcade Archives City CONNECTION",online,playable,2021-03-25 22:16:15 -0100EDC00E35A000,"Arcade Archives CLU CLU LAND",online,playable,2021-04-16 10:00:42 -0100BB1001DD6000,"Arcade Archives CRAZY CLIMBER",online,playable,2021-03-25 22:24:15 -0100E9E00B052000,"Arcade Archives DONKEY KONG",Needs Update;crash;services,menus,2021-03-24 18:18:43 -0100F25001DD0000,"Arcade Archives DOUBLE DRAGON",online,playable,2021-03-25 22:44:34 -01009E3001DDE000,"Arcade Archives DOUBLE DRAGON II The Revenge",online,playable,2021-04-12 16:05:29 -0100496006EC8000,"Arcade Archives FRONT LINE",online,playable,2021-05-05 14:10:49 -01009A4008A30000,"Arcade Archives HEROIC EPISODE",online,playable,2021-03-25 23:01:26 -01007D200D3FC000,"Arcade Archives ICE CLIMBER",online,playable,2021-05-05 14:18:34 -010049400C7A8000,"Arcade Archives IKARI WARRIORS",online,playable,2021-05-05 14:24:46 -01000DB00980A000,"Arcade Archives Ikki",online,playable,2021-03-25 23:11:28 -010008300C978000,"Arcade Archives IMAGE FIGHT",online,playable,2021-05-05 14:31:21 -010010B008A36000,"Arcade Archives Kid Niki Radical Ninja",audio;online,ingame,2022-07-21 11:02:04 -0100E7C001DE0000,"Arcade Archives Kid's Horehore Daisakusen",online,playable,2021-04-12 16:21:29 -0100F380105A4000,"Arcade Archives LIFE FORCE",,playable,2020-09-04 13:26:25 -0100755004608000,"Arcade Archives Mario Bros.",online,playable,2021-03-26 11:31:32 -01000BE001DD8000,"Arcade Archives MOON CRESTA",online,playable,2021-05-05 14:39:29 -01003000097FE000,"Arcade Archives MOON PATROL",online,playable,2021-03-26 11:42:04 -01003EF00D3B4000,"Arcade Archives NINJA GAIDEN",audio;online,ingame,2021-04-12 16:27:53 -01002F300D2C6000,"Arcade Archives Ninja Spirit",online,playable,2021-05-05 14:45:31 -0100369001DDC000,"Arcade Archives Ninja-Kid",online,playable,2021-03-26 20:55:07 -01004A200BB48000,"Arcade Archives OMEGA FIGHTER",crash;services,menus,2020-08-18 20:50:54 -01007F8010C66000,"Arcade Archives PLUS ALPHA",audio,ingame,2020-07-04 20:47:55 -0100A6E00D3F8000,"Arcade Archives POOYAN",online,playable,2021-05-05 17:58:19 -01000D200C7A4000,"Arcade Archives PSYCHO SOLDIER",online,playable,2021-05-05 18:02:19 -01001530097F8000,"Arcade Archives PUNCH-OUT!!",online,playable,2021-03-25 22:10:55 -010081E001DD2000,"Arcade Archives Renegade",online,playable,2022-07-21 11:45:40 -0100FBA00E35C000,"Arcade Archives ROAD FIGHTER",online,playable,2021-05-05 18:09:17 -010060000BF7C000,"Arcade Archives ROUTE 16",online,playable,2021-05-05 18:40:41 -0100C2D00981E000,"Arcade Archives RYGAR",online,playable,2021-04-15 08:48:30 -01007A4009834000,"Arcade Archives Shusse Ozumo",online,playable,2021-05-05 17:52:25 -010008F00B054000,"Arcade Archives Sky Skipper",online,playable,2021-04-15 08:58:09 -01008C900982E000,"Arcade Archives Solomon's Key",online,playable,2021-04-19 16:27:18 -010069F008A38000,"Arcade Archives STAR FORCE",online,playable,2021-04-15 08:39:09 -0100422001DDA000,"Arcade Archives TERRA CRESTA",crash;services,menus,2020-08-18 20:20:55 -0100348001DE6000,"Arcade Archives TERRA FORCE",online,playable,2021-04-16 20:03:27 -0100DFD016B7A000,"Arcade Archives TETRIS® THE GRAND MASTER",,playable,2024-06-23 01:50:29 -0100DC000983A000,"Arcade Archives THE NINJA WARRIORS",online;slow,ingame,2021-04-16 19:54:56 -0100AF300D2E8000,"Arcade Archives TIME PILOT",online,playable,2021-04-16 19:22:31 -010029D006ED8000,"Arcade Archives Traverse USA",online,playable,2021-04-15 08:11:06 -010042200BE0C000,"Arcade Archives URBAN CHAMPION",online,playable,2021-04-16 10:20:03 -01004EC00E634000,"Arcade Archives VS. GRADIUS",online,playable,2021-04-12 14:53:58 -010021D00812A000,"Arcade Archives VS. SUPER MARIO BROS.",online,playable,2021-04-08 14:48:11 -01001B000D8B6000,"Arcade Archives WILD WESTERN",online,playable,2021-04-16 10:11:36 -010050000D6C4000,"Arcade Classics Anniversary Collection",,playable,2021-06-03 13:55:10 -01005A8010C7E000,"ARCADE FUZZ",,playable,2020-08-15 12:37:36 -010077000F620000,"Arcade Spirits",,playable,2020-06-21 11:45:03 -0100E680149DC000,"Arcaea",,playable,2023-03-16 19:31:21 -01003C2010C78000,"Archaica: The Path Of Light",crash,nothing,2020-10-16 13:22:26 -01004DA012976000,"Area 86",,playable,2020-12-16 16:45:52 -0100691013C46000,"ARIA CHRONICLE",,playable,2022-11-16 13:50:55 -0100D4A00B284000,"ARK: Survival Evolved",gpu;nvdec;online-broken;UE4;ldn-untested,ingame,2024-04-16 00:53:56 -0100C56012C96000,"Arkanoid vs. Space Invaders",services,ingame,2021-01-21 12:50:30 -010069A010606000,"Arkham Horror: Mother's Embrace",nvdec,playable,2021-04-19 15:40:55 -0100C5B0113A0000,"Armed 7 DX",,playable,2020-12-14 11:49:56 -010070A00A5F4000,"Armello",nvdec,playable,2021-01-07 11:43:26 -0100A5400AC86000,"ARMS Demo",,playable,2021-02-10 16:30:13 -01009B500007C000,"ARMS™",ldn-works;LAN,playable,2024-08-28 07:49:24 -0100184011B32000,"Arrest of a stone Buddha",crash,nothing,2022-12-07 16:55:00 -01007AB012102000,"Arrog",,playable,2020-12-16 17:20:50 -01008EC006BE2000,"Art of Balance",gpu;ldn-works,ingame,2022-07-21 17:13:57 -010062F00CAE2000,"Art of Balance DEMO",gpu;slow,ingame,2021-02-10 17:17:12 -01006AA013086000,"Art Sqool",nvdec,playable,2022-10-16 20:42:37 -0100CDD00DA70000,"Artifact Adventure Gaiden DX",,playable,2020-12-16 17:49:25 -0100C2500CAB6000,"Ary and the Secret of Seasons",,playable,2022-10-07 20:45:09 -0100C9F00AAEE000,"ASCENDANCE",,playable,2021-01-05 10:54:40 -0100D5800DECA000,"Asemblance",UE4;gpu,ingame,2020-12-16 18:01:23 -0100E4C00DE30000,"Ash of Gods: Redemption",deadlock,nothing,2020-08-10 18:08:32 -010027B00E40E000,"Ashen",nvdec;online-broken;UE4,playable,2022-09-17 12:19:14 -01007B000C834000,"Asphalt Legends Unite",services;crash;online-broken,menus,2022-12-07 13:28:29 -01007F600B134000,"Assassin's Creed® III: Remastered",nvdec,boots,2024-06-25 20:12:11 -010044700DEB0000,"Assassin’s Creed®: The Rebel Collection",gpu,ingame,2024-05-19 07:58:56 -0100DF200B24C000,"Assault Android Cactus+",,playable,2021-06-03 13:23:55 -0100BF8012A30000,"Assault ChaingunS KM",crash;gpu,ingame,2020-12-14 12:48:34 -0100C5E00E540000,"Assault on Metaltron Demo",,playable,2021-02-10 19:48:06 -010057A00C1F6000,"Astebreed",,playable,2022-07-21 17:33:54 -010081500EA1E000,"Asterix & Obelix XXL 3 - The Crystal Menhir",gpu;nvdec;regression,ingame,2022-11-28 14:19:23 -0100F46011B50000,"Asterix & Obelix XXL: Romastered",gpu;nvdec;opengl,ingame,2023-08-16 21:22:06 -01007300020FA000,"ASTRAL CHAIN",,playable,2024-07-17 18:02:19 -0100E5F00643C000,"Astro Bears Party",,playable,2020-05-28 11:21:58 -0100F0400351C000,"Astro Duel Deluxe",32-bit,playable,2021-06-03 11:21:48 -0100B80010C48000,"Astrologaster",cpu;32-bit;crash,nothing,2023-06-28 15:39:31 -0100DF401249C000,"AstroWings: Space War",,playable,2020-12-14 13:10:44 -010099801870E000,"Atari 50: The Anniversary Celebration",slow,playable,2022-11-14 19:42:10 -010088600C66E000,"Atelier Arland series Deluxe Pack",nvdec,playable,2021-04-08 15:33:15 -0100D9D00EE8C000,"Atelier Ayesha: The Alchemist of Dusk DX",crash;nvdec;Needs Update,menus,2021-11-24 07:29:54 -0100E5600EE8E000,"Atelier Escha & Logy: Alchemists of the Dusk Sky DX",nvdec,playable,2022-11-20 16:01:41 -010023201421E000,"Atelier Firis: The Alchemist and the Mysterious Journey DX",gpu;nvdec,ingame,2022-10-25 22:46:19 -0100B1400CD50000,"Atelier Lulua ~The Scion of Arland~",nvdec,playable,2020-12-16 14:29:19 -010009900947A000,"Atelier Lydie & Suelle ~The Alchemists and the Mysterious Paintings~",nvdec,playable,2021-06-03 18:37:01 -01001A5014220000,"Atelier Lydie & Suelle: The Alchemists and the Mysterious Paintings DX",,playable,2022-10-25 23:06:20 -0100ADD00C6FA000,"Atelier Meruru ~The Apprentice of Arland~ DX",nvdec,playable,2020-06-12 00:50:48 -01002D700B906000,"Atelier Rorona Arland no Renkinjutsushi DX (JP)",nvdec,playable,2022-12-02 17:26:54 -01009A9012022000,"Atelier Ryza 2: Lost Legends & the Secret Fairy",,playable,2022-10-16 21:06:06 -0100D1900EC80000,"Atelier Ryza: Ever Darkness & the Secret Hideout",,playable,2023-10-15 16:36:50 -010005C00EE90000,"Atelier Shallie: Alchemists of the Dusk Sea DX",nvdec,playable,2020-11-25 20:54:12 -010082A01538E000,"Atelier Sophie 2: The Alchemist of the Mysterious Dream",crash,ingame,2022-12-01 04:34:03 -01009BC00C6F6000,"Atelier Totori ~The Adventurer of Arland~ DX",nvdec,playable,2020-06-12 01:04:56 -0100B9400FA38000,"ATOM RPG",nvdec,playable,2022-10-22 10:11:48 -01005FE00EC4E000,"Atomic Heist",,playable,2022-10-16 21:24:32 -0100AD30095A4000,"Atomicrops",,playable,2022-08-06 10:05:07 -01000D1006CEC000,"ATOMIK: RunGunJumpGun",,playable,2020-12-14 13:19:24 -0100FB500631E000,"ATOMINE",gpu;nvdec;slow,playable,2020-12-14 18:56:50 -010039600E7AC000,"Attack of the Toy Tanks",slow,ingame,2020-12-14 12:59:12 -010034500641A000,"Attack on Titan 2",,playable,2021-01-04 11:40:01 -01000F600B01E000,"ATV Drift & Tricks",UE4;online,playable,2021-04-08 17:29:17 -0100AA800DA42000,"Automachef",,playable,2020-12-16 19:51:25 -01006B700EA6A000,"Automachef Demo",,playable,2021-02-10 20:35:37 -0100B280106A0000,"Aviary Attorney: Definitive Edition",,playable,2020-08-09 20:32:12 -010064600F982000,"AVICII Invector",,playable,2020-10-25 12:12:56 -0100E100128BA000,"AVICII Invector Demo",,playable,2021-02-10 21:04:58 -01008FB011248000,"AvoCuddle",,playable,2020-09-02 14:50:13 -0100085012D64000,"Awakening of Cthulhu",UE4,playable,2021-04-26 13:03:07 -01002F1005F3C000,"Away: Journey To The Unexpected",nvdec;vulkan-backend-bug,playable,2022-11-06 15:31:04 -0100B8C00CFCE000,"Awesome Pea",,playable,2020-10-11 12:39:23 -010023800D3F2000,"Awesome Pea (Demo)",,playable,2021-02-10 21:48:21 -0100B7D01147E000,"Awesome Pea 2",,playable,2022-10-01 12:34:19 -0100D2011E28000,"Awesome Pea 2 (Demo)",crash,nothing,2021-02-10 22:08:27 -0100DA3011174000,"AXES",,playable,2021-04-08 13:01:58 -0100052004384000,"Axiom Verge",,playable,2020-10-20 01:07:18 -010075400DEC6000,"Ayakashi Koi Gikyoku《Trial version》",,playable,2021-02-10 22:22:11 -01006AF012FC8000,"Azur Lane: Crosswave",UE4;nvdec,playable,2021-04-05 15:15:25 -0100C7D00DE24000,"Azuran Tales: TRIALS",,playable,2020-08-12 15:23:07 -01006FB00990E000,"Azure Reflections",nvdec;online,playable,2021-04-08 13:18:25 -01004E90149AA000,"Azure Striker GUNVOLT 3",,playable,2022-08-10 13:46:49 -0100192003FA4000,"Azure Striker GUNVOLT: STRIKER PACK",32-bit,playable,2024-02-10 23:51:21 -010031D012BA4000,"Azurebreak Heroes",,playable,2020-12-16 21:26:17 -01009B901145C000,"B.ARK",nvdec,playable,2022-11-17 13:35:02 -01002CD00A51C000,"Baba Is You",,playable,2022-07-17 05:36:54 -0100F4100AF16000,"Back to Bed",nvdec,playable,2020-12-16 20:52:04 -0100FEA014316000,"Backworlds",,playable,2022-10-25 23:20:34 -0100EAF00E32E000,"Bacon Man: An Adventure",crash;nvdec,menus,2021-11-20 02:36:21 -01000CB00D094000,"Bad Dream: Coma",deadlock,boots,2023-08-03 00:54:18 -0100B3B00D81C000,"Bad Dream: Fever",,playable,2021-06-04 18:33:12 -0100E98006F22000,"Bad North",,playable,2022-07-17 13:44:25 -010075000D092000,"Bad North Demo",,playable,2021-02-10 22:48:38 -01004C70086EC000,"BAFL - Brakes Are For Losers",,playable,2021-01-13 08:32:51 -010076B011EC8000,"Baila Latino",,playable,2021-04-14 16:40:24 -0100730011BDC000,"Bakugan: Champions of Vestroia",,playable,2020-11-06 19:07:39 -01008260138C4000,"Bakumatsu Renka SHINSENGUMI",,playable,2022-10-25 23:37:31 -0100438012EC8000,"BALAN WONDERWORLD",nvdec;UE4,playable,2022-10-22 13:08:43 -0100E48013A34000,"Balan Wonderworld Demo",gpu;services;UE4;demo,ingame,2023-02-16 20:05:07 -0100CD801CE5E000,"Balatro",,ingame,2024-04-21 02:01:53 -010010A00DA48000,"Baldur's Gate and Baldur's Gate II: Enhanced Editions",32-bit,playable,2022-09-12 23:52:15 -0100BC400FB64000,"Balthazar's Dream",,playable,2022-09-13 00:13:22 -01008D30128E0000,"Bamerang",,playable,2022-10-26 00:29:39 -010013C010C5C000,"Banner of the Maid",,playable,2021-06-14 15:23:37 -0100388008758000,"Banner Saga 2",crash,boots,2021-01-13 08:56:09 -010071E00875A000,"Banner Saga 3",slow,boots,2021-01-11 16:53:57 -0100CE800B94A000,"Banner Saga Trilogy",slow,playable,2024-03-06 11:25:20 -0100425009FB2000,"Baobabs Mausoleum Ep.1: Ovnifagos Don't Eat Flamingos",,playable,2020-07-15 05:06:29 -010079300E976000,"Baobabs Mausoleum Ep.2: 1313 Barnabas Dead End Drive",,playable,2020-12-17 11:22:50 -01006D300FFA6000,"Baobabs Mausoleum Ep.3: Un Pato en Muertoburgo",nvdec,playable,2020-12-17 11:43:10 -0100D3000AEC2000,"Baobabs Mausoleum: DEMO",,playable,2021-02-10 22:59:25 -01003350102E2000,"Barbarous: Tavern of Emyr",,playable,2022-10-16 21:50:24 -0100F7E01308C000,"Barbearian",Needs Update;gpu,ingame,2021-06-28 16:27:50 -010039C0106C6000,"Baron: Fur Is Gonna Fly",crash,boots,2022-02-06 02:05:43 -0100FB000EB96000,"Barry Bradford's Putt Panic Party",nvdec,playable,2020-06-17 01:08:34 -01004860080A0000,"Baseball Riot",,playable,2021-06-04 18:07:27 -010038600B27E000,"Bastion",,playable,2022-02-15 14:15:24 -01005F3012748000,"Batbarian: Testament of the Primordials",,playable,2020-12-17 12:00:59 -0100C07018CA6000,"Baten Kaitos I & II HD Remaster (Europe/USA)",services;Needs Update,boots,2023-10-01 00:44:32 -0100F28018CA4000,"Baten Kaitos I & II HD Remaster (Japan)",services;Needs Update,boots,2023-10-24 23:11:54 -0100011005D92000,"Batman - The Telltale Series",nvdec;slow,playable,2021-01-11 18:19:35 -01003F00163CE000,"Batman: Arkham City",,playable,2024-09-11 00:30:19 -0100ACD0163D0000,"Batman: Arkham Knight",gpu;mac-bug,ingame,2024-06-25 20:24:42 -0100E6300AA3A000,"Batman: The Enemy Within",crash,nothing,2020-10-16 05:49:27 -0100747011890000,"Battle Axe",,playable,2022-10-26 00:38:01 -0100551001D88000,"Battle Chasers: Nightwar",nvdec;slow,playable,2021-01-12 12:27:34 -0100CC2001C6C000,"Battle Chef Brigade Deluxe",,playable,2021-01-11 14:16:28 -0100DBB00CAEE000,"Battle Chef Brigade Demo",,playable,2021-02-10 23:15:07 -0100A3B011EDE000,"Battle Hunters",gpu,ingame,2022-11-12 09:19:17 -010035E00C1AE000,"Battle of Kings",slow,playable,2020-12-17 12:45:23 -0100D2800EB40000,"Battle Planet - Judgement Day",,playable,2020-12-17 14:06:20 -0100C4D0093EA000,"Battle Princess Madelyn",,playable,2021-01-11 13:47:23 -0100A7500DF64000,"Battle Princess Madelyn Royal Edition",,playable,2022-09-26 19:14:49 -010099B00E898000,"Battle Supremacy - Evolution",gpu;nvdec,boots,2022-02-17 09:02:50 -0100DEB00D5A8000,"Battle Worlds: Kronos",nvdec,playable,2021-06-04 17:48:02 -0100650010DD4000,"Battleground",crash,ingame,2021-09-06 11:53:23 -010044E00D97C000,"BATTLESLOTHS",,playable,2020-10-03 08:32:22 -010059C00E39C000,"Battlestar Galactica Deadlock",nvdec,playable,2020-06-27 17:35:44 -01006D800A988000,"Battlezone Gold Edition",gpu;ldn-untested;online,boots,2021-06-04 18:36:05 -010048300D5C2000,"BATTLLOON",,playable,2020-12-17 15:48:23 -0100194010422000,"bayala - the game",,playable,2022-10-04 14:09:25 -0100CF5010FEC000,"Bayonetta Origins: Cereza and the Lost Demon™",gpu,ingame,2024-02-27 01:39:49 -010002801A3FA000,"Bayonetta Origins: Cereza and the Lost Demon™ Demo",gpu;demo,ingame,2024-02-17 06:06:28 -010076F0049A2000,"Bayonetta™",audout,playable,2022-11-20 15:51:59 -01007960049A0000,"Bayonetta™ 2",nvdec;ldn-works;LAN,playable,2022-11-26 03:46:09 -01004A4010FEA000,"Bayonetta™ 3",gpu;crash;nvdec;vulkan-backend-bug;opengl-backend-bug;amd-vendor-bug;ASTC,ingame,2024-09-28 14:34:33 -01002FA00DE72000,"BDSM: Big Drunk Satanic Massacre",,playable,2021-03-04 21:28:22 -01003A1010E3C000,"BE-A Walker",slow,ingame,2020-09-02 15:00:31 -010095C00406C000,"Beach Buggy Racing",online,playable,2021-04-13 23:16:50 -010020700DE04000,"Bear With Me: The Lost Robots",nvdec,playable,2021-02-27 14:20:10 -010024200E97E800,"Bear With Me: The Lost Robots Demo",nvdec,playable,2021-02-12 22:38:12 -0100C0E014A4E000,"Bear's Restaurant",,playable,2024-08-11 21:26:59 -,"BEAST Darling! ~Kemomimi Danshi to Himitsu no Ryou~",crash,menus,2020-10-04 06:12:08 -01009C300BB4C000,"Beat Cop",,playable,2021-01-06 19:26:48 -01002D20129FC000,"Beat Me!",online-broken,playable,2022-10-16 21:59:26 -01006B0014590000,"BEAUTIFUL DESOLATION",gpu;nvdec,ingame,2022-10-26 10:34:38 -01009E700DB2E000,"Bee Simulator",UE4;crash,boots,2020-07-15 12:13:13 -010018F007786000,"BeeFense BeeMastered",,playable,2022-11-17 15:38:12 -0100558010B26000,"Behold the Kickmen",,playable,2020-06-27 12:49:45 -0100D1300C1EA000,"Beholder: Complete Edition",,playable,2020-10-16 12:48:58 -01006E1004404000,"Ben 10",nvdec,playable,2021-02-26 14:08:35 -01009CD00E3AA000,"Ben 10: Power Trip!",nvdec,playable,2022-10-09 10:52:12 -010074500BBC4000,"Bendy and the Ink Machine",,playable,2023-05-06 20:35:39 -010068600AD16000,"Beyblade Burst Battle Zero",services;crash;Needs Update,menus,2022-11-20 15:48:32 -010056500CAD8000,"Beyond Enemy Lines: Covert Operations",UE4,playable,2022-10-01 13:11:50 -0100B8F00DACA000,"Beyond Enemy Lines: Essentials",nvdec;UE4,playable,2022-09-26 19:48:16 -0100BF400AF38000,"Bibi & Tina – Adventures with Horses",nvdec;slow,playable,2021-01-13 08:58:09 -010062400E69C000,"Bibi & Tina at the horse farm",,playable,2021-04-06 16:31:39 -01005FF00AF36000,"Bibi Blocksberg – Big Broom Race 3",,playable,2021-01-11 19:07:16 -010062B00A874000,"Big Buck Hunter Arcade",nvdec,playable,2021-01-12 20:31:39 -010088100C35E000,"Big Crown: Showdown",nvdec;online;ldn-untested,menus,2022-07-17 18:25:32 -0100A42011B28000,"Big Dipper",,playable,2021-06-14 15:08:19 -010077E00F30E000,"Big Pharma",,playable,2020-07-14 15:27:30 -010007401287E000,"BIG-Bobby-Car - The Big Race",slow,playable,2020-12-10 14:25:06 -010057700FF7C000,"Billion Road",,playable,2022-11-19 15:57:43 -010087D008D64000,"BINGO for Nintendo Switch",,playable,2020-07-23 16:17:36 -01004BA017CD6000,"Biomutant",crash,ingame,2024-05-16 15:46:36 -01002620102C6000,"BioShock 2 Remastered",services,nothing,2022-10-29 14:39:22 -0100D560102C8000,"BioShock Infinite: The Complete Edition",services-horizon;crash,nothing,2024-08-11 21:35:01 -0100AD10102B2000,"BioShock Remastered",services-horizon;crash;Needs Update,boots,2024-06-06 01:08:52 -010053B0117F8000,"Biped",nvdec,playable,2022-10-01 13:32:58 -01001B700B278000,"Bird Game +",online,playable,2022-07-17 18:41:57 -0100B6B012FF4000,"Birds and Blocks Demo",services;demo,boots,2022-04-10 04:53:03 -0100E62012D3C000,"BIT.TRIP RUNNER",,playable,2022-10-17 14:23:24 -01000AD012D3A000,"BIT.TRIP VOID",,playable,2022-10-17 14:31:23 -0100A0800EA9C000,"Bite the Bullet",,playable,2020-10-14 23:10:11 -010026E0141C8000,"Bitmaster",,playable,2022-12-13 14:05:51 -010061D00FD26000,"Biz Builder Delux",slow,playable,2020-12-15 21:36:25 -0100DD1014AB8000,"Black Book",nvdec,playable,2022-12-13 16:38:53 -010049000B69E000,"Black Future '88",nvdec,playable,2022-09-13 11:24:37 -01004BE00A682000,"Black Hole Demo",,playable,2021-02-12 23:02:17 -0100C3200E7E6000,"Black Legend",gpu;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-10-22 12:54:48 -010043A012A32000,"Blackjack Hands",,playable,2020-11-30 14:04:51 -0100A0A00E660000,"Blackmoor 2",online-broken,playable,2022-09-26 20:26:34 -010032000EA2C000,"Blacksad: Under the Skin",,playable,2022-09-13 11:38:04 -01006B400C178000,"Blacksea Odyssey",nvdec,playable,2022-10-16 22:14:34 -010068E013450000,"Blacksmith of the Sand Kingdom",,playable,2022-10-16 22:37:44 -0100C4400CB7C000,"BLADE ARCUS Rebellion From Shining",,playable,2022-07-17 18:52:28 -0100EA1018A2E000,"Blade Assault",audio,nothing,2024-04-29 14:32:50 -01009CC00E224000,"Blade II - The Return Of Evil",audio;crash;UE4,ingame,2021-11-14 02:49:59 -01005950022EC000,"Blade Strangers",nvdec,playable,2022-07-17 19:02:43 -0100DF0011A6A000,"Bladed Fury",,playable,2022-10-26 11:36:26 -0100CFA00CC74000,"Blades of Time",deadlock;online,boots,2022-07-17 19:19:58 -01006CC01182C000,"Blair Witch",nvdec;UE4,playable,2022-10-01 14:06:16 -010039501405E000,"Blanc",gpu;slow,ingame,2023-02-22 14:00:13 -0100698009C6E000,"Blasphemous",nvdec,playable,2021-03-01 12:15:31 -0100302010338000,"Blasphemous Demo",,playable,2021-02-12 23:49:56 -0100225000FEE000,"Blaster Master Zero",32-bit,playable,2021-03-05 13:22:33 -01005AA00D676000,"Blaster Master Zero 2",,playable,2021-04-08 15:22:59 -010025B002E92000,"Blaster Master Zero Demo",,playable,2021-02-12 23:59:06 -0100E53013E1C000,"Blastoid Breakout",,playable,2021-01-25 23:28:02 -0100EE800C93E000,"BLAZBLUE CENTRALFICTION Special Edition",nvdec,playable,2020-12-15 23:50:04 -0100B61008208000,"BLAZBLUE CROSS TAG BATTLE",nvdec;online,playable,2021-01-05 20:29:37 -010021A00DE54000,"Blazing Beaks",,playable,2020-06-04 20:37:06 -0100C2700C252000,"Blazing Chrome",,playable,2020-11-16 04:56:54 -010091700EA2A000,"Bleep Bloop DEMO",nvdec,playable,2021-02-13 00:20:53 -010089D011310000,"Blind Men",audout,playable,2021-02-20 14:15:38 -0100743013D56000,"Blizzard® Arcade Collection",nvdec,playable,2022-08-03 19:37:26 -0100F3500A20C000,"BlobCat",,playable,2021-04-23 17:09:30 -0100E1C00DB6C000,"Block-a-Pix Deluxe Demo",,playable,2021-02-13 00:37:39 -0100C6A01AD56000,"Bloo Kid",,playable,2024-05-01 17:18:04 -010055900FADA000,"Bloo Kid 2",,playable,2024-05-01 17:16:57 -0100EE5011DB6000,"Blood and Guts Bundle",,playable,2020-06-27 12:57:35 -01007E700D17E000,"Blood Waves",gpu,ingame,2022-07-18 13:04:46 -0100E060102AA000,"Blood will be Spilled",nvdec,playable,2020-12-17 03:02:03 -01004B800AF5A000,"Bloodstained: Curse of the Moon",,playable,2020-09-04 10:42:17 -01004680124E6000,"Bloodstained: Curse of the Moon 2",,playable,2020-09-04 10:56:27 -010025A00DF2A000,"Bloodstained: Ritual of the Night",nvdec;UE4,playable,2022-07-18 14:27:35 -0100E510143EC000,"Bloody Bunny, The Game",nvdec;UE4,playable,2022-10-22 13:18:55 -0100B8400A1C6000,"Bloons TD 5",Needs Update;audio;gpu;services,boots,2021-04-18 23:02:46 -01000EB01023E000,"Blossom Tales Demo",,playable,2021-02-13 14:22:53 -0100C1000706C000,"Blossom Tales: The Sleeping King",,playable,2022-07-18 16:43:07 -010073B010F6E000,"Blue Fire",UE4,playable,2022-10-22 14:46:11 -0100721013510000,"Body of Evidence",,playable,2021-04-25 22:22:11 -0100AD1010CCE000,"Bohemian Killing",vulkan-backend-bug,playable,2022-09-26 22:41:37 -010093700ECEC000,"Boku to Nurse no Kenshuu Nisshi",,playable,2022-11-21 20:38:34 -01001D900D9AC000,"Bokujou Monogatari Saikai no Mineraru Taun (Story of Seasons: Friends of Mineral Town)",slow;crash;Needs Update,ingame,2022-04-24 22:46:04 -0100317014B7C000,"Bomb Rush Cyberfunk",,playable,2023-09-28 19:51:57 -01007900080B6000,"Bomber Crew",,playable,2021-06-03 14:21:28 -0100A1F012948000,"Bomber Fox",nvdec,playable,2021-04-19 17:58:13 -010087300445A000,"Bombslinger",services,menus,2022-07-19 12:53:15 -01007A200F452000,"Book of Demons",,playable,2022-09-29 12:03:43 -010054500F564000,"Bookbound Brigade",,playable,2020-10-09 14:30:29 -01002E6013ED8000,"Boom Blaster",,playable,2021-03-24 10:55:56 -010081A00EE62000,"Boomerang Fu",,playable,2024-07-28 01:12:41 -010069F0135C4000,"Boomerang Fu Demo Version",demo,playable,2021-02-13 14:38:13 -01009970122E4000,"Borderlands 3 Ultimate Edition",gpu,ingame,2024-07-15 04:38:14 -010064800F66A000,"Borderlands: Game of the Year Edition",slow;online-broken;ldn-untested,ingame,2023-07-23 21:10:36 -010096F00FF22000,"Borderlands: The Handsome Collection",,playable,2022-04-22 18:35:07 -010007400FF24000,"Borderlands: The Pre-Sequel",nvdec,playable,2021-06-09 20:17:10 -01008E500AFF6000,"Boreal Blade",gpu;ldn-untested;online,ingame,2021-06-11 15:37:14 -010092C013FB8000,"BORIS THE ROCKET",,playable,2022-10-26 13:23:09 -010076F00EBE4000,"BOSSGARD",online-broken,playable,2022-10-04 14:21:13 -010069B00EAC8000,"Bot Vice Demo",crash;demo,ingame,2021-02-13 14:52:42 -010081100FE08000,"Bouncy Bob 2",,playable,2020-07-14 16:51:53 -0100E1200DC1A000,"Bounty Battle",nvdec,playable,2022-10-04 14:40:51 -0100B4700C57E000,"Bow to Blood: Last Captain Standing",slow,playable,2020-10-23 10:51:21 -010040800BA8A000,"Box Align",crash;services,nothing,2020-04-03 17:26:56 -010018300D006000,"BOXBOY! + BOXGIRL!™",,playable,2020-11-08 01:11:54 -0100B7200E02E000,"BOXBOY! + BOXGIRL!™ Demo",demo,playable,2021-02-13 14:59:08 -0100CA400B6D0000,"BQM -BlockQuest Maker-",online,playable,2020-07-31 20:56:50 -0100E87017D0E000,"Bramble: The Mountain King",services-horizon,playable,2024-03-06 09:32:17 -01000F5003068000,"Brave Dungeon + Dark Witch Story:COMBAT",,playable,2021-01-12 21:06:34 -01006DC010326000,"BRAVELY DEFAULT™ II",gpu;crash;Needs Update;UE4,ingame,2024-04-26 06:11:26 -0100B6801137E000,"Bravely Default™ II Demo",gpu;crash;UE4;demo,ingame,2022-09-27 05:39:47 -010081501371E000,"BraveMatch",UE4,playable,2022-10-26 13:32:15 -0100F60017D4E000,"Bravery and Greed",gpu;deadlock,boots,2022-12-04 02:23:47 -0100A42004718000,"BRAWL",nvdec;slow,playable,2020-06-04 14:23:18 -010068F00F444000,"Brawl Chess",nvdec,playable,2022-10-26 13:59:17 -0100C6800B934000,"Brawlhalla",online;opengl,playable,2021-06-03 18:26:09 -010060200A4BE000,"Brawlout",ldn-untested;online,playable,2021-06-04 17:35:35 -0100C1B00E1CA000,"Brawlout Demo",demo,playable,2021-02-13 22:46:53 -010022C016DC8000,"Breakout: Recharged",slow,ingame,2022-11-06 15:32:57 -01000AA013A5E000,"Breathedge",UE4;nvdec,playable,2021-05-06 15:44:28 -01003D50100F4000,"Breathing Fear",,playable,2020-07-14 15:12:29 -010026800BB06000,"Brick Breaker",nvdec;online,playable,2020-12-15 18:26:23 -01002AD0126AE000,"Bridge Constructor: The Walking Dead",gpu;slow,ingame,2020-12-11 17:31:32 -01000B1010D8E000,"Bridge! 3",,playable,2020-10-08 20:47:24 -010011000EA7A000,"BRIGANDINE The Legend of Runersia",,playable,2021-06-20 06:52:25 -0100703011258000,"BRIGANDINE The Legend of Runersia Demo",,playable,2021-02-14 14:44:10 -01000BF00BE40000,"Bring Them Home",UE4,playable,2021-04-12 14:14:43 -010060A00B53C000,"Broforce",ldn-untested;online,playable,2021-05-28 12:23:38 -0100EDD0068A6000,"Broken Age",,playable,2021-06-04 17:40:32 -0100A5800F6AC000,"Broken Lines",,playable,2020-10-16 00:01:37 -01001E60085E6000,"Broken Sword 5 - the Serpent's Curse",,playable,2021-06-04 17:28:59 -0100F19011226000,"Brotherhood United Demo",demo,playable,2021-02-14 21:10:57 -01000D500D08A000,"Brothers: A Tale of Two Sons",nvdec;UE4,playable,2022-07-19 14:02:22 -0100B2700E90E000,"Brunch Club",,playable,2020-06-24 13:54:07 -010010900F7B4000,"Bubble Bobble 4 Friends: The Baron is Back!",nvdec,playable,2021-06-04 15:27:55 -0100DBE00C554000,"Bubsy: Paws on Fire!",slow,ingame,2023-08-24 02:44:51 -0100089010A92000,"Bucket Knight",crash,ingame,2020-09-04 13:11:24 -0100F1B010A90000,"Bucket Knight demo",demo,playable,2021-02-14 21:23:09 -01000D200AC0C000,"Bud Spencer & Terence Hill - Slaps And Beans",,playable,2022-07-17 12:37:00 -010051A00E99E000,"Bug Fables: The Everlasting Sapling",,playable,2020-06-09 11:27:00 -01003DD00D658000,"Bulletstorm: Duke of Switch Edition",nvdec,playable,2022-03-03 08:30:24 -01006BB00E8FA000,"BurgerTime Party!",slow,playable,2020-11-21 14:11:53 -01005780106E8000,"BurgerTime Party! Demo",demo,playable,2021-02-14 21:34:16 -010078C00DB40000,"Buried Stars",,playable,2020-09-07 14:11:58 -0100DBF01000A000,"Burnout™ Paradise Remastered",nvdec;online,playable,2021-06-13 02:54:46 -010066F00C76A000,"Bury me, my Love",,playable,2020-11-07 12:47:37 -010030D012FF6000,"Bus Driver Simulator",,playable,2022-10-17 13:55:27 -0100A9101418C000,"BUSTAFELLOWS",nvdec,playable,2020-10-17 20:04:41 -0100177005C8A000,"BUTCHER",,playable,2021-01-11 18:50:17 -01000B900D8B0000,"Cadence of Hyrule: Crypt of the NecroDancer Featuring The Legend of Zelda",slow;nvdec,playable,2024-04-01 22:43:40 -010065700EE06000,"Cadence of Hyrule: Crypt of the NecroDancer Featuring The Legend of Zelda Demo",demo;gpu;nvdec,ingame,2021-02-14 21:48:15 -01005C00117A8000,"Café Enchanté",,playable,2020-11-13 14:54:25 -010060400D21C000,"Cafeteria Nipponica Demo",demo,playable,2021-02-14 22:11:35 -0100699012F82000,"Cake Bash Demo",crash;demo,ingame,2021-02-14 22:21:15 -01004FD00D66A000,"Caladrius Blaze",deadlock;nvdec,nothing,2022-12-07 16:44:37 -01004B500AB88000,"Calculation Castle : Greco's Ghostly Challenge Addition",32-bit,playable,2020-11-01 23:40:11 -010045500B212000,"Calculation Castle : Greco's Ghostly Challenge Division",32-bit,playable,2020-11-01 23:54:55 -0100ECE00B210000,"Calculation Castle : Greco's Ghostly Challenge Multiplication",32-bit,playable,2020-11-02 00:04:33 -0100A6500B176000,"Calculation Castle : Greco's Ghostly Challenge Subtraction",32-bit,playable,2020-11-01 23:47:42 -010004701504A000,"Calculator",,playable,2021-06-11 13:27:20 -010013A00E750000,"Calico",,playable,2022-10-17 14:44:28 -010046000EE40000,"Call of Cthulhu",nvdec;UE4,playable,2022-12-18 03:08:30 -0100B4700BFC6000,"Call of Juarez: Gunslinger",gpu;nvdec,ingame,2022-09-17 16:49:46 -0100593008BDC000,"Can't Drive This",,playable,2022-10-22 14:55:17 -0100E4600B166000,"Candle: The Power of the Flame",nvdec,playable,2020-05-26 12:10:20 -01001E0013208000,"Capcom Arcade Stadium",,playable,2021-03-17 05:45:14 -010094E00B52E000,"Capcom Beat 'Em Up Bundle",,playable,2020-03-23 18:31:24 -0100F6400A77E000,"CAPCOM BELT ACTION COLLECTION",online;ldn-untested,playable,2022-07-21 20:51:23 -01009BF0072D4000,"Captain Toad™: Treasure Tracker",32-bit,playable,2024-04-25 00:50:16 -01002C400B6B6000,"Captain Toad™: Treasure Tracker Demo",32-bit;demo,playable,2021-02-14 22:36:09 -0100EAE010560000,"Captain Tsubasa: Rise of New Champions",online-broken;vulkan-backend-bug,playable,2022-10-09 11:20:50 -01002320137CC000,"CAPTAIN TSUBASA: RISE OF NEW CHAMPIONS DEMO VERSION",slow,playable,2021-02-14 22:45:35 -010048800D95C000,"Car Mechanic Manager",,playable,2020-07-23 18:50:17 -01007BD00AE70000,"Car Quest",deadlock,menus,2021-11-18 08:59:18 -0100DA70115E6000,"Caretaker",,playable,2022-10-04 14:52:24 -0100DD6014870000,"Cargo Crew Driver",,playable,2021-04-19 12:54:22 -010088C0092FE000,"Carnival Games®",nvdec,playable,2022-07-21 21:01:22 -01005F5011AC4000,"Carnivores: Dinosaur Hunt",,playable,2022-12-14 18:46:06 -0100B1600E9AE000,"CARRION",crash,nothing,2020-08-13 17:15:12 -01008D1001512000,"Cars 3: Driven to Win",gpu,ingame,2022-07-21 21:21:05 -0100810012A1A000,"Carto",,playable,2022-09-04 15:37:06 -0100085003A2A000,"Cartoon Network Battle Crashers",,playable,2022-07-21 21:55:40 -0100C4C0132F8000,"CASE 2: Animatronics Survival",nvdec;UE4;vulkan-backend-bug,playable,2022-10-09 11:45:03 -010066F01A0E0000,"Cassette Beasts",,playable,2024-07-22 20:38:43 -010001300D14A000,"Castle Crashers Remastered",gpu,boots,2024-08-10 09:21:20 -0100F6D01060E000,"Castle Crashers Remastered Demo",gpu;demo,boots,2022-04-10 10:57:10 -01003C100445C000,"Castle of Heart",nvdec,playable,2022-07-21 23:10:45 -0100F5500FA0E000,"Castle of no Escape 2",,playable,2022-09-13 13:51:42 -0100DA2011F18000,"Castle Pals",,playable,2021-03-04 21:00:33 -010097C00AB66000,"CastleStorm",nvdec,playable,2022-07-21 22:49:14 -010007400EB64000,"CastleStorm II",UE4;crash;nvdec,boots,2020-10-25 11:22:44 -01001A800D6BC000,"Castlevania Anniversary Collection",audio,playable,2020-05-23 11:40:29 -010076000C86E000,"Cat Girl Without Salad: Amuse-Bouche",,playable,2022-09-03 13:01:47 -0100A2F006FBE000,"Cat Quest",,playable,2020-04-02 23:09:32 -01008BE00E968000,"Cat Quest II",,playable,2020-07-06 23:52:09 -0100E86010220000,"Cat Quest II Demo",demo,playable,2021-02-15 14:11:57 -0100BAE0077E4000,"Catherine Full Body for Nintendo Switch (JP)",Needs Update;gpu,ingame,2021-02-21 18:06:11 -0100BF00112C0000,"Catherine: Full Body",nvdec,playable,2023-04-02 11:00:37 -010004400B28A000,"Cattails",,playable,2021-06-03 14:36:57 -0100B7D0022EE000,"Cave Story+",,playable,2020-05-22 09:57:25 -01001A100C0E8000,"Caveblazers",slow,ingame,2021-06-09 17:57:28 -01006DB004566000,"Caveman Warriors",,playable,2020-05-22 11:44:20 -010078700B2CC000,"Caveman Warriors Demo",demo,playable,2021-02-15 14:44:08 -01002B30028F6000,"Celeste",,playable,2020-06-17 10:14:40 -01006B000A666000,"Cendrillon palikA",gpu;nvdec,ingame,2022-07-21 22:52:24 -01007600115CE000,"CHAOS CODE -NEW SIGN OF CATASTROPHE-",crash;nvdec,boots,2022-04-04 12:24:21 -0100957016B90000,"CHAOS;HEAD NOAH",,playable,2022-06-02 22:57:19 -0100F52013A66000,"Charge Kid",gpu;audout,boots,2024-02-11 01:17:47 -0100DE200C350000,"Chasm",,playable,2020-10-23 11:03:43 -010034301A556000,"Chasm: The Rift",gpu,ingame,2024-04-29 19:02:48 -0100A5900472E000,"Chess Ultra",UE4,playable,2023-08-30 23:06:31 -0100E3C00A118000,"Chicken Assassin: Reloaded",,playable,2021-02-20 13:29:01 -0100713010E7A000,"Chicken Police – Paint it RED!",nvdec,playable,2020-12-10 15:10:11 -0100F6C00A016000,"Chicken Range",,playable,2021-04-23 12:14:23 -01002E500E3EE000,"Chicken Rider",,playable,2020-05-22 11:31:17 -0100CAC011C3A000,"Chickens Madness DEMO",UE4;demo;gpu;nvdec,ingame,2021-02-15 15:02:10 -01007D000AD8A000,"Child of Light® Ultimate Edition",nvdec,playable,2020-12-16 10:23:10 -01002DE00C250000,"Children of Morta",gpu;nvdec,ingame,2022-09-13 17:48:47 -0100C1A00AC3E000,"Children of Zodiarcs",,playable,2020-10-04 14:23:33 -010046F012A04000,"Chinese Parents",,playable,2021-04-08 12:56:41 -01005A001489A000,"Chiptune Arrange Sound(DoDonPachi Resurrection)",32-bit;crash,ingame,2024-01-25 14:37:32 -01006A30124CA000,"Chocobo GP",gpu;crash,ingame,2022-06-04 14:52:18 -0100BF600BF26000,"Chocobo's Mystery Dungeon EVERY BUDDY!",slow,playable,2020-05-26 13:53:13 -01000BA0132EA000,"Choices That Matter: And The Sun Went Out",,playable,2020-12-17 15:44:08 -,"Chou no Doku Hana no Kusari: Taishou Irokoi Ibun",gpu;nvdec,ingame,2020-09-28 17:58:04 -010039A008E76000,"ChromaGun",,playable,2020-05-26 12:56:42 -010006800E13A000,"Chronos: Before the Ashes",UE4;gpu;nvdec,ingame,2020-12-11 22:16:35 -010039700BA7E000,"Circle of Sumo",,playable,2020-05-22 12:45:21 -01008FA00D686000,"Circuits",,playable,2022-09-19 11:52:50 -0100D8800B87C000,"Cities: Skylines - Nintendo Switch™ Edition",,playable,2020-12-16 10:34:57 -0100E4200D84E000,"Citizens of Space",gpu,boots,2023-10-22 06:45:44 -0100D9C012900000,"Citizens Unite!: Earth x Space",gpu,ingame,2023-10-22 06:44:19 -01005E501284E000,"City Bus Driving Simulator",,playable,2021-06-15 21:25:59 -0100A3A00CC7E000,"CLANNAD",,playable,2021-06-03 17:01:02 -01007B501372C000,"CLANNAD Side Stories",,playable,2022-10-26 15:03:04 -01005ED0107F4000,"Clash Force",,playable,2022-10-01 23:45:48 -010009300AA6C000,"Claybook",slow;nvdec;online;UE4,playable,2022-07-22 11:11:34 -010058900F52E000,"Clea",crash,ingame,2020-12-15 16:22:56 -010045E0142A4000,"Clea 2",,playable,2021-04-18 14:25:18 -01008C100C572000,"Clock Zero ~Shuuen no Ichibyou~ Devote",nvdec,playable,2022-12-04 22:19:14 -0100DF9013AD4000,"Clocker",,playable,2021-04-05 15:05:13 -0100B7200DAC6000,"Close to the Sun",crash;nvdec;UE4,boots,2021-11-04 09:19:41 -010047700D540000,"Clubhouse Games™: 51 Worldwide Classics",ldn-works,playable,2024-05-21 16:12:57 -0100C1401CEDC000,"Clue",crash;online,menus,2020-11-10 09:23:48 -010085A00821A000,"ClusterPuck 99",,playable,2021-01-06 00:28:12 -010096900A4D2000,"Clustertruck",slow,ingame,2021-02-19 21:07:09 -01005790110F0000,"Cobra Kai: The Karate Kid Saga Continues",,playable,2021-06-17 15:59:13 -01002E700C366000,"COCOON",gpu,ingame,2024-03-06 11:33:08 -010034E005C9C000,"Code of Princess EX",nvdec;online,playable,2021-06-03 10:50:13 -010086100CDCA000,"CODE SHIFTER",,playable,2020-08-09 15:20:55 -010002400F408000,"Code: Realize ~Future Blessings~",nvdec,playable,2023-03-31 16:57:47 -0100CF800C810000,"Coffee Crisis",,playable,2021-02-20 12:34:52 -010066200E1E6000,"Coffee Talk",,playable,2020-08-10 09:48:44 -0100178009648000,"Coffin Dodgers",,playable,2021-02-20 14:57:41 -010035B01706E000,"Cold Silence",cpu;crash,nothing,2024-07-11 17:06:14 -010083E00F40E000,"Collar X Malice",nvdec,playable,2022-10-02 11:51:56 -0100E3B00F412000,"Collar X Malice -Unlimited-",nvdec,playable,2022-10-04 15:30:40 -01002A600D7FC000,"Collection of Mana",,playable,2020-10-19 19:29:45 -0100B77012266000,"COLLECTION of SaGa FINAL FANTASY LEGEND",,playable,2020-12-30 19:11:16 -010030800BC36000,"Collidalot",nvdec,playable,2022-09-13 14:09:27 -0100CA100C0BA000,"Color Zen",,playable,2020-05-22 10:56:17 -010039B011312000,"Colorgrid",,playable,2020-10-04 01:50:52 -0100A7000BD28000,"Coloring Book",,playable,2022-07-22 11:17:05 -010020500BD86000,"Colors Live",gpu;services;crash,boots,2023-02-26 02:51:07 -0100E2F0128B4000,"Colossus Down",,playable,2021-02-04 20:49:50 -0100C4D00D16A000,"Commander Keen in Keen Dreams",gpu,ingame,2022-08-04 20:34:20 -0100E400129EC000,"Commander Keen in Keen Dreams: Definitive Edition",,playable,2021-05-11 19:33:54 -010065A01158E000,"Commandos 2 - HD Remaster",gpu;nvdec,ingame,2022-08-10 21:52:27 -010015801308E000,"Conarium",UE4;nvdec,playable,2021-04-26 17:57:53 -0100971011224000,"Concept Destruction",,playable,2022-09-29 12:28:56 -010043700C9B0000,"Conduct TOGETHER!",nvdec,playable,2021-02-20 12:59:00 -01007EF00399C000,"Conga Master Party!",,playable,2020-05-22 13:22:24 -0100A5600FAC0000,"Construction Simulator 3 - Console Edition",,playable,2023-02-06 09:31:23 -0100A330022C2000,"Constructor Plus",,playable,2020-05-26 12:37:40 -0100DCA00DA7E000,"Contra Anniversary Collection",,playable,2022-07-22 11:30:12 -0100F2600D710000,"CONTRA: ROGUE CORPS",crash;nvdec;regression,menus,2021-01-07 13:23:35 -0100B8200ECA6000,"CONTRA: ROGUE CORPS Demo",gpu,ingame,2022-09-04 16:46:52 -01007D701298A000,"Contraptions",,playable,2021-02-08 18:40:50 -0100041013360000,"Control Ultimate Edition - Cloud Version",Needs Update;crash;services,nothing,2021-04-18 22:34:06 -010058800E90A000,"Convoy: A Tactical Roguelike",,playable,2020-10-15 14:43:50 -0100B82010B6C000,"Cook, Serve, Delicious! 3?!",,playable,2022-10-09 12:09:34 -010060700EFBA000,"Cooking Mama: Cookstar",crash;loader-allocator,menus,2021-11-20 03:19:35 -01001E400FD58000,"Cooking Simulator",,playable,2021-04-18 13:25:23 -0100DF9010206000,"Cooking Tycoons - 3 in 1 Bundle",,playable,2020-11-16 22:44:26 -01005350126E0000,"Cooking Tycoons 2 - 3 in 1 Bundle",,playable,2020-11-16 22:19:33 -0100C5A0115C4000,"CopperBell",,playable,2020-10-04 15:54:36 -010016400B1FE000,"Corpse Party: Blood Drive",nvdec,playable,2021-03-01 12:44:23 -0100CCB01B1A0000,"COSMIC FANTASY COLLECTION",,ingame,2024-05-21 17:56:37 -010067C00A776000,"Cosmic Star Heroine",,playable,2021-02-20 14:30:47 -01003DD00F94A000,"COTTOn Reboot! [ コットン リブート! ]",,playable,2022-05-24 16:29:24 -,"Cotton/Guardian Saturn Tribute Games",gpu,boots,2022-11-27 21:00:51 -01000E301107A000,"Couch Co-Op Bundle Vol. 2",nvdec,playable,2022-10-02 12:04:21 -0100C1E012A42000,"Country Tales",,playable,2021-06-17 16:45:39 -01003370136EA000,"Cozy Grove",gpu,ingame,2023-07-30 22:22:19 -010073401175E000,"Crash Bandicoot™ 4: It’s About Time",nvdec;UE4,playable,2024-03-17 07:13:45 -0100D1B006744000,"Crash Bandicoot™ N. Sane Trilogy",,playable,2024-02-11 11:38:14 -010007900FCE2000,"Crash Drive 2",online,playable,2020-12-17 02:45:46 -010046600BD0E000,"Crash Dummy",nvdec,playable,2020-05-23 11:12:43 -0100BF200CD74000,"Crashbots",,playable,2022-07-22 13:50:52 -010027100BD16000,"Crashlands",,playable,2021-05-27 20:30:06 -0100F9F00C696000,"Crash™ Team Racing Nitro-Fueled",gpu;nvdec;online-broken,ingame,2023-06-25 02:40:17 -0100BF7006BCA000,"Crawl",,playable,2020-05-22 10:16:05 -0100C66007E96000,"Crayola Scoot",nvdec,playable,2022-07-22 14:01:55 -01005BA00F486000,"Crayon Shin-chan Ora to Hakase no Natsuyasumi Owaranai Nanokakan no Tabi",,playable,2021-07-21 10:41:33 -0100D470106DC000,"CRAYON SHINCHAN The Storm Called FLAMING KASUKABE RUNNER!!",services,menus,2020-03-20 14:00:57 -01006BC00C27A000,"Crazy Strike Bowling EX",UE4;gpu;nvdec,ingame,2020-08-07 18:15:59 -0100F9900D8C8000,"Crazy Zen Mini Golf",,playable,2020-08-05 14:00:00 -0100B0E010CF8000,"Creaks",,playable,2020-08-15 12:20:52 -01007C600D778000,"Creature in the Well",UE4;gpu,ingame,2020-11-16 12:52:40 -0100A19011EEE000,"Creepy Tale",,playable,2020-12-15 21:58:03 -01005C2013B00000,"Cresteaju",gpu,ingame,2021-03-24 10:46:06 -010022D00D4F0000,"Cricket 19",gpu,ingame,2021-06-14 14:56:07 -0100387017100000,"Cricket 22 The Official Game Of The Ashes",crash,boots,2023-10-18 08:01:57 -01005640080B0000,"Crimsonland",,playable,2021-05-27 20:50:54 -0100B0400EBC4000,"Cris Tales",crash,ingame,2021-07-29 15:10:53 -01004BC0166CC000,"CRISIS CORE –FINAL FANTASY VII– REUNION",,playable,2022-12-19 15:53:59 -01004F800C4DA000,"Croc's World",,playable,2020-05-22 11:21:09 -01009DB00DE12000,"Croc's World 2",,playable,2020-12-16 20:01:40 -010025200FC54000,"Croc's World 3",,playable,2020-12-30 18:53:26 -01000F0007D92000,"Croixleur Sigma",online,playable,2022-07-22 14:26:54 -01003D90058FC000,"CrossCode",,playable,2024-02-17 10:23:19 -0100B1E00AA56000,"Crossing Souls",nvdec,playable,2021-02-20 15:42:54 -0100059012BAE000,"Crown Trick",,playable,2021-06-16 19:36:29 -0100B41013C82000,"Cruis'n Blast",gpu,ingame,2023-07-30 10:33:47 -01000CC01C108000,"Crymachina Trial Edition ( Demo ) [ クライマキナ ]",demo,playable,2023-08-06 05:33:21 -0100CEA007D08000,"Crypt of the NecroDancer: Nintendo Switch Edition",nvdec,playable,2022-11-01 09:52:06 -0100582010AE0000,"Crysis 2 Remastered",deadlock,menus,2023-09-21 10:46:17 -0100CD3010AE2000,"Crysis 3 Remastered",deadlock,menus,2023-09-10 16:03:50 -0100E66010ADE000,"Crysis Remastered",nvdec,menus,2024-08-13 05:23:24 -0100972008234000,"Crystal Crisis",nvdec,playable,2021-02-20 13:52:44 -01006FA012FE0000,"Cthulhu Saves Christmas",,playable,2020-12-14 00:58:55 -010001600D1E8000,"Cube Creator X",crash,menus,2021-11-25 08:53:28 -010082E00F1CE000,"Cubers: Arena",nvdec;UE4,playable,2022-10-04 16:05:40 -010040D011D04000,"Cubicity",,playable,2021-06-14 14:19:51 -0100A5C00D162000,"Cuphead",,playable,2022-02-01 22:45:55 -0100F7E00DFC8000,"Cupid Parasite",gpu,ingame,2023-08-21 05:52:36 -010054501075C000,"Curious Cases",,playable,2020-08-10 09:30:48 -0100D4A0118EA000,"Curse of the Dead Gods",,playable,2022-08-30 12:25:38 -0100CE5014026000,"Curved Space",,playable,2023-01-14 22:03:50 -0100C1300DE74000,"Cyber Protocol",nvdec,playable,2020-09-28 14:47:40 -0100C1F0141AA000,"Cyber Shadow",,playable,2022-07-17 05:37:41 -01006B9013672000,"Cybxus Hearts",gpu;slow,ingame,2022-01-15 05:00:49 -010063100B2C2000,"Cytus α",nvdec,playable,2021-02-20 13:40:46 -0100B6400CA56000,"DAEMON X MACHINA™",UE4;audout;ldn-untested;nvdec,playable,2021-06-09 19:22:29 -010061300DF48000,"Dairoku: Ayakashimori",Needs Update;loader-allocator,nothing,2021-11-30 05:09:38 -0100BD2009A1C000,"Damsel",,playable,2022-09-06 11:54:39 -0100BFC002B4E000,"Dandara: Trials of Fear Edition",,playable,2020-05-26 12:42:33 -0100DFB00D808000,"Dandy Dungeon - Legend of Brave Yamada -",,playable,2021-01-06 09:48:47 -01003ED0099B0000,"Danger Mouse: The Danger Games",crash;online,boots,2022-07-22 15:49:45 -0100EFA013E7C000,"Danger Scavenger",nvdec,playable,2021-04-17 15:53:04 -0100417007F78000,"Danmaku Unlimited 3",,playable,2020-11-15 00:48:35 -,"Darius Cozmic Collection",,playable,2021-02-19 20:59:06 -010059C00BED4000,"Darius Cozmic Collection Special Edition",,playable,2022-07-22 16:26:50 -010015800F93C000,"Dariusburst - Another Chronicle EX+",online,playable,2021-04-05 14:21:43 -01003D301357A000,"Dark Arcana: The Carnival",gpu;slow,ingame,2022-02-19 08:52:28 -010083A00BF6C000,"Dark Devotion",nvdec,playable,2022-08-09 09:41:18 -0100BFF00D5AE000,"Dark Quest 2",,playable,2020-11-16 21:34:52 -01004AB00A260000,"DARK SOULS™: REMASTERED",gpu;nvdec;online-broken,ingame,2024-04-09 19:47:58 -01001FA0034E2000,"Dark Witch Music Episode: Rudymical",,playable,2020-05-22 09:44:44 -01008F1008DA6000,"Darkest Dungeon",nvdec,playable,2022-07-22 18:49:18 -0100F2300D4BA000,"Darksiders Genesis",nvdec;online-broken;UE4;ldn-broken,playable,2022-09-21 18:06:25 -010071800BA98000,"Darksiders II Deathinitive Edition",gpu;nvdec;online-broken,ingame,2024-06-26 00:37:25 -0100E1400BA96000,"Darksiders Warmastered Edition",nvdec,playable,2023-03-02 18:08:09 -010033500B7B6000,"Darkwood",,playable,2021-01-08 21:24:06 -0100440012FFA000,"DARQ Complete Edition",audout,playable,2021-04-07 15:26:21 -0100BA500B660000,"Darts Up",,playable,2021-04-14 17:22:22 -0100F0B0081DA000,"Dawn of the Breakers",online-broken;vulkan-backend-bug,menus,2022-12-08 14:40:03 -0100FCF00F6CC000,"Day and Night",,playable,2020-12-17 12:30:51 -0100D0A009310000,"de Blob",nvdec,playable,2021-01-06 17:34:46 -010034E00A114000,"de Blob 2",nvdec,playable,2021-01-06 13:00:16 -01008E900471E000,"De Mambo",,playable,2021-04-10 12:39:40 -01004C400CF96000,"Dead by Daylight",nvdec;online-broken;UE4,boots,2022-09-13 14:32:13 -0100646009FBE000,"Dead Cells",,playable,2021-09-22 22:18:49 -01004C500BD40000,"Dead End Job",nvdec,playable,2022-09-19 12:48:44 -01009CC00C97C000,"DEAD OR ALIVE Xtreme 3 Scarlet",,playable,2022-07-23 17:05:06 -0100A5000F7AA000,"DEAD OR SCHOOL",nvdec,playable,2022-09-06 12:04:09 -0100A24011F52000,"Dead Z Meat",UE4;services,ingame,2021-04-14 16:50:16 -010095A011A14000,"Deadly Days",,playable,2020-11-27 13:38:55 -0100BAC011928000,"Deadly Premonition 2: A Blessing In Disguise",,playable,2021-06-15 14:12:36 -0100EBE00F22E000,"Deadly Premonition Origins",32-bit;nvdec,playable,2024-03-25 12:47:46 -,"Dear Magi - Mahou Shounen Gakka -",,playable,2020-11-22 16:45:16 -01000D60126B6000,"Death and Taxes",,playable,2020-12-15 20:27:49 -010012B011AB2000,"Death Come True",nvdec,playable,2021-06-10 22:30:49 -0100F3B00CF32000,"Death Coming",crash,nothing,2022-02-06 07:43:03 -0100AEC013DDA000,"Death end re;Quest",,playable,2023-07-09 12:19:54 -0100423009358000,"Death Road to Canada",gpu;audio;32-bit;crash,nothing,2023-06-28 15:39:26 -010085900337E000,"Death Squared",,playable,2020-12-04 13:00:15 -0100A51013550000,"Death Tales",,playable,2020-12-17 10:55:52 -0100492011A8A000,"Death's Hangover",gpu,boots,2023-08-01 22:38:06 -01009120119B4000,"Deathsmiles I・II",,playable,2024-04-08 19:29:00 -010034F00BFC8000,"Debris Infinity",nvdec;online,playable,2021-05-28 12:14:39 -010027700FD2E000,"Decay of Logos",nvdec,playable,2022-09-13 14:42:13 -01002CC0062B8000,"DEEMO",,playable,2022-07-24 11:34:33 -01008B10132A2000,"DEEMO -Reborn-",nvdec;online-broken,playable,2022-10-17 15:18:11 -010026800FA88000,"Deep Diving Adventures",,playable,2022-09-22 16:43:37 -0100FAF009562000,"Deep Ones",services,nothing,2020-04-03 02:54:19 -0100C3E00D68E000,"Deep Sky Derelicts: Definitive Edition",,playable,2022-09-27 11:21:08 -01000A700F956000,"Deep Space Rush",,playable,2020-07-07 23:30:33 -0100961011BE6000,"DeepOne",services-horizon;Needs Update,nothing,2024-01-18 15:01:05 -01008BB00F824000,"Defenders of Ekron: Definitive Edition",,playable,2021-06-11 16:31:03 -0100CDE0136E6000,"Defentron",,playable,2022-10-17 15:47:56 -010039300BDB2000,"Defunct",,playable,2021-01-08 21:33:46 -010067900B9C4000,"Degrees of Separation",,playable,2021-01-10 13:40:04 -010071C00CBA4000,"Dei Gratia no Rashinban",crash,nothing,2021-07-13 02:25:32 -010092E00E7F4000,"Deleveled",slow,playable,2020-12-15 21:02:29 -010023800D64A000,"DELTARUNE Chapter 1&2",,playable,2023-01-22 04:47:44 -010038B01D2CA000,"Dementium: The Ward",crash,boots,2024-09-02 08:28:14 -0100AB600ACB4000,"Demetrios - The BIG Cynical Adventure",,playable,2021-06-04 12:01:01 -010099D00D1A4000,"Demolish & Build 2018",,playable,2021-06-13 15:27:26 -010084600F51C000,"Demon Pit",nvdec,playable,2022-09-19 13:35:15 -0100309016E7A000,"Demon Slayer -Kimetsu no Yaiba- The Hinokami Chronicles",UE4,playable,2024-08-08 04:51:49 -0100A2B00BD88000,"Demon's Crystals",crash;regression,nothing,2022-12-07 16:33:17 -0100E29013818000,"Demon's Rise - Lords of Chaos",,playable,2021-04-06 16:20:06 -0100C3501094E000,"Demon's Rise - War for the Deep",,playable,2020-07-29 12:26:27 -0100161011458000,"Demon's Tier+",,playable,2021-06-09 17:25:36 -0100BE800E6D8000,"DEMON'S TILT",,playable,2022-09-19 13:22:46 -010000401313A000,"Demong Hunter",,playable,2020-12-12 15:27:08 -0100BC501355A000,"Densha de go!! Hashirou Yamanote Sen",nvdec;UE4,playable,2023-11-09 07:47:58 -0100C9100FAE2000,"Depixtion",,playable,2020-10-10 18:52:37 -01000BF00B6BC000,"Deployment",slow;online-broken,playable,2022-10-17 16:23:59 -010023600C704000,"Deponia",nvdec,playable,2021-01-26 17:17:19 -0100ED700469A000,"Deru - The Art of Cooperation",,playable,2021-01-07 16:59:59 -0100D4600D0E4000,"Descenders",gpu,ingame,2020-12-10 15:22:36 -,"Desire remaster ver.",crash,boots,2021-01-17 02:34:37 -010069500DD86000,"Destiny Connect: Tick-Tock Travelers",UE4;gpu;nvdec,ingame,2020-12-16 12:20:36 -01008BB011ED6000,"Destrobots",,playable,2021-03-06 14:37:05 -01009E701356A000,"Destroy All Humans!",gpu;nvdec;UE4,ingame,2023-01-14 22:23:53 -010030600E65A000,"Detective Dolittle",,playable,2021-03-02 14:03:59 -01009C0009842000,"Detective Gallo",nvdec,playable,2022-07-24 11:51:04 -,"Detective Jinguji Saburo Prism of Eyes",,playable,2020-10-02 21:54:41 -010007500F27C000,"Detective Pikachu™ Returns",,playable,2023-10-07 10:24:59 -010031B00CF66000,"Devil Engine",,playable,2021-06-04 11:54:30 -01002F000E8F2000,"Devil Kingdom",,playable,2023-01-31 08:58:44 -0100E8000D5B8000,"Devil May Cry",nvdec,playable,2021-01-04 19:43:08 -01007CF00D5BA000,"Devil May Cry 2",nvdec,playable,2023-01-24 23:03:20 -01007B600D5BC000,"Devil May Cry 3 Special Edition",nvdec,playable,2024-07-08 12:33:23 -01003C900EFF6000,"Devil Slayer Raksasi",,playable,2022-10-26 19:42:32 -01009EA00A320000,"Devious Dungeon",,playable,2021-03-04 13:03:06 -01003F601025E000,"Dex",nvdec,playable,2020-08-12 16:48:12 -010044000CBCA000,"Dexteritrip",,playable,2021-01-06 12:51:12 -0100AFC00E06A000,"Dezatopia",online,playable,2021-06-15 21:06:11 -01001B300B9BE000,"Diablo III: Eternal Collection",online-broken;ldn-works,playable,2023-08-21 23:48:03 -0100726014352000,"Diablo® II: Resurrected™",gpu;nvdec,ingame,2023-08-18 18:42:47 -0100F73011456000,"Diabolic",,playable,2021-06-11 14:45:08 -010027400BD24000,"DIABOLIK LOVERS CHAOS LINEAGE",gpu;Needs Update,ingame,2023-06-08 02:20:44 -0100BBF011394000,"Dicey Dungeons",gpu;audio;slow,ingame,2023-08-02 20:30:12 -0100D98005E8C000,"Die for Valhalla!",,playable,2021-01-06 16:09:14 -0100BB900B5B4000,"Dies irae Amantes amentes For Nintendo Switch",32-bit;crash,nothing,2022-02-16 07:09:05 -0100A5A00DBB0000,"Dig Dog",gpu,ingame,2021-06-02 17:17:51 -01004DE011076000,"Digerati Indie Darling Bundle Vol. 3",,playable,2022-10-02 13:01:57 -010035D0121EC000,"Digerati Presents: The Dungeon Crawl Vol. 1",slow,ingame,2021-04-18 14:04:55 -010014E00DB56000,"Digimon Story Cyber Sleuth: Complete Edition",nvdec;opengl,playable,2022-09-13 15:02:37 -0100F00014254000,"Digimon World: Next Order",,playable,2023-05-09 20:41:06 -0100B6D00DA6E000,"Ding Dong XL",,playable,2020-07-14 16:13:19 -01002E4011924000,"Dininho Adventures",,playable,2020-10-03 17:25:51 -010027E0158A6000,"Dininho Space Adventure",,playable,2023-01-14 22:43:04 -0100A8A013DA4000,"Dirt Bike Insanity",,playable,2021-01-31 13:27:38 -01004CB01378A000,"Dirt Trackin Sprint Cars",nvdec;online-broken,playable,2022-10-17 16:34:56 -0100918014B02000,"Disagaea 6: Defiance of Destiny Demo",demo,playable,2022-10-26 20:02:04 -010020700E2A2000,"Disaster Report 4: Summer Memories",nvdec;UE4,playable,2022-09-27 19:41:31 -0100510004D2C000,"Disc Jam",UE4;ldn-untested;nvdec;online,playable,2021-04-08 16:40:35 -0100C81004780000,"Disco Dodgeball - REMIX",online,playable,2020-09-28 23:24:49 -01004B100AF18000,"Disgaea 1 Complete",,playable,2023-01-30 21:45:23 -0100A9800E9B4000,"Disgaea 4 Complete+",gpu;slow,playable,2020-02-18 10:54:28 -010068C00F324000,"Disgaea 4 Complete+ Demo",nvdec,playable,2022-09-13 15:21:59 -01005700031AE000,"Disgaea 5 Complete",nvdec,playable,2021-03-04 15:32:54 -0100ABC013136000,"Disgaea 6: Defiance of Destiny",deadlock,ingame,2023-04-15 00:50:32 -0100307011D80000,"Disgaea 6: Defiance of Destiny [ FG ] [ 魔界戦記ディスガイア6 ]",,playable,2021-06-08 13:20:33 -01005EE013888000,"Disgaea 6: Defiance of Destiny Demo [ 魔界戦記ディスガイア6 ]",gpu;demo,ingame,2022-12-06 15:27:59 -01000B70122A2000,"Disjunction",gpu;vulkan-backend-bug;opengl-backend-bug,ingame,2024-04-28 23:55:24 -0100A2F00EEFC000,"Disney Classic Games Collection",online-broken,playable,2022-09-13 15:44:17 -0100DA201EBF8000,"Disney Epic Mickey: Rebrushed",crash,ingame,2024-09-26 22:11:51 -0100F0401435E000,"Disney Speedstorm",services,boots,2023-11-27 02:15:32 -010012800EBAE000,"Disney TSUM TSUM FESTIVAL",crash,menus,2020-07-14 14:05:28 -01009740120FE000,"DISTRAINT 2",,playable,2020-09-03 16:08:12 -010075B004DD2000,"DISTRAINT: Deluxe Edition",,playable,2020-06-15 23:42:24 -010027400CDC6000,"Divinity: Original Sin 2 - Definitive Edition",services;crash;online-broken;regression,menus,2023-08-13 17:20:03 -01001770115C8000,"Dodo Peak",nvdec;UE4,playable,2022-10-04 16:13:05 -010077B0100DA000,"Dogurai",,playable,2020-10-04 02:40:16 -010048100D51A000,"Dokapon Up! Mugen no Roulette",gpu;Needs Update,menus,2022-12-08 19:39:10 -01005EE00BC78000,"Dokuro (ドクロ)",nvdec,playable,2020-12-17 14:47:09 -010007200AC0E000,"Don't Die, Mr Robot!",nvdec,playable,2022-09-02 18:34:38 -0100E470067A8000,"Don't Knock Twice",,playable,2024-05-08 22:37:58 -0100C4D00B608000,"Don't Sink",gpu,ingame,2021-02-26 15:41:11 -0100751007ADA000,"Don't Starve: Nintendo Switch Edition",nvdec,playable,2022-02-05 20:43:34 -010088B010DD2000,"Dongo Adventure",,playable,2022-10-04 16:22:26 -0100C1F0051B6000,"Donkey Kong Country™: Tropical Freeze",,playable,2024-08-05 16:46:10 -0100F2C00F060000,"Doodle Derby",,boots,2020-12-04 22:51:48 -0100416004C00000,"DOOM",gpu;slow;nvdec;online-broken,ingame,2024-09-23 15:40:07 -010018900DD00000,"DOOM (1993)",nvdec;online-broken,menus,2022-09-06 13:32:19 -01008CB01E52E000,"DOOM + DOOM II",opengl;ldn-untested;LAN,playable,2024-09-12 07:06:01 -010029D00E740000,"DOOM 3",crash,menus,2024-08-03 05:25:47 -01005D700E742000,"DOOM 64",nvdec;vulkan,playable,2020-10-13 23:47:28 -0100D4F00DD02000,"DOOM II (Classic)",nvdec;online,playable,2021-06-03 20:10:01 -0100B1A00D8CE000,"DOOM® Eternal",gpu;slow;nvdec;online-broken,ingame,2024-08-28 15:57:17 -01005ED00CD70000,"Door Kickers: Action Squad",online-broken;ldn-broken,playable,2022-09-13 16:28:53 -010073700E412000,"DORAEMON STORY OF SEASONS",nvdec,playable,2020-07-13 20:28:11 -0100F7300BD8E000,"Double Cross",,playable,2021-01-07 15:34:22 -0100B1500E9F2000,"Double Dragon & Kunio-kun: Retro Brawler Bundle",,playable,2020-09-01 12:48:46 -01001AD00E49A000,"DOUBLE DRAGON Ⅲ: The Sacred Stones",online,playable,2021-06-11 15:41:44 -01005B10132B2000,"Double Dragon Neon",gpu;audio;32-bit,ingame,2022-09-20 18:00:20 -01000F400C1A4000,"Double Kick Heroes",gpu,ingame,2020-10-03 14:33:59 -0100A5D00C7C0000,"Double Pug Switch",nvdec,playable,2022-10-10 10:59:35 -0100FC000EE10000,"Double Switch - 25th Anniversary Edition",nvdec,playable,2022-09-19 13:41:50 -0100B6600FE06000,"Down to Hell",gpu;nvdec,ingame,2022-09-19 14:01:26 -010093D00C726000,"Downwell",,playable,2021-04-25 20:05:24 -0100ED000D390000,"Dr Kawashima's Brain Training",services,ingame,2023-06-04 00:06:46 -01001B80099F6000,"Dracula's Legacy",nvdec,playable,2020-12-10 13:24:25 -0100566009238000,"DragoDino",gpu;nvdec,ingame,2020-08-03 20:49:16 -0100DBC00BD5A000,"Dragon Audit",crash,ingame,2021-05-16 14:24:46 -0100A250097F0000,"DRAGON BALL FighterZ",UE4;ldn-broken;nvdec;online,playable,2021-06-11 16:19:04 -010078D000F88000,"DRAGON BALL XENOVERSE 2 for Nintendo Switch",gpu;nvdec;online;ldn-untested,ingame,2022-07-24 12:31:01 -010051C0134F8000,"DRAGON BALL Z: KAKAROT + A NEW POWER AWAKENS SET",vulkan-backend-bug,playable,2024-08-28 00:03:50 -010099B00A2DC000,"Dragon Blaze for Nintendo Switch",32-bit,playable,2020-10-14 11:11:28 -010089700150E000,"Dragon Marked for Death: Advanced Attackers",ldn-untested;audout,playable,2022-03-10 06:44:34 -0100EFC00EFB2000,"DRAGON QUEST",gpu,boots,2021-11-09 03:31:32 -010008900705C000,"Dragon Quest Builders™",gpu;nvdec,ingame,2023-08-14 09:54:36 -010042000A986000,"DRAGON QUEST BUILDERS™ 2",,playable,2024-04-19 16:36:38 -0100CD3000BDC000,"Dragon Quest Heroes I + II (JP)",nvdec,playable,2021-04-08 14:27:16 -010062200EFB4000,"DRAGON QUEST II: Luminaries of the Legendary Line",,playable,2022-09-13 16:44:11 -01003E601E324000,"DRAGON QUEST III HD-2D Remake",vulkan-backend-bug;UE4;audout;mac-bug,ingame,2025-01-07 04:10:27 -010015600EFB6000,"DRAGON QUEST III: The Seeds of Salvation",gpu,boots,2021-11-09 03:38:34 -0100A77018EA0000,"DRAGON QUEST MONSTERS: The Dark Prince",,playable,2023-12-29 16:10:05 -0100217014266000,"Dragon Quest Treasures",gpu;UE4,ingame,2023-05-09 11:16:52 -0100E2E0152E4000,"Dragon Quest X Awakening Five Races Offline",nvdec;UE4,playable,2024-08-20 10:04:24 -01006C300E9F0000,"DRAGON QUEST® XI S: Echoes of an Elusive Age – Definitive Edition",UE4,playable,2021-11-27 12:27:11 -010032C00AC58000,"Dragon's Dogma: Dark Arisen",,playable,2022-07-24 12:58:33 -010027100C544000,"Dragon's Lair Trilogy",nvdec,playable,2021-01-13 22:12:07 -0100DA0006F50000,"DragonFangZ - The Rose & Dungeon of Time",,playable,2020-09-28 21:35:18 -0100F7800A434000,"Drawful 2",,ingame,2022-07-24 13:50:21 -0100B7E0102E4000,"Drawngeon: Dungeons of Ink and Paper",gpu,ingame,2022-09-19 15:41:25 -01008B20129F2000,"Dream",,playable,2020-12-15 19:55:07 -01000AA0093DC000,"Dream Alone",nvdec,playable,2021-01-27 19:41:50 -010034D00F330000,"DreamBall",UE4;crash;gpu,ingame,2020-08-05 14:45:25 -010058B00F3C0000,"Dreaming Canvas",UE4;gpu,ingame,2021-06-13 22:50:07 -0100D24013466000,"DREAMO",UE4,playable,2022-10-17 18:25:28 -0100ED200B6FC000,"DreamWorks Dragons Dawn of New Riders",nvdec,playable,2021-01-27 20:05:26 -0100236011B4C000,"DreamWorks Spirit Lucky’s Big Adventure",,playable,2022-10-27 13:30:52 -010058C00A916000,"Drone Fight",,playable,2022-07-24 14:31:56 -010052000A574000,"Drowning",,playable,2022-07-25 14:28:26 -0100652012F58000,"Drums",,playable,2020-12-17 17:21:51 -01005BC012C66000,"Duck Life Adventure",,playable,2022-10-10 11:27:03 -01007EF00CB88000,"Duke Nukem 3D: 20th Anniversary World Tour",32-bit;ldn-untested,playable,2022-08-19 22:22:40 -010068D0141F2000,"Dull Grey",,playable,2022-10-27 13:40:38 -0100926013600000,"Dungeon Nightmares 1 + 2 Collection",,playable,2022-10-17 18:54:22 -010034300F0E2000,"Dungeon of the Endless",nvdec,playable,2021-05-27 19:16:26 -0100E79009A94000,"Dungeon Stars",,playable,2021-01-18 14:28:37 -0100BE801360E000,"Dungeons & Bombs",,playable,2021-04-06 12:46:22 -0100EC30140B6000,"Dunk Lords",,playable,2024-06-26 00:07:26 -010011C00E636000,"Dusk Diver",crash;UE4,boots,2021-11-06 09:01:30 -0100B6E00A420000,"Dust: An Elysian Tail",,playable,2022-07-25 15:28:12 -0100D7E012F2E000,"Dustoff Z",,playable,2020-12-04 23:22:29 -01008C8012920000,"Dying Light: Definitive Edition",services-horizon,boots,2024-03-11 10:43:32 -01007DD00DFDE000,"Dyna Bomb",,playable,2020-06-07 13:26:55 -0100E9A00CB30000,"DYNASTY WARRIORS 8: Xtreme Legends Definitive Edition",nvdec,playable,2024-06-26 00:16:30 -010008900BC5A000,"DYSMANTLE",gpu,ingame,2024-07-15 16:24:12 -010054E01D878000,"EA SPORTS FC 25",crash,ingame,2024-09-25 21:07:50 -0100BDB01A0E6000,"EA SPORTS FC™ 24",,boots,2023-10-04 18:32:59 -01001C8016B4E000,"EA SPORTS FIFA 23 Nintendo Switch™ Legacy Edition",gpu;crash,ingame,2024-06-10 23:33:05 -01005DE00D05C000,"EA SPORTS™ FIFA 20 Nintendo Switch™ Legacy Edition",gpu;nvdec;online-broken;ldn-untested,ingame,2022-09-13 17:57:20 -010037400C7DA000,"Eagle Island Twist",,playable,2021-04-10 13:15:42 -0100B9E012992000,"Earth Defense Force World Brothers ( ま~るい地球が四角くなった!? デジボク地球防衛軍 )",UE4,playable,2022-12-07 12:59:16 -0100298014030000,"Earth Defense Force: World Brothers",UE4,playable,2022-10-27 14:13:31 -01009B7006C88000,"EARTH WARS",,playable,2021-06-05 11:18:33 -0100DFC00E472000,"Earthfall: Alien Horde",nvdec;UE4;ldn-untested,playable,2022-09-13 17:32:37 -01006E50042EA000,"EARTHLOCK",,playable,2021-06-05 11:51:02 -0100A2E00BB0C000,"EarthNight",,playable,2022-09-19 21:02:20 -0100DCE00B756000,"Earthworms",,playable,2022-07-25 16:28:55 -0100E3500BD84000,"Earthworms Demo",,playable,2021-01-05 16:57:11 -0100ECF01800C000,"Easy Come Easy Golf",online-broken;regression,playable,2024-04-04 16:15:00 -0100A9B009678000,"EAT BEAT DEADSPIKE-san",audio;Needs Update,playable,2022-12-02 19:25:29 -0100BCA016636000,"eBaseball Powerful Pro Yakyuu 2022",gpu;services-horizon;crash,nothing,2024-05-26 23:07:19 -01001F20100B8000,"Eclipse: Edge of Light",,playable,2020-08-11 23:06:29 -0100E0A0110F4000,"eCrossminton",,playable,2020-07-11 18:24:27 -0100ABE00DB4E000,"Edna & Harvey: Harvey's New Eyes",nvdec,playable,2021-01-26 14:36:08 -01004F000B716000,"Edna & Harvey: The Breakout – Anniversary Edition",crash;nvdec,ingame,2022-08-01 16:59:56 -01002550129F0000,"Effie",,playable,2022-10-27 14:36:39 -0100CC0010A46000,"Ego Protocol: Remastered",nvdec,playable,2020-12-16 20:16:35 -,"Eiga Sumikko Gurashi Tobidasu Ehon to Himitsu no Ko Game de Asobo Ehon no Sekai",,playable,2020-11-12 00:11:50 -01003AD013BD2000,"Eight Dragons",nvdec,playable,2022-10-27 14:47:28 -010020A01209C000,"El Hijo - A Wild West Tale",nvdec,playable,2021-04-19 17:44:08 -0100B5B00EF38000,"Elden: Path of the Forgotten",,playable,2020-12-15 00:33:19 -010068F012880000,"Eldrador® Creatures",slow,playable,2020-12-12 12:35:35 -010008E010012000,"ELEA: Paradigm Shift",UE4;crash,nothing,2020-10-04 19:07:43 -0100A6700AF10000,"Element",,playable,2022-07-25 17:17:16 -0100128003A24000,"Elliot Quest",,playable,2022-07-25 17:46:14 -010041A00FEC6000,"Ember",nvdec,playable,2022-09-19 21:16:11 -010071B012940000,"Embracelet",,playable,2020-12-04 23:45:00 -010017B0102A8000,"Emma: Lost in Memories",nvdec,playable,2021-01-28 16:19:10 -010068300E08E000,"Enchanted in the Moonlight - Kiryu, Chikage & Yukinojo -",gpu;nvdec,ingame,2022-11-20 16:18:45 -01007A4008486000,"Enchanting Mahjong Match",gpu,ingame,2020-04-17 22:01:31 -01004F3011F92000,"Endless Fables: Dark Moor",gpu;nvdec,ingame,2021-03-07 15:31:03 -010067B017588000,"Endless Ocean™ Luminous",services-horizon;crash,ingame,2024-05-30 02:05:57 -0100B8700BD14000,"Energy Cycle Edge",services,ingame,2021-11-30 05:02:31 -0100A8E0090B0000,"Energy Invasion",,playable,2021-01-14 21:32:26 -0100C6200A0AA000,"Enigmatis 2: The Mists of Ravenwood",crash;regression,boots,2021-06-06 15:15:30 -01009D60076F6000,"Enter the Gungeon",,playable,2022-07-25 20:28:33 -0100262009626000,"Epic Loon",nvdec,playable,2022-07-25 22:06:13 -01000FA0149B6000,"EQI",nvdec;UE4,playable,2022-10-27 16:42:32 -0100E95010058000,"EQQO",UE4;nvdec,playable,2021-06-13 23:10:51 -01000E8010A98000,"Escape First",,playable,2020-10-20 22:46:53 -010021201296A000,"Escape First 2",,playable,2021-03-24 11:59:41 -0100FEF00F0AA000,"Escape from Chernobyl",crash,boots,2022-09-19 21:36:58 -010023E013244000,"Escape from Life Inc",,playable,2021-04-19 17:34:09 -010092901203A000,"Escape From Tethys",,playable,2020-10-14 22:38:25 -0100B0F011A84000,"Escape Game Fort Boyard",,playable,2020-07-12 12:45:43 -0100F9600E746000,"ESP Ra.De. Psi",audio;slow,ingame,2024-03-07 15:05:08 -010073000FE18000,"Esports powerful pro yakyuu 2020",gpu;crash;Needs More Attention,ingame,2024-04-29 05:34:14 -01004F9012FD8000,"Estranged: The Departure",nvdec;UE4,playable,2022-10-24 10:37:58 -0100CB900B498000,"Eternum Ex",,playable,2021-01-13 20:28:32 -010092501EB2C000,"Europa (Demo)",gpu;crash;UE4,ingame,2024-04-23 10:47:12 -01007BE0160D6000,"EVE ghost enemies",gpu,ingame,2023-01-14 03:13:30 -010095E01581C000,"even if TEMPEST",gpu,ingame,2023-06-22 23:50:25 -010072C010002000,"Event Horizon: Space Defense",,playable,2020-07-31 20:31:24 -0100DCF0093EC000,"Everspace™ - Stellar Edition",UE4,playable,2022-08-14 01:16:24 -01006F900BF8E000,"Everybody 1-2-Switch!™",services;deadlock,nothing,2023-07-01 05:52:55 -010080600B53E000,"Evil Defenders",nvdec,playable,2020-09-28 17:11:00 -01006A800FA22000,"Evolution Board Game",online,playable,2021-01-20 22:37:56 -0100F2D00C7DE000,"Exception",online-broken,playable,2022-09-20 12:47:10 -0100DD30110CC000,"Exit the Gungeon",,playable,2022-09-22 17:04:43 -0100A82013976000,"Exodemon",,playable,2022-10-27 20:17:52 -0100FA800A1F4000,"EXORDER",nvdec,playable,2021-04-15 14:17:20 -01009B7010B42000,"Explosive Jake",crash,boots,2021-11-03 07:48:32 -0100EFE00A3C2000,"Eyes: The Horror Game",,playable,2021-01-20 21:59:46 -0100E3D0103CE000,"Fable of Fairy Stones",,playable,2021-05-05 21:04:54 -01004200189F4000,"Factorio",deadlock,boots,2024-06-11 19:26:16 -010073F0189B6000,"Fae Farm",,playable,2024-08-25 15:12:12 -010069100DB08000,"Faeria",nvdec;online-broken,menus,2022-10-04 16:44:41 -01008A6009758000,"Fairune Collection",,playable,2021-06-06 15:29:56 -0100F6D00B8F2000,"Fairy Fencer F™: Advent Dark Force",32-bit;crash;nvdec,ingame,2023-04-16 03:53:48 -0100CF900FA3E000,"FAIRY TAIL",nvdec,playable,2022-10-04 23:00:32 -01005A600BE60000,"Fall of Light: Darkest Edition",slow;nvdec,ingame,2024-07-24 04:19:26 -0100AA801258C000,"Fallen Legion Revenants",crash,menus,2021-11-25 08:53:20 -0100D670126F6000,"Famicom Detective Club™: The Girl Who Stands Behind",nvdec,playable,2022-10-27 20:41:40 -010033F0126F4000,"Famicom Detective Club™: The Missing Heir",nvdec,playable,2022-10-27 20:56:23 -010060200FC44000,"Family Feud®",online-broken,playable,2022-10-10 11:42:21 -0100034012606000,"Family Mysteries: Poisonous Promises",audio;crash,menus,2021-11-26 12:35:06 -010017C012726000,"Fantasy Friends",,playable,2022-10-17 19:42:39 -0100767008502000,"FANTASY HERO ~unsigned legacy~",,playable,2022-07-26 12:28:52 -0100944003820000,"Fantasy Strike",online,playable,2021-02-27 01:59:18 -01000E2012F6E000,"Fantasy Tavern Sextet -Vol.1 New World Days-",gpu;crash;Needs Update,ingame,2022-12-05 16:48:00 -01005C10136CA000,"Fantasy Tavern Sextet -Vol.2 Adventurer's Days-",gpu;slow;crash,ingame,2021-11-06 02:57:29 -010022700E7D6000,"FAR: Lone Sails",,playable,2022-09-06 16:33:05 -0100C9E00FD62000,"Farabel",,playable,2020-08-03 17:47:28 -,"Farm Expert 2019 for Nintendo Switch",,playable,2020-07-09 21:42:57 -01000E400ED98000,"Farm Mystery",nvdec,playable,2022-09-06 16:46:47 -010086B00BB50000,"Farm Together",,playable,2021-01-19 20:01:19 -0100EB600E914000,"Farming Simulator 20",nvdec,playable,2021-06-13 10:52:44 -0100D04004176000,"Farming Simulator Nintendo Switch Edition",nvdec,playable,2021-01-19 14:46:44 -0100E99019B3A000,"Fashion Dreamer",,playable,2023-11-12 06:42:52 -01009510001CA000,"FAST RMX",slow;crash;ldn-partial,ingame,2024-06-22 20:48:58 -0100BEB015604000,"FATAL FRAME: Maiden of Black Water",,playable,2023-07-05 16:01:40 -0100DAE019110000,"FATAL FRAME: Mask of the Lunar Eclipse",Incomplete,playable,2024-04-11 06:01:30 -010051400B17A000,"Fate/EXTELLA LINK",ldn-untested;nvdec,playable,2021-01-27 00:45:50 -010053E002EA2000,"Fate/EXTELLA: The Umbral Star",gpu;nvdec;online-broken;vulkan-backend-bug;opengl-backend-bug,ingame,2023-04-24 23:37:55 -0100F6200B7D4000,"fault - milestone one",nvdec,playable,2021-03-24 10:41:49 -01005AC0068F6000,"Fear Effect Sedna",nvdec,playable,2021-01-19 13:10:33 -0100F5501CE12000,"Fearmonium",crash,boots,2024-03-06 11:26:11 -0100E4300CB3E000,"Feather",,playable,2021-06-03 14:11:27 -010003B00D3A2000,"Felix The Reaper",nvdec,playable,2020-10-20 23:43:03 -0100AA3009738000,"Feudal Alloy",,playable,2021-01-14 08:48:14 -01008D900B984000,"FEZ",gpu,ingame,2021-04-18 17:10:16 -01007510040E8000,"FIA European Truck Racing Championship",nvdec,playable,2022-09-06 17:51:59 -0100F7B002340000,"FIFA 18",gpu;online-broken;ldn-untested,ingame,2022-07-26 12:43:59 -0100FFA0093E8000,"FIFA 19",gpu;nvdec;online-broken;ldn-untested,ingame,2022-07-26 13:07:07 -01000A001171A000,"FIFA 21 Nintendo Switch™ Legacy Edition",gpu;online-broken,ingame,2023-12-11 22:10:19 -0100216014472000,"FIFA 22 Nintendo Switch™ Legacy Edition",gpu,ingame,2024-03-02 14:13:48 -01006980127F0000,"Fight Crab",online-broken;ldn-untested,playable,2022-10-05 10:24:04 -010047E010B3E000,"Fight of Animals",online,playable,2020-10-15 15:08:28 -0100C7D00E730000,"Fight'N Rage",,playable,2020-06-16 23:35:19 -0100D02014048000,"FIGHTING EX LAYER ANOTHER DASH",online-broken;UE4,playable,2024-04-07 10:22:33 -0100118009C68000,"Figment",nvdec,playable,2021-01-27 19:36:05 -010095600AA36000,"Fill-a-Pix: Phil's Epic Adventure",,playable,2020-12-22 13:48:22 -0100C3A00BB76000,"Fimbul",nvdec,playable,2022-07-26 13:31:47 -0100C8200E942000,"Fin and the Ancient Mystery",nvdec,playable,2020-12-17 16:40:39 -01000EA014150000,"FINAL FANTASY",crash,nothing,2024-09-05 20:55:30 -01006B7014156000,"FINAL FANTASY II",crash,nothing,2024-04-13 19:18:04 -01006F000B056000,"FINAL FANTASY IX",audout;nvdec,playable,2021-06-05 11:35:00 -0100AA201415C000,"FINAL FANTASY V",,playable,2023-04-26 01:11:55 -0100A5B00BDC6000,"FINAL FANTASY VII",,playable,2022-12-09 17:03:30 -01008B900DC0A000,"FINAL FANTASY VIII Remastered",nvdec,playable,2023-02-15 10:57:48 -0100BC300CB48000,"FINAL FANTASY X/X-2 HD Remaster",gpu,ingame,2022-08-16 20:29:26 -0100EB100AB42000,"FINAL FANTASY XII THE ZODIAC AGE",opengl;vulkan-backend-bug,playable,2024-08-11 07:01:54 -010068F00AA78000,"FINAL FANTASY XV POCKET EDITION HD",,playable,2021-01-05 17:52:08 -0100CE4010AAC000,"FINAL FANTASY® CRYSTAL CHRONICLES™ Remastered Edition",,playable,2023-04-02 23:39:12 -01001BA00AE4E000,"Final Light, The Prison",,playable,2020-07-31 21:48:44 -0100FF100FB68000,"Finding Teddy 2 : Definitive Edition",gpu,ingame,2024-04-19 16:51:33 -0100F4E013AAE000,"Fire & Water",,playable,2020-12-15 15:43:20 -0100F15003E64000,"Fire Emblem Warriors",nvdec,playable,2023-05-10 01:53:10 -010071F0143EA000,"Fire Emblem Warriors: Three Hopes",gpu;nvdec,ingame,2024-05-01 07:07:42 -0100A6301214E000,"Fire Emblem™ Engage",amd-vendor-bug;mac-bug,playable,2024-09-01 23:37:26 -0100A12011CC8000,"Fire Emblem™: Shadow Dragon & the Blade of Light",,playable,2022-10-17 19:49:14 -010055D009F78000,"Fire Emblem™: Three Houses",online-broken,playable,2024-09-14 23:53:50 -010025C014798000,"Fire: Ungh’s Quest",nvdec,playable,2022-10-27 21:41:26 -0100434003C58000,"Firefighters – The Simulation",,playable,2021-02-19 13:32:05 -0100BB1009E50000,"Firefighters: Airport Fire Department",,playable,2021-02-15 19:17:00 -0100AC300919A000,"Firewatch",,playable,2021-06-03 10:56:38 -0100BA9012B36000,"Firework",,playable,2020-12-04 20:20:09 -0100DEB00ACE2000,"Fishing Star World Tour",,playable,2022-09-13 19:08:51 -010069800D292000,"Fishing Universe Simulator",,playable,2021-04-15 14:00:43 -0100807008868000,"Fit Boxing",,playable,2022-07-26 19:24:55 -0100E7300AAD4000,"Fitness Boxing",,playable,2021-04-14 20:33:33 -0100073011382000,"Fitness Boxing 2: Rhythm & Exercise",crash,ingame,2021-04-14 20:40:48 -0100C7E0134BE000,"Five Dates",nvdec,playable,2020-12-11 15:17:11 -0100B6200D8D2000,"Five Nights at Freddy's",,playable,2022-09-13 19:26:36 -01004EB00E43A000,"Five Nights at Freddy's 2",,playable,2023-02-08 15:48:24 -010056100E43C000,"Five Nights at Freddy's 3",,playable,2022-09-13 20:58:07 -010083800E43E000,"Five Nights at Freddy's 4",,playable,2023-08-19 07:28:03 -0100F7901118C000,"Five Nights at Freddy's: Help Wanted",UE4,playable,2022-09-29 12:40:09 -01009060193C4000,"Five Nights at Freddy's: Security Breach",gpu;crash;mac-bug,ingame,2023-04-23 22:33:28 -01003B200E440000,"Five Nights at Freddy's: Sister Location",,playable,2023-10-06 09:00:58 -010038200E088000,"Flan",crash;regression,ingame,2021-11-17 07:39:28 -01000A0004C50000,"FLASHBACK™",nvdec,playable,2020-05-14 13:57:29 -0100C53004C52000,"Flat Heroes",gpu,ingame,2022-07-26 19:37:37 -0100B54012798000,"Flatland: Prologue",,playable,2020-12-11 20:41:12 -0100307004B4C000,"Flinthook",online,playable,2021-03-25 20:42:29 -010095A004040000,"Flip Wars",services;ldn-untested,ingame,2022-05-02 15:39:18 -01009FB002B2E000,"Flipping Death",,playable,2021-02-17 16:12:30 -0100D1700ACFC000,"Flood of Light",,playable,2020-05-15 14:15:25 -0100DF9005E7A000,"Floor Kids",nvdec,playable,2024-08-18 19:38:49 -010040700E8FC000,"Florence",,playable,2020-09-05 01:22:30 -0100F5D00CD58000,"Flowlines VS",,playable,2020-12-17 17:01:53 -010039C00E2CE000,"Flux8",nvdec,playable,2020-06-19 20:55:11 -0100EDA00BBBE000,"Fly O'Clock",,playable,2020-05-17 13:39:52 -0100FC300F4A4000,"Fly Punch Boom!",online,playable,2020-06-21 12:06:11 -0100419013A8A000,"Flying Hero X",crash,menus,2021-11-17 07:46:58 -010056000BA1C000,"Fobia",,playable,2020-12-14 21:05:23 -0100F3900D0F0000,"Food Truck Tycoon",,playable,2022-10-17 20:15:55 -01007CF013152000,"Football Manager 2021 Touch",gpu,ingame,2022-10-17 20:08:23 -0100EDC01990E000,"Football Manager 2023 Touch",gpu,ingame,2023-08-01 03:40:53 -010097F0099B4000,"Football Manager Touch 2018",,playable,2022-07-26 20:17:56 -010069400B6BE000,"For The King",nvdec,playable,2021-02-15 18:51:44 -01001D200BCC4000,"Forager",crash,menus,2021-11-24 07:10:17 -0100AE001256E000,"FORECLOSED",crash;Needs More Attention;nvdec,ingame,2022-12-06 14:41:12 -010044B00E70A000,"Foregone",deadlock,ingame,2020-12-17 15:26:53 -010059E00B93C000,"Forgotton Anne",nvdec,playable,2021-02-15 18:28:07 -01008EA00405C000,"forma.8",nvdec,playable,2020-11-15 01:04:32 -010025400AECE000,"Fortnite",services-horizon,nothing,2024-04-06 18:23:25 -0100AAE01E39C000,"Fortress Challenge - Fort Boyard",nvdec;slow,playable,2020-05-15 13:22:53 -0100CA500756C000,"Fossil Hunters",nvdec,playable,2022-07-27 11:37:20 -01008A100A028000,"FOX n FORESTS",,playable,2021-02-16 14:27:49 -0100D2501001A000,"FoxyLand",,playable,2020-07-29 20:55:20 -01000AC010024000,"FoxyLand 2",,playable,2020-08-06 14:41:30 -01004200099F2000,"Fractured Minds",,playable,2022-09-13 21:21:40 -0100F1A00A5DC000,"FRAMED Collection",nvdec,playable,2022-07-27 11:48:15 -0100AC40108D8000,"Fred3ric",,playable,2021-04-15 13:30:31 -01000490067AE000,"Frederic 2: Evil Strikes Back",,playable,2020-07-23 16:44:37 -01005B1006988000,"Frederic: Resurrection of Music",nvdec,playable,2020-07-23 16:59:53 -010082B00EE50000,"Freedom Finger",nvdec,playable,2021-06-09 19:31:30 -0100EB800B614000,"Freedom Planet",,playable,2020-05-14 12:23:06 -010003F00BD48000,"Friday the 13th: Killer Puzzle",,playable,2021-01-28 01:33:38 -010092A00C4B6000,"Friday the 13th: The Game Ultimate Slasher Edition",nvdec;online-broken;UE4,playable,2022-09-06 17:33:27 -0100F200178F4000,"FRONT MISSION 1st: Remake",,playable,2023-06-09 07:44:24 -0100861012474000,"Frontline Zed",,playable,2020-10-03 12:55:59 -0100B5300B49A000,"Frost",,playable,2022-07-27 12:00:36 -010038A007AA4000,"FruitFall Crush",,playable,2020-10-20 11:33:33 -01008D800AE4A000,"FullBlast",,playable,2020-05-19 10:34:13 -010002F00CC20000,"FUN! FUN! Animal Park",,playable,2021-04-14 17:08:52 -0100A8F00B3D0000,"FunBox Party",,playable,2020-05-15 12:07:02 -0100E7B00BF24000,"Funghi Explosion",,playable,2020-11-23 14:17:41 -01008E10130F8000,"Funimation",gpu,boots,2021-04-08 13:08:17 -0100EA501033C000,"Funny Bunny Adventures",,playable,2020-08-05 13:46:56 -01000EC00AF98000,"Furi",,playable,2022-07-27 12:21:20 -0100A6B00D4EC000,"Furwind",,playable,2021-02-19 19:44:08 -0100ECE00C0C4000,"Fury Unleashed",crash;services,ingame,2020-10-18 11:52:40 -010070000ED9E000,"Fury Unleashed Demo",,playable,2020-10-08 20:09:21 -0100E1F013674000,"FUSER™",nvdec;UE4,playable,2022-10-17 20:58:32 -,"Fushigi no Gensokyo Lotus Labyrinth",Needs Update;audio;gpu;nvdec,ingame,2021-01-20 15:30:02 -01003C300B274000,"Futari de! Nyanko Daisensou",,playable,2024-01-05 22:26:52 -010055801134E000,"FUZE Player",online-broken;vulkan-backend-bug,ingame,2022-10-18 12:23:53 -0100EAD007E98000,"FUZE4 Nintendo Switch",vulkan-backend-bug,playable,2022-09-06 19:25:01 -010067600F1A0000,"FuzzBall",crash,nothing,2021-03-29 20:13:21 -,"G-MODE Archives 06 The strongest ever Julia Miyamoto",,playable,2020-10-15 13:06:26 -0100EB10108EA000,"G.I. Joe: Operation Blackout",UE4;crash,boots,2020-11-21 12:37:44 -010048600B14E000,"Gal Metal",,playable,2022-07-27 20:57:48 -010024700901A000,"Gal*Gun 2",nvdec;UE4,playable,2022-07-27 12:45:37 -0100047013378000,"Gal*Gun Returns [ ぎゃる☆がん りたーんず ]",nvdec,playable,2022-10-17 23:50:46 -0100C9800A454000,"GALAK-Z: Variant S",online-broken,boots,2022-07-29 11:59:12 -0100C62011050000,"Game Boy™ – Nintendo Switch Online",,playable,2023-03-21 12:43:48 -010012F017576000,"Game Boy™ Advance – Nintendo Switch Online",,playable,2023-02-16 20:38:15 -0100FA5010788000,"Game Builder Garage™",,ingame,2024-04-20 21:46:22 -0100AF700BCD2000,"Game Dev Story",,playable,2020-05-20 00:00:38 -01006BD00F8C0000,"Game Doraemon Nobita no Shin Kyoryu",gpu,ingame,2023-02-27 02:03:28 -01000FA00A4E4000,"Garage",,playable,2020-05-19 20:59:53 -010061E00E8BE000,"Garfield Kart Furious Racing",ldn-works;loader-allocator,playable,2022-09-13 21:40:25 -0100EA001069E000,"Gates Of Hell",slow,playable,2020-10-22 12:44:26 -010025500C098000,"Gato Roboto",,playable,2023-01-20 15:04:11 -010065E003FD8000,"Gear.Club Unlimited",,playable,2021-06-08 13:03:19 -010072900AFF0000,"Gear.Club Unlimited 2",nvdec;online-broken,playable,2022-07-29 12:52:16 -01000F000D9F0000,"Geki Yaba Runner Anniversary Edition",,playable,2021-02-19 18:59:07 -010052A00942A000,"Gekido Kintaro's Revenge",,playable,2020-10-27 12:44:05 -01009D000AF3A000,"Gelly Break Deluxe",UE4,playable,2021-03-03 16:04:02 -01001A4008192000,"Gem Smashers",nvdec,playable,2021-06-08 13:40:51 -010014901144C000,"Genetic Disaster",,playable,2020-06-19 21:41:12 -0100D7E0110B2000,"Genkai Tokki Moero Crystal H- 極限凸起 萌情水晶 H - 한계돌파 모에로크리스탈 H",32-bit,playable,2022-06-06 00:42:09 -010000300C79C000,"GensokyoDefenders",online-broken;UE4,playable,2022-07-29 13:48:12 -0100AC600EB4C000,"Gensou Rougoku no Kaleidscope",crash,menus,2021-11-24 08:45:07 -01007FC012FD4000,"Georifters",UE4;crash;nvdec,menus,2020-12-04 22:30:50 -010058F010296000,"GERRRMS",,playable,2020-08-15 11:32:52 -01006F30129F8000,"Get 10 quest",,playable,2020-08-03 12:48:39 -0100B5B00E77C000,"Get Over Here",,playable,2022-10-28 11:53:52 -0100EEB005ACC000,"Ghost 1.0",,playable,2021-02-19 20:48:47 -010063200C588000,"Ghost Blade HD",online-broken,playable,2022-09-13 21:51:21 -010057500E744000,"Ghost Grab 3000",,playable,2020-07-11 18:09:52 -010094C00E180000,"Ghost Parade",,playable,2020-07-14 00:43:54 -01004B301108C000,"Ghost Sweeper",,playable,2022-10-10 12:45:36 -010029B018432000,"Ghost Trick: Phantom Detective",,playable,2023-08-23 14:50:12 -010008A00F632000,"Ghostbusters: The Video Game Remastered",nvdec,playable,2021-09-17 07:26:57 -010090F012916000,"Ghostrunner",UE4;crash;gpu;nvdec,ingame,2020-12-17 13:01:59 -0100D6200F2BA000,"Ghosts 'n Goblins Resurrection",,playable,2023-05-09 12:40:41 -01003830092B8000,"Giana Sisters: Twisted Dreams - Owltimate Edition",,playable,2022-07-29 14:06:12 -0100D95012C0A000,"Gibbous - A Cthulhu Adventure",nvdec,playable,2022-10-10 12:57:17 -010045F00BFC2000,"GIGA WRECKER ALT.",,playable,2022-07-29 14:13:54 -01002C400E526000,"Gigantosaurus The Game",UE4,playable,2022-09-27 21:20:00 -0100C50007070000,"Ginger: Beyond the Crystal",,playable,2021-02-17 16:27:00 -01006BA013990000,"Girabox",,playable,2020-12-12 13:55:05 -01007E90116CE000,"Giraffe and Annika",UE4;crash,ingame,2020-12-04 22:41:57 -01006DD00CC96000,"Girls und Panzer Dream Tank Match DX",ldn-untested,playable,2022-09-12 16:07:11 -01005CB009E20000,"Glaive: Brick Breaker",,playable,2020-05-20 12:15:59 -0100B6F01227C000,"Glitch's Trip",,playable,2020-12-17 16:00:57 -0100EB501130E000,"Glyph",,playable,2021-02-08 19:56:51 -0100EB8011B0C000,"Gnome More War",,playable,2020-12-17 16:33:07 -010008D00CCEC000,"Gnomes Garden 2",,playable,2021-02-19 20:08:13 -010036C00D0D6000,"Gnomes Garden: Lost King",deadlock,menus,2021-11-18 11:14:03 -01008EF013A7C000,"Gnosia",,playable,2021-04-05 17:20:30 -01000C800FADC000,"Go All Out!",online-broken,playable,2022-09-21 19:16:34 -010055A0161F4000,"Go Rally",gpu,ingame,2023-08-16 21:18:23 -0100C1800A9B6000,"Go Vacation™",nvdec;ldn-works,playable,2024-05-13 19:28:53 -0100E6300F854000,"Go! Fish Go!",,playable,2020-07-27 13:52:28 -010032600C8CE000,"Goat Simulator: The GOATY",32-bit,playable,2022-07-29 21:02:33 -01001C700873E000,"GOD EATER 3",gpu;nvdec,ingame,2022-07-29 21:33:21 -0100F3D00B032000,"GOD WARS The Complete Legend",nvdec,playable,2020-05-19 14:37:50 -0100CFA0111C8000,"Gods Will Fall",,playable,2021-02-08 16:49:59 -0100D82009024000,"Goetia",,playable,2020-05-19 12:55:39 -01004D501113C000,"Going Under",deadlock;nvdec,ingame,2020-12-11 22:29:46 -0100126006EF0000,"GOKEN",,playable,2020-08-05 20:22:38 -010013800F0A4000,"Golazo!",,playable,2022-09-13 21:58:37 -01003C000D84C000,"Golem Gates",crash;nvdec;online-broken;UE4,ingame,2022-07-30 11:35:11 -0100779004172000,"Golf Story",,playable,2020-05-14 14:56:17 -01006FB00EBE0000,"Golf With Your Friends",online-broken,playable,2022-09-29 12:55:11 -0100EEC00AA6E000,"Gone Home",,playable,2022-08-01 11:14:20 -01007C2002B3C000,"GoNNER",,playable,2020-05-19 12:05:02 -0100B0500FE4E000,"Good Job!™",,playable,2021-03-02 13:15:55 -01003AD0123A2000,"Good Night, Knight",crash,nothing,2023-07-30 23:38:13 -0100F610122F6000,"Good Pizza, Great Pizza",,playable,2020-12-04 22:59:18 -010014C0100C6000,"Goosebumps Dead of Night",gpu;nvdec,ingame,2020-12-10 20:02:16 -0100B8000B190000,"Goosebumps The Game",,playable,2020-05-19 11:56:52 -0100F2A005C98000,"Gorogoa",,playable,2022-08-01 11:55:08 -01000C7003FE8000,"GORSD",,playable,2020-12-04 22:15:21 -0100E8D007E16000,"Gotcha Racing 2nd",,playable,2020-07-23 17:14:04 -01001010121DE000,"Gothic Murder: Adventure That Changes Destiny",deadlock;crash,ingame,2022-09-30 23:16:53 -01003FF009E60000,"Grab the Bottle",,playable,2020-07-14 17:06:41 -01004D10020F2000,"Graceful Explosion Machine",,playable,2020-05-19 20:36:55 -010038D00EC88000,"Grand Brix Shooter",slow,playable,2020-06-24 13:23:54 -010038100D436000,"Grand Guilds",UE4;nvdec,playable,2021-04-26 12:49:05 -0100BE600D07A000,"Grand Prix Story",,playable,2022-08-01 12:42:23 -05B1D2ABD3D30000,"Grand Theft Auto 3",services;crash;homebrew,nothing,2023-05-01 22:01:58 -0100E0600BBC8000,"GRANDIA HD Collection",crash,boots,2024-08-19 04:29:48 -010028200E132000,"Grass Cutter - Mutated Lawns",slow,ingame,2020-05-19 18:27:42 -010074E0099FA000,"Grave Danger",,playable,2020-05-18 17:41:28 -010054A013E0C000,"GraviFire",,playable,2021-04-05 17:13:32 -01002C2011828000,"Gravity Rider Zero",gpu;vulkan-backend-bug,ingame,2022-09-29 13:56:13 -0100BD800DFA6000,"Greedroid",,playable,2020-12-14 11:14:32 -010068D00AE68000,"GREEN",,playable,2022-08-01 12:54:15 -0100CBB0070EE000,"Green Game: TimeSwapper",nvdec,playable,2021-02-19 18:51:55 -0100DFE00F002000,"GREEN The Life Algorithm",,playable,2022-09-27 21:37:13 -0100DA7013792000,"Grey Skies: A War of the Worlds Story",UE4,playable,2022-10-24 11:13:59 -010031200981C000,"Grid Mania",,playable,2020-05-19 14:11:05 -0100197008B52000,"GRIDD: Retroenhanced",,playable,2020-05-20 11:32:40 -0100DC800A602000,"GRID™ Autosport",nvdec;online-broken;ldn-untested,playable,2023-03-02 20:14:45 -0100B7900B024000,"Grim Fandango Remastered",nvdec,playable,2022-08-01 13:55:58 -010078E012D80000,"Grim Legends 2: Song of the Dark Swan",nvdec,playable,2022-10-18 12:58:45 -010009F011F90000,"Grim Legends: The Forsaken Bride",nvdec,playable,2022-10-18 13:14:06 -01001E200F2F8000,"Grimshade",,playable,2022-10-02 12:44:20 -0100538012496000,"Grindstone",,playable,2023-02-08 15:54:06 -0100459009A2A000,"GRIP",nvdec;online-broken;UE4,playable,2022-08-01 15:00:22 -0100E1700C31C000,"GRIS",nvdec,playable,2021-06-03 13:33:44 -01009D7011B02000,"GRISAIA PHANTOM TRIGGER 01&02",nvdec,playable,2022-12-04 21:16:06 -01005250123B8000,"GRISAIA PHANTOM TRIGGER 03",audout,playable,2021-01-31 12:30:47 -0100D970123BA000,"GRISAIA PHANTOM TRIGGER 04",audout,playable,2021-01-31 12:40:37 -01002330123BC000,"GRISAIA PHANTOM TRIGGER 05",audout;nvdec,playable,2021-01-31 12:49:59 -0100CAF013AE6000,"GRISAIA PHANTOM TRIGGER 5.5",audout;nvdec,playable,2021-01-31 12:59:44 -010091300FFA0000,"Grizzland",gpu,ingame,2024-07-11 16:28:34 -0100EB500D92E000,"GROOVE COASTER WAI WAI PARTY!!!!",nvdec;ldn-broken,playable,2021-11-06 14:54:27 -01007E100456C000,"Guacamelee! 2",,playable,2020-05-15 14:56:59 -0100BAE00B470000,"Guacamelee! Super Turbo Championship Edition",,playable,2020-05-13 23:44:18 -010089900C9FA000,"Guess the Character",,playable,2020-05-20 13:14:19 -01005DC00D80C000,"Guess the word",,playable,2020-07-26 21:34:25 -01006F80082E4000,"GUILTY GEAR XX ACCENT CORE PLUS R",nvdec,playable,2021-01-13 09:28:33 -01003C6008940000,"GUNBIRD for Nintendo Switch",32-bit,playable,2021-06-04 19:16:01 -0100BCB00AE98000,"GUNBIRD2 for Nintendo Switch",,playable,2020-10-10 14:41:16 -,"Gunka o haita neko",gpu;nvdec,ingame,2020-08-25 12:37:56 -010061000D318000,"Gunman Clive HD Collection",,playable,2020-10-09 12:17:35 -01006D4003BCE000,"Guns, Gore and Cannoli 2",online,playable,2021-01-06 18:43:59 -01008C800E654000,"Gunvolt Chronicles Luminous Avenger iX - Retail Version",,playable,2020-06-16 22:47:07 -0100763015C2E000,"Gunvolt Chronicles: Luminous Avenger iX 2",crash;Needs Update,nothing,2022-04-29 15:34:34 -01002C8018554000,"Gurimugurimoa OnceMore Demo",,playable,2022-07-29 22:07:31 -0100AC601DCA8000,"GYLT",crash,ingame,2024-03-18 20:16:51 -0100822012D76000,"HAAK",gpu,ingame,2023-02-19 14:31:05 -01007E100EFA8000,"Habroxia",,playable,2020-06-16 23:04:42 -0100535012974000,"Hades",vulkan,playable,2022-10-05 10:45:21 -0100618010D76000,"Hakoniwa Explorer Plus",slow,ingame,2021-02-19 16:56:19 -0100E0D00C336000,"Halloween Pinball",,playable,2021-01-12 16:00:46 -01006FF014152000,"Hamidashi Creative",gpu,ingame,2021-12-19 15:30:51 -01003B9007E86000,"Hammerwatch",online-broken;ldn-broken,playable,2022-08-01 16:28:46 -01003620068EA000,"Hand of Fate 2",,playable,2022-08-01 15:44:16 -0100973011358000,"Hang The Kings",,playable,2020-07-28 22:56:59 -010066C018E50000,"Happy Animals Mini Golf",gpu,ingame,2022-12-04 19:24:28 -0100ECE00D13E000,"Hard West",regression,nothing,2022-02-09 07:45:56 -0100D55011D60000,"Hardcore Maze Cube",,playable,2020-12-04 20:01:24 -01002F0011DD4000,"HARDCORE MECHA",slow,playable,2020-11-01 15:06:33 -01000C90117FA000,"HardCube",,playable,2021-05-05 18:33:03 -0100BB600C096000,"Hardway Party",,playable,2020-07-26 12:35:07 -0100D0500AD30000,"Harvest Life",,playable,2022-08-01 16:51:45 -010016B010FDE000,"Harvest Moon®: One World",,playable,2023-05-26 09:17:19 -0100A280187BC000,"Harvestella",UE4;vulkan-backend-bug;mac-bug,playable,2024-02-13 07:04:11 -0100E29001298000,"Has-Been Heroes",,playable,2021-01-13 13:31:48 -01001CC00FA1A000,"Hatsune Miku: Project DIVA Mega Mix",audio;online-broken,playable,2024-01-07 23:12:57 -01009E6014F18000,"Haunted Dawn: The Zombie Apocalypse",,playable,2022-10-28 12:31:51 -010023F008204000,"Haunted Dungeons:Hyakki Castle",,playable,2020-08-12 14:21:48 -0100E2600DBAA000,"Haven",,playable,2021-03-24 11:52:41 -0100EA900FB2C000,"Hayfever",loader-allocator,playable,2022-09-22 17:35:41 -0100EFE00E1DC000,"Headliner: NoviNews",online,playable,2021-03-01 11:36:00 -0100A8200C372000,"Headsnatchers",UE4;crash,menus,2020-07-14 13:29:14 -010067400EA5C000,"Headspun",,playable,2020-07-31 19:46:47 -0100D12008EE4000,"Heart&Slash",,playable,2021-01-13 20:56:32 -010059100D928000,"Heaven Dust",,playable,2020-05-17 14:02:41 -0100FD901000C000,"Heaven's Vault",crash,ingame,2021-02-08 18:22:01 -0100B9C012B66000,"Helheim Hassle",,playable,2020-10-14 11:38:36 -0100E4300C278000,"Hell is Other Demons",,playable,2021-01-13 13:23:02 -01000938017E5C00,"Hell Pie0",nvdec;UE4,playable,2022-11-03 16:48:46 -0100A4600E27A000,"Hell Warders",online,playable,2021-02-27 02:31:03 -010044500CF8E000,"Hellblade: Senua's Sacrifice",gpu;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-01 19:36:50 -010087D0084A8000,"Hello Kitty Kruisers With Sanrio Friends",nvdec,playable,2021-06-04 19:08:46 -0100FAA00B168000,"Hello Neighbor",UE4,playable,2022-08-01 21:32:23 -010092B00C4F0000,"Hello Neighbor Hide and Seek",UE4;gpu;slow,ingame,2020-10-24 10:59:57 -010024600C794000,"Hellpoint",,menus,2021-11-26 13:24:20 -0100BEA00E63A000,"Hero Express",nvdec,playable,2020-08-06 13:23:43 -010077D01094C000,"Hero-U: Rogue to Redemption",nvdec,playable,2021-03-24 11:40:01 -0100D2B00BC54000,"Heroes of Hammerwatch - Ultimate Edition",,playable,2022-08-01 18:30:21 -01001B70080F0000,"HEROINE ANTHEM ZERO episode 1",vulkan-backend-bug,playable,2022-08-01 22:02:36 -010057300B0DC000,"Heroki",gpu,ingame,2023-07-30 19:30:01 -0100C2700E338000,"Heroland",,playable,2020-08-05 15:35:39 -01007AC00E012000,"HexaGravity",,playable,2021-05-28 13:47:48 -01004E800F03C000,"Hidden",slow,ingame,2022-10-05 10:56:53 -0100F6A00A684000,"Higurashi no Naku Koro ni Hō",audio,ingame,2021-09-18 14:40:28 -0100F8D0129F4000,"Himehibi 1 gakki - Princess Days",crash,nothing,2021-11-03 08:34:19 -0100F3D008436000,"Hiragana Pixel Party",,playable,2021-01-14 08:36:50 -01004990132AC000,"HITMAN 3 - Cloud Version",Needs Update;crash;services,nothing,2021-04-18 22:35:07 -010083A018262000,"Hitman: Blood Money — Reprisal",deadlock,ingame,2024-09-28 16:28:50 -01004B100A5CC000,"Hob: The Definitive Edition",,playable,2021-01-13 09:39:19 -0100F7300ED2C000,"Hoggy2",,playable,2022-10-10 13:53:35 -0100F7E00C70E000,"Hogwarts Legacy",slow,ingame,2024-09-03 19:53:58 -0100633007D48000,"Hollow Knight",nvdec,playable,2023-01-16 15:44:56 -0100F2100061E800,"Hollow0",UE4;gpu,ingame,2021-03-03 23:42:56 -0100342009E16000,"Holy Potatoes! What The Hell?!",,playable,2020-07-03 10:48:56 -010071B00C904000,"HoPiKo",,playable,2021-01-13 20:12:38 -010087800EE5A000,"Hopping girl KOHANE Jumping Kingdom: Princess of the Black Rabbit",crash,boots,2023-02-19 00:51:21 -010086D011EB8000,"Horace",,playable,2022-10-10 14:03:50 -0100001019F6E000,"Horizon Chase 2",deadlock;slow;crash;UE4,ingame,2024-08-19 04:24:06 -01009EA00B714000,"Horizon Chase Turbo",,playable,2021-02-19 19:40:56 -0100E4200FA82000,"Horror Pinball Bundle",crash,menus,2022-09-13 22:15:34 -0100017007980000,"Hotel Transylvania 3 Monsters Overboard",nvdec,playable,2021-01-27 18:55:31 -0100D0E00E51E000,"Hotline Miami Collection",nvdec,playable,2022-09-09 16:41:19 -0100BDE008218000,"Hotshot Racing",gpu;nvdec;online-broken;ldn-untested;vulkan-backend-bug,ingame,2024-02-04 21:31:17 -0100CAE00EB02000,"House Flipper",,playable,2021-06-16 18:28:32 -0100F6800910A000,"Hover",online-broken,playable,2022-09-20 12:54:46 -0100A66003384000,"Hulu",online-broken,boots,2022-12-09 10:05:00 -0100701001D92000,"Human Resource Machine",32-bit,playable,2020-12-17 21:47:09 -01000CA004DCA000,"Human: Fall Flat",,playable,2021-01-13 18:36:05 -0100E1A00AF40000,"Hungry Shark® World",,playable,2021-01-13 18:26:08 -0100EBA004726000,"Huntdown",,playable,2021-04-05 16:59:54 -010068000CAC0000,"Hunter's Legacy: Purrfect Edition",,playable,2022-08-02 10:33:31 -0100C460040EA000,"Hunting Simulator",UE4,playable,2022-08-02 10:54:08 -010061F010C3A000,"Hunting Simulator 2",UE4,playable,2022-10-10 14:25:51 -0100B3300B4AA000,"Hyper Jam",UE4;crash,boots,2020-12-15 22:52:11 -01003B200B372000,"Hyper Light Drifter - Special Edition",vulkan-backend-bug,playable,2023-01-13 15:44:48 -01006C500A29C000,"HyperBrawl Tournament",crash;services,boots,2020-12-04 23:03:27 -0100A8B00F0B4000,"HYPERCHARGE Unboxed",nvdec;online-broken;UE4;ldn-untested,playable,2022-09-27 21:52:39 -010061400ED90000,"HyperParasite",nvdec;UE4,playable,2022-09-27 22:05:44 -0100959010466000,"Hypnospace Outlaw",nvdec,ingame,2023-08-02 22:46:49 -01002B00111A2000,"Hyrule Warriors: Age of Calamity",gpu;deadlock;slow;crash;nvdec;amd-vendor-bug,ingame,2024-02-28 00:47:00 -0100A2C01320E000,"Hyrule Warriors: Age of Calamity - Demo Version",slow,playable,2022-10-10 17:37:41 -0100AE00096EA000,"Hyrule Warriors: Definitive Edition",services-horizon;nvdec,ingame,2024-06-16 10:34:05 -0100849000BDA000,"I Am Setsuna",,playable,2021-11-28 11:06:11 -01001860140B0000,"I Saw Black Clouds",nvdec,playable,2021-04-19 17:22:16 -0100429006A06000,"I, Zombie",,playable,2021-01-13 14:53:44 -01004E5007E92000,"Ice Age Scrat's Nutty Adventure!",nvdec,playable,2022-09-13 22:22:29 -010053700A25A000,"Ice Cream Surfer",,playable,2020-07-29 12:04:07 -0100954014718000,"Ice Station Z",crash,menus,2021-11-21 20:02:15 -0100BE9007E7E000,"ICEY",,playable,2021-01-14 16:16:04 -0100BC60099FE000,"Iconoclasts",,playable,2021-08-30 21:11:04 -01001E700EB28000,"Idle Champions of the Forgotten Realms",online,boots,2020-12-17 18:24:57 -01002EC014BCA000,"IdolDays",gpu;crash,ingame,2021-12-19 15:31:28 -01006550129C6000,"If Found...",,playable,2020-12-11 13:43:14 -01001AC00ED72000,"If My Heart Had Wings",,playable,2022-09-29 14:54:57 -01009F20086A0000,"Ikaruga",,playable,2023-04-06 15:00:02 -010040900AF46000,"Ikenfell",,playable,2021-06-16 17:18:44 -01007BC00E55A000,"Immortal Planet",,playable,2022-09-20 13:40:43 -010079501025C000,"Immortal Realms: Vampire Wars",nvdec,playable,2021-06-17 17:41:46 -01000F400435A000,"Immortal Redneck",nvdec,playable,2021-01-27 18:36:28 -01004A600EC0A000,"Immortals Fenyx Rising™",gpu;crash,menus,2023-02-24 16:19:55 -0100737003190000,"IMPLOSION",nvdec,playable,2021-12-12 03:52:13 -0100A760129A0000,"In rays of the Light",,playable,2021-04-07 15:18:07 -0100A2101107C000,"Indie Puzzle Bundle Vol 1",,playable,2022-09-27 22:23:21 -010002A00CD68000,"Indiecalypse",nvdec,playable,2020-06-11 20:19:09 -01001D3003FDE000,"Indivisible",nvdec,playable,2022-09-29 15:20:57 -01002BD00F626000,"Inertial Drift",online-broken,playable,2022-10-11 12:22:19 -0100D4300A4CA000,"Infernium",UE4;regression,nothing,2021-01-13 16:36:07 -010039C001296000,"Infinite Minigolf",online,playable,2020-09-29 12:26:25 -01001CB00EFD6000,"Infliction: Extended Cut",nvdec;UE4,playable,2022-10-02 13:15:55 -0100F1401161E000,"INMOST",,playable,2022-10-05 11:27:40 -0100F200049C8000,"InnerSpace",,playable,2021-01-13 19:36:14 -0100D2D009028000,"INSIDE",,playable,2021-12-25 20:24:56 -0100EC7012D34000,"Inside Grass: A little adventure",,playable,2020-10-15 15:26:27 -010099700D750000,"Instant Sports",,playable,2022-09-09 12:59:40 -010099A011A46000,"Instant Sports Summer Games",gpu,menus,2020-09-02 13:39:28 -010031B0145B8000,"INSTANT SPORTS TENNIS",,playable,2022-10-28 16:42:17 -010041501005E000,"Interrogation: You will be deceived",,playable,2022-10-05 11:40:10 -01000F700DECE000,"Into the Dead 2",nvdec,playable,2022-09-14 12:36:14 -01001D0003B96000,"INVERSUS Deluxe",online-broken,playable,2022-08-02 14:35:36 -0100C5B00FADE000,"Invisible Fist",,playable,2020-08-08 13:25:52 -010031B00C48C000,"Invisible, Inc. Nintendo Switch Edition",crash,nothing,2021-01-29 16:28:13 -01005F400E644000,"Invisigun Reloaded",gpu;online,ingame,2021-06-10 12:13:24 -010041C00D086000,"Ion Fury",vulkan-backend-bug,ingame,2022-08-07 08:27:51 -010095C016C14000,"Iridium",,playable,2022-08-05 23:19:53 -0100AD300B786000,"Iris School of Wizardry -Vinculum Hearts-",,playable,2022-12-05 13:11:15 -0100945012168000,"Iris.Fall",nvdec,playable,2022-10-18 13:40:22 -01005270118D6000,"Iron Wings",slow,ingame,2022-08-07 08:32:57 -01004DB003E6A000,"IRONCAST",,playable,2021-01-13 13:54:29 -0100E5700CD56000,"Irony Curtain: From Matryoshka with Love",,playable,2021-06-04 20:12:37 -010063E0104BE000,"Is It Wrong to Try to Pick Up Girls in a Dungeon? Familia Myth Infinite Combate",,playable,2020-08-31 13:52:21 -0100F06013710000,"ISLAND",,playable,2021-05-06 15:11:47 -010077900440A000,"Island Flight Simulator",,playable,2021-06-04 19:42:46 -0100A2600FCA0000,"Island Saver",nvdec,playable,2020-10-23 22:07:02 -010065200D192000,"Isoland",,playable,2020-07-26 13:48:16 -0100F5600D194000,"Isoland 2 - Ashes of Time",,playable,2020-07-26 14:29:05 -010001F0145A8000,"Isolomus",services,boots,2021-11-03 07:48:21 -010068700C70A000,"ITTA",,playable,2021-06-07 03:15:52 -01004070022F0000,"Ittle Dew 2+",,playable,2020-11-17 11:44:32 -0100DEB00F12A000,"IxSHE Tell",nvdec,playable,2022-12-02 18:00:42 -0100D8E00C874000,"izneo",online-broken,menus,2022-08-06 15:56:23 -0100CD5008D9E000,"James Pond Codename Robocod",,playable,2021-01-13 09:48:45 -01005F4010AF0000,"Japanese Rail Sim: Journey to Kyoto",nvdec,playable,2020-07-29 17:14:21 -010002D00EDD0000,"JDM Racing",,playable,2020-08-03 17:02:37 -0100C2700AEB8000,"Jenny LeClue - Detectivu",crash,nothing,2020-12-15 21:07:07 -01006E400AE2A000,"Jeopardy!®",audout;nvdec;online,playable,2021-02-22 13:53:46 -0100E4900D266000,"Jet Kave Adventure",nvdec,playable,2022-09-09 14:50:39 -0100F3500C70C000,"Jet Lancer",gpu,ingame,2021-02-15 18:15:47 -0100A5A00AF26000,"Jettomero: Hero of the Universe",,playable,2022-08-02 14:46:43 -01008330134DA000,"Jiffy",gpu;opengl,ingame,2024-02-03 23:11:24 -01001F5006DF6000,"Jim is Moving Out!",deadlock,ingame,2020-06-03 22:05:19 -0100F4D00D8BE000,"Jinrui no Ninasama he",crash,ingame,2023-03-07 02:04:17 -010038D011F08000,"Jisei: The First Case HD",audio,playable,2022-10-05 11:43:33 -01007CE00C960000,"Job the Leprechaun",,playable,2020-06-05 12:10:06 -01007090104EC000,"John Wick Hex",,playable,2022-08-07 08:29:12 -01006E4003832000,"Johnny Turbo's Arcade: Bad Dudes",,playable,2020-12-10 12:30:56 -010069B002CDE000,"Johnny Turbo's Arcade: Gate Of Doom",,playable,2022-07-29 12:17:50 -010080D002CC6000,"Johnny Turbo's Arcade: Two Crude Dudes",,playable,2022-08-02 20:29:50 -0100D230069CC000,"Johnny Turbo's Arcade: Wizard Fire",,playable,2022-08-02 20:39:15 -01008120128C2000,"JoJos Bizarre Adventure All-Star Battle R",,playable,2022-12-03 10:45:10 -01008B60117EC000,"Journey to the Savage Planet",nvdec;UE4;ldn-untested,playable,2022-10-02 18:48:12 -0100C7600F654000,"Juicy Realm",,playable,2023-02-21 19:16:20 -0100B4D00C76E000,"JUMANJI: The Video Game",UE4;crash,boots,2020-07-12 13:52:25 -0100183010F12000,"JUMP FORCE - Deluxe Edition",nvdec;online-broken;UE4,playable,2023-10-01 15:56:05 -01003D601014A000,"Jump King",,playable,2020-06-09 10:12:39 -0100B9C012706000,"Jump Rope Challenge",services;crash;Needs Update,boots,2023-02-27 01:24:28 -0100D87009954000,"Jumping Joe & Friends",,playable,2021-01-13 17:09:42 -010069800D2B4000,"JUNK PLANET",,playable,2020-11-09 12:38:33 -0100CE100A826000,"Jurassic Pinball",,playable,2021-06-04 19:02:37 -010050A011344000,"Jurassic World Evolution: Complete Edition",cpu;crash,menus,2023-08-04 18:06:54 -0100BCE000598000,"Just Dance 2017®",online,playable,2021-03-05 09:46:01 -0100BEE017FC0000,"Just Dance 2023",,nothing,2023-06-05 16:44:54 -010075600AE96000,"Just Dance® 2019",gpu;online,ingame,2021-02-27 17:21:27 -0100DDB00DB38000,"Just Dance® 2020",,playable,2022-01-24 13:31:57 -0100EA6014BB8000,"Just Dance® 2022",gpu;services;crash;Needs Update,ingame,2022-10-28 11:01:53 -0100AC600CF0A000,"Just Die Already",UE4,playable,2022-12-13 13:37:50 -01002C301033E000,"Just Glide",,playable,2020-08-07 17:38:10 -0100830008426000,"Just Shapes & Beats",ldn-untested;nvdec,playable,2021-02-09 12:18:36 -010035A0044E8000,"JYDGE",,playable,2022-08-02 21:20:13 -0100D58012FC2000,"Kagamihara/Justice",crash,nothing,2021-06-21 16:41:29 -0100D5F00EC52000,"Kairobotica",,playable,2021-05-06 12:17:56 -0100BDC00A664000,"KAMEN RIDER CLIMAX SCRAMBLE",nvdec;ldn-untested,playable,2024-07-03 08:51:11 -0100A9801180E000,"KAMEN RIDER memory of heroez / Premium Sound Edition",,playable,2022-12-06 03:14:26 -010085300314E000,"KAMIKO",,playable,2020-05-13 12:48:57 -,"Kangokuto Mary Skelter Finale",audio;crash,ingame,2021-01-09 22:39:28 -01007FD00DB20000,"Katakoi Contrast - collection of branch -",nvdec,playable,2022-12-09 09:41:26 -0100D7000C2C6000,"Katamari Damacy REROLL",,playable,2022-08-02 21:35:05 -0100F9800EDFA000,"KATANA KAMI: A Way of the Samurai Story",slow,playable,2022-04-09 10:40:16 -010029600D56A000,"Katana ZERO",,playable,2022-08-26 08:09:09 -010038B00F142000,"Kaze and the Wild Masks",,playable,2021-04-19 17:11:03 -0100D7C01115E000,"Keen: One Girl Army",,playable,2020-12-14 23:19:52 -01008D400A584000,"Keep Talking and Nobody Explodes",,playable,2021-02-15 18:05:21 -01004B100BDA2000,"KEMONO FRIENDS PICROSS",,playable,2023-02-08 15:54:34 -0100A8200B15C000,"Kentucky Robo Chicken",,playable,2020-05-12 20:54:17 -0100327005C94000,"Kentucky Route Zero: TV Edition",,playable,2024-04-09 23:22:46 -0100DA200A09A000,"Kero Blaster",,playable,2020-05-12 20:42:52 -0100F680116A2000,"Kholat",UE4;nvdec,playable,2021-06-17 11:52:48 -0100C0A004C2C000,"Kid Tripp",crash,nothing,2020-10-15 07:41:23 -0100FB400D832000,"KILL la KILL -IF",,playable,2020-06-09 14:47:08 -010011B00910C000,"Kill The Bad Guy",,playable,2020-05-12 22:16:10 -0100F2900B3E2000,"Killer Queen Black",ldn-untested;online,playable,2021-04-08 12:46:18 -,"Kin'iro no Corda Octave",,playable,2020-09-22 13:23:12 -010089000F0E8000,"Kine",UE4,playable,2022-09-14 14:28:37 -0100E6B00FFBA000,"King Lucas",,playable,2022-09-21 19:43:23 -0100B1300783E000,"King Oddball",,playable,2020-05-13 13:47:57 -01008D80148C8000,"King of Seas",nvdec;UE4,playable,2022-10-28 18:29:41 -0100515014A94000,"King of Seas Demo",nvdec;UE4,playable,2022-10-28 18:09:31 -01005D2011EA8000,"KINGDOM HEARTS Melody of Memory",crash;nvdec,ingame,2021-03-03 17:34:12 -0100A280121F6000,"Kingdom Rush",32-bit;crash;Needs More Attention,nothing,2022-10-05 12:34:00 -01005EF003FF2000,"Kingdom Two Crowns",,playable,2020-05-16 19:36:21 -0100BD9004AB6000,"Kingdom: New Lands",,playable,2022-08-02 21:48:50 -0100EF50132BE000,"Kingdoms of Amalur: Re-Reckoning",,playable,2023-08-10 13:05:08 -010091201605A000,"Kirby and the Forgotten Land (Demo version)",demo,playable,2022-08-21 21:03:01 -0100227010460000,"Kirby Fighters™ 2",ldn-works;online,playable,2021-06-17 13:06:39 -0100A8E016236000,"Kirby’s Dream Buffet™",crash;online-broken;Needs Update;ldn-works,ingame,2024-03-03 17:04:44 -010091D01A57E000,"Kirby’s Return to Dream Land Deluxe - Demo",demo,playable,2023-02-18 17:21:55 -01006B601380E000,"Kirby’s Return to Dream Land™ Deluxe",,playable,2024-05-16 19:58:04 -01004D300C5AE000,"Kirby™ and the Forgotten Land",gpu,ingame,2024-03-11 17:11:21 -01007E3006DDA000,"Kirby™ Star Allies",nvdec,playable,2023-11-15 17:06:19 -0100F3A00F4CA000,"Kissed by the Baddest Bidder",gpu;nvdec,ingame,2022-12-04 20:57:11 -01000C900A136000,"Kitten Squad",nvdec,playable,2022-08-03 12:01:59 -010079D00C8AE000,"Klondike Solitaire",,playable,2020-12-13 16:17:27 -0100A6800DE70000,"Knight Squad",,playable,2020-08-09 16:54:51 -010024B00E1D6000,"Knight Squad 2",nvdec;online-broken,playable,2022-10-28 18:38:09 -0100D51006AAC000,"Knight Terrors",,playable,2020-05-13 13:09:22 -01005F8010D98000,"Knightin'+",,playable,2020-08-31 18:18:21 -010004400B22A000,"Knights of Pen & Paper 2 Deluxiest Edition",,playable,2020-05-13 14:07:00 -0100D3F008746000,"Knights of Pen and Paper +1 Deluxier Edition",,playable,2020-05-11 21:46:32 -010001A00A1F6000,"Knock-Knock",nvdec,playable,2021-02-01 20:03:19 -01009EF00DDB4000,"Knockout City™",services;online-broken,boots,2022-12-09 09:48:58 -0100C57019BA2000,"Koa and the Five Pirates of Mara",gpu,ingame,2024-07-11 16:14:44 -01001E500401C000,"Koi DX",,playable,2020-05-11 21:37:51 -,"Koi no Hanasaku Hyakkaen",32-bit;gpu;nvdec,ingame,2020-10-03 14:17:10 -01005D200C9AA000,"Koloro",,playable,2022-08-03 12:34:02 -0100464009294000,"Kona",,playable,2022-08-03 12:48:19 -010016C011AAA000,"Kono Subarashii Sekai ni Shukufuku o Kono Yokubo no Isho ni Choai o",,playable,2023-04-26 09:51:08 -010088500D5EE000,"KORAL",UE4;crash;gpu,menus,2020-11-16 12:41:26 -0100EC8004762000,"KORG Gadget for Nintendo Switch",,playable,2020-05-13 13:57:24 -010046600CCA4000,"Kotodama: The 7 Mysteries of Fujisawa",audout,playable,2021-02-01 20:28:37 -010022801242C000,"KukkoroDays",crash,menus,2021-11-25 08:52:56 -010035A00DF62000,"KUNAI",nvdec,playable,2022-09-20 13:48:34 -010060400ADD2000,"Kunio-Kun: The World Classics Collection",online,playable,2021-01-29 20:21:46 -010037500F282000,"KUUKIYOMI 2: Consider It More! - New Era",crash;Needs Update,nothing,2021-11-02 09:34:40 -0100894011F62000,"Kwaidan ~Azuma manor story~",,playable,2022-10-05 12:50:44 -0100830004FB6000,"L.A. Noire",,playable,2022-08-03 16:49:35 -0100732009CAE000,"L.F.O. -Lost Future Omega-",UE4;deadlock,boots,2020-10-16 12:16:44 -0100F2B0123AE000,"L.O.L. Surprise! Remix: We Rule The World",,playable,2022-10-11 22:48:03 -010026000F662800,"LA-MULANA",gpu,ingame,2022-08-12 01:06:21 -0100E5D00F4AE000,"LA-MULANA 1 & 2",,playable,2022-09-22 17:56:36 -010038000F644000,"LA-MULANA 2",,playable,2022-09-03 13:45:57 -010058500B3E0000,"Labyrinth of Refrain: Coven of Dusk",,playable,2021-02-15 17:38:48 -010022D0089AE000,"Labyrinth of the Witch",,playable,2020-11-01 14:42:37 -0100BAB00E8C0000,"Langrisser I & II",,playable,2021-02-19 15:46:10 -0100E7200B272000,"Lanota",,playable,2019-09-04 01:58:14 -01005E000D3D8000,"Lapis x Labyrinth",,playable,2021-02-01 18:58:08 -0100AFE00E882000,"Laraan",,playable,2020-12-16 12:45:48 -0100DA700879C000,"Last Day of June",nvdec,playable,2021-06-08 11:35:32 -01009E100BDD6000,"LASTFIGHT",,playable,2022-09-20 13:54:55 -0100055007B86000,"Late Shift",nvdec,playable,2021-02-01 18:43:58 -01004EB00DACE000,"Later Daters Part One",,playable,2020-07-29 16:35:45 -01001730144DA000,"Layers of Fear 2",nvdec;UE4,playable,2022-10-28 18:49:52 -0100BF5006A7C000,"Layers of Fear: Legacy",nvdec,playable,2021-02-15 16:30:41 -0100CE500D226000,"Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy - Deluxe Edition",nvdec;opengl,playable,2022-09-14 15:01:57 -0100FDB00AA80000,"Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy DX+0",gpu;nvdec;opengl,ingame,2022-09-14 15:15:55 -01009C100390E000,"League of Evil",online,playable,2021-06-08 11:23:27 -01002E900CD6E000,"Left-Right : The Mansion",,playable,2020-05-13 13:02:12 -010079901C898000,"Legacy of Kain™ Soul Reaver 1&2 Remastered",,playable,2025-01-07 05:50:01 -01002DB007A96000,"Legend of Kay Anniversary",nvdec,playable,2021-01-29 18:38:29 -0100ECC00EF3C000,"Legend of the Skyfish",,playable,2020-06-24 13:04:22 -01007E900DFB6000,"Legend of the Tetrarchs",deadlock,ingame,2020-07-10 07:54:03 -0100A73006E74000,"Legendary Eleven",,playable,2021-06-08 12:09:03 -0100A7700B46C000,"Legendary Fishing",online,playable,2021-04-14 15:08:46 -0100739018020000,"LEGO® 2K Drive",gpu;ldn-works,ingame,2024-04-09 02:05:12 -01003A30012C0000,"LEGO® CITY Undercover",nvdec,playable,2024-09-30 08:44:27 -010070D009FEC000,"LEGO® DC Super-Villains",,playable,2021-05-27 18:10:37 -010052A00B5D2000,"LEGO® Harry Potter™ Collection",crash,ingame,2024-01-31 10:28:07 -010073C01AF34000,"LEGO® Horizon Adventures™",vulkan-backend-bug;opengl-backend-bug;UE4,ingame,2025-01-07 04:24:56 -01001C100E772000,"LEGO® Jurassic World",,playable,2021-05-27 17:00:20 -0100D3A00409E000,"LEGO® Marvel Super Heroes 2",crash,nothing,2023-03-02 17:12:33 -01006F600FFC8000,"LEGO® Marvel™ Super Heroes",,playable,2024-09-10 19:02:19 -01007FC00206E000,"LEGO® NINJAGO® Movie Video Game",crash,nothing,2022-08-22 19:12:53 -010042D00D900000,"LEGO® Star Wars™: The Skywalker Saga",gpu;slow,ingame,2024-04-13 20:08:46 -0100A01006E00000,"LEGO® The Incredibles",crash,nothing,2022-08-03 18:36:59 -0100838002AEA000,"LEGO® Worlds",crash;slow,ingame,2020-07-17 13:35:39 -0100E7500BF84000,"LEGRAND LEGACY: Tale of the Fatebounds",nvdec,playable,2020-07-26 12:27:36 -0100A8E00CAA0000,"Leisure Suit Larry - Wet Dreams Don't Dry",,playable,2022-08-03 19:51:44 -010031A0135CA000,"Leisure Suit Larry - Wet Dreams Dry Twice",,playable,2022-10-28 19:00:57 -01003AB00983C000,"Lethal League Blaze",online,playable,2021-01-29 20:13:31 -01008C300648E000,"Letter Quest Remastered",,playable,2020-05-11 21:30:34 -0100CE301678E800,"Letters - a written adventure",gpu,ingame,2023-02-21 20:12:38 -01009A200BE42000,"Levelhead",online,ingame,2020-10-18 11:44:51 -0100C960041DC000,"Levels+ : Addictive Puzzle Game",,playable,2020-05-12 13:51:39 -0100C8000F146000,"Liberated",gpu;nvdec,ingame,2024-07-04 04:58:24 -01003A90133A6000,"Liberated: Enhanced Edition",gpu;nvdec,ingame,2024-07-04 04:48:48 -01004360045C8000,"Lichtspeer: Double Speer Edition",,playable,2020-05-12 16:43:09 -010041F0128AE000,"Liege Dragon",,playable,2022-10-12 10:27:03 -010006300AFFE000,"Life Goes On",,playable,2021-01-29 19:01:20 -0100FD101186C000,"Life is Strange 2",UE4,playable,2024-07-04 05:05:58 -0100DC301186A000,"Life is Strange Remastered",UE4,playable,2022-10-03 16:54:44 -010008501186E000,"Life is Strange: Before the Storm Remastered",,playable,2023-09-28 17:15:44 -0100500012AB4000,"Life is Strange: True Colors™",gpu;UE4,ingame,2024-04-08 16:11:52 -01003AB012F00000,"Life of Boris: Super Slav",,ingame,2020-12-17 11:40:05 -0100B3A0135D6000,"Life of Fly",,playable,2021-01-25 23:41:07 -010069A01506E000,"Life of Fly 2",slow,playable,2022-10-28 19:26:52 -01005B6008132000,"Lifeless Planet: Premiere Edition",,playable,2022-08-03 21:25:13 -010030A006F6E000,"Light Fall",nvdec,playable,2021-01-18 14:55:36 -010087700D07C000,"Light Tracer",nvdec,playable,2021-05-05 19:15:43 -01009C8009026000,"LIMBO",cpu;32-bit,boots,2023-06-28 15:39:19 -0100EDE012B58000,"Linelight",,playable,2020-12-17 12:18:07 -0100FAD00E65E000,"Lines X",,playable,2020-05-11 15:28:30 -010032F01096C000,"Lines XL",,playable,2020-08-31 17:48:23 -0100943010310000,"Little Busters! Converted Edition",nvdec,playable,2022-09-29 15:34:56 -0100A3F009142000,"Little Dragons Café",,playable,2020-05-12 00:00:52 -010079A00D9E8000,"Little Friends: Dogs & Cats",,playable,2020-11-12 12:45:51 -0100B18001D8E000,"Little Inferno",32-bit;gpu;nvdec,ingame,2020-12-17 21:43:56 -0100E7000E826000,"Little Misfortune",nvdec,playable,2021-02-23 20:39:44 -0100FE0014200000,"Little Mouse's Encyclopedia",,playable,2022-10-28 19:38:58 -01002FC00412C000,"Little Nightmares Complete Edition",nvdec;UE4,playable,2022-08-03 21:45:35 -010097100EDD6000,"Little Nightmares II",UE4,playable,2023-02-10 18:24:44 -010093A0135D6000,"Little Nightmares II DEMO",UE4;demo;vulkan-backend-bug,playable,2024-05-16 18:47:20 -0100535014D76000,"Little Noah: Scion of Paradise",opengl-backend-bug,playable,2022-09-14 04:17:13 -0100E6D00E81C000,"Little Racer",,playable,2022-10-18 16:41:13 -0100DD700D95E000,"Little Shopping",,playable,2020-10-03 16:34:35 -01000FB00AA90000,"Little Town Hero",,playable,2020-10-15 23:28:48 -01000690085BE000,"Little Triangle",,playable,2020-06-17 14:46:26 -0100CF801776C000,"LIVE A LIVE",UE4;amd-vendor-bug,playable,2023-02-05 15:12:07 -0100BA000FC9C000,"LocO-SportS",,playable,2022-09-20 14:09:30 -010016C009374000,"Lode Runner Legacy",,playable,2021-01-10 14:10:28 -0100D2C013288000,"Lofi Ping Pong",crash,ingame,2020-12-15 20:09:22 -0100B6D016EE6000,"Lone Ruin",crash;nvdec,ingame,2023-01-17 06:41:19 -0100A0C00E0DE000,"Lonely Mountains: Downhill",online-broken,playable,2024-07-04 05:08:11 -010062A0178A8000,"LOOPERS",gpu;slow;crash,ingame,2022-06-17 19:21:45 -010064200F7D8000,"Lost Horizon",,playable,2020-09-01 13:41:22 -01005ED010642000,"Lost Horizon 2",nvdec,playable,2020-06-16 12:02:12 -01005FE01291A000,"Lost in Random™",gpu,ingame,2022-12-18 07:09:28 -0100133014510000,"Lost Lands 2: The Four Horsemen",nvdec,playable,2022-10-24 16:41:00 -0100156014C6A000,"Lost Lands 3: The Golden Curse",nvdec,playable,2022-10-24 16:30:00 -0100BDD010AC8000,"Lost Lands: Dark Overlord",,playable,2022-10-03 11:52:58 -010054600AC74000,"LOST ORBIT: Terminal Velocity",,playable,2021-06-14 12:21:12 -010046600B76A000,"Lost Phone Stories",services,ingame,2020-04-05 23:17:33 -01008AD013A86800,"Lost Ruins",gpu,ingame,2023-02-19 14:09:00 -010077B0038B2000,"LOST SPHEAR",,playable,2021-01-10 06:01:21 -0100018013124000,"Lost Words: Beyond the Page",,playable,2022-10-24 17:03:21 -0100D36011AD4000,"Love Letter from Thief X",gpu;nvdec,ingame,2023-11-14 03:55:31 -0100F0300B7BE000,"Ludomania",crash;services,nothing,2020-04-03 00:33:47 -010048701995E000,"Luigi's Mansion™ 2 HD",ldn-broken;amd-vendor-bug,ingame,2024-09-05 23:47:27 -0100DCA0064A6000,"Luigi’s Mansion™ 3",gpu;slow;Needs Update;ldn-works,ingame,2024-09-27 22:17:36 -010052B00B194000,"Lumini",,playable,2020-08-09 20:45:09 -0100FF00042EE000,"Lumo",nvdec,playable,2022-02-11 18:20:30 -0100F3100EB44000,"Lust for Darkness",nvdec,playable,2020-07-26 12:09:15 -0100F0B00F68E000,"Lust for Darkness: Dawn Edition",nvdec,playable,2021-06-16 13:47:46 -0100EC2011A80000,"Luxar",,playable,2021-03-04 21:11:57 -0100F2400D434000,"MachiKnights -Blood bagos-",nvdec;UE4,playable,2022-09-14 15:08:04 -010024A009428000,"Mad Carnage",,playable,2021-01-10 13:00:07 -01005E7013476000,"Mad Father",,playable,2020-11-12 13:22:10 -010061E00EB1E000,"Mad Games Tycoon",,playable,2022-09-20 14:23:14 -01004A200E722000,"Magazine Mogul",loader-allocator,playable,2022-10-03 12:05:34 -01008E500BF62000,"MagiCat",,playable,2020-12-11 15:22:07 -010032C011356000,"Magicolors",,playable,2020-08-12 18:39:11 -01008C300B624000,"Mahjong Solitaire Refresh",crash,boots,2022-12-09 12:02:55 -010099A0145E8000,"Mahluk dark demon",,playable,2021-04-15 13:14:24 -01001C100D80E000,"Mainlining",,playable,2020-06-05 01:02:00 -0100D9900F220000,"Maitetsu:Pure Station",,playable,2022-09-20 15:12:49 -0100A78017BD6000,"Makai Senki Disgaea 7",,playable,2023-10-05 00:22:18 -01005A700CC3C000,"Mana Spark",,playable,2020-12-10 13:41:01 -010093D00CB22000,"Maneater",nvdec;UE4,playable,2024-05-21 16:11:57 -0100361009B1A000,"Manifold Garden",,playable,2020-10-13 20:27:13 -0100C9A00952A000,"Manticore - Galaxy on Fire",crash;nvdec,boots,2024-02-04 04:37:24 -0100E98002F6E000,"Mantis Burn Racing",online-broken;ldn-broken,playable,2024-09-02 02:13:04 -01008E800D1FE000,"Marble Power Blast",,playable,2021-06-04 16:00:02 -01001B2012D5E000,"Märchen Forest",,playable,2021-02-04 21:33:34 -0100DA7017C9E000,"Marco & The Galaxy Dragon Demo",gpu;demo,ingame,2023-06-03 13:05:33 -01006D0017F7A000,"Mario & Luigi: Brothership",crash;slow;UE4;mac-bug,ingame,2025-01-07 04:00:00 -010002C00C270000,"MARIO & SONIC AT THE OLYMPIC GAMES TOKYO 2020",crash;online-broken;ldn-works,ingame,2024-08-23 16:12:55 -0100317013770000,"MARIO + RABBIDS SPARKS OF HOPE",gpu;Needs Update,ingame,2024-06-20 19:56:19 -010067300059A000,"Mario + Rabbids® Kingdom Battle",slow;opengl-backend-bug,playable,2024-05-06 10:16:54 -0100C9C00E25C000,"Mario Golf™: Super Rush",gpu,ingame,2024-08-18 21:31:48 -0100ED100BA3A000,"Mario Kart Live: Home Circuit™",services;crash;Needs More Attention,nothing,2022-12-07 22:36:52 -0100152000022000,"Mario Kart™ 8 Deluxe",32-bit;ldn-works;LAN;amd-vendor-bug,playable,2024-09-19 11:55:17 -01006FE013472000,"Mario Party™ Superstars",gpu;ldn-works;mac-bug,ingame,2024-05-16 11:23:34 -010019401051C000,"Mario Strikers™: Battle League",crash;nvdec,boots,2024-05-07 06:23:56 -0100BDE00862A000,"Mario Tennis™ Aces",gpu;nvdec;ldn-works;LAN,ingame,2024-09-28 15:54:40 -0100B99019412000,"Mario vs. Donkey Kong™",,playable,2024-05-04 21:22:39 -0100D9E01DBB0000,"Mario vs. Donkey Kong™ Demo",,playable,2024-02-18 10:40:06 -01009A700A538000,"Mark of the Ninja: Remastered",,playable,2022-08-04 15:48:30 -010044600FDF0000,"Marooners",nvdec;online-broken,playable,2022-10-18 21:35:26 -010060700AC50000,"MARVEL ULTIMATE ALLIANCE 3: The Black Order",nvdec;ldn-untested,playable,2024-02-14 19:51:51 -01003DE00C95E000,"Mary Skelter 2",crash;regression,ingame,2023-09-12 07:37:28 -0100113008262000,"Masquerada: Songs and Shadows",,playable,2022-09-20 15:18:54 -01004800197F0000,"Master Detective Archives: Rain Code",gpu,ingame,2024-04-19 20:11:09 -0100CC7009196000,"Masters of Anima",nvdec,playable,2022-08-04 16:00:09 -01004B100A1C4000,"MathLand",,playable,2020-09-01 15:40:06 -0100A8C011F26000,"Max and the book of chaos",,playable,2020-09-02 12:24:43 -01001C9007614000,"Max: The Curse of Brotherhood",nvdec,playable,2022-08-04 16:33:04 -0100E8B012FBC000,"Maze",,playable,2020-12-17 16:13:58 -0100EEF00CBC0000,"MEANDERS",UE4;gpu,ingame,2021-06-11 19:19:33 -0100EC000CE24000,"Mech Rage",,playable,2020-11-18 12:30:16 -0100C4F005EB4000,"Mecho Tales",,playable,2022-08-04 17:03:19 -0100E4600D31A000,"Mechstermination Force",,playable,2024-07-04 05:39:15 -,"Medarot Classics Plus Kabuto Ver",,playable,2020-11-21 11:31:18 -,"Medarot Classics Plus Kuwagata Ver",,playable,2020-11-21 11:30:40 -0100BBC00CB9A000,"Mega Mall Story",slow,playable,2022-08-04 17:10:58 -0100B0C0086B0000,"Mega Man 11",,playable,2021-04-26 12:07:53 -010038E016264000,"Mega Man Battle Network Legacy Collection Vol. 1",,playable,2023-04-25 03:55:57 -0100734016266000,"Mega Man Battle Network Legacy Collection Vol. 2",,playable,2023-08-03 18:04:32 -01002D4007AE0000,"Mega Man Legacy Collection",gpu,ingame,2021-06-03 18:17:17 -0100842008EC4000,"Mega Man Legacy Collection 2",,playable,2021-01-06 08:47:59 -01005C60086BE000,"Mega Man X Legacy Collection",audio;crash;services,menus,2020-12-04 04:30:17 -010025C00D410000,"Mega Man Zero/ZX Legacy Collection",,playable,2021-06-14 16:17:32 -0100FC700F942000,"Megabyte Punch",,playable,2020-10-16 14:07:18 -010006F011220000,"Megadimension Neptunia VII",32-bit;nvdec,playable,2020-12-17 20:56:03 -010082B00E8B8000,"Megaquarium",,playable,2022-09-14 16:50:00 -010005A00B312000,"Megaton Rainfall",gpu;opengl,boots,2022-08-04 18:29:43 -0100EA100DF92000,"Meiji Katsugeki Haikara Ryuuseigumi - Seibai Shimaseu, Yonaoshi Kagyou",32-bit;nvdec,playable,2022-12-05 13:19:12 -0100B360068B2000,"Mekorama",gpu,boots,2021-06-17 16:37:21 -01000FA010340000,"Melbits World",nvdec;online,menus,2021-11-26 13:51:22 -0100F68019636000,"Melon Journey",,playable,2023-04-23 21:20:01 -,"Memories Off -Innocent Fille- for Dearest",,playable,2020-08-04 07:31:22 -010062F011E7C000,"Memory Lane",UE4,playable,2022-10-05 14:31:03 -0100EBE00D5B0000,"Meow Motors",UE4;gpu,ingame,2020-12-18 00:24:01 -0100273008FBC000,"Mercenaries Saga Chronicles",,playable,2021-01-10 12:48:19 -010094500C216000,"Mercenaries Wings: The False Phoenix",crash;services,nothing,2020-05-08 22:42:12 -0100F900046C4000,"Mercenary Kings: Reloaded Edition",online,playable,2020-10-16 13:05:58 -0100E5000D3CA000,"Merchants of Kaidan",,playable,2021-04-15 11:44:28 -01009A500D4A8000,"METAGAL",,playable,2020-06-05 00:05:48 -010047F01AA10000,"METAL GEAR SOLID 3: Snake Eater - Master Collection Version",services-horizon,menus,2024-07-24 06:34:06 -0100E8F00F6BE000,"METAL MAX Xeno Reborn",,playable,2022-12-05 15:33:53 -01002DE00E5D0000,"Metaloid: Origin",,playable,2020-06-04 20:26:35 -010055200E87E000,"Metamorphosis",UE4;audout;gpu;nvdec,ingame,2021-06-16 16:18:11 -0100D4900E82C000,"Metro 2033 Redux",gpu,ingame,2022-11-09 10:53:13 -0100F0400E850000,"Metro: Last Light Redux",slow;nvdec;vulkan-backend-bug,ingame,2023-11-01 11:53:52 -010012101468C000,"Metroid Prime™ Remastered",gpu;Needs Update;vulkan-backend-bug;opengl-backend-bug,ingame,2024-05-07 22:48:15 -010093801237C000,"Metroid™ Dread",,playable,2023-11-13 04:02:36 -0100A1200F20C000,"Midnight Evil",,playable,2022-10-18 22:55:19 -0100C1E0135E0000,"Mighty Fight Federation",online,playable,2021-04-06 18:39:56 -0100AD701344C000,"Mighty Goose",nvdec,playable,2022-10-28 20:25:38 -01000E2003FA0000,"MIGHTY GUNVOLT BURST",,playable,2020-10-19 16:05:49 -010060D00AE36000,"Mighty Switch Force! Collection",,playable,2022-10-28 20:40:32 -01003DA010E8A000,"Miitopia™",gpu;services-horizon,ingame,2024-09-06 10:39:13 -01007DA0140E8000,"Miitopia™ Demo",services;crash;demo,menus,2023-02-24 11:50:58 -01004B7009F00000,"Miles & Kilo",,playable,2020-10-22 11:39:49 -0100976008FBE000,"Millie",,playable,2021-01-26 20:47:19 -0100F5700C9A8000,"MIND: Path to Thalamus",UE4,playable,2021-06-16 17:37:25 -0100D71004694000,"Minecraft",crash;ldn-broken,ingame,2024-09-29 12:08:59 -01006C100EC08000,"Minecraft Dungeons",nvdec;online-broken;UE4,playable,2024-06-26 22:10:43 -01007C6012CC8000,"Minecraft Legends",gpu;crash,ingame,2024-03-04 00:32:24 -01006BD001E06000,"Minecraft: Nintendo Switch Edition",ldn-broken,playable,2023-10-15 01:47:08 -01003EF007ABA000,"Minecraft: Story Mode - Season Two",online-broken,playable,2023-03-04 00:30:50 -010059C002AC2000,"Minecraft: Story Mode - The Complete Adventure",crash;online-broken,boots,2022-08-04 18:56:58 -0100B7500F756000,"Minefield",,playable,2022-10-05 15:03:29 -01003560119A6000,"Mini Motor Racing X",,playable,2021-04-13 17:54:49 -0100FB700DE1A000,"Mini Trains",,playable,2020-07-29 23:06:20 -010039200EC66000,"Miniature - The Story Puzzle",UE4,playable,2022-09-14 17:18:50 -010069200EB80000,"Ministry of Broadcast",,playable,2022-08-10 00:31:16 -0100C3F000BD8000,"Minna de Wai Wai! Spelunker",crash,nothing,2021-11-03 07:17:11 -0100FAE010864000,"Minoria",,playable,2022-08-06 18:50:50 -01005AB015994000,"Miss Kobayashi's Dragonmaid Burst Forth!! Choro-gon☆Breath",gpu,playable,2022-03-28 02:22:24 -0100CFA0138C8000,"Missile Dancer",,playable,2021-01-31 12:22:03 -0100E3601495C000,"Missing Features: 2D",,playable,2022-10-28 20:52:54 -010059200CC40000,"Mist Hunter",,playable,2021-06-16 13:58:58 -0100F65011E52000,"Mittelborg: City of Mages",,playable,2020-08-12 19:58:06 -0100876015D74000,"MLB® The Show™ 22",gpu;slow,ingame,2023-04-25 06:28:43 -0100A9F01776A000,"MLB® The Show™ 22 Tech Test",services;crash;Needs Update;demo,nothing,2022-12-09 10:28:34 -0100913019170000,"MLB® The Show™ 23",gpu,ingame,2024-07-26 00:56:50 -0100E2E01C32E000,"MLB® The Show™ 24",services-horizon,nothing,2024-03-31 04:54:11 -010011300F74C000,"MO:Astray",crash,ingame,2020-12-11 21:45:44 -010020400BDD2000,"Moai VI: Unexpected Guests",slow,playable,2020-10-27 16:40:20 -0100D8700B712000,"Modern Combat Blackout",crash,nothing,2021-03-29 19:47:15 -010004900D772000,"Modern Tales: Age of Invention",slow,playable,2022-10-12 11:20:19 -0100B8500D570000,"Moero Chronicle™ Hyper",32-bit,playable,2022-08-11 07:21:56 -01004EB0119AC000,"Moero Crystal H",32-bit;nvdec;vulkan-backend-bug,playable,2023-07-05 12:04:22 -0100B46017500000,"MOFUMOFUSENSEN",gpu,menus,2024-09-21 21:51:08 -01004A400C320000,"Momodora: Reverie Under the Moonlight",deadlock,nothing,2022-02-06 03:47:43 -01002CC00BC4C000,"Momonga Pinball Adventures",,playable,2022-09-20 16:00:40 -010093100DA04000,"Momotaro Dentetsu Showa, Heisei, Reiwa mo Teiban!",gpu,ingame,2023-09-22 10:21:46 -0100FBD00ED24000,"MONKEY BARRELS",,playable,2022-09-14 17:28:52 -01004C500B8E0000,"Monkey King: Master of the Clouds",,playable,2020-09-28 22:35:48 -01003030161DC000,"Monomals",gpu,ingame,2024-08-06 22:02:51 -0100F3A00FB78000,"Mononoke Slashdown",crash,menus,2022-05-04 20:55:47 -01007430037F6000,"MONOPOLY® for Nintendo Switch™",nvdec;online-broken,playable,2024-02-06 23:13:01 -01005FF013DC2000,"MONOPOLY® Madness",,playable,2022-01-29 21:13:52 -0100E2D0128E6000,"Monster Blast",gpu,ingame,2023-09-02 20:02:32 -01006F7001D10000,"Monster Boy and the Cursed Kingdom",nvdec,playable,2022-08-04 20:06:32 -01005FC01000E000,"Monster Bugs Eat People",,playable,2020-07-26 02:05:34 -0100742007266000,"Monster Energy Supercross - The Official Videogame",nvdec;UE4,playable,2022-08-04 20:25:00 -0100F8100B982000,"Monster Energy Supercross - The Official Videogame 2",nvdec;UE4;ldn-untested,playable,2022-08-04 21:21:24 -010097800EA20000,"Monster Energy Supercross - The Official Videogame 3",UE4;audout;nvdec;online,playable,2021-06-14 12:37:54 -0100E9900ED74000,"Monster Farm",32-bit;nvdec,playable,2021-05-05 19:29:13 -0100770008DD8000,"Monster Hunter Generations Ultimate™",32-bit;online-broken;ldn-works,playable,2024-03-18 14:35:36 -0100B04011742000,"Monster Hunter Rise",gpu;slow;crash;nvdec;online-broken;Needs Update;ldn-works,ingame,2024-08-24 11:04:59 -010093A01305C000,"Monster Hunter Rise Demo",online-broken;ldn-works;demo,playable,2022-10-18 23:04:17 -0100E21011446000,"Monster Hunter Stories 2: Wings of Ruin",services,ingame,2022-07-10 19:27:30 -010042501329E000,"MONSTER HUNTER STORIES 2: WINGS OF RUIN Trial Version",demo,playable,2022-11-13 22:20:26 -,"Monster Hunter XX Demo",32-bit;cpu,nothing,2020-03-22 10:12:28 -0100C3800049C000,"Monster Hunter XX Nintendo Switch Ver ( Double Cross )",,playable,2024-07-21 14:08:09 -010088400366E000,"Monster Jam Crush It!",UE4;nvdec;online,playable,2021-04-08 19:29:27 -010095C00F354000,"Monster Jam Steel Titans",crash;nvdec;UE4,menus,2021-11-14 09:45:38 -010051B0131F0000,"Monster Jam Steel Titans 2",nvdec;UE4,playable,2022-10-24 17:17:59 -01004DE00DD44000,"Monster Puzzle",,playable,2020-09-28 22:23:10 -0100A0F00DA68000,"Monster Sanctuary",crash,ingame,2021-04-04 05:06:41 -0100D30010C42000,"Monster Truck Championship",slow;nvdec;online-broken;UE4,playable,2022-10-18 23:16:51 -01004E10142FE000,"Monster wo taoshite tsuyoi ken ya yoroi wo te ni shinasai. Shinde mo akiramezu ni tsuyoku nari nasai. Yuushatai ga maoh wo taosu sono hi wo shinzite imasu. - モンスターを倒して強い剣や鎧を手にしなさい。死んでも諦めずに強くなりなさい。勇者隊が魔王を倒すその日を信じています。",crash,ingame,2021-07-23 10:56:44 -010039F00EF70000,"Monstrum",,playable,2021-01-31 11:07:26 -0100C2E00B494000,"Moonfall Ultimate",nvdec,playable,2021-01-17 14:01:25 -0100E3D014ABC000,"Moorhuhn Jump and Run 'Traps and Treasures'",,playable,2024-03-08 15:10:02 -010045C00F274000,"Moorhuhn Kart 2",online-broken,playable,2022-10-28 21:10:35 -010040E00F642000,"Morbid: The Seven Acolytes",,playable,2022-08-09 17:21:58 -01004230123E0000,"More Dark",,playable,2020-12-15 16:01:06 -01005DA003E6E000,"Morphies Law",UE4;crash;ldn-untested;nvdec;online,menus,2020-11-22 17:05:29 -0100776003F0C000,"Morphite",,playable,2021-01-05 19:40:55 -0100F2200C984000,"Mortal Kombat 11",slow;nvdec;online-broken;ldn-broken,ingame,2024-06-19 02:22:17 -01006560184E6000,"Mortal Kombat™ 1",gpu,ingame,2024-09-04 15:45:47 -010032800D740000,"Mosaic",,playable,2020-08-11 13:07:35 -01002ED00B01C000,"Moto Racer 4",UE4;nvdec;online,playable,2021-04-08 19:09:11 -01003F200D0F2000,"Moto Rush GT",,playable,2022-08-05 11:23:55 -0100361007268000,"MotoGP™18",nvdec;UE4;ldn-untested,playable,2022-08-05 11:41:45 -01004B800D0E8000,"MotoGP™19",nvdec;online-broken;UE4,playable,2022-08-05 11:54:14 -01001FA00FBBC000,"MotoGP™20",ldn-untested,playable,2022-09-29 17:58:01 -01000F5013820000,"MotoGP™21",gpu;nvdec;online-broken;UE4;ldn-untested,ingame,2022-10-28 21:35:08 -010040401D564000,"MotoGP™24",gpu,ingame,2024-05-10 23:41:00 -01002A900D6D6000,"Motorsport Manager for Nintendo Switch™",nvdec,playable,2022-08-05 12:48:14 -01009DB00D6E0000,"Mountain Rescue Simulator",,playable,2022-09-20 16:36:48 -0100C4C00E73E000,"Moving Out",nvdec,playable,2021-06-07 21:17:24 -0100D3300F110000,"Mr Blaster",,playable,2022-09-14 17:56:24 -0100DCA011262000,"Mr. DRILLER DrillLand",nvdec,playable,2020-07-24 13:56:48 -010031F002B66000,"Mr. Shifty",slow,playable,2020-05-08 15:28:16 -01005EF00B4BC000,"Ms. Splosion Man",online,playable,2020-05-09 20:45:43 -010087C009246000,"Muddledash",services,ingame,2020-05-08 16:46:14 -01009D200952E000,"MudRunner - American Wilds",gpu;ldn-untested;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-16 11:40:52 -010073E008E6E000,"Mugsters",,playable,2021-01-28 17:57:17 -0100A8400471A000,"MUJO",,playable,2020-05-08 16:31:04 -0100211005E94000,"Mulaka",,playable,2021-01-28 18:07:20 -010038B00B9AE000,"Mummy Pinball",,playable,2022-08-05 16:08:11 -01008E200C5C2000,"Muse Dash",,playable,2020-06-06 14:41:29 -010035901046C000,"Mushroom Quest",,playable,2020-05-17 13:07:08 -0100700006EF6000,"Mushroom Wars 2",nvdec,playable,2020-09-28 15:26:08 -010046400F310000,"Music Racer",,playable,2020-08-10 08:51:23 -,"Musou Orochi 2 Ultimate",crash;nvdec,boots,2021-04-09 19:39:16 -0100F6000EAA8000,"Must Dash Amigos",,playable,2022-09-20 16:45:56 -01007B6006092000,"MUSYNX",,playable,2020-05-08 14:24:43 -0100C3E00ACAA000,"Mutant Football League: Dynasty Edition",online-broken,playable,2022-08-05 17:01:51 -01004BE004A86000,"Mutant Mudds Collection",,playable,2022-08-05 17:11:38 -0100E6B00DEA4000,"Mutant Year Zero: Road to Eden - Deluxe Edition",nvdec;UE4,playable,2022-09-10 13:31:10 -0100161009E5C000,"MX Nitro: Unleashed",,playable,2022-09-27 22:34:33 -0100218011E7E000,"MX vs ATV All Out",nvdec;UE4;vulkan-backend-bug,playable,2022-10-25 19:51:46 -0100D940063A0000,"MXGP3 - The Official Motocross Videogame",UE4;gpu;nvdec,ingame,2020-12-16 14:00:20 -01002C6012334000,"My Aunt is a Witch",,playable,2022-10-19 09:21:17 -0100F6F0118B8000,"My Butler",,playable,2020-06-27 13:46:23 -010031200B94C000,"My Friend Pedro",nvdec,playable,2021-05-28 11:19:17 -01000D700BE88000,"My Girlfriend is a Mermaid!?",nvdec,playable,2020-05-08 13:32:55 -010039000B68E000,"MY HERO ONE'S JUSTICE",UE4;crash;gpu;online,menus,2020-12-10 13:11:04 -01007E700DBF6000,"MY HERO ONE'S JUSTICE 2",UE4;gpu;nvdec,ingame,2020-12-18 14:08:47 -0100E4701373E000,"My Hidden Things",,playable,2021-04-15 11:26:06 -0100872012B34000,"My Little Dog Adventure",gpu,ingame,2020-12-10 17:47:37 -01008C600395A000,"My Little Riding Champion",slow,playable,2020-05-08 17:00:53 -010086B00C784000,"My Lovely Daughter: ReBorn",,playable,2022-11-24 17:25:32 -0100E7700C284000,"My Memory of Us",,playable,2022-08-20 11:03:14 -010028F00ABAE000,"My Riding Stables - Life with Horses",,playable,2022-08-05 21:39:07 -010042A00FBF0000,"My Riding Stables 2: A New Adventure",,playable,2021-05-16 14:14:59 -0100E25008E68000,"My Time at Portia",,playable,2021-05-28 12:42:55 -0100158011A08000,"My Universe - Cooking Star Restaurant",,playable,2022-10-19 10:00:44 -0100F71011A0A000,"My Universe - Fashion Boutique",nvdec,playable,2022-10-12 14:54:19 -0100CD5011A02000,"My Universe - PET CLINIC CATS & DOGS",crash;nvdec,boots,2022-02-06 02:05:53 -01006C301199C000,"My Universe - School Teacher",nvdec,playable,2021-01-21 16:02:52 -01000D5005974000,"N++ (NPLUSPLUS)",,playable,2022-08-05 21:54:58 -0100A6F00AC70000,"NAIRI: Tower of Shirin",nvdec,playable,2020-08-09 19:49:12 -010002F001220000,"NAMCO MUSEUM",ldn-untested,playable,2024-08-13 07:52:21 -0100DAA00AEE6000,"NAMCO MUSEUM™ ARCADE PAC™",,playable,2021-06-07 21:44:50 -,"NAMCOT COLLECTION",audio,playable,2020-06-25 13:35:22 -010072B00BDDE000,"Narcos: Rise of the Cartels",UE4;crash;nvdec,boots,2021-03-22 13:18:47 -01006BB00800A000,"NARUTO SHIPPUDEN: Ultimate Ninja STORM 3 Full Burst",nvdec,playable,2024-06-16 14:58:05 -010084D00CF5E000,"NARUTO SHIPPUDEN™: Ultimate Ninja® STORM 4 ROAD TO BORUTO",,playable,2024-06-29 13:04:22 -0100D2D0190A4000,"NARUTO X BORUTO Ultimate Ninja STORM CONNECTIONS",services-horizon,nothing,2024-07-25 05:16:48 -0100715007354000,"NARUTO: Ultimate Ninja STORM",nvdec,playable,2022-08-06 14:10:31 -0100545016D5E000,"NASCAR Rivals",crash;Incomplete,ingame,2023-04-21 01:17:47 -0100103011894000,"Naught",UE4,playable,2021-04-26 13:31:45 -01001AE00C1B2000,"NBA 2K Playgrounds 2",nvdec;online-broken;UE4;vulkan-backend-bug,playable,2022-08-06 14:40:38 -0100760002048000,"NBA 2K18",gpu;ldn-untested,ingame,2022-08-06 14:17:51 -01001FF00B544000,"NBA 2K19",crash;ldn-untested;services,nothing,2021-04-16 13:07:21 -0100E24011D1E000,"NBA 2K21",gpu,boots,2022-10-05 15:31:51 -0100ACA017E4E800,"NBA 2K23",,boots,2023-10-10 23:07:14 -010006501A8D8000,"NBA 2K24 Kobe Bryant Edition",cpu;gpu,boots,2024-08-11 18:23:08 -010002900294A000,"NBA Playgrounds",nvdec;online-broken;UE4,playable,2022-08-06 17:06:59 -0100F5A008126000,"NBA Playgrounds - Enhanced Edition",nvdec;online-broken;UE4,playable,2022-08-06 16:13:44 -0100BBC00E4F8000,"Need a packet?",,playable,2020-08-12 16:09:01 -010029B0118E8000,"Need for Speed™ Hot Pursuit Remastered",online-broken,playable,2024-03-20 21:58:02 -010023500B0BA000,"Nefarious",,playable,2020-12-17 03:20:33 -01008390136FC000,"Negative: The Way of Shinobi",nvdec,playable,2021-03-24 11:29:41 -010065F00F55A000,"Neighbours back From Hell",nvdec,playable,2022-10-12 15:36:48 -0100B4900AD3E000,"NEKOPARA Vol.1",nvdec,playable,2022-08-06 18:25:54 -010012900C782000,"NEKOPARA Vol.2",,playable,2020-12-16 11:04:47 -010045000E418000,"NEKOPARA Vol.3",,playable,2022-10-03 12:49:04 -010049F013656000,"NEKOPARA Vol.4",crash,ingame,2021-01-17 01:47:18 -01006ED00BC76000,"Nelke & the Legendary Alchemists ~Ateliers of the New World~",,playable,2021-01-28 19:39:42 -01005F000B784000,"Nelly Cootalot: The Fowl Fleet",,playable,2020-06-11 20:55:42 -01001AB0141A8000,"Neo : The World Ends with You (DEMO)- 新すばらしきこのせかい (体験版)",crash,ingame,2021-07-18 07:29:18 -0100EBB00D2F4000,"Neo Cab",,playable,2021-04-24 00:27:58 -010040000DB98000,"Neo Cab Demo",crash,boots,2020-06-16 00:14:00 -010006D0128B4000,"NEOGEO POCKET COLOR SELECTION Vol.1",,playable,2023-07-08 20:55:36 -0100BAB01113A000,"Neon Abyss",,playable,2022-10-05 15:59:44 -010075E0047F8000,"Neon Chrome",,playable,2022-08-06 18:38:34 -010032000EAC6000,"Neon Drive",,playable,2022-09-10 13:45:48 -0100B9201406A000,"Neon White",crash,ingame,2023-02-02 22:25:06 -0100743008694000,"Neonwall",nvdec,playable,2022-08-06 18:49:52 -01001A201331E000,"Neoverse Trinity Edition",,playable,2022-10-19 10:28:03 -01000B2011352000,"Nerdook Bundle Vol. 1",gpu;slow,ingame,2020-10-07 14:27:10 -01008B0010160000,"Nerved",UE4,playable,2022-09-20 17:14:03 -0100BA0004F38000,"NeuroVoider",,playable,2020-06-04 18:20:05 -0100C20012A54000,"Nevaeh",gpu;nvdec,ingame,2021-06-16 17:29:03 -010039801093A000,"Never Breakup",,playable,2022-10-05 16:12:12 -0100F79012600000,"Neverending Nightmares",crash;gpu,boots,2021-04-24 01:43:35 -0100A9600EDF8000,"Neverlast",slow,ingame,2020-07-13 23:55:19 -010013700DA4A000,"Neverwinter Nights: Enhanced Edition",gpu;nvdec,menus,2024-09-30 02:59:19 -01004C200100E000,"New Frontier Days ~Founding Pioneers~",,playable,2020-12-10 12:45:07 -0100F4300BF2C000,"New Pokémon Snap™",,playable,2023-01-15 23:26:57 -010017700B6C2000,"New Super Lucky's Tale",,playable,2024-03-11 14:14:10 -0100EA80032EA000,"New Super Mario Bros.™ U Deluxe",32-bit,playable,2023-10-08 02:06:37 -0100B9500E886000,"Newt One",,playable,2020-10-17 21:21:48 -01005A5011A44000,"Nexomon: Extinction",,playable,2020-11-30 15:02:22 -0100B69012EC6000,"Nexoria: Dungeon Rogue Heroes",gpu,ingame,2021-10-04 18:41:29 -0100271004570000,"Next Up Hero",online,playable,2021-01-04 22:39:36 -0100E5600D446000,"Ni no Kuni: Wrath of the White Witch",32-bit;nvdec,boots,2024-07-12 04:52:59 -0100EDD00D530000,"Nice Slice",nvdec,playable,2020-06-17 15:13:27 -01000EC010BF4000,"Niche - a genetics survival game",nvdec,playable,2020-11-27 14:01:11 -010010701AFB2000,"Nickelodeon All-Star Brawl 2",,playable,2024-06-03 14:15:01 -0100D6200933C000,"Nickelodeon Kart Racers",,playable,2021-01-07 12:16:49 -010058800F860000,"Nicky - The Home Alone Golf Ball",,playable,2020-08-08 13:45:39 -0100A95012668000,"Nicole",audout,playable,2022-10-05 16:41:44 -0100B8E016F76000,"NieR:Automata The End of YoRHa Edition",slow;crash,ingame,2024-05-17 01:06:34 -0100F3A0095A6000,"Night Call",nvdec,playable,2022-10-03 12:57:00 -0100921006A04000,"Night in the Woods",,playable,2022-12-03 20:17:54 -0100D8500A692000,"Night Trap - 25th Anniversary Edition",nvdec,playable,2022-08-08 13:16:14 -01005F4009112000,"Nightmare Boy: The New Horizons of Reigns of Dreams, a Metroidvania journey with little rusty nightmares, the empire of knight final boss",,playable,2021-01-05 15:52:29 -01006E700B702000,"Nightmares from the Deep 2: The Siren`s Call",nvdec,playable,2022-10-19 10:58:53 -0100628004BCE000,"Nights of Azure 2: Bride of the New Moon",crash;nvdec;regression,menus,2022-11-24 16:00:39 -010042300C4F6000,"Nightshade/百花百狼",nvdec,playable,2020-05-10 19:43:31 -0100AA0008736000,"Nihilumbra",,playable,2020-05-10 16:00:12 -0100D03003F0E000,"Nine Parchments",ldn-untested,playable,2022-08-07 12:32:08 -0100E2F014F46000,"NINJA GAIDEN Σ",nvdec,playable,2022-11-13 16:27:02 -0100696014F4A000,"NINJA GAIDEN Σ2",nvdec,playable,2024-07-31 21:53:48 -01002AF014F4C000,"NINJA GAIDEN: Master Collection",nvdec,playable,2023-08-11 08:25:31 -010088E003A76000,"Ninja Shodown",,playable,2020-05-11 12:31:21 -010081D00A480000,"Ninja Striker!",,playable,2020-12-08 19:33:29 -0100CCD0073EA000,"Ninjala",online-broken;UE4,boots,2024-07-03 20:04:49 -010003C00B868000,"Ninjin: Clash of Carrots",online-broken,playable,2024-07-10 05:12:26 -0100746010E4C000,"NinNinDays",,playable,2022-11-20 15:17:29 -0100C9A00ECE6000,"Nintendo 64™ – Nintendo Switch Online",gpu;vulkan,ingame,2024-04-23 20:21:07 -0100D870045B6000,"Nintendo Entertainment System™ - Nintendo Switch Online",online,playable,2022-07-01 15:45:06 -0100C4B0034B2000,"Nintendo Labo Toy-Con 01 Variety Kit",gpu,ingame,2022-08-07 12:56:07 -01001E9003502000,"Nintendo Labo Toy-Con 03 Vehicle Kit",services;crash,menus,2022-08-03 17:20:11 -0100165003504000,"Nintendo Labo Toy-Con 04 VR Kit",services;crash,boots,2023-01-17 22:30:24 -01009AB0034E0000,"Nintendo Labo™ Toy-Con 02: Robot Kit",gpu,ingame,2022-08-07 13:03:19 -0100D2F00D5C0000,"Nintendo Switch™ Sports",deadlock,boots,2024-09-10 14:20:24 -01000EE017182000,"Nintendo Switch™ Sports Online Play Test",gpu,ingame,2022-03-16 07:44:12 -010037200C72A000,"Nippon Marathon",nvdec,playable,2021-01-28 20:32:46 -010020901088A000,"Nirvana Pilot Yume",,playable,2022-10-29 11:49:49 -01009B400ACBA000,"No Heroes Here",online,playable,2020-05-10 02:41:57 -0100853015E86000,"No Man's Sky",gpu,ingame,2024-07-25 05:18:17 -0100F0400F202000,"No More Heroes",32-bit,playable,2022-09-13 07:44:27 -010071400F204000,"No More Heroes 2: Desperate Struggle",32-bit;nvdec,playable,2022-11-19 01:38:13 -01007C600EB42000,"No More Heroes 3",gpu;UE4,ingame,2024-03-11 17:06:19 -01009F3011004000,"No Straight Roads",nvdec,playable,2022-10-05 17:01:38 -0100F7D00A1BC000,"NO THING",,playable,2021-01-04 19:06:01 -0100542012884000,"Nongunz: Doppelganger Edition",,playable,2022-10-29 12:00:39 -010016E011EFA000,"Norman's Great Illusion",,playable,2020-12-15 19:28:24 -01001A500AD6A000,"Norn9 ~Norn + Nonette~ LOFN",nvdec;vulkan-backend-bug,playable,2022-12-09 09:29:16 -01004840086FE000,"NORTH",nvdec,playable,2021-01-05 16:17:44 -0100A9E00D97A000,"Northgard",crash,menus,2022-02-06 02:05:35 -01008AE019614000,"nOS new Operating System",,playable,2023-03-22 16:49:08 -0100CB800B07E000,"NOT A HERO: SUPER SNAZZY EDITION",,playable,2021-01-28 19:31:24 -01004D500D9BE000,"Not Not - A Brain Buster",,playable,2020-05-10 02:05:26 -0100DAF00D0E2000,"Not Tonight: Take Back Control Edition",nvdec,playable,2022-10-19 11:48:47 -0100343013248000,"Nubarron: The adventure of an unlucky gnome",,playable,2020-12-17 16:45:17 -01005140089F6000,"Nuclien",,playable,2020-05-10 05:32:55 -010002700C34C000,"Numbala",,playable,2020-05-11 12:01:07 -010020500C8C8000,"Number Place 10000",gpu,menus,2021-11-24 09:14:23 -010003701002C000,"Nurse Love Syndrome",,playable,2022-10-13 10:05:22 -0000000000000000,"nx-hbmenu",Needs Update;homebrew,boots,2024-04-06 22:05:32 -,"nxquake2",services;crash;homebrew,nothing,2022-08-04 23:14:04 -010049F00EC30000,"Nyan Cat: Lost in Space",online,playable,2021-06-12 13:22:03 -01002E6014FC4000,"O---O",,playable,2022-10-29 12:12:14 -010074600CC7A000,"OBAKEIDORO!",nvdec;online,playable,2020-10-16 16:57:34 -01002A000C478000,"Observer",UE4;gpu;nvdec,ingame,2021-03-03 20:19:45 -01007D7001D0E000,"Oceanhorn - Monster of Uncharted Seas",,playable,2021-01-05 13:55:22 -01006CB010840000,"Oceanhorn 2: Knights of the Lost Realm",,playable,2021-05-21 18:26:10 -010096B00A08E000,"Octocopter: Double or Squids",,playable,2021-01-06 01:30:16 -0100CAB006F54000,"Octodad: Dadliest Catch",crash,boots,2021-04-23 15:26:12 -0100A3501946E000,"OCTOPATH TRAVELER II",gpu;amd-vendor-bug,ingame,2024-09-22 11:39:20 -010057D006492000,"Octopath Traveler™",UE4;crash;gpu,ingame,2020-08-31 02:34:36 -010084300C816000,"Odallus: The Dark Call",,playable,2022-08-08 12:37:58 -0100BB500EE3C000,"Oddworld: Munch's Oddysee",gpu;nvdec,ingame,2021-06-17 12:11:50 -01005E700ABB8000,"Oddworld: New 'n' Tasty",nvdec,playable,2021-06-17 17:51:32 -0100D210177C6000,"ODDWORLD: SOULSTORM",services-horizon;crash,boots,2024-08-18 13:13:26 -01002EA00ABBA000,"Oddworld: Stranger's Wrath",crash;nvdec;loader-allocator,menus,2021-11-23 09:23:21 -010029F00C876000,"Odium to the Core",gpu,ingame,2021-01-08 14:03:52 -01006F5013202000,"Off And On Again",,playable,2022-10-29 19:46:26 -01003CD00E8BC000,"Offroad Racing - Buggy X ATV X Moto",online-broken;UE4,playable,2022-09-14 18:53:22 -01003B900AE12000,"Oh My Godheads: Party Edition",,playable,2021-04-15 11:04:11 -0100F45006A00000,"Oh...Sir! The Hollywood Roast",,ingame,2020-12-06 00:42:30 -010030B00B2F6000,"OK K.O.! Let’s Play Heroes",nvdec,playable,2021-01-11 18:41:02 -0100276009872000,"OKAMI HD",nvdec,playable,2024-04-05 06:24:58 -01006AB00BD82000,"OkunoKA",online-broken,playable,2022-08-08 14:41:51 -0100CE2007A86000,"Old Man's Journey",nvdec,playable,2021-01-28 19:16:52 -0100C3D00923A000,"Old School Musical",,playable,2020-12-10 12:51:12 -010099000BA48000,"Old School Racer 2",,playable,2020-10-19 12:11:26 -0100E0200B980000,"OlliOlli: Switch Stance",gpu,boots,2024-04-25 08:36:37 -0100F9D00C186000,"Olympia Soiree",,playable,2022-12-04 21:07:12 -0100A8B00E14A000,"Olympic Games Tokyo 2020 – The Official Video Game™",ldn-untested;nvdec;online,playable,2021-01-06 01:20:24 -01001D600E51A000,"Omega Labyrinth Life",,playable,2021-02-23 21:03:03 -,"Omega Vampire",nvdec,playable,2020-10-17 19:15:35 -0100CDC00C40A000,"Omensight: Definitive Edition",UE4;crash;nvdec,ingame,2020-07-26 01:45:14 -01006DB00D970000,"OMG Zombies!",32-bit,playable,2021-04-12 18:04:45 -010014E017B14000,"OMORI",,playable,2023-01-07 20:21:02 -,"Once Upon A Coma",nvdec,playable,2020-08-01 12:09:39 -0100BD3006A02000,"One More Dungeon",,playable,2021-01-06 09:10:58 -010076600FD64000,"One Person Story",,playable,2020-07-14 11:51:02 -0100774009CF6000,"ONE PIECE Pirate Warriors 3 Deluxe Edition",nvdec,playable,2020-05-10 06:23:52 -01008FE00E2F6000,"ONE PIECE: PIRATE WARRIORS 4",online-broken;ldn-untested,playable,2022-09-27 22:55:46 -0100574002AF4000,"ONE PIECE: Unlimited World Red Deluxe Edition",,playable,2020-05-10 22:26:32 -0100EEA00E3EA000,"One-Way Ticket",UE4,playable,2020-06-20 17:20:49 -0100463013246000,"Oneiros",,playable,2022-10-13 10:17:22 -010057C00D374000,"Oniken",,playable,2022-09-10 14:22:38 -010037900C814000,"Oniken: Unstoppable Edition",,playable,2022-08-08 14:52:06 -0100416008A12000,"Onimusha: Warlords",nvdec,playable,2020-07-31 13:08:39 -0100CF4011B2A000,"OniNaki",nvdec,playable,2021-02-27 21:52:42 -010074000BE8E000,"oOo: Ascension",,playable,2021-01-25 14:13:34 -0100D5400BD90000,"Operación Triunfo 2017",services;nvdec,ingame,2022-08-08 15:06:42 -01006CF00CFA4000,"Operencia: The Stolen Sun",UE4;nvdec,playable,2021-06-08 13:51:07 -01004A200BE82000,"OPUS Collection",,playable,2021-01-25 15:24:04 -010049C0075F0000,"OPUS: The Day We Found Earth",nvdec,playable,2021-01-21 18:29:31 -0100F9A012892000,"Ord.",,playable,2020-12-14 11:59:06 -010061D00DB74000,"Ori and the Blind Forest: Definitive Edition",nvdec;online-broken,playable,2022-09-14 19:58:13 -010005800F46E000,"Ori and the Blind Forest: Definitive Edition Demo",,playable,2022-09-10 14:40:12 -01008DD013200000,"Ori and the Will of the Wisps",gpu,ingame,2025-01-11 06:09:54 -01006C70102EA000,"Orn: The Tiny Forest Sprite",UE4;gpu,ingame,2020-08-07 14:25:30 -0100E5900F49A000,"Othercide",nvdec,playable,2022-10-05 19:04:38 -01006AA00EE44000,"Otokomizu",,playable,2020-07-13 21:00:44 -01006AF013A9E000,"Otti: The House Keeper",,playable,2021-01-31 12:11:24 -01000320060AC000,"OTTTD: Over The Top Tower Defense",slow,ingame,2020-10-10 19:31:07 -010097F010FE6000,"Our Two Bedroom Story",gpu;nvdec,ingame,2023-10-10 17:41:20 -0100D5D00C6BE000,"Our World Is Ended.",nvdec,playable,2021-01-19 22:46:57 -01005A700A166000,"OUT OF THE BOX",,playable,2021-01-28 01:34:27 -0100D9F013102000,"Outbreak Lost Hope",crash,boots,2021-04-26 18:01:23 -01006EE013100000,"Outbreak The Nightmare Chronicles",,playable,2022-10-13 10:41:57 -0100A0D013464000,"Outbreak: Endless Nightmares",,playable,2022-10-29 12:35:49 -0100C850130FE000,"Outbreak: Epidemic",,playable,2022-10-13 10:27:31 -0100B450130FC000,"Outbreak: The New Nightmare",,playable,2022-10-19 15:42:07 -0100B8900EFA6000,"Outbuddies DX",gpu,ingame,2022-08-04 22:39:24 -0100DE70085E8000,"Outlast 2",crash;nvdec,ingame,2022-01-22 22:28:05 -01008D4007A1E000,"Outlast: Bundle of Terror",nvdec;loader-allocator;vulkan-backend-bug,playable,2024-01-27 04:44:26 -01009B900401E000,"Overcooked Special Edition",,playable,2022-08-08 20:48:52 -01006FD0080B2000,"Overcooked! 2",ldn-untested,playable,2022-08-08 16:48:10 -0100F28011892000,"Overcooked! All You Can Eat",ldn-untested;online,playable,2021-04-15 10:33:52 -0100D7F00EC64000,"Overlanders",nvdec;UE4,playable,2022-09-14 20:15:06 -01008EA00E816000,"OVERPASS™",online-broken;UE4;ldn-untested,playable,2022-10-17 15:29:47 -0100647012F62000,"Override 2: Super Mech League",online-broken;UE4,playable,2022-10-19 15:56:04 -01008A700F7EE000,"Override: Mech City Brawl - Super Charged Mega Edition",nvdec;online-broken;UE4,playable,2022-09-20 17:33:32 -0100F8600E21E000,"Overwatch® 2",deadlock,boots,2022-09-14 20:22:22 -01005F000CC18000,"OVERWHELM",,playable,2021-01-21 18:37:18 -0100BC2004FF4000,"Owlboy",,playable,2020-10-19 14:24:45 -0100AD9012510000,"PAC-MAN™ 99",gpu;online-broken,ingame,2024-04-23 00:48:25 -010024C001224000,"PAC-MAN™ CHAMPIONSHIP EDITION 2 PLUS",,playable,2021-01-19 22:06:18 -011123900AEE0000,"Paladins",online,menus,2021-01-21 19:21:37 -0100F0D004CAE000,"PAN-PAN A tiny big adventure",audout,playable,2021-01-25 14:42:00 -010083700B730000,"Pang Adventures",,playable,2021-04-10 12:16:59 -010006E00DFAE000,"Pantsu Hunter: Back to the 90s",,playable,2021-02-19 15:12:27 -0100C6A00E94A000,"Panzer Dragoon: Remake",,playable,2020-10-04 04:03:55 -01004AE0108E0000,"Panzer Paladin",,playable,2021-05-05 18:26:00 -010004500DE50000,"Paper Dolls Original",UE4;crash,boots,2020-07-13 20:26:21 -0100A3900C3E2000,"Paper Mario™: The Origami King",audio;Needs Update,playable,2024-08-09 18:27:40 -0100ECD018EBE000,"Paper Mario™: The Thousand-Year Door",gpu;intel-vendor-bug;slow,ingame,2025-01-07 04:27:35 -01006AD00B82C000,"Paperbound Brawlers",,playable,2021-01-25 14:32:15 -0100DC70174E0000,"Paradigm Paradox",vulkan-backend-bug,playable,2022-12-03 22:28:13 -01007FB010DC8000,"Paradise Killer",UE4,playable,2022-10-05 19:33:05 -010063400B2EC000,"Paranautical Activity",,playable,2021-01-25 13:49:19 -01006B5012B32000,"Part Time UFO™",crash,ingame,2023-03-03 03:13:05 -01007FC00A040000,"Party Arcade",online-broken;UE4;ldn-untested,playable,2022-08-09 12:32:53 -0100B8E00359E000,"Party Golf",nvdec,playable,2022-08-09 12:38:30 -010022801217E000,"Party Hard 2",nvdec,playable,2022-10-05 20:31:48 -010027D00F63C000,"Party Treats",,playable,2020-07-02 00:05:00 -01001E500EA16000,"Path of Sin: Greed",crash,menus,2021-11-24 08:00:00 -010031F006E76000,"Pato Box",,playable,2021-01-25 15:17:52 -01001F201121E000,"PAW Patrol Mighty Pups Save Adventure Bay",,playable,2022-10-13 12:17:55 -0100360016800000,"PAW Patrol: Grand Prix",gpu,ingame,2024-05-03 16:16:11 -0100CEC003A4A000,"PAW Patrol: On a Roll!",nvdec,playable,2021-01-28 21:14:49 -01000C4015030000,"Pawapoke R",services-horizon,nothing,2024-05-14 14:28:32 -0100A56006CEE000,"Pawarumi",online-broken,playable,2022-09-10 15:19:33 -0100274004052000,"PAYDAY 2",nvdec;online-broken;ldn-untested,playable,2022-08-09 12:56:39 -010085700ABC8000,"PBA Pro Bowling",nvdec;online-broken;UE4,playable,2022-09-14 23:00:49 -0100F95013772000,"PBA Pro Bowling 2021",online-broken;UE4,playable,2022-10-19 16:46:40 -010072800CBE8000,"PC Building Simulator",,playable,2020-06-12 00:31:58 -010002100CDCC000,"Peaky Blinders: Mastermind",,playable,2022-10-19 16:56:35 -010028A0048A6000,"Peasant Knight",,playable,2020-12-22 09:30:50 -0100C510049E0000,"Penny-Punching Princess",,playable,2022-08-09 13:37:05 -0100CA901AA9C000,"Penny’s Big Breakaway",amd-vendor-bug,playable,2024-05-27 07:58:51 -0100563005B70000,"Perception",UE4;crash;nvdec,menus,2020-12-18 11:49:23 -010011700D1B2000,"Perchang",,playable,2021-01-25 14:19:52 -010089F00A3B4000,"Perfect Angle",,playable,2021-01-21 18:48:45 -01005CD012DC0000,"Perky Little Things",crash;vulkan,boots,2024-08-04 07:22:46 -01005EB013FBA000,"Persephone",,playable,2021-03-23 22:39:19 -0100A0300FC3E000,"Perseverance",,playable,2020-07-13 18:48:27 -010062B01525C000,"Persona 4 Golden",,playable,2024-08-07 17:48:07 -01005CA01580E000,"Persona 5 Royal",gpu,ingame,2024-08-17 21:45:15 -010087701B092000,"Persona 5 Tactica",,playable,2024-04-01 22:21:03 -,"Persona 5: Scramble",deadlock,boots,2020-10-04 03:22:29 -0100801011C3E000,"Persona® 5 Strikers",nvdec;mac-bug,playable,2023-09-26 09:36:01 -010044400EEAE000,"Petoons Party",nvdec,playable,2021-03-02 21:07:58 -010053401147C000,"PGA TOUR 2K21",deadlock;nvdec,ingame,2022-10-05 21:53:50 -0100DDD00C0EA000,"Phantaruk",,playable,2021-06-11 18:09:54 -0100063005C86000,"Phantom Breaker: Battle Grounds Overdrive",audio;nvdec,playable,2024-02-29 14:20:35 -010096F00E5B0000,"Phantom Doctrine",UE4,playable,2022-09-15 10:51:50 -0100C31005A50000,"Phantom Trigger",,playable,2022-08-09 14:27:30 -0100CB000A142000,"Phoenix Wright: Ace Attorney Trilogy",,playable,2023-09-15 22:03:12 -0100DA400F624000,"PHOGS!",online,playable,2021-01-18 15:18:37 -0100BF1003B9A000,"Physical Contact: 2048",slow,playable,2021-01-25 15:18:32 -01008110036FE000,"Physical Contact: SPEED",,playable,2022-08-09 14:40:46 -010077300A86C000,"PIANISTA",online-broken,playable,2022-08-09 14:52:56 -010012100E8DC000,"PICROSS LORD OF THE NAZARICK",,playable,2023-02-08 15:54:56 -0100C9600A88E000,"PICROSS S2",,playable,2020-10-15 12:01:40 -010079200D330000,"PICROSS S3",,playable,2020-10-15 11:55:27 -0100C250115DC000,"PICROSS S4",,playable,2020-10-15 12:33:46 -0100AC30133EC000,"PICROSS S5",,playable,2022-10-17 18:51:42 -010025901432A000,"PICROSS S6",,playable,2022-10-29 17:52:19 -01009B2016104000,"PICROSS S7",,playable,2022-02-16 12:51:25 -010043B00E1CE000,"PictoQuest",,playable,2021-02-27 15:03:16 -0100D06003056000,"Piczle Lines DX",UE4;crash;nvdec,menus,2020-11-16 04:21:31 -010017600B532000,"Piczle Lines DX 500 More Puzzles!",UE4,playable,2020-12-15 23:42:51 -01000FD00D5CC000,"Pig Eat Ball",services,ingame,2021-11-30 01:57:45 -01001CB0106F8000,"Pikmin 3 Deluxe Demo",32-bit;crash;demo;gpu,ingame,2021-06-16 18:38:07 -0100E0B019974000,"Pikmin 4 Demo",gpu;nvdec;UE4;demo;amd-vendor-bug,ingame,2023-09-22 21:41:08 -0100AA80194B0000,"Pikmin™ 1",audio,ingame,2024-05-28 18:56:11 -0100D680194B2000,"Pikmin™ 1+2",gpu,ingame,2023-07-31 08:53:41 -0100F4C009322000,"Pikmin™ 3 Deluxe",gpu;32-bit;nvdec;Needs Update,ingame,2024-09-03 00:28:26 -0100B7C00933A000,"Pikmin™ 4",gpu;crash;UE4,ingame,2024-08-26 03:39:08 -0100D6200E130000,"Pillars of Eternity: Complete Edition",,playable,2021-02-27 00:24:21 -01007A500B0B2000,"Pilot Sports",,playable,2021-01-20 15:04:17 -0100DA70186D4000,"Pinball FX",,playable,2024-05-03 17:09:11 -0100DB7003828000,"Pinball FX3",online-broken,playable,2022-11-11 23:49:07 -01002BA00D662000,"Pine",slow,ingame,2020-07-29 16:57:39 -010041100B148000,"Pinstripe",,playable,2020-11-26 10:40:40 -01002B20174EE000,"Piofiore: Episodio 1926",,playable,2022-11-23 18:36:05 -01009240117A2000,"Piofiore: Fated Memories",nvdec,playable,2020-11-30 14:27:50 -0100EA2013BCC000,"Pixel Game Maker Series Puzzle Pedestrians",,playable,2022-10-24 20:15:50 -0100859013CE6000,"Pixel Game Maker Series Werewolf Princess Kaguya",crash;services,nothing,2021-03-26 00:23:07 -010060A00F5E8000,"Pixel Gladiator",,playable,2020-07-08 02:41:26 -010000E00E612000,"Pixel Puzzle Makeout League",,playable,2022-10-13 12:34:00 -0100382011002000,"PixelJunk Eden 2",crash,ingame,2020-12-17 11:55:52 -0100E4D00A690000,"PixelJunk™ Monsters 2",,playable,2021-06-07 03:40:01 -01004A900C352000,"Pizza Titan Ultra",nvdec,playable,2021-01-20 15:58:42 -05000FD261232000,"Pizza Tower",crash,ingame,2024-09-16 00:21:56 -0100FF8005EB2000,"Plague Road",,playable,2022-08-09 15:27:14 -010030B00C316000,"Planescape: Torment and Icewind Dale: Enhanced Editions",cpu;32-bit;crash;Needs Update,boots,2022-09-10 03:58:26 -010003C0099EE000,"PLANET ALPHA",UE4;gpu,ingame,2020-12-16 14:42:20 -01007EA019CFC000,"Planet Cube: Edge",,playable,2023-03-22 17:10:12 -0100F0A01F112000,"planetarian: The Reverie of a Little Planet & Snow Globe",,playable,2020-10-17 20:26:20 -010087000428E000,"Plantera Deluxe",,playable,2022-08-09 15:36:28 -0100C56010FD8000,"Plants vs. Zombies: Battle for Neighborville™ Complete Edition",gpu;audio;crash,boots,2024-09-02 12:58:14 -0100E5B011F48000,"PLOID SAGA",,playable,2021-04-19 16:58:45 -01009440095FE000,"Pode",nvdec,playable,2021-01-25 12:58:35 -010086F0064CE000,"Poi: Explorer Edition",nvdec,playable,2021-01-21 19:32:00 -0100EB6012FD2000,"Poison Control",,playable,2021-05-16 14:01:54 -010072400E04A000,"Pokémon Café ReMix",,playable,2021-08-17 20:00:04 -01003D200BAA2000,"Pokémon Mystery Dungeon™: Rescue Team DX",mac-bug,playable,2024-01-21 00:16:32 -01008DB008C2C000,"Pokémon Shield + Pokémon Shield Expansion Pass",deadlock;crash;online-broken;ldn-works;LAN,ingame,2024-08-12 07:20:22 -0100ABF008968000,"Pokémon Sword + Pokémon Sword Expansion Pass",deadlock;crash;online-broken;ldn-works;LAN,ingame,2024-08-26 15:40:37 -01009AD008C4C000,"Pokémon: Let's Go, Pikachu! demo",slow;demo,playable,2023-11-26 11:23:20 -0100000011D90000,"Pokémon™ Brilliant Diamond",gpu;ldn-works,ingame,2024-08-28 13:26:35 -010015F008C54000,"Pokémon™ HOME",Needs Update;crash;services,menus,2020-12-06 06:01:51 -01001F5010DFA000,"Pokémon™ Legends: Arceus",gpu;Needs Update;ldn-works,ingame,2024-09-19 10:02:02 -01005D100807A000,"Pokémon™ Quest",,playable,2022-02-22 16:12:32 -0100A3D008C5C000,"Pokémon™ Scarlet",gpu;nvdec;ldn-works;amd-vendor-bug,ingame,2023-12-14 13:18:29 -01008F6008C5E000,"Pokémon™ Violet",gpu;nvdec;ldn-works;amd-vendor-bug;mac-bug,ingame,2024-07-30 02:51:48 -0100187003A36000,"Pokémon™: Let’s Go, Eevee!",crash;nvdec;online-broken;ldn-broken,ingame,2024-06-01 15:03:04 -010003F003A34000,"Pokémon™: Let’s Go, Pikachu!",crash;nvdec;online-broken;ldn-broken,ingame,2024-03-15 07:55:41 -0100B3F000BE2000,"Pokkén Tournament™ DX",nvdec;ldn-works;opengl-backend-bug;LAN;amd-vendor-bug;intel-vendor-bug,playable,2024-07-18 23:11:08 -010030D005AE6000,"Pokkén Tournament™ DX Demo",demo;opengl-backend-bug,playable,2022-08-10 12:03:19 -0100A3500B4EC000,"Polandball: Can Into Space",,playable,2020-06-25 15:13:26 -0100EAB00605C000,"Poly Bridge",services,playable,2020-06-08 23:32:41 -010017600B180000,"Polygod",slow;regression,ingame,2022-08-10 14:38:14 -010074B00ED32000,"Polyroll",gpu,boots,2021-07-01 16:16:50 -010096B01179A000,"Ponpu",,playable,2020-12-16 19:09:34 -01005C5011086000,"Pooplers",,playable,2020-11-02 11:52:10 -01007EF013CA0000,"Port Royale 4",crash;nvdec,menus,2022-10-30 14:34:06 -01007BB017812000,"Portal",,playable,2024-06-12 03:48:29 -0100ABD01785C000,"Portal 2",gpu,ingame,2023-02-20 22:44:15 -010050D00FE0C000,"Portal Dogs",,playable,2020-09-04 12:55:46 -0100437004170000,"Portal Knights",ldn-untested;online,playable,2021-05-27 19:29:04 -01005FC010EB2000,"Potata: Fairy Flower",nvdec,playable,2020-06-17 09:51:34 -01000A4014596000,"Potion Party",,playable,2021-05-06 14:26:54 -0100E1E00CF1A000,"Power Rangers: Battle for the Grid",,playable,2020-06-21 16:52:42 -0100D1C01C194000,"Powerful Pro Baseball 2024-2025",gpu,ingame,2024-08-25 06:40:48 -01008E100E416000,"PowerSlave Exhumed",gpu,ingame,2023-07-31 23:19:10 -010054F01266C000,"Prehistoric Dude",gpu,ingame,2020-10-12 12:38:48 -,"Pretty Princess Magical Coordinate",,playable,2020-10-15 11:43:41 -01007F00128CC000,"Pretty Princess Party",,playable,2022-10-19 17:23:58 -010009300D278000,"Preventive Strike",nvdec,playable,2022-10-06 10:55:51 -0100210019428000,"Prince of Persia The Lost Crown",crash,ingame,2024-06-08 21:31:58 -01007A3009184000,"Princess Peach™: Showtime!",UE4,playable,2024-09-21 13:39:45 -010024701DC2E000,"Princess Peach™: Showtime! Demo",UE4;demo,playable,2024-03-10 17:46:45 -01001FA01451C000,"Prinny Presents NIS Classics Volume 1: Phantom Brave: The Hermuda Triangle Remastered / Soul Nomad & the World Eaters",crash;Needs Update,boots,2023-02-02 07:23:09 -01008FA01187A000,"Prinny® 2: Dawn of Operation Panties, Dood!",32-bit,playable,2022-10-13 12:42:58 -01007A0011878000,"Prinny®: Can I Really Be the Hero?",32-bit;nvdec,playable,2023-10-22 09:25:25 -010007F00879E000,"PriPara: All Idol Perfect Stage",,playable,2022-11-22 16:35:52 -010029200AB1C000,"Prison Architect: Nintendo Switch™ Edition",,playable,2021-04-10 12:27:58 -0100C1801B914000,"Prison City",gpu,ingame,2024-03-01 08:19:33 -0100F4800F872000,"Prison Princess",,playable,2022-11-20 15:00:25 -0100A9800A1B6000,"Professional Construction – The Simulation",slow,playable,2022-08-10 15:15:45 -010077B00BDD8000,"Professional Farmer: Nintendo Switch™ Edition",slow,playable,2020-12-16 13:38:19 -010018300C83A000,"Professor Lupo and his Horrible Pets",,playable,2020-06-12 00:08:45 -0100D1F0132F6000,"Professor Lupo: Ocean",,playable,2021-04-14 16:33:33 -0100BBD00976C000,"Project Highrise: Architect's Edition",,playable,2022-08-10 17:19:12 -0100ACE00DAB6000,"Project Nimbus: Complete Edition",nvdec;UE4;vulkan-backend-bug,playable,2022-08-10 17:35:43 -01002980140F6000,"Project TRIANGLE STRATEGY™ Debut Demo",UE4;demo,playable,2022-10-24 21:40:27 -0100BDB01150E000,"Project Warlock",,playable,2020-06-16 10:50:41 -,"Psikyo Collection Vol 1",32-bit,playable,2020-10-11 13:18:47 -0100A2300DB78000,"Psikyo Collection Vol. 3",,ingame,2021-06-07 02:46:23 -01009D400C4A8000,"Psikyo Collection Vol.2",32-bit,playable,2021-06-07 03:22:07 -01007A200F2E2000,"Psikyo Shooting Stars Alpha",32-bit,playable,2021-04-13 12:03:43 -0100D7400F2E4000,"Psikyo Shooting Stars Bravo",32-bit,playable,2021-06-14 12:09:07 -0100EC100A790000,"PSYVARIAR DELTA",nvdec,playable,2021-01-20 13:01:46 -,"Puchitto kurasutā",Need-Update;crash;services,menus,2020-07-04 16:44:28 -0100D61010526000,"Pulstario",,playable,2022-10-06 11:02:01 -01009AE00B788000,"Pumped BMX Pro",nvdec;online-broken,playable,2022-09-20 17:40:50 -01006C10131F6000,"Pumpkin Jack",nvdec;UE4,playable,2022-10-13 12:52:32 -010016400F07E000,"Push the Crate",nvdec;UE4,playable,2022-09-15 13:28:41 -0100B60010432000,"Push the Crate 2",UE4;gpu;nvdec,ingame,2021-06-10 14:20:01 -0100F1200F6D8000,"Pushy and Pully in Blockland",,playable,2020-07-04 11:44:41 -0100AAE00CAB4000,"Puyo Puyo Champions",online,playable,2020-06-19 11:35:08 -010038E011940000,"Puyo Puyo™ Tetris® 2",ldn-untested,playable,2023-09-26 11:35:25 -0100C5700ECE0000,"Puzzle & Dragons GOLD",slow,playable,2020-05-13 15:09:34 -010079E01A1E0000,"Puzzle Bobble Everybubble!",audio;ldn-works,playable,2023-06-10 03:53:40 -010043100F0EA000,"Puzzle Book",,playable,2020-09-28 13:26:01 -0100476004A9E000,"Puzzle Box Maker",nvdec;online-broken,playable,2022-08-10 18:00:52 -0100A4E017372000,"Pyramid Quest",gpu,ingame,2023-08-16 21:14:52 -0100F1100E606000,"Q-YO Blaster",gpu,ingame,2020-06-07 22:36:53 -010023600AA34000,"Q.U.B.E. 2",UE4,playable,2021-03-03 21:38:57 -0100A8D003BAE000,"Qbics Paint",gpu;services,ingame,2021-06-07 10:54:09 -0100BA5012E54000,"QUAKE",gpu;crash,menus,2022-08-08 12:40:34 -010048F0195E8000,"Quake II",,playable,2023-08-15 03:42:14 -,"QuakespasmNX",crash;homebrew,nothing,2022-07-23 19:28:07 -010045101288A000,"Quantum Replica",nvdec;UE4,playable,2022-10-30 21:17:22 -0100F1400BA88000,"Quarantine Circular",,playable,2021-01-20 15:24:15 -0100DCF00F13A000,"Queen's Quest 4: Sacred Truce",nvdec,playable,2022-10-13 12:59:21 -0100492012378000,"Quell",gpu,ingame,2021-06-11 15:59:53 -01001DE005012000,"Quest of Dungeons",,playable,2021-06-07 10:29:22 -,"QuietMansion2",,playable,2020-09-03 14:59:35 -0100AF100EE76000,"Quiplash 2 InterLASHional: The Say Anything Party Game!",online-working,playable,2022-10-19 17:43:45 -0100E5400BE64000,"R-Type Dimensions EX",,playable,2020-10-09 12:04:43 -0100F930136B6000,"R-Type® Final 2",slow;nvdec;UE4,ingame,2022-10-30 21:46:29 -01007B0014300000,"R-Type® Final 2 Demo",slow;nvdec;UE4;demo,ingame,2022-10-24 21:57:42 -0100B5A004302000,"R.B.I. Baseball 17",online-working,playable,2022-08-11 11:55:47 -01005CC007616000,"R.B.I. Baseball 18",nvdec;online-working,playable,2022-08-11 11:27:52 -0100FCB00BF40000,"R.B.I. Baseball 19",nvdec;online-working,playable,2022-08-11 11:43:52 -010061400E7D4000,"R.B.I. Baseball 20",,playable,2021-06-15 21:16:29 -0100B4A0115CA000,"R.B.I. Baseball 21",online-working,playable,2022-10-24 22:31:45 -01005BF00E4DE000,"Rabi-Ribi",,playable,2022-08-06 17:02:44 -010075D00DD04000,"Race with Ryan",UE4;gpu;nvdec;slow,ingame,2020-11-16 04:35:33 -0100B8100C54A000,"Rack N Ruin",,playable,2020-09-04 15:20:26 -010024400C516000,"RAD",gpu;crash;UE4,menus,2021-11-29 02:01:56 -010000600CD54000,"Rad Rodgers Radical Edition",nvdec;online-broken,playable,2022-08-10 19:57:23 -0100DA400E07E000,"Radiation City",crash,ingame,2022-09-30 11:15:04 -01009E40095EE000,"Radiation Island",opengl;vulkan-backend-bug,ingame,2022-08-11 10:51:04 -0100C8B00D2BE000,"Radical Rabbit Stew",,playable,2020-08-03 12:02:56 -0100BAD013B6E000,"Radio Commander",nvdec,playable,2021-03-24 11:20:46 -01008FA00ACEC000,"RADIOHAMMER STATION",audout,playable,2021-02-26 20:20:06 -01003D00099EC000,"Raging Justice",,playable,2021-06-03 14:06:50 -01005CD013116000,"Raiden IV x Mikado Remix [ 雷電Ⅳ×MIKADO remix ]",,playable,2022-07-29 15:50:13 -01002B000D97E000,"Raiden V: Director's Cut",deadlock;nvdec,boots,2024-07-12 07:31:46 -01002EE00DC02000,"Railway Empire - Nintendo Switch™ Edition",nvdec,playable,2022-10-03 13:53:50 -01003C700D0DE000,"Rain City",,playable,2020-10-08 16:59:03 -0100BDD014232000,"Rain on Your Parade",,playable,2021-05-06 19:32:04 -010047600BF72000,"Rain World",,playable,2023-05-10 23:34:08 -01009D9010B9E000,"Rainbows, toilets & unicorns",nvdec,playable,2020-10-03 18:08:18 -010010B00DDA2000,"Raji: An Ancient Epic",UE4;gpu;nvdec,ingame,2020-12-16 10:05:25 -010042A00A9CC000,"Rapala Fishing Pro Series",nvdec,playable,2020-12-16 13:26:53 -0100E73010754000,"Rascal Fight",,playable,2020-10-08 13:23:30 -010003F00C5C0000,"Rawr-Off",crash;nvdec,menus,2020-07-02 00:14:44 -01005FF002E2A000,"Rayman® Legends Definitive Edition",nvdec;ldn-works,playable,2023-05-27 18:33:07 -0100F03011616000,"Re:Turn - One Way Trip",,playable,2022-08-29 22:42:53 -01000B20117B8000,"Re:ZERO -Starting Life in Another World- The Prophecy of the Throne",gpu;crash;nvdec;vulkan,boots,2023-03-07 21:27:24 -0100A8A00E462000,"Real Drift Racing",,playable,2020-07-25 14:31:31 -010048600CC16000,"Real Heroes: Firefighter",,playable,2022-09-20 18:18:44 -0100E64010BAA000,"realMyst: Masterpiece Edition",nvdec,playable,2020-11-30 15:25:42 -01000F300F082000,"Reaper: Tale of a Pale Swordsman",,playable,2020-12-12 15:12:23 -0100D9B00E22C000,"Rebel Cops",,playable,2022-09-11 10:02:53 -0100CAA01084A000,"Rebel Galaxy Outlaw",nvdec,playable,2022-12-01 07:44:56 -0100EF0015A9A000,"Record of Lodoss War-Deedlit in Wonder Labyrinth-",deadlock;Needs Update;Incomplete,ingame,2022-01-19 10:00:59 -0100CF600FF7A000,"Red Bow",services,ingame,2021-11-29 03:51:34 -0100351013A06000,"Red Colony",,playable,2021-01-25 20:44:41 -01007820196A6000,"Red Dead Redemption",amd-vendor-bug,playable,2024-09-13 13:26:13 -0100069010592000,"Red Death",,playable,2020-08-30 13:07:37 -010075000C608000,"Red Faction Guerrilla Re-Mars-tered",ldn-untested;nvdec;online,playable,2021-06-07 03:02:13 -01002290070E4000,"Red Game Without a Great Name",,playable,2021-01-19 21:42:35 -010045400D73E000,"Red Siren: Space Defense",UE4,playable,2021-04-25 21:21:29 -0100D8A00E880000,"Red Wings: Aces of the Sky",,playable,2020-06-12 01:19:53 -01000D100DCF8000,"Redeemer: Enhanced Edition",nvdec;UE4;vulkan-backend-bug,playable,2022-09-11 10:20:24 -0100326010B98000,"Redout: Space Assault",UE4,playable,2022-10-19 23:04:35 -010007C00E558000,"Reel Fishing: Road Trip Adventure",,playable,2021-03-02 16:06:43 -010045D01273A000,"Reflection of Mine",audio,playable,2020-12-17 15:06:37 -01003AA00F5C4000,"Refreshing Sideways Puzzle Ghost Hammer",,playable,2020-10-18 12:08:54 -01007A800D520000,"Refunct",UE4,playable,2020-12-15 22:46:21 -0100FDF0083A6000,"Regalia: Of Men and Monarchs - Royal Edition",,playable,2022-08-11 12:24:01 -01005FD00F15A000,"Regions of Ruin",,playable,2020-08-05 11:38:58 -,"Reine des Fleurs",cpu;crash,boots,2020-09-27 18:50:39 -0100F1900B144000,"REKT! High Octane Stunts",online,playable,2020-09-28 12:33:56 -01002AD013C52000,"Relicta",nvdec;UE4,playable,2022-10-31 12:48:33 -010095900B436000,"RemiLore",,playable,2021-06-03 18:58:15 -0100FBD00F5F6000,"Remothered: Broken Porcelain",UE4;gpu;nvdec,ingame,2021-06-17 15:13:11 -01001F100E8AE000,"Remothered: Tormented Fathers",nvdec;UE4,playable,2022-10-19 23:26:50 -01008EE00B22C000,"Rento Fortune",ldn-untested;online,playable,2021-01-19 19:52:21 -01007CC0130C6000,"Renzo Racer",,playable,2021-03-23 22:28:05 -01003C400AD42000,"Rescue Tale",,playable,2022-09-20 18:40:18 -010099A00BC1E000,"resident evil 4",nvdec,playable,2022-11-16 21:16:04 -010018100CD46000,"Resident Evil 5",nvdec,playable,2024-02-18 17:15:29 -01002A000CD48000,"Resident Evil 6",nvdec,playable,2022-09-15 14:31:47 -0100643002136000,"Resident Evil Revelations",nvdec;ldn-untested,playable,2022-08-11 12:44:19 -010095300212A000,"Resident Evil Revelations 2",online-broken;ldn-untested,playable,2022-08-11 12:57:50 -0100E7F00FFB8000,"Resolutiion",crash,boots,2021-04-25 21:57:56 -0100FF201568E000,"Restless Night",crash,nothing,2022-02-09 10:54:49 -0100069000078000,"Retail Interactive Display Menu (DevQuestMenu)",services;crash,nothing,2022-08-11 13:19:41 -010086E00BCB2000,"Retimed",,playable,2022-08-11 13:32:39 -0100F17004156000,"Retro City Rampage DX",,playable,2021-01-05 17:04:17 -01000ED014A2C000,"Retro Machina",online-broken,playable,2022-10-31 13:38:58 -010032E00E6E2000,"Return of the Obra Dinn",,playable,2022-09-15 19:56:45 -010027400F708000,"Revenge of Justice",nvdec,playable,2022-11-20 15:43:23 -0100E2E00EA42000,"Reventure",,playable,2022-09-15 20:07:06 -010071D00F156000,"REZ PLZ",,playable,2020-10-24 13:26:12 -0100729012D18000,"Rhythm Fighter",crash,nothing,2021-02-16 18:51:30 -010081D0100F0000,"Rhythm of the Gods",UE4;crash,nothing,2020-10-03 17:39:59 -01009D5009234000,"RICO",nvdec;online-broken,playable,2022-08-11 20:16:40 -01002C700C326000,"Riddled Corpses EX",,playable,2021-06-06 16:02:44 -0100AC600D898000,"Rift Keeper",,playable,2022-09-20 19:48:20 -0100A62002042000,"RiME",UE4;crash;gpu,boots,2020-07-20 15:52:38 -01006AC00EE6E000,"Rimelands: Hammer of Thor",,playable,2022-10-13 13:32:56 -01002FF008C24000,"RingFit Adventure",crash;services,nothing,2021-04-14 19:00:01 -010088E00B816000,"RIOT - Civil Unrest",,playable,2022-08-11 20:27:56 -01002A6006AA4000,"Riptide GP: Renegade",online,playable,2021-04-13 23:33:02 -010065B00B0EC000,"Rise and Shine",,playable,2020-12-12 15:56:43 -0100E9C010EA8000,"Rise of Insanity",,playable,2020-08-30 15:42:14 -01006BA00E652000,"Rise: Race The Future",,playable,2021-02-27 13:29:06 -010020C012F48000,"Rising Hell",,playable,2022-10-31 13:54:02 -010076D00E4BA000,"Risk of Rain 2",online-broken,playable,2024-03-04 17:01:05 -0100E8300A67A000,"RISK® Global Domination",nvdec;online-broken,playable,2022-08-01 18:53:28 -010042500FABA000,"Ritual: Crown of Horns",,playable,2021-01-26 16:01:47 -0100BD300F0EC000,"Ritual: Sorcerer Angel",,playable,2021-03-02 13:51:19 -0100A7D008392000,"Rival Megagun",nvdec;online,playable,2021-01-19 14:01:46 -010069C00401A000,"RIVE: Ultimate Edition",,playable,2021-03-24 18:45:55 -01004E700DFE6000,"River City Girls",nvdec,playable,2020-06-10 23:44:09 -01002E80168F4000,"River City Girls 2",,playable,2022-12-07 00:46:27 -0100B2100767C000,"River City Melee Mach!!",online-broken,playable,2022-09-20 20:51:57 -01008AC0115C6000,"RMX Real Motocross",,playable,2020-10-08 21:06:15 -010053000B986000,"Road Redemption",online-broken,playable,2022-08-12 11:26:20 -010002F009A7A000,"Road to Ballhalla",UE4,playable,2021-06-07 02:22:36 -0100735010F58000,"Road To Guangdong",slow,playable,2020-10-12 12:15:32 -010068200C5BE000,"Roarr! Jurassic Edition",,playable,2022-10-19 23:57:45 -0100618004096000,"Robonauts",nvdec,playable,2022-08-12 11:33:23 -010039A0117C0000,"ROBOTICS;NOTES DaSH",,playable,2020-11-16 23:09:54 -01002A900EE8A000,"ROBOTICS;NOTES ELITE",,playable,2020-11-26 10:28:20 -010044A010BB8000,"Robozarro",,playable,2020-09-03 13:33:40 -01000CC012D74000,"Rock 'N Racing Bundle Grand Prix & Rally",,playable,2021-01-06 20:23:57 -0100A1B00DB36000,"Rock of Ages 3: Make & Break",UE4,playable,2022-10-06 12:18:29 -0100513005AF4000,"Rock'N Racing Off Road DX",,playable,2021-01-10 15:27:15 -01005EE0036EC000,"Rocket League®",gpu;online-broken;ldn-untested,ingame,2024-02-08 19:51:36 -0100E88009A34000,"Rocket Wars",,playable,2020-07-24 14:27:39 -0100EC7009348000,"Rogue Aces",gpu;services;nvdec,ingame,2021-11-30 02:18:30 -01009FA010848000,"Rogue Heroes: Ruins of Tasos",online,playable,2021-04-01 15:41:25 -010056500AD50000,"Rogue Legacy",,playable,2020-08-10 19:17:28 -0100F3B010F56000,"Rogue Robots",,playable,2020-06-16 12:16:11 -01001CC00416C000,"Rogue Trooper Redux",nvdec;online-broken,playable,2022-08-12 11:53:01 -0100C7300C0EC000,"RogueCube",,playable,2021-06-16 12:16:42 -0100B7200FC96000,"Roll'd",,playable,2020-07-04 20:24:01 -01004900113F8000,"RollerCoaster Tycoon 3 Complete Edition",32-bit,playable,2022-10-17 14:18:01 -0100E3900B598000,"RollerCoaster Tycoon Adventures",nvdec,playable,2021-01-05 18:14:18 -010076200CA16000,"Rolling Gunner",,playable,2021-05-26 12:54:18 -0100579011B40000,"Rolling Sky 2",,playable,2022-11-03 10:21:12 -010050400BD38000,"Roman Rumble in Las Vegum - Asterix & Obelix XXL 2",deadlock;nvdec,ingame,2022-07-21 17:54:14 -01001F600829A000,"Romancing SaGa 2",,playable,2022-08-12 12:02:24 -0100D0400D27A000,"Romancing SaGa 3",audio;gpu,ingame,2020-06-27 20:26:18 -010088100DD42000,"Roof Rage",crash;regression,boots,2023-11-12 03:47:18 -0100F3000FA58000,"Roombo: First Blood",nvdec,playable,2020-08-05 12:11:37 -0100936011556000,"Root Double -Before Crime * After Days- Xtend Edition",crash,nothing,2022-02-05 02:03:49 -010030A00DA3A000,"Root Letter: Last Answer",vulkan-backend-bug,playable,2022-09-17 10:25:57 -0100AFE00DDAC000,"Royal Roads",,playable,2020-11-17 12:54:38 -0100E2C00B414000,"RPG Maker MV",nvdec,playable,2021-01-05 20:12:01 -01005CD015986000,"rRootage Reloaded",,playable,2022-08-05 23:20:18 -0000000000000000,"RSDKv5u",homebrew,ingame,2024-04-01 16:25:34 -010009B00D33C000,"Rugby Challenge 4",slow;online-broken;UE4,playable,2022-10-06 12:45:53 -01006EC00F2CC000,"RUINER",UE4,playable,2022-10-03 14:11:33 -010074F00DE4A000,"Run the Fan",,playable,2021-02-27 13:36:28 -0100ADF00700E000,"Runbow",online,playable,2021-01-08 22:47:44 -0100D37009B8A000,"Runbow Deluxe Edition",online-broken,playable,2022-08-12 12:20:25 -010081C0191D8000,"Rune Factory 3 Special",,playable,2023-10-15 08:32:49 -010051D00E3A4000,"Rune Factory 4 Special",32-bit;crash;nvdec,ingame,2023-05-06 08:49:17 -010014D01216E000,"Rune Factory 5 (JP)",gpu,ingame,2021-06-01 12:00:36 -0100E21013908000,"RWBY: Grimm Eclipse - Definitive Edition",online-broken,playable,2022-11-03 10:44:01 -010012C0060F0000,"RXN -Raijin-",nvdec,playable,2021-01-10 16:05:43 -0100B8B012ECA000,"S.N.I.P.E.R. - Hunter Scope",,playable,2021-04-19 15:58:09 -010007700CFA2000,"Saboteur II: Avenging Angel",Needs Update;cpu;crash,nothing,2021-01-26 14:47:37 -0100D94012FE8000,"Saboteur SiO",slow,ingame,2020-12-17 16:59:49 -0100A5200C2E0000,"Safety First!",,playable,2021-01-06 09:05:23 -0100A51013530000,"SaGa Frontier Remastered",nvdec,playable,2022-11-03 13:54:56 -010003A00D0B4000,"SaGa SCARLET GRACE: AMBITIONS™",,playable,2022-10-06 13:20:31 -01008D100D43E000,"Saints Row IV®: Re-Elected™",ldn-untested;LAN,playable,2023-12-04 18:33:37 -0100DE600BEEE000,"SAINTS ROW®: THE THIRD™ - THE FULL PACKAGE",slow;LAN,playable,2023-08-24 02:40:58 -01007F000EB36000,"Sakai and...",nvdec,playable,2022-12-15 13:53:19 -0100B1400E8FE000,"Sakuna: Of Rice and Ruin",,playable,2023-07-24 13:47:13 -0100BBF0122B4000,"Sally Face",,playable,2022-06-06 18:41:24 -0100D250083B4000,"Salt and Sanctuary",,playable,2020-10-22 11:52:19 -0100CD301354E000,"Sam & Max Save the World",,playable,2020-12-12 13:11:51 -010014000C63C000,"Samsara: Deluxe Edition",,playable,2021-01-11 15:14:12 -0100ADF0096F2000,"Samurai Aces for Nintendo Switch",32-bit,playable,2020-11-24 20:26:55 -01006C600E46E000,"Samurai Jack: Battle Through Time",nvdec;UE4,playable,2022-10-06 13:33:59 -01002DF00F76C000,"SAMURAI SHODOWN",UE4;crash;nvdec,menus,2020-09-06 02:17:00 -0100F6800F48E000,"SAMURAI SHODOWN NEOGEO COLLECTION",nvdec,playable,2021-06-14 17:12:56 -0100B6501A360000,"Samurai Warrior",,playable,2023-02-27 18:42:38 -,"Sangoku Rensenki ~Otome no Heihou!~",gpu;nvdec,ingame,2020-10-17 19:13:14 -0100A4700BC98000,"Satsujin Tantei Jack the Ripper",,playable,2021-06-21 16:32:54 -0100F0000869C000,"Saturday Morning RPG",nvdec,playable,2022-08-12 12:41:50 -01006EE00380C000,"Sausage Sports Club",gpu,ingame,2021-01-10 05:37:17 -0100C8300FA90000,"Save Koch",,playable,2022-09-26 17:06:56 -0100D6E008700000,"Save the Ninja Clan",,playable,2021-01-11 13:56:37 -010091000F72C000,"Save Your Nuts",nvdec;online-broken;UE4,playable,2022-09-27 23:12:02 -0100AA00128BA000,"Saviors of Sapphire Wings / Stranger of Sword City Revisited",crash,menus,2022-10-24 23:00:46 -01001C3012912000,"Say No! More",,playable,2021-05-06 13:43:34 -010010A00A95E000,"Sayonara Wild Hearts",,playable,2023-10-23 03:20:01 -0100ACB004006000,"Schlag den Star",slow;nvdec,playable,2022-08-12 14:28:22 -0100394011C30000,"Scott Pilgrim vs. The World™: The Game – Complete Edition",services-horizon;crash,nothing,2024-07-12 08:13:03 -0100E7100B198000,"Scribblenauts Mega Pack",nvdec,playable,2020-12-17 22:56:14 -01001E40041BE000,"Scribblenauts Showdown",gpu;nvdec,ingame,2020-12-17 23:05:53 -0100829018568000,"SD GUNDAM BATTLE ALLIANCE Demo",audio;crash;demo,ingame,2022-08-01 23:01:20 -010055700CEA8000,"SD GUNDAM G GENERATION CROSS RAYS",nvdec,playable,2022-09-15 20:58:44 -010022900D3EC00,"SD GUNDAM G GENERATION CROSS RAYS PREMIUM G SOUND EDITION",nvdec,playable,2022-09-15 20:45:57 -0100E4A00D066000,"Sea King",UE4;nvdec,playable,2021-06-04 15:49:22 -0100AFE012BA2000,"Sea of Solitude: The Director's Cut",gpu,ingame,2024-07-12 18:29:29 -01008C0016544000,"Sea of Stars",,playable,2024-03-15 20:27:12 -010036F0182C4000,"Sea of Stars Demo",demo,playable,2023-02-12 15:33:56 -0100C2400D68C000,"SeaBed",,playable,2020-05-17 13:25:37 -010077100CA6E000,"Season Match Bundle",,playable,2020-10-27 16:15:22 -010028F010644000,"Secret Files 3",nvdec,playable,2020-10-24 15:32:39 -010075D0101FA000,"Seek Hearts",,playable,2022-11-22 15:06:26 -0100394010844000,"Seers Isle",,playable,2020-11-17 12:28:50 -0100A8900AF04000,"SEGA AGES Alex Kidd in Miracle World",online,playable,2021-05-05 16:35:47 -01001E600AF08000,"SEGA AGES Gain Ground",online,playable,2021-05-05 16:16:27 -0100D4D00AC62000,"SEGA AGES Out Run",,playable,2021-01-11 13:13:59 -01005A300C9F6000,"SEGA AGES Phantasy Star",,playable,2021-01-11 12:49:48 -01005F600CB0E000,"SEGA AGES Puyo Puyo",online,playable,2021-05-05 16:09:28 -010051F00AC5E000,"SEGA AGES Sonic The Hedgehog",slow,playable,2023-03-05 20:16:31 -01000D200C614000,"SEGA AGES Sonic The Hedgehog 2",,playable,2022-09-21 20:26:35 -0100C3E00B700000,"SEGA AGES Space Harrier",,playable,2021-01-11 12:57:40 -010054400D2E6000,"SEGA AGES Virtua Racing",online-broken,playable,2023-01-29 17:08:39 -01001E700AC60000,"SEGA AGES Wonder Boy: Monster Land",online,playable,2021-05-05 16:28:25 -0100B3C014BDA000,"SEGA Genesis™ – Nintendo Switch Online",crash;regression,nothing,2022-04-11 07:27:21 -,"SEGA Mega Drive Classics",online,playable,2021-01-05 11:08:00 -01009840046BC000,"Semispheres",,playable,2021-01-06 23:08:31 -0100D1800D902000,"SENRAN KAGURA Peach Ball",,playable,2021-06-03 15:12:10 -0100E0C00ADAC000,"SENRAN KAGURA Reflexions",,playable,2020-03-23 19:15:23 -01009E500D29C000,"Sentinels of Freedom",,playable,2021-06-14 16:42:19 -0100A5D012DAC000,"SENTRY",,playable,2020-12-13 12:00:24 -010059700D4A0000,"Sephirothic Stories",services,menus,2021-11-25 08:52:17 -010007D00D43A000,"Serious Sam Collection",vulkan-backend-bug,boots,2022-10-13 13:53:34 -0100B2C00E4DA000,"Served!",nvdec,playable,2022-09-28 12:46:00 -010018400C24E000,"Seven Knights -Time Wanderer-",vulkan-backend-bug,playable,2022-10-13 22:08:54 -0100D6F016676000,"Seven Pirates H",,playable,2024-06-03 14:54:12 -0100157004512000,"Severed",,playable,2020-12-15 21:48:48 -0100D5500DA94000,"Shadow Blade: Reload",nvdec,playable,2021-06-11 18:40:43 -0100BE501382A000,"Shadow Gangs",cpu;gpu;crash;regression,ingame,2024-04-29 00:07:26 -0100C3A013840000,"Shadow Man Remastered",gpu,ingame,2024-05-20 06:01:39 -010073400B696000,"Shadowgate",,playable,2021-04-24 07:32:57 -0100371013B3E000,"Shadowrun Returns",gpu;Needs Update,ingame,2022-10-04 21:32:31 -01008310154C4000,"Shadowrun: Dragonfall - Director's Cut",gpu;Needs Update,ingame,2022-10-04 20:52:18 -0100C610154CA000,"Shadowrun: Hong Kong - Extended Edition",gpu;Needs Update,ingame,2022-10-04 20:53:09 -010000000EEF0000,"Shadows 2: Perfidia",,playable,2020-08-07 12:43:46 -0100AD700CBBE000,"Shadows of Adam",,playable,2021-01-11 13:35:58 -01002A800C064000,"Shadowverse Champions Battle",,playable,2022-10-02 22:59:29 -01003B90136DA000,"Shadowverse: Champion's Battle",crash,nothing,2023-03-06 00:31:50 -0100820013612000,"Shady Part of Me",,playable,2022-10-20 11:31:55 -0100B10002904000,"Shakedown: Hawaii",,playable,2021-01-07 09:44:36 -01008DA012EC0000,"Shakes on a Plane",crash,menus,2021-11-25 08:52:25 -0100B4900E008000,"Shalnor Legends: Sacred Lands",,playable,2021-06-11 14:57:11 -010006C00CC10000,"Shanky: The Vegan`s Nightmare",,playable,2021-01-26 15:03:55 -0100430013120000,"Shantae",,playable,2021-05-21 04:53:26 -0100EFD00A4FA000,"Shantae and the Pirate's Curse",,playable,2024-04-29 17:21:57 -0100EB901040A000,"Shantae and the Seven Sirens",nvdec,playable,2020-06-19 12:23:40 -01006A200936C000,"Shantae: Half- Genie Hero Ultimate Edition",,playable,2020-06-04 20:14:20 -0100ADA012370000,"Shantae: Risky's Revenge - Director's Cut",,playable,2022-10-06 20:47:39 -01003AB01062C000,"Shaolin vs Wutang",deadlock,nothing,2021-03-29 20:38:54 -0100B250009B9600,"Shape Of The World0",UE4,playable,2021-03-05 16:42:28 -01004F50085F2000,"She Remembered Caterpillars",,playable,2022-08-12 17:45:14 -01000320110C2000,"She Sees Red - Interactive Movie",nvdec,playable,2022-09-30 11:30:15 -01009EB004CB0000,"Shelter Generations",,playable,2021-06-04 16:52:39 -010020F014DBE000,"Sherlock Holmes: The Devil’s Daughter",gpu,ingame,2022-07-11 00:07:26 -0100B1000AC3A000,"Shift Happens",,playable,2021-01-05 21:24:18 -01000E8009E1C000,"Shift Quantum",UE4;crash,ingame,2020-11-06 21:54:08 -01000750084B2000,"Shiftlings - Enhanced Edition",nvdec,playable,2021-03-04 13:49:54 -01003B0012DC2000,"Shin Megami Tensei III Nocturne HD Remaster",,playable,2022-11-03 22:53:27 -010045800ED1E000,"Shin Megami Tensei III NOCTURNE HD REMASTER",gpu;Needs Update,ingame,2022-11-03 19:57:01 -010063B012DC6000,"Shin Megami Tensei V",UE4,playable,2024-02-21 06:30:07 -010069C01AB82000,"Shin Megami Tensei V: Vengeance",gpu;vulkan-backend-bug,ingame,2024-07-14 11:28:24 -01009050133B4000,"Shing! (サムライフォース:斬!)",nvdec,playable,2022-10-22 00:48:54 -01009A5009A9E000,"Shining Resonance Refrain",nvdec,playable,2022-08-12 18:03:01 -01004EE0104F6000,"Shinsekai Into the Depths™",,playable,2022-09-28 14:07:51 -0100C2F00A568000,"Shio",,playable,2021-02-22 16:25:09 -0100B2E00F13E000,"Shipped",,playable,2020-11-21 14:22:32 -01000E800FCB4000,"Ships",,playable,2021-06-11 16:14:37 -01007430122D0000,"Shiren the Wanderer: The Tower of Fortune and the Dice of Fate",nvdec,playable,2022-10-20 11:44:36 -,"Shiritsu Berubara Gakuen ~Versailles no Bara Re*imagination~",cpu;crash,boots,2020-09-27 19:01:25 -01000244016BAE00,"Shiro0",gpu,ingame,2024-01-13 08:54:39 -0100CCE00DDB6000,"Shoot 1UP DX",,playable,2020-12-13 12:32:47 -01001180021FA000,"Shovel Knight: Specter of Torment",,playable,2020-05-30 08:34:17 -010057D0021E8000,"Shovel Knight: Treasure Trove",,playable,2021-02-14 18:24:39 -01003DD00BF0E000,"Shred! 2 - ft Sam Pilgrim",,playable,2020-05-30 14:34:09 -01001DE0076A4000,"Shu",nvdec,playable,2020-05-30 09:08:59 -0100A7900B936000,"Shut Eye",,playable,2020-07-23 18:08:35 -010044500C182000,"Sid Meier’s Civilization VI",ldn-untested,playable,2024-04-08 16:03:40 -01007FC00B674000,"Sigi - A Fart for Melusina",,playable,2021-02-22 16:46:58 -0100F1400B0D6000,"Silence",nvdec,playable,2021-06-03 14:46:17 -0100A32010618000,"Silent World",,playable,2020-08-28 13:45:13 -010045500DFE2000,"Silk",nvdec,playable,2021-06-10 15:34:37 -010016D00A964000,"SilverStarChess",,playable,2021-05-06 15:25:57 -0100E8C019B36000,"Simona's Requiem",gpu,ingame,2023-02-21 18:29:19 -01006FE010438000,"Sin Slayers",,playable,2022-10-20 11:53:52 -01002820036A8000,"Sine Mora EX",gpu;online-broken,ingame,2022-08-12 19:36:18 -0100F10012002000,"Singled Out",online,playable,2020-08-03 13:06:18 -0100B8800F858000,"Sinless",nvdec,playable,2020-08-09 20:18:55 -0100B16009C10000,"SINNER: Sacrifice for Redemption",nvdec;UE4;vulkan-backend-bug,playable,2022-08-12 20:37:33 -0100E9201410E000,"Sir Lovelot",,playable,2021-04-05 16:21:46 -0100134011E32000,"Skate City",,playable,2022-11-04 11:37:39 -0100B2F008BD8000,"Skee-Ball",,playable,2020-11-16 04:44:07 -01001A900F862000,"Skelattack",,playable,2021-06-09 15:26:26 -01008E700F952000,"Skelittle: A Giant Party!",,playable,2021-06-09 19:08:34 -01006C000DC8A000,"Skelly Selest",,playable,2020-05-30 15:38:18 -0100D67006F14000,"Skies of Fury DX",,playable,2020-05-30 16:40:54 -010046B00DE62000,"Skullgirls 2nd Encore",,playable,2022-09-15 21:21:25 -0100D1100BF9C000,"Skulls of the Shogun: Bone-A-Fide Edition",,playable,2020-08-31 18:58:12 -0100D7B011654000,"Skully",nvdec;UE4,playable,2022-10-06 13:52:59 -010083100B5CA000,"Sky Force Anniversary",online-broken,playable,2022-08-12 20:50:07 -01006FE005B6E000,"Sky Force Reloaded",,playable,2021-01-04 20:06:57 -010003F00CC98000,"Sky Gamblers - Afterburner",gpu;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-12 21:04:55 -010093D00AC38000,"Sky Gamblers: Storm Raiders",gpu;audio;32-bit,ingame,2022-08-12 21:13:36 -010068200E96E000,"Sky Gamblers: Storm Raiders 2",gpu,ingame,2022-09-13 12:24:04 -01004F0010A02000,"Sky Racket",,playable,2020-09-07 12:22:24 -0100DDB004F30000,"Sky Ride",,playable,2021-02-22 16:53:07 -0100C5700434C000,"Sky Rogue",,playable,2020-05-30 08:26:28 -0100C52011460000,"Sky: Children of the Light",cpu;online-broken,nothing,2023-02-23 10:57:10 -010041C01014E000,"Skybolt Zack",,playable,2021-04-12 18:28:00 -0100A0A00D1AA000,"SKYHILL",,playable,2021-03-05 15:19:11 -,"Skylanders Imaginators",crash;services,boots,2020-05-30 18:49:18 -010021A00ABEE000,"SKYPEACE",,playable,2020-05-29 14:14:30 -0100EA400BF44000,"SkyScrappers",,playable,2020-05-28 22:11:25 -0100F3C00C400000,"SkyTime",slow,ingame,2020-05-30 09:24:51 -01003AD00DEAE000,"SlabWell: The Quest For Kaktun's Alpaca",,playable,2021-02-22 17:02:51 -0100224004004000,"Slain: Back from Hell",,playable,2022-08-12 23:36:19 -010026300BA4A000,"Slay the Spire",,playable,2023-01-20 15:09:26 -0100501006494000,"Slayaway Camp: Butcher's Cut",opengl-backend-bug,playable,2022-08-12 23:44:05 -01004E900EDDA000,"Slayin 2",gpu,ingame,2024-04-19 16:15:26 -01004AC0081DC000,"Sleep Tight",gpu;UE4,ingame,2022-08-13 00:17:32 -0100F4500AA4E000,"Slice, Dice & Rice",online,playable,2021-02-22 17:44:23 -010010D011E1C000,"Slide Stars",crash,menus,2021-11-25 08:53:43 -0100112003B8A000,"Slime-san",,playable,2020-05-30 16:15:12 -01002AA00C974000,"SMASHING THE BATTLE",,playable,2021-06-11 15:53:57 -0100C9100B06A000,"SmileBASIC 4",gpu,menus,2021-07-29 17:35:59 -0100207007EB2000,"Smoke And Sacrifice",,playable,2022-08-14 12:38:27 -01009790186FE000,"SMURFS KART",,playable,2023-10-18 00:55:00 -0100F2800D46E000,"Snack World The Dungeon Crawl Gold",gpu;slow;nvdec;audout,ingame,2022-05-01 21:12:44 -0100C0F0020E8000,"Snake Pass",nvdec;UE4,playable,2022-01-03 04:31:52 -010075A00BA14000,"Sniper Elite 3 Ultimate Edition",ldn-untested,playable,2024-04-18 07:47:49 -010007B010FCC000,"Sniper Elite 4",gpu;vulkan-backend-bug;opengl-backend-bug,ingame,2024-06-18 17:53:15 -0100BB000A3AA000,"Sniper Elite V2 Remastered",slow;nvdec;online-broken;ldn-untested,ingame,2022-08-14 13:23:13 -01008E20047DC000,"Snipperclips Plus: Cut It Out, Together!",,playable,2023-02-14 20:20:13 -0100704000B3A000,"Snipperclips™ – Cut it out, together!",,playable,2022-12-05 12:44:55 -01004AB00AEF8000,"SNK 40th ANNIVERSARY COLLECTION",,playable,2022-08-14 13:33:15 -010027F00AD6C000,"SNK HEROINES Tag Team Frenzy",nvdec;online-broken;ldn-untested,playable,2022-08-14 14:19:25 -01008DA00CBBA000,"Snooker 19",nvdec;online-broken;UE4,playable,2022-09-11 17:43:22 -010045300516E000,"Snow Moto Racing Freedom",gpu;vulkan-backend-bug,ingame,2022-08-15 16:05:14 -0100BE200C34A000,"Snowboarding The Next Phase",nvdec,playable,2021-02-23 12:56:58 -0100FBD013AB6000,"SnowRunner",services;crash,boots,2023-10-07 00:01:16 -010017B012AFC000,"Soccer Club Life: Playing Manager",gpu,ingame,2022-10-25 11:59:22 -0100B5000E05C000,"Soccer Pinball",UE4;gpu,ingame,2021-06-15 20:56:51 -010011A00A9A8000,"Soccer Slammers",,playable,2020-05-30 07:48:14 -010095C00F9DE000,"Soccer, Tactics & Glory",gpu,ingame,2022-09-26 17:15:58 -0100590009C38000,"SOL DIVIDE -SWORD OF DARKNESS- for Nintendo Switch",32-bit,playable,2021-06-09 14:13:03 -0100A290048B0000,"Soldam: Drop, Connect, Erase",,playable,2020-05-30 09:18:54 -010008600D1AC000,"Solo: Islands of the Heart",gpu;nvdec,ingame,2022-09-11 17:54:43 -01009EE00E91E000,"Some Distant Memory",,playable,2022-09-15 21:48:19 -01004F401BEBE000,"Song of Nunu: A League of Legends Story",,ingame,2024-07-12 18:53:44 -0100E5400BF94000,"Songbird Symphony",,playable,2021-02-27 02:44:04 -010031D00A604000,"Songbringer",,playable,2020-06-22 10:42:02 -0000000000000000,"Sonic 1 (2013)",crash;homebrew,ingame,2024-04-06 18:31:20 -0000000000000000,"Sonic 2 (2013)",crash;homebrew,ingame,2024-04-01 16:25:30 -0000000000000000,"Sonic A.I.R",homebrew,ingame,2024-04-01 16:25:32 -0000000000000000,"Sonic CD",crash;homebrew,ingame,2024-04-01 16:25:31 -010040E0116B8000,"Sonic Colors: Ultimate",,playable,2022-11-12 21:24:26 -01001270012B6000,"SONIC FORCES™",,playable,2024-07-28 13:11:21 -01004AD014BF0000,"Sonic Frontiers",gpu;deadlock;amd-vendor-bug;intel-vendor-bug,ingame,2024-09-05 09:18:53 -01009AA000FAA000,"Sonic Mania",,playable,2020-06-08 17:30:57 -01009FB016286000,"Sonic Origins",crash,ingame,2024-06-02 07:20:15 -01008F701C074000,"SONIC SUPERSTARS",gpu;nvdec,ingame,2023-10-28 17:48:07 -010088801C150000,"Sonic Superstars Digital Art Book with Mini Digital Soundtrack",,playable,2024-08-20 13:26:56 -01005EA01C0FC000,"SONIC X SHADOW GENERATIONS",crash,ingame,2025-01-07 04:20:45 -010064F00C212000,"Soul Axiom Rebooted",nvdec;slow,ingame,2020-09-04 12:41:01 -0100F2100F0B2000,"Soul Searching",,playable,2020-07-09 18:39:07 -01008F2005154000,"South Park™: The Fractured but Whole™ - Standard Edition",slow;online-broken,playable,2024-07-08 17:47:28 -0100B9F00C162000,"Space Blaze",,playable,2020-08-30 16:18:05 -010005500E81E000,"Space Cows",UE4;crash,menus,2020-06-15 11:33:20 -0100707011722000,"Space Elite Force",,playable,2020-11-27 15:21:05 -010047B010260000,"Space Pioneer",,playable,2022-10-20 12:24:37 -010010A009830000,"Space Ribbon",,playable,2022-08-15 17:17:10 -0000000000000000,"SpaceCadetPinball",homebrew,ingame,2024-04-18 19:30:04 -0100D9B0041CE000,"Spacecats with Lasers",,playable,2022-08-15 17:22:44 -010034800FB60000,"Spaceland",,playable,2020-11-01 14:31:56 -010028D0045CE000,"Sparkle 2",,playable,2020-10-19 11:51:39 -01000DC007E90000,"Sparkle Unleashed",,playable,2021-06-03 14:52:15 -0100E4F00AE14000,"Sparkle ZERO",gpu;slow,ingame,2020-03-23 18:19:18 -01007ED00C032000,"Sparklite",,playable,2022-08-06 11:35:41 -0100E6A009A26000,"Spartan",UE4;nvdec,playable,2021-03-05 15:53:19 -010020500E7A6000,"Speaking Simulator",,playable,2020-10-08 13:00:39 -01008B000A5AE000,"Spectrum",,playable,2022-08-16 11:15:59 -0100F18010BA0000,"Speed 3: Grand Prix",UE4,playable,2022-10-20 12:32:31 -010040F00AA9A000,"Speed Brawl",slow,playable,2020-09-18 22:08:16 -01000540139F6000,"Speed Limit",gpu,ingame,2022-09-02 18:37:40 -010061F013A0E000,"Speed Truck Racing",,playable,2022-10-20 12:57:04 -0100E74007EAC000,"Spellspire",,playable,2022-08-16 11:21:21 -010021F004270000,"Spelunker Party!",services,boots,2022-08-16 11:25:49 -0100710013ABA000,"Spelunky",,playable,2021-11-20 17:45:03 -0100BD500BA94000,"Sphinx and the Cursed Mummy",gpu;32-bit;opengl,ingame,2024-05-20 06:00:51 -010092A0102AE000,"Spider Solitaire",,playable,2020-12-16 16:19:30 -010076D0122A8000,"Spinch",,playable,2024-07-12 19:02:10 -01001E40136FE000,"Spinny's Journey",crash,ingame,2021-11-30 03:39:44 -010023E008702000,"Spiral Splatter",,playable,2020-06-04 14:03:57 -0100D1B00B6FA000,"Spirit Hunter: Death Mark",,playable,2020-12-13 10:56:25 -0100FAE00E19A000,"Spirit Hunter: NG",32-bit,playable,2020-12-17 20:38:47 -01005E101122E000,"Spirit of the North",UE4,playable,2022-09-30 11:40:47 -01000AC00F5EC000,"Spirit Roots",nvdec,playable,2020-07-10 13:33:32 -0100BD400DC52000,"Spiritfarer",gpu,ingame,2022-10-06 16:31:38 -01009D60080B4000,"SpiritSphere DX",,playable,2021-07-03 23:37:49 -010042700E3FC000,"Spitlings",online-broken,playable,2022-10-06 16:42:39 -01003BC0000A0000,"Splatoon™ 2",ldn-works;LAN,playable,2024-07-12 19:11:15 -0100C2500FC20000,"Splatoon™ 3",ldn-works;opengl-backend-bug;LAN;amd-vendor-bug,playable,2024-08-04 23:49:11 -0100BA0018500000,"Splatoon™ 3: Splatfest World Premiere",gpu;online-broken;demo,ingame,2022-09-19 03:17:12 -010062800D39C000,"SpongeBob SquarePants: Battle for Bikini Bottom - Rehydrated",online-broken;UE4;ldn-broken;vulkan-backend-bug,playable,2023-08-01 19:29:34 -01009FB0172F4000,"SpongeBob SquarePants: The Cosmic Shake",gpu;UE4,ingame,2023-08-01 19:29:53 -010097C01336A000,"Spooky Chase",,playable,2022-11-04 12:17:44 -0100C6100D75E000,"Spooky Ghosts Dot Com",,playable,2021-06-15 15:16:11 -0100DE9005170000,"Sports Party",nvdec,playable,2021-03-05 13:40:42 -0100E04009BD4000,"Spot The Difference",,playable,2022-08-16 11:49:52 -010052100D1B4000,"Spot The Differences: Party!",,playable,2022-08-16 11:55:26 -01000E6015350000,"Spy Alarm",services,ingame,2022-12-09 10:12:51 -01005D701264A000,"SpyHack",,playable,2021-04-15 10:53:51 -010077B00E046000,"Spyro™ Reignited Trilogy",nvdec;UE4,playable,2022-09-11 18:38:33 -0100085012A0E000,"Squeakers",,playable,2020-12-13 12:13:05 -010009300D31C000,"Squidgies Takeover",,playable,2020-07-20 22:28:08 -0100FCD0102EC000,"Squidlit",,playable,2020-08-06 12:38:32 -0100EBF00E702000,"STAR OCEAN First Departure R",nvdec,playable,2021-07-05 19:29:16 -010065301A2E0000,"STAR OCEAN THE SECOND STORY R",crash,ingame,2024-06-01 02:39:59 -010060D00F658000,"Star Renegades",nvdec,playable,2020-12-11 12:19:23 -0100D7000AE6A000,"Star Story: The Horizon Escape",,playable,2020-08-11 22:31:38 -01009DF015776000,"Star Trek Prodigy: Supernova",nvdec;UE4;opengl-backend-bug,playable,2022-10-14 10:18:50 -0100BD100FFBE000,"STAR WARS™ Episode I Racer",slow;nvdec,playable,2022-10-03 16:08:36 -0100BB500EACA000,"STAR WARS™ Jedi Knight II: Jedi Outcast™",gpu,ingame,2022-09-15 22:51:00 -01008CA00FAE8000,"STAR WARS™ Jedi Knight: Jedi Academy",gpu,boots,2021-06-16 12:35:30 -01006DA00DEAC000,"Star Wars™ Pinball",online-broken,playable,2022-09-11 18:53:31 -0100FA10115F8000,"STAR WARS™ Republic Commando™",gpu;32-bit,ingame,2023-10-31 15:57:17 -010040701B948000,"STAR WARS™: Battlefront Classic Collection",gpu;vulkan,ingame,2024-07-12 19:24:21 -0100854015868000,"STAR WARS™: Knights of the Old Republic™",gpu;deadlock,boots,2024-02-12 10:13:51 -0100153014544000,"STAR WARS™: The Force Unleashed™",,playable,2024-05-01 17:41:28 -01005EB00EA10000,"Star-Crossed Myth - The Department of Wishes -",gpu,ingame,2021-06-04 19:34:36 -0100E6B0115FC000,"Star99",online,menus,2021-11-26 14:18:51 -01002100137BA000,"Stardash",,playable,2021-01-21 16:31:19 -0100E65002BB8000,"Stardew Valley",online-broken;ldn-untested,playable,2024-02-14 03:11:19 -01002CC003FE6000,"Starlink: Battle for Atlas™ Digital Edition",services-horizon;crash;Needs Update,nothing,2024-05-05 17:25:11 -010098E010FDA000,"Starlit Adventures Golden Stars",,playable,2020-11-21 12:14:43 -01001BB00AC26000,"STARSHIP AVENGER Operation: Take Back Earth",,playable,2021-01-12 15:52:55 -010000700A572000,"State of Anarchy: Master of Mayhem",nvdec,playable,2021-01-12 19:00:05 -0100844004CB6000,"State of Mind",UE4;crash,boots,2020-06-22 22:17:50 -0100616009082000,"STAY",crash;services,boots,2021-04-23 14:24:52 -0100B61009C60000,"STAY COOL, KOBAYASHI-SAN!: A RIVER CITY RANSOM STORY",,playable,2021-01-26 17:37:28 -01008010118CC000,"Steam Prison",nvdec,playable,2021-04-01 15:34:11 -0100AE100DAFA000,"Steam Tactics",,playable,2022-10-06 16:53:45 -01004DD00C87A000,"Steamburg",,playable,2021-01-13 08:42:01 -01009320084A4000,"SteamWorld Dig",,playable,2024-08-19 12:12:23 -0100CA9002322000,"SteamWorld Dig 2",,playable,2022-12-21 19:25:42 -0100F6D00D83E000,"SteamWorld Quest: Hand of Gilgamech",nvdec,playable,2020-11-09 13:10:04 -01001C6014772000,"Steel Assault",,playable,2022-12-06 14:48:30 -010042800B880000,"STEINS;GATE ELITE",,playable,2020-08-04 07:33:32 -0100CB400E9BC000,"STEINS;GATE: My Darling's Embrace",nvdec,playable,2022-11-20 16:48:34 -01002DE01043E000,"Stela",UE4,playable,2021-06-15 13:28:34 -01005A700C954000,"Stellar Interface",,playable,2022-10-20 13:44:33 -0100BC800EDA2000,"STELLATUM",gpu,playable,2021-03-07 16:30:23 -0100775004794000,"Steredenn: Binary Stars",,playable,2021-01-13 09:19:42 -0100AE0006474000,"Stern Pinball Arcade",,playable,2022-08-16 14:24:41 -0100E24006FA8000,"Stikbold! A Dodgeball Adventure DELUXE",,playable,2021-01-11 20:12:54 -010077B014518000,"Stitchy in Tooki Trouble",,playable,2021-05-06 16:25:53 -010070D00F640000,"STONE",UE4,playable,2022-09-30 11:53:32 -010074400F6A8000,"Stories Untold",nvdec,playable,2022-12-22 01:08:46 -010040D00BCF4000,"Storm Boy",,playable,2022-10-20 14:15:06 -0100B2300B932000,"Storm In A Teacup",gpu,ingame,2021-11-06 02:03:19 -0100D5D00DAF2000,"Story of a Gladiator",,playable,2020-07-29 15:08:18 -010017301007E000,"STORY OF SEASONS Pioneers of Olive [ 牧場物語 オリーブタウンと希望の大地 ]",,playable,2021-03-18 11:42:19 -0100ED400EEC2000,"STORY OF SEASONS: Friends of Mineral Town",,playable,2022-10-03 16:40:31 -010078D00E8F4000,"Stranded Sails - Explorers of the Cursed Islands",slow;nvdec;UE4,playable,2022-09-16 11:58:38 -01000A6013F86000,"Strange Field Football",,playable,2022-11-04 12:25:57 -0100DD600DD48000,"Stranger Things 3: The Game",,playable,2021-01-11 17:44:09 -0100D7E011C64000,"Strawberry Vinegar",nvdec,playable,2022-12-05 16:25:40 -010075101EF84000,"Stray",crash,ingame,2025-01-07 04:03:00 -0100024008310000,"Street Fighter 30th Anniversary Collection",online-broken;ldn-partial,playable,2022-08-20 16:50:47 -010012400D202000,"Street Outlaws: The List",nvdec,playable,2021-06-11 12:15:32 -0100888011CB2000,"Street Power Soccer",UE4;crash,boots,2020-11-21 12:28:57 -0100EC9010258000,"Streets of Rage 4",nvdec;online,playable,2020-07-07 21:21:22 -0100BDE012928000,"Strife: Veteran Edition",gpu,ingame,2022-01-15 05:10:42 -010039100DACC000,"Strike Force - War on Terror",crash;Needs Update,menus,2021-11-24 08:08:20 -010038A00E6C6000,"Strike Force Kitty",nvdec,playable,2020-07-29 16:22:15 -010072500D52E000,"Strike Suit Zero: Director's Cut",crash,boots,2021-04-23 17:15:14 -0100FF5005B76000,"STRIKERS1945 for Nintendo Switch",32-bit,playable,2021-06-03 19:35:04 -0100720008ED2000,"STRIKERS1945 Ⅱ for Nintendo Switch",32-bit,playable,2021-06-03 19:43:00 -0100681011B56000,"Struggling",,playable,2020-10-15 20:37:03 -0100AF000B4AE000,"Stunt Kite Party",nvdec,playable,2021-01-25 17:16:56 -0100C5500E7AE000,"STURMWIND EX",audio;32-bit,playable,2022-09-16 12:01:39 -,"Subarashiki Kono Sekai -Final Remix-",services;slow,ingame,2020-02-10 16:21:51 -010001400E474000,"Subdivision Infinity DX",UE4;crash,boots,2021-03-03 14:26:46 -0100E6400BCE8000,"Sublevel Zero Redux",,playable,2022-09-16 12:30:03 -0100EDA00D866000,"Submerged",nvdec;UE4;vulkan-backend-bug,playable,2022-08-16 15:17:01 -0100429011144000,"Subnautica",vulkan-backend-bug,playable,2022-11-04 13:07:29 -010014C011146000,"Subnautica: Below Zero",,playable,2022-12-23 14:15:13 -0100BF9012AC6000,"Suguru Nature",crash,ingame,2021-07-29 11:36:27 -01005CD00A2A2000,"Suicide Guy",,playable,2021-01-26 13:13:54 -0100DE000C2E4000,"Suicide Guy: Sleepin' Deeply",Needs More Attention,ingame,2022-09-20 23:45:25 -01003D50126A4000,"Sumire",,playable,2022-11-12 13:40:43 -0100A130109B2000,"Summer in Mara",nvdec,playable,2021-03-06 14:10:38 -01004E500DB9E000,"Summer Sweetheart",nvdec,playable,2022-09-16 12:51:46 -0100BFE014476000,"Sunblaze",,playable,2022-11-12 13:59:23 -01002D3007962000,"Sundered: Eldritch Edition",gpu,ingame,2021-06-07 11:46:00 -0100F7000464A000,"Super Beat Sports™",ldn-untested,playable,2022-08-16 16:05:50 -010051A00D716000,"Super Blood Hockey",,playable,2020-12-11 20:01:41 -01007AD00013E000,"Super Bomberman R",nvdec;online-broken;ldn-works,playable,2022-08-16 19:19:14 -0100B87017D94000,"SUPER BOMBERMAN R 2",deadlock,boots,2023-09-29 13:19:51 -0100D9B00DB5E000,"Super Cane Magic ZERO",,playable,2022-09-12 15:33:46 -010065F004E5E000,"Super Chariot",,playable,2021-06-03 13:19:01 -0100E5E00C464000,"SUPER DRAGON BALL HEROES WORLD MISSION",nvdec;online-broken,playable,2022-08-17 12:56:30 -010023100B19A000,"Super Dungeon Tactics",,playable,2022-10-06 17:40:40 -010056800B534000,"Super Inefficient Golf",UE4,playable,2022-08-17 15:53:45 -010015700D5DC000,"Super Jumpy Ball",,playable,2020-07-04 18:40:36 -0100196009998000,"Super Kickers League Ultimate",,playable,2021-01-26 13:36:48 -01003FB00C5A8000,"Super Kirby Clash™",ldn-works,playable,2024-07-30 18:21:55 -010000D00F81A000,"Super Korotama",,playable,2021-06-06 19:06:22 -01003E300FCAE000,"Super Loop Drive",nvdec;UE4,playable,2022-09-22 10:58:05 -054507E0B7552000,"Super Mario 64",homebrew,ingame,2024-03-20 16:57:27 -0100277011F1A000,"Super Mario Bros.™ 35",online-broken,menus,2022-08-07 16:27:25 -010015100B514000,"Super Mario Bros.™ Wonder",amd-vendor-bug,playable,2024-09-06 13:21:21 -01009B90006DC000,"Super Mario Maker™ 2",online-broken;ldn-broken,playable,2024-08-25 11:05:19 -0100000000010000,"Super Mario Odyssey™",nvdec;intel-vendor-bug;mac-bug,playable,2024-08-25 01:32:34 -010036B0034E4000,"Super Mario Party™",gpu;Needs Update;ldn-works,ingame,2024-06-21 05:10:16 -0100BC0018138000,"Super Mario RPG™",gpu;audio;nvdec,ingame,2024-06-19 17:43:42 -0000000000000000,"Super Mario World",homebrew,boots,2024-06-13 01:40:31 -010049900F546000,"Super Mario™ 3D All-Stars",services-horizon;slow;vulkan;amd-vendor-bug,ingame,2024-05-07 02:38:16 -010028600EBDA000,"Super Mario™ 3D World + Bowser’s Fury",ldn-works,playable,2024-07-31 10:45:37 -01004F8006A78000,"Super Meat Boy",services,playable,2020-04-02 23:10:07 -01009C200D60E000,"Super Meat Boy Forever",gpu,boots,2021-04-26 14:25:39 -0100BDD00EC5C000,"Super Mega Space Blaster Special Turbo",online,playable,2020-08-06 12:13:25 -010031F019294000,"Super Monkey Ball Banana Rumble",,playable,2024-06-28 10:39:18 -0100B2A00E1E0000,"Super Monkey Ball: Banana Blitz HD",online-broken,playable,2022-09-16 13:16:25 -01006D000D2A0000,"Super Mutant Alien Assault",,playable,2020-06-07 23:32:45 -01004D600AC14000,"Super Neptunia RPG",nvdec,playable,2022-08-17 16:38:52 -01008D300C50C000,"Super Nintendo Entertainment System™ - Nintendo Switch Online",,playable,2021-01-05 00:29:48 -0100284007D6C000,"Super One More Jump",,playable,2022-08-17 16:47:47 -01001F90122B2000,"Super Punch Patrol",,playable,2024-07-12 19:49:02 -0100331005E8E000,"Super Putty Squad",gpu;32-bit,ingame,2024-04-29 15:51:54 -,"SUPER ROBOT WARS T",online,playable,2021-03-25 11:00:40 -,"SUPER ROBOT WARS V",online,playable,2020-06-23 12:56:37 -,"SUPER ROBOT WARS X",online,playable,2020-08-05 19:18:51 -01004CF00A60E000,"Super Saurio Fly",nvdec,playable,2020-08-06 13:12:14 -010039700D200000,"Super Skelemania",,playable,2020-06-07 22:59:50 -01006A800016E000,"Super Smash Bros.™ Ultimate",gpu;crash;nvdec;ldn-works;intel-vendor-bug,ingame,2024-09-14 23:05:21 -0100D61012270000,"Super Soccer Blast",gpu,ingame,2022-02-16 08:39:12 -0100A9300A4AE000,"Super Sportmatchen",,playable,2022-08-19 12:34:40 -0100FB400F54E000,"Super Street: Racer",UE4,playable,2022-09-16 13:43:14 -010000500DB50000,"Super Tennis Blast",,playable,2022-08-19 16:20:48 -0100C6800D770000,"Super Toy Cars 2",gpu;regression,ingame,2021-03-02 20:15:15 -010035B00B3F0000,"Super Volley Blast",,playable,2022-08-19 18:14:40 -0100FF60051E2000,"Superbeat: Xonic EX",crash;nvdec,ingame,2022-08-19 18:54:40 -0100630010252000,"SuperEpic: The Entertainment War",,playable,2022-10-13 23:02:48 -01001A500E8B4000,"SUPERHOT",,playable,2021-05-05 19:51:30 -010075701153A000,"Superliminal",,playable,2020-09-03 13:20:50 -0100C01012654000,"Supermarket Shriek",,playable,2022-10-13 23:19:20 -0100A6E01201C000,"Supraland",nvdec;UE4;opengl-backend-bug,playable,2022-10-14 09:49:11 -010029A00AEB0000,"Survive! MR.CUBE",,playable,2022-10-20 14:44:47 -01005AB01119C000,"SUSHI REVERSI",,playable,2021-06-11 19:26:58 -0100DDD0085A4000,"Sushi Striker™: The Way of Sushido",nvdec,playable,2020-06-26 20:49:11 -0100D6D00EC2C000,"Sweet Witches",nvdec,playable,2022-10-20 14:56:37 -010049D00C8B0000,"Swimsanity!",online,menus,2021-11-26 14:27:16 -01005DF00DC26000,"SWORD ART ONLINE: FATAL BULLET Complete Edition",UE4;gpu;online,ingame,2021-06-09 16:58:50 -01001B600D1D6000,"SWORD ART ONLINE: Hollow Realization Deluxe Edition",nvdec,playable,2022-08-19 19:19:15 -01000D70049BE000,"Sword of the Guardian",,playable,2020-07-16 12:24:39 -0100E4701355C000,"Sword of the Necromancer",crash,ingame,2022-12-10 01:28:39 -01004BB00421E000,"Syberia 1 & 2",,playable,2021-12-24 12:06:25 -010028C003FD6000,"Syberia 2",gpu,ingame,2022-08-24 12:43:03 -0100CBE004E6C000,"Syberia 3",nvdec,playable,2021-01-25 16:15:12 -010007300C482000,"Sydney Hunter and the Curse of the Mayan",,playable,2020-06-15 12:15:57 -0100D8400DAF0000,"SYNAPTIC DRIVE",online,playable,2020-09-07 13:44:05 -01009E700F448000,"Synergia",,playable,2021-04-06 17:58:04 -01009BF00E7D2000,"SYNTHETIK: Ultimate",gpu;crash,ingame,2022-08-30 03:19:25 -010015B00BB00000,"Table Top Racing: World Tour - Nitro Edition",,playable,2020-04-05 23:21:30 -01000F20083A8000,"Tactical Mind",,playable,2021-01-25 18:05:00 -0100BD700F5F0000,"Tactical Mind 2",,playable,2020-07-01 23:11:07 -0100E12013C1A000,"Tactics Ogre: Reborn",vulkan-backend-bug,playable,2024-04-09 06:21:35 -01007C7006AEE000,"Tactics V: Obsidian Brigade",,playable,2021-02-28 15:09:42 -01002C000B552000,"Taiko no Tatsujin: Drum 'n' Fun!",online-broken;ldn-broken,playable,2023-05-20 15:10:12 -0100BCA0135A0000,"Taiko no Tatsujin: Rhythm Festival",,playable,2023-11-13 13:16:34 -0100DD6012644000,"Taiko no Tatsujin: Rhythmic Adventure Pack",,playable,2020-12-03 07:28:26 -0100346017304000,"Taiko Risshiden V DX",crash,nothing,2022-06-06 16:25:31 -010040A00EA26000,"Taimumari: Complete Edition",,playable,2022-12-06 13:34:49 -0100F0C011A68000,"Tales from the Borderlands",nvdec,playable,2022-10-25 18:44:14 -0100408007078000,"Tales of the Tiny Planet",,playable,2021-01-25 15:47:41 -01002C0008E52000,"Tales of Vesperia™: Definitive Edition",,playable,2024-09-28 03:20:47 -010012800EE3E000,"Tamashii",,playable,2021-06-10 15:26:20 -010008A0128C4000,"Tamiku",gpu,ingame,2021-06-15 20:06:55 -010048F007ADE000,"Tangledeep",crash,boots,2021-01-05 04:08:41 -01007DB010D2C000,"TaniNani",crash;kernel,nothing,2021-04-08 03:06:44 -0100E06012BB4000,"Tank Mechanic Simulator",,playable,2020-12-11 15:10:45 -01007A601318C000,"Tanuki Justice",opengl,playable,2023-02-21 18:28:10 -01004DF007564000,"Tanzia",,playable,2021-06-07 11:10:25 -01002D4011208000,"Task Force Kampas",,playable,2020-11-30 14:44:15 -0100B76011DAA000,"Taxi Chaos",slow;online-broken;UE4,playable,2022-10-25 19:13:00 -0100F43011E5A000,"Tcheco in the Castle of Lucio",,playable,2020-06-27 13:35:43 -010092B0091D0000,"Team Sonic Racing",online-broken;ldn-works,playable,2024-02-05 15:05:27 -0100FE701475A000,"Teenage Mutant Ninja Turtles: Shredder's Revenge",deadlock;crash,boots,2024-09-28 09:31:39 -01005CF01E784000,"Teenage Mutant Ninja Turtles: Splintered Fate",,playable,2024-08-03 13:50:42 -0100FDB0154E4000,"Teenage Mutant Ninja Turtles: The Cowabunga Collection",,playable,2024-01-22 19:39:04 -010021100DF22000,"Telling Lies",,playable,2020-10-23 21:14:51 -0100C8B012DEA000,"Temtem",online-broken,menus,2022-12-17 17:36:11 -0100B2600A398000,"TENGAI for Nintendo Switch",32-bit,playable,2020-11-25 19:52:26 -0100D7A005DFC000,"Tennis",,playable,2020-06-01 20:50:36 -01002970080AA000,"Tennis in the Face",,playable,2022-08-22 14:10:54 -0100092006814000,"Tennis World Tour",online-broken,playable,2022-08-22 14:27:10 -0100950012F66000,"Tennis World Tour 2",online-broken,playable,2022-10-14 10:43:16 -0100E46006708000,"Terraria",online-broken,playable,2022-09-12 16:14:57 -010070C00FB56000,"TERROR SQUID",online-broken,playable,2023-10-30 22:29:29 -010043700EB68000,"TERRORHYTHM (TRRT)",,playable,2021-02-27 13:18:14 -0100FBC007EAE000,"Tesla vs Lovecraft",,playable,2023-11-21 06:19:36 -01005C8005F34000,"Teslagrad",,playable,2021-02-23 14:41:02 -01006F701507A000,"Tested on Humans: Escape Room",,playable,2022-11-12 14:42:52 -0100671016432000,"TETRA for Nintendo Switch™ International Edition",,playable,2020-06-26 20:49:55 -01004E500A15C000,"TETRA's Escape",,playable,2020-06-03 18:21:14 -010040600C5CE000,"Tetris 99 Retail Bundle",gpu;online-broken;ldn-untested,ingame,2024-05-02 16:36:41 -0100EC000D39A000,"Tetsumo Party",,playable,2020-06-09 22:39:55 -01008ED0087A4000,"The Adventure Pals",,playable,2022-08-22 14:48:52 -0100137010152000,"The Adventures of 00 Dilly®",,playable,2020-12-30 19:32:29 -01003B400A00A000,"The Adventures of Bertram Fiddle: Episode 1: A Dreadly Business",nvdec,playable,2022-09-17 11:07:56 -010035C00A4BC000,"The Adventures of Elena Temple",,playable,2020-06-03 23:15:35 -010045A00E038000,"The Alliance Alive HD Remastered",nvdec,playable,2021-03-07 15:43:45 -010079A0112BE000,"The Almost Gone",,playable,2020-07-05 12:33:07 -0100CD500DDAE000,"The Bard's Tale ARPG: Remastered and Resnarkled",gpu;nvdec;online-working,ingame,2024-07-18 12:52:01 -01001E50141BC000,"The Battle Cats Unite!",deadlock,ingame,2021-12-14 21:38:34 -010089600E66A000,"The Big Journey",,playable,2022-09-16 14:03:08 -010021C000B6A000,"The Binding of Isaac: Afterbirth+",,playable,2021-04-26 14:11:56 -0100A5A00B2AA000,"The Bluecoats North & South",nvdec,playable,2020-12-10 21:22:29 -010062500BFC0000,"The Book of Unwritten Tales 2",,playable,2021-06-09 14:42:53 -01002A2004530000,"The Bridge",,playable,2020-06-03 13:53:26 -01008D700AB14000,"The Bug Butcher",,playable,2020-06-03 12:02:04 -01001B40086E2000,"The Bunker",nvdec,playable,2022-09-16 14:24:05 -010069100B7F0000,"The Caligula Effect: Overdose",UE4;gpu,ingame,2021-01-04 11:07:50 -010066800E9F8000,"The Childs Sight",,playable,2021-06-11 19:04:56 -0100B7C01169C000,"The Coma 2: Vicious Sisters",gpu,ingame,2020-06-20 12:51:51 -010033100691A000,"The Coma: Recut",,playable,2020-06-03 15:11:23 -01004170113D4000,"The Complex",nvdec,playable,2022-09-28 14:35:41 -01000F20102AC000,"The Copper Canyon Dixie Dash",UE4,playable,2022-09-29 11:42:29 -01000850037C0000,"The Count Lucanor",nvdec,playable,2022-08-22 15:26:37 -0100EBA01548E000,"The Cruel King and the Great Hero",gpu;services,ingame,2022-12-02 07:02:08 -010051800E922000,"The Dark Crystal: Age of Resistance Tactics",,playable,2020-08-11 13:43:41 -01003DE00918E000,"The Darkside Detective",,playable,2020-06-03 22:16:18 -01000A10041EA000,"The Elder Scrolls V: Skyrim",gpu;crash,ingame,2024-07-14 03:21:31 -01004A9006B84000,"The End Is Nigh",,playable,2020-06-01 11:26:45 -0100CA100489C000,"The Escapists 2",nvdec,playable,2020-09-24 12:31:31 -01001B700BA7C000,"The Escapists: Complete Edition",,playable,2021-02-24 17:50:31 -0100C2E0129A6000,"The Executioner",nvdec,playable,2021-01-23 00:31:28 -01006050114D4000,"The Experiment: Escape Room",gpu,ingame,2022-09-30 13:20:35 -0100B5900DFB2000,"The Eyes of Ara",,playable,2022-09-16 14:44:06 -01002DD00AF9E000,"The Fall",gpu,ingame,2020-05-31 23:31:16 -01003E5002320000,"The Fall Part 2: Unbound",,playable,2021-11-06 02:18:08 -0100CDC00789E000,"The Final Station",nvdec,playable,2022-08-22 15:54:39 -010098800A1E4000,"The First Tree",,playable,2021-02-24 15:51:05 -0100C38004DCC000,"The Flame In The Flood: Complete Edition",gpu;nvdec;UE4,ingame,2022-08-22 16:23:49 -010007700D4AC000,"The Forbidden Arts",,playable,2021-01-26 16:26:24 -010030700CBBC000,"The friends of Ringo Ishikawa",,playable,2022-08-22 16:33:17 -01006350148DA000,"The Gardener and the Wild Vines",gpu,ingame,2024-04-29 16:32:10 -0100B13007A6A000,"The Gardens Between",,playable,2021-01-29 16:16:53 -010036E00FB20000,"The Great Ace Attorney Chronicles",,playable,2023-06-22 21:26:29 -010007B012514000,"The Great Perhaps",,playable,2020-09-02 15:57:04 -01003B300E4AA000,"THE GRISAIA TRILOGY",,playable,2021-01-31 15:53:59 -01001950137D8000,"The Hong Kong Massacre",crash,ingame,2021-01-21 12:06:56 -01004AD00E094000,"The House of Da Vinci",,playable,2021-01-05 14:17:19 -01005A80113D2000,"The House of Da Vinci 2",,playable,2020-10-23 20:47:17 -010088401495E000,"The House of the Dead: Remake",,playable,2025-01-11 00:36:01 -0100E24004510000,"The Hunt - Championship Edition",32-bit,menus,2022-07-21 20:21:25 -01008940086E0000,"The Infectious Madness of Doctor Dekker",nvdec,playable,2022-08-22 16:45:01 -0100B0B00B318000,"The Inner World",nvdec,playable,2020-06-03 21:22:29 -0100A9D00B31A000,"The Inner World - The Last Wind Monk",nvdec,playable,2020-11-16 13:09:40 -0100AE5003EE6000,"The Jackbox Party Pack",online-working,playable,2023-05-28 09:28:40 -010015D003EE4000,"The Jackbox Party Pack 2",online-working,playable,2022-08-22 18:23:40 -0100CC80013D6000,"The Jackbox Party Pack 3",slow;online-working,playable,2022-08-22 18:41:06 -0100E1F003EE8000,"The Jackbox Party Pack 4",online-working,playable,2022-08-22 18:56:34 -010052C00B184000,"The Journey Down: Chapter One",nvdec,playable,2021-02-24 13:32:41 -01006BC00B188000,"The Journey Down: Chapter Three",nvdec,playable,2021-02-24 13:45:27 -01009AB00B186000,"The Journey Down: Chapter Two",nvdec,playable,2021-02-24 13:32:13 -010020500BD98000,"The King's Bird",,playable,2022-08-22 19:07:46 -010031B00DB34000,"the Knight & the Dragon",gpu,ingame,2023-08-14 10:31:43 -01007AF012E16000,"The Language Of Love",Needs Update;crash,nothing,2020-12-03 17:54:00 -010079C017F5E000,"The Lara Croft Collection",services-horizon;deadlock,nothing,2024-07-12 22:45:51 -0100449011506000,"The Last Campfire",,playable,2022-10-20 16:44:19 -0100AAD011592000,"The Last Dead End",gpu;UE4,ingame,2022-10-20 16:59:44 -0100AC800D022000,"THE LAST REMNANT Remastered",nvdec;UE4,playable,2023-02-09 17:24:44 -0100B1900F0B6000,"The Legend of Dark Witch",,playable,2020-07-12 15:18:33 -01001920156C2000,"The Legend of Heroes: Trails from Zero",gpu;mac-bug,ingame,2024-09-14 21:41:41 -01005420101DA000,"The Legend of Heroes: Trails of Cold Steel III",,playable,2020-12-16 10:59:18 -01009B101044C000,"The Legend of Heroes: Trails of Cold Steel III Demo",demo;nvdec,playable,2021-04-23 01:07:32 -0100D3C010DE8000,"The Legend of Heroes: Trails of Cold Steel IV",nvdec,playable,2021-04-23 14:01:05 -01005E5013862000,"THE LEGEND OF HEROES: ZERO NO KISEKI KAI [英雄傳說 零之軌跡:改]",crash,nothing,2021-09-30 14:41:07 -01008CF01BAAC000,"The Legend of Zelda Echoes of Wisdom",nvdec;ASTC;intel-vendor-bug,playable,2024-10-01 14:11:01 -0100509005AF2000,"The Legend of Zelda: Breath of the Wild Demo",demo,ingame,2022-12-24 05:02:58 -01007EF00011E000,"The Legend of Zelda™: Breath of the Wild",gpu;amd-vendor-bug;mac-bug,ingame,2024-09-23 19:35:46 -01006BB00C6F0000,"The Legend of Zelda™: Link’s Awakening",gpu;nvdec;mac-bug,ingame,2023-08-09 17:37:40 -01002DA013484000,"The Legend of Zelda™: Skyward Sword HD",gpu,ingame,2024-06-14 16:48:29 -0100F2C0115B6000,"The Legend of Zelda™: Tears of the Kingdom",gpu;amd-vendor-bug;intel-vendor-bug;mac-bug,ingame,2024-08-24 12:38:30 -0100A4400BE74000,"The LEGO Movie 2 Videogame",,playable,2023-03-01 11:23:37 -010064B00B95C000,"The Liar Princess and the Blind Prince",audio;slow,playable,2020-06-08 21:23:28 -0100735004898000,"The Lion's Song",,playable,2021-06-09 15:07:16 -0100A5000D590000,"The Little Acre",nvdec,playable,2021-03-02 20:22:27 -01007A700A87C000,"The Long Dark",,playable,2021-02-21 14:19:52 -010052B003A38000,"The Long Reach",nvdec,playable,2021-02-24 14:09:48 -01003C3013300000,"The Long Return",slow,playable,2020-12-10 21:05:10 -0100CE1004E72000,"The Longest Five Minutes",gpu,boots,2023-02-19 18:33:11 -0100F3D0122C2000,"The Longing",gpu,ingame,2022-11-12 15:00:58 -010085A00C5E8000,"The Lord of the Rings: Adventure Card Game - Definitive Edition",online-broken,menus,2022-09-16 15:19:32 -01008A000A404000,"The Lost Child",nvdec,playable,2021-02-23 15:44:20 -0100BAB00A116000,"The Low Road",,playable,2021-02-26 13:23:22 -,"The Mahjong",Needs Update;crash;services,nothing,2021-04-01 22:06:22 -0100DC300AC78000,"The Messenger",,playable,2020-03-22 13:51:37 -0100DEC00B2BC000,"The Midnight Sanctuary",nvdec;UE4;vulkan-backend-bug,playable,2022-10-03 17:17:32 -0100F1B00B456000,"The MISSING: J.J. Macfield and the Island of Memories",,playable,2022-08-22 19:36:18 -010033300AC1A000,"The Mooseman",,playable,2021-02-24 12:58:57 -01005E9016BDE000,"The movie The Quintessential Bride -Five Memories Spent with You-",,playable,2023-12-14 14:43:43 -0100496004194000,"The Mummy Demastered",,playable,2021-02-23 13:11:27 -01004C500AAF6000,"The Mystery of the Hudson Case",,playable,2020-06-01 11:03:36 -01000CF0084BC000,"The Next Penelope",,playable,2021-01-29 16:26:11 -01001FB00E386000,"THE NINJA SAVIORS Return of the Warriors",online,playable,2021-03-25 23:48:07 -0100B080184BC000,"The Oregon Trail",gpu,ingame,2022-11-25 16:11:49 -0100B0101265C000,"The Otterman Empire",UE4;gpu,ingame,2021-06-17 12:27:15 -01000BC01801A000,"The Outbound Ghost",,nothing,2024-03-02 17:10:58 -0100626011656000,"The Outer Worlds",gpu;nvdec;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-10-03 17:55:32 -01005C500D690000,"The Park",UE4;crash;gpu,ingame,2020-12-18 12:50:07 -010050101127C000,"The Persistence",nvdec,playable,2021-06-06 19:15:40 -0100CD300880E000,"The Pinball Arcade",online-broken,playable,2022-08-22 19:49:46 -01006BD018B54000,"The Plucky Squire",crash,ingame,2024-09-27 22:32:33 -0100E6A00B960000,"The Princess Guide",,playable,2021-02-24 14:23:34 -010058A00BF1C000,"The Raven Remastered",nvdec,playable,2022-08-22 20:02:47 -0100EB100D17C000,"The Red Strings Club",,playable,2020-06-01 10:51:18 -010079400BEE0000,"The Room",,playable,2021-04-14 18:57:05 -010033100EE12000,"The Ryuo's Work is Never Done!",,playable,2022-03-29 00:35:37 -01002BA00C7CE000,"The Savior's Gang",gpu;nvdec;UE4,ingame,2022-09-21 12:37:48 -0100F3200E7CA000,"The Settlers®: New Allies",deadlock,nothing,2023-10-25 00:18:05 -0100F89003BC8000,"The Sexy Brutale",,playable,2021-01-06 17:48:28 -01001FF00BEE8000,"The Shapeshifting Detective",nvdec,playable,2021-01-10 13:10:49 -010028D00BA1A000,"The Sinking City",nvdec;UE4,playable,2022-09-12 16:41:55 -010041C00A68C000,"The Spectrum Retreat",,playable,2022-10-03 18:52:40 -010029300E5C4000,"The Stanley Parable: Ultra Deluxe",gpu,ingame,2024-07-12 23:18:26 -010007F00AF56000,"The Station",,playable,2022-09-28 18:15:27 -0100858010DC4000,"the StoryTale",,playable,2022-09-03 13:00:25 -0100AA400A238000,"The Stretchers™",nvdec;UE4,playable,2022-09-16 15:40:58 -0100E3100450E000,"The Strike - Championship Edition",gpu;32-bit,boots,2022-12-09 15:58:16 -0100EF200DA60000,"The Survivalists",,playable,2020-10-27 15:51:13 -010040D00B7CE000,"The Swindle",nvdec,playable,2022-08-22 20:53:52 -010037D00D568000,"The Swords of Ditto: Mormo's Curse",slow,ingame,2020-12-06 00:13:12 -01009B300D76A000,"The Tiny Bang Story",,playable,2021-03-05 15:39:05 -0100C3300D8C4000,"The Touryst",crash,ingame,2023-08-22 01:32:38 -010047300EBA6000,"The Tower of Beatrice",,playable,2022-09-12 16:51:42 -010058000A576000,"The Town of Light: Deluxe Edition",gpu,playable,2022-09-21 12:51:34 -0100B0E0086F6000,"The Trail: Frontier Challenge",slow,playable,2022-08-23 15:10:51 -0100EA100F516000,"The Turing Test",nvdec,playable,2022-09-21 13:24:07 -010064E00ECBC000,"The Unicorn Princess",,playable,2022-09-16 16:20:56 -0100BCF00E970000,"The Vanishing of Ethan Carter",UE4,playable,2021-06-09 17:14:47 -0100D0500B0A6000,"The VideoKid",nvdec,playable,2021-01-06 09:28:24 -,"The Voice",services,menus,2020-07-28 20:48:49 -010056E00B4F4000,"The Walking Dead: A New Frontier",,playable,2022-09-21 13:40:48 -010099100B6AC000,"The Walking Dead: Season Two",,playable,2020-08-09 12:57:06 -010029200B6AA000,"The Walking Dead: The Complete First Season",,playable,2021-06-04 13:10:56 -010060F00AA70000,"The Walking Dead: The Final Season - Season Pass",online-broken,playable,2022-08-23 17:22:32 -010095F010568000,"The Wanderer: Frankenstein's Creature",,playable,2020-07-11 12:49:51 -01008B200FC6C000,"The Wardrobe: Even Better Edition",,playable,2022-09-16 19:14:55 -01003D100E9C6000,"The Witcher 3: Wild Hunt",nvdec;vulkan-backend-bug;amd-vendor-bug,playable,2024-02-22 12:21:51 -0100B1300FF08000,"The Wonderful 101: Remastered",slow;nvdec,playable,2022-09-30 13:49:28 -0100C1500B82E000,"The World Ends with You®: Final Remix",ldn-untested,playable,2022-07-09 01:11:21 -0100E6200D56E000,"The World Next Door",,playable,2022-09-21 14:15:23 -010075900CD1C000,"Thea: The Awakening",,playable,2021-01-18 15:08:47 -010081B01777C000,"THEATRHYTHM FINAL BAR LINE",Incomplete,ingame,2024-08-05 14:24:55 -01001C2010D08000,"They Bleed Pixels",gpu,ingame,2024-08-09 05:52:18 -0100768010970000,"They Came From the Sky",,playable,2020-06-12 16:38:19 -0100CE700F62A000,"Thief of Thieves: Season One",crash;loader-allocator,nothing,2021-11-03 07:16:30 -0100CE400E34E000,"Thief Simulator",,playable,2023-04-22 04:39:11 -01009BD003B36000,"Thimbleweed Park",,playable,2022-08-24 11:15:31 -0100F2300A5DA000,"Think of the Children",deadlock,menus,2021-11-23 09:04:45 -0100066004D68000,"This Is the Police",,playable,2022-08-24 11:37:05 -01004C100A04C000,"This is the Police 2",,playable,2022-08-24 11:49:17 -0100C7C00F77C000,"This Strange Realm Of Mine",,playable,2020-08-28 12:07:24 -0100A8700BC2A000,"This War of Mine: Complete Edition",gpu;32-bit;nvdec,ingame,2022-08-24 12:00:44 -0100AC500EEE8000,"THOTH",,playable,2020-08-05 18:35:28 -0100E910103B4000,"Thronebreaker: The Witcher Tales",nvdec,playable,2021-06-03 16:40:15 -01006F6002840000,"Thumper",gpu,ingame,2024-08-12 02:41:07 -01000AC011588000,"Thy Sword",crash,ingame,2022-09-30 16:43:14 -0100E9000C42C000,"Tick Tock: A Tale for Two",,menus,2020-07-14 14:49:38 -0100B6D00C2DE000,"Tied Together",nvdec,playable,2021-04-10 14:03:46 -010074500699A000,"Timber Tennis: Versus",online,playable,2020-10-03 17:07:15 -01004C500B698000,"Time Carnage",,playable,2021-06-16 17:57:28 -0100F770045CA000,"Time Recoil",,playable,2022-08-24 12:44:03 -0100DD300CF3A000,"Timespinner",gpu,ingame,2022-08-09 09:39:11 -0100393013A10000,"Timothy and the Mysterious Forest",gpu;slow,ingame,2021-06-02 00:42:11 -0100F7C010AF6000,"Tin & Kuna",,playable,2020-11-17 12:16:12 -0100DF900FC52000,"Tiny Gladiators",,playable,2020-12-14 00:09:43 -010061A00AE64000,"Tiny Hands Adventure",,playable,2022-08-24 16:07:48 -010074800741A000,"TINY METAL",UE4;gpu;nvdec,ingame,2021-03-05 17:11:57 -01005D0011A40000,"Tiny Racer",,playable,2022-10-07 11:13:03 -010002401AE94000,"Tiny Thor",gpu,ingame,2024-07-26 08:37:35 -0100A73016576000,"Tinykin",gpu,ingame,2023-06-18 12:12:24 -0100FE801185E000,"Titan Glory",,boots,2022-10-07 11:36:40 -0100605008268000,"Titan Quest",nvdec;online-broken,playable,2022-08-19 21:54:15 -01009C400E93E000,"Titans Pinball",slow,playable,2020-06-09 16:53:52 -010019500DB1E000,"Tlicolity Eyes - twinkle showtime -",gpu,boots,2021-05-29 19:43:44 -010036700F83E000,"To the Moon",,playable,2021-03-20 15:33:38 -010014900865A000,"Toast Time: Smash Up!",crash;services,menus,2020-04-03 12:26:59 -0100A4A00B2E8000,"Toby: The Secret Mine",nvdec,playable,2021-01-06 09:22:33 -0100B5200BB7C000,"ToeJam & Earl: Back in the Groove!",,playable,2021-01-06 22:56:58 -0100B5E011920000,"TOHU",slow,playable,2021-02-08 15:40:44 -0100F3400A432000,"Toki",nvdec,playable,2021-01-06 19:59:23 -01003E500F962000,"Tokyo Dark – Remembrance –",nvdec,playable,2021-06-10 20:09:49 -0100A9400C9C2000,"Tokyo Mirage Sessions™ #FE Encore",32-bit;nvdec,playable,2022-07-07 09:41:07 -0100E2E00CB14000,"Tokyo School Life",,playable,2022-09-16 20:25:54 -010024601BB16000,"Tomb Raider I-III Remastered Starring Lara Croft",gpu;opengl,ingame,2024-09-27 12:32:04 -0100D7F01E49C000,"Tomba! Special Edition",services-horizon,nothing,2024-09-15 21:59:54 -0100D400100F8000,"Tonight We Riot",,playable,2021-02-26 15:55:09 -0100CC00102B4000,"Tony Hawk's™ Pro Skater™ 1 + 2",gpu;Needs Update,ingame,2024-09-24 08:18:14 -010093F00E818000,"Tools Up!",crash,ingame,2020-07-21 12:58:17 -01009EA00E2B8000,"Toon War",,playable,2021-06-11 16:41:53 -010090400D366000,"Torchlight II",,playable,2020-07-27 14:18:37 -010075400DDB8000,"Torchlight III",nvdec;online-broken;UE4,playable,2022-10-14 22:20:17 -01007AF011732000,"TORICKY-S",deadlock,menus,2021-11-25 08:53:36 -0100BEB010F2A000,"Torn Tales: Rebound Edition",,playable,2020-11-01 14:11:59 -0100A64010D48000,"Total Arcade Racing",,playable,2022-11-12 15:12:48 -0100512010728000,"Totally Reliable Delivery Service",online-broken,playable,2024-09-27 19:32:22 -01004E900B082000,"Touhou Genso Wanderer Reloaded",gpu;nvdec,ingame,2022-08-25 11:57:36 -010010F004022000,"Touhou Kobuto V: Burst Battle",,playable,2021-01-11 15:28:58 -0100E9D00D6C2000,"TOUHOU Spell Bubble",,playable,2020-10-18 11:43:43 -0100F7B00595C000,"Tower Of Babel",,playable,2021-01-06 17:05:15 -010094600DC86000,"Tower Of Time",gpu;nvdec,ingame,2020-07-03 11:11:12 -0100A1C00359C000,"TowerFall",,playable,2020-05-16 18:58:07 -0100F6200F77E000,"Towertale",,playable,2020-10-15 13:56:58 -010049E00BA34000,"Townsmen - A Kingdom Rebuilt",nvdec,playable,2022-10-14 22:48:59 -01009FF00A160000,"Toy Stunt Bike: Tiptop's Trials",UE4,playable,2021-04-10 13:56:34 -0100192010F5A000,"Tracks - Toybox Edition",UE4;crash,nothing,2021-02-08 15:19:18 -0100BCA00843A000,"Trailblazers",,playable,2021-03-02 20:40:49 -010009F004E66000,"Transcripted",,playable,2022-08-25 12:13:11 -01005E500E528000,"TRANSFORMERS: BATTLEGROUNDS",online,playable,2021-06-17 18:08:19 -0100BE500BEA2000,"Transistor",,playable,2020-10-22 11:28:02 -0100A8D010BFA000,"Travel Mosaics 2: Roman Holiday",,playable,2021-05-26 12:33:16 -0100102010BFC000,"Travel Mosaics 3: Tokyo Animated",,playable,2021-05-26 12:06:27 -010096D010BFE000,"Travel Mosaics 4: Adventures In Rio",,playable,2021-05-26 11:54:58 -01004C4010C00000,"Travel Mosaics 5: Waltzing Vienna",,playable,2021-05-26 11:49:35 -0100D520119D6000,"Travel Mosaics 6: Christmas Around the World",,playable,2021-05-26 00:52:47 -01000BD0119DE000,"Travel Mosaics 7: Fantastic Berlin",,playable,2021-05-22 18:37:34 -01007DB00A226000,"Travel Mosaics: A Paris Tour",,playable,2021-05-26 12:42:26 -010011600C946000,"Travis Strikes Again: No More Heroes",nvdec;UE4,playable,2022-08-25 12:36:38 -01006EB004B0E000,"Treadnauts",,playable,2021-01-10 14:57:41 -0100D7800E9E0000,"Trials of Mana",UE4,playable,2022-09-30 21:50:37 -0100E1D00FBDE000,"Trials of Mana Demo",nvdec;UE4;demo;vulkan-backend-bug,playable,2022-09-26 18:00:02 -01003E800A102000,"Trials Rising Standard Edition",,playable,2024-02-11 01:36:39 -0100CC80140F8000,"TRIANGLE STRATEGY™",gpu;Needs Update;UE4;vulkan-backend-bug,ingame,2024-09-25 20:48:37 -010064E00A932000,"Trine 2: Complete Story",nvdec,playable,2021-06-03 11:45:20 -0100DEC00A934000,"Trine 3: The Artifacts of Power",ldn-untested;online,playable,2021-06-03 12:01:24 -010055E00CA68000,"Trine 4: The Nightmare Prince",gpu,nothing,2025-01-07 05:47:46 -0100D9000A930000,"Trine Enchanted Edition",ldn-untested;nvdec,playable,2021-06-03 11:28:15 -01002D7010A54000,"Trinity Trigger",crash,ingame,2023-03-03 03:09:09 -0100868013FFC000,"TRIVIAL PURSUIT Live! 2",,boots,2022-12-19 00:04:33 -0100F78002040000,"Troll and I™",gpu;nvdec,ingame,2021-06-04 16:58:50 -0100145011008000,"Trollhunters: Defenders of Arcadia",gpu;nvdec,ingame,2020-11-30 13:27:09 -0100FBE0113CC000,"Tropico 6 - Nintendo Switch™ Edition",nvdec;UE4,playable,2022-10-14 23:21:03 -0100D06018DCA000,"Trouble Witches Final! Episode 01: Daughters of Amalgam",,playable,2024-04-08 15:08:11 -0100B5B0113CE000,"Troubleshooter",UE4;crash,nothing,2020-10-04 13:46:50 -010089600FB72000,"Trover Saves The Universe",UE4;crash,nothing,2020-10-03 10:25:27 -0100E6300D448000,"Trüberbrook",,playable,2021-06-04 17:08:00 -0100F2100AA5C000,"Truck and Logistics Simulator",,playable,2021-06-11 13:29:08 -0100CB50107BA000,"Truck Driver",online-broken,playable,2022-10-20 17:42:33 -0100E75004766000,"True Fear: Forsaken Souls - Part 1",nvdec,playable,2020-12-15 21:39:52 -010099900CAB2000,"TT Isle of Man",nvdec,playable,2020-06-22 12:25:13 -010000400F582000,"TT Isle of Man Ride on the Edge 2",gpu;nvdec;online-broken,ingame,2022-09-30 22:13:05 -0100752011628000,"TTV2",,playable,2020-11-27 13:21:36 -0100AFE00452E000,"Tumblestone",,playable,2021-01-07 17:49:20 -010085500D5F6000,"Turok",gpu,ingame,2021-06-04 13:16:24 -0100CDC00D8D6000,"Turok 2: Seeds of Evil",gpu;vulkan,ingame,2022-09-12 17:50:05 -010004B0130C8000,"Turrican Flashback",audout,playable,2021-08-30 10:07:56 -0100B1F0090F2000,"TurtlePop: Journey to Freedom",,playable,2020-06-12 17:45:39 -0100047009742000,"Twin Robots: Ultimate Edition",nvdec,playable,2022-08-25 14:24:03 -010031200E044000,"Two Point Hospital™",crash;nvdec,ingame,2022-09-22 11:22:23 -010038400C2FE000,"TY the Tasmanian Tiger™ HD",32-bit;crash;nvdec,menus,2020-12-17 21:15:00 -010073A00C4B2000,"Tyd wag vir Niemand",,playable,2021-03-02 13:39:53 -0100D5B00D6DA000,"Type:Rider",,playable,2021-01-06 13:12:55 -010040D01222C000,"UBERMOSH: SANTICIDE",,playable,2020-11-27 15:05:01 -0100992010BF8000,"Ubongo",,playable,2021-02-04 21:15:01 -010079000B56C000,"UglyDolls: An Imperfect Adventure",nvdec;UE4,playable,2022-08-25 14:42:16 -010048901295C000,"Ultimate Fishing Simulator",,playable,2021-06-16 18:38:23 -01009D000FAE0000,"Ultimate Racing 2D",,playable,2020-08-05 17:27:09 -010045200A1C2000,"Ultimate Runner",,playable,2022-08-29 12:52:40 -01006B601117E000,"Ultimate Ski Jumping 2020",online,playable,2021-03-02 20:54:11 -01002D4012222000,"Ultra Hat Dimension",services;audio,menus,2021-11-18 09:05:20 -01009C000415A000,"Ultra Hyperball",,playable,2021-01-06 10:09:55 -01007330027EE000,"Ultra Street Fighter® II: The Final Challengers",ldn-untested,playable,2021-11-25 07:54:58 -01006A300BA2C000,"Umineko no Naku Koro ni Saku - うみねこのなく頃に咲 ~猫箱と夢想の交響曲~",audout,playable,2023-05-04 17:25:23 -0100592005164000,"UNBOX: Newbie's Adventure",UE4,playable,2022-08-29 13:12:56 -01002D900C5E4000,"Uncanny Valley",nvdec,playable,2021-06-04 13:28:45 -010076F011F54000,"Undead & Beyond",nvdec,playable,2022-10-04 09:11:18 -01008F3013E4E000,"Under Leaves",,playable,2021-05-22 18:13:58 -010080B00AD66000,"Undertale",,playable,2022-08-31 17:31:46 -01008F80049C6000,"Unepic",,playable,2024-01-15 17:03:00 -01007820096FC000,"UnExplored",,playable,2021-01-06 10:02:16 -01007D1013512000,"Unhatched",,playable,2020-12-11 12:11:09 -010069401ADB8000,"Unicorn Overlord",,playable,2024-09-27 14:04:32 -0100B1400D92A000,"Unit 4",,playable,2020-12-16 18:54:13 -010045200D3A4000,"Unknown Fate",slow,ingame,2020-10-15 12:27:42 -0100AB2010B4C000,"Unlock The King",,playable,2020-09-01 13:58:27 -0100A3E011CB0000,"Unlock the King 2",,playable,2021-06-15 20:43:55 -01005AA00372A000,"UNO® for Nintendo Switch",nvdec;ldn-untested,playable,2022-07-28 14:49:47 -0100E5D00CC0C000,"Unravel Two",nvdec,playable,2024-05-23 15:45:05 -010001300CC4A000,"Unruly Heroes",,playable,2021-01-07 18:09:31 -0100B410138C0000,"Unspottable",,playable,2022-10-25 19:28:49 -010082400BCC6000,"Untitled Goose Game",,playable,2020-09-26 13:18:06 -0100E49013190000,"Unto The End",gpu,ingame,2022-10-21 11:13:29 -0100B110109F8000,"Urban Flow",services,playable,2020-07-05 12:51:47 -010054F014016000,"Urban Street Fighting",,playable,2021-02-20 19:16:36 -01001B10068EC000,"Urban Trial Playground",UE4;nvdec;online,playable,2021-03-25 20:56:51 -0100A2500EB92000,"Urban Trial Tricky",nvdec;UE4,playable,2022-12-06 13:07:56 -01007C0003AEC000,"Use Your Words",nvdec;online-broken,menus,2022-08-29 17:22:10 -0100D4300EBF8000,"Uta no Prince-sama Amazing Aria & Sweet Serenade LOVE",crash;Needs More Attention;Needs Update,nothing,2022-02-09 08:57:44 -010024200E00A000,"Uta no☆Prince-sama♪ Repeat Love",nvdec,playable,2022-12-09 09:21:51 -010029B00CC3E000,"UTOPIA 9 - A Volatile Vacation",nvdec,playable,2020-12-16 17:06:42 -010064400B138000,"V-Rally 4",gpu;nvdec,ingame,2021-06-07 19:37:31 -0100A6700D66E000,"VA-11 HALL-A",,playable,2021-02-26 15:05:34 -01009E2003FE2000,"Vaccine",nvdec,playable,2021-01-06 01:02:07 -010089700F30C000,"Valfaris",,playable,2022-09-16 21:37:24 -0100CAF00B744000,"Valkyria Chronicles",32-bit;crash;nvdec,ingame,2022-11-23 20:03:32 -01005C600AC68000,"Valkyria Chronicles 4",audout;nvdec,playable,2021-06-03 18:12:25 -0100FBD00B91E000,"Valkyria Chronicles 4 Demo",slow;demo,ingame,2022-08-29 20:39:07 -0100E0E00B108000,"Valley",nvdec,playable,2022-09-28 19:27:58 -010089A0197E4000,"Vampire Survivors",,ingame,2024-06-17 09:57:38 -010020C00FFB6000,"Vampire: The Masquerade - Coteries of New York",,playable,2020-10-04 14:55:22 -01000BD00CE64000,"VAMPYR",nvdec;UE4,playable,2022-09-16 22:15:51 -01007C500D650000,"Vandals",,playable,2021-01-27 21:45:46 -010030F00CA1E000,"Vaporum",nvdec,playable,2021-05-28 14:25:33 -010045C0109F2000,"VARIABLE BARRICADE NS",nvdec,playable,2022-02-26 15:50:13 -0100FE200AF48000,"VASARA Collection",nvdec,playable,2021-02-28 15:26:10 -0100AD300E4FA000,"Vasilis",,playable,2020-09-01 15:05:35 -01009CD003A0A000,"Vegas Party",,playable,2021-04-14 19:21:41 -010098400E39E000,"Vektor Wars",online-broken;vulkan-backend-bug,playable,2022-10-04 09:23:46 -01003A8018E60000,"Vengeful Guardian: Moonrider",deadlock,boots,2024-03-17 23:35:37 -010095B00DBC8000,"Venture Kid",crash;gpu,ingame,2021-04-18 16:33:17 -0100C850134A0000,"Vera Blanc: Full Moon",audio,playable,2020-12-17 12:09:30 -0100379013A62000,"Very Very Valet",nvdec,playable,2022-11-12 15:25:51 -01006C8014DDA000,"Very Very Valet Demo",crash;Needs Update;demo,boots,2022-11-12 15:26:13 -010057B00712C000,"Vesta",nvdec,playable,2022-08-29 21:03:39 -0100E81007A06000,"Victor Vran Overkill Edition",gpu;deadlock;nvdec;opengl,ingame,2022-08-30 11:46:56 -01005880063AA000,"Violett",nvdec,playable,2021-01-28 13:09:36 -010037900CB1C000,"Viviette",,playable,2021-06-11 15:33:40 -0100D010113A8000,"Void Bastards",,playable,2022-10-15 00:04:19 -0100FF7010E7E000,"void tRrLM(); //Void Terrarium",gpu;Needs Update;regression,ingame,2023-02-10 01:13:25 -010078D0175EE000,"void* tRrLM2(); //Void Terrarium 2",,playable,2023-12-21 11:00:41 -0100B1A0066DC000,"Volgarr the Viking",,playable,2020-12-18 15:25:50 -0100A7900E79C000,"Volta-X",online-broken,playable,2022-10-07 12:20:51 -01004D8007368000,"Vostok Inc.",,playable,2021-01-27 17:43:59 -0100B1E0100A4000,"Voxel Galaxy",,playable,2022-09-28 22:45:02 -0100AFA011068000,"Voxel Pirates",,playable,2022-09-28 22:55:02 -0100BFB00D1F4000,"Voxel Sword",,playable,2022-08-30 14:57:27 -01004E90028A2000,"Vroom in the night sky",Needs Update;vulkan-backend-bug,playable,2023-02-20 02:32:29 -0100C7C00AE6C000,"VSR: Void Space Racing",,playable,2021-01-27 14:08:59 -0100B130119D0000,"Waifu Uncovered",crash,ingame,2023-02-27 01:17:46 -0100E29010A4A000,"Wanba Warriors",,playable,2020-10-04 17:56:22 -010078800825E000,"Wanderjahr TryAgainOrWalkAway",,playable,2020-12-16 09:46:04 -0100B27010436000,"Wanderlust Travel Stories",,playable,2021-04-07 16:09:12 -0100F8A00853C000,"Wandersong",nvdec,playable,2021-06-04 15:33:34 -0100D67013910000,"Wanna Survive",,playable,2022-11-12 21:15:43 -010056901285A000,"War Dogs: Red's Return",,playable,2022-11-13 15:29:01 -01004FA01391A000,"War Of Stealth - assassin",,playable,2021-05-22 17:34:38 -010035A00D4E6000,"War Party",nvdec,playable,2021-01-27 18:26:32 -010049500DE56000,"War Tech Fighters",nvdec,playable,2022-09-16 22:29:31 -010084D00A134000,"War Theatre",gpu,ingame,2021-06-07 19:42:45 -0100B6B013B8A000,"War Truck Simulator",,playable,2021-01-31 11:22:54 -0100563011B4A000,"War-Torn Dreams",crash,nothing,2020-10-21 11:36:16 -010054900F51A000,"WARBORN",,playable,2020-06-25 12:36:47 -01000F0002BB6000,"Wargroove",online-broken,playable,2022-08-31 10:30:45 -0100C6000EEA8000,"Warhammer 40,000: Mechanicus",nvdec,playable,2021-06-13 10:46:38 -0100E5600D7B2000,"WARHAMMER 40,000: SPACE WOLF",online-broken,playable,2022-09-20 21:11:20 -010031201307A000,"Warhammer Age of Sigmar: Storm Ground",nvdec;online-broken;UE4,playable,2022-11-13 15:46:14 -01002FF00F460000,"Warhammer Quest 2: The End Times",,playable,2020-08-04 15:28:03 -0100563010E0C000,"WarioWare™: Get It Together!",gpu;opengl-backend-bug,ingame,2024-04-23 01:04:56 -010045B018EC2000,"WarioWare™: Move It!",,playable,2023-11-14 00:23:51 -0100E0400E320000,"Warlocks 2: God Slayers",,playable,2020-12-16 17:36:50 -0100DB300A026000,"Warp Shift",nvdec,playable,2020-12-15 14:48:48 -010032700EAC4000,"WarriOrb",UE4,playable,2021-06-17 15:45:14 -0100E8500AD58000,"WARRIORS OROCHI 4 ULTIMATE",nvdec;online-broken,playable,2024-08-07 01:50:37 -0100CD900FB24000,"WARTILE",UE4;crash;gpu,menus,2020-12-11 21:56:10 -010039A00BC64000,"Wasteland 2: Director's Cut",nvdec,playable,2021-01-27 13:34:11 -0100B79011F06000,"Water Balloon Mania",,playable,2020-10-23 20:20:59 -0100BA200C378000,"Way of the Passive Fist",gpu,ingame,2021-02-26 21:07:06 -0100560010E3E000,"We should talk.",crash,nothing,2020-08-03 12:32:36 -010096000EEBA000,"Welcome to Hanwell",UE4;crash,boots,2020-08-03 11:54:57 -0100D7F010B94000,"Welcome to Primrose Lake",,playable,2022-10-21 11:30:57 -010035600EC94000,"Wenjia",,playable,2020-06-08 11:38:30 -010031B00A4E8000,"West of Loathing",,playable,2021-01-28 12:35:19 -010038900DFE0000,"What Remains of Edith Finch",slow;UE4,playable,2022-08-31 19:57:59 -010033600ADE6000,"Wheel of Fortune®",crash;Needs More Attention;nvdec,boots,2023-11-12 20:29:24 -0100DFC00405E000,"Wheels of Aurelia",,playable,2021-01-27 21:59:25 -010027D011C9C000,"Where Angels Cry",gpu;nvdec,ingame,2022-09-30 22:24:47 -0100FDB0092B4000,"Where Are My Friends?",,playable,2022-09-21 14:39:26 -01000C000C966000,"Where the Bees Make Honey",,playable,2020-07-15 12:40:49 -010017500E7E0000,"Whipseey and the Lost Atlas",,playable,2020-06-23 20:24:14 -010015A00AF1E000,"Whispering Willows",nvdec,playable,2022-09-30 22:33:05 -010027F0128EA000,"Who Wants to Be a Millionaire?",crash,nothing,2020-12-11 20:22:42 -0100C7800CA06000,"Widget Satchel",,playable,2022-09-16 22:41:07 -0100CFC00A1D8000,"Wild Guns™ Reloaded",,playable,2021-01-28 12:29:05 -010071F00D65A000,"Wilmot's Warehouse",audio;gpu,ingame,2021-06-02 17:24:32 -010048800B638000,"Windjammers",online,playable,2020-10-13 11:24:25 -010059900BA3C000,"Windscape",,playable,2022-10-21 11:49:42 -0100D6800CEAC000,"Windstorm: An Unexpected Arrival",UE4,playable,2021-06-07 19:33:19 -01005A100B314000,"Windstorm: Start of a Great Friendship",UE4;gpu;nvdec,ingame,2020-12-22 13:17:48 -010035B012F28000,"Wing of Darkness",UE4,playable,2022-11-13 16:03:51 -0100A4A015FF0000,"Winter Games 2023",deadlock,menus,2023-11-07 20:47:36 -010012A017F18800,"Witch On The Holy Night",,playable,2023-03-06 23:28:11 -0100454012E32000,"Witch Spring 3 Re:Fine -The Story of the Marionette Witch Eirudy-",crash,ingame,2021-08-08 11:56:18 -01002FC00C6D0000,"Witch Thief",,playable,2021-01-27 18:16:07 -010061501904E000,"Witch's Garden",gpu;crash;vulkan-backend-bug;opengl-backend-bug,ingame,2023-01-11 02:11:24 -0100BD4011FFE000,"Witcheye",,playable,2020-12-14 22:56:08 -0100522007AAA000,"Wizard of Legend",,playable,2021-06-07 12:20:46 -010081900F9E2000,"Wizards of Brandel",,nothing,2020-10-14 15:52:33 -0100C7600E77E000,"Wizards: Wand of Epicosity",,playable,2022-10-07 12:32:06 -01009040091E0000,"Wolfenstein II®: The New Colossus™",gpu,ingame,2024-04-05 05:39:46 -01003BD00CAAE000,"Wolfenstein: Youngblood",online-broken,boots,2024-07-12 23:49:20 -010037A00F5E2000,"Wonder Blade",,playable,2020-12-11 17:55:31 -0100B49016FF0000,"Wonder Boy Anniversary Collection",deadlock,nothing,2023-04-20 16:01:48 -0100EB2012E36000,"Wonder Boy Asha in Monster World",crash,nothing,2021-11-03 08:45:06 -0100A6300150C000,"Wonder Boy: The Dragon's Trap",,playable,2021-06-25 04:53:21 -0100F5D00C812000,"Wondershot",,playable,2022-08-31 21:05:31 -0100E0300EB04000,"Woodle Tree 2: Deluxe",gpu;slow,ingame,2020-06-04 18:44:00 -0100288012966000,"Woodsalt",,playable,2021-04-06 17:01:48 -010083E011BC8000,"Wordify",,playable,2020-10-03 09:01:07 -01009D500A194000,"World Conqueror X",,playable,2020-12-22 16:10:29 -010072000BD32000,"WORLD OF FINAL FANTASY MAXIMA",,playable,2020-06-07 13:57:23 -010009E001D90000,"World of Goo",gpu;32-bit;crash;regression,boots,2024-04-12 05:52:14 -010061F01DB7C800,"World of Goo 2",,boots,2024-08-08 22:52:49 -01001E300B038000,"World Soccer Pinball",,playable,2021-01-06 00:37:02 -010048900CF64000,"Worldend Syndrome",,playable,2021-01-03 14:16:32 -01008E9007064000,"WorldNeverland - Elnea Kingdom",,playable,2021-01-28 17:44:23 -010000301025A000,"Worlds of Magic: Planar Conquest",,playable,2021-06-12 12:51:28 -01009CD012CC0000,"Worm Jazz",gpu;services;UE4;regression,ingame,2021-11-10 10:33:04 -01001AE005166000,"Worms W.M.D",gpu;crash;nvdec;ldn-untested,boots,2023-09-16 21:42:59 -010037500C4DE000,"Worse Than Death",,playable,2021-06-11 16:05:40 -01006F100EB16000,"Woven",nvdec,playable,2021-06-02 13:41:08 -010087800DCEA000,"WRC 8 FIA World Rally Championship",nvdec,playable,2022-09-16 23:03:36 -01001A0011798000,"WRC 9 The Official Game",gpu;slow;nvdec,ingame,2022-10-25 19:47:39 -0100DC0012E48000,"Wreckfest",,playable,2023-02-12 16:13:00 -0100C5D00EDB8000,"Wreckin' Ball Adventure",UE4,playable,2022-09-12 18:56:28 -010033700418A000,"Wulverblade",nvdec,playable,2021-01-27 22:29:05 -01001C400482C000,"Wunderling DX",audio;crash,ingame,2022-09-10 13:20:12 -01003B401148E000,"Wurroom",,playable,2020-10-07 22:46:21 -010081700EDF4000,"WWE 2K Battlegrounds",nvdec;online-broken;UE4,playable,2022-10-07 12:44:40 -010009800203E000,"WWE 2K18",nvdec,playable,2023-10-21 17:22:01 -0100DF100B97C000,"X-Morph: Defense",,playable,2020-06-22 11:05:31 -0100D0B00FB74000,"XCOM® 2 Collection",gpu;crash,ingame,2022-10-04 09:38:30 -0100CC9015360000,"XEL",gpu,ingame,2022-10-03 10:19:39 -0100C9F009F7A000,"Xenoblade Chronicles 2: Torna ~ The Golden Country",slow;nvdec,playable,2023-01-28 16:47:28 -0100E95004038000,"Xenoblade Chronicles™ 2",deadlock;amd-vendor-bug,ingame,2024-03-28 14:31:41 -010074F013262000,"Xenoblade Chronicles™ 3",gpu;crash;nvdec;vulkan-backend-bug;amd-vendor-bug,ingame,2024-08-06 19:56:44 -0100FF500E34A000,"Xenoblade Chronicles™ Definitive Edition",nvdec,playable,2024-05-04 20:12:41 -010028600BA16000,"Xenon Racer",nvdec;UE4,playable,2022-08-31 22:05:30 -010064200C324000,"Xenon Valkyrie+",,playable,2021-06-07 20:25:53 -0100928005BD2000,"Xenoraid",,playable,2022-09-03 13:01:10 -01005B5009364000,"Xeodrifter",,playable,2022-09-03 13:18:39 -01006FB00DB02000,"Yaga",nvdec,playable,2022-09-16 23:17:17 -010076B0101A0000,"YesterMorrow",crash,ingame,2020-12-17 17:15:25 -010085500B29A000,"Yet Another Zombie Defense HD",,playable,2021-01-06 00:18:39 -0100725019978000,"YGGDRA UNION ~WE'LL NEVER FIGHT ALONE~",,playable,2020-04-03 02:20:47 -0100634008266000,"YIIK: A Postmodern RPG",,playable,2021-01-28 13:38:37 -0100C0000CEEA000,"Yo kai watch 1 for Nintendo Switch",gpu;opengl,ingame,2024-05-28 11:11:49 -010086C00AF7C000,"Yo-Kai Watch 4++",,playable,2024-06-18 20:21:44 -010002D00632E000,"Yoku's Island Express",nvdec,playable,2022-09-03 13:59:02 -0100F47016F26000,"Yomawari 3",,playable,2022-05-10 08:26:51 -010012F00B6F2000,"Yomawari: The Long Night Collection",,playable,2022-09-03 14:36:59 -0100CC600ABB2000,"Yonder: The Cloud Catcher Chronicles (Retail Only)",,playable,2021-01-28 14:06:25 -0100BE50042F6000,"Yono and the Celestial Elephants",,playable,2021-01-28 18:23:58 -0100F110029C8000,"Yooka-Laylee",,playable,2021-01-28 14:21:45 -010022F00DA66000,"Yooka-Laylee and the Impossible Lair",,playable,2021-03-05 17:32:21 -01006000040C2000,"Yoshi’s Crafted World™",gpu;audout,ingame,2021-08-30 13:25:51 -0100AE800C9C6000,"Yoshi’s Crafted World™ Demo",gpu,boots,2020-12-16 14:57:40 -,"Yoshiwara Higanbana Kuon no Chigiri",nvdec,playable,2020-10-17 19:14:46 -01003A400C3DA800,"YouTube",,playable,2024-06-08 05:24:10 -00100A7700CCAA40,"Youtubers Life00",nvdec,playable,2022-09-03 14:56:19 -0100E390124D8000,"Ys IX: Monstrum Nox",,playable,2022-06-12 04:14:42 -0100F90010882000,"Ys Origin",nvdec,playable,2024-04-17 05:07:33 -01007F200B0C0000,"Ys VIII: Lacrimosa of DANA",nvdec,playable,2023-08-05 09:26:41 -010022400BE5A000,"Yu-Gi-Oh! Legacy of the Duelist : Link Evolution",,playable,2024-09-27 21:48:43 -01002D60188DE000,"Yu-Gi-Oh! Rush Duel: Dawn of the Battle Royale!! Let's Go! Go Rush!!",crash,ingame,2023-03-17 01:54:01 -010037D00DBDC000,"YU-NO: A girl who chants love at the bound of this world.",nvdec,playable,2021-01-26 17:03:52 -0100B56011502000,"Yumeutsutsu Re:After",,playable,2022-11-20 16:09:06 -,"Yunohana Spring! - Mellow Times -",audio;crash,menus,2020-09-27 19:27:40 -0100307011C44000,"Yuppie Psycho: Executive Edition",crash,ingame,2020-12-11 10:37:06 -0100FC900963E000,"Yuri",,playable,2021-06-11 13:08:50 -010092400A678000,"Zaccaria Pinball",online-broken,playable,2022-09-03 15:44:28 -0100E7900C4C0000,"Zarvot",,playable,2021-01-28 13:51:36 -01005F200F7C2000,"Zen Chess Collection",,playable,2020-07-01 22:28:27 -01008DD0114AE000,"Zenge",,playable,2020-10-22 13:23:57 -0100057011E50000,"Zengeon",services-horizon;crash,boots,2024-04-29 15:43:07 -0100AAC00E692000,"Zenith",,playable,2022-09-17 09:57:02 -0100A6A00894C000,"ZERO GUNNER 2- for Nintendo Switch",,playable,2021-01-04 20:17:14 -01004B001058C000,"Zero Strain",services;UE4,menus,2021-11-10 07:48:32 -,"Zettai kaikyu gakuen",gpu;nvdec,ingame,2020-08-25 15:15:54 -0100D7B013DD0000,"Ziggy the Chaser",,playable,2021-02-04 20:34:27 -010086700EF16000,"ZikSquare",gpu,ingame,2021-11-06 02:02:48 -010069C0123D8000,"Zoids Wild Blast Unleashed",nvdec,playable,2022-10-15 11:26:59 -0100C7300EEE4000,"Zombie Army Trilogy",ldn-untested;online,playable,2020-12-16 12:02:28 -01006CF00DA8C000,"Zombie Driver Immortal Edition",nvdec,playable,2020-12-14 23:15:10 -0100CFE003A64000,"ZOMBIE GOLD RUSH",online,playable,2020-09-24 12:56:08 -01001740116EC000,"Zombie's Cool",,playable,2020-12-17 12:41:26 -01000E5800D32C00,"Zombieland: Double Tap - Road Trip0",,playable,2022-09-17 10:08:45 -0100CD300A1BA000,"Zombillie",,playable,2020-07-23 17:42:23 -01001EE00A6B0000,"Zotrix: Solar Division",,playable,2021-06-07 20:34:05 -0100B9B00C6A4000,"この世の果てで恋を唄う少女YU-NO",audio,ingame,2021-01-22 07:00:16 -,"スーパーファミコン Nintendo Switch Online",slow,ingame,2020-03-14 05:48:38 -01000BB01CB8A000,"トラブル・マギア ~訳アリ少女は未来を勝ち取るために異国の魔法学校へ留学します~(Trouble Magia ~Wakeari Shoujo wa Mirai o Kachitoru Tame ni Ikoku no Mahou Gakkou e Ryuugaku Shimasu~)",,nothing,2024-09-28 07:03:14 -010065500B218000,"メモリーズオフ - Innocent Fille",,playable,2022-12-02 17:36:48 -010032400E700000,"二ノ国 白き聖灰の女王",services;32-bit,menus,2023-04-16 17:11:06 -0100F3100DA46000,"初音ミク Project DIVA MEGA39's",audio;loader-allocator,playable,2022-07-29 11:45:52 -010047F012BE2000,"密室のサクリファイス/ABYSS OF THE SACRIFICE",nvdec,playable,2022-10-21 13:56:28 -0100BF401AF9C000,"御伽活劇 豆狸のバケル ~オラクル祭太郎の祭難!!~ (Otogi Katsugeki Mameda no Bakeru Oracle Saitarou no Sainan!!)",slow,playable,2023-12-31 14:37:17 -0100AFA01750C000,"死神と少女/Shinigami to Shoujo",gpu;Incomplete,ingame,2024-03-22 01:06:45 -01001BA01EBFC000,"燃えよ! 乙女道士 ~華遊恋語~ (Moeyo! Otome Doushi Kayu Koigatari)",services-horizon,nothing,2024-09-28 12:22:55 -0100936018EB4000,"牧場物語 Welcome!ワンダフルライフ",crash,ingame,2023-04-25 19:43:52 -0100F4401940A000,"超探偵事件簿 レインコード (Master Detective Archives: Rain Code)",crash,ingame,2024-02-12 20:58:31 -010064801A01C000,"超次元ゲイム ネプテューヌ GameMaker R:Evolution",crash,nothing,2023-10-30 22:37:40 +"title_id","game_name","labels","status","last_updated" +010099F00EF3E000,"-KLAUS-",nvdec,playable,2020-06-27 13:27:30 +0100BA9014A02000,".hack//G.U. Last Recode",deadlock,boots,2022-03-12 19:15:47 +010098800C4B0000,"'n Verlore Verstand",slow,ingame,2020-12-10 18:00:28 +01009A500E3DA000,"'n Verlore Verstand - Demo",,playable,2021-02-09 00:13:32 +0100A5D01174C000,"/Connection Haunted ",slow,playable,2020-12-10 18:57:14 +01001E500F7FC000,"#Funtime",,playable,2020-12-10 16:54:35 +01000E50134A4000,"#Halloween, Super Puzzles Dream",nvdec,playable,2020-12-10 20:43:58 +01004D100C510000,"#KILLALLZOMBIES",slow,playable,2020-12-16 01:50:25 +0100325012C12000,"#NoLimitFantasy, Super Puzzles Dream",nvdec,playable,2020-12-12 17:21:32 +01005D400E5C8000,"#RaceDieRun",,playable,2020-07-04 20:23:16 +01003DB011AE8000,"#womenUp, Super Puzzles Dream",,playable,2020-12-12 16:57:25 +0100D87012A14000,"#womenUp, Super Puzzles Dream Demo",nvdec,playable,2021-02-09 00:03:31 +01000320000CC000,"1-2-Switch™",services,playable,2022-02-18 14:44:03 +01004D1007926000,"10 Second Run RETURNS",gpu,ingame,2022-07-17 13:06:18 +0100DC000A472000,"10 Second Run RETURNS Demo",gpu,ingame,2021-02-09 00:17:18 +0100D82015774000,"112 Operator",nvdec,playable,2022-11-13 22:42:50 +010051E012302000,"112th Seed",,playable,2020-10-03 10:32:38 +01007F600D1B8000,"12 is Better Than 6",,playable,2021-02-22 16:10:12 +0100B1A010014000,"12 Labours of Hercules II: The Cretan Bull",cpu;32-bit;crash,nothing,2022-12-07 13:43:10 +0100A840047C2000,"12 orbits",,playable,2020-05-28 16:13:26 +01003FC01670C000,"13 Sentinels: Aegis Rim",slow,ingame,2024-06-10 20:33:38 +0100C54015002000,"13 Sentinels: Aegis Rim Demo",demo,playable,2022-04-13 14:15:48 +01007E600EEE6000,"140",,playable,2020-08-05 20:01:33 +0100B94013D28000,"16-Bit Soccer Demo",,playable,2021-02-09 00:23:07 +01005CA0099AA000,"1917 - The Alien Invasion DX",,playable,2021-01-08 22:11:16 +0100829010F4A000,"1971 Project Helios",,playable,2021-04-14 13:50:19 +0100D1000B18C000,"1979 Revolution: Black Friday",nvdec,playable,2021-02-21 21:03:43 +01007BB00FC8A000,"198X",,playable,2020-08-07 13:24:38 +010075601150A000,"1993 Shenandoah",,playable,2020-10-24 13:55:42 +0100148012550000,"1993 Shenandoah Demo",,playable,2021-02-09 00:43:43 +010096500EA94000,"2048 Battles",,playable,2020-12-12 14:21:25 +010024C0067C4000,"2064: Read Only Memories INTEGRAL",deadlock,menus,2020-05-28 16:53:58 +0100749009844000,"20XX",gpu,ingame,2023-08-14 09:41:44 +01007550131EE000,"2URVIVE",,playable,2022-11-17 13:49:37 +0100E20012886000,"2weistein – The Curse of the Red Dragon",nvdec;UE4,playable,2022-11-18 14:47:07 +0100DAC013D0A000,"30 in 1 game collection vol. 2",online-broken,playable,2022-10-15 17:22:27 +010056D00E234000,"30-in-1 Game Collection",online-broken,playable,2022-10-15 17:47:09 +0100FB5010D2E000,"3000th Duel",,playable,2022-09-21 17:12:08 +01003670066DE000,"36 Fragments of Midnight",,playable,2020-05-28 15:12:59 +0100AF400C4CE000,"39 Days to Mars",,playable,2021-02-21 22:12:46 +010010C013F2A000,"3D Arcade Fishing",,playable,2022-10-25 21:50:51 +01006DA00707C000,"3D MiniGolf",,playable,2021-01-06 09:22:11 +01006890126E4000,"4x4 Dirt Track",,playable,2020-12-12 21:41:42 +010010100FF14000,"60 Parsecs!",,playable,2022-09-17 11:01:17 +0100969005E98000,"60 Seconds!",services,ingame,2021-11-30 01:04:14 +0100ECF008474000,"6180 the moon",,playable,2020-05-28 15:39:24 +0100EFE00E964000,"64.0",,playable,2020-12-12 21:31:58 +0100DA900B67A000,"7 Billion Humans",32-bit,playable,2020-12-17 21:04:58 +01004B200DF76000,"7th Sector",nvdec,playable,2020-08-10 14:22:14 +0100E9F00B882000,"8-BIT ADV STEINS;GATE",audio,ingame,2020-01-12 15:05:06 +0100B0700E944000,"80 DAYS",,playable,2020-06-22 21:43:01 +01006B1011B9E000,"80's OVERDRIVE",,playable,2020-10-16 14:33:32 +010006A0042F0000,"88 Heroes - 98 Heroes Edition",,playable,2020-05-28 14:13:02 +010005E00E2BC000,"9 Monkeys of Shaolin",UE4;gpu;slow,ingame,2020-11-17 11:58:43 +0100C5F012E3E000,"9 Monkeys of Shaolin Demo",UE4;gpu;nvdec,ingame,2021-02-09 01:03:30 +01000360107BC000,"911 Operator Deluxe Edition",,playable,2020-07-14 13:57:44 +0100B2C00682E000,"99Vidas - Definitive Edition",online,playable,2020-10-29 13:00:40 +010023500C2F0000,"99Vidas Demo",,playable,2021-02-09 12:51:31 +0100DB00117BA000,"9th Dawn III",,playable,2020-12-12 22:27:27 +010096A00CC80000,"A Ch'ti Bundle",nvdec,playable,2022-10-04 12:48:44 +010021D00D53E000,"A Dark Room",gpu,ingame,2020-12-14 16:14:28 +010026B006802000,"A Duel Hand Disaster: Trackher",nvdec;online-working,playable,2022-09-04 14:24:55 +0100582012B90000,"A Duel Hand Disaster: Trackher DEMO",crash;demo;nvdec,ingame,2021-03-24 18:45:27 +01006CE0134E6000,"A Frog Game",,playable,2020-12-14 16:09:53 +010056E00853A000,"A Hat in Time",,playable,2024-06-25 19:52:44 +01009E1011EC4000,"A HERO AND A GARDEN",,playable,2022-12-05 16:37:47 +01005EF00CFDA000,"A Knight's Quest",UE4,playable,2022-09-12 20:44:20 +01008DD006C52000,"A Magical High School Girl",,playable,2022-07-19 14:40:50 +01004890117B2000,"A Short Hike",,playable,2020-10-15 00:19:58 +0100F0901006C000,"A Sound Plan",crash,boots,2020-12-14 16:46:21 +01007DD011C4A000,"A Summer with the Shiba Inu",,playable,2021-06-10 20:51:16 +0100A3E010E56000,"A-Train: All Aboard! Tourism",nvdec,playable,2021-04-06 17:48:19 +010097A00CC0A000,"Aaero: Complete Edition",nvdec,playable,2022-07-19 14:49:55 +0100EFC010398000,"Aborigenus",,playable,2020-08-05 19:47:24 +0100A5B010A66000,"Absolute Drift",,playable,2020-12-10 14:02:44 +0100C1300BBC6000,"ABZÛ",UE4,playable,2022-07-19 15:02:52 +01003C400871E000,"ACA NEOGEO 2020 SUPER BASEBALL",online,playable,2021-04-12 13:23:51 +0100FC000AFC6000,"ACA NEOGEO 3 COUNT BOUT",online,playable,2021-04-12 13:16:42 +0100AC40038F4000,"ACA NEOGEO AERO FIGHTERS 2",online,playable,2021-04-08 15:44:09 +0100B91008780000,"ACA NEOGEO AERO FIGHTERS 3",online,playable,2021-04-12 13:11:17 +0100B4800AFBA000,"ACA NEOGEO AGGRESSORS OF DARK KOMBAT",online,playable,2021-04-01 22:48:01 +01003FE00A2F6000,"ACA NEOGEO BASEBALL STARS PROFESSIONAL",online,playable,2021-04-01 21:23:05 +0100DFC003398000,"ACA NEOGEO BLAZING STAR",crash;services,menus,2020-05-26 17:29:02 +0100D2400AFB0000,"ACA NEOGEO CROSSED SWORDS",online,playable,2021-04-01 20:42:59 +0100EE6002B48000,"ACA NEOGEO FATAL FURY",online,playable,2021-04-01 20:36:23 +0100EEA00AFB2000,"ACA NEOGEO FOOTBALL FRENZY",,playable,2021-03-29 20:12:12 +0100CB2001DB8000,"ACA NEOGEO GAROU: MARK OF THE WOLVES",online,playable,2021-04-01 20:31:10 +01005D700A2F8000,"ACA NEOGEO GHOST PILOTS",online,playable,2021-04-01 20:26:45 +01000D10038E6000,"ACA NEOGEO LAST RESORT",online,playable,2021-04-01 19:51:22 +0100A2900AFA4000,"ACA NEOGEO LEAGUE BOWLING",crash;services,menus,2020-05-26 17:11:04 +0100A050038F2000,"ACA NEOGEO MAGICAL DROP II",crash;services,menus,2020-05-26 16:48:24 +01007920038F6000,"ACA NEOGEO MAGICIAN LORD",online,playable,2021-04-01 19:33:26 +0100EBE002B3E000,"ACA NEOGEO METAL SLUG",,playable,2021-02-21 13:56:48 +010086300486E000,"ACA NEOGEO METAL SLUG 2",online,playable,2021-04-01 19:25:52 +0100BA8001DC6000,"ACA NEOGEO METAL SLUG 3",crash;services,menus,2020-05-26 16:32:45 +01009CE00AFAE000,"ACA NEOGEO METAL SLUG 4",online,playable,2021-04-01 18:12:18 +01008FD004DB6000,"ACA NEOGEO METAL SLUG X",crash;services,menus,2020-05-26 14:07:20 +010038F00AFA0000,"ACA NEOGEO Money Puzzle Exchanger",online,playable,2021-04-01 17:59:56 +01002E70032E8000,"ACA NEOGEO NEO TURF MASTERS",,playable,2021-02-21 15:12:01 +010052A00A306000,"ACA NEOGEO NINJA COMBAT",,playable,2021-03-29 21:17:28 +01007E800AFB6000,"ACA NEOGEO NINJA COMMANDO",online,playable,2021-04-01 17:28:18 +01003A5001DBA000,"ACA NEOGEO OVER TOP",,playable,2021-02-21 13:16:25 +010088500878C000,"ACA NEOGEO REAL BOUT FATAL FURY SPECIAL",online,playable,2021-04-01 17:18:27 +01005C9002B42000,"ACA NEOGEO SAMURAI SHODOWN",online,playable,2021-04-01 17:11:35 +010047F001DBC000,"ACA NEOGEO SAMURAI SHODOWN IV",online,playable,2021-04-12 12:58:54 +010049F00AFE8000,"ACA NEOGEO SAMURAI SHODOWN V SPECIAL",online,playable,2021-04-10 18:07:13 +01009B300872A000,"ACA NEOGEO SENGOKU 2",online,playable,2021-04-10 17:36:44 +01008D000877C000,"ACA NEOGEO SENGOKU 3",online,playable,2021-04-10 16:11:53 +01008A9001DC2000,"ACA NEOGEO SHOCK TROOPERS",crash;services,menus,2020-05-26 15:29:34 +01007D1004DBA000,"ACA NEOGEO SPIN MASTER",online,playable,2021-04-10 15:50:19 +010055A00A300000,"ACA NEOGEO SUPER SIDEKICKS 2",online,playable,2021-04-10 16:05:58 +0100A4D00A308000,"ACA NEOGEO SUPER SIDEKICKS 3 : THE NEXT GLORY",online,playable,2021-04-10 15:39:22 +0100EB2001DCC000,"ACA NEOGEO THE KING OF FIGHTERS '94",crash;services,menus,2020-05-26 15:03:44 +01009DC001DB6000,"ACA NEOGEO THE KING OF FIGHTERS '95",,playable,2021-03-29 20:27:35 +01006F0004FB4000,"ACA NEOGEO THE KING OF FIGHTERS '96",online,playable,2021-04-10 14:49:10 +0100170008728000,"ACA NEOGEO THE KING OF FIGHTERS '97",online,playable,2021-04-10 14:43:27 +0100B42001DB4000,"ACA NEOGEO THE KING OF FIGHTERS '98",crash;services,menus,2020-05-26 14:54:20 +0100583001DCA000,"ACA NEOGEO THE KING OF FIGHTERS '99",online,playable,2021-04-10 14:36:56 +0100B97002B44000,"ACA NEOGEO THE KING OF FIGHTERS 2000",online,playable,2021-04-10 15:24:35 +010048200AFC2000,"ACA NEOGEO THE KING OF FIGHTERS 2001",online,playable,2021-04-10 15:16:23 +0100CFD00AFDE000,"ACA NEOGEO THE KING OF FIGHTERS 2002",online,playable,2021-04-10 15:01:55 +0100EF100AFE6000,"ACA NEOGEO THE KING OF FIGHTERS 2003",online,playable,2021-04-10 14:54:31 +0100699008792000,"ACA NEOGEO THE LAST BLADE 2",online,playable,2021-04-10 14:31:54 +0100F7F00AFA2000,"ACA NEOGEO THE SUPER SPY",online,playable,2021-04-10 14:26:33 +0100CEF001DC0000,"ACA NEOGEO WAKU WAKU 7",online,playable,2021-04-10 14:20:52 +01009D4001DC4000,"ACA NEOGEO WORLD HEROES PERFECT",crash;services,menus,2020-05-26 14:14:36 +01002E700AFC4000,"ACA NEOGEO ZUPAPA!",online,playable,2021-03-25 20:07:33 +0100A9900CB5C000,"Access Denied",,playable,2022-07-19 15:25:10 +01007C50132C8000,"Ace Angler: Fishing Spirits",crash,menus,2023-03-03 03:21:39 +010005501E68C000,"Ace Attorney Investigations Collection",,playable,2024-09-19 16:38:05 +010033401E68E000,"Ace Attorney Investigations Collection DEMO",,playable,2024-09-07 06:16:42 +010039301B7E0000,"Ace Combat 7 - Skies Unknown Deluxe Edition",gpu;UE4,ingame,2024-09-27 14:31:43 +0100FF1004D56000,"Ace of Seafood",,playable,2022-07-19 15:32:25 +0100B28003440000,"Aces of the Luftwaffe - Squadron",nvdec;slow,playable,2020-05-27 12:29:42 +010054300D822000,"Aces of the Luftwaffe - Squadron Demo",nvdec,playable,2021-02-09 13:12:28 +010079B00B3F4000,"Achtung! Cthulhu Tactics",,playable,2020-12-14 18:40:27 +0100DBC0081A4000,"ACORN Tactics",,playable,2021-02-22 12:57:40 +010043C010AEA000,"Across the Grooves",,playable,2020-06-27 12:29:51 +010039A010DA0000,"Active Neurons - Puzzle game",,playable,2021-01-27 21:31:21 +01000D1011EF0000,"Active Neurons 2",,playable,2022-10-07 16:21:42 +010031C0122B0000,"Active Neurons 2 Demo",,playable,2021-02-09 13:40:21 +0100EE1013E12000,"Active Neurons 3 - Wonders Of The World",,playable,2021-03-24 12:20:20 +0100CD40104DE000,"Actual Sunlight",gpu,ingame,2020-12-14 17:18:41 +0100C0C0040E4000,"Adam's Venture™: Origins",,playable,2021-03-04 18:43:57 +010029700EB76000,"Adrenaline Rush - Miami Drive",,playable,2020-12-12 22:49:50 +0100300012F2A000,"Advance Wars™ 1+2: Re-Boot Camp",,playable,2024-01-30 18:19:44 +010014B0130F2000,"Adventure Llama",,playable,2020-12-14 19:32:24 +0100C990102A0000,"Adventure Pinball Bundle",slow,playable,2020-12-14 20:31:53 +0100C4E004406000,"Adventure Time: Pirates of the Enchiridion",nvdec,playable,2022-07-21 21:49:01 +010021F00C1C0000,"Adventures of Bertram Fiddle Episode 2: A Bleaker Predicklement",nvdec,playable,2021-02-22 14:56:37 +010072601233C000,"Adventures of Chris",,playable,2020-12-12 23:00:02 +0100A0A0136E8000,"Adventures of Chris Demo",,playable,2021-02-09 13:49:21 +01002B5012004000,"Adventures of Pip",nvdec,playable,2020-12-12 22:11:55 +01008C901266E000,"ADVERSE",UE4,playable,2021-04-26 14:32:51 +01008E6006502000,"Aegis Defenders",,playable,2021-02-22 13:29:33 +010064500AF72000,"Aegis Defenders demo",,playable,2021-02-09 14:04:17 +010001C011354000,"Aeolis Tournament",online,playable,2020-12-12 22:02:14 +01006710122CE000,"Aeolis Tournament Demo",nvdec,playable,2021-02-09 14:22:30 +0100A0400DDE0000,"AER Memories of Old",nvdec,playable,2021-03-05 18:43:43 +0100E9B013D4A000,"Aerial_Knight's Never Yield",,playable,2022-10-25 22:05:00 +0100087012810000,"Aery - Broken Memories",,playable,2022-10-04 13:11:52 +01000A8015390000,"Aery - Calm Mind",,playable,2022-11-14 14:26:58 +0100875011D0C000,"Aery - Little Bird Adventure",,playable,2021-03-07 15:25:51 +010018E012914000,"Aery - Sky Castle",,playable,2022-10-21 17:58:49 +0100DF8014056000,"Aery – A Journey Beyond Time",,playable,2021-04-05 15:52:25 +01006C40086EA000,"AeternoBlade",nvdec,playable,2020-12-14 20:06:48 +0100B1C00949A000,"AeternoBlade Demo",nvdec,playable,2021-02-09 14:39:26 +01009D100EA28000,"AeternoBlade II",online-broken;UE4;vulkan-backend-bug,playable,2022-09-12 21:11:18 +,"AeternoBlade II Demo Version",gpu;nvdec,ingame,2021-02-09 15:10:19 +01001B400D334000,"AFL Evolution 2",slow;online-broken;UE4,playable,2022-12-07 12:45:56 +0100DB100BBCE000,"Afterparty",,playable,2022-09-22 12:23:19 +010087C011C4E000,"Agatha Christie - The ABC Murders",,playable,2020-10-27 17:08:23 +010093600A60C000,"Agatha Knife",,playable,2020-05-28 12:37:58 +010005400A45E000,"Agent A: A puzzle in disguise",,playable,2020-11-16 22:53:27 +01008E8012C02000,"Agent A: A puzzle in disguise (Demo)",,playable,2021-02-09 18:30:41 +0100E4700E040000,"Ages of Mages: The last keeper",vulkan-backend-bug,playable,2022-10-04 11:44:05 +010004D00A9C0000,"Aggelos",gpu,ingame,2023-02-19 13:24:23 +010072600D21C000,"Agony",UE4;crash,boots,2020-07-10 16:21:18 +010089B00D09C000,"AI: THE SOMNIUM FILES",nvdec,playable,2022-09-04 14:45:06 +0100C1700FB34000,"AI: THE SOMNIUM FILES Demo",nvdec,playable,2021-02-10 12:52:33 +01006E8011C1E000,"Ailment",,playable,2020-12-12 22:30:41 +0100C7600C7D6000,"Air Conflicts: Pacific Carriers",,playable,2021-01-04 10:52:50 +010005A00A4F4000,"Air Hockey",,playable,2020-05-28 16:44:37 +0100C9E00F54C000,"Air Missions: HIND",,playable,2020-12-13 10:16:45 +0100E95011FDC000,"Aircraft Evolution",nvdec,playable,2021-06-14 13:30:18 +010010A00DB72000,"Airfield Mania Demo",services;demo,boots,2022-04-10 03:43:02 +01003DD00BFEE000,"Airheart - Tales of broken Wings",,playable,2021-02-26 15:20:27 +01007F100DE52000,"Akane",nvdec,playable,2022-07-21 00:12:18 +01009A800F0C8000,"Akash: Path of the Five",gpu;nvdec,ingame,2020-12-14 22:33:12 +010053100B0EA000,"Akihabara - Feel the Rhythm Remixed",,playable,2021-02-22 14:39:35 +0100D4C00EE0C000,"Akuarium",slow,playable,2020-12-12 23:43:36 +010026E00FEBE000,"Akuto: Showdown",,playable,2020-08-04 19:43:27 +0100F5400AB6C000,"Alchemic Jousts",gpu,ingame,2022-12-08 15:06:28 +010001E00F75A000,"Alchemist's Castle",,playable,2020-12-12 23:54:08 +01004510110C4000,"Alder's Blood Prologue",crash,ingame,2021-02-09 19:03:03 +0100D740110C0000,"Alder's Blood: Definitive Edition",,playable,2020-08-28 15:15:23 +01000E000EEF8000,"Aldred Knight",services,playable,2021-11-30 01:49:17 +010025D01221A000,"Alex Kidd in Miracle World DX",,playable,2022-11-14 15:01:34 +0100A2E00D0E0000,"Alien Cruise",,playable,2020-08-12 13:56:05 +0100C1500DBDE000,"Alien Escape",,playable,2020-06-03 23:43:18 +010075D00E8BA000,"Alien: Isolation",nvdec;vulkan-backend-bug,playable,2022-09-17 11:48:41 +0100CBD012FB6000,"All Walls Must Fall",UE4,playable,2022-10-15 19:16:30 +0100C1F00A9B8000,"All-Star Fruit Racing",nvdec;UE4,playable,2022-07-21 00:35:37 +0100AC501122A000,"Alluris",gpu;UE4,ingame,2023-08-02 23:13:50 +010063000C3CE000,"Almightree: The Last Dreamer",slow,playable,2020-12-15 13:59:03 +010083E010AE8000,"Along the Edge",,playable,2020-11-18 15:00:07 +010083E013188000,"Alpaca Ball: Allstars",nvdec,playable,2020-12-11 12:26:29 +01000A800B998000,"ALPHA",,playable,2020-12-13 12:17:45 +010053B0123DC000,"Alphaset by POWGI",,playable,2020-12-15 15:15:15 +01003E700FD66000,"Alt-Frequencies",,playable,2020-12-15 19:01:33 +01004DB00935A000,"Alteric",,playable,2020-11-08 13:53:22 +0100C3D00D1D4000,"Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz",,playable,2020-08-31 14:17:42 +0100A8A00D27E000,"Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz Trial version",,playable,2021-02-10 13:33:59 +010045201487C000,"Aluna: Sentinel of the Shards",nvdec,playable,2022-10-25 22:17:03 +01004C200B0B4000,"Alwa's Awakening",,playable,2020-10-13 11:52:01 +01001B7012214000,"Alwa's Legacy",,playable,2020-12-13 13:00:57 +010002B00C534000,"American Fugitive",nvdec,playable,2021-01-04 20:45:11 +010089D00A3FA000,"American Ninja Warrior: Challenge",nvdec,playable,2021-06-09 13:11:17 +01003CC00D0BE000,"Amnesia: Collection",,playable,2022-10-04 13:36:15 +010041D00DEB2000,"Amoeba Battle - Microscopic RTS Action",,playable,2021-05-06 13:33:41 +010046500C8D2000,"Among the Sleep - Enhanced Edition",nvdec,playable,2021-06-03 15:06:25 +0100B0C013912000,"Among Us",online;ldn-broken,menus,2021-09-22 15:20:17 +010050900E1C6000,"Anarcute",,playable,2021-02-22 13:17:59 +01009EE0111CC000,"Ancestors Legacy",nvdec;UE4,playable,2022-10-01 12:25:36 +010021700BC56000,"Ancient Rush 2",UE4;crash,menus,2020-07-14 14:58:47 +0100AE000AEBC000,"Angels of Death",nvdec,playable,2021-02-22 14:17:15 +010001E00A5F6000,"AngerForce: Reloaded for Nintendo Switch",,playable,2022-07-21 10:37:17 +0100F3500D05E000,"Angry Bunnies: Colossal Carrot Crusade",online-broken,playable,2022-09-04 14:53:26 +010084500C7DC000,"Angry Video Game Nerd I & II Deluxe",crash,ingame,2020-12-12 23:59:54 +0100706005B6A000,"Anima: Gate of Memories",nvdec,playable,2021-06-16 18:13:18 +010033F00B3FA000,"Anima: Gate of Memories - Arcane Edition",nvdec,playable,2021-01-26 16:55:51 +01007A400B3F8000,"Anima: Gate of Memories - The Nameless Chronicles",,playable,2021-06-14 14:33:06 +0100F38011CFE000,"Animal Crossing: New Horizons Island Transfer Tool",services;Needs Update;Incomplete,ingame,2022-12-07 13:51:19 +01006F8002326000,"Animal Crossing™: New Horizons",gpu;crash;nvdec;online-broken;ldn-works;mac-bug,ingame,2024-09-23 13:31:49 +010019500E642000,"Animal Fight Club",gpu,ingame,2020-12-13 13:13:33 +01002F4011A8E000,"Animal Fun for Toddlers and Kids",services,boots,2020-12-15 16:45:29 +010035500CA0E000,"Animal Hunter Z",,playable,2020-12-13 12:50:35 +010033C0121DC000,"Animal Pairs - Matching & Concentration Game for Toddlers & Kids",services,boots,2021-11-29 23:43:14 +010065B009B3A000,"Animal Rivals: Nintendo Switch Edition",,playable,2021-02-22 14:02:42 +0100EFE009424000,"Animal Super Squad",UE4,playable,2021-04-23 20:50:50 +0100A16010966000,"Animal Up!",,playable,2020-12-13 15:39:02 +010020D01AD24000,"ANIMAL WELL",,playable,2024-05-22 18:01:49 +0100451012492000,"Animals for Toddlers",services,boots,2020-12-15 17:27:27 +010098600CF06000,"Animated Jigsaws Collection",nvdec,playable,2020-12-15 15:58:34 +0100A1900B5B8000,"Animated Jigsaws: Beautiful Japanese Scenery Demo",nvdec,playable,2021-02-10 13:49:56 +010062500EB84000,"Anime Studio Story",,playable,2020-12-15 18:14:05 +01002B300EB86000,"Anime Studio Story Demo",,playable,2021-02-10 14:50:39 +010097600C322000,"ANIMUS",,playable,2020-12-13 15:11:47 +0100E5A00FD38000,"ANIMUS: Harbinger",,playable,2022-09-13 22:09:20 +010055500CCD2000,"Ankh Guardian - Treasure of the Demon's Temple",,playable,2020-12-13 15:55:49 +01009E600D78C000,"Anode",,playable,2020-12-15 17:18:58 +0100CB9018F5A000,"Another Code™: Recollection",gpu;crash,ingame,2024-09-06 05:58:52 +01001A900D312000,"Another Sight",UE4;gpu;nvdec,ingame,2020-12-03 16:49:59 +01003C300AAAE000,"Another World",slow,playable,2022-07-21 10:42:38 +01000FD00DF78000,"AnShi",nvdec;UE4,playable,2022-10-21 19:37:01 +010054C00D842000,"Anthill",services;nvdec,menus,2021-11-18 09:25:25 +0100596011E20000,"Anti Hero Bundle",nvdec,playable,2022-10-21 20:10:30 +0100016007154000,"Antiquia Lost",,playable,2020-05-28 11:57:32 +0100FE1011400000,"AntVentor",nvdec,playable,2020-12-15 20:09:27 +0100FA100620C000,"Ao no Kanata no Four Rhythm",,playable,2022-07-21 10:50:42 +010047000E9AA000,"AO Tennis 2",online-broken,playable,2022-09-17 12:05:07 +0100990011866000,"Aokana - Four Rhythms Across the Blue",,playable,2022-10-04 13:50:26 +01005B100C268000,"Ape Out",,playable,2022-09-26 19:04:47 +010054500E6D4000,"Ape Out DEMO",,playable,2021-02-10 14:33:06 +010051C003A08000,"Aperion Cyberstorm",,playable,2020-12-14 00:40:16 +01008CA00D71C000,"Aperion Cyberstorm [DEMO]",,playable,2021-02-10 15:53:21 +01008FC00C5BC000,"Apocalipsis Wormwood Edition",deadlock,menus,2020-05-27 12:56:37 +010045D009EFC000,"Apocryph: an old-school shooter",gpu,ingame,2020-12-13 23:24:10 +010020D01B890000,"Apollo Justice: Ace Attorney Trilogy",,playable,2024-06-21 21:54:27 +01005F20116A0000,"Apparition",nvdec;slow,ingame,2020-12-13 23:57:04 +0100AC10085CE000,"AQUA KITTY UDX",online,playable,2021-04-12 15:34:11 +0100FE0010886000,"Aqua Lungers",crash,ingame,2020-12-14 11:25:57 +0100D0D00516A000,"Aqua Moto Racing Utopia",,playable,2021-02-21 21:21:00 +010071800BA74000,"Aragami: Shadow Edition",nvdec,playable,2021-02-21 20:33:23 +0100C7D00E6A0000,"Arc of Alchemist",nvdec,playable,2022-10-07 19:15:54 +0100BE80097FA000,"Arcade Archives 10-Yard Fight",online,playable,2021-03-25 21:26:41 +01005DD00BE08000,"Arcade Archives ALPHA MISSION",online,playable,2021-04-15 09:20:43 +010083800DC70000,"Arcade Archives ALPINE SKI",online,playable,2021-04-15 09:28:46 +0100A5700AF32000,"Arcade Archives ARGUS",online,playable,2021-04-16 06:51:25 +010014F001DE2000,"Arcade Archives Armed F",online,playable,2021-04-16 07:00:17 +0100BEC00C7A2000,"Arcade Archives ATHENA",online,playable,2021-04-16 07:10:12 +0100426001DE4000,"Arcade Archives Atomic Robo-Kid",online,playable,2021-04-16 07:20:29 +0100192009824000,"Arcade Archives BOMB JACK",online,playable,2021-04-16 09:48:26 +010007A00980C000,"Arcade Archives City CONNECTION",online,playable,2021-03-25 22:16:15 +0100EDC00E35A000,"Arcade Archives CLU CLU LAND",online,playable,2021-04-16 10:00:42 +0100BB1001DD6000,"Arcade Archives CRAZY CLIMBER",online,playable,2021-03-25 22:24:15 +0100E9E00B052000,"Arcade Archives DONKEY KONG",Needs Update;crash;services,menus,2021-03-24 18:18:43 +0100F25001DD0000,"Arcade Archives DOUBLE DRAGON",online,playable,2021-03-25 22:44:34 +01009E3001DDE000,"Arcade Archives DOUBLE DRAGON II The Revenge",online,playable,2021-04-12 16:05:29 +0100496006EC8000,"Arcade Archives FRONT LINE",online,playable,2021-05-05 14:10:49 +01009A4008A30000,"Arcade Archives HEROIC EPISODE",online,playable,2021-03-25 23:01:26 +01007D200D3FC000,"Arcade Archives ICE CLIMBER",online,playable,2021-05-05 14:18:34 +010049400C7A8000,"Arcade Archives IKARI WARRIORS",online,playable,2021-05-05 14:24:46 +01000DB00980A000,"Arcade Archives Ikki",online,playable,2021-03-25 23:11:28 +010008300C978000,"Arcade Archives IMAGE FIGHT",online,playable,2021-05-05 14:31:21 +010010B008A36000,"Arcade Archives Kid Niki Radical Ninja",audio;online,ingame,2022-07-21 11:02:04 +0100E7C001DE0000,"Arcade Archives Kid's Horehore Daisakusen",online,playable,2021-04-12 16:21:29 +0100F380105A4000,"Arcade Archives LIFE FORCE",,playable,2020-09-04 13:26:25 +0100755004608000,"Arcade Archives Mario Bros.",online,playable,2021-03-26 11:31:32 +01000BE001DD8000,"Arcade Archives MOON CRESTA",online,playable,2021-05-05 14:39:29 +01003000097FE000,"Arcade Archives MOON PATROL",online,playable,2021-03-26 11:42:04 +01003EF00D3B4000,"Arcade Archives NINJA GAIDEN",audio;online,ingame,2021-04-12 16:27:53 +01002F300D2C6000,"Arcade Archives Ninja Spirit",online,playable,2021-05-05 14:45:31 +0100369001DDC000,"Arcade Archives Ninja-Kid",online,playable,2021-03-26 20:55:07 +01004A200BB48000,"Arcade Archives OMEGA FIGHTER",crash;services,menus,2020-08-18 20:50:54 +01007F8010C66000,"Arcade Archives PLUS ALPHA",audio,ingame,2020-07-04 20:47:55 +0100A6E00D3F8000,"Arcade Archives POOYAN",online,playable,2021-05-05 17:58:19 +01000D200C7A4000,"Arcade Archives PSYCHO SOLDIER",online,playable,2021-05-05 18:02:19 +01001530097F8000,"Arcade Archives PUNCH-OUT!!",online,playable,2021-03-25 22:10:55 +010081E001DD2000,"Arcade Archives Renegade",online,playable,2022-07-21 11:45:40 +0100FBA00E35C000,"Arcade Archives ROAD FIGHTER",online,playable,2021-05-05 18:09:17 +010060000BF7C000,"Arcade Archives ROUTE 16",online,playable,2021-05-05 18:40:41 +0100C2D00981E000,"Arcade Archives RYGAR",online,playable,2021-04-15 08:48:30 +01007A4009834000,"Arcade Archives Shusse Ozumo",online,playable,2021-05-05 17:52:25 +010008F00B054000,"Arcade Archives Sky Skipper",online,playable,2021-04-15 08:58:09 +01008C900982E000,"Arcade Archives Solomon's Key",online,playable,2021-04-19 16:27:18 +010069F008A38000,"Arcade Archives STAR FORCE",online,playable,2021-04-15 08:39:09 +0100422001DDA000,"Arcade Archives TERRA CRESTA",crash;services,menus,2020-08-18 20:20:55 +0100348001DE6000,"Arcade Archives TERRA FORCE",online,playable,2021-04-16 20:03:27 +0100DFD016B7A000,"Arcade Archives TETRIS® THE GRAND MASTER",,playable,2024-06-23 01:50:29 +0100DC000983A000,"Arcade Archives THE NINJA WARRIORS",online;slow,ingame,2021-04-16 19:54:56 +0100AF300D2E8000,"Arcade Archives TIME PILOT",online,playable,2021-04-16 19:22:31 +010029D006ED8000,"Arcade Archives Traverse USA",online,playable,2021-04-15 08:11:06 +010042200BE0C000,"Arcade Archives URBAN CHAMPION",online,playable,2021-04-16 10:20:03 +01004EC00E634000,"Arcade Archives VS. GRADIUS",online,playable,2021-04-12 14:53:58 +010021D00812A000,"Arcade Archives VS. SUPER MARIO BROS.",online,playable,2021-04-08 14:48:11 +01001B000D8B6000,"Arcade Archives WILD WESTERN",online,playable,2021-04-16 10:11:36 +010050000D6C4000,"Arcade Classics Anniversary Collection",,playable,2021-06-03 13:55:10 +01005A8010C7E000,"ARCADE FUZZ",,playable,2020-08-15 12:37:36 +010077000F620000,"Arcade Spirits",,playable,2020-06-21 11:45:03 +0100E680149DC000,"Arcaea",,playable,2023-03-16 19:31:21 +01003C2010C78000,"Archaica: The Path Of Light",crash,nothing,2020-10-16 13:22:26 +01004DA012976000,"Area 86",,playable,2020-12-16 16:45:52 +0100691013C46000,"ARIA CHRONICLE",,playable,2022-11-16 13:50:55 +0100D4A00B284000,"ARK: Survival Evolved",gpu;nvdec;online-broken;UE4;ldn-untested,ingame,2024-04-16 00:53:56 +0100C56012C96000,"Arkanoid vs. Space Invaders",services,ingame,2021-01-21 12:50:30 +010069A010606000,"Arkham Horror: Mother's Embrace",nvdec,playable,2021-04-19 15:40:55 +0100C5B0113A0000,"Armed 7 DX",,playable,2020-12-14 11:49:56 +010070A00A5F4000,"Armello",nvdec,playable,2021-01-07 11:43:26 +0100A5400AC86000,"ARMS Demo",,playable,2021-02-10 16:30:13 +01009B500007C000,"ARMS™",ldn-works;LAN,playable,2024-08-28 07:49:24 +0100184011B32000,"Arrest of a stone Buddha",crash,nothing,2022-12-07 16:55:00 +01007AB012102000,"Arrog",,playable,2020-12-16 17:20:50 +01008EC006BE2000,"Art of Balance",gpu;ldn-works,ingame,2022-07-21 17:13:57 +010062F00CAE2000,"Art of Balance DEMO",gpu;slow,ingame,2021-02-10 17:17:12 +01006AA013086000,"Art Sqool",nvdec,playable,2022-10-16 20:42:37 +0100CDD00DA70000,"Artifact Adventure Gaiden DX",,playable,2020-12-16 17:49:25 +0100C2500CAB6000,"Ary and the Secret of Seasons",,playable,2022-10-07 20:45:09 +0100C9F00AAEE000,"ASCENDANCE",,playable,2021-01-05 10:54:40 +0100D5800DECA000,"Asemblance",UE4;gpu,ingame,2020-12-16 18:01:23 +0100E4C00DE30000,"Ash of Gods: Redemption",deadlock,nothing,2020-08-10 18:08:32 +010027B00E40E000,"Ashen",nvdec;online-broken;UE4,playable,2022-09-17 12:19:14 +01007B000C834000,"Asphalt Legends Unite",services;crash;online-broken,menus,2022-12-07 13:28:29 +01007F600B134000,"Assassin's Creed® III: Remastered",nvdec,boots,2024-06-25 20:12:11 +010044700DEB0000,"Assassin’s Creed®: The Rebel Collection",gpu,ingame,2024-05-19 07:58:56 +0100DF200B24C000,"Assault Android Cactus+",,playable,2021-06-03 13:23:55 +0100BF8012A30000,"Assault ChaingunS KM",crash;gpu,ingame,2020-12-14 12:48:34 +0100C5E00E540000,"Assault on Metaltron Demo",,playable,2021-02-10 19:48:06 +010057A00C1F6000,"Astebreed",,playable,2022-07-21 17:33:54 +010081500EA1E000,"Asterix & Obelix XXL 3 - The Crystal Menhir",gpu;nvdec;regression,ingame,2022-11-28 14:19:23 +0100F46011B50000,"Asterix & Obelix XXL: Romastered",gpu;nvdec;opengl,ingame,2023-08-16 21:22:06 +01007300020FA000,"ASTRAL CHAIN",,playable,2024-07-17 18:02:19 +0100E5F00643C000,"Astro Bears Party",,playable,2020-05-28 11:21:58 +0100F0400351C000,"Astro Duel Deluxe",32-bit,playable,2021-06-03 11:21:48 +0100B80010C48000,"Astrologaster",cpu;32-bit;crash,nothing,2023-06-28 15:39:31 +0100DF401249C000,"AstroWings: Space War",,playable,2020-12-14 13:10:44 +010099801870E000,"Atari 50: The Anniversary Celebration",slow,playable,2022-11-14 19:42:10 +010088600C66E000,"Atelier Arland series Deluxe Pack",nvdec,playable,2021-04-08 15:33:15 +0100D9D00EE8C000,"Atelier Ayesha: The Alchemist of Dusk DX",crash;nvdec;Needs Update,menus,2021-11-24 07:29:54 +0100E5600EE8E000,"Atelier Escha & Logy: Alchemists of the Dusk Sky DX",nvdec,playable,2022-11-20 16:01:41 +010023201421E000,"Atelier Firis: The Alchemist and the Mysterious Journey DX",gpu;nvdec,ingame,2022-10-25 22:46:19 +0100B1400CD50000,"Atelier Lulua ~The Scion of Arland~",nvdec,playable,2020-12-16 14:29:19 +010009900947A000,"Atelier Lydie & Suelle ~The Alchemists and the Mysterious Paintings~",nvdec,playable,2021-06-03 18:37:01 +01001A5014220000,"Atelier Lydie & Suelle: The Alchemists and the Mysterious Paintings DX",,playable,2022-10-25 23:06:20 +0100ADD00C6FA000,"Atelier Meruru ~The Apprentice of Arland~ DX",nvdec,playable,2020-06-12 00:50:48 +01002D700B906000,"Atelier Rorona Arland no Renkinjutsushi DX (JP)",nvdec,playable,2022-12-02 17:26:54 +01009A9012022000,"Atelier Ryza 2: Lost Legends & the Secret Fairy",,playable,2022-10-16 21:06:06 +0100D1900EC80000,"Atelier Ryza: Ever Darkness & the Secret Hideout",,playable,2023-10-15 16:36:50 +010005C00EE90000,"Atelier Shallie: Alchemists of the Dusk Sea DX",nvdec,playable,2020-11-25 20:54:12 +010082A01538E000,"Atelier Sophie 2: The Alchemist of the Mysterious Dream",crash,ingame,2022-12-01 04:34:03 +01009BC00C6F6000,"Atelier Totori ~The Adventurer of Arland~ DX",nvdec,playable,2020-06-12 01:04:56 +0100B9400FA38000,"ATOM RPG",nvdec,playable,2022-10-22 10:11:48 +01005FE00EC4E000,"Atomic Heist",,playable,2022-10-16 21:24:32 +0100AD30095A4000,"Atomicrops",,playable,2022-08-06 10:05:07 +01000D1006CEC000,"ATOMIK: RunGunJumpGun",,playable,2020-12-14 13:19:24 +0100FB500631E000,"ATOMINE",gpu;nvdec;slow,playable,2020-12-14 18:56:50 +010039600E7AC000,"Attack of the Toy Tanks",slow,ingame,2020-12-14 12:59:12 +010034500641A000,"Attack on Titan 2",,playable,2021-01-04 11:40:01 +01000F600B01E000,"ATV Drift & Tricks",UE4;online,playable,2021-04-08 17:29:17 +0100AA800DA42000,"Automachef",,playable,2020-12-16 19:51:25 +01006B700EA6A000,"Automachef Demo",,playable,2021-02-10 20:35:37 +0100B280106A0000,"Aviary Attorney: Definitive Edition",,playable,2020-08-09 20:32:12 +010064600F982000,"AVICII Invector",,playable,2020-10-25 12:12:56 +0100E100128BA000,"AVICII Invector Demo",,playable,2021-02-10 21:04:58 +01008FB011248000,"AvoCuddle",,playable,2020-09-02 14:50:13 +0100085012D64000,"Awakening of Cthulhu",UE4,playable,2021-04-26 13:03:07 +01002F1005F3C000,"Away: Journey To The Unexpected",nvdec;vulkan-backend-bug,playable,2022-11-06 15:31:04 +0100B8C00CFCE000,"Awesome Pea",,playable,2020-10-11 12:39:23 +010023800D3F2000,"Awesome Pea (Demo)",,playable,2021-02-10 21:48:21 +0100B7D01147E000,"Awesome Pea 2",,playable,2022-10-01 12:34:19 +0100D2011E28000,"Awesome Pea 2 (Demo)",crash,nothing,2021-02-10 22:08:27 +0100DA3011174000,"AXES",,playable,2021-04-08 13:01:58 +0100052004384000,"Axiom Verge",,playable,2020-10-20 01:07:18 +010075400DEC6000,"Ayakashi Koi Gikyoku《Trial version》",,playable,2021-02-10 22:22:11 +01006AF012FC8000,"Azur Lane: Crosswave",UE4;nvdec,playable,2021-04-05 15:15:25 +0100C7D00DE24000,"Azuran Tales: TRIALS",,playable,2020-08-12 15:23:07 +01006FB00990E000,"Azure Reflections",nvdec;online,playable,2021-04-08 13:18:25 +01004E90149AA000,"Azure Striker GUNVOLT 3",,playable,2022-08-10 13:46:49 +0100192003FA4000,"Azure Striker GUNVOLT: STRIKER PACK",32-bit,playable,2024-02-10 23:51:21 +010031D012BA4000,"Azurebreak Heroes",,playable,2020-12-16 21:26:17 +01009B901145C000,"B.ARK",nvdec,playable,2022-11-17 13:35:02 +01002CD00A51C000,"Baba Is You",,playable,2022-07-17 05:36:54 +0100F4100AF16000,"Back to Bed",nvdec,playable,2020-12-16 20:52:04 +0100FEA014316000,"Backworlds",,playable,2022-10-25 23:20:34 +0100EAF00E32E000,"Bacon Man: An Adventure",crash;nvdec,menus,2021-11-20 02:36:21 +01000CB00D094000,"Bad Dream: Coma",deadlock,boots,2023-08-03 00:54:18 +0100B3B00D81C000,"Bad Dream: Fever",,playable,2021-06-04 18:33:12 +0100E98006F22000,"Bad North",,playable,2022-07-17 13:44:25 +010075000D092000,"Bad North Demo",,playable,2021-02-10 22:48:38 +01004C70086EC000,"BAFL - Brakes Are For Losers",,playable,2021-01-13 08:32:51 +010076B011EC8000,"Baila Latino",,playable,2021-04-14 16:40:24 +0100730011BDC000,"Bakugan: Champions of Vestroia",,playable,2020-11-06 19:07:39 +01008260138C4000,"Bakumatsu Renka SHINSENGUMI",,playable,2022-10-25 23:37:31 +0100438012EC8000,"BALAN WONDERWORLD",nvdec;UE4,playable,2022-10-22 13:08:43 +0100E48013A34000,"Balan Wonderworld Demo",gpu;services;UE4;demo,ingame,2023-02-16 20:05:07 +0100CD801CE5E000,"Balatro",,ingame,2024-04-21 02:01:53 +010010A00DA48000,"Baldur's Gate and Baldur's Gate II: Enhanced Editions",32-bit,playable,2022-09-12 23:52:15 +0100BC400FB64000,"Balthazar's Dream",,playable,2022-09-13 00:13:22 +01008D30128E0000,"Bamerang",,playable,2022-10-26 00:29:39 +010013C010C5C000,"Banner of the Maid",,playable,2021-06-14 15:23:37 +0100388008758000,"Banner Saga 2",crash,boots,2021-01-13 08:56:09 +010071E00875A000,"Banner Saga 3",slow,boots,2021-01-11 16:53:57 +0100CE800B94A000,"Banner Saga Trilogy",slow,playable,2024-03-06 11:25:20 +0100425009FB2000,"Baobabs Mausoleum Ep.1: Ovnifagos Don't Eat Flamingos",,playable,2020-07-15 05:06:29 +010079300E976000,"Baobabs Mausoleum Ep.2: 1313 Barnabas Dead End Drive",,playable,2020-12-17 11:22:50 +01006D300FFA6000,"Baobabs Mausoleum Ep.3: Un Pato en Muertoburgo",nvdec,playable,2020-12-17 11:43:10 +0100D3000AEC2000,"Baobabs Mausoleum: DEMO",,playable,2021-02-10 22:59:25 +01003350102E2000,"Barbarous: Tavern of Emyr",,playable,2022-10-16 21:50:24 +0100F7E01308C000,"Barbearian",Needs Update;gpu,ingame,2021-06-28 16:27:50 +010039C0106C6000,"Baron: Fur Is Gonna Fly",crash,boots,2022-02-06 02:05:43 +0100FB000EB96000,"Barry Bradford's Putt Panic Party",nvdec,playable,2020-06-17 01:08:34 +01004860080A0000,"Baseball Riot",,playable,2021-06-04 18:07:27 +010038600B27E000,"Bastion",,playable,2022-02-15 14:15:24 +01005F3012748000,"Batbarian: Testament of the Primordials",,playable,2020-12-17 12:00:59 +0100C07018CA6000,"Baten Kaitos I & II HD Remaster (Europe/USA)",services;Needs Update,boots,2023-10-01 00:44:32 +0100F28018CA4000,"Baten Kaitos I & II HD Remaster (Japan)",services;Needs Update,boots,2023-10-24 23:11:54 +0100011005D92000,"Batman - The Telltale Series",nvdec;slow,playable,2021-01-11 18:19:35 +01003F00163CE000,"Batman: Arkham City",,playable,2024-09-11 00:30:19 +0100ACD0163D0000,"Batman: Arkham Knight",gpu;mac-bug,ingame,2024-06-25 20:24:42 +0100E6300AA3A000,"Batman: The Enemy Within",crash,nothing,2020-10-16 05:49:27 +0100747011890000,"Battle Axe",,playable,2022-10-26 00:38:01 +0100551001D88000,"Battle Chasers: Nightwar",nvdec;slow,playable,2021-01-12 12:27:34 +0100CC2001C6C000,"Battle Chef Brigade Deluxe",,playable,2021-01-11 14:16:28 +0100DBB00CAEE000,"Battle Chef Brigade Demo",,playable,2021-02-10 23:15:07 +0100A3B011EDE000,"Battle Hunters",gpu,ingame,2022-11-12 09:19:17 +010035E00C1AE000,"Battle of Kings",slow,playable,2020-12-17 12:45:23 +0100D2800EB40000,"Battle Planet - Judgement Day",,playable,2020-12-17 14:06:20 +0100C4D0093EA000,"Battle Princess Madelyn",,playable,2021-01-11 13:47:23 +0100A7500DF64000,"Battle Princess Madelyn Royal Edition",,playable,2022-09-26 19:14:49 +010099B00E898000,"Battle Supremacy - Evolution",gpu;nvdec,boots,2022-02-17 09:02:50 +0100DEB00D5A8000,"Battle Worlds: Kronos",nvdec,playable,2021-06-04 17:48:02 +0100650010DD4000,"Battleground",crash,ingame,2021-09-06 11:53:23 +010044E00D97C000,"BATTLESLOTHS",,playable,2020-10-03 08:32:22 +010059C00E39C000,"Battlestar Galactica Deadlock",nvdec,playable,2020-06-27 17:35:44 +01006D800A988000,"Battlezone Gold Edition",gpu;ldn-untested;online,boots,2021-06-04 18:36:05 +010048300D5C2000,"BATTLLOON",,playable,2020-12-17 15:48:23 +0100194010422000,"bayala - the game",,playable,2022-10-04 14:09:25 +0100CF5010FEC000,"Bayonetta Origins: Cereza and the Lost Demon™",gpu,ingame,2024-02-27 01:39:49 +010002801A3FA000,"Bayonetta Origins: Cereza and the Lost Demon™ Demo",gpu;demo,ingame,2024-02-17 06:06:28 +010076F0049A2000,"Bayonetta™",audout,playable,2022-11-20 15:51:59 +01007960049A0000,"Bayonetta™ 2",nvdec;ldn-works;LAN,playable,2022-11-26 03:46:09 +01004A4010FEA000,"Bayonetta™ 3",gpu;crash;nvdec;vulkan-backend-bug;opengl-backend-bug;amd-vendor-bug;ASTC,ingame,2024-09-28 14:34:33 +01002FA00DE72000,"BDSM: Big Drunk Satanic Massacre",,playable,2021-03-04 21:28:22 +01003A1010E3C000,"BE-A Walker",slow,ingame,2020-09-02 15:00:31 +010095C00406C000,"Beach Buggy Racing",online,playable,2021-04-13 23:16:50 +010020700DE04000,"Bear With Me: The Lost Robots",nvdec,playable,2021-02-27 14:20:10 +010024200E97E800,"Bear With Me: The Lost Robots Demo",nvdec,playable,2021-02-12 22:38:12 +0100C0E014A4E000,"Bear's Restaurant",,playable,2024-08-11 21:26:59 +,"BEAST Darling! ~Kemomimi Danshi to Himitsu no Ryou~",crash,menus,2020-10-04 06:12:08 +01009C300BB4C000,"Beat Cop",,playable,2021-01-06 19:26:48 +01002D20129FC000,"Beat Me!",online-broken,playable,2022-10-16 21:59:26 +01006B0014590000,"BEAUTIFUL DESOLATION",gpu;nvdec,ingame,2022-10-26 10:34:38 +01009E700DB2E000,"Bee Simulator",UE4;crash,boots,2020-07-15 12:13:13 +010018F007786000,"BeeFense BeeMastered",,playable,2022-11-17 15:38:12 +0100558010B26000,"Behold the Kickmen",,playable,2020-06-27 12:49:45 +0100D1300C1EA000,"Beholder: Complete Edition",,playable,2020-10-16 12:48:58 +01006E1004404000,"Ben 10",nvdec,playable,2021-02-26 14:08:35 +01009CD00E3AA000,"Ben 10: Power Trip!",nvdec,playable,2022-10-09 10:52:12 +010074500BBC4000,"Bendy and the Ink Machine",,playable,2023-05-06 20:35:39 +010068600AD16000,"Beyblade Burst Battle Zero",services;crash;Needs Update,menus,2022-11-20 15:48:32 +010056500CAD8000,"Beyond Enemy Lines: Covert Operations",UE4,playable,2022-10-01 13:11:50 +0100B8F00DACA000,"Beyond Enemy Lines: Essentials",nvdec;UE4,playable,2022-09-26 19:48:16 +0100BF400AF38000,"Bibi & Tina – Adventures with Horses",nvdec;slow,playable,2021-01-13 08:58:09 +010062400E69C000,"Bibi & Tina at the horse farm",,playable,2021-04-06 16:31:39 +01005FF00AF36000,"Bibi Blocksberg – Big Broom Race 3",,playable,2021-01-11 19:07:16 +010062B00A874000,"Big Buck Hunter Arcade",nvdec,playable,2021-01-12 20:31:39 +010088100C35E000,"Big Crown: Showdown",nvdec;online;ldn-untested,menus,2022-07-17 18:25:32 +0100A42011B28000,"Big Dipper",,playable,2021-06-14 15:08:19 +010077E00F30E000,"Big Pharma",,playable,2020-07-14 15:27:30 +010007401287E000,"BIG-Bobby-Car - The Big Race",slow,playable,2020-12-10 14:25:06 +010057700FF7C000,"Billion Road",,playable,2022-11-19 15:57:43 +010087D008D64000,"BINGO for Nintendo Switch",,playable,2020-07-23 16:17:36 +01004BA017CD6000,"Biomutant",crash,ingame,2024-05-16 15:46:36 +01002620102C6000,"BioShock 2 Remastered",services,nothing,2022-10-29 14:39:22 +0100D560102C8000,"BioShock Infinite: The Complete Edition",services-horizon;crash,nothing,2024-08-11 21:35:01 +0100AD10102B2000,"BioShock Remastered",services-horizon;crash;Needs Update,boots,2024-06-06 01:08:52 +010053B0117F8000,"Biped",nvdec,playable,2022-10-01 13:32:58 +01001B700B278000,"Bird Game +",online,playable,2022-07-17 18:41:57 +0100B6B012FF4000,"Birds and Blocks Demo",services;demo,boots,2022-04-10 04:53:03 +0100E62012D3C000,"BIT.TRIP RUNNER",,playable,2022-10-17 14:23:24 +01000AD012D3A000,"BIT.TRIP VOID",,playable,2022-10-17 14:31:23 +0100A0800EA9C000,"Bite the Bullet",,playable,2020-10-14 23:10:11 +010026E0141C8000,"Bitmaster",,playable,2022-12-13 14:05:51 +010061D00FD26000,"Biz Builder Delux",slow,playable,2020-12-15 21:36:25 +0100DD1014AB8000,"Black Book",nvdec,playable,2022-12-13 16:38:53 +010049000B69E000,"Black Future '88",nvdec,playable,2022-09-13 11:24:37 +01004BE00A682000,"Black Hole Demo",,playable,2021-02-12 23:02:17 +0100C3200E7E6000,"Black Legend",gpu;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-10-22 12:54:48 +010043A012A32000,"Blackjack Hands",,playable,2020-11-30 14:04:51 +0100A0A00E660000,"Blackmoor 2",online-broken,playable,2022-09-26 20:26:34 +010032000EA2C000,"Blacksad: Under the Skin",,playable,2022-09-13 11:38:04 +01006B400C178000,"Blacksea Odyssey",nvdec,playable,2022-10-16 22:14:34 +010068E013450000,"Blacksmith of the Sand Kingdom",,playable,2022-10-16 22:37:44 +0100C4400CB7C000,"BLADE ARCUS Rebellion From Shining",,playable,2022-07-17 18:52:28 +0100EA1018A2E000,"Blade Assault",audio,nothing,2024-04-29 14:32:50 +01009CC00E224000,"Blade II - The Return Of Evil",audio;crash;UE4,ingame,2021-11-14 02:49:59 +01005950022EC000,"Blade Strangers",nvdec,playable,2022-07-17 19:02:43 +0100DF0011A6A000,"Bladed Fury",,playable,2022-10-26 11:36:26 +0100CFA00CC74000,"Blades of Time",deadlock;online,boots,2022-07-17 19:19:58 +01006CC01182C000,"Blair Witch",nvdec;UE4,playable,2022-10-01 14:06:16 +010039501405E000,"Blanc",gpu;slow,ingame,2023-02-22 14:00:13 +0100698009C6E000,"Blasphemous",nvdec,playable,2021-03-01 12:15:31 +0100302010338000,"Blasphemous Demo",,playable,2021-02-12 23:49:56 +0100225000FEE000,"Blaster Master Zero",32-bit,playable,2021-03-05 13:22:33 +01005AA00D676000,"Blaster Master Zero 2",,playable,2021-04-08 15:22:59 +010025B002E92000,"Blaster Master Zero Demo",,playable,2021-02-12 23:59:06 +0100E53013E1C000,"Blastoid Breakout",,playable,2021-01-25 23:28:02 +0100EE800C93E000,"BLAZBLUE CENTRALFICTION Special Edition",nvdec,playable,2020-12-15 23:50:04 +0100B61008208000,"BLAZBLUE CROSS TAG BATTLE",nvdec;online,playable,2021-01-05 20:29:37 +010021A00DE54000,"Blazing Beaks",,playable,2020-06-04 20:37:06 +0100C2700C252000,"Blazing Chrome",,playable,2020-11-16 04:56:54 +010091700EA2A000,"Bleep Bloop DEMO",nvdec,playable,2021-02-13 00:20:53 +010089D011310000,"Blind Men",audout,playable,2021-02-20 14:15:38 +0100743013D56000,"Blizzard® Arcade Collection",nvdec,playable,2022-08-03 19:37:26 +0100F3500A20C000,"BlobCat",,playable,2021-04-23 17:09:30 +0100E1C00DB6C000,"Block-a-Pix Deluxe Demo",,playable,2021-02-13 00:37:39 +0100C6A01AD56000,"Bloo Kid",,playable,2024-05-01 17:18:04 +010055900FADA000,"Bloo Kid 2",,playable,2024-05-01 17:16:57 +0100EE5011DB6000,"Blood and Guts Bundle",,playable,2020-06-27 12:57:35 +01007E700D17E000,"Blood Waves",gpu,ingame,2022-07-18 13:04:46 +0100E060102AA000,"Blood will be Spilled",nvdec,playable,2020-12-17 03:02:03 +01004B800AF5A000,"Bloodstained: Curse of the Moon",,playable,2020-09-04 10:42:17 +01004680124E6000,"Bloodstained: Curse of the Moon 2",,playable,2020-09-04 10:56:27 +010025A00DF2A000,"Bloodstained: Ritual of the Night",nvdec;UE4,playable,2022-07-18 14:27:35 +0100E510143EC000,"Bloody Bunny, The Game",nvdec;UE4,playable,2022-10-22 13:18:55 +0100B8400A1C6000,"Bloons TD 5",Needs Update;audio;gpu;services,boots,2021-04-18 23:02:46 +01000EB01023E000,"Blossom Tales Demo",,playable,2021-02-13 14:22:53 +0100C1000706C000,"Blossom Tales: The Sleeping King",,playable,2022-07-18 16:43:07 +010073B010F6E000,"Blue Fire",UE4,playable,2022-10-22 14:46:11 +0100721013510000,"Body of Evidence",,playable,2021-04-25 22:22:11 +0100AD1010CCE000,"Bohemian Killing",vulkan-backend-bug,playable,2022-09-26 22:41:37 +010093700ECEC000,"Boku to Nurse no Kenshuu Nisshi",,playable,2022-11-21 20:38:34 +01001D900D9AC000,"Bokujou Monogatari Saikai no Mineraru Taun (Story of Seasons: Friends of Mineral Town)",slow;crash;Needs Update,ingame,2022-04-24 22:46:04 +0100317014B7C000,"Bomb Rush Cyberfunk",,playable,2023-09-28 19:51:57 +01007900080B6000,"Bomber Crew",,playable,2021-06-03 14:21:28 +0100A1F012948000,"Bomber Fox",nvdec,playable,2021-04-19 17:58:13 +010087300445A000,"Bombslinger",services,menus,2022-07-19 12:53:15 +01007A200F452000,"Book of Demons",,playable,2022-09-29 12:03:43 +010054500F564000,"Bookbound Brigade",,playable,2020-10-09 14:30:29 +01002E6013ED8000,"Boom Blaster",,playable,2021-03-24 10:55:56 +010081A00EE62000,"Boomerang Fu",,playable,2024-07-28 01:12:41 +010069F0135C4000,"Boomerang Fu Demo Version",demo,playable,2021-02-13 14:38:13 +01009970122E4000,"Borderlands 3 Ultimate Edition",gpu,ingame,2024-07-15 04:38:14 +010064800F66A000,"Borderlands: Game of the Year Edition",slow;online-broken;ldn-untested,ingame,2023-07-23 21:10:36 +010096F00FF22000,"Borderlands: The Handsome Collection",,playable,2022-04-22 18:35:07 +010007400FF24000,"Borderlands: The Pre-Sequel",nvdec,playable,2021-06-09 20:17:10 +01008E500AFF6000,"Boreal Blade",gpu;ldn-untested;online,ingame,2021-06-11 15:37:14 +010092C013FB8000,"BORIS THE ROCKET",,playable,2022-10-26 13:23:09 +010076F00EBE4000,"BOSSGARD",online-broken,playable,2022-10-04 14:21:13 +010069B00EAC8000,"Bot Vice Demo",crash;demo,ingame,2021-02-13 14:52:42 +010081100FE08000,"Bouncy Bob 2",,playable,2020-07-14 16:51:53 +0100E1200DC1A000,"Bounty Battle",nvdec,playable,2022-10-04 14:40:51 +0100B4700C57E000,"Bow to Blood: Last Captain Standing",slow,playable,2020-10-23 10:51:21 +010040800BA8A000,"Box Align",crash;services,nothing,2020-04-03 17:26:56 +010018300D006000,"BOXBOY! + BOXGIRL!™",,playable,2020-11-08 01:11:54 +0100B7200E02E000,"BOXBOY! + BOXGIRL!™ Demo",demo,playable,2021-02-13 14:59:08 +0100CA400B6D0000,"BQM -BlockQuest Maker-",online,playable,2020-07-31 20:56:50 +0100E87017D0E000,"Bramble: The Mountain King",services-horizon,playable,2024-03-06 09:32:17 +01000F5003068000,"Brave Dungeon + Dark Witch Story:COMBAT",,playable,2021-01-12 21:06:34 +01006DC010326000,"BRAVELY DEFAULT™ II",gpu;crash;Needs Update;UE4,ingame,2024-04-26 06:11:26 +0100B6801137E000,"Bravely Default™ II Demo",gpu;crash;UE4;demo,ingame,2022-09-27 05:39:47 +010081501371E000,"BraveMatch",UE4,playable,2022-10-26 13:32:15 +0100F60017D4E000,"Bravery and Greed",gpu;deadlock,boots,2022-12-04 02:23:47 +0100A42004718000,"BRAWL",nvdec;slow,playable,2020-06-04 14:23:18 +010068F00F444000,"Brawl Chess",nvdec,playable,2022-10-26 13:59:17 +0100C6800B934000,"Brawlhalla",online;opengl,playable,2021-06-03 18:26:09 +010060200A4BE000,"Brawlout",ldn-untested;online,playable,2021-06-04 17:35:35 +0100C1B00E1CA000,"Brawlout Demo",demo,playable,2021-02-13 22:46:53 +010022C016DC8000,"Breakout: Recharged",slow,ingame,2022-11-06 15:32:57 +01000AA013A5E000,"Breathedge",UE4;nvdec,playable,2021-05-06 15:44:28 +01003D50100F4000,"Breathing Fear",,playable,2020-07-14 15:12:29 +010026800BB06000,"Brick Breaker",nvdec;online,playable,2020-12-15 18:26:23 +01002AD0126AE000,"Bridge Constructor: The Walking Dead",gpu;slow,ingame,2020-12-11 17:31:32 +01000B1010D8E000,"Bridge! 3",,playable,2020-10-08 20:47:24 +010011000EA7A000,"BRIGANDINE The Legend of Runersia",,playable,2021-06-20 06:52:25 +0100703011258000,"BRIGANDINE The Legend of Runersia Demo",,playable,2021-02-14 14:44:10 +01000BF00BE40000,"Bring Them Home",UE4,playable,2021-04-12 14:14:43 +010060A00B53C000,"Broforce",ldn-untested;online,playable,2021-05-28 12:23:38 +0100EDD0068A6000,"Broken Age",,playable,2021-06-04 17:40:32 +0100A5800F6AC000,"Broken Lines",,playable,2020-10-16 00:01:37 +01001E60085E6000,"Broken Sword 5 - the Serpent's Curse",,playable,2021-06-04 17:28:59 +0100F19011226000,"Brotherhood United Demo",demo,playable,2021-02-14 21:10:57 +01000D500D08A000,"Brothers: A Tale of Two Sons",nvdec;UE4,playable,2022-07-19 14:02:22 +0100B2700E90E000,"Brunch Club",,playable,2020-06-24 13:54:07 +010010900F7B4000,"Bubble Bobble 4 Friends: The Baron is Back!",nvdec,playable,2021-06-04 15:27:55 +0100DBE00C554000,"Bubsy: Paws on Fire!",slow,ingame,2023-08-24 02:44:51 +0100089010A92000,"Bucket Knight",crash,ingame,2020-09-04 13:11:24 +0100F1B010A90000,"Bucket Knight demo",demo,playable,2021-02-14 21:23:09 +01000D200AC0C000,"Bud Spencer & Terence Hill - Slaps And Beans",,playable,2022-07-17 12:37:00 +010051A00E99E000,"Bug Fables: The Everlasting Sapling",,playable,2020-06-09 11:27:00 +01003DD00D658000,"Bulletstorm: Duke of Switch Edition",nvdec,playable,2022-03-03 08:30:24 +01006BB00E8FA000,"BurgerTime Party!",slow,playable,2020-11-21 14:11:53 +01005780106E8000,"BurgerTime Party! Demo",demo,playable,2021-02-14 21:34:16 +010078C00DB40000,"Buried Stars",,playable,2020-09-07 14:11:58 +0100DBF01000A000,"Burnout™ Paradise Remastered",nvdec;online,playable,2021-06-13 02:54:46 +010066F00C76A000,"Bury me, my Love",,playable,2020-11-07 12:47:37 +010030D012FF6000,"Bus Driver Simulator",,playable,2022-10-17 13:55:27 +0100A9101418C000,"BUSTAFELLOWS",nvdec,playable,2020-10-17 20:04:41 +0100177005C8A000,"BUTCHER",,playable,2021-01-11 18:50:17 +01000B900D8B0000,"Cadence of Hyrule: Crypt of the NecroDancer Featuring The Legend of Zelda",slow;nvdec,playable,2024-04-01 22:43:40 +010065700EE06000,"Cadence of Hyrule: Crypt of the NecroDancer Featuring The Legend of Zelda Demo",demo;gpu;nvdec,ingame,2021-02-14 21:48:15 +01005C00117A8000,"Café Enchanté",,playable,2020-11-13 14:54:25 +010060400D21C000,"Cafeteria Nipponica Demo",demo,playable,2021-02-14 22:11:35 +0100699012F82000,"Cake Bash Demo",crash;demo,ingame,2021-02-14 22:21:15 +01004FD00D66A000,"Caladrius Blaze",deadlock;nvdec,nothing,2022-12-07 16:44:37 +01004B500AB88000,"Calculation Castle : Greco's Ghostly Challenge Addition",32-bit,playable,2020-11-01 23:40:11 +010045500B212000,"Calculation Castle : Greco's Ghostly Challenge Division",32-bit,playable,2020-11-01 23:54:55 +0100ECE00B210000,"Calculation Castle : Greco's Ghostly Challenge Multiplication",32-bit,playable,2020-11-02 00:04:33 +0100A6500B176000,"Calculation Castle : Greco's Ghostly Challenge Subtraction",32-bit,playable,2020-11-01 23:47:42 +010004701504A000,"Calculator",,playable,2021-06-11 13:27:20 +010013A00E750000,"Calico",,playable,2022-10-17 14:44:28 +010046000EE40000,"Call of Cthulhu",nvdec;UE4,playable,2022-12-18 03:08:30 +0100B4700BFC6000,"Call of Juarez: Gunslinger",gpu;nvdec,ingame,2022-09-17 16:49:46 +0100593008BDC000,"Can't Drive This",,playable,2022-10-22 14:55:17 +0100E4600B166000,"Candle: The Power of the Flame",nvdec,playable,2020-05-26 12:10:20 +01001E0013208000,"Capcom Arcade Stadium",,playable,2021-03-17 05:45:14 +010094E00B52E000,"Capcom Beat 'Em Up Bundle",,playable,2020-03-23 18:31:24 +0100F6400A77E000,"CAPCOM BELT ACTION COLLECTION",online;ldn-untested,playable,2022-07-21 20:51:23 +01009BF0072D4000,"Captain Toad™: Treasure Tracker",32-bit,playable,2024-04-25 00:50:16 +01002C400B6B6000,"Captain Toad™: Treasure Tracker Demo",32-bit;demo,playable,2021-02-14 22:36:09 +0100EAE010560000,"Captain Tsubasa: Rise of New Champions",online-broken;vulkan-backend-bug,playable,2022-10-09 11:20:50 +01002320137CC000,"CAPTAIN TSUBASA: RISE OF NEW CHAMPIONS DEMO VERSION",slow,playable,2021-02-14 22:45:35 +010048800D95C000,"Car Mechanic Manager",,playable,2020-07-23 18:50:17 +01007BD00AE70000,"Car Quest",deadlock,menus,2021-11-18 08:59:18 +0100DA70115E6000,"Caretaker",,playable,2022-10-04 14:52:24 +0100DD6014870000,"Cargo Crew Driver",,playable,2021-04-19 12:54:22 +010088C0092FE000,"Carnival Games®",nvdec,playable,2022-07-21 21:01:22 +01005F5011AC4000,"Carnivores: Dinosaur Hunt",,playable,2022-12-14 18:46:06 +0100B1600E9AE000,"CARRION",crash,nothing,2020-08-13 17:15:12 +01008D1001512000,"Cars 3: Driven to Win",gpu,ingame,2022-07-21 21:21:05 +0100810012A1A000,"Carto",,playable,2022-09-04 15:37:06 +0100085003A2A000,"Cartoon Network Battle Crashers",,playable,2022-07-21 21:55:40 +0100C4C0132F8000,"CASE 2: Animatronics Survival",nvdec;UE4;vulkan-backend-bug,playable,2022-10-09 11:45:03 +010066F01A0E0000,"Cassette Beasts",,playable,2024-07-22 20:38:43 +010001300D14A000,"Castle Crashers Remastered",gpu,boots,2024-08-10 09:21:20 +0100F6D01060E000,"Castle Crashers Remastered Demo",gpu;demo,boots,2022-04-10 10:57:10 +01003C100445C000,"Castle of Heart",nvdec,playable,2022-07-21 23:10:45 +0100F5500FA0E000,"Castle of no Escape 2",,playable,2022-09-13 13:51:42 +0100DA2011F18000,"Castle Pals",,playable,2021-03-04 21:00:33 +010097C00AB66000,"CastleStorm",nvdec,playable,2022-07-21 22:49:14 +010007400EB64000,"CastleStorm II",UE4;crash;nvdec,boots,2020-10-25 11:22:44 +01001A800D6BC000,"Castlevania Anniversary Collection",audio,playable,2020-05-23 11:40:29 +010076000C86E000,"Cat Girl Without Salad: Amuse-Bouche",,playable,2022-09-03 13:01:47 +0100A2F006FBE000,"Cat Quest",,playable,2020-04-02 23:09:32 +01008BE00E968000,"Cat Quest II",,playable,2020-07-06 23:52:09 +0100E86010220000,"Cat Quest II Demo",demo,playable,2021-02-15 14:11:57 +0100BAE0077E4000,"Catherine Full Body for Nintendo Switch (JP)",Needs Update;gpu,ingame,2021-02-21 18:06:11 +0100BF00112C0000,"Catherine: Full Body",nvdec,playable,2023-04-02 11:00:37 +010004400B28A000,"Cattails",,playable,2021-06-03 14:36:57 +0100B7D0022EE000,"Cave Story+",,playable,2020-05-22 09:57:25 +01001A100C0E8000,"Caveblazers",slow,ingame,2021-06-09 17:57:28 +01006DB004566000,"Caveman Warriors",,playable,2020-05-22 11:44:20 +010078700B2CC000,"Caveman Warriors Demo",demo,playable,2021-02-15 14:44:08 +01002B30028F6000,"Celeste",,playable,2020-06-17 10:14:40 +01006B000A666000,"Cendrillon palikA",gpu;nvdec,ingame,2022-07-21 22:52:24 +01007600115CE000,"CHAOS CODE -NEW SIGN OF CATASTROPHE-",crash;nvdec,boots,2022-04-04 12:24:21 +0100957016B90000,"CHAOS;HEAD NOAH",,playable,2022-06-02 22:57:19 +0100F52013A66000,"Charge Kid",gpu;audout,boots,2024-02-11 01:17:47 +0100DE200C350000,"Chasm",,playable,2020-10-23 11:03:43 +010034301A556000,"Chasm: The Rift",gpu,ingame,2024-04-29 19:02:48 +0100A5900472E000,"Chess Ultra",UE4,playable,2023-08-30 23:06:31 +0100E3C00A118000,"Chicken Assassin: Reloaded",,playable,2021-02-20 13:29:01 +0100713010E7A000,"Chicken Police – Paint it RED!",nvdec,playable,2020-12-10 15:10:11 +0100F6C00A016000,"Chicken Range",,playable,2021-04-23 12:14:23 +01002E500E3EE000,"Chicken Rider",,playable,2020-05-22 11:31:17 +0100CAC011C3A000,"Chickens Madness DEMO",UE4;demo;gpu;nvdec,ingame,2021-02-15 15:02:10 +01007D000AD8A000,"Child of Light® Ultimate Edition",nvdec,playable,2020-12-16 10:23:10 +01002DE00C250000,"Children of Morta",gpu;nvdec,ingame,2022-09-13 17:48:47 +0100C1A00AC3E000,"Children of Zodiarcs",,playable,2020-10-04 14:23:33 +010046F012A04000,"Chinese Parents",,playable,2021-04-08 12:56:41 +01005A001489A000,"Chiptune Arrange Sound(DoDonPachi Resurrection)",32-bit;crash,ingame,2024-01-25 14:37:32 +01006A30124CA000,"Chocobo GP",gpu;crash,ingame,2022-06-04 14:52:18 +0100BF600BF26000,"Chocobo's Mystery Dungeon EVERY BUDDY!",slow,playable,2020-05-26 13:53:13 +01000BA0132EA000,"Choices That Matter: And The Sun Went Out",,playable,2020-12-17 15:44:08 +,"Chou no Doku Hana no Kusari: Taishou Irokoi Ibun",gpu;nvdec,ingame,2020-09-28 17:58:04 +010039A008E76000,"ChromaGun",,playable,2020-05-26 12:56:42 +010006800E13A000,"Chronos: Before the Ashes",UE4;gpu;nvdec,ingame,2020-12-11 22:16:35 +010039700BA7E000,"Circle of Sumo",,playable,2020-05-22 12:45:21 +01008FA00D686000,"Circuits",,playable,2022-09-19 11:52:50 +0100D8800B87C000,"Cities: Skylines - Nintendo Switch™ Edition",,playable,2020-12-16 10:34:57 +0100E4200D84E000,"Citizens of Space",gpu,boots,2023-10-22 06:45:44 +0100D9C012900000,"Citizens Unite!: Earth x Space",gpu,ingame,2023-10-22 06:44:19 +01005E501284E000,"City Bus Driving Simulator",,playable,2021-06-15 21:25:59 +0100A3A00CC7E000,"CLANNAD",,playable,2021-06-03 17:01:02 +01007B501372C000,"CLANNAD Side Stories",,playable,2022-10-26 15:03:04 +01005ED0107F4000,"Clash Force",,playable,2022-10-01 23:45:48 +010009300AA6C000,"Claybook",slow;nvdec;online;UE4,playable,2022-07-22 11:11:34 +010058900F52E000,"Clea",crash,ingame,2020-12-15 16:22:56 +010045E0142A4000,"Clea 2",,playable,2021-04-18 14:25:18 +01008C100C572000,"Clock Zero ~Shuuen no Ichibyou~ Devote",nvdec,playable,2022-12-04 22:19:14 +0100DF9013AD4000,"Clocker",,playable,2021-04-05 15:05:13 +0100B7200DAC6000,"Close to the Sun",crash;nvdec;UE4,boots,2021-11-04 09:19:41 +010047700D540000,"Clubhouse Games™: 51 Worldwide Classics",ldn-works,playable,2024-05-21 16:12:57 +0100C1401CEDC000,"Clue",crash;online,menus,2020-11-10 09:23:48 +010085A00821A000,"ClusterPuck 99",,playable,2021-01-06 00:28:12 +010096900A4D2000,"Clustertruck",slow,ingame,2021-02-19 21:07:09 +01005790110F0000,"Cobra Kai: The Karate Kid Saga Continues",,playable,2021-06-17 15:59:13 +01002E700C366000,"COCOON",gpu,ingame,2024-03-06 11:33:08 +010034E005C9C000,"Code of Princess EX",nvdec;online,playable,2021-06-03 10:50:13 +010086100CDCA000,"CODE SHIFTER",,playable,2020-08-09 15:20:55 +010002400F408000,"Code: Realize ~Future Blessings~",nvdec,playable,2023-03-31 16:57:47 +0100CF800C810000,"Coffee Crisis",,playable,2021-02-20 12:34:52 +010066200E1E6000,"Coffee Talk",,playable,2020-08-10 09:48:44 +0100178009648000,"Coffin Dodgers",,playable,2021-02-20 14:57:41 +010035B01706E000,"Cold Silence",cpu;crash,nothing,2024-07-11 17:06:14 +010083E00F40E000,"Collar X Malice",nvdec,playable,2022-10-02 11:51:56 +0100E3B00F412000,"Collar X Malice -Unlimited-",nvdec,playable,2022-10-04 15:30:40 +01002A600D7FC000,"Collection of Mana",,playable,2020-10-19 19:29:45 +0100B77012266000,"COLLECTION of SaGa FINAL FANTASY LEGEND",,playable,2020-12-30 19:11:16 +010030800BC36000,"Collidalot",nvdec,playable,2022-09-13 14:09:27 +0100CA100C0BA000,"Color Zen",,playable,2020-05-22 10:56:17 +010039B011312000,"Colorgrid",,playable,2020-10-04 01:50:52 +0100A7000BD28000,"Coloring Book",,playable,2022-07-22 11:17:05 +010020500BD86000,"Colors Live",gpu;services;crash,boots,2023-02-26 02:51:07 +0100E2F0128B4000,"Colossus Down",,playable,2021-02-04 20:49:50 +0100C4D00D16A000,"Commander Keen in Keen Dreams",gpu,ingame,2022-08-04 20:34:20 +0100E400129EC000,"Commander Keen in Keen Dreams: Definitive Edition",,playable,2021-05-11 19:33:54 +010065A01158E000,"Commandos 2 - HD Remaster",gpu;nvdec,ingame,2022-08-10 21:52:27 +010015801308E000,"Conarium",UE4;nvdec,playable,2021-04-26 17:57:53 +0100971011224000,"Concept Destruction",,playable,2022-09-29 12:28:56 +010043700C9B0000,"Conduct TOGETHER!",nvdec,playable,2021-02-20 12:59:00 +01007EF00399C000,"Conga Master Party!",,playable,2020-05-22 13:22:24 +0100A5600FAC0000,"Construction Simulator 3 - Console Edition",,playable,2023-02-06 09:31:23 +0100A330022C2000,"Constructor Plus",,playable,2020-05-26 12:37:40 +0100DCA00DA7E000,"Contra Anniversary Collection",,playable,2022-07-22 11:30:12 +0100F2600D710000,"CONTRA: ROGUE CORPS",crash;nvdec;regression,menus,2021-01-07 13:23:35 +0100B8200ECA6000,"CONTRA: ROGUE CORPS Demo",gpu,ingame,2022-09-04 16:46:52 +01007D701298A000,"Contraptions",,playable,2021-02-08 18:40:50 +0100041013360000,"Control Ultimate Edition - Cloud Version",Needs Update;crash;services,nothing,2021-04-18 22:34:06 +010058800E90A000,"Convoy: A Tactical Roguelike",,playable,2020-10-15 14:43:50 +0100B82010B6C000,"Cook, Serve, Delicious! 3?!",,playable,2022-10-09 12:09:34 +010060700EFBA000,"Cooking Mama: Cookstar",crash;loader-allocator,menus,2021-11-20 03:19:35 +01001E400FD58000,"Cooking Simulator",,playable,2021-04-18 13:25:23 +0100DF9010206000,"Cooking Tycoons - 3 in 1 Bundle",,playable,2020-11-16 22:44:26 +01005350126E0000,"Cooking Tycoons 2 - 3 in 1 Bundle",,playable,2020-11-16 22:19:33 +0100C5A0115C4000,"CopperBell",,playable,2020-10-04 15:54:36 +010016400B1FE000,"Corpse Party: Blood Drive",nvdec,playable,2021-03-01 12:44:23 +0100CCB01B1A0000,"COSMIC FANTASY COLLECTION",,ingame,2024-05-21 17:56:37 +010067C00A776000,"Cosmic Star Heroine",,playable,2021-02-20 14:30:47 +01003DD00F94A000,"COTTOn Reboot! [ コットン リブート! ]",,playable,2022-05-24 16:29:24 +,"Cotton/Guardian Saturn Tribute Games",gpu,boots,2022-11-27 21:00:51 +01000E301107A000,"Couch Co-Op Bundle Vol. 2",nvdec,playable,2022-10-02 12:04:21 +0100C1E012A42000,"Country Tales",,playable,2021-06-17 16:45:39 +01003370136EA000,"Cozy Grove",gpu,ingame,2023-07-30 22:22:19 +010073401175E000,"Crash Bandicoot™ 4: It’s About Time",nvdec;UE4,playable,2024-03-17 07:13:45 +0100D1B006744000,"Crash Bandicoot™ N. Sane Trilogy",,playable,2024-02-11 11:38:14 +010007900FCE2000,"Crash Drive 2",online,playable,2020-12-17 02:45:46 +010046600BD0E000,"Crash Dummy",nvdec,playable,2020-05-23 11:12:43 +0100BF200CD74000,"Crashbots",,playable,2022-07-22 13:50:52 +010027100BD16000,"Crashlands",,playable,2021-05-27 20:30:06 +0100F9F00C696000,"Crash™ Team Racing Nitro-Fueled",gpu;nvdec;online-broken,ingame,2023-06-25 02:40:17 +0100BF7006BCA000,"Crawl",,playable,2020-05-22 10:16:05 +0100C66007E96000,"Crayola Scoot",nvdec,playable,2022-07-22 14:01:55 +01005BA00F486000,"Crayon Shin-chan Ora to Hakase no Natsuyasumi Owaranai Nanokakan no Tabi",,playable,2021-07-21 10:41:33 +0100D470106DC000,"CRAYON SHINCHAN The Storm Called FLAMING KASUKABE RUNNER!!",services,menus,2020-03-20 14:00:57 +01006BC00C27A000,"Crazy Strike Bowling EX",UE4;gpu;nvdec,ingame,2020-08-07 18:15:59 +0100F9900D8C8000,"Crazy Zen Mini Golf",,playable,2020-08-05 14:00:00 +0100B0E010CF8000,"Creaks",,playable,2020-08-15 12:20:52 +01007C600D778000,"Creature in the Well",UE4;gpu,ingame,2020-11-16 12:52:40 +0100A19011EEE000,"Creepy Tale",,playable,2020-12-15 21:58:03 +01005C2013B00000,"Cresteaju",gpu,ingame,2021-03-24 10:46:06 +010022D00D4F0000,"Cricket 19",gpu,ingame,2021-06-14 14:56:07 +0100387017100000,"Cricket 22 The Official Game Of The Ashes",crash,boots,2023-10-18 08:01:57 +01005640080B0000,"Crimsonland",,playable,2021-05-27 20:50:54 +0100B0400EBC4000,"Cris Tales",crash,ingame,2021-07-29 15:10:53 +01004BC0166CC000,"CRISIS CORE –FINAL FANTASY VII– REUNION",,playable,2022-12-19 15:53:59 +01004F800C4DA000,"Croc's World",,playable,2020-05-22 11:21:09 +01009DB00DE12000,"Croc's World 2",,playable,2020-12-16 20:01:40 +010025200FC54000,"Croc's World 3",,playable,2020-12-30 18:53:26 +01000F0007D92000,"Croixleur Sigma",online,playable,2022-07-22 14:26:54 +01003D90058FC000,"CrossCode",,playable,2024-02-17 10:23:19 +0100B1E00AA56000,"Crossing Souls",nvdec,playable,2021-02-20 15:42:54 +0100059012BAE000,"Crown Trick",,playable,2021-06-16 19:36:29 +0100B41013C82000,"Cruis'n Blast",gpu,ingame,2023-07-30 10:33:47 +01000CC01C108000,"Crymachina Trial Edition ( Demo ) [ クライマキナ ]",demo,playable,2023-08-06 05:33:21 +0100CEA007D08000,"Crypt of the NecroDancer: Nintendo Switch Edition",nvdec,playable,2022-11-01 09:52:06 +0100582010AE0000,"Crysis 2 Remastered",deadlock,menus,2023-09-21 10:46:17 +0100CD3010AE2000,"Crysis 3 Remastered",deadlock,menus,2023-09-10 16:03:50 +0100E66010ADE000,"Crysis Remastered",nvdec,menus,2024-08-13 05:23:24 +0100972008234000,"Crystal Crisis",nvdec,playable,2021-02-20 13:52:44 +01006FA012FE0000,"Cthulhu Saves Christmas",,playable,2020-12-14 00:58:55 +010001600D1E8000,"Cube Creator X",crash,menus,2021-11-25 08:53:28 +010082E00F1CE000,"Cubers: Arena",nvdec;UE4,playable,2022-10-04 16:05:40 +010040D011D04000,"Cubicity",,playable,2021-06-14 14:19:51 +0100A5C00D162000,"Cuphead",,playable,2022-02-01 22:45:55 +0100F7E00DFC8000,"Cupid Parasite",gpu,ingame,2023-08-21 05:52:36 +010054501075C000,"Curious Cases",,playable,2020-08-10 09:30:48 +0100D4A0118EA000,"Curse of the Dead Gods",,playable,2022-08-30 12:25:38 +0100CE5014026000,"Curved Space",,playable,2023-01-14 22:03:50 +0100C1300DE74000,"Cyber Protocol",nvdec,playable,2020-09-28 14:47:40 +0100C1F0141AA000,"Cyber Shadow",,playable,2022-07-17 05:37:41 +01006B9013672000,"Cybxus Hearts",gpu;slow,ingame,2022-01-15 05:00:49 +010063100B2C2000,"Cytus α",nvdec,playable,2021-02-20 13:40:46 +0100B6400CA56000,"DAEMON X MACHINA™",UE4;audout;ldn-untested;nvdec,playable,2021-06-09 19:22:29 +010061300DF48000,"Dairoku: Ayakashimori",Needs Update;loader-allocator,nothing,2021-11-30 05:09:38 +0100BD2009A1C000,"Damsel",,playable,2022-09-06 11:54:39 +0100BFC002B4E000,"Dandara: Trials of Fear Edition",,playable,2020-05-26 12:42:33 +0100DFB00D808000,"Dandy Dungeon - Legend of Brave Yamada -",,playable,2021-01-06 09:48:47 +01003ED0099B0000,"Danger Mouse: The Danger Games",crash;online,boots,2022-07-22 15:49:45 +0100EFA013E7C000,"Danger Scavenger",nvdec,playable,2021-04-17 15:53:04 +0100417007F78000,"Danmaku Unlimited 3",,playable,2020-11-15 00:48:35 +,"Darius Cozmic Collection",,playable,2021-02-19 20:59:06 +010059C00BED4000,"Darius Cozmic Collection Special Edition",,playable,2022-07-22 16:26:50 +010015800F93C000,"Dariusburst - Another Chronicle EX+",online,playable,2021-04-05 14:21:43 +01003D301357A000,"Dark Arcana: The Carnival",gpu;slow,ingame,2022-02-19 08:52:28 +010083A00BF6C000,"Dark Devotion",nvdec,playable,2022-08-09 09:41:18 +0100BFF00D5AE000,"Dark Quest 2",,playable,2020-11-16 21:34:52 +01004AB00A260000,"DARK SOULS™: REMASTERED",gpu;nvdec;online-broken,ingame,2024-04-09 19:47:58 +01001FA0034E2000,"Dark Witch Music Episode: Rudymical",,playable,2020-05-22 09:44:44 +01008F1008DA6000,"Darkest Dungeon",nvdec,playable,2022-07-22 18:49:18 +0100F2300D4BA000,"Darksiders Genesis",nvdec;online-broken;UE4;ldn-broken,playable,2022-09-21 18:06:25 +010071800BA98000,"Darksiders II Deathinitive Edition",gpu;nvdec;online-broken,ingame,2024-06-26 00:37:25 +0100E1400BA96000,"Darksiders Warmastered Edition",nvdec,playable,2023-03-02 18:08:09 +010033500B7B6000,"Darkwood",,playable,2021-01-08 21:24:06 +0100440012FFA000,"DARQ Complete Edition",audout,playable,2021-04-07 15:26:21 +0100BA500B660000,"Darts Up",,playable,2021-04-14 17:22:22 +0100F0B0081DA000,"Dawn of the Breakers",online-broken;vulkan-backend-bug,menus,2022-12-08 14:40:03 +0100FCF00F6CC000,"Day and Night",,playable,2020-12-17 12:30:51 +0100D0A009310000,"de Blob",nvdec,playable,2021-01-06 17:34:46 +010034E00A114000,"de Blob 2",nvdec,playable,2021-01-06 13:00:16 +01008E900471E000,"De Mambo",,playable,2021-04-10 12:39:40 +01004C400CF96000,"Dead by Daylight",nvdec;online-broken;UE4,boots,2022-09-13 14:32:13 +0100646009FBE000,"Dead Cells",,playable,2021-09-22 22:18:49 +01004C500BD40000,"Dead End Job",nvdec,playable,2022-09-19 12:48:44 +01009CC00C97C000,"DEAD OR ALIVE Xtreme 3 Scarlet",,playable,2022-07-23 17:05:06 +0100A5000F7AA000,"DEAD OR SCHOOL",nvdec,playable,2022-09-06 12:04:09 +0100A24011F52000,"Dead Z Meat",UE4;services,ingame,2021-04-14 16:50:16 +010095A011A14000,"Deadly Days",,playable,2020-11-27 13:38:55 +0100BAC011928000,"Deadly Premonition 2: A Blessing In Disguise",,playable,2021-06-15 14:12:36 +0100EBE00F22E000,"Deadly Premonition Origins",32-bit;nvdec,playable,2024-03-25 12:47:46 +,"Dear Magi - Mahou Shounen Gakka -",,playable,2020-11-22 16:45:16 +01000D60126B6000,"Death and Taxes",,playable,2020-12-15 20:27:49 +010012B011AB2000,"Death Come True",nvdec,playable,2021-06-10 22:30:49 +0100F3B00CF32000,"Death Coming",crash,nothing,2022-02-06 07:43:03 +0100AEC013DDA000,"Death end re;Quest",,playable,2023-07-09 12:19:54 +0100423009358000,"Death Road to Canada",gpu;audio;32-bit;crash,nothing,2023-06-28 15:39:26 +010085900337E000,"Death Squared",,playable,2020-12-04 13:00:15 +0100A51013550000,"Death Tales",,playable,2020-12-17 10:55:52 +0100492011A8A000,"Death's Hangover",gpu,boots,2023-08-01 22:38:06 +01009120119B4000,"Deathsmiles I・II",,playable,2024-04-08 19:29:00 +010034F00BFC8000,"Debris Infinity",nvdec;online,playable,2021-05-28 12:14:39 +010027700FD2E000,"Decay of Logos",nvdec,playable,2022-09-13 14:42:13 +01002CC0062B8000,"DEEMO",,playable,2022-07-24 11:34:33 +01008B10132A2000,"DEEMO -Reborn-",nvdec;online-broken,playable,2022-10-17 15:18:11 +010026800FA88000,"Deep Diving Adventures",,playable,2022-09-22 16:43:37 +0100FAF009562000,"Deep Ones",services,nothing,2020-04-03 02:54:19 +0100C3E00D68E000,"Deep Sky Derelicts: Definitive Edition",,playable,2022-09-27 11:21:08 +01000A700F956000,"Deep Space Rush",,playable,2020-07-07 23:30:33 +0100961011BE6000,"DeepOne",services-horizon;Needs Update,nothing,2024-01-18 15:01:05 +01008BB00F824000,"Defenders of Ekron: Definitive Edition",,playable,2021-06-11 16:31:03 +0100CDE0136E6000,"Defentron",,playable,2022-10-17 15:47:56 +010039300BDB2000,"Defunct",,playable,2021-01-08 21:33:46 +010067900B9C4000,"Degrees of Separation",,playable,2021-01-10 13:40:04 +010071C00CBA4000,"Dei Gratia no Rashinban",crash,nothing,2021-07-13 02:25:32 +010092E00E7F4000,"Deleveled",slow,playable,2020-12-15 21:02:29 +010023800D64A000,"DELTARUNE Chapter 1&2",,playable,2023-01-22 04:47:44 +010038B01D2CA000,"Dementium: The Ward",crash,boots,2024-09-02 08:28:14 +0100AB600ACB4000,"Demetrios - The BIG Cynical Adventure",,playable,2021-06-04 12:01:01 +010099D00D1A4000,"Demolish & Build 2018",,playable,2021-06-13 15:27:26 +010084600F51C000,"Demon Pit",nvdec,playable,2022-09-19 13:35:15 +0100309016E7A000,"Demon Slayer -Kimetsu no Yaiba- The Hinokami Chronicles",UE4,playable,2024-08-08 04:51:49 +0100A2B00BD88000,"Demon's Crystals",crash;regression,nothing,2022-12-07 16:33:17 +0100E29013818000,"Demon's Rise - Lords of Chaos",,playable,2021-04-06 16:20:06 +0100C3501094E000,"Demon's Rise - War for the Deep",,playable,2020-07-29 12:26:27 +0100161011458000,"Demon's Tier+",,playable,2021-06-09 17:25:36 +0100BE800E6D8000,"DEMON'S TILT",,playable,2022-09-19 13:22:46 +010000401313A000,"Demong Hunter",,playable,2020-12-12 15:27:08 +0100BC501355A000,"Densha de go!! Hashirou Yamanote Sen",nvdec;UE4,playable,2023-11-09 07:47:58 +0100C9100FAE2000,"Depixtion",,playable,2020-10-10 18:52:37 +01000BF00B6BC000,"Deployment",slow;online-broken,playable,2022-10-17 16:23:59 +010023600C704000,"Deponia",nvdec,playable,2021-01-26 17:17:19 +0100ED700469A000,"Deru - The Art of Cooperation",,playable,2021-01-07 16:59:59 +0100D4600D0E4000,"Descenders",gpu,ingame,2020-12-10 15:22:36 +,"Desire remaster ver.",crash,boots,2021-01-17 02:34:37 +010069500DD86000,"Destiny Connect: Tick-Tock Travelers",UE4;gpu;nvdec,ingame,2020-12-16 12:20:36 +01008BB011ED6000,"Destrobots",,playable,2021-03-06 14:37:05 +01009E701356A000,"Destroy All Humans!",gpu;nvdec;UE4,ingame,2023-01-14 22:23:53 +010030600E65A000,"Detective Dolittle",,playable,2021-03-02 14:03:59 +01009C0009842000,"Detective Gallo",nvdec,playable,2022-07-24 11:51:04 +,"Detective Jinguji Saburo Prism of Eyes",,playable,2020-10-02 21:54:41 +010007500F27C000,"Detective Pikachu™ Returns",,playable,2023-10-07 10:24:59 +010031B00CF66000,"Devil Engine",,playable,2021-06-04 11:54:30 +01002F000E8F2000,"Devil Kingdom",,playable,2023-01-31 08:58:44 +0100E8000D5B8000,"Devil May Cry",nvdec,playable,2021-01-04 19:43:08 +01007CF00D5BA000,"Devil May Cry 2",nvdec,playable,2023-01-24 23:03:20 +01007B600D5BC000,"Devil May Cry 3 Special Edition",nvdec,playable,2024-07-08 12:33:23 +01003C900EFF6000,"Devil Slayer Raksasi",,playable,2022-10-26 19:42:32 +01009EA00A320000,"Devious Dungeon",,playable,2021-03-04 13:03:06 +01003F601025E000,"Dex",nvdec,playable,2020-08-12 16:48:12 +010044000CBCA000,"Dexteritrip",,playable,2021-01-06 12:51:12 +0100AFC00E06A000,"Dezatopia",online,playable,2021-06-15 21:06:11 +01001B300B9BE000,"Diablo III: Eternal Collection",online-broken;ldn-works,playable,2023-08-21 23:48:03 +0100726014352000,"Diablo® II: Resurrected™",gpu;nvdec,ingame,2023-08-18 18:42:47 +0100F73011456000,"Diabolic",,playable,2021-06-11 14:45:08 +010027400BD24000,"DIABOLIK LOVERS CHAOS LINEAGE",gpu;Needs Update,ingame,2023-06-08 02:20:44 +0100BBF011394000,"Dicey Dungeons",gpu;audio;slow,ingame,2023-08-02 20:30:12 +0100D98005E8C000,"Die for Valhalla!",,playable,2021-01-06 16:09:14 +0100BB900B5B4000,"Dies irae Amantes amentes For Nintendo Switch",32-bit;crash,nothing,2022-02-16 07:09:05 +0100A5A00DBB0000,"Dig Dog",gpu,ingame,2021-06-02 17:17:51 +01004DE011076000,"Digerati Indie Darling Bundle Vol. 3",,playable,2022-10-02 13:01:57 +010035D0121EC000,"Digerati Presents: The Dungeon Crawl Vol. 1",slow,ingame,2021-04-18 14:04:55 +010014E00DB56000,"Digimon Story Cyber Sleuth: Complete Edition",nvdec;opengl,playable,2022-09-13 15:02:37 +0100F00014254000,"Digimon World: Next Order",,playable,2023-05-09 20:41:06 +0100B6D00DA6E000,"Ding Dong XL",,playable,2020-07-14 16:13:19 +01002E4011924000,"Dininho Adventures",,playable,2020-10-03 17:25:51 +010027E0158A6000,"Dininho Space Adventure",,playable,2023-01-14 22:43:04 +0100A8A013DA4000,"Dirt Bike Insanity",,playable,2021-01-31 13:27:38 +01004CB01378A000,"Dirt Trackin Sprint Cars",nvdec;online-broken,playable,2022-10-17 16:34:56 +0100918014B02000,"Disagaea 6: Defiance of Destiny Demo",demo,playable,2022-10-26 20:02:04 +010020700E2A2000,"Disaster Report 4: Summer Memories",nvdec;UE4,playable,2022-09-27 19:41:31 +0100510004D2C000,"Disc Jam",UE4;ldn-untested;nvdec;online,playable,2021-04-08 16:40:35 +0100C81004780000,"Disco Dodgeball - REMIX",online,playable,2020-09-28 23:24:49 +01004B100AF18000,"Disgaea 1 Complete",,playable,2023-01-30 21:45:23 +0100A9800E9B4000,"Disgaea 4 Complete+",gpu;slow,playable,2020-02-18 10:54:28 +010068C00F324000,"Disgaea 4 Complete+ Demo",nvdec,playable,2022-09-13 15:21:59 +01005700031AE000,"Disgaea 5 Complete",nvdec,playable,2021-03-04 15:32:54 +0100ABC013136000,"Disgaea 6: Defiance of Destiny",deadlock,ingame,2023-04-15 00:50:32 +0100307011D80000,"Disgaea 6: Defiance of Destiny [ FG ] [ 魔界戦記ディスガイア6 ]",,playable,2021-06-08 13:20:33 +01005EE013888000,"Disgaea 6: Defiance of Destiny Demo [ 魔界戦記ディスガイア6 ]",gpu;demo,ingame,2022-12-06 15:27:59 +01000B70122A2000,"Disjunction",gpu;vulkan-backend-bug;opengl-backend-bug,ingame,2024-04-28 23:55:24 +0100A2F00EEFC000,"Disney Classic Games Collection",online-broken,playable,2022-09-13 15:44:17 +0100DA201EBF8000,"Disney Epic Mickey: Rebrushed",crash,ingame,2024-09-26 22:11:51 +0100F0401435E000,"Disney Speedstorm",services,boots,2023-11-27 02:15:32 +010012800EBAE000,"Disney TSUM TSUM FESTIVAL",crash,menus,2020-07-14 14:05:28 +01009740120FE000,"DISTRAINT 2",,playable,2020-09-03 16:08:12 +010075B004DD2000,"DISTRAINT: Deluxe Edition",,playable,2020-06-15 23:42:24 +010027400CDC6000,"Divinity: Original Sin 2 - Definitive Edition",services;crash;online-broken;regression,menus,2023-08-13 17:20:03 +01001770115C8000,"Dodo Peak",nvdec;UE4,playable,2022-10-04 16:13:05 +010077B0100DA000,"Dogurai",,playable,2020-10-04 02:40:16 +010048100D51A000,"Dokapon Up! Mugen no Roulette",gpu;Needs Update,menus,2022-12-08 19:39:10 +01005EE00BC78000,"Dokuro (ドクロ)",nvdec,playable,2020-12-17 14:47:09 +010007200AC0E000,"Don't Die, Mr Robot!",nvdec,playable,2022-09-02 18:34:38 +0100E470067A8000,"Don't Knock Twice",,playable,2024-05-08 22:37:58 +0100C4D00B608000,"Don't Sink",gpu,ingame,2021-02-26 15:41:11 +0100751007ADA000,"Don't Starve: Nintendo Switch Edition",nvdec,playable,2022-02-05 20:43:34 +010088B010DD2000,"Dongo Adventure",,playable,2022-10-04 16:22:26 +0100C1F0051B6000,"Donkey Kong Country™: Tropical Freeze",,playable,2024-08-05 16:46:10 +0100F2C00F060000,"Doodle Derby",,boots,2020-12-04 22:51:48 +0100416004C00000,"DOOM",gpu;slow;nvdec;online-broken,ingame,2024-09-23 15:40:07 +010018900DD00000,"DOOM (1993)",nvdec;online-broken,menus,2022-09-06 13:32:19 +01008CB01E52E000,"DOOM + DOOM II",opengl;ldn-untested;LAN,playable,2024-09-12 07:06:01 +010029D00E740000,"DOOM 3",crash,menus,2024-08-03 05:25:47 +01005D700E742000,"DOOM 64",nvdec;vulkan,playable,2020-10-13 23:47:28 +0100D4F00DD02000,"DOOM II (Classic)",nvdec;online,playable,2021-06-03 20:10:01 +0100B1A00D8CE000,"DOOM® Eternal",gpu;slow;nvdec;online-broken,ingame,2024-08-28 15:57:17 +01005ED00CD70000,"Door Kickers: Action Squad",online-broken;ldn-broken,playable,2022-09-13 16:28:53 +010073700E412000,"DORAEMON STORY OF SEASONS",nvdec,playable,2020-07-13 20:28:11 +0100F7300BD8E000,"Double Cross",,playable,2021-01-07 15:34:22 +0100B1500E9F2000,"Double Dragon & Kunio-kun: Retro Brawler Bundle",,playable,2020-09-01 12:48:46 +01001AD00E49A000,"DOUBLE DRAGON Ⅲ: The Sacred Stones",online,playable,2021-06-11 15:41:44 +01005B10132B2000,"Double Dragon Neon",gpu;audio;32-bit,ingame,2022-09-20 18:00:20 +01000F400C1A4000,"Double Kick Heroes",gpu,ingame,2020-10-03 14:33:59 +0100A5D00C7C0000,"Double Pug Switch",nvdec,playable,2022-10-10 10:59:35 +0100FC000EE10000,"Double Switch - 25th Anniversary Edition",nvdec,playable,2022-09-19 13:41:50 +0100B6600FE06000,"Down to Hell",gpu;nvdec,ingame,2022-09-19 14:01:26 +010093D00C726000,"Downwell",,playable,2021-04-25 20:05:24 +0100ED000D390000,"Dr Kawashima's Brain Training",services,ingame,2023-06-04 00:06:46 +01001B80099F6000,"Dracula's Legacy",nvdec,playable,2020-12-10 13:24:25 +0100566009238000,"DragoDino",gpu;nvdec,ingame,2020-08-03 20:49:16 +0100DBC00BD5A000,"Dragon Audit",crash,ingame,2021-05-16 14:24:46 +0100A250097F0000,"DRAGON BALL FighterZ",UE4;ldn-broken;nvdec;online,playable,2021-06-11 16:19:04 +010078D000F88000,"DRAGON BALL XENOVERSE 2 for Nintendo Switch",gpu;nvdec;online;ldn-untested,ingame,2022-07-24 12:31:01 +010051C0134F8000,"DRAGON BALL Z: KAKAROT + A NEW POWER AWAKENS SET",vulkan-backend-bug,playable,2024-08-28 00:03:50 +010099B00A2DC000,"Dragon Blaze for Nintendo Switch",32-bit,playable,2020-10-14 11:11:28 +010089700150E000,"Dragon Marked for Death: Advanced Attackers",ldn-untested;audout,playable,2022-03-10 06:44:34 +0100EFC00EFB2000,"DRAGON QUEST",gpu,boots,2021-11-09 03:31:32 +010008900705C000,"Dragon Quest Builders™",gpu;nvdec,ingame,2023-08-14 09:54:36 +010042000A986000,"DRAGON QUEST BUILDERS™ 2",,playable,2024-04-19 16:36:38 +0100CD3000BDC000,"Dragon Quest Heroes I + II (JP)",nvdec,playable,2021-04-08 14:27:16 +010062200EFB4000,"DRAGON QUEST II: Luminaries of the Legendary Line",,playable,2022-09-13 16:44:11 +01003E601E324000,"DRAGON QUEST III HD-2D Remake",vulkan-backend-bug;UE4;audout;mac-bug,ingame,2025-01-07 04:10:27 +010015600EFB6000,"DRAGON QUEST III: The Seeds of Salvation",gpu,boots,2021-11-09 03:38:34 +0100A77018EA0000,"DRAGON QUEST MONSTERS: The Dark Prince",,playable,2023-12-29 16:10:05 +0100217014266000,"Dragon Quest Treasures",gpu;UE4,ingame,2023-05-09 11:16:52 +0100E2E0152E4000,"Dragon Quest X Awakening Five Races Offline",nvdec;UE4,playable,2024-08-20 10:04:24 +01006C300E9F0000,"DRAGON QUEST® XI S: Echoes of an Elusive Age – Definitive Edition",UE4,playable,2021-11-27 12:27:11 +010032C00AC58000,"Dragon's Dogma: Dark Arisen",,playable,2022-07-24 12:58:33 +010027100C544000,"Dragon's Lair Trilogy",nvdec,playable,2021-01-13 22:12:07 +0100DA0006F50000,"DragonFangZ - The Rose & Dungeon of Time",,playable,2020-09-28 21:35:18 +0100F7800A434000,"Drawful 2",,ingame,2022-07-24 13:50:21 +0100B7E0102E4000,"Drawngeon: Dungeons of Ink and Paper",gpu,ingame,2022-09-19 15:41:25 +01008B20129F2000,"Dream",,playable,2020-12-15 19:55:07 +01000AA0093DC000,"Dream Alone",nvdec,playable,2021-01-27 19:41:50 +010034D00F330000,"DreamBall",UE4;crash;gpu,ingame,2020-08-05 14:45:25 +010058B00F3C0000,"Dreaming Canvas",UE4;gpu,ingame,2021-06-13 22:50:07 +0100D24013466000,"DREAMO",UE4,playable,2022-10-17 18:25:28 +0100ED200B6FC000,"DreamWorks Dragons Dawn of New Riders",nvdec,playable,2021-01-27 20:05:26 +0100236011B4C000,"DreamWorks Spirit Lucky’s Big Adventure",,playable,2022-10-27 13:30:52 +010058C00A916000,"Drone Fight",,playable,2022-07-24 14:31:56 +010052000A574000,"Drowning",,playable,2022-07-25 14:28:26 +0100652012F58000,"Drums",,playable,2020-12-17 17:21:51 +01005BC012C66000,"Duck Life Adventure",,playable,2022-10-10 11:27:03 +01007EF00CB88000,"Duke Nukem 3D: 20th Anniversary World Tour",32-bit;ldn-untested,playable,2022-08-19 22:22:40 +010068D0141F2000,"Dull Grey",,playable,2022-10-27 13:40:38 +0100926013600000,"Dungeon Nightmares 1 + 2 Collection",,playable,2022-10-17 18:54:22 +010034300F0E2000,"Dungeon of the Endless",nvdec,playable,2021-05-27 19:16:26 +0100E79009A94000,"Dungeon Stars",,playable,2021-01-18 14:28:37 +0100BE801360E000,"Dungeons & Bombs",,playable,2021-04-06 12:46:22 +0100EC30140B6000,"Dunk Lords",,playable,2024-06-26 00:07:26 +010011C00E636000,"Dusk Diver",crash;UE4,boots,2021-11-06 09:01:30 +0100B6E00A420000,"Dust: An Elysian Tail",,playable,2022-07-25 15:28:12 +0100D7E012F2E000,"Dustoff Z",,playable,2020-12-04 23:22:29 +01008C8012920000,"Dying Light: Definitive Edition",services-horizon,boots,2024-03-11 10:43:32 +01007DD00DFDE000,"Dyna Bomb",,playable,2020-06-07 13:26:55 +0100E9A00CB30000,"DYNASTY WARRIORS 8: Xtreme Legends Definitive Edition",nvdec,playable,2024-06-26 00:16:30 +010008900BC5A000,"DYSMANTLE",gpu,ingame,2024-07-15 16:24:12 +010054E01D878000,"EA SPORTS FC 25",crash,ingame,2024-09-25 21:07:50 +0100BDB01A0E6000,"EA SPORTS FC™ 24",,boots,2023-10-04 18:32:59 +01001C8016B4E000,"EA SPORTS FIFA 23 Nintendo Switch™ Legacy Edition",gpu;crash,ingame,2024-06-10 23:33:05 +01005DE00D05C000,"EA SPORTS™ FIFA 20 Nintendo Switch™ Legacy Edition",gpu;nvdec;online-broken;ldn-untested,ingame,2022-09-13 17:57:20 +010037400C7DA000,"Eagle Island Twist",,playable,2021-04-10 13:15:42 +0100B9E012992000,"Earth Defense Force World Brothers ( ま~るい地球が四角くなった!? デジボク地球防衛軍 )",UE4,playable,2022-12-07 12:59:16 +0100298014030000,"Earth Defense Force: World Brothers",UE4,playable,2022-10-27 14:13:31 +01009B7006C88000,"EARTH WARS",,playable,2021-06-05 11:18:33 +0100DFC00E472000,"Earthfall: Alien Horde",nvdec;UE4;ldn-untested,playable,2022-09-13 17:32:37 +01006E50042EA000,"EARTHLOCK",,playable,2021-06-05 11:51:02 +0100A2E00BB0C000,"EarthNight",,playable,2022-09-19 21:02:20 +0100DCE00B756000,"Earthworms",,playable,2022-07-25 16:28:55 +0100E3500BD84000,"Earthworms Demo",,playable,2021-01-05 16:57:11 +0100ECF01800C000,"Easy Come Easy Golf",online-broken;regression,playable,2024-04-04 16:15:00 +0100A9B009678000,"EAT BEAT DEADSPIKE-san",audio;Needs Update,playable,2022-12-02 19:25:29 +0100BCA016636000,"eBaseball Powerful Pro Yakyuu 2022",gpu;services-horizon;crash,nothing,2024-05-26 23:07:19 +01001F20100B8000,"Eclipse: Edge of Light",,playable,2020-08-11 23:06:29 +0100E0A0110F4000,"eCrossminton",,playable,2020-07-11 18:24:27 +0100ABE00DB4E000,"Edna & Harvey: Harvey's New Eyes",nvdec,playable,2021-01-26 14:36:08 +01004F000B716000,"Edna & Harvey: The Breakout – Anniversary Edition",crash;nvdec,ingame,2022-08-01 16:59:56 +01002550129F0000,"Effie",,playable,2022-10-27 14:36:39 +0100CC0010A46000,"Ego Protocol: Remastered",nvdec,playable,2020-12-16 20:16:35 +,"Eiga Sumikko Gurashi Tobidasu Ehon to Himitsu no Ko Game de Asobo Ehon no Sekai",,playable,2020-11-12 00:11:50 +01003AD013BD2000,"Eight Dragons",nvdec,playable,2022-10-27 14:47:28 +010020A01209C000,"El Hijo - A Wild West Tale",nvdec,playable,2021-04-19 17:44:08 +0100B5B00EF38000,"Elden: Path of the Forgotten",,playable,2020-12-15 00:33:19 +010068F012880000,"Eldrador® Creatures",slow,playable,2020-12-12 12:35:35 +010008E010012000,"ELEA: Paradigm Shift",UE4;crash,nothing,2020-10-04 19:07:43 +0100A6700AF10000,"Element",,playable,2022-07-25 17:17:16 +0100128003A24000,"Elliot Quest",,playable,2022-07-25 17:46:14 +010041A00FEC6000,"Ember",nvdec,playable,2022-09-19 21:16:11 +010071B012940000,"Embracelet",,playable,2020-12-04 23:45:00 +010017B0102A8000,"Emma: Lost in Memories",nvdec,playable,2021-01-28 16:19:10 +010068300E08E000,"Enchanted in the Moonlight - Kiryu, Chikage & Yukinojo -",gpu;nvdec,ingame,2022-11-20 16:18:45 +01007A4008486000,"Enchanting Mahjong Match",gpu,ingame,2020-04-17 22:01:31 +01004F3011F92000,"Endless Fables: Dark Moor",gpu;nvdec,ingame,2021-03-07 15:31:03 +010067B017588000,"Endless Ocean™ Luminous",services-horizon;crash,ingame,2024-05-30 02:05:57 +0100B8700BD14000,"Energy Cycle Edge",services,ingame,2021-11-30 05:02:31 +0100A8E0090B0000,"Energy Invasion",,playable,2021-01-14 21:32:26 +0100C6200A0AA000,"Enigmatis 2: The Mists of Ravenwood",crash;regression,boots,2021-06-06 15:15:30 +01009D60076F6000,"Enter the Gungeon",,playable,2022-07-25 20:28:33 +0100262009626000,"Epic Loon",nvdec,playable,2022-07-25 22:06:13 +01000FA0149B6000,"EQI",nvdec;UE4,playable,2022-10-27 16:42:32 +0100E95010058000,"EQQO",UE4;nvdec,playable,2021-06-13 23:10:51 +01000E8010A98000,"Escape First",,playable,2020-10-20 22:46:53 +010021201296A000,"Escape First 2",,playable,2021-03-24 11:59:41 +0100FEF00F0AA000,"Escape from Chernobyl",crash,boots,2022-09-19 21:36:58 +010023E013244000,"Escape from Life Inc",,playable,2021-04-19 17:34:09 +010092901203A000,"Escape From Tethys",,playable,2020-10-14 22:38:25 +0100B0F011A84000,"Escape Game Fort Boyard",,playable,2020-07-12 12:45:43 +0100F9600E746000,"ESP Ra.De. Psi",audio;slow,ingame,2024-03-07 15:05:08 +010073000FE18000,"Esports powerful pro yakyuu 2020",gpu;crash;Needs More Attention,ingame,2024-04-29 05:34:14 +01004F9012FD8000,"Estranged: The Departure",nvdec;UE4,playable,2022-10-24 10:37:58 +0100CB900B498000,"Eternum Ex",,playable,2021-01-13 20:28:32 +010092501EB2C000,"Europa (Demo)",gpu;crash;UE4,ingame,2024-04-23 10:47:12 +01007BE0160D6000,"EVE ghost enemies",gpu,ingame,2023-01-14 03:13:30 +010095E01581C000,"even if TEMPEST",gpu,ingame,2023-06-22 23:50:25 +010072C010002000,"Event Horizon: Space Defense",,playable,2020-07-31 20:31:24 +0100DCF0093EC000,"Everspace™ - Stellar Edition",UE4,playable,2022-08-14 01:16:24 +01006F900BF8E000,"Everybody 1-2-Switch!™",services;deadlock,nothing,2023-07-01 05:52:55 +010080600B53E000,"Evil Defenders",nvdec,playable,2020-09-28 17:11:00 +01006A800FA22000,"Evolution Board Game",online,playable,2021-01-20 22:37:56 +0100F2D00C7DE000,"Exception",online-broken,playable,2022-09-20 12:47:10 +0100DD30110CC000,"Exit the Gungeon",,playable,2022-09-22 17:04:43 +0100A82013976000,"Exodemon",,playable,2022-10-27 20:17:52 +0100FA800A1F4000,"EXORDER",nvdec,playable,2021-04-15 14:17:20 +01009B7010B42000,"Explosive Jake",crash,boots,2021-11-03 07:48:32 +0100EFE00A3C2000,"Eyes: The Horror Game",,playable,2021-01-20 21:59:46 +0100E3D0103CE000,"Fable of Fairy Stones",,playable,2021-05-05 21:04:54 +01004200189F4000,"Factorio",deadlock,boots,2024-06-11 19:26:16 +010073F0189B6000,"Fae Farm",,playable,2024-08-25 15:12:12 +010069100DB08000,"Faeria",nvdec;online-broken,menus,2022-10-04 16:44:41 +01008A6009758000,"Fairune Collection",,playable,2021-06-06 15:29:56 +0100F6D00B8F2000,"Fairy Fencer F™: Advent Dark Force",32-bit;crash;nvdec,ingame,2023-04-16 03:53:48 +0100CF900FA3E000,"FAIRY TAIL",nvdec,playable,2022-10-04 23:00:32 +01005A600BE60000,"Fall of Light: Darkest Edition",slow;nvdec,ingame,2024-07-24 04:19:26 +0100AA801258C000,"Fallen Legion Revenants",crash,menus,2021-11-25 08:53:20 +0100D670126F6000,"Famicom Detective Club™: The Girl Who Stands Behind",nvdec,playable,2022-10-27 20:41:40 +010033F0126F4000,"Famicom Detective Club™: The Missing Heir",nvdec,playable,2022-10-27 20:56:23 +010060200FC44000,"Family Feud®",online-broken,playable,2022-10-10 11:42:21 +0100034012606000,"Family Mysteries: Poisonous Promises",audio;crash,menus,2021-11-26 12:35:06 +010017C012726000,"Fantasy Friends",,playable,2022-10-17 19:42:39 +0100767008502000,"FANTASY HERO ~unsigned legacy~",,playable,2022-07-26 12:28:52 +0100944003820000,"Fantasy Strike",online,playable,2021-02-27 01:59:18 +01000E2012F6E000,"Fantasy Tavern Sextet -Vol.1 New World Days-",gpu;crash;Needs Update,ingame,2022-12-05 16:48:00 +01005C10136CA000,"Fantasy Tavern Sextet -Vol.2 Adventurer's Days-",gpu;slow;crash,ingame,2021-11-06 02:57:29 +010022700E7D6000,"FAR: Lone Sails",,playable,2022-09-06 16:33:05 +0100C9E00FD62000,"Farabel",,playable,2020-08-03 17:47:28 +,"Farm Expert 2019 for Nintendo Switch",,playable,2020-07-09 21:42:57 +01000E400ED98000,"Farm Mystery",nvdec,playable,2022-09-06 16:46:47 +010086B00BB50000,"Farm Together",,playable,2021-01-19 20:01:19 +0100EB600E914000,"Farming Simulator 20",nvdec,playable,2021-06-13 10:52:44 +0100D04004176000,"Farming Simulator Nintendo Switch Edition",nvdec,playable,2021-01-19 14:46:44 +0100E99019B3A000,"Fashion Dreamer",,playable,2023-11-12 06:42:52 +01009510001CA000,"FAST RMX",slow;crash;ldn-partial,ingame,2024-06-22 20:48:58 +0100BEB015604000,"FATAL FRAME: Maiden of Black Water",,playable,2023-07-05 16:01:40 +0100DAE019110000,"FATAL FRAME: Mask of the Lunar Eclipse",Incomplete,playable,2024-04-11 06:01:30 +010051400B17A000,"Fate/EXTELLA LINK",ldn-untested;nvdec,playable,2021-01-27 00:45:50 +010053E002EA2000,"Fate/EXTELLA: The Umbral Star",gpu;nvdec;online-broken;vulkan-backend-bug;opengl-backend-bug,ingame,2023-04-24 23:37:55 +0100F6200B7D4000,"fault - milestone one",nvdec,playable,2021-03-24 10:41:49 +01005AC0068F6000,"Fear Effect Sedna",nvdec,playable,2021-01-19 13:10:33 +0100F5501CE12000,"Fearmonium",crash,boots,2024-03-06 11:26:11 +0100E4300CB3E000,"Feather",,playable,2021-06-03 14:11:27 +010003B00D3A2000,"Felix The Reaper",nvdec,playable,2020-10-20 23:43:03 +0100AA3009738000,"Feudal Alloy",,playable,2021-01-14 08:48:14 +01008D900B984000,"FEZ",gpu,ingame,2021-04-18 17:10:16 +01007510040E8000,"FIA European Truck Racing Championship",nvdec,playable,2022-09-06 17:51:59 +0100F7B002340000,"FIFA 18",gpu;online-broken;ldn-untested,ingame,2022-07-26 12:43:59 +0100FFA0093E8000,"FIFA 19",gpu;nvdec;online-broken;ldn-untested,ingame,2022-07-26 13:07:07 +01000A001171A000,"FIFA 21 Nintendo Switch™ Legacy Edition",gpu;online-broken,ingame,2023-12-11 22:10:19 +0100216014472000,"FIFA 22 Nintendo Switch™ Legacy Edition",gpu,ingame,2024-03-02 14:13:48 +01006980127F0000,"Fight Crab",online-broken;ldn-untested,playable,2022-10-05 10:24:04 +010047E010B3E000,"Fight of Animals",online,playable,2020-10-15 15:08:28 +0100C7D00E730000,"Fight'N Rage",,playable,2020-06-16 23:35:19 +0100D02014048000,"FIGHTING EX LAYER ANOTHER DASH",online-broken;UE4,playable,2024-04-07 10:22:33 +0100118009C68000,"Figment",nvdec,playable,2021-01-27 19:36:05 +010095600AA36000,"Fill-a-Pix: Phil's Epic Adventure",,playable,2020-12-22 13:48:22 +0100C3A00BB76000,"Fimbul",nvdec,playable,2022-07-26 13:31:47 +0100C8200E942000,"Fin and the Ancient Mystery",nvdec,playable,2020-12-17 16:40:39 +01000EA014150000,"FINAL FANTASY",crash,nothing,2024-09-05 20:55:30 +01006B7014156000,"FINAL FANTASY II",crash,nothing,2024-04-13 19:18:04 +01006F000B056000,"FINAL FANTASY IX",audout;nvdec,playable,2021-06-05 11:35:00 +0100AA201415C000,"FINAL FANTASY V",,playable,2023-04-26 01:11:55 +0100A5B00BDC6000,"FINAL FANTASY VII",,playable,2022-12-09 17:03:30 +01008B900DC0A000,"FINAL FANTASY VIII Remastered",nvdec,playable,2023-02-15 10:57:48 +0100BC300CB48000,"FINAL FANTASY X/X-2 HD Remaster",gpu,ingame,2022-08-16 20:29:26 +0100EB100AB42000,"FINAL FANTASY XII THE ZODIAC AGE",opengl;vulkan-backend-bug,playable,2024-08-11 07:01:54 +010068F00AA78000,"FINAL FANTASY XV POCKET EDITION HD",,playable,2021-01-05 17:52:08 +0100CE4010AAC000,"FINAL FANTASY® CRYSTAL CHRONICLES™ Remastered Edition",,playable,2023-04-02 23:39:12 +01001BA00AE4E000,"Final Light, The Prison",,playable,2020-07-31 21:48:44 +0100FF100FB68000,"Finding Teddy 2 : Definitive Edition",gpu,ingame,2024-04-19 16:51:33 +0100F4E013AAE000,"Fire & Water",,playable,2020-12-15 15:43:20 +0100F15003E64000,"Fire Emblem Warriors",nvdec,playable,2023-05-10 01:53:10 +010071F0143EA000,"Fire Emblem Warriors: Three Hopes",gpu;nvdec,ingame,2024-05-01 07:07:42 +0100A6301214E000,"Fire Emblem™ Engage",amd-vendor-bug;mac-bug,playable,2024-09-01 23:37:26 +0100A12011CC8000,"Fire Emblem™: Shadow Dragon & the Blade of Light",,playable,2022-10-17 19:49:14 +010055D009F78000,"Fire Emblem™: Three Houses",online-broken,playable,2024-09-14 23:53:50 +010025C014798000,"Fire: Ungh’s Quest",nvdec,playable,2022-10-27 21:41:26 +0100434003C58000,"Firefighters – The Simulation",,playable,2021-02-19 13:32:05 +0100BB1009E50000,"Firefighters: Airport Fire Department",,playable,2021-02-15 19:17:00 +0100AC300919A000,"Firewatch",,playable,2021-06-03 10:56:38 +0100BA9012B36000,"Firework",,playable,2020-12-04 20:20:09 +0100DEB00ACE2000,"Fishing Star World Tour",,playable,2022-09-13 19:08:51 +010069800D292000,"Fishing Universe Simulator",,playable,2021-04-15 14:00:43 +0100807008868000,"Fit Boxing",,playable,2022-07-26 19:24:55 +0100E7300AAD4000,"Fitness Boxing",,playable,2021-04-14 20:33:33 +0100073011382000,"Fitness Boxing 2: Rhythm & Exercise",crash,ingame,2021-04-14 20:40:48 +0100C7E0134BE000,"Five Dates",nvdec,playable,2020-12-11 15:17:11 +0100B6200D8D2000,"Five Nights at Freddy's",,playable,2022-09-13 19:26:36 +01004EB00E43A000,"Five Nights at Freddy's 2",,playable,2023-02-08 15:48:24 +010056100E43C000,"Five Nights at Freddy's 3",,playable,2022-09-13 20:58:07 +010083800E43E000,"Five Nights at Freddy's 4",,playable,2023-08-19 07:28:03 +0100F7901118C000,"Five Nights at Freddy's: Help Wanted",UE4,playable,2022-09-29 12:40:09 +01009060193C4000,"Five Nights at Freddy's: Security Breach",gpu;crash;mac-bug,ingame,2023-04-23 22:33:28 +01003B200E440000,"Five Nights at Freddy's: Sister Location",,playable,2023-10-06 09:00:58 +010038200E088000,"Flan",crash;regression,ingame,2021-11-17 07:39:28 +01000A0004C50000,"FLASHBACK™",nvdec,playable,2020-05-14 13:57:29 +0100C53004C52000,"Flat Heroes",gpu,ingame,2022-07-26 19:37:37 +0100B54012798000,"Flatland: Prologue",,playable,2020-12-11 20:41:12 +0100307004B4C000,"Flinthook",online,playable,2021-03-25 20:42:29 +010095A004040000,"Flip Wars",services;ldn-untested,ingame,2022-05-02 15:39:18 +01009FB002B2E000,"Flipping Death",,playable,2021-02-17 16:12:30 +0100D1700ACFC000,"Flood of Light",,playable,2020-05-15 14:15:25 +0100DF9005E7A000,"Floor Kids",nvdec,playable,2024-08-18 19:38:49 +010040700E8FC000,"Florence",,playable,2020-09-05 01:22:30 +0100F5D00CD58000,"Flowlines VS",,playable,2020-12-17 17:01:53 +010039C00E2CE000,"Flux8",nvdec,playable,2020-06-19 20:55:11 +0100EDA00BBBE000,"Fly O'Clock",,playable,2020-05-17 13:39:52 +0100FC300F4A4000,"Fly Punch Boom!",online,playable,2020-06-21 12:06:11 +0100419013A8A000,"Flying Hero X",crash,menus,2021-11-17 07:46:58 +010056000BA1C000,"Fobia",,playable,2020-12-14 21:05:23 +0100F3900D0F0000,"Food Truck Tycoon",,playable,2022-10-17 20:15:55 +01007CF013152000,"Football Manager 2021 Touch",gpu,ingame,2022-10-17 20:08:23 +0100EDC01990E000,"Football Manager 2023 Touch",gpu,ingame,2023-08-01 03:40:53 +010097F0099B4000,"Football Manager Touch 2018",,playable,2022-07-26 20:17:56 +010069400B6BE000,"For The King",nvdec,playable,2021-02-15 18:51:44 +01001D200BCC4000,"Forager",crash,menus,2021-11-24 07:10:17 +0100AE001256E000,"FORECLOSED",crash;Needs More Attention;nvdec,ingame,2022-12-06 14:41:12 +010044B00E70A000,"Foregone",deadlock,ingame,2020-12-17 15:26:53 +010059E00B93C000,"Forgotton Anne",nvdec,playable,2021-02-15 18:28:07 +01008EA00405C000,"forma.8",nvdec,playable,2020-11-15 01:04:32 +010025400AECE000,"Fortnite",services-horizon,nothing,2024-04-06 18:23:25 +0100AAE01E39C000,"Fortress Challenge - Fort Boyard",nvdec;slow,playable,2020-05-15 13:22:53 +0100CA500756C000,"Fossil Hunters",nvdec,playable,2022-07-27 11:37:20 +01008A100A028000,"FOX n FORESTS",,playable,2021-02-16 14:27:49 +0100D2501001A000,"FoxyLand",,playable,2020-07-29 20:55:20 +01000AC010024000,"FoxyLand 2",,playable,2020-08-06 14:41:30 +01004200099F2000,"Fractured Minds",,playable,2022-09-13 21:21:40 +0100F1A00A5DC000,"FRAMED Collection",nvdec,playable,2022-07-27 11:48:15 +0100AC40108D8000,"Fred3ric",,playable,2021-04-15 13:30:31 +01000490067AE000,"Frederic 2: Evil Strikes Back",,playable,2020-07-23 16:44:37 +01005B1006988000,"Frederic: Resurrection of Music",nvdec,playable,2020-07-23 16:59:53 +010082B00EE50000,"Freedom Finger",nvdec,playable,2021-06-09 19:31:30 +0100EB800B614000,"Freedom Planet",,playable,2020-05-14 12:23:06 +010003F00BD48000,"Friday the 13th: Killer Puzzle",,playable,2021-01-28 01:33:38 +010092A00C4B6000,"Friday the 13th: The Game Ultimate Slasher Edition",nvdec;online-broken;UE4,playable,2022-09-06 17:33:27 +0100F200178F4000,"FRONT MISSION 1st: Remake",,playable,2023-06-09 07:44:24 +0100861012474000,"Frontline Zed",,playable,2020-10-03 12:55:59 +0100B5300B49A000,"Frost",,playable,2022-07-27 12:00:36 +010038A007AA4000,"FruitFall Crush",,playable,2020-10-20 11:33:33 +01008D800AE4A000,"FullBlast",,playable,2020-05-19 10:34:13 +010002F00CC20000,"FUN! FUN! Animal Park",,playable,2021-04-14 17:08:52 +0100A8F00B3D0000,"FunBox Party",,playable,2020-05-15 12:07:02 +0100E7B00BF24000,"Funghi Explosion",,playable,2020-11-23 14:17:41 +01008E10130F8000,"Funimation",gpu,boots,2021-04-08 13:08:17 +0100EA501033C000,"Funny Bunny Adventures",,playable,2020-08-05 13:46:56 +01000EC00AF98000,"Furi",,playable,2022-07-27 12:21:20 +0100A6B00D4EC000,"Furwind",,playable,2021-02-19 19:44:08 +0100ECE00C0C4000,"Fury Unleashed",crash;services,ingame,2020-10-18 11:52:40 +010070000ED9E000,"Fury Unleashed Demo",,playable,2020-10-08 20:09:21 +0100E1F013674000,"FUSER™",nvdec;UE4,playable,2022-10-17 20:58:32 +,"Fushigi no Gensokyo Lotus Labyrinth",Needs Update;audio;gpu;nvdec,ingame,2021-01-20 15:30:02 +01003C300B274000,"Futari de! Nyanko Daisensou",,playable,2024-01-05 22:26:52 +010055801134E000,"FUZE Player",online-broken;vulkan-backend-bug,ingame,2022-10-18 12:23:53 +0100EAD007E98000,"FUZE4 Nintendo Switch",vulkan-backend-bug,playable,2022-09-06 19:25:01 +010067600F1A0000,"FuzzBall",crash,nothing,2021-03-29 20:13:21 +,"G-MODE Archives 06 The strongest ever Julia Miyamoto",,playable,2020-10-15 13:06:26 +0100EB10108EA000,"G.I. Joe: Operation Blackout",UE4;crash,boots,2020-11-21 12:37:44 +010048600B14E000,"Gal Metal",,playable,2022-07-27 20:57:48 +010024700901A000,"Gal*Gun 2",nvdec;UE4,playable,2022-07-27 12:45:37 +0100047013378000,"Gal*Gun Returns [ ぎゃる☆がん りたーんず ]",nvdec,playable,2022-10-17 23:50:46 +0100C9800A454000,"GALAK-Z: Variant S",online-broken,boots,2022-07-29 11:59:12 +0100C62011050000,"Game Boy™ – Nintendo Switch Online",,playable,2023-03-21 12:43:48 +010012F017576000,"Game Boy™ Advance – Nintendo Switch Online",,playable,2023-02-16 20:38:15 +0100FA5010788000,"Game Builder Garage™",,ingame,2024-04-20 21:46:22 +0100AF700BCD2000,"Game Dev Story",,playable,2020-05-20 00:00:38 +01006BD00F8C0000,"Game Doraemon Nobita no Shin Kyoryu",gpu,ingame,2023-02-27 02:03:28 +01000FA00A4E4000,"Garage",,playable,2020-05-19 20:59:53 +010061E00E8BE000,"Garfield Kart Furious Racing",ldn-works;loader-allocator,playable,2022-09-13 21:40:25 +0100EA001069E000,"Gates Of Hell",slow,playable,2020-10-22 12:44:26 +010025500C098000,"Gato Roboto",,playable,2023-01-20 15:04:11 +010065E003FD8000,"Gear.Club Unlimited",,playable,2021-06-08 13:03:19 +010072900AFF0000,"Gear.Club Unlimited 2",nvdec;online-broken,playable,2022-07-29 12:52:16 +01000F000D9F0000,"Geki Yaba Runner Anniversary Edition",,playable,2021-02-19 18:59:07 +010052A00942A000,"Gekido Kintaro's Revenge",,playable,2020-10-27 12:44:05 +01009D000AF3A000,"Gelly Break Deluxe",UE4,playable,2021-03-03 16:04:02 +01001A4008192000,"Gem Smashers",nvdec,playable,2021-06-08 13:40:51 +010014901144C000,"Genetic Disaster",,playable,2020-06-19 21:41:12 +0100D7E0110B2000,"Genkai Tokki Moero Crystal H- 極限凸起 萌情水晶 H - 한계돌파 모에로크리스탈 H",32-bit,playable,2022-06-06 00:42:09 +010000300C79C000,"GensokyoDefenders",online-broken;UE4,playable,2022-07-29 13:48:12 +0100AC600EB4C000,"Gensou Rougoku no Kaleidscope",crash,menus,2021-11-24 08:45:07 +01007FC012FD4000,"Georifters",UE4;crash;nvdec,menus,2020-12-04 22:30:50 +010058F010296000,"GERRRMS",,playable,2020-08-15 11:32:52 +01006F30129F8000,"Get 10 quest",,playable,2020-08-03 12:48:39 +0100B5B00E77C000,"Get Over Here",,playable,2022-10-28 11:53:52 +0100EEB005ACC000,"Ghost 1.0",,playable,2021-02-19 20:48:47 +010063200C588000,"Ghost Blade HD",online-broken,playable,2022-09-13 21:51:21 +010057500E744000,"Ghost Grab 3000",,playable,2020-07-11 18:09:52 +010094C00E180000,"Ghost Parade",,playable,2020-07-14 00:43:54 +01004B301108C000,"Ghost Sweeper",,playable,2022-10-10 12:45:36 +010029B018432000,"Ghost Trick: Phantom Detective",,playable,2023-08-23 14:50:12 +010008A00F632000,"Ghostbusters: The Video Game Remastered",nvdec,playable,2021-09-17 07:26:57 +010090F012916000,"Ghostrunner",UE4;crash;gpu;nvdec,ingame,2020-12-17 13:01:59 +0100D6200F2BA000,"Ghosts 'n Goblins Resurrection",,playable,2023-05-09 12:40:41 +01003830092B8000,"Giana Sisters: Twisted Dreams - Owltimate Edition",,playable,2022-07-29 14:06:12 +0100D95012C0A000,"Gibbous - A Cthulhu Adventure",nvdec,playable,2022-10-10 12:57:17 +010045F00BFC2000,"GIGA WRECKER ALT.",,playable,2022-07-29 14:13:54 +01002C400E526000,"Gigantosaurus The Game",UE4,playable,2022-09-27 21:20:00 +0100C50007070000,"Ginger: Beyond the Crystal",,playable,2021-02-17 16:27:00 +01006BA013990000,"Girabox",,playable,2020-12-12 13:55:05 +01007E90116CE000,"Giraffe and Annika",UE4;crash,ingame,2020-12-04 22:41:57 +01006DD00CC96000,"Girls und Panzer Dream Tank Match DX",ldn-untested,playable,2022-09-12 16:07:11 +01005CB009E20000,"Glaive: Brick Breaker",,playable,2020-05-20 12:15:59 +0100B6F01227C000,"Glitch's Trip",,playable,2020-12-17 16:00:57 +0100EB501130E000,"Glyph",,playable,2021-02-08 19:56:51 +0100EB8011B0C000,"Gnome More War",,playable,2020-12-17 16:33:07 +010008D00CCEC000,"Gnomes Garden 2",,playable,2021-02-19 20:08:13 +010036C00D0D6000,"Gnomes Garden: Lost King",deadlock,menus,2021-11-18 11:14:03 +01008EF013A7C000,"Gnosia",,playable,2021-04-05 17:20:30 +01000C800FADC000,"Go All Out!",online-broken,playable,2022-09-21 19:16:34 +010055A0161F4000,"Go Rally",gpu,ingame,2023-08-16 21:18:23 +0100C1800A9B6000,"Go Vacation™",nvdec;ldn-works,playable,2024-05-13 19:28:53 +0100E6300F854000,"Go! Fish Go!",,playable,2020-07-27 13:52:28 +010032600C8CE000,"Goat Simulator: The GOATY",32-bit,playable,2022-07-29 21:02:33 +01001C700873E000,"GOD EATER 3",gpu;nvdec,ingame,2022-07-29 21:33:21 +0100F3D00B032000,"GOD WARS The Complete Legend",nvdec,playable,2020-05-19 14:37:50 +0100CFA0111C8000,"Gods Will Fall",,playable,2021-02-08 16:49:59 +0100D82009024000,"Goetia",,playable,2020-05-19 12:55:39 +01004D501113C000,"Going Under",deadlock;nvdec,ingame,2020-12-11 22:29:46 +0100126006EF0000,"GOKEN",,playable,2020-08-05 20:22:38 +010013800F0A4000,"Golazo!",,playable,2022-09-13 21:58:37 +01003C000D84C000,"Golem Gates",crash;nvdec;online-broken;UE4,ingame,2022-07-30 11:35:11 +0100779004172000,"Golf Story",,playable,2020-05-14 14:56:17 +01006FB00EBE0000,"Golf With Your Friends",online-broken,playable,2022-09-29 12:55:11 +0100EEC00AA6E000,"Gone Home",,playable,2022-08-01 11:14:20 +01007C2002B3C000,"GoNNER",,playable,2020-05-19 12:05:02 +0100B0500FE4E000,"Good Job!™",,playable,2021-03-02 13:15:55 +01003AD0123A2000,"Good Night, Knight",crash,nothing,2023-07-30 23:38:13 +0100F610122F6000,"Good Pizza, Great Pizza",,playable,2020-12-04 22:59:18 +010014C0100C6000,"Goosebumps Dead of Night",gpu;nvdec,ingame,2020-12-10 20:02:16 +0100B8000B190000,"Goosebumps The Game",,playable,2020-05-19 11:56:52 +0100F2A005C98000,"Gorogoa",,playable,2022-08-01 11:55:08 +01000C7003FE8000,"GORSD",,playable,2020-12-04 22:15:21 +0100E8D007E16000,"Gotcha Racing 2nd",,playable,2020-07-23 17:14:04 +01001010121DE000,"Gothic Murder: Adventure That Changes Destiny",deadlock;crash,ingame,2022-09-30 23:16:53 +01003FF009E60000,"Grab the Bottle",,playable,2020-07-14 17:06:41 +01004D10020F2000,"Graceful Explosion Machine",,playable,2020-05-19 20:36:55 +010038D00EC88000,"Grand Brix Shooter",slow,playable,2020-06-24 13:23:54 +010038100D436000,"Grand Guilds",UE4;nvdec,playable,2021-04-26 12:49:05 +0100BE600D07A000,"Grand Prix Story",,playable,2022-08-01 12:42:23 +05B1D2ABD3D30000,"Grand Theft Auto 3",services;crash;homebrew,nothing,2023-05-01 22:01:58 +0100E0600BBC8000,"GRANDIA HD Collection",crash,boots,2024-08-19 04:29:48 +010028200E132000,"Grass Cutter - Mutated Lawns",slow,ingame,2020-05-19 18:27:42 +010074E0099FA000,"Grave Danger",,playable,2020-05-18 17:41:28 +010054A013E0C000,"GraviFire",,playable,2021-04-05 17:13:32 +01002C2011828000,"Gravity Rider Zero",gpu;vulkan-backend-bug,ingame,2022-09-29 13:56:13 +0100BD800DFA6000,"Greedroid",,playable,2020-12-14 11:14:32 +010068D00AE68000,"GREEN",,playable,2022-08-01 12:54:15 +0100CBB0070EE000,"Green Game: TimeSwapper",nvdec,playable,2021-02-19 18:51:55 +0100DFE00F002000,"GREEN The Life Algorithm",,playable,2022-09-27 21:37:13 +0100DA7013792000,"Grey Skies: A War of the Worlds Story",UE4,playable,2022-10-24 11:13:59 +010031200981C000,"Grid Mania",,playable,2020-05-19 14:11:05 +0100197008B52000,"GRIDD: Retroenhanced",,playable,2020-05-20 11:32:40 +0100DC800A602000,"GRID™ Autosport",nvdec;online-broken;ldn-untested,playable,2023-03-02 20:14:45 +0100B7900B024000,"Grim Fandango Remastered",nvdec,playable,2022-08-01 13:55:58 +010078E012D80000,"Grim Legends 2: Song of the Dark Swan",nvdec,playable,2022-10-18 12:58:45 +010009F011F90000,"Grim Legends: The Forsaken Bride",nvdec,playable,2022-10-18 13:14:06 +01001E200F2F8000,"Grimshade",,playable,2022-10-02 12:44:20 +0100538012496000,"Grindstone",,playable,2023-02-08 15:54:06 +0100459009A2A000,"GRIP",nvdec;online-broken;UE4,playable,2022-08-01 15:00:22 +0100E1700C31C000,"GRIS",nvdec,playable,2021-06-03 13:33:44 +01009D7011B02000,"GRISAIA PHANTOM TRIGGER 01&02",nvdec,playable,2022-12-04 21:16:06 +01005250123B8000,"GRISAIA PHANTOM TRIGGER 03",audout,playable,2021-01-31 12:30:47 +0100D970123BA000,"GRISAIA PHANTOM TRIGGER 04",audout,playable,2021-01-31 12:40:37 +01002330123BC000,"GRISAIA PHANTOM TRIGGER 05",audout;nvdec,playable,2021-01-31 12:49:59 +0100CAF013AE6000,"GRISAIA PHANTOM TRIGGER 5.5",audout;nvdec,playable,2021-01-31 12:59:44 +010091300FFA0000,"Grizzland",gpu,ingame,2024-07-11 16:28:34 +0100EB500D92E000,"GROOVE COASTER WAI WAI PARTY!!!!",nvdec;ldn-broken,playable,2021-11-06 14:54:27 +01007E100456C000,"Guacamelee! 2",,playable,2020-05-15 14:56:59 +0100BAE00B470000,"Guacamelee! Super Turbo Championship Edition",,playable,2020-05-13 23:44:18 +010089900C9FA000,"Guess the Character",,playable,2020-05-20 13:14:19 +01005DC00D80C000,"Guess the word",,playable,2020-07-26 21:34:25 +01006F80082E4000,"GUILTY GEAR XX ACCENT CORE PLUS R",nvdec,playable,2021-01-13 09:28:33 +01003C6008940000,"GUNBIRD for Nintendo Switch",32-bit,playable,2021-06-04 19:16:01 +0100BCB00AE98000,"GUNBIRD2 for Nintendo Switch",,playable,2020-10-10 14:41:16 +,"Gunka o haita neko",gpu;nvdec,ingame,2020-08-25 12:37:56 +010061000D318000,"Gunman Clive HD Collection",,playable,2020-10-09 12:17:35 +01006D4003BCE000,"Guns, Gore and Cannoli 2",online,playable,2021-01-06 18:43:59 +01008C800E654000,"Gunvolt Chronicles Luminous Avenger iX - Retail Version",,playable,2020-06-16 22:47:07 +0100763015C2E000,"Gunvolt Chronicles: Luminous Avenger iX 2",crash;Needs Update,nothing,2022-04-29 15:34:34 +01002C8018554000,"Gurimugurimoa OnceMore Demo",,playable,2022-07-29 22:07:31 +0100AC601DCA8000,"GYLT",crash,ingame,2024-03-18 20:16:51 +0100822012D76000,"HAAK",gpu,ingame,2023-02-19 14:31:05 +01007E100EFA8000,"Habroxia",,playable,2020-06-16 23:04:42 +0100535012974000,"Hades",vulkan,playable,2022-10-05 10:45:21 +0100618010D76000,"Hakoniwa Explorer Plus",slow,ingame,2021-02-19 16:56:19 +0100E0D00C336000,"Halloween Pinball",,playable,2021-01-12 16:00:46 +01006FF014152000,"Hamidashi Creative",gpu,ingame,2021-12-19 15:30:51 +01003B9007E86000,"Hammerwatch",online-broken;ldn-broken,playable,2022-08-01 16:28:46 +01003620068EA000,"Hand of Fate 2",,playable,2022-08-01 15:44:16 +0100973011358000,"Hang The Kings",,playable,2020-07-28 22:56:59 +010066C018E50000,"Happy Animals Mini Golf",gpu,ingame,2022-12-04 19:24:28 +0100ECE00D13E000,"Hard West",regression,nothing,2022-02-09 07:45:56 +0100D55011D60000,"Hardcore Maze Cube",,playable,2020-12-04 20:01:24 +01002F0011DD4000,"HARDCORE MECHA",slow,playable,2020-11-01 15:06:33 +01000C90117FA000,"HardCube",,playable,2021-05-05 18:33:03 +0100BB600C096000,"Hardway Party",,playable,2020-07-26 12:35:07 +0100D0500AD30000,"Harvest Life",,playable,2022-08-01 16:51:45 +010016B010FDE000,"Harvest Moon®: One World",,playable,2023-05-26 09:17:19 +0100A280187BC000,"Harvestella",UE4;vulkan-backend-bug;mac-bug,playable,2024-02-13 07:04:11 +0100E29001298000,"Has-Been Heroes",,playable,2021-01-13 13:31:48 +01001CC00FA1A000,"Hatsune Miku: Project DIVA Mega Mix",audio;online-broken,playable,2024-01-07 23:12:57 +01009E6014F18000,"Haunted Dawn: The Zombie Apocalypse",,playable,2022-10-28 12:31:51 +010023F008204000,"Haunted Dungeons:Hyakki Castle",,playable,2020-08-12 14:21:48 +0100E2600DBAA000,"Haven",,playable,2021-03-24 11:52:41 +0100EA900FB2C000,"Hayfever",loader-allocator,playable,2022-09-22 17:35:41 +0100EFE00E1DC000,"Headliner: NoviNews",online,playable,2021-03-01 11:36:00 +0100A8200C372000,"Headsnatchers",UE4;crash,menus,2020-07-14 13:29:14 +010067400EA5C000,"Headspun",,playable,2020-07-31 19:46:47 +0100D12008EE4000,"Heart&Slash",,playable,2021-01-13 20:56:32 +010059100D928000,"Heaven Dust",,playable,2020-05-17 14:02:41 +0100FD901000C000,"Heaven's Vault",crash,ingame,2021-02-08 18:22:01 +0100B9C012B66000,"Helheim Hassle",,playable,2020-10-14 11:38:36 +0100E4300C278000,"Hell is Other Demons",,playable,2021-01-13 13:23:02 +01000938017E5C00,"Hell Pie0",nvdec;UE4,playable,2022-11-03 16:48:46 +0100A4600E27A000,"Hell Warders",online,playable,2021-02-27 02:31:03 +010044500CF8E000,"Hellblade: Senua's Sacrifice",gpu;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-01 19:36:50 +010087D0084A8000,"Hello Kitty Kruisers With Sanrio Friends",nvdec,playable,2021-06-04 19:08:46 +0100FAA00B168000,"Hello Neighbor",UE4,playable,2022-08-01 21:32:23 +010092B00C4F0000,"Hello Neighbor Hide and Seek",UE4;gpu;slow,ingame,2020-10-24 10:59:57 +010024600C794000,"Hellpoint",,menus,2021-11-26 13:24:20 +0100BEA00E63A000,"Hero Express",nvdec,playable,2020-08-06 13:23:43 +010077D01094C000,"Hero-U: Rogue to Redemption",nvdec,playable,2021-03-24 11:40:01 +0100D2B00BC54000,"Heroes of Hammerwatch - Ultimate Edition",,playable,2022-08-01 18:30:21 +01001B70080F0000,"HEROINE ANTHEM ZERO episode 1",vulkan-backend-bug,playable,2022-08-01 22:02:36 +010057300B0DC000,"Heroki",gpu,ingame,2023-07-30 19:30:01 +0100C2700E338000,"Heroland",,playable,2020-08-05 15:35:39 +01007AC00E012000,"HexaGravity",,playable,2021-05-28 13:47:48 +01004E800F03C000,"Hidden",slow,ingame,2022-10-05 10:56:53 +0100F6A00A684000,"Higurashi no Naku Koro ni Hō",audio,ingame,2021-09-18 14:40:28 +0100F8D0129F4000,"Himehibi 1 gakki - Princess Days",crash,nothing,2021-11-03 08:34:19 +0100F3D008436000,"Hiragana Pixel Party",,playable,2021-01-14 08:36:50 +01004990132AC000,"HITMAN 3 - Cloud Version",Needs Update;crash;services,nothing,2021-04-18 22:35:07 +010083A018262000,"Hitman: Blood Money — Reprisal",deadlock,ingame,2024-09-28 16:28:50 +01004B100A5CC000,"Hob: The Definitive Edition",,playable,2021-01-13 09:39:19 +0100F7300ED2C000,"Hoggy2",,playable,2022-10-10 13:53:35 +0100F7E00C70E000,"Hogwarts Legacy",slow,ingame,2024-09-03 19:53:58 +0100633007D48000,"Hollow Knight",nvdec,playable,2023-01-16 15:44:56 +0100F2100061E800,"Hollow0",UE4;gpu,ingame,2021-03-03 23:42:56 +0100342009E16000,"Holy Potatoes! What The Hell?!",,playable,2020-07-03 10:48:56 +010071B00C904000,"HoPiKo",,playable,2021-01-13 20:12:38 +010087800EE5A000,"Hopping girl KOHANE Jumping Kingdom: Princess of the Black Rabbit",crash,boots,2023-02-19 00:51:21 +010086D011EB8000,"Horace",,playable,2022-10-10 14:03:50 +0100001019F6E000,"Horizon Chase 2",deadlock;slow;crash;UE4,ingame,2024-08-19 04:24:06 +01009EA00B714000,"Horizon Chase Turbo",,playable,2021-02-19 19:40:56 +0100E4200FA82000,"Horror Pinball Bundle",crash,menus,2022-09-13 22:15:34 +0100017007980000,"Hotel Transylvania 3 Monsters Overboard",nvdec,playable,2021-01-27 18:55:31 +0100D0E00E51E000,"Hotline Miami Collection",nvdec,playable,2022-09-09 16:41:19 +0100BDE008218000,"Hotshot Racing",gpu;nvdec;online-broken;ldn-untested;vulkan-backend-bug,ingame,2024-02-04 21:31:17 +0100CAE00EB02000,"House Flipper",,playable,2021-06-16 18:28:32 +0100F6800910A000,"Hover",online-broken,playable,2022-09-20 12:54:46 +0100A66003384000,"Hulu",online-broken,boots,2022-12-09 10:05:00 +0100701001D92000,"Human Resource Machine",32-bit,playable,2020-12-17 21:47:09 +01000CA004DCA000,"Human: Fall Flat",,playable,2021-01-13 18:36:05 +0100E1A00AF40000,"Hungry Shark® World",,playable,2021-01-13 18:26:08 +0100EBA004726000,"Huntdown",,playable,2021-04-05 16:59:54 +010068000CAC0000,"Hunter's Legacy: Purrfect Edition",,playable,2022-08-02 10:33:31 +0100C460040EA000,"Hunting Simulator",UE4,playable,2022-08-02 10:54:08 +010061F010C3A000,"Hunting Simulator 2",UE4,playable,2022-10-10 14:25:51 +0100B3300B4AA000,"Hyper Jam",UE4;crash,boots,2020-12-15 22:52:11 +01003B200B372000,"Hyper Light Drifter - Special Edition",vulkan-backend-bug,playable,2023-01-13 15:44:48 +01006C500A29C000,"HyperBrawl Tournament",crash;services,boots,2020-12-04 23:03:27 +0100A8B00F0B4000,"HYPERCHARGE Unboxed",nvdec;online-broken;UE4;ldn-untested,playable,2022-09-27 21:52:39 +010061400ED90000,"HyperParasite",nvdec;UE4,playable,2022-09-27 22:05:44 +0100959010466000,"Hypnospace Outlaw",nvdec,ingame,2023-08-02 22:46:49 +01002B00111A2000,"Hyrule Warriors: Age of Calamity",gpu;deadlock;slow;crash;nvdec;amd-vendor-bug,ingame,2024-02-28 00:47:00 +0100A2C01320E000,"Hyrule Warriors: Age of Calamity - Demo Version",slow,playable,2022-10-10 17:37:41 +0100AE00096EA000,"Hyrule Warriors: Definitive Edition",services-horizon;nvdec,ingame,2024-06-16 10:34:05 +0100849000BDA000,"I Am Setsuna",,playable,2021-11-28 11:06:11 +01001860140B0000,"I Saw Black Clouds",nvdec,playable,2021-04-19 17:22:16 +0100429006A06000,"I, Zombie",,playable,2021-01-13 14:53:44 +01004E5007E92000,"Ice Age Scrat's Nutty Adventure!",nvdec,playable,2022-09-13 22:22:29 +010053700A25A000,"Ice Cream Surfer",,playable,2020-07-29 12:04:07 +0100954014718000,"Ice Station Z",crash,menus,2021-11-21 20:02:15 +0100BE9007E7E000,"ICEY",,playable,2021-01-14 16:16:04 +0100BC60099FE000,"Iconoclasts",,playable,2021-08-30 21:11:04 +01001E700EB28000,"Idle Champions of the Forgotten Realms",online,boots,2020-12-17 18:24:57 +01002EC014BCA000,"IdolDays",gpu;crash,ingame,2021-12-19 15:31:28 +01006550129C6000,"If Found...",,playable,2020-12-11 13:43:14 +01001AC00ED72000,"If My Heart Had Wings",,playable,2022-09-29 14:54:57 +01009F20086A0000,"Ikaruga",,playable,2023-04-06 15:00:02 +010040900AF46000,"Ikenfell",,playable,2021-06-16 17:18:44 +01007BC00E55A000,"Immortal Planet",,playable,2022-09-20 13:40:43 +010079501025C000,"Immortal Realms: Vampire Wars",nvdec,playable,2021-06-17 17:41:46 +01000F400435A000,"Immortal Redneck",nvdec,playable,2021-01-27 18:36:28 +01004A600EC0A000,"Immortals Fenyx Rising™",gpu;crash,menus,2023-02-24 16:19:55 +0100737003190000,"IMPLOSION",nvdec,playable,2021-12-12 03:52:13 +0100A760129A0000,"In rays of the Light",,playable,2021-04-07 15:18:07 +0100A2101107C000,"Indie Puzzle Bundle Vol 1",,playable,2022-09-27 22:23:21 +010002A00CD68000,"Indiecalypse",nvdec,playable,2020-06-11 20:19:09 +01001D3003FDE000,"Indivisible",nvdec,playable,2022-09-29 15:20:57 +01002BD00F626000,"Inertial Drift",online-broken,playable,2022-10-11 12:22:19 +0100D4300A4CA000,"Infernium",UE4;regression,nothing,2021-01-13 16:36:07 +010039C001296000,"Infinite Minigolf",online,playable,2020-09-29 12:26:25 +01001CB00EFD6000,"Infliction: Extended Cut",nvdec;UE4,playable,2022-10-02 13:15:55 +0100F1401161E000,"INMOST",,playable,2022-10-05 11:27:40 +0100F200049C8000,"InnerSpace",,playable,2021-01-13 19:36:14 +0100D2D009028000,"INSIDE",,playable,2021-12-25 20:24:56 +0100EC7012D34000,"Inside Grass: A little adventure",,playable,2020-10-15 15:26:27 +010099700D750000,"Instant Sports",,playable,2022-09-09 12:59:40 +010099A011A46000,"Instant Sports Summer Games",gpu,menus,2020-09-02 13:39:28 +010031B0145B8000,"INSTANT SPORTS TENNIS",,playable,2022-10-28 16:42:17 +010041501005E000,"Interrogation: You will be deceived",,playable,2022-10-05 11:40:10 +01000F700DECE000,"Into the Dead 2",nvdec,playable,2022-09-14 12:36:14 +01001D0003B96000,"INVERSUS Deluxe",online-broken,playable,2022-08-02 14:35:36 +0100C5B00FADE000,"Invisible Fist",,playable,2020-08-08 13:25:52 +010031B00C48C000,"Invisible, Inc. Nintendo Switch Edition",crash,nothing,2021-01-29 16:28:13 +01005F400E644000,"Invisigun Reloaded",gpu;online,ingame,2021-06-10 12:13:24 +010041C00D086000,"Ion Fury",vulkan-backend-bug,ingame,2022-08-07 08:27:51 +010095C016C14000,"Iridium",,playable,2022-08-05 23:19:53 +0100AD300B786000,"Iris School of Wizardry -Vinculum Hearts-",,playable,2022-12-05 13:11:15 +0100945012168000,"Iris.Fall",nvdec,playable,2022-10-18 13:40:22 +01005270118D6000,"Iron Wings",slow,ingame,2022-08-07 08:32:57 +01004DB003E6A000,"IRONCAST",,playable,2021-01-13 13:54:29 +0100E5700CD56000,"Irony Curtain: From Matryoshka with Love",,playable,2021-06-04 20:12:37 +010063E0104BE000,"Is It Wrong to Try to Pick Up Girls in a Dungeon? Familia Myth Infinite Combate",,playable,2020-08-31 13:52:21 +0100F06013710000,"ISLAND",,playable,2021-05-06 15:11:47 +010077900440A000,"Island Flight Simulator",,playable,2021-06-04 19:42:46 +0100A2600FCA0000,"Island Saver",nvdec,playable,2020-10-23 22:07:02 +010065200D192000,"Isoland",,playable,2020-07-26 13:48:16 +0100F5600D194000,"Isoland 2 - Ashes of Time",,playable,2020-07-26 14:29:05 +010001F0145A8000,"Isolomus",services,boots,2021-11-03 07:48:21 +010068700C70A000,"ITTA",,playable,2021-06-07 03:15:52 +01004070022F0000,"Ittle Dew 2+",,playable,2020-11-17 11:44:32 +0100DEB00F12A000,"IxSHE Tell",nvdec,playable,2022-12-02 18:00:42 +0100D8E00C874000,"izneo",online-broken,menus,2022-08-06 15:56:23 +0100CD5008D9E000,"James Pond Codename Robocod",,playable,2021-01-13 09:48:45 +01005F4010AF0000,"Japanese Rail Sim: Journey to Kyoto",nvdec,playable,2020-07-29 17:14:21 +010002D00EDD0000,"JDM Racing",,playable,2020-08-03 17:02:37 +0100C2700AEB8000,"Jenny LeClue - Detectivu",crash,nothing,2020-12-15 21:07:07 +01006E400AE2A000,"Jeopardy!®",audout;nvdec;online,playable,2021-02-22 13:53:46 +0100E4900D266000,"Jet Kave Adventure",nvdec,playable,2022-09-09 14:50:39 +0100F3500C70C000,"Jet Lancer",gpu,ingame,2021-02-15 18:15:47 +0100A5A00AF26000,"Jettomero: Hero of the Universe",,playable,2022-08-02 14:46:43 +01008330134DA000,"Jiffy",gpu;opengl,ingame,2024-02-03 23:11:24 +01001F5006DF6000,"Jim is Moving Out!",deadlock,ingame,2020-06-03 22:05:19 +0100F4D00D8BE000,"Jinrui no Ninasama he",crash,ingame,2023-03-07 02:04:17 +010038D011F08000,"Jisei: The First Case HD",audio,playable,2022-10-05 11:43:33 +01007CE00C960000,"Job the Leprechaun",,playable,2020-06-05 12:10:06 +01007090104EC000,"John Wick Hex",,playable,2022-08-07 08:29:12 +01006E4003832000,"Johnny Turbo's Arcade: Bad Dudes",,playable,2020-12-10 12:30:56 +010069B002CDE000,"Johnny Turbo's Arcade: Gate Of Doom",,playable,2022-07-29 12:17:50 +010080D002CC6000,"Johnny Turbo's Arcade: Two Crude Dudes",,playable,2022-08-02 20:29:50 +0100D230069CC000,"Johnny Turbo's Arcade: Wizard Fire",,playable,2022-08-02 20:39:15 +01008120128C2000,"JoJos Bizarre Adventure All-Star Battle R",,playable,2022-12-03 10:45:10 +01008B60117EC000,"Journey to the Savage Planet",nvdec;UE4;ldn-untested,playable,2022-10-02 18:48:12 +0100C7600F654000,"Juicy Realm",,playable,2023-02-21 19:16:20 +0100B4D00C76E000,"JUMANJI: The Video Game",UE4;crash,boots,2020-07-12 13:52:25 +0100183010F12000,"JUMP FORCE - Deluxe Edition",nvdec;online-broken;UE4,playable,2023-10-01 15:56:05 +01003D601014A000,"Jump King",,playable,2020-06-09 10:12:39 +0100B9C012706000,"Jump Rope Challenge",services;crash;Needs Update,boots,2023-02-27 01:24:28 +0100D87009954000,"Jumping Joe & Friends",,playable,2021-01-13 17:09:42 +010069800D2B4000,"JUNK PLANET",,playable,2020-11-09 12:38:33 +0100CE100A826000,"Jurassic Pinball",,playable,2021-06-04 19:02:37 +010050A011344000,"Jurassic World Evolution: Complete Edition",cpu;crash,menus,2023-08-04 18:06:54 +0100BCE000598000,"Just Dance 2017®",online,playable,2021-03-05 09:46:01 +0100BEE017FC0000,"Just Dance 2023",,nothing,2023-06-05 16:44:54 +010075600AE96000,"Just Dance® 2019",gpu;online,ingame,2021-02-27 17:21:27 +0100DDB00DB38000,"Just Dance® 2020",,playable,2022-01-24 13:31:57 +0100EA6014BB8000,"Just Dance® 2022",gpu;services;crash;Needs Update,ingame,2022-10-28 11:01:53 +0100AC600CF0A000,"Just Die Already",UE4,playable,2022-12-13 13:37:50 +01002C301033E000,"Just Glide",,playable,2020-08-07 17:38:10 +0100830008426000,"Just Shapes & Beats",ldn-untested;nvdec,playable,2021-02-09 12:18:36 +010035A0044E8000,"JYDGE",,playable,2022-08-02 21:20:13 +0100D58012FC2000,"Kagamihara/Justice",crash,nothing,2021-06-21 16:41:29 +0100D5F00EC52000,"Kairobotica",,playable,2021-05-06 12:17:56 +0100BDC00A664000,"KAMEN RIDER CLIMAX SCRAMBLE",nvdec;ldn-untested,playable,2024-07-03 08:51:11 +0100A9801180E000,"KAMEN RIDER memory of heroez / Premium Sound Edition",,playable,2022-12-06 03:14:26 +010085300314E000,"KAMIKO",,playable,2020-05-13 12:48:57 +,"Kangokuto Mary Skelter Finale",audio;crash,ingame,2021-01-09 22:39:28 +01007FD00DB20000,"Katakoi Contrast - collection of branch -",nvdec,playable,2022-12-09 09:41:26 +0100D7000C2C6000,"Katamari Damacy REROLL",,playable,2022-08-02 21:35:05 +0100F9800EDFA000,"KATANA KAMI: A Way of the Samurai Story",slow,playable,2022-04-09 10:40:16 +010029600D56A000,"Katana ZERO",,playable,2022-08-26 08:09:09 +010038B00F142000,"Kaze and the Wild Masks",,playable,2021-04-19 17:11:03 +0100D7C01115E000,"Keen: One Girl Army",,playable,2020-12-14 23:19:52 +01008D400A584000,"Keep Talking and Nobody Explodes",,playable,2021-02-15 18:05:21 +01004B100BDA2000,"KEMONO FRIENDS PICROSS",,playable,2023-02-08 15:54:34 +0100A8200B15C000,"Kentucky Robo Chicken",,playable,2020-05-12 20:54:17 +0100327005C94000,"Kentucky Route Zero: TV Edition",,playable,2024-04-09 23:22:46 +0100DA200A09A000,"Kero Blaster",,playable,2020-05-12 20:42:52 +0100F680116A2000,"Kholat",UE4;nvdec,playable,2021-06-17 11:52:48 +0100C0A004C2C000,"Kid Tripp",crash,nothing,2020-10-15 07:41:23 +0100FB400D832000,"KILL la KILL -IF",,playable,2020-06-09 14:47:08 +010011B00910C000,"Kill The Bad Guy",,playable,2020-05-12 22:16:10 +0100F2900B3E2000,"Killer Queen Black",ldn-untested;online,playable,2021-04-08 12:46:18 +,"Kin'iro no Corda Octave",,playable,2020-09-22 13:23:12 +010089000F0E8000,"Kine",UE4,playable,2022-09-14 14:28:37 +0100E6B00FFBA000,"King Lucas",,playable,2022-09-21 19:43:23 +0100B1300783E000,"King Oddball",,playable,2020-05-13 13:47:57 +01008D80148C8000,"King of Seas",nvdec;UE4,playable,2022-10-28 18:29:41 +0100515014A94000,"King of Seas Demo",nvdec;UE4,playable,2022-10-28 18:09:31 +01005D2011EA8000,"KINGDOM HEARTS Melody of Memory",crash;nvdec,ingame,2021-03-03 17:34:12 +0100A280121F6000,"Kingdom Rush",32-bit;crash;Needs More Attention,nothing,2022-10-05 12:34:00 +01005EF003FF2000,"Kingdom Two Crowns",,playable,2020-05-16 19:36:21 +0100BD9004AB6000,"Kingdom: New Lands",,playable,2022-08-02 21:48:50 +0100EF50132BE000,"Kingdoms of Amalur: Re-Reckoning",,playable,2023-08-10 13:05:08 +010091201605A000,"Kirby and the Forgotten Land (Demo version)",demo,playable,2022-08-21 21:03:01 +0100227010460000,"Kirby Fighters™ 2",ldn-works;online,playable,2021-06-17 13:06:39 +0100A8E016236000,"Kirby’s Dream Buffet™",crash;online-broken;Needs Update;ldn-works,ingame,2024-03-03 17:04:44 +010091D01A57E000,"Kirby’s Return to Dream Land Deluxe - Demo",demo,playable,2023-02-18 17:21:55 +01006B601380E000,"Kirby’s Return to Dream Land™ Deluxe",,playable,2024-05-16 19:58:04 +01004D300C5AE000,"Kirby™ and the Forgotten Land",gpu,ingame,2024-03-11 17:11:21 +01007E3006DDA000,"Kirby™ Star Allies",nvdec,playable,2023-11-15 17:06:19 +0100F3A00F4CA000,"Kissed by the Baddest Bidder",gpu;nvdec,ingame,2022-12-04 20:57:11 +01000C900A136000,"Kitten Squad",nvdec,playable,2022-08-03 12:01:59 +010079D00C8AE000,"Klondike Solitaire",,playable,2020-12-13 16:17:27 +0100A6800DE70000,"Knight Squad",,playable,2020-08-09 16:54:51 +010024B00E1D6000,"Knight Squad 2",nvdec;online-broken,playable,2022-10-28 18:38:09 +0100D51006AAC000,"Knight Terrors",,playable,2020-05-13 13:09:22 +01005F8010D98000,"Knightin'+",,playable,2020-08-31 18:18:21 +010004400B22A000,"Knights of Pen & Paper 2 Deluxiest Edition",,playable,2020-05-13 14:07:00 +0100D3F008746000,"Knights of Pen and Paper +1 Deluxier Edition",,playable,2020-05-11 21:46:32 +010001A00A1F6000,"Knock-Knock",nvdec,playable,2021-02-01 20:03:19 +01009EF00DDB4000,"Knockout City™",services;online-broken,boots,2022-12-09 09:48:58 +0100C57019BA2000,"Koa and the Five Pirates of Mara",gpu,ingame,2024-07-11 16:14:44 +01001E500401C000,"Koi DX",,playable,2020-05-11 21:37:51 +,"Koi no Hanasaku Hyakkaen",32-bit;gpu;nvdec,ingame,2020-10-03 14:17:10 +01005D200C9AA000,"Koloro",,playable,2022-08-03 12:34:02 +0100464009294000,"Kona",,playable,2022-08-03 12:48:19 +010016C011AAA000,"Kono Subarashii Sekai ni Shukufuku o Kono Yokubo no Isho ni Choai o",,playable,2023-04-26 09:51:08 +010088500D5EE000,"KORAL",UE4;crash;gpu,menus,2020-11-16 12:41:26 +0100EC8004762000,"KORG Gadget for Nintendo Switch",,playable,2020-05-13 13:57:24 +010046600CCA4000,"Kotodama: The 7 Mysteries of Fujisawa",audout,playable,2021-02-01 20:28:37 +010022801242C000,"KukkoroDays",crash,menus,2021-11-25 08:52:56 +010035A00DF62000,"KUNAI",nvdec,playable,2022-09-20 13:48:34 +010060400ADD2000,"Kunio-Kun: The World Classics Collection",online,playable,2021-01-29 20:21:46 +010037500F282000,"KUUKIYOMI 2: Consider It More! - New Era",crash;Needs Update,nothing,2021-11-02 09:34:40 +0100894011F62000,"Kwaidan ~Azuma manor story~",,playable,2022-10-05 12:50:44 +0100830004FB6000,"L.A. Noire",,playable,2022-08-03 16:49:35 +0100732009CAE000,"L.F.O. -Lost Future Omega-",UE4;deadlock,boots,2020-10-16 12:16:44 +0100F2B0123AE000,"L.O.L. Surprise! Remix: We Rule The World",,playable,2022-10-11 22:48:03 +010026000F662800,"LA-MULANA",gpu,ingame,2022-08-12 01:06:21 +0100E5D00F4AE000,"LA-MULANA 1 & 2",,playable,2022-09-22 17:56:36 +010038000F644000,"LA-MULANA 2",,playable,2022-09-03 13:45:57 +010058500B3E0000,"Labyrinth of Refrain: Coven of Dusk",,playable,2021-02-15 17:38:48 +010022D0089AE000,"Labyrinth of the Witch",,playable,2020-11-01 14:42:37 +0100BAB00E8C0000,"Langrisser I & II",,playable,2021-02-19 15:46:10 +0100E7200B272000,"Lanota",,playable,2019-09-04 01:58:14 +01005E000D3D8000,"Lapis x Labyrinth",,playable,2021-02-01 18:58:08 +0100AFE00E882000,"Laraan",,playable,2020-12-16 12:45:48 +0100DA700879C000,"Last Day of June",nvdec,playable,2021-06-08 11:35:32 +01009E100BDD6000,"LASTFIGHT",,playable,2022-09-20 13:54:55 +0100055007B86000,"Late Shift",nvdec,playable,2021-02-01 18:43:58 +01004EB00DACE000,"Later Daters Part One",,playable,2020-07-29 16:35:45 +01001730144DA000,"Layers of Fear 2",nvdec;UE4,playable,2022-10-28 18:49:52 +0100BF5006A7C000,"Layers of Fear: Legacy",nvdec,playable,2021-02-15 16:30:41 +0100CE500D226000,"Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy - Deluxe Edition",nvdec;opengl,playable,2022-09-14 15:01:57 +0100FDB00AA80000,"Layton's Mystery Journey: Katrielle and the Millionaires' Conspiracy DX+0",gpu;nvdec;opengl,ingame,2022-09-14 15:15:55 +01009C100390E000,"League of Evil",online,playable,2021-06-08 11:23:27 +01002E900CD6E000,"Left-Right : The Mansion",,playable,2020-05-13 13:02:12 +010079901C898000,"Legacy of Kain™ Soul Reaver 1&2 Remastered",,playable,2025-01-07 05:50:01 +01002DB007A96000,"Legend of Kay Anniversary",nvdec,playable,2021-01-29 18:38:29 +0100ECC00EF3C000,"Legend of the Skyfish",,playable,2020-06-24 13:04:22 +01007E900DFB6000,"Legend of the Tetrarchs",deadlock,ingame,2020-07-10 07:54:03 +0100A73006E74000,"Legendary Eleven",,playable,2021-06-08 12:09:03 +0100A7700B46C000,"Legendary Fishing",online,playable,2021-04-14 15:08:46 +0100739018020000,"LEGO® 2K Drive",gpu;ldn-works,ingame,2024-04-09 02:05:12 +01003A30012C0000,"LEGO® CITY Undercover",nvdec,playable,2024-09-30 08:44:27 +010070D009FEC000,"LEGO® DC Super-Villains",,playable,2021-05-27 18:10:37 +010052A00B5D2000,"LEGO® Harry Potter™ Collection",crash,ingame,2024-01-31 10:28:07 +010073C01AF34000,"LEGO® Horizon Adventures™",vulkan-backend-bug;opengl-backend-bug;UE4,ingame,2025-01-07 04:24:56 +01001C100E772000,"LEGO® Jurassic World",,playable,2021-05-27 17:00:20 +0100D3A00409E000,"LEGO® Marvel Super Heroes 2",crash,nothing,2023-03-02 17:12:33 +01006F600FFC8000,"LEGO® Marvel™ Super Heroes",,playable,2024-09-10 19:02:19 +01007FC00206E000,"LEGO® NINJAGO® Movie Video Game",crash,nothing,2022-08-22 19:12:53 +010042D00D900000,"LEGO® Star Wars™: The Skywalker Saga",gpu;slow,ingame,2024-04-13 20:08:46 +0100A01006E00000,"LEGO® The Incredibles",crash,nothing,2022-08-03 18:36:59 +0100838002AEA000,"LEGO® Worlds",crash;slow,ingame,2020-07-17 13:35:39 +0100E7500BF84000,"LEGRAND LEGACY: Tale of the Fatebounds",nvdec,playable,2020-07-26 12:27:36 +0100A8E00CAA0000,"Leisure Suit Larry - Wet Dreams Don't Dry",,playable,2022-08-03 19:51:44 +010031A0135CA000,"Leisure Suit Larry - Wet Dreams Dry Twice",,playable,2022-10-28 19:00:57 +01003AB00983C000,"Lethal League Blaze",online,playable,2021-01-29 20:13:31 +01008C300648E000,"Letter Quest Remastered",,playable,2020-05-11 21:30:34 +0100CE301678E800,"Letters - a written adventure",gpu,ingame,2023-02-21 20:12:38 +01009A200BE42000,"Levelhead",online,ingame,2020-10-18 11:44:51 +0100C960041DC000,"Levels+ : Addictive Puzzle Game",,playable,2020-05-12 13:51:39 +0100C8000F146000,"Liberated",gpu;nvdec,ingame,2024-07-04 04:58:24 +01003A90133A6000,"Liberated: Enhanced Edition",gpu;nvdec,ingame,2024-07-04 04:48:48 +01004360045C8000,"Lichtspeer: Double Speer Edition",,playable,2020-05-12 16:43:09 +010041F0128AE000,"Liege Dragon",,playable,2022-10-12 10:27:03 +010006300AFFE000,"Life Goes On",,playable,2021-01-29 19:01:20 +0100FD101186C000,"Life is Strange 2",UE4,playable,2024-07-04 05:05:58 +0100DC301186A000,"Life is Strange Remastered",UE4,playable,2022-10-03 16:54:44 +010008501186E000,"Life is Strange: Before the Storm Remastered",,playable,2023-09-28 17:15:44 +0100500012AB4000,"Life is Strange: True Colors™",gpu;UE4,ingame,2024-04-08 16:11:52 +01003AB012F00000,"Life of Boris: Super Slav",,ingame,2020-12-17 11:40:05 +0100B3A0135D6000,"Life of Fly",,playable,2021-01-25 23:41:07 +010069A01506E000,"Life of Fly 2",slow,playable,2022-10-28 19:26:52 +01005B6008132000,"Lifeless Planet: Premiere Edition",,playable,2022-08-03 21:25:13 +010030A006F6E000,"Light Fall",nvdec,playable,2021-01-18 14:55:36 +010087700D07C000,"Light Tracer",nvdec,playable,2021-05-05 19:15:43 +01009C8009026000,"LIMBO",cpu;32-bit,boots,2023-06-28 15:39:19 +0100EDE012B58000,"Linelight",,playable,2020-12-17 12:18:07 +0100FAD00E65E000,"Lines X",,playable,2020-05-11 15:28:30 +010032F01096C000,"Lines XL",,playable,2020-08-31 17:48:23 +0100943010310000,"Little Busters! Converted Edition",nvdec,playable,2022-09-29 15:34:56 +0100A3F009142000,"Little Dragons Café",,playable,2020-05-12 00:00:52 +010079A00D9E8000,"Little Friends: Dogs & Cats",,playable,2020-11-12 12:45:51 +0100B18001D8E000,"Little Inferno",32-bit;gpu;nvdec,ingame,2020-12-17 21:43:56 +0100E7000E826000,"Little Misfortune",nvdec,playable,2021-02-23 20:39:44 +0100FE0014200000,"Little Mouse's Encyclopedia",,playable,2022-10-28 19:38:58 +01002FC00412C000,"Little Nightmares Complete Edition",nvdec;UE4,playable,2022-08-03 21:45:35 +010097100EDD6000,"Little Nightmares II",UE4,playable,2023-02-10 18:24:44 +010093A0135D6000,"Little Nightmares II DEMO",UE4;demo;vulkan-backend-bug,playable,2024-05-16 18:47:20 +0100535014D76000,"Little Noah: Scion of Paradise",opengl-backend-bug,playable,2022-09-14 04:17:13 +0100E6D00E81C000,"Little Racer",,playable,2022-10-18 16:41:13 +0100DD700D95E000,"Little Shopping",,playable,2020-10-03 16:34:35 +01000FB00AA90000,"Little Town Hero",,playable,2020-10-15 23:28:48 +01000690085BE000,"Little Triangle",,playable,2020-06-17 14:46:26 +0100CF801776C000,"LIVE A LIVE",UE4;amd-vendor-bug,playable,2023-02-05 15:12:07 +0100BA000FC9C000,"LocO-SportS",,playable,2022-09-20 14:09:30 +010016C009374000,"Lode Runner Legacy",,playable,2021-01-10 14:10:28 +0100D2C013288000,"Lofi Ping Pong",crash,ingame,2020-12-15 20:09:22 +0100B6D016EE6000,"Lone Ruin",crash;nvdec,ingame,2023-01-17 06:41:19 +0100A0C00E0DE000,"Lonely Mountains: Downhill",online-broken,playable,2024-07-04 05:08:11 +010062A0178A8000,"LOOPERS",gpu;slow;crash,ingame,2022-06-17 19:21:45 +010064200F7D8000,"Lost Horizon",,playable,2020-09-01 13:41:22 +01005ED010642000,"Lost Horizon 2",nvdec,playable,2020-06-16 12:02:12 +01005FE01291A000,"Lost in Random™",gpu,ingame,2022-12-18 07:09:28 +0100133014510000,"Lost Lands 2: The Four Horsemen",nvdec,playable,2022-10-24 16:41:00 +0100156014C6A000,"Lost Lands 3: The Golden Curse",nvdec,playable,2022-10-24 16:30:00 +0100BDD010AC8000,"Lost Lands: Dark Overlord",,playable,2022-10-03 11:52:58 +010054600AC74000,"LOST ORBIT: Terminal Velocity",,playable,2021-06-14 12:21:12 +010046600B76A000,"Lost Phone Stories",services,ingame,2020-04-05 23:17:33 +01008AD013A86800,"Lost Ruins",gpu,ingame,2023-02-19 14:09:00 +010077B0038B2000,"LOST SPHEAR",,playable,2021-01-10 06:01:21 +0100018013124000,"Lost Words: Beyond the Page",,playable,2022-10-24 17:03:21 +0100D36011AD4000,"Love Letter from Thief X",gpu;nvdec,ingame,2023-11-14 03:55:31 +0100F0300B7BE000,"Ludomania",crash;services,nothing,2020-04-03 00:33:47 +010048701995E000,"Luigi's Mansion™ 2 HD",ldn-broken;amd-vendor-bug,ingame,2024-09-05 23:47:27 +0100DCA0064A6000,"Luigi’s Mansion™ 3",gpu;slow;Needs Update;ldn-works,ingame,2024-09-27 22:17:36 +010052B00B194000,"Lumini",,playable,2020-08-09 20:45:09 +0100FF00042EE000,"Lumo",nvdec,playable,2022-02-11 18:20:30 +0100F3100EB44000,"Lust for Darkness",nvdec,playable,2020-07-26 12:09:15 +0100F0B00F68E000,"Lust for Darkness: Dawn Edition",nvdec,playable,2021-06-16 13:47:46 +0100EC2011A80000,"Luxar",,playable,2021-03-04 21:11:57 +0100F2400D434000,"MachiKnights -Blood bagos-",nvdec;UE4,playable,2022-09-14 15:08:04 +010024A009428000,"Mad Carnage",,playable,2021-01-10 13:00:07 +01005E7013476000,"Mad Father",,playable,2020-11-12 13:22:10 +010061E00EB1E000,"Mad Games Tycoon",,playable,2022-09-20 14:23:14 +01004A200E722000,"Magazine Mogul",loader-allocator,playable,2022-10-03 12:05:34 +01008E500BF62000,"MagiCat",,playable,2020-12-11 15:22:07 +010032C011356000,"Magicolors",,playable,2020-08-12 18:39:11 +01008C300B624000,"Mahjong Solitaire Refresh",crash,boots,2022-12-09 12:02:55 +010099A0145E8000,"Mahluk dark demon",,playable,2021-04-15 13:14:24 +01001C100D80E000,"Mainlining",,playable,2020-06-05 01:02:00 +0100D9900F220000,"Maitetsu:Pure Station",,playable,2022-09-20 15:12:49 +0100A78017BD6000,"Makai Senki Disgaea 7",,playable,2023-10-05 00:22:18 +01005A700CC3C000,"Mana Spark",,playable,2020-12-10 13:41:01 +010093D00CB22000,"Maneater",nvdec;UE4,playable,2024-05-21 16:11:57 +0100361009B1A000,"Manifold Garden",,playable,2020-10-13 20:27:13 +0100C9A00952A000,"Manticore - Galaxy on Fire",crash;nvdec,boots,2024-02-04 04:37:24 +0100E98002F6E000,"Mantis Burn Racing",online-broken;ldn-broken,playable,2024-09-02 02:13:04 +01008E800D1FE000,"Marble Power Blast",,playable,2021-06-04 16:00:02 +01001B2012D5E000,"Märchen Forest",,playable,2021-02-04 21:33:34 +0100DA7017C9E000,"Marco & The Galaxy Dragon Demo",gpu;demo,ingame,2023-06-03 13:05:33 +01006D0017F7A000,"Mario & Luigi: Brothership",crash;slow;UE4;mac-bug,ingame,2025-01-07 04:00:00 +010002C00C270000,"MARIO & SONIC AT THE OLYMPIC GAMES TOKYO 2020",crash;online-broken;ldn-works,ingame,2024-08-23 16:12:55 +0100317013770000,"MARIO + RABBIDS SPARKS OF HOPE",gpu;Needs Update,ingame,2024-06-20 19:56:19 +010067300059A000,"Mario + Rabbids® Kingdom Battle",slow;opengl-backend-bug,playable,2024-05-06 10:16:54 +0100C9C00E25C000,"Mario Golf™: Super Rush",gpu,ingame,2024-08-18 21:31:48 +0100ED100BA3A000,"Mario Kart Live: Home Circuit™",services;crash;Needs More Attention,nothing,2022-12-07 22:36:52 +0100152000022000,"Mario Kart™ 8 Deluxe",32-bit;ldn-works;LAN;amd-vendor-bug,playable,2024-09-19 11:55:17 +01006FE013472000,"Mario Party™ Superstars",gpu;ldn-works;mac-bug,ingame,2024-05-16 11:23:34 +010019401051C000,"Mario Strikers™: Battle League",crash;nvdec,boots,2024-05-07 06:23:56 +0100BDE00862A000,"Mario Tennis™ Aces",gpu;nvdec;ldn-works;LAN,ingame,2024-09-28 15:54:40 +0100B99019412000,"Mario vs. Donkey Kong™",,playable,2024-05-04 21:22:39 +0100D9E01DBB0000,"Mario vs. Donkey Kong™ Demo",,playable,2024-02-18 10:40:06 +01009A700A538000,"Mark of the Ninja: Remastered",,playable,2022-08-04 15:48:30 +010044600FDF0000,"Marooners",nvdec;online-broken,playable,2022-10-18 21:35:26 +010060700AC50000,"MARVEL ULTIMATE ALLIANCE 3: The Black Order",nvdec;ldn-untested,playable,2024-02-14 19:51:51 +01003DE00C95E000,"Mary Skelter 2",crash;regression,ingame,2023-09-12 07:37:28 +0100113008262000,"Masquerada: Songs and Shadows",,playable,2022-09-20 15:18:54 +01004800197F0000,"Master Detective Archives: Rain Code",gpu,ingame,2024-04-19 20:11:09 +0100CC7009196000,"Masters of Anima",nvdec,playable,2022-08-04 16:00:09 +01004B100A1C4000,"MathLand",,playable,2020-09-01 15:40:06 +0100A8C011F26000,"Max and the book of chaos",,playable,2020-09-02 12:24:43 +01001C9007614000,"Max: The Curse of Brotherhood",nvdec,playable,2022-08-04 16:33:04 +0100E8B012FBC000,"Maze",,playable,2020-12-17 16:13:58 +0100EEF00CBC0000,"MEANDERS",UE4;gpu,ingame,2021-06-11 19:19:33 +0100EC000CE24000,"Mech Rage",,playable,2020-11-18 12:30:16 +0100C4F005EB4000,"Mecho Tales",,playable,2022-08-04 17:03:19 +0100E4600D31A000,"Mechstermination Force",,playable,2024-07-04 05:39:15 +,"Medarot Classics Plus Kabuto Ver",,playable,2020-11-21 11:31:18 +,"Medarot Classics Plus Kuwagata Ver",,playable,2020-11-21 11:30:40 +0100BBC00CB9A000,"Mega Mall Story",slow,playable,2022-08-04 17:10:58 +0100B0C0086B0000,"Mega Man 11",,playable,2021-04-26 12:07:53 +010038E016264000,"Mega Man Battle Network Legacy Collection Vol. 1",,playable,2023-04-25 03:55:57 +0100734016266000,"Mega Man Battle Network Legacy Collection Vol. 2",,playable,2023-08-03 18:04:32 +01002D4007AE0000,"Mega Man Legacy Collection",gpu,ingame,2021-06-03 18:17:17 +0100842008EC4000,"Mega Man Legacy Collection 2",,playable,2021-01-06 08:47:59 +01005C60086BE000,"Mega Man X Legacy Collection",audio;crash;services,menus,2020-12-04 04:30:17 +010025C00D410000,"Mega Man Zero/ZX Legacy Collection",,playable,2021-06-14 16:17:32 +0100FC700F942000,"Megabyte Punch",,playable,2020-10-16 14:07:18 +010006F011220000,"Megadimension Neptunia VII",32-bit;nvdec,playable,2020-12-17 20:56:03 +010082B00E8B8000,"Megaquarium",,playable,2022-09-14 16:50:00 +010005A00B312000,"Megaton Rainfall",gpu;opengl,boots,2022-08-04 18:29:43 +0100EA100DF92000,"Meiji Katsugeki Haikara Ryuuseigumi - Seibai Shimaseu, Yonaoshi Kagyou",32-bit;nvdec,playable,2022-12-05 13:19:12 +0100B360068B2000,"Mekorama",gpu,boots,2021-06-17 16:37:21 +01000FA010340000,"Melbits World",nvdec;online,menus,2021-11-26 13:51:22 +0100F68019636000,"Melon Journey",,playable,2023-04-23 21:20:01 +,"Memories Off -Innocent Fille- for Dearest",,playable,2020-08-04 07:31:22 +010062F011E7C000,"Memory Lane",UE4,playable,2022-10-05 14:31:03 +0100EBE00D5B0000,"Meow Motors",UE4;gpu,ingame,2020-12-18 00:24:01 +0100273008FBC000,"Mercenaries Saga Chronicles",,playable,2021-01-10 12:48:19 +010094500C216000,"Mercenaries Wings: The False Phoenix",crash;services,nothing,2020-05-08 22:42:12 +0100F900046C4000,"Mercenary Kings: Reloaded Edition",online,playable,2020-10-16 13:05:58 +0100E5000D3CA000,"Merchants of Kaidan",,playable,2021-04-15 11:44:28 +01009A500D4A8000,"METAGAL",,playable,2020-06-05 00:05:48 +010047F01AA10000,"METAL GEAR SOLID 3: Snake Eater - Master Collection Version",services-horizon,menus,2024-07-24 06:34:06 +0100E8F00F6BE000,"METAL MAX Xeno Reborn",,playable,2022-12-05 15:33:53 +01002DE00E5D0000,"Metaloid: Origin",,playable,2020-06-04 20:26:35 +010055200E87E000,"Metamorphosis",UE4;audout;gpu;nvdec,ingame,2021-06-16 16:18:11 +0100D4900E82C000,"Metro 2033 Redux",gpu,ingame,2022-11-09 10:53:13 +0100F0400E850000,"Metro: Last Light Redux",slow;nvdec;vulkan-backend-bug,ingame,2023-11-01 11:53:52 +010012101468C000,"Metroid Prime™ Remastered",gpu;Needs Update;vulkan-backend-bug;opengl-backend-bug,ingame,2024-05-07 22:48:15 +010093801237C000,"Metroid™ Dread",,playable,2023-11-13 04:02:36 +0100A1200F20C000,"Midnight Evil",,playable,2022-10-18 22:55:19 +0100C1E0135E0000,"Mighty Fight Federation",online,playable,2021-04-06 18:39:56 +0100AD701344C000,"Mighty Goose",nvdec,playable,2022-10-28 20:25:38 +01000E2003FA0000,"MIGHTY GUNVOLT BURST",,playable,2020-10-19 16:05:49 +010060D00AE36000,"Mighty Switch Force! Collection",,playable,2022-10-28 20:40:32 +01003DA010E8A000,"Miitopia™",gpu;services-horizon,ingame,2024-09-06 10:39:13 +01007DA0140E8000,"Miitopia™ Demo",services;crash;demo,menus,2023-02-24 11:50:58 +01004B7009F00000,"Miles & Kilo",,playable,2020-10-22 11:39:49 +0100976008FBE000,"Millie",,playable,2021-01-26 20:47:19 +0100F5700C9A8000,"MIND: Path to Thalamus",UE4,playable,2021-06-16 17:37:25 +0100D71004694000,"Minecraft",crash;ldn-broken,ingame,2024-09-29 12:08:59 +01006C100EC08000,"Minecraft Dungeons",nvdec;online-broken;UE4,playable,2024-06-26 22:10:43 +01007C6012CC8000,"Minecraft Legends",gpu;crash,ingame,2024-03-04 00:32:24 +01006BD001E06000,"Minecraft: Nintendo Switch Edition",ldn-broken,playable,2023-10-15 01:47:08 +01003EF007ABA000,"Minecraft: Story Mode - Season Two",online-broken,playable,2023-03-04 00:30:50 +010059C002AC2000,"Minecraft: Story Mode - The Complete Adventure",crash;online-broken,boots,2022-08-04 18:56:58 +0100B7500F756000,"Minefield",,playable,2022-10-05 15:03:29 +01003560119A6000,"Mini Motor Racing X",,playable,2021-04-13 17:54:49 +0100FB700DE1A000,"Mini Trains",,playable,2020-07-29 23:06:20 +010039200EC66000,"Miniature - The Story Puzzle",UE4,playable,2022-09-14 17:18:50 +010069200EB80000,"Ministry of Broadcast",,playable,2022-08-10 00:31:16 +0100C3F000BD8000,"Minna de Wai Wai! Spelunker",crash,nothing,2021-11-03 07:17:11 +0100FAE010864000,"Minoria",,playable,2022-08-06 18:50:50 +01005AB015994000,"Miss Kobayashi's Dragonmaid Burst Forth!! Choro-gon☆Breath",gpu,playable,2022-03-28 02:22:24 +0100CFA0138C8000,"Missile Dancer",,playable,2021-01-31 12:22:03 +0100E3601495C000,"Missing Features: 2D",,playable,2022-10-28 20:52:54 +010059200CC40000,"Mist Hunter",,playable,2021-06-16 13:58:58 +0100F65011E52000,"Mittelborg: City of Mages",,playable,2020-08-12 19:58:06 +0100876015D74000,"MLB® The Show™ 22",gpu;slow,ingame,2023-04-25 06:28:43 +0100A9F01776A000,"MLB® The Show™ 22 Tech Test",services;crash;Needs Update;demo,nothing,2022-12-09 10:28:34 +0100913019170000,"MLB® The Show™ 23",gpu,ingame,2024-07-26 00:56:50 +0100E2E01C32E000,"MLB® The Show™ 24",services-horizon,nothing,2024-03-31 04:54:11 +010011300F74C000,"MO:Astray",crash,ingame,2020-12-11 21:45:44 +010020400BDD2000,"Moai VI: Unexpected Guests",slow,playable,2020-10-27 16:40:20 +0100D8700B712000,"Modern Combat Blackout",crash,nothing,2021-03-29 19:47:15 +010004900D772000,"Modern Tales: Age of Invention",slow,playable,2022-10-12 11:20:19 +0100B8500D570000,"Moero Chronicle™ Hyper",32-bit,playable,2022-08-11 07:21:56 +01004EB0119AC000,"Moero Crystal H",32-bit;nvdec;vulkan-backend-bug,playable,2023-07-05 12:04:22 +0100B46017500000,"MOFUMOFUSENSEN",gpu,menus,2024-09-21 21:51:08 +01004A400C320000,"Momodora: Reverie Under the Moonlight",deadlock,nothing,2022-02-06 03:47:43 +01002CC00BC4C000,"Momonga Pinball Adventures",,playable,2022-09-20 16:00:40 +010093100DA04000,"Momotaro Dentetsu Showa, Heisei, Reiwa mo Teiban!",gpu,ingame,2023-09-22 10:21:46 +0100FBD00ED24000,"MONKEY BARRELS",,playable,2022-09-14 17:28:52 +01004C500B8E0000,"Monkey King: Master of the Clouds",,playable,2020-09-28 22:35:48 +01003030161DC000,"Monomals",gpu,ingame,2024-08-06 22:02:51 +0100F3A00FB78000,"Mononoke Slashdown",crash,menus,2022-05-04 20:55:47 +01007430037F6000,"MONOPOLY® for Nintendo Switch™",nvdec;online-broken,playable,2024-02-06 23:13:01 +01005FF013DC2000,"MONOPOLY® Madness",,playable,2022-01-29 21:13:52 +0100E2D0128E6000,"Monster Blast",gpu,ingame,2023-09-02 20:02:32 +01006F7001D10000,"Monster Boy and the Cursed Kingdom",nvdec,playable,2022-08-04 20:06:32 +01005FC01000E000,"Monster Bugs Eat People",,playable,2020-07-26 02:05:34 +0100742007266000,"Monster Energy Supercross - The Official Videogame",nvdec;UE4,playable,2022-08-04 20:25:00 +0100F8100B982000,"Monster Energy Supercross - The Official Videogame 2",nvdec;UE4;ldn-untested,playable,2022-08-04 21:21:24 +010097800EA20000,"Monster Energy Supercross - The Official Videogame 3",UE4;audout;nvdec;online,playable,2021-06-14 12:37:54 +0100E9900ED74000,"Monster Farm",32-bit;nvdec,playable,2021-05-05 19:29:13 +0100770008DD8000,"Monster Hunter Generations Ultimate™",32-bit;online-broken;ldn-works,playable,2024-03-18 14:35:36 +0100B04011742000,"Monster Hunter Rise",gpu;slow;crash;nvdec;online-broken;Needs Update;ldn-works,ingame,2024-08-24 11:04:59 +010093A01305C000,"Monster Hunter Rise Demo",online-broken;ldn-works;demo,playable,2022-10-18 23:04:17 +0100E21011446000,"Monster Hunter Stories 2: Wings of Ruin",services,ingame,2022-07-10 19:27:30 +010042501329E000,"MONSTER HUNTER STORIES 2: WINGS OF RUIN Trial Version",demo,playable,2022-11-13 22:20:26 +,"Monster Hunter XX Demo",32-bit;cpu,nothing,2020-03-22 10:12:28 +0100C3800049C000,"Monster Hunter XX Nintendo Switch Ver ( Double Cross )",,playable,2024-07-21 14:08:09 +010088400366E000,"Monster Jam Crush It!",UE4;nvdec;online,playable,2021-04-08 19:29:27 +010095C00F354000,"Monster Jam Steel Titans",crash;nvdec;UE4,menus,2021-11-14 09:45:38 +010051B0131F0000,"Monster Jam Steel Titans 2",nvdec;UE4,playable,2022-10-24 17:17:59 +01004DE00DD44000,"Monster Puzzle",,playable,2020-09-28 22:23:10 +0100A0F00DA68000,"Monster Sanctuary",crash,ingame,2021-04-04 05:06:41 +0100D30010C42000,"Monster Truck Championship",slow;nvdec;online-broken;UE4,playable,2022-10-18 23:16:51 +01004E10142FE000,"Monster wo taoshite tsuyoi ken ya yoroi wo te ni shinasai. Shinde mo akiramezu ni tsuyoku nari nasai. Yuushatai ga maoh wo taosu sono hi wo shinzite imasu. - モンスターを倒して強い剣や鎧を手にしなさい。死んでも諦めずに強くなりなさい。勇者隊が魔王を倒すその日を信じています。",crash,ingame,2021-07-23 10:56:44 +010039F00EF70000,"Monstrum",,playable,2021-01-31 11:07:26 +0100C2E00B494000,"Moonfall Ultimate",nvdec,playable,2021-01-17 14:01:25 +0100E3D014ABC000,"Moorhuhn Jump and Run 'Traps and Treasures'",,playable,2024-03-08 15:10:02 +010045C00F274000,"Moorhuhn Kart 2",online-broken,playable,2022-10-28 21:10:35 +010040E00F642000,"Morbid: The Seven Acolytes",,playable,2022-08-09 17:21:58 +01004230123E0000,"More Dark",,playable,2020-12-15 16:01:06 +01005DA003E6E000,"Morphies Law",UE4;crash;ldn-untested;nvdec;online,menus,2020-11-22 17:05:29 +0100776003F0C000,"Morphite",,playable,2021-01-05 19:40:55 +0100F2200C984000,"Mortal Kombat 11",slow;nvdec;online-broken;ldn-broken,ingame,2024-06-19 02:22:17 +01006560184E6000,"Mortal Kombat™ 1",gpu,ingame,2024-09-04 15:45:47 +010032800D740000,"Mosaic",,playable,2020-08-11 13:07:35 +01002ED00B01C000,"Moto Racer 4",UE4;nvdec;online,playable,2021-04-08 19:09:11 +01003F200D0F2000,"Moto Rush GT",,playable,2022-08-05 11:23:55 +0100361007268000,"MotoGP™18",nvdec;UE4;ldn-untested,playable,2022-08-05 11:41:45 +01004B800D0E8000,"MotoGP™19",nvdec;online-broken;UE4,playable,2022-08-05 11:54:14 +01001FA00FBBC000,"MotoGP™20",ldn-untested,playable,2022-09-29 17:58:01 +01000F5013820000,"MotoGP™21",gpu;nvdec;online-broken;UE4;ldn-untested,ingame,2022-10-28 21:35:08 +010040401D564000,"MotoGP™24",gpu,ingame,2024-05-10 23:41:00 +01002A900D6D6000,"Motorsport Manager for Nintendo Switch™",nvdec,playable,2022-08-05 12:48:14 +01009DB00D6E0000,"Mountain Rescue Simulator",,playable,2022-09-20 16:36:48 +0100C4C00E73E000,"Moving Out",nvdec,playable,2021-06-07 21:17:24 +0100D3300F110000,"Mr Blaster",,playable,2022-09-14 17:56:24 +0100DCA011262000,"Mr. DRILLER DrillLand",nvdec,playable,2020-07-24 13:56:48 +010031F002B66000,"Mr. Shifty",slow,playable,2020-05-08 15:28:16 +01005EF00B4BC000,"Ms. Splosion Man",online,playable,2020-05-09 20:45:43 +010087C009246000,"Muddledash",services,ingame,2020-05-08 16:46:14 +01009D200952E000,"MudRunner - American Wilds",gpu;ldn-untested;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-16 11:40:52 +010073E008E6E000,"Mugsters",,playable,2021-01-28 17:57:17 +0100A8400471A000,"MUJO",,playable,2020-05-08 16:31:04 +0100211005E94000,"Mulaka",,playable,2021-01-28 18:07:20 +010038B00B9AE000,"Mummy Pinball",,playable,2022-08-05 16:08:11 +01008E200C5C2000,"Muse Dash",,playable,2020-06-06 14:41:29 +010035901046C000,"Mushroom Quest",,playable,2020-05-17 13:07:08 +0100700006EF6000,"Mushroom Wars 2",nvdec,playable,2020-09-28 15:26:08 +010046400F310000,"Music Racer",,playable,2020-08-10 08:51:23 +,"Musou Orochi 2 Ultimate",crash;nvdec,boots,2021-04-09 19:39:16 +0100F6000EAA8000,"Must Dash Amigos",,playable,2022-09-20 16:45:56 +01007B6006092000,"MUSYNX",,playable,2020-05-08 14:24:43 +0100C3E00ACAA000,"Mutant Football League: Dynasty Edition",online-broken,playable,2022-08-05 17:01:51 +01004BE004A86000,"Mutant Mudds Collection",,playable,2022-08-05 17:11:38 +0100E6B00DEA4000,"Mutant Year Zero: Road to Eden - Deluxe Edition",nvdec;UE4,playable,2022-09-10 13:31:10 +0100161009E5C000,"MX Nitro: Unleashed",,playable,2022-09-27 22:34:33 +0100218011E7E000,"MX vs ATV All Out",nvdec;UE4;vulkan-backend-bug,playable,2022-10-25 19:51:46 +0100D940063A0000,"MXGP3 - The Official Motocross Videogame",UE4;gpu;nvdec,ingame,2020-12-16 14:00:20 +01002C6012334000,"My Aunt is a Witch",,playable,2022-10-19 09:21:17 +0100F6F0118B8000,"My Butler",,playable,2020-06-27 13:46:23 +010031200B94C000,"My Friend Pedro",nvdec,playable,2021-05-28 11:19:17 +01000D700BE88000,"My Girlfriend is a Mermaid!?",nvdec,playable,2020-05-08 13:32:55 +010039000B68E000,"MY HERO ONE'S JUSTICE",UE4;crash;gpu;online,menus,2020-12-10 13:11:04 +01007E700DBF6000,"MY HERO ONE'S JUSTICE 2",UE4;gpu;nvdec,ingame,2020-12-18 14:08:47 +0100E4701373E000,"My Hidden Things",,playable,2021-04-15 11:26:06 +0100872012B34000,"My Little Dog Adventure",gpu,ingame,2020-12-10 17:47:37 +01008C600395A000,"My Little Riding Champion",slow,playable,2020-05-08 17:00:53 +010086B00C784000,"My Lovely Daughter: ReBorn",,playable,2022-11-24 17:25:32 +0100E7700C284000,"My Memory of Us",,playable,2022-08-20 11:03:14 +010028F00ABAE000,"My Riding Stables - Life with Horses",,playable,2022-08-05 21:39:07 +010042A00FBF0000,"My Riding Stables 2: A New Adventure",,playable,2021-05-16 14:14:59 +0100E25008E68000,"My Time at Portia",,playable,2021-05-28 12:42:55 +0100158011A08000,"My Universe - Cooking Star Restaurant",,playable,2022-10-19 10:00:44 +0100F71011A0A000,"My Universe - Fashion Boutique",nvdec,playable,2022-10-12 14:54:19 +0100CD5011A02000,"My Universe - PET CLINIC CATS & DOGS",crash;nvdec,boots,2022-02-06 02:05:53 +01006C301199C000,"My Universe - School Teacher",nvdec,playable,2021-01-21 16:02:52 +01000D5005974000,"N++ (NPLUSPLUS)",,playable,2022-08-05 21:54:58 +0100A6F00AC70000,"NAIRI: Tower of Shirin",nvdec,playable,2020-08-09 19:49:12 +010002F001220000,"NAMCO MUSEUM",ldn-untested,playable,2024-08-13 07:52:21 +0100DAA00AEE6000,"NAMCO MUSEUM™ ARCADE PAC™",,playable,2021-06-07 21:44:50 +,"NAMCOT COLLECTION",audio,playable,2020-06-25 13:35:22 +010072B00BDDE000,"Narcos: Rise of the Cartels",UE4;crash;nvdec,boots,2021-03-22 13:18:47 +01006BB00800A000,"NARUTO SHIPPUDEN: Ultimate Ninja STORM 3 Full Burst",nvdec,playable,2024-06-16 14:58:05 +010084D00CF5E000,"NARUTO SHIPPUDEN™: Ultimate Ninja® STORM 4 ROAD TO BORUTO",,playable,2024-06-29 13:04:22 +0100D2D0190A4000,"NARUTO X BORUTO Ultimate Ninja STORM CONNECTIONS",services-horizon,nothing,2024-07-25 05:16:48 +0100715007354000,"NARUTO: Ultimate Ninja STORM",nvdec,playable,2022-08-06 14:10:31 +0100545016D5E000,"NASCAR Rivals",crash;Incomplete,ingame,2023-04-21 01:17:47 +0100103011894000,"Naught",UE4,playable,2021-04-26 13:31:45 +01001AE00C1B2000,"NBA 2K Playgrounds 2",nvdec;online-broken;UE4;vulkan-backend-bug,playable,2022-08-06 14:40:38 +0100760002048000,"NBA 2K18",gpu;ldn-untested,ingame,2022-08-06 14:17:51 +01001FF00B544000,"NBA 2K19",crash;ldn-untested;services,nothing,2021-04-16 13:07:21 +0100E24011D1E000,"NBA 2K21",gpu,boots,2022-10-05 15:31:51 +0100ACA017E4E800,"NBA 2K23",,boots,2023-10-10 23:07:14 +010006501A8D8000,"NBA 2K24 Kobe Bryant Edition",cpu;gpu,boots,2024-08-11 18:23:08 +010002900294A000,"NBA Playgrounds",nvdec;online-broken;UE4,playable,2022-08-06 17:06:59 +0100F5A008126000,"NBA Playgrounds - Enhanced Edition",nvdec;online-broken;UE4,playable,2022-08-06 16:13:44 +0100BBC00E4F8000,"Need a packet?",,playable,2020-08-12 16:09:01 +010029B0118E8000,"Need for Speed™ Hot Pursuit Remastered",online-broken,playable,2024-03-20 21:58:02 +010023500B0BA000,"Nefarious",,playable,2020-12-17 03:20:33 +01008390136FC000,"Negative: The Way of Shinobi",nvdec,playable,2021-03-24 11:29:41 +010065F00F55A000,"Neighbours back From Hell",nvdec,playable,2022-10-12 15:36:48 +0100B4900AD3E000,"NEKOPARA Vol.1",nvdec,playable,2022-08-06 18:25:54 +010012900C782000,"NEKOPARA Vol.2",,playable,2020-12-16 11:04:47 +010045000E418000,"NEKOPARA Vol.3",,playable,2022-10-03 12:49:04 +010049F013656000,"NEKOPARA Vol.4",crash,ingame,2021-01-17 01:47:18 +01006ED00BC76000,"Nelke & the Legendary Alchemists ~Ateliers of the New World~",,playable,2021-01-28 19:39:42 +01005F000B784000,"Nelly Cootalot: The Fowl Fleet",,playable,2020-06-11 20:55:42 +01001AB0141A8000,"Neo : The World Ends with You (DEMO)- 新すばらしきこのせかい (体験版)",crash,ingame,2021-07-18 07:29:18 +0100EBB00D2F4000,"Neo Cab",,playable,2021-04-24 00:27:58 +010040000DB98000,"Neo Cab Demo",crash,boots,2020-06-16 00:14:00 +010006D0128B4000,"NEOGEO POCKET COLOR SELECTION Vol.1",,playable,2023-07-08 20:55:36 +0100BAB01113A000,"Neon Abyss",,playable,2022-10-05 15:59:44 +010075E0047F8000,"Neon Chrome",,playable,2022-08-06 18:38:34 +010032000EAC6000,"Neon Drive",,playable,2022-09-10 13:45:48 +0100B9201406A000,"Neon White",crash,ingame,2023-02-02 22:25:06 +0100743008694000,"Neonwall",nvdec,playable,2022-08-06 18:49:52 +01001A201331E000,"Neoverse Trinity Edition",,playable,2022-10-19 10:28:03 +01000B2011352000,"Nerdook Bundle Vol. 1",gpu;slow,ingame,2020-10-07 14:27:10 +01008B0010160000,"Nerved",UE4,playable,2022-09-20 17:14:03 +0100BA0004F38000,"NeuroVoider",,playable,2020-06-04 18:20:05 +0100C20012A54000,"Nevaeh",gpu;nvdec,ingame,2021-06-16 17:29:03 +010039801093A000,"Never Breakup",,playable,2022-10-05 16:12:12 +0100F79012600000,"Neverending Nightmares",crash;gpu,boots,2021-04-24 01:43:35 +0100A9600EDF8000,"Neverlast",slow,ingame,2020-07-13 23:55:19 +010013700DA4A000,"Neverwinter Nights: Enhanced Edition",gpu;nvdec,menus,2024-09-30 02:59:19 +01004C200100E000,"New Frontier Days ~Founding Pioneers~",,playable,2020-12-10 12:45:07 +0100F4300BF2C000,"New Pokémon Snap™",,playable,2023-01-15 23:26:57 +010017700B6C2000,"New Super Lucky's Tale",,playable,2024-03-11 14:14:10 +0100EA80032EA000,"New Super Mario Bros.™ U Deluxe",32-bit,playable,2023-10-08 02:06:37 +0100B9500E886000,"Newt One",,playable,2020-10-17 21:21:48 +01005A5011A44000,"Nexomon: Extinction",,playable,2020-11-30 15:02:22 +0100B69012EC6000,"Nexoria: Dungeon Rogue Heroes",gpu,ingame,2021-10-04 18:41:29 +0100271004570000,"Next Up Hero",online,playable,2021-01-04 22:39:36 +0100E5600D446000,"Ni no Kuni: Wrath of the White Witch",32-bit;nvdec,boots,2024-07-12 04:52:59 +0100EDD00D530000,"Nice Slice",nvdec,playable,2020-06-17 15:13:27 +01000EC010BF4000,"Niche - a genetics survival game",nvdec,playable,2020-11-27 14:01:11 +010010701AFB2000,"Nickelodeon All-Star Brawl 2",,playable,2024-06-03 14:15:01 +0100D6200933C000,"Nickelodeon Kart Racers",,playable,2021-01-07 12:16:49 +010058800F860000,"Nicky - The Home Alone Golf Ball",,playable,2020-08-08 13:45:39 +0100A95012668000,"Nicole",audout,playable,2022-10-05 16:41:44 +0100B8E016F76000,"NieR:Automata The End of YoRHa Edition",slow;crash,ingame,2024-05-17 01:06:34 +0100F3A0095A6000,"Night Call",nvdec,playable,2022-10-03 12:57:00 +0100921006A04000,"Night in the Woods",,playable,2022-12-03 20:17:54 +0100D8500A692000,"Night Trap - 25th Anniversary Edition",nvdec,playable,2022-08-08 13:16:14 +01005F4009112000,"Nightmare Boy: The New Horizons of Reigns of Dreams, a Metroidvania journey with little rusty nightmares, the empire of knight final boss",,playable,2021-01-05 15:52:29 +01006E700B702000,"Nightmares from the Deep 2: The Siren`s Call",nvdec,playable,2022-10-19 10:58:53 +0100628004BCE000,"Nights of Azure 2: Bride of the New Moon",crash;nvdec;regression,menus,2022-11-24 16:00:39 +010042300C4F6000,"Nightshade/百花百狼",nvdec,playable,2020-05-10 19:43:31 +0100AA0008736000,"Nihilumbra",,playable,2020-05-10 16:00:12 +0100D03003F0E000,"Nine Parchments",ldn-untested,playable,2022-08-07 12:32:08 +0100E2F014F46000,"NINJA GAIDEN Σ",nvdec,playable,2022-11-13 16:27:02 +0100696014F4A000,"NINJA GAIDEN Σ2",nvdec,playable,2024-07-31 21:53:48 +01002AF014F4C000,"NINJA GAIDEN: Master Collection",nvdec,playable,2023-08-11 08:25:31 +010088E003A76000,"Ninja Shodown",,playable,2020-05-11 12:31:21 +010081D00A480000,"Ninja Striker!",,playable,2020-12-08 19:33:29 +0100CCD0073EA000,"Ninjala",online-broken;UE4,boots,2024-07-03 20:04:49 +010003C00B868000,"Ninjin: Clash of Carrots",online-broken,playable,2024-07-10 05:12:26 +0100746010E4C000,"NinNinDays",,playable,2022-11-20 15:17:29 +0100C9A00ECE6000,"Nintendo 64™ – Nintendo Switch Online",gpu;vulkan,ingame,2024-04-23 20:21:07 +0100D870045B6000,"Nintendo Entertainment System™ - Nintendo Switch Online",online,playable,2022-07-01 15:45:06 +0100C4B0034B2000,"Nintendo Labo Toy-Con 01 Variety Kit",gpu,ingame,2022-08-07 12:56:07 +01001E9003502000,"Nintendo Labo Toy-Con 03 Vehicle Kit",services;crash,menus,2022-08-03 17:20:11 +0100165003504000,"Nintendo Labo Toy-Con 04 VR Kit",services;crash,boots,2023-01-17 22:30:24 +01009AB0034E0000,"Nintendo Labo™ Toy-Con 02: Robot Kit",gpu,ingame,2022-08-07 13:03:19 +0100D2F00D5C0000,"Nintendo Switch™ Sports",deadlock,boots,2024-09-10 14:20:24 +01000EE017182000,"Nintendo Switch™ Sports Online Play Test",gpu,ingame,2022-03-16 07:44:12 +010037200C72A000,"Nippon Marathon",nvdec,playable,2021-01-28 20:32:46 +010020901088A000,"Nirvana Pilot Yume",,playable,2022-10-29 11:49:49 +01009B400ACBA000,"No Heroes Here",online,playable,2020-05-10 02:41:57 +0100853015E86000,"No Man's Sky",gpu,ingame,2024-07-25 05:18:17 +0100F0400F202000,"No More Heroes",32-bit,playable,2022-09-13 07:44:27 +010071400F204000,"No More Heroes 2: Desperate Struggle",32-bit;nvdec,playable,2022-11-19 01:38:13 +01007C600EB42000,"No More Heroes 3",gpu;UE4,ingame,2024-03-11 17:06:19 +01009F3011004000,"No Straight Roads",nvdec,playable,2022-10-05 17:01:38 +0100F7D00A1BC000,"NO THING",,playable,2021-01-04 19:06:01 +0100542012884000,"Nongunz: Doppelganger Edition",,playable,2022-10-29 12:00:39 +010016E011EFA000,"Norman's Great Illusion",,playable,2020-12-15 19:28:24 +01001A500AD6A000,"Norn9 ~Norn + Nonette~ LOFN",nvdec;vulkan-backend-bug,playable,2022-12-09 09:29:16 +01004840086FE000,"NORTH",nvdec,playable,2021-01-05 16:17:44 +0100A9E00D97A000,"Northgard",crash,menus,2022-02-06 02:05:35 +01008AE019614000,"nOS new Operating System",,playable,2023-03-22 16:49:08 +0100CB800B07E000,"NOT A HERO: SUPER SNAZZY EDITION",,playable,2021-01-28 19:31:24 +01004D500D9BE000,"Not Not - A Brain Buster",,playable,2020-05-10 02:05:26 +0100DAF00D0E2000,"Not Tonight: Take Back Control Edition",nvdec,playable,2022-10-19 11:48:47 +0100343013248000,"Nubarron: The adventure of an unlucky gnome",,playable,2020-12-17 16:45:17 +01005140089F6000,"Nuclien",,playable,2020-05-10 05:32:55 +010002700C34C000,"Numbala",,playable,2020-05-11 12:01:07 +010020500C8C8000,"Number Place 10000",gpu,menus,2021-11-24 09:14:23 +010003701002C000,"Nurse Love Syndrome",,playable,2022-10-13 10:05:22 +0000000000000000,"nx-hbmenu",Needs Update;homebrew,boots,2024-04-06 22:05:32 +,"nxquake2",services;crash;homebrew,nothing,2022-08-04 23:14:04 +010049F00EC30000,"Nyan Cat: Lost in Space",online,playable,2021-06-12 13:22:03 +01002E6014FC4000,"O---O",,playable,2022-10-29 12:12:14 +010074600CC7A000,"OBAKEIDORO!",nvdec;online,playable,2020-10-16 16:57:34 +01002A000C478000,"Observer",UE4;gpu;nvdec,ingame,2021-03-03 20:19:45 +01007D7001D0E000,"Oceanhorn - Monster of Uncharted Seas",,playable,2021-01-05 13:55:22 +01006CB010840000,"Oceanhorn 2: Knights of the Lost Realm",,playable,2021-05-21 18:26:10 +010096B00A08E000,"Octocopter: Double or Squids",,playable,2021-01-06 01:30:16 +0100CAB006F54000,"Octodad: Dadliest Catch",crash,boots,2021-04-23 15:26:12 +0100A3501946E000,"OCTOPATH TRAVELER II",gpu;amd-vendor-bug,ingame,2024-09-22 11:39:20 +010057D006492000,"Octopath Traveler™",UE4;crash;gpu,ingame,2020-08-31 02:34:36 +010084300C816000,"Odallus: The Dark Call",,playable,2022-08-08 12:37:58 +0100BB500EE3C000,"Oddworld: Munch's Oddysee",gpu;nvdec,ingame,2021-06-17 12:11:50 +01005E700ABB8000,"Oddworld: New 'n' Tasty",nvdec,playable,2021-06-17 17:51:32 +0100D210177C6000,"ODDWORLD: SOULSTORM",services-horizon;crash,boots,2024-08-18 13:13:26 +01002EA00ABBA000,"Oddworld: Stranger's Wrath",crash;nvdec;loader-allocator,menus,2021-11-23 09:23:21 +010029F00C876000,"Odium to the Core",gpu,ingame,2021-01-08 14:03:52 +01006F5013202000,"Off And On Again",,playable,2022-10-29 19:46:26 +01003CD00E8BC000,"Offroad Racing - Buggy X ATV X Moto",online-broken;UE4,playable,2022-09-14 18:53:22 +01003B900AE12000,"Oh My Godheads: Party Edition",,playable,2021-04-15 11:04:11 +0100F45006A00000,"Oh...Sir! The Hollywood Roast",,ingame,2020-12-06 00:42:30 +010030B00B2F6000,"OK K.O.! Let’s Play Heroes",nvdec,playable,2021-01-11 18:41:02 +0100276009872000,"OKAMI HD",nvdec,playable,2024-04-05 06:24:58 +01006AB00BD82000,"OkunoKA",online-broken,playable,2022-08-08 14:41:51 +0100CE2007A86000,"Old Man's Journey",nvdec,playable,2021-01-28 19:16:52 +0100C3D00923A000,"Old School Musical",,playable,2020-12-10 12:51:12 +010099000BA48000,"Old School Racer 2",,playable,2020-10-19 12:11:26 +0100E0200B980000,"OlliOlli: Switch Stance",gpu,boots,2024-04-25 08:36:37 +0100F9D00C186000,"Olympia Soiree",,playable,2022-12-04 21:07:12 +0100A8B00E14A000,"Olympic Games Tokyo 2020 – The Official Video Game™",ldn-untested;nvdec;online,playable,2021-01-06 01:20:24 +01001D600E51A000,"Omega Labyrinth Life",,playable,2021-02-23 21:03:03 +,"Omega Vampire",nvdec,playable,2020-10-17 19:15:35 +0100CDC00C40A000,"Omensight: Definitive Edition",UE4;crash;nvdec,ingame,2020-07-26 01:45:14 +01006DB00D970000,"OMG Zombies!",32-bit,playable,2021-04-12 18:04:45 +010014E017B14000,"OMORI",,playable,2023-01-07 20:21:02 +,"Once Upon A Coma",nvdec,playable,2020-08-01 12:09:39 +0100BD3006A02000,"One More Dungeon",,playable,2021-01-06 09:10:58 +010076600FD64000,"One Person Story",,playable,2020-07-14 11:51:02 +0100774009CF6000,"ONE PIECE Pirate Warriors 3 Deluxe Edition",nvdec,playable,2020-05-10 06:23:52 +01008FE00E2F6000,"ONE PIECE: PIRATE WARRIORS 4",online-broken;ldn-untested,playable,2022-09-27 22:55:46 +0100574002AF4000,"ONE PIECE: Unlimited World Red Deluxe Edition",,playable,2020-05-10 22:26:32 +0100EEA00E3EA000,"One-Way Ticket",UE4,playable,2020-06-20 17:20:49 +0100463013246000,"Oneiros",,playable,2022-10-13 10:17:22 +010057C00D374000,"Oniken",,playable,2022-09-10 14:22:38 +010037900C814000,"Oniken: Unstoppable Edition",,playable,2022-08-08 14:52:06 +0100416008A12000,"Onimusha: Warlords",nvdec,playable,2020-07-31 13:08:39 +0100CF4011B2A000,"OniNaki",nvdec,playable,2021-02-27 21:52:42 +010074000BE8E000,"oOo: Ascension",,playable,2021-01-25 14:13:34 +0100D5400BD90000,"Operación Triunfo 2017",services;nvdec,ingame,2022-08-08 15:06:42 +01006CF00CFA4000,"Operencia: The Stolen Sun",UE4;nvdec,playable,2021-06-08 13:51:07 +01004A200BE82000,"OPUS Collection",,playable,2021-01-25 15:24:04 +010049C0075F0000,"OPUS: The Day We Found Earth",nvdec,playable,2021-01-21 18:29:31 +0100F9A012892000,"Ord.",,playable,2020-12-14 11:59:06 +010061D00DB74000,"Ori and the Blind Forest: Definitive Edition",nvdec;online-broken,playable,2022-09-14 19:58:13 +010005800F46E000,"Ori and the Blind Forest: Definitive Edition Demo",,playable,2022-09-10 14:40:12 +01008DD013200000,"Ori and the Will of the Wisps",gpu,ingame,2025-01-11 06:09:54 +01006C70102EA000,"Orn: The Tiny Forest Sprite",UE4;gpu,ingame,2020-08-07 14:25:30 +0100E5900F49A000,"Othercide",nvdec,playable,2022-10-05 19:04:38 +01006AA00EE44000,"Otokomizu",,playable,2020-07-13 21:00:44 +01006AF013A9E000,"Otti: The House Keeper",,playable,2021-01-31 12:11:24 +01000320060AC000,"OTTTD: Over The Top Tower Defense",slow,ingame,2020-10-10 19:31:07 +010097F010FE6000,"Our Two Bedroom Story",gpu;nvdec,ingame,2023-10-10 17:41:20 +0100D5D00C6BE000,"Our World Is Ended.",nvdec,playable,2021-01-19 22:46:57 +01005A700A166000,"OUT OF THE BOX",,playable,2021-01-28 01:34:27 +0100D9F013102000,"Outbreak Lost Hope",crash,boots,2021-04-26 18:01:23 +01006EE013100000,"Outbreak The Nightmare Chronicles",,playable,2022-10-13 10:41:57 +0100A0D013464000,"Outbreak: Endless Nightmares",,playable,2022-10-29 12:35:49 +0100C850130FE000,"Outbreak: Epidemic",,playable,2022-10-13 10:27:31 +0100B450130FC000,"Outbreak: The New Nightmare",,playable,2022-10-19 15:42:07 +0100B8900EFA6000,"Outbuddies DX",gpu,ingame,2022-08-04 22:39:24 +0100DE70085E8000,"Outlast 2",crash;nvdec,ingame,2022-01-22 22:28:05 +01008D4007A1E000,"Outlast: Bundle of Terror",nvdec;loader-allocator;vulkan-backend-bug,playable,2024-01-27 04:44:26 +01009B900401E000,"Overcooked Special Edition",,playable,2022-08-08 20:48:52 +01006FD0080B2000,"Overcooked! 2",ldn-untested,playable,2022-08-08 16:48:10 +0100F28011892000,"Overcooked! All You Can Eat",ldn-untested;online,playable,2021-04-15 10:33:52 +0100D7F00EC64000,"Overlanders",nvdec;UE4,playable,2022-09-14 20:15:06 +01008EA00E816000,"OVERPASS™",online-broken;UE4;ldn-untested,playable,2022-10-17 15:29:47 +0100647012F62000,"Override 2: Super Mech League",online-broken;UE4,playable,2022-10-19 15:56:04 +01008A700F7EE000,"Override: Mech City Brawl - Super Charged Mega Edition",nvdec;online-broken;UE4,playable,2022-09-20 17:33:32 +0100F8600E21E000,"Overwatch® 2",deadlock,boots,2022-09-14 20:22:22 +01005F000CC18000,"OVERWHELM",,playable,2021-01-21 18:37:18 +0100BC2004FF4000,"Owlboy",,playable,2020-10-19 14:24:45 +0100AD9012510000,"PAC-MAN™ 99",gpu;online-broken,ingame,2024-04-23 00:48:25 +010024C001224000,"PAC-MAN™ CHAMPIONSHIP EDITION 2 PLUS",,playable,2021-01-19 22:06:18 +011123900AEE0000,"Paladins",online,menus,2021-01-21 19:21:37 +0100F0D004CAE000,"PAN-PAN A tiny big adventure",audout,playable,2021-01-25 14:42:00 +010083700B730000,"Pang Adventures",,playable,2021-04-10 12:16:59 +010006E00DFAE000,"Pantsu Hunter: Back to the 90s",,playable,2021-02-19 15:12:27 +0100C6A00E94A000,"Panzer Dragoon: Remake",,playable,2020-10-04 04:03:55 +01004AE0108E0000,"Panzer Paladin",,playable,2021-05-05 18:26:00 +010004500DE50000,"Paper Dolls Original",UE4;crash,boots,2020-07-13 20:26:21 +0100A3900C3E2000,"Paper Mario™: The Origami King",audio;Needs Update,playable,2024-08-09 18:27:40 +0100ECD018EBE000,"Paper Mario™: The Thousand-Year Door",gpu;intel-vendor-bug;slow,ingame,2025-01-07 04:27:35 +01006AD00B82C000,"Paperbound Brawlers",,playable,2021-01-25 14:32:15 +0100DC70174E0000,"Paradigm Paradox",vulkan-backend-bug,playable,2022-12-03 22:28:13 +01007FB010DC8000,"Paradise Killer",UE4,playable,2022-10-05 19:33:05 +010063400B2EC000,"Paranautical Activity",,playable,2021-01-25 13:49:19 +01006B5012B32000,"Part Time UFO™",crash,ingame,2023-03-03 03:13:05 +01007FC00A040000,"Party Arcade",online-broken;UE4;ldn-untested,playable,2022-08-09 12:32:53 +0100B8E00359E000,"Party Golf",nvdec,playable,2022-08-09 12:38:30 +010022801217E000,"Party Hard 2",nvdec,playable,2022-10-05 20:31:48 +010027D00F63C000,"Party Treats",,playable,2020-07-02 00:05:00 +01001E500EA16000,"Path of Sin: Greed",crash,menus,2021-11-24 08:00:00 +010031F006E76000,"Pato Box",,playable,2021-01-25 15:17:52 +01001F201121E000,"PAW Patrol Mighty Pups Save Adventure Bay",,playable,2022-10-13 12:17:55 +0100360016800000,"PAW Patrol: Grand Prix",gpu,ingame,2024-05-03 16:16:11 +0100CEC003A4A000,"PAW Patrol: On a Roll!",nvdec,playable,2021-01-28 21:14:49 +01000C4015030000,"Pawapoke R",services-horizon,nothing,2024-05-14 14:28:32 +0100A56006CEE000,"Pawarumi",online-broken,playable,2022-09-10 15:19:33 +0100274004052000,"PAYDAY 2",nvdec;online-broken;ldn-untested,playable,2022-08-09 12:56:39 +010085700ABC8000,"PBA Pro Bowling",nvdec;online-broken;UE4,playable,2022-09-14 23:00:49 +0100F95013772000,"PBA Pro Bowling 2021",online-broken;UE4,playable,2022-10-19 16:46:40 +010072800CBE8000,"PC Building Simulator",,playable,2020-06-12 00:31:58 +010002100CDCC000,"Peaky Blinders: Mastermind",,playable,2022-10-19 16:56:35 +010028A0048A6000,"Peasant Knight",,playable,2020-12-22 09:30:50 +0100C510049E0000,"Penny-Punching Princess",,playable,2022-08-09 13:37:05 +0100CA901AA9C000,"Penny’s Big Breakaway",amd-vendor-bug,playable,2024-05-27 07:58:51 +0100563005B70000,"Perception",UE4;crash;nvdec,menus,2020-12-18 11:49:23 +010011700D1B2000,"Perchang",,playable,2021-01-25 14:19:52 +010089F00A3B4000,"Perfect Angle",,playable,2021-01-21 18:48:45 +01005CD012DC0000,"Perky Little Things",crash;vulkan,boots,2024-08-04 07:22:46 +01005EB013FBA000,"Persephone",,playable,2021-03-23 22:39:19 +0100A0300FC3E000,"Perseverance",,playable,2020-07-13 18:48:27 +010062B01525C000,"Persona 4 Golden",,playable,2024-08-07 17:48:07 +01005CA01580E000,"Persona 5 Royal",gpu,ingame,2024-08-17 21:45:15 +010087701B092000,"Persona 5 Tactica",,playable,2024-04-01 22:21:03 +,"Persona 5: Scramble",deadlock,boots,2020-10-04 03:22:29 +0100801011C3E000,"Persona® 5 Strikers",nvdec;mac-bug,playable,2023-09-26 09:36:01 +010044400EEAE000,"Petoons Party",nvdec,playable,2021-03-02 21:07:58 +010053401147C000,"PGA TOUR 2K21",deadlock;nvdec,ingame,2022-10-05 21:53:50 +0100DDD00C0EA000,"Phantaruk",,playable,2021-06-11 18:09:54 +0100063005C86000,"Phantom Breaker: Battle Grounds Overdrive",audio;nvdec,playable,2024-02-29 14:20:35 +010096F00E5B0000,"Phantom Doctrine",UE4,playable,2022-09-15 10:51:50 +0100C31005A50000,"Phantom Trigger",,playable,2022-08-09 14:27:30 +0100CB000A142000,"Phoenix Wright: Ace Attorney Trilogy",,playable,2023-09-15 22:03:12 +0100DA400F624000,"PHOGS!",online,playable,2021-01-18 15:18:37 +0100BF1003B9A000,"Physical Contact: 2048",slow,playable,2021-01-25 15:18:32 +01008110036FE000,"Physical Contact: SPEED",,playable,2022-08-09 14:40:46 +010077300A86C000,"PIANISTA",online-broken,playable,2022-08-09 14:52:56 +010012100E8DC000,"PICROSS LORD OF THE NAZARICK",,playable,2023-02-08 15:54:56 +0100C9600A88E000,"PICROSS S2",,playable,2020-10-15 12:01:40 +010079200D330000,"PICROSS S3",,playable,2020-10-15 11:55:27 +0100C250115DC000,"PICROSS S4",,playable,2020-10-15 12:33:46 +0100AC30133EC000,"PICROSS S5",,playable,2022-10-17 18:51:42 +010025901432A000,"PICROSS S6",,playable,2022-10-29 17:52:19 +01009B2016104000,"PICROSS S7",,playable,2022-02-16 12:51:25 +010043B00E1CE000,"PictoQuest",,playable,2021-02-27 15:03:16 +0100D06003056000,"Piczle Lines DX",UE4;crash;nvdec,menus,2020-11-16 04:21:31 +010017600B532000,"Piczle Lines DX 500 More Puzzles!",UE4,playable,2020-12-15 23:42:51 +01000FD00D5CC000,"Pig Eat Ball",services,ingame,2021-11-30 01:57:45 +01001CB0106F8000,"Pikmin 3 Deluxe Demo",32-bit;crash;demo;gpu,ingame,2021-06-16 18:38:07 +0100E0B019974000,"Pikmin 4 Demo",gpu;nvdec;UE4;demo;amd-vendor-bug,ingame,2023-09-22 21:41:08 +0100AA80194B0000,"Pikmin™ 1",audio,ingame,2024-05-28 18:56:11 +0100D680194B2000,"Pikmin™ 1+2",gpu,ingame,2023-07-31 08:53:41 +0100F4C009322000,"Pikmin™ 3 Deluxe",gpu;32-bit;nvdec;Needs Update,ingame,2024-09-03 00:28:26 +0100B7C00933A000,"Pikmin™ 4",gpu;crash;UE4,ingame,2024-08-26 03:39:08 +0100D6200E130000,"Pillars of Eternity: Complete Edition",,playable,2021-02-27 00:24:21 +01007A500B0B2000,"Pilot Sports",,playable,2021-01-20 15:04:17 +0100DA70186D4000,"Pinball FX",,playable,2024-05-03 17:09:11 +0100DB7003828000,"Pinball FX3",online-broken,playable,2022-11-11 23:49:07 +01002BA00D662000,"Pine",slow,ingame,2020-07-29 16:57:39 +010041100B148000,"Pinstripe",,playable,2020-11-26 10:40:40 +01002B20174EE000,"Piofiore: Episodio 1926",,playable,2022-11-23 18:36:05 +01009240117A2000,"Piofiore: Fated Memories",nvdec,playable,2020-11-30 14:27:50 +0100EA2013BCC000,"Pixel Game Maker Series Puzzle Pedestrians",,playable,2022-10-24 20:15:50 +0100859013CE6000,"Pixel Game Maker Series Werewolf Princess Kaguya",crash;services,nothing,2021-03-26 00:23:07 +010060A00F5E8000,"Pixel Gladiator",,playable,2020-07-08 02:41:26 +010000E00E612000,"Pixel Puzzle Makeout League",,playable,2022-10-13 12:34:00 +0100382011002000,"PixelJunk Eden 2",crash,ingame,2020-12-17 11:55:52 +0100E4D00A690000,"PixelJunk™ Monsters 2",,playable,2021-06-07 03:40:01 +01004A900C352000,"Pizza Titan Ultra",nvdec,playable,2021-01-20 15:58:42 +05000FD261232000,"Pizza Tower",crash,ingame,2024-09-16 00:21:56 +0100FF8005EB2000,"Plague Road",,playable,2022-08-09 15:27:14 +010030B00C316000,"Planescape: Torment and Icewind Dale: Enhanced Editions",cpu;32-bit;crash;Needs Update,boots,2022-09-10 03:58:26 +010003C0099EE000,"PLANET ALPHA",UE4;gpu,ingame,2020-12-16 14:42:20 +01007EA019CFC000,"Planet Cube: Edge",,playable,2023-03-22 17:10:12 +0100F0A01F112000,"planetarian: The Reverie of a Little Planet & Snow Globe",,playable,2020-10-17 20:26:20 +010087000428E000,"Plantera Deluxe",,playable,2022-08-09 15:36:28 +0100C56010FD8000,"Plants vs. Zombies: Battle for Neighborville™ Complete Edition",gpu;audio;crash,boots,2024-09-02 12:58:14 +0100E5B011F48000,"PLOID SAGA",,playable,2021-04-19 16:58:45 +01009440095FE000,"Pode",nvdec,playable,2021-01-25 12:58:35 +010086F0064CE000,"Poi: Explorer Edition",nvdec,playable,2021-01-21 19:32:00 +0100EB6012FD2000,"Poison Control",,playable,2021-05-16 14:01:54 +010072400E04A000,"Pokémon Café ReMix",,playable,2021-08-17 20:00:04 +01003D200BAA2000,"Pokémon Mystery Dungeon™: Rescue Team DX",mac-bug,playable,2024-01-21 00:16:32 +01008DB008C2C000,"Pokémon Shield + Pokémon Shield Expansion Pass",deadlock;crash;online-broken;ldn-works;LAN,ingame,2024-08-12 07:20:22 +0100ABF008968000,"Pokémon Sword + Pokémon Sword Expansion Pass",deadlock;crash;online-broken;ldn-works;LAN,ingame,2024-08-26 15:40:37 +01009AD008C4C000,"Pokémon: Let's Go, Pikachu! demo",slow;demo,playable,2023-11-26 11:23:20 +0100000011D90000,"Pokémon™ Brilliant Diamond",gpu;ldn-works,ingame,2024-08-28 13:26:35 +010015F008C54000,"Pokémon™ HOME",Needs Update;crash;services,menus,2020-12-06 06:01:51 +01001F5010DFA000,"Pokémon™ Legends: Arceus",gpu;Needs Update;ldn-works,ingame,2024-09-19 10:02:02 +01005D100807A000,"Pokémon™ Quest",,playable,2022-02-22 16:12:32 +0100A3D008C5C000,"Pokémon™ Scarlet",gpu;nvdec;ldn-works;amd-vendor-bug,ingame,2023-12-14 13:18:29 +01008F6008C5E000,"Pokémon™ Violet",gpu;nvdec;ldn-works;amd-vendor-bug;mac-bug,ingame,2024-07-30 02:51:48 +0100187003A36000,"Pokémon™: Let’s Go, Eevee!",crash;nvdec;online-broken;ldn-broken,ingame,2024-06-01 15:03:04 +010003F003A34000,"Pokémon™: Let’s Go, Pikachu!",crash;nvdec;online-broken;ldn-broken,ingame,2024-03-15 07:55:41 +0100B3F000BE2000,"Pokkén Tournament™ DX",nvdec;ldn-works;opengl-backend-bug;LAN;amd-vendor-bug;intel-vendor-bug,playable,2024-07-18 23:11:08 +010030D005AE6000,"Pokkén Tournament™ DX Demo",demo;opengl-backend-bug,playable,2022-08-10 12:03:19 +0100A3500B4EC000,"Polandball: Can Into Space",,playable,2020-06-25 15:13:26 +0100EAB00605C000,"Poly Bridge",services,playable,2020-06-08 23:32:41 +010017600B180000,"Polygod",slow;regression,ingame,2022-08-10 14:38:14 +010074B00ED32000,"Polyroll",gpu,boots,2021-07-01 16:16:50 +010096B01179A000,"Ponpu",,playable,2020-12-16 19:09:34 +01005C5011086000,"Pooplers",,playable,2020-11-02 11:52:10 +01007EF013CA0000,"Port Royale 4",crash;nvdec,menus,2022-10-30 14:34:06 +01007BB017812000,"Portal",,playable,2024-06-12 03:48:29 +0100ABD01785C000,"Portal 2",gpu,ingame,2023-02-20 22:44:15 +010050D00FE0C000,"Portal Dogs",,playable,2020-09-04 12:55:46 +0100437004170000,"Portal Knights",ldn-untested;online,playable,2021-05-27 19:29:04 +01005FC010EB2000,"Potata: Fairy Flower",nvdec,playable,2020-06-17 09:51:34 +01000A4014596000,"Potion Party",,playable,2021-05-06 14:26:54 +0100E1E00CF1A000,"Power Rangers: Battle for the Grid",,playable,2020-06-21 16:52:42 +0100D1C01C194000,"Powerful Pro Baseball 2024-2025",gpu,ingame,2024-08-25 06:40:48 +01008E100E416000,"PowerSlave Exhumed",gpu,ingame,2023-07-31 23:19:10 +010054F01266C000,"Prehistoric Dude",gpu,ingame,2020-10-12 12:38:48 +,"Pretty Princess Magical Coordinate",,playable,2020-10-15 11:43:41 +01007F00128CC000,"Pretty Princess Party",,playable,2022-10-19 17:23:58 +010009300D278000,"Preventive Strike",nvdec,playable,2022-10-06 10:55:51 +0100210019428000,"Prince of Persia The Lost Crown",crash,ingame,2024-06-08 21:31:58 +01007A3009184000,"Princess Peach™: Showtime!",UE4,playable,2024-09-21 13:39:45 +010024701DC2E000,"Princess Peach™: Showtime! Demo",UE4;demo,playable,2024-03-10 17:46:45 +01001FA01451C000,"Prinny Presents NIS Classics Volume 1: Phantom Brave: The Hermuda Triangle Remastered / Soul Nomad & the World Eaters",crash;Needs Update,boots,2023-02-02 07:23:09 +01008FA01187A000,"Prinny® 2: Dawn of Operation Panties, Dood!",32-bit,playable,2022-10-13 12:42:58 +01007A0011878000,"Prinny®: Can I Really Be the Hero?",32-bit;nvdec,playable,2023-10-22 09:25:25 +010007F00879E000,"PriPara: All Idol Perfect Stage",,playable,2022-11-22 16:35:52 +010029200AB1C000,"Prison Architect: Nintendo Switch™ Edition",,playable,2021-04-10 12:27:58 +0100C1801B914000,"Prison City",gpu,ingame,2024-03-01 08:19:33 +0100F4800F872000,"Prison Princess",,playable,2022-11-20 15:00:25 +0100A9800A1B6000,"Professional Construction – The Simulation",slow,playable,2022-08-10 15:15:45 +010077B00BDD8000,"Professional Farmer: Nintendo Switch™ Edition",slow,playable,2020-12-16 13:38:19 +010018300C83A000,"Professor Lupo and his Horrible Pets",,playable,2020-06-12 00:08:45 +0100D1F0132F6000,"Professor Lupo: Ocean",,playable,2021-04-14 16:33:33 +0100BBD00976C000,"Project Highrise: Architect's Edition",,playable,2022-08-10 17:19:12 +0100ACE00DAB6000,"Project Nimbus: Complete Edition",nvdec;UE4;vulkan-backend-bug,playable,2022-08-10 17:35:43 +01002980140F6000,"Project TRIANGLE STRATEGY™ Debut Demo",UE4;demo,playable,2022-10-24 21:40:27 +0100BDB01150E000,"Project Warlock",,playable,2020-06-16 10:50:41 +,"Psikyo Collection Vol 1",32-bit,playable,2020-10-11 13:18:47 +0100A2300DB78000,"Psikyo Collection Vol. 3",,ingame,2021-06-07 02:46:23 +01009D400C4A8000,"Psikyo Collection Vol.2",32-bit,playable,2021-06-07 03:22:07 +01007A200F2E2000,"Psikyo Shooting Stars Alpha",32-bit,playable,2021-04-13 12:03:43 +0100D7400F2E4000,"Psikyo Shooting Stars Bravo",32-bit,playable,2021-06-14 12:09:07 +0100EC100A790000,"PSYVARIAR DELTA",nvdec,playable,2021-01-20 13:01:46 +,"Puchitto kurasutā",Need-Update;crash;services,menus,2020-07-04 16:44:28 +0100D61010526000,"Pulstario",,playable,2022-10-06 11:02:01 +01009AE00B788000,"Pumped BMX Pro",nvdec;online-broken,playable,2022-09-20 17:40:50 +01006C10131F6000,"Pumpkin Jack",nvdec;UE4,playable,2022-10-13 12:52:32 +010016400F07E000,"Push the Crate",nvdec;UE4,playable,2022-09-15 13:28:41 +0100B60010432000,"Push the Crate 2",UE4;gpu;nvdec,ingame,2021-06-10 14:20:01 +0100F1200F6D8000,"Pushy and Pully in Blockland",,playable,2020-07-04 11:44:41 +0100AAE00CAB4000,"Puyo Puyo Champions",online,playable,2020-06-19 11:35:08 +010038E011940000,"Puyo Puyo™ Tetris® 2",ldn-untested,playable,2023-09-26 11:35:25 +0100C5700ECE0000,"Puzzle & Dragons GOLD",slow,playable,2020-05-13 15:09:34 +010079E01A1E0000,"Puzzle Bobble Everybubble!",audio;ldn-works,playable,2023-06-10 03:53:40 +010043100F0EA000,"Puzzle Book",,playable,2020-09-28 13:26:01 +0100476004A9E000,"Puzzle Box Maker",nvdec;online-broken,playable,2022-08-10 18:00:52 +0100A4E017372000,"Pyramid Quest",gpu,ingame,2023-08-16 21:14:52 +0100F1100E606000,"Q-YO Blaster",gpu,ingame,2020-06-07 22:36:53 +010023600AA34000,"Q.U.B.E. 2",UE4,playable,2021-03-03 21:38:57 +0100A8D003BAE000,"Qbics Paint",gpu;services,ingame,2021-06-07 10:54:09 +0100BA5012E54000,"QUAKE",gpu;crash,menus,2022-08-08 12:40:34 +010048F0195E8000,"Quake II",,playable,2023-08-15 03:42:14 +,"QuakespasmNX",crash;homebrew,nothing,2022-07-23 19:28:07 +010045101288A000,"Quantum Replica",nvdec;UE4,playable,2022-10-30 21:17:22 +0100F1400BA88000,"Quarantine Circular",,playable,2021-01-20 15:24:15 +0100DCF00F13A000,"Queen's Quest 4: Sacred Truce",nvdec,playable,2022-10-13 12:59:21 +0100492012378000,"Quell",gpu,ingame,2021-06-11 15:59:53 +01001DE005012000,"Quest of Dungeons",,playable,2021-06-07 10:29:22 +,"QuietMansion2",,playable,2020-09-03 14:59:35 +0100AF100EE76000,"Quiplash 2 InterLASHional: The Say Anything Party Game!",online-working,playable,2022-10-19 17:43:45 +0100E5400BE64000,"R-Type Dimensions EX",,playable,2020-10-09 12:04:43 +0100F930136B6000,"R-Type® Final 2",slow;nvdec;UE4,ingame,2022-10-30 21:46:29 +01007B0014300000,"R-Type® Final 2 Demo",slow;nvdec;UE4;demo,ingame,2022-10-24 21:57:42 +0100B5A004302000,"R.B.I. Baseball 17",online-working,playable,2022-08-11 11:55:47 +01005CC007616000,"R.B.I. Baseball 18",nvdec;online-working,playable,2022-08-11 11:27:52 +0100FCB00BF40000,"R.B.I. Baseball 19",nvdec;online-working,playable,2022-08-11 11:43:52 +010061400E7D4000,"R.B.I. Baseball 20",,playable,2021-06-15 21:16:29 +0100B4A0115CA000,"R.B.I. Baseball 21",online-working,playable,2022-10-24 22:31:45 +01005BF00E4DE000,"Rabi-Ribi",,playable,2022-08-06 17:02:44 +010075D00DD04000,"Race with Ryan",UE4;gpu;nvdec;slow,ingame,2020-11-16 04:35:33 +0100B8100C54A000,"Rack N Ruin",,playable,2020-09-04 15:20:26 +010024400C516000,"RAD",gpu;crash;UE4,menus,2021-11-29 02:01:56 +010000600CD54000,"Rad Rodgers Radical Edition",nvdec;online-broken,playable,2022-08-10 19:57:23 +0100DA400E07E000,"Radiation City",crash,ingame,2022-09-30 11:15:04 +01009E40095EE000,"Radiation Island",opengl;vulkan-backend-bug,ingame,2022-08-11 10:51:04 +0100C8B00D2BE000,"Radical Rabbit Stew",,playable,2020-08-03 12:02:56 +0100BAD013B6E000,"Radio Commander",nvdec,playable,2021-03-24 11:20:46 +01008FA00ACEC000,"RADIOHAMMER STATION",audout,playable,2021-02-26 20:20:06 +01003D00099EC000,"Raging Justice",,playable,2021-06-03 14:06:50 +01005CD013116000,"Raiden IV x Mikado Remix [ 雷電Ⅳ×MIKADO remix ]",,playable,2022-07-29 15:50:13 +01002B000D97E000,"Raiden V: Director's Cut",deadlock;nvdec,boots,2024-07-12 07:31:46 +01002EE00DC02000,"Railway Empire - Nintendo Switch™ Edition",nvdec,playable,2022-10-03 13:53:50 +01003C700D0DE000,"Rain City",,playable,2020-10-08 16:59:03 +0100BDD014232000,"Rain on Your Parade",,playable,2021-05-06 19:32:04 +010047600BF72000,"Rain World",,playable,2023-05-10 23:34:08 +01009D9010B9E000,"Rainbows, toilets & unicorns",nvdec,playable,2020-10-03 18:08:18 +010010B00DDA2000,"Raji: An Ancient Epic",UE4;gpu;nvdec,ingame,2020-12-16 10:05:25 +010042A00A9CC000,"Rapala Fishing Pro Series",nvdec,playable,2020-12-16 13:26:53 +0100E73010754000,"Rascal Fight",,playable,2020-10-08 13:23:30 +010003F00C5C0000,"Rawr-Off",crash;nvdec,menus,2020-07-02 00:14:44 +01005FF002E2A000,"Rayman® Legends Definitive Edition",nvdec;ldn-works,playable,2023-05-27 18:33:07 +0100F03011616000,"Re:Turn - One Way Trip",,playable,2022-08-29 22:42:53 +01000B20117B8000,"Re:ZERO -Starting Life in Another World- The Prophecy of the Throne",gpu;crash;nvdec;vulkan,boots,2023-03-07 21:27:24 +0100A8A00E462000,"Real Drift Racing",,playable,2020-07-25 14:31:31 +010048600CC16000,"Real Heroes: Firefighter",,playable,2022-09-20 18:18:44 +0100E64010BAA000,"realMyst: Masterpiece Edition",nvdec,playable,2020-11-30 15:25:42 +01000F300F082000,"Reaper: Tale of a Pale Swordsman",,playable,2020-12-12 15:12:23 +0100D9B00E22C000,"Rebel Cops",,playable,2022-09-11 10:02:53 +0100CAA01084A000,"Rebel Galaxy Outlaw",nvdec,playable,2022-12-01 07:44:56 +0100EF0015A9A000,"Record of Lodoss War-Deedlit in Wonder Labyrinth-",deadlock;Needs Update;Incomplete,ingame,2022-01-19 10:00:59 +0100CF600FF7A000,"Red Bow",services,ingame,2021-11-29 03:51:34 +0100351013A06000,"Red Colony",,playable,2021-01-25 20:44:41 +01007820196A6000,"Red Dead Redemption",amd-vendor-bug,playable,2024-09-13 13:26:13 +0100069010592000,"Red Death",,playable,2020-08-30 13:07:37 +010075000C608000,"Red Faction Guerrilla Re-Mars-tered",ldn-untested;nvdec;online,playable,2021-06-07 03:02:13 +01002290070E4000,"Red Game Without a Great Name",,playable,2021-01-19 21:42:35 +010045400D73E000,"Red Siren: Space Defense",UE4,playable,2021-04-25 21:21:29 +0100D8A00E880000,"Red Wings: Aces of the Sky",,playable,2020-06-12 01:19:53 +01000D100DCF8000,"Redeemer: Enhanced Edition",nvdec;UE4;vulkan-backend-bug,playable,2022-09-11 10:20:24 +0100326010B98000,"Redout: Space Assault",UE4,playable,2022-10-19 23:04:35 +010007C00E558000,"Reel Fishing: Road Trip Adventure",,playable,2021-03-02 16:06:43 +010045D01273A000,"Reflection of Mine",audio,playable,2020-12-17 15:06:37 +01003AA00F5C4000,"Refreshing Sideways Puzzle Ghost Hammer",,playable,2020-10-18 12:08:54 +01007A800D520000,"Refunct",UE4,playable,2020-12-15 22:46:21 +0100FDF0083A6000,"Regalia: Of Men and Monarchs - Royal Edition",,playable,2022-08-11 12:24:01 +01005FD00F15A000,"Regions of Ruin",,playable,2020-08-05 11:38:58 +,"Reine des Fleurs",cpu;crash,boots,2020-09-27 18:50:39 +0100F1900B144000,"REKT! High Octane Stunts",online,playable,2020-09-28 12:33:56 +01002AD013C52000,"Relicta",nvdec;UE4,playable,2022-10-31 12:48:33 +010095900B436000,"RemiLore",,playable,2021-06-03 18:58:15 +0100FBD00F5F6000,"Remothered: Broken Porcelain",UE4;gpu;nvdec,ingame,2021-06-17 15:13:11 +01001F100E8AE000,"Remothered: Tormented Fathers",nvdec;UE4,playable,2022-10-19 23:26:50 +01008EE00B22C000,"Rento Fortune",ldn-untested;online,playable,2021-01-19 19:52:21 +01007CC0130C6000,"Renzo Racer",,playable,2021-03-23 22:28:05 +01003C400AD42000,"Rescue Tale",,playable,2022-09-20 18:40:18 +010099A00BC1E000,"resident evil 4",nvdec,playable,2022-11-16 21:16:04 +010018100CD46000,"Resident Evil 5",nvdec,playable,2024-02-18 17:15:29 +01002A000CD48000,"Resident Evil 6",nvdec,playable,2022-09-15 14:31:47 +0100643002136000,"Resident Evil Revelations",nvdec;ldn-untested,playable,2022-08-11 12:44:19 +010095300212A000,"Resident Evil Revelations 2",online-broken;ldn-untested,playable,2022-08-11 12:57:50 +0100E7F00FFB8000,"Resolutiion",crash,boots,2021-04-25 21:57:56 +0100FF201568E000,"Restless Night",crash,nothing,2022-02-09 10:54:49 +0100069000078000,"Retail Interactive Display Menu (DevQuestMenu)",services;crash,nothing,2022-08-11 13:19:41 +010086E00BCB2000,"Retimed",,playable,2022-08-11 13:32:39 +0100F17004156000,"Retro City Rampage DX",,playable,2021-01-05 17:04:17 +01000ED014A2C000,"Retro Machina",online-broken,playable,2022-10-31 13:38:58 +010032E00E6E2000,"Return of the Obra Dinn",,playable,2022-09-15 19:56:45 +010027400F708000,"Revenge of Justice",nvdec,playable,2022-11-20 15:43:23 +0100E2E00EA42000,"Reventure",,playable,2022-09-15 20:07:06 +010071D00F156000,"REZ PLZ",,playable,2020-10-24 13:26:12 +0100729012D18000,"Rhythm Fighter",crash,nothing,2021-02-16 18:51:30 +010081D0100F0000,"Rhythm of the Gods",UE4;crash,nothing,2020-10-03 17:39:59 +01009D5009234000,"RICO",nvdec;online-broken,playable,2022-08-11 20:16:40 +01002C700C326000,"Riddled Corpses EX",,playable,2021-06-06 16:02:44 +0100AC600D898000,"Rift Keeper",,playable,2022-09-20 19:48:20 +0100A62002042000,"RiME",UE4;crash;gpu,boots,2020-07-20 15:52:38 +01006AC00EE6E000,"Rimelands: Hammer of Thor",,playable,2022-10-13 13:32:56 +01002FF008C24000,"RingFit Adventure",crash;services,nothing,2021-04-14 19:00:01 +010088E00B816000,"RIOT - Civil Unrest",,playable,2022-08-11 20:27:56 +01002A6006AA4000,"Riptide GP: Renegade",online,playable,2021-04-13 23:33:02 +010065B00B0EC000,"Rise and Shine",,playable,2020-12-12 15:56:43 +0100E9C010EA8000,"Rise of Insanity",,playable,2020-08-30 15:42:14 +01006BA00E652000,"Rise: Race The Future",,playable,2021-02-27 13:29:06 +010020C012F48000,"Rising Hell",,playable,2022-10-31 13:54:02 +010076D00E4BA000,"Risk of Rain 2",online-broken,playable,2024-03-04 17:01:05 +0100E8300A67A000,"RISK® Global Domination",nvdec;online-broken,playable,2022-08-01 18:53:28 +010042500FABA000,"Ritual: Crown of Horns",,playable,2021-01-26 16:01:47 +0100BD300F0EC000,"Ritual: Sorcerer Angel",,playable,2021-03-02 13:51:19 +0100A7D008392000,"Rival Megagun",nvdec;online,playable,2021-01-19 14:01:46 +010069C00401A000,"RIVE: Ultimate Edition",,playable,2021-03-24 18:45:55 +01004E700DFE6000,"River City Girls",nvdec,playable,2020-06-10 23:44:09 +01002E80168F4000,"River City Girls 2",,playable,2022-12-07 00:46:27 +0100B2100767C000,"River City Melee Mach!!",online-broken,playable,2022-09-20 20:51:57 +01008AC0115C6000,"RMX Real Motocross",,playable,2020-10-08 21:06:15 +010053000B986000,"Road Redemption",online-broken,playable,2022-08-12 11:26:20 +010002F009A7A000,"Road to Ballhalla",UE4,playable,2021-06-07 02:22:36 +0100735010F58000,"Road To Guangdong",slow,playable,2020-10-12 12:15:32 +010068200C5BE000,"Roarr! Jurassic Edition",,playable,2022-10-19 23:57:45 +0100618004096000,"Robonauts",nvdec,playable,2022-08-12 11:33:23 +010039A0117C0000,"ROBOTICS;NOTES DaSH",,playable,2020-11-16 23:09:54 +01002A900EE8A000,"ROBOTICS;NOTES ELITE",,playable,2020-11-26 10:28:20 +010044A010BB8000,"Robozarro",,playable,2020-09-03 13:33:40 +01000CC012D74000,"Rock 'N Racing Bundle Grand Prix & Rally",,playable,2021-01-06 20:23:57 +0100A1B00DB36000,"Rock of Ages 3: Make & Break",UE4,playable,2022-10-06 12:18:29 +0100513005AF4000,"Rock'N Racing Off Road DX",,playable,2021-01-10 15:27:15 +01005EE0036EC000,"Rocket League®",gpu;online-broken;ldn-untested,ingame,2024-02-08 19:51:36 +0100E88009A34000,"Rocket Wars",,playable,2020-07-24 14:27:39 +0100EC7009348000,"Rogue Aces",gpu;services;nvdec,ingame,2021-11-30 02:18:30 +01009FA010848000,"Rogue Heroes: Ruins of Tasos",online,playable,2021-04-01 15:41:25 +010056500AD50000,"Rogue Legacy",,playable,2020-08-10 19:17:28 +0100F3B010F56000,"Rogue Robots",,playable,2020-06-16 12:16:11 +01001CC00416C000,"Rogue Trooper Redux",nvdec;online-broken,playable,2022-08-12 11:53:01 +0100C7300C0EC000,"RogueCube",,playable,2021-06-16 12:16:42 +0100B7200FC96000,"Roll'd",,playable,2020-07-04 20:24:01 +01004900113F8000,"RollerCoaster Tycoon 3 Complete Edition",32-bit,playable,2022-10-17 14:18:01 +0100E3900B598000,"RollerCoaster Tycoon Adventures",nvdec,playable,2021-01-05 18:14:18 +010076200CA16000,"Rolling Gunner",,playable,2021-05-26 12:54:18 +0100579011B40000,"Rolling Sky 2",,playable,2022-11-03 10:21:12 +010050400BD38000,"Roman Rumble in Las Vegum - Asterix & Obelix XXL 2",deadlock;nvdec,ingame,2022-07-21 17:54:14 +01001F600829A000,"Romancing SaGa 2",,playable,2022-08-12 12:02:24 +0100D0400D27A000,"Romancing SaGa 3",audio;gpu,ingame,2020-06-27 20:26:18 +010088100DD42000,"Roof Rage",crash;regression,boots,2023-11-12 03:47:18 +0100F3000FA58000,"Roombo: First Blood",nvdec,playable,2020-08-05 12:11:37 +0100936011556000,"Root Double -Before Crime * After Days- Xtend Edition",crash,nothing,2022-02-05 02:03:49 +010030A00DA3A000,"Root Letter: Last Answer",vulkan-backend-bug,playable,2022-09-17 10:25:57 +0100AFE00DDAC000,"Royal Roads",,playable,2020-11-17 12:54:38 +0100E2C00B414000,"RPG Maker MV",nvdec,playable,2021-01-05 20:12:01 +01005CD015986000,"rRootage Reloaded",,playable,2022-08-05 23:20:18 +0000000000000000,"RSDKv5u",homebrew,ingame,2024-04-01 16:25:34 +010009B00D33C000,"Rugby Challenge 4",slow;online-broken;UE4,playable,2022-10-06 12:45:53 +01006EC00F2CC000,"RUINER",UE4,playable,2022-10-03 14:11:33 +010074F00DE4A000,"Run the Fan",,playable,2021-02-27 13:36:28 +0100ADF00700E000,"Runbow",online,playable,2021-01-08 22:47:44 +0100D37009B8A000,"Runbow Deluxe Edition",online-broken,playable,2022-08-12 12:20:25 +010081C0191D8000,"Rune Factory 3 Special",,playable,2023-10-15 08:32:49 +010051D00E3A4000,"Rune Factory 4 Special",32-bit;crash;nvdec,ingame,2023-05-06 08:49:17 +010014D01216E000,"Rune Factory 5 (JP)",gpu,ingame,2021-06-01 12:00:36 +0100E21013908000,"RWBY: Grimm Eclipse - Definitive Edition",online-broken,playable,2022-11-03 10:44:01 +010012C0060F0000,"RXN -Raijin-",nvdec,playable,2021-01-10 16:05:43 +0100B8B012ECA000,"S.N.I.P.E.R. - Hunter Scope",,playable,2021-04-19 15:58:09 +010007700CFA2000,"Saboteur II: Avenging Angel",Needs Update;cpu;crash,nothing,2021-01-26 14:47:37 +0100D94012FE8000,"Saboteur SiO",slow,ingame,2020-12-17 16:59:49 +0100A5200C2E0000,"Safety First!",,playable,2021-01-06 09:05:23 +0100A51013530000,"SaGa Frontier Remastered",nvdec,playable,2022-11-03 13:54:56 +010003A00D0B4000,"SaGa SCARLET GRACE: AMBITIONS™",,playable,2022-10-06 13:20:31 +01008D100D43E000,"Saints Row IV®: Re-Elected™",ldn-untested;LAN,playable,2023-12-04 18:33:37 +0100DE600BEEE000,"SAINTS ROW®: THE THIRD™ - THE FULL PACKAGE",slow;LAN,playable,2023-08-24 02:40:58 +01007F000EB36000,"Sakai and...",nvdec,playable,2022-12-15 13:53:19 +0100B1400E8FE000,"Sakuna: Of Rice and Ruin",,playable,2023-07-24 13:47:13 +0100BBF0122B4000,"Sally Face",,playable,2022-06-06 18:41:24 +0100D250083B4000,"Salt and Sanctuary",,playable,2020-10-22 11:52:19 +0100CD301354E000,"Sam & Max Save the World",,playable,2020-12-12 13:11:51 +010014000C63C000,"Samsara: Deluxe Edition",,playable,2021-01-11 15:14:12 +0100ADF0096F2000,"Samurai Aces for Nintendo Switch",32-bit,playable,2020-11-24 20:26:55 +01006C600E46E000,"Samurai Jack: Battle Through Time",nvdec;UE4,playable,2022-10-06 13:33:59 +01002DF00F76C000,"SAMURAI SHODOWN",UE4;crash;nvdec,menus,2020-09-06 02:17:00 +0100F6800F48E000,"SAMURAI SHODOWN NEOGEO COLLECTION",nvdec,playable,2021-06-14 17:12:56 +0100B6501A360000,"Samurai Warrior",,playable,2023-02-27 18:42:38 +,"Sangoku Rensenki ~Otome no Heihou!~",gpu;nvdec,ingame,2020-10-17 19:13:14 +0100A4700BC98000,"Satsujin Tantei Jack the Ripper",,playable,2021-06-21 16:32:54 +0100F0000869C000,"Saturday Morning RPG",nvdec,playable,2022-08-12 12:41:50 +01006EE00380C000,"Sausage Sports Club",gpu,ingame,2021-01-10 05:37:17 +0100C8300FA90000,"Save Koch",,playable,2022-09-26 17:06:56 +0100D6E008700000,"Save the Ninja Clan",,playable,2021-01-11 13:56:37 +010091000F72C000,"Save Your Nuts",nvdec;online-broken;UE4,playable,2022-09-27 23:12:02 +0100AA00128BA000,"Saviors of Sapphire Wings / Stranger of Sword City Revisited",crash,menus,2022-10-24 23:00:46 +01001C3012912000,"Say No! More",,playable,2021-05-06 13:43:34 +010010A00A95E000,"Sayonara Wild Hearts",,playable,2023-10-23 03:20:01 +0100ACB004006000,"Schlag den Star",slow;nvdec,playable,2022-08-12 14:28:22 +0100394011C30000,"Scott Pilgrim vs. The World™: The Game – Complete Edition",services-horizon;crash,nothing,2024-07-12 08:13:03 +0100E7100B198000,"Scribblenauts Mega Pack",nvdec,playable,2020-12-17 22:56:14 +01001E40041BE000,"Scribblenauts Showdown",gpu;nvdec,ingame,2020-12-17 23:05:53 +0100829018568000,"SD GUNDAM BATTLE ALLIANCE Demo",audio;crash;demo,ingame,2022-08-01 23:01:20 +010055700CEA8000,"SD GUNDAM G GENERATION CROSS RAYS",nvdec,playable,2022-09-15 20:58:44 +010022900D3EC00,"SD GUNDAM G GENERATION CROSS RAYS PREMIUM G SOUND EDITION",nvdec,playable,2022-09-15 20:45:57 +0100E4A00D066000,"Sea King",UE4;nvdec,playable,2021-06-04 15:49:22 +0100AFE012BA2000,"Sea of Solitude: The Director's Cut",gpu,ingame,2024-07-12 18:29:29 +01008C0016544000,"Sea of Stars",,playable,2024-03-15 20:27:12 +010036F0182C4000,"Sea of Stars Demo",demo,playable,2023-02-12 15:33:56 +0100C2400D68C000,"SeaBed",,playable,2020-05-17 13:25:37 +010077100CA6E000,"Season Match Bundle",,playable,2020-10-27 16:15:22 +010028F010644000,"Secret Files 3",nvdec,playable,2020-10-24 15:32:39 +010075D0101FA000,"Seek Hearts",,playable,2022-11-22 15:06:26 +0100394010844000,"Seers Isle",,playable,2020-11-17 12:28:50 +0100A8900AF04000,"SEGA AGES Alex Kidd in Miracle World",online,playable,2021-05-05 16:35:47 +01001E600AF08000,"SEGA AGES Gain Ground",online,playable,2021-05-05 16:16:27 +0100D4D00AC62000,"SEGA AGES Out Run",,playable,2021-01-11 13:13:59 +01005A300C9F6000,"SEGA AGES Phantasy Star",,playable,2021-01-11 12:49:48 +01005F600CB0E000,"SEGA AGES Puyo Puyo",online,playable,2021-05-05 16:09:28 +010051F00AC5E000,"SEGA AGES Sonic The Hedgehog",slow,playable,2023-03-05 20:16:31 +01000D200C614000,"SEGA AGES Sonic The Hedgehog 2",,playable,2022-09-21 20:26:35 +0100C3E00B700000,"SEGA AGES Space Harrier",,playable,2021-01-11 12:57:40 +010054400D2E6000,"SEGA AGES Virtua Racing",online-broken,playable,2023-01-29 17:08:39 +01001E700AC60000,"SEGA AGES Wonder Boy: Monster Land",online,playable,2021-05-05 16:28:25 +0100B3C014BDA000,"SEGA Genesis™ – Nintendo Switch Online",crash;regression,nothing,2022-04-11 07:27:21 +,"SEGA Mega Drive Classics",online,playable,2021-01-05 11:08:00 +01009840046BC000,"Semispheres",,playable,2021-01-06 23:08:31 +0100D1800D902000,"SENRAN KAGURA Peach Ball",,playable,2021-06-03 15:12:10 +0100E0C00ADAC000,"SENRAN KAGURA Reflexions",,playable,2020-03-23 19:15:23 +01009E500D29C000,"Sentinels of Freedom",,playable,2021-06-14 16:42:19 +0100A5D012DAC000,"SENTRY",,playable,2020-12-13 12:00:24 +010059700D4A0000,"Sephirothic Stories",services,menus,2021-11-25 08:52:17 +010007D00D43A000,"Serious Sam Collection",vulkan-backend-bug,boots,2022-10-13 13:53:34 +0100B2C00E4DA000,"Served!",nvdec,playable,2022-09-28 12:46:00 +010018400C24E000,"Seven Knights -Time Wanderer-",vulkan-backend-bug,playable,2022-10-13 22:08:54 +0100D6F016676000,"Seven Pirates H",,playable,2024-06-03 14:54:12 +0100157004512000,"Severed",,playable,2020-12-15 21:48:48 +0100D5500DA94000,"Shadow Blade: Reload",nvdec,playable,2021-06-11 18:40:43 +0100BE501382A000,"Shadow Gangs",cpu;gpu;crash;regression,ingame,2024-04-29 00:07:26 +0100C3A013840000,"Shadow Man Remastered",gpu,ingame,2024-05-20 06:01:39 +010073400B696000,"Shadowgate",,playable,2021-04-24 07:32:57 +0100371013B3E000,"Shadowrun Returns",gpu;Needs Update,ingame,2022-10-04 21:32:31 +01008310154C4000,"Shadowrun: Dragonfall - Director's Cut",gpu;Needs Update,ingame,2022-10-04 20:52:18 +0100C610154CA000,"Shadowrun: Hong Kong - Extended Edition",gpu;Needs Update,ingame,2022-10-04 20:53:09 +010000000EEF0000,"Shadows 2: Perfidia",,playable,2020-08-07 12:43:46 +0100AD700CBBE000,"Shadows of Adam",,playable,2021-01-11 13:35:58 +01002A800C064000,"Shadowverse Champions Battle",,playable,2022-10-02 22:59:29 +01003B90136DA000,"Shadowverse: Champion's Battle",crash,nothing,2023-03-06 00:31:50 +0100820013612000,"Shady Part of Me",,playable,2022-10-20 11:31:55 +0100B10002904000,"Shakedown: Hawaii",,playable,2021-01-07 09:44:36 +01008DA012EC0000,"Shakes on a Plane",crash,menus,2021-11-25 08:52:25 +0100B4900E008000,"Shalnor Legends: Sacred Lands",,playable,2021-06-11 14:57:11 +010006C00CC10000,"Shanky: The Vegan`s Nightmare",,playable,2021-01-26 15:03:55 +0100430013120000,"Shantae",,playable,2021-05-21 04:53:26 +0100EFD00A4FA000,"Shantae and the Pirate's Curse",,playable,2024-04-29 17:21:57 +0100EB901040A000,"Shantae and the Seven Sirens",nvdec,playable,2020-06-19 12:23:40 +01006A200936C000,"Shantae: Half- Genie Hero Ultimate Edition",,playable,2020-06-04 20:14:20 +0100ADA012370000,"Shantae: Risky's Revenge - Director's Cut",,playable,2022-10-06 20:47:39 +01003AB01062C000,"Shaolin vs Wutang",deadlock,nothing,2021-03-29 20:38:54 +0100B250009B9600,"Shape Of The World0",UE4,playable,2021-03-05 16:42:28 +01004F50085F2000,"She Remembered Caterpillars",,playable,2022-08-12 17:45:14 +01000320110C2000,"She Sees Red - Interactive Movie",nvdec,playable,2022-09-30 11:30:15 +01009EB004CB0000,"Shelter Generations",,playable,2021-06-04 16:52:39 +010020F014DBE000,"Sherlock Holmes: The Devil’s Daughter",gpu,ingame,2022-07-11 00:07:26 +0100B1000AC3A000,"Shift Happens",,playable,2021-01-05 21:24:18 +01000E8009E1C000,"Shift Quantum",UE4;crash,ingame,2020-11-06 21:54:08 +01000750084B2000,"Shiftlings - Enhanced Edition",nvdec,playable,2021-03-04 13:49:54 +01003B0012DC2000,"Shin Megami Tensei III Nocturne HD Remaster",,playable,2022-11-03 22:53:27 +010045800ED1E000,"Shin Megami Tensei III NOCTURNE HD REMASTER",gpu;Needs Update,ingame,2022-11-03 19:57:01 +010063B012DC6000,"Shin Megami Tensei V",UE4,playable,2024-02-21 06:30:07 +010069C01AB82000,"Shin Megami Tensei V: Vengeance",gpu;vulkan-backend-bug,ingame,2024-07-14 11:28:24 +01009050133B4000,"Shing! (サムライフォース:斬!)",nvdec,playable,2022-10-22 00:48:54 +01009A5009A9E000,"Shining Resonance Refrain",nvdec,playable,2022-08-12 18:03:01 +01004EE0104F6000,"Shinsekai Into the Depths™",,playable,2022-09-28 14:07:51 +0100C2F00A568000,"Shio",,playable,2021-02-22 16:25:09 +0100B2E00F13E000,"Shipped",,playable,2020-11-21 14:22:32 +01000E800FCB4000,"Ships",,playable,2021-06-11 16:14:37 +01007430122D0000,"Shiren the Wanderer: The Tower of Fortune and the Dice of Fate",nvdec,playable,2022-10-20 11:44:36 +,"Shiritsu Berubara Gakuen ~Versailles no Bara Re*imagination~",cpu;crash,boots,2020-09-27 19:01:25 +01000244016BAE00,"Shiro0",gpu,ingame,2024-01-13 08:54:39 +0100CCE00DDB6000,"Shoot 1UP DX",,playable,2020-12-13 12:32:47 +01001180021FA000,"Shovel Knight: Specter of Torment",,playable,2020-05-30 08:34:17 +010057D0021E8000,"Shovel Knight: Treasure Trove",,playable,2021-02-14 18:24:39 +01003DD00BF0E000,"Shred! 2 - ft Sam Pilgrim",,playable,2020-05-30 14:34:09 +01001DE0076A4000,"Shu",nvdec,playable,2020-05-30 09:08:59 +0100A7900B936000,"Shut Eye",,playable,2020-07-23 18:08:35 +010044500C182000,"Sid Meier’s Civilization VI",ldn-untested,playable,2024-04-08 16:03:40 +01007FC00B674000,"Sigi - A Fart for Melusina",,playable,2021-02-22 16:46:58 +0100F1400B0D6000,"Silence",nvdec,playable,2021-06-03 14:46:17 +0100A32010618000,"Silent World",,playable,2020-08-28 13:45:13 +010045500DFE2000,"Silk",nvdec,playable,2021-06-10 15:34:37 +010016D00A964000,"SilverStarChess",,playable,2021-05-06 15:25:57 +0100E8C019B36000,"Simona's Requiem",gpu,ingame,2023-02-21 18:29:19 +01006FE010438000,"Sin Slayers",,playable,2022-10-20 11:53:52 +01002820036A8000,"Sine Mora EX",gpu;online-broken,ingame,2022-08-12 19:36:18 +0100F10012002000,"Singled Out",online,playable,2020-08-03 13:06:18 +0100B8800F858000,"Sinless",nvdec,playable,2020-08-09 20:18:55 +0100B16009C10000,"SINNER: Sacrifice for Redemption",nvdec;UE4;vulkan-backend-bug,playable,2022-08-12 20:37:33 +0100E9201410E000,"Sir Lovelot",,playable,2021-04-05 16:21:46 +0100134011E32000,"Skate City",,playable,2022-11-04 11:37:39 +0100B2F008BD8000,"Skee-Ball",,playable,2020-11-16 04:44:07 +01001A900F862000,"Skelattack",,playable,2021-06-09 15:26:26 +01008E700F952000,"Skelittle: A Giant Party!",,playable,2021-06-09 19:08:34 +01006C000DC8A000,"Skelly Selest",,playable,2020-05-30 15:38:18 +0100D67006F14000,"Skies of Fury DX",,playable,2020-05-30 16:40:54 +010046B00DE62000,"Skullgirls 2nd Encore",,playable,2022-09-15 21:21:25 +0100D1100BF9C000,"Skulls of the Shogun: Bone-A-Fide Edition",,playable,2020-08-31 18:58:12 +0100D7B011654000,"Skully",nvdec;UE4,playable,2022-10-06 13:52:59 +010083100B5CA000,"Sky Force Anniversary",online-broken,playable,2022-08-12 20:50:07 +01006FE005B6E000,"Sky Force Reloaded",,playable,2021-01-04 20:06:57 +010003F00CC98000,"Sky Gamblers - Afterburner",gpu;vulkan-backend-bug;opengl-backend-bug,ingame,2022-08-12 21:04:55 +010093D00AC38000,"Sky Gamblers: Storm Raiders",gpu;audio;32-bit,ingame,2022-08-12 21:13:36 +010068200E96E000,"Sky Gamblers: Storm Raiders 2",gpu,ingame,2022-09-13 12:24:04 +01004F0010A02000,"Sky Racket",,playable,2020-09-07 12:22:24 +0100DDB004F30000,"Sky Ride",,playable,2021-02-22 16:53:07 +0100C5700434C000,"Sky Rogue",,playable,2020-05-30 08:26:28 +0100C52011460000,"Sky: Children of the Light",cpu;online-broken,nothing,2023-02-23 10:57:10 +010041C01014E000,"Skybolt Zack",,playable,2021-04-12 18:28:00 +0100A0A00D1AA000,"SKYHILL",,playable,2021-03-05 15:19:11 +,"Skylanders Imaginators",crash;services,boots,2020-05-30 18:49:18 +010021A00ABEE000,"SKYPEACE",,playable,2020-05-29 14:14:30 +0100EA400BF44000,"SkyScrappers",,playable,2020-05-28 22:11:25 +0100F3C00C400000,"SkyTime",slow,ingame,2020-05-30 09:24:51 +01003AD00DEAE000,"SlabWell: The Quest For Kaktun's Alpaca",,playable,2021-02-22 17:02:51 +0100224004004000,"Slain: Back from Hell",,playable,2022-08-12 23:36:19 +010026300BA4A000,"Slay the Spire",,playable,2023-01-20 15:09:26 +0100501006494000,"Slayaway Camp: Butcher's Cut",opengl-backend-bug,playable,2022-08-12 23:44:05 +01004E900EDDA000,"Slayin 2",gpu,ingame,2024-04-19 16:15:26 +01004AC0081DC000,"Sleep Tight",gpu;UE4,ingame,2022-08-13 00:17:32 +0100F4500AA4E000,"Slice, Dice & Rice",online,playable,2021-02-22 17:44:23 +010010D011E1C000,"Slide Stars",crash,menus,2021-11-25 08:53:43 +0100112003B8A000,"Slime-san",,playable,2020-05-30 16:15:12 +01002AA00C974000,"SMASHING THE BATTLE",,playable,2021-06-11 15:53:57 +0100C9100B06A000,"SmileBASIC 4",gpu,menus,2021-07-29 17:35:59 +0100207007EB2000,"Smoke And Sacrifice",,playable,2022-08-14 12:38:27 +01009790186FE000,"SMURFS KART",,playable,2023-10-18 00:55:00 +0100F2800D46E000,"Snack World The Dungeon Crawl Gold",gpu;slow;nvdec;audout,ingame,2022-05-01 21:12:44 +0100C0F0020E8000,"Snake Pass",nvdec;UE4,playable,2022-01-03 04:31:52 +010075A00BA14000,"Sniper Elite 3 Ultimate Edition",ldn-untested,playable,2024-04-18 07:47:49 +010007B010FCC000,"Sniper Elite 4",gpu;vulkan-backend-bug;opengl-backend-bug,ingame,2024-06-18 17:53:15 +0100BB000A3AA000,"Sniper Elite V2 Remastered",slow;nvdec;online-broken;ldn-untested,ingame,2022-08-14 13:23:13 +01008E20047DC000,"Snipperclips Plus: Cut It Out, Together!",,playable,2023-02-14 20:20:13 +0100704000B3A000,"Snipperclips™ – Cut it out, together!",,playable,2022-12-05 12:44:55 +01004AB00AEF8000,"SNK 40th ANNIVERSARY COLLECTION",,playable,2022-08-14 13:33:15 +010027F00AD6C000,"SNK HEROINES Tag Team Frenzy",nvdec;online-broken;ldn-untested,playable,2022-08-14 14:19:25 +01008DA00CBBA000,"Snooker 19",nvdec;online-broken;UE4,playable,2022-09-11 17:43:22 +010045300516E000,"Snow Moto Racing Freedom",gpu;vulkan-backend-bug,ingame,2022-08-15 16:05:14 +0100BE200C34A000,"Snowboarding The Next Phase",nvdec,playable,2021-02-23 12:56:58 +0100FBD013AB6000,"SnowRunner",services;crash,boots,2023-10-07 00:01:16 +010017B012AFC000,"Soccer Club Life: Playing Manager",gpu,ingame,2022-10-25 11:59:22 +0100B5000E05C000,"Soccer Pinball",UE4;gpu,ingame,2021-06-15 20:56:51 +010011A00A9A8000,"Soccer Slammers",,playable,2020-05-30 07:48:14 +010095C00F9DE000,"Soccer, Tactics & Glory",gpu,ingame,2022-09-26 17:15:58 +0100590009C38000,"SOL DIVIDE -SWORD OF DARKNESS- for Nintendo Switch",32-bit,playable,2021-06-09 14:13:03 +0100A290048B0000,"Soldam: Drop, Connect, Erase",,playable,2020-05-30 09:18:54 +010008600D1AC000,"Solo: Islands of the Heart",gpu;nvdec,ingame,2022-09-11 17:54:43 +01009EE00E91E000,"Some Distant Memory",,playable,2022-09-15 21:48:19 +01004F401BEBE000,"Song of Nunu: A League of Legends Story",,ingame,2024-07-12 18:53:44 +0100E5400BF94000,"Songbird Symphony",,playable,2021-02-27 02:44:04 +010031D00A604000,"Songbringer",,playable,2020-06-22 10:42:02 +0000000000000000,"Sonic 1 (2013)",crash;homebrew,ingame,2024-04-06 18:31:20 +0000000000000000,"Sonic 2 (2013)",crash;homebrew,ingame,2024-04-01 16:25:30 +0000000000000000,"Sonic A.I.R",homebrew,ingame,2024-04-01 16:25:32 +0000000000000000,"Sonic CD",crash;homebrew,ingame,2024-04-01 16:25:31 +010040E0116B8000,"Sonic Colors: Ultimate",,playable,2022-11-12 21:24:26 +01001270012B6000,"SONIC FORCES™",,playable,2024-07-28 13:11:21 +01004AD014BF0000,"Sonic Frontiers",gpu;deadlock;amd-vendor-bug;intel-vendor-bug,ingame,2024-09-05 09:18:53 +01009AA000FAA000,"Sonic Mania",,playable,2020-06-08 17:30:57 +01009FB016286000,"Sonic Origins",crash,ingame,2024-06-02 07:20:15 +01008F701C074000,"SONIC SUPERSTARS",gpu;nvdec,ingame,2023-10-28 17:48:07 +010088801C150000,"Sonic Superstars Digital Art Book with Mini Digital Soundtrack",,playable,2024-08-20 13:26:56 +01005EA01C0FC000,"SONIC X SHADOW GENERATIONS",crash,ingame,2025-01-07 04:20:45 +010064F00C212000,"Soul Axiom Rebooted",nvdec;slow,ingame,2020-09-04 12:41:01 +0100F2100F0B2000,"Soul Searching",,playable,2020-07-09 18:39:07 +01008F2005154000,"South Park™: The Fractured but Whole™ - Standard Edition",slow;online-broken,playable,2024-07-08 17:47:28 +0100B9F00C162000,"Space Blaze",,playable,2020-08-30 16:18:05 +010005500E81E000,"Space Cows",UE4;crash,menus,2020-06-15 11:33:20 +0100707011722000,"Space Elite Force",,playable,2020-11-27 15:21:05 +010047B010260000,"Space Pioneer",,playable,2022-10-20 12:24:37 +010010A009830000,"Space Ribbon",,playable,2022-08-15 17:17:10 +0000000000000000,"SpaceCadetPinball",homebrew,ingame,2024-04-18 19:30:04 +0100D9B0041CE000,"Spacecats with Lasers",,playable,2022-08-15 17:22:44 +010034800FB60000,"Spaceland",,playable,2020-11-01 14:31:56 +010028D0045CE000,"Sparkle 2",,playable,2020-10-19 11:51:39 +01000DC007E90000,"Sparkle Unleashed",,playable,2021-06-03 14:52:15 +0100E4F00AE14000,"Sparkle ZERO",gpu;slow,ingame,2020-03-23 18:19:18 +01007ED00C032000,"Sparklite",,playable,2022-08-06 11:35:41 +0100E6A009A26000,"Spartan",UE4;nvdec,playable,2021-03-05 15:53:19 +010020500E7A6000,"Speaking Simulator",,playable,2020-10-08 13:00:39 +01008B000A5AE000,"Spectrum",,playable,2022-08-16 11:15:59 +0100F18010BA0000,"Speed 3: Grand Prix",UE4,playable,2022-10-20 12:32:31 +010040F00AA9A000,"Speed Brawl",slow,playable,2020-09-18 22:08:16 +01000540139F6000,"Speed Limit",gpu,ingame,2022-09-02 18:37:40 +010061F013A0E000,"Speed Truck Racing",,playable,2022-10-20 12:57:04 +0100E74007EAC000,"Spellspire",,playable,2022-08-16 11:21:21 +010021F004270000,"Spelunker Party!",services,boots,2022-08-16 11:25:49 +0100710013ABA000,"Spelunky",,playable,2021-11-20 17:45:03 +0100BD500BA94000,"Sphinx and the Cursed Mummy",gpu;32-bit;opengl,ingame,2024-05-20 06:00:51 +010092A0102AE000,"Spider Solitaire",,playable,2020-12-16 16:19:30 +010076D0122A8000,"Spinch",,playable,2024-07-12 19:02:10 +01001E40136FE000,"Spinny's Journey",crash,ingame,2021-11-30 03:39:44 +010023E008702000,"Spiral Splatter",,playable,2020-06-04 14:03:57 +0100D1B00B6FA000,"Spirit Hunter: Death Mark",,playable,2020-12-13 10:56:25 +0100FAE00E19A000,"Spirit Hunter: NG",32-bit,playable,2020-12-17 20:38:47 +01005E101122E000,"Spirit of the North",UE4,playable,2022-09-30 11:40:47 +01000AC00F5EC000,"Spirit Roots",nvdec,playable,2020-07-10 13:33:32 +0100BD400DC52000,"Spiritfarer",gpu,ingame,2022-10-06 16:31:38 +01009D60080B4000,"SpiritSphere DX",,playable,2021-07-03 23:37:49 +010042700E3FC000,"Spitlings",online-broken,playable,2022-10-06 16:42:39 +01003BC0000A0000,"Splatoon™ 2",ldn-works;LAN,playable,2024-07-12 19:11:15 +0100C2500FC20000,"Splatoon™ 3",ldn-works;opengl-backend-bug;LAN;amd-vendor-bug,playable,2024-08-04 23:49:11 +0100BA0018500000,"Splatoon™ 3: Splatfest World Premiere",gpu;online-broken;demo,ingame,2022-09-19 03:17:12 +010062800D39C000,"SpongeBob SquarePants: Battle for Bikini Bottom - Rehydrated",online-broken;UE4;ldn-broken;vulkan-backend-bug,playable,2023-08-01 19:29:34 +01009FB0172F4000,"SpongeBob SquarePants: The Cosmic Shake",gpu;UE4,ingame,2023-08-01 19:29:53 +010097C01336A000,"Spooky Chase",,playable,2022-11-04 12:17:44 +0100C6100D75E000,"Spooky Ghosts Dot Com",,playable,2021-06-15 15:16:11 +0100DE9005170000,"Sports Party",nvdec,playable,2021-03-05 13:40:42 +0100E04009BD4000,"Spot The Difference",,playable,2022-08-16 11:49:52 +010052100D1B4000,"Spot The Differences: Party!",,playable,2022-08-16 11:55:26 +01000E6015350000,"Spy Alarm",services,ingame,2022-12-09 10:12:51 +01005D701264A000,"SpyHack",,playable,2021-04-15 10:53:51 +010077B00E046000,"Spyro™ Reignited Trilogy",nvdec;UE4,playable,2022-09-11 18:38:33 +0100085012A0E000,"Squeakers",,playable,2020-12-13 12:13:05 +010009300D31C000,"Squidgies Takeover",,playable,2020-07-20 22:28:08 +0100FCD0102EC000,"Squidlit",,playable,2020-08-06 12:38:32 +0100EBF00E702000,"STAR OCEAN First Departure R",nvdec,playable,2021-07-05 19:29:16 +010065301A2E0000,"STAR OCEAN THE SECOND STORY R",crash,ingame,2024-06-01 02:39:59 +010060D00F658000,"Star Renegades",nvdec,playable,2020-12-11 12:19:23 +0100D7000AE6A000,"Star Story: The Horizon Escape",,playable,2020-08-11 22:31:38 +01009DF015776000,"Star Trek Prodigy: Supernova",nvdec;UE4;opengl-backend-bug,playable,2022-10-14 10:18:50 +0100BD100FFBE000,"STAR WARS™ Episode I Racer",slow;nvdec,playable,2022-10-03 16:08:36 +0100BB500EACA000,"STAR WARS™ Jedi Knight II: Jedi Outcast™",gpu,ingame,2022-09-15 22:51:00 +01008CA00FAE8000,"STAR WARS™ Jedi Knight: Jedi Academy",gpu,boots,2021-06-16 12:35:30 +01006DA00DEAC000,"Star Wars™ Pinball",online-broken,playable,2022-09-11 18:53:31 +0100FA10115F8000,"STAR WARS™ Republic Commando™",gpu;32-bit,ingame,2023-10-31 15:57:17 +010040701B948000,"STAR WARS™: Battlefront Classic Collection",gpu;vulkan,ingame,2024-07-12 19:24:21 +0100854015868000,"STAR WARS™: Knights of the Old Republic™",gpu;deadlock,boots,2024-02-12 10:13:51 +0100153014544000,"STAR WARS™: The Force Unleashed™",,playable,2024-05-01 17:41:28 +01005EB00EA10000,"Star-Crossed Myth - The Department of Wishes -",gpu,ingame,2021-06-04 19:34:36 +0100E6B0115FC000,"Star99",online,menus,2021-11-26 14:18:51 +01002100137BA000,"Stardash",,playable,2021-01-21 16:31:19 +0100E65002BB8000,"Stardew Valley",online-broken;ldn-untested,playable,2024-02-14 03:11:19 +01002CC003FE6000,"Starlink: Battle for Atlas™ Digital Edition",services-horizon;crash;Needs Update,nothing,2024-05-05 17:25:11 +010098E010FDA000,"Starlit Adventures Golden Stars",,playable,2020-11-21 12:14:43 +01001BB00AC26000,"STARSHIP AVENGER Operation: Take Back Earth",,playable,2021-01-12 15:52:55 +010000700A572000,"State of Anarchy: Master of Mayhem",nvdec,playable,2021-01-12 19:00:05 +0100844004CB6000,"State of Mind",UE4;crash,boots,2020-06-22 22:17:50 +0100616009082000,"STAY",crash;services,boots,2021-04-23 14:24:52 +0100B61009C60000,"STAY COOL, KOBAYASHI-SAN!: A RIVER CITY RANSOM STORY",,playable,2021-01-26 17:37:28 +01008010118CC000,"Steam Prison",nvdec,playable,2021-04-01 15:34:11 +0100AE100DAFA000,"Steam Tactics",,playable,2022-10-06 16:53:45 +01004DD00C87A000,"Steamburg",,playable,2021-01-13 08:42:01 +01009320084A4000,"SteamWorld Dig",,playable,2024-08-19 12:12:23 +0100CA9002322000,"SteamWorld Dig 2",,playable,2022-12-21 19:25:42 +0100F6D00D83E000,"SteamWorld Quest: Hand of Gilgamech",nvdec,playable,2020-11-09 13:10:04 +01001C6014772000,"Steel Assault",,playable,2022-12-06 14:48:30 +010042800B880000,"STEINS;GATE ELITE",,playable,2020-08-04 07:33:32 +0100CB400E9BC000,"STEINS;GATE: My Darling's Embrace",nvdec,playable,2022-11-20 16:48:34 +01002DE01043E000,"Stela",UE4,playable,2021-06-15 13:28:34 +01005A700C954000,"Stellar Interface",,playable,2022-10-20 13:44:33 +0100BC800EDA2000,"STELLATUM",gpu,playable,2021-03-07 16:30:23 +0100775004794000,"Steredenn: Binary Stars",,playable,2021-01-13 09:19:42 +0100AE0006474000,"Stern Pinball Arcade",,playable,2022-08-16 14:24:41 +0100E24006FA8000,"Stikbold! A Dodgeball Adventure DELUXE",,playable,2021-01-11 20:12:54 +010077B014518000,"Stitchy in Tooki Trouble",,playable,2021-05-06 16:25:53 +010070D00F640000,"STONE",UE4,playable,2022-09-30 11:53:32 +010074400F6A8000,"Stories Untold",nvdec,playable,2022-12-22 01:08:46 +010040D00BCF4000,"Storm Boy",,playable,2022-10-20 14:15:06 +0100B2300B932000,"Storm In A Teacup",gpu,ingame,2021-11-06 02:03:19 +0100D5D00DAF2000,"Story of a Gladiator",,playable,2020-07-29 15:08:18 +010017301007E000,"STORY OF SEASONS Pioneers of Olive [ 牧場物語 オリーブタウンと希望の大地 ]",,playable,2021-03-18 11:42:19 +0100ED400EEC2000,"STORY OF SEASONS: Friends of Mineral Town",,playable,2022-10-03 16:40:31 +010078D00E8F4000,"Stranded Sails - Explorers of the Cursed Islands",slow;nvdec;UE4,playable,2022-09-16 11:58:38 +01000A6013F86000,"Strange Field Football",,playable,2022-11-04 12:25:57 +0100DD600DD48000,"Stranger Things 3: The Game",,playable,2021-01-11 17:44:09 +0100D7E011C64000,"Strawberry Vinegar",nvdec,playable,2022-12-05 16:25:40 +010075101EF84000,"Stray",crash,ingame,2025-01-07 04:03:00 +0100024008310000,"Street Fighter 30th Anniversary Collection",online-broken;ldn-partial,playable,2022-08-20 16:50:47 +010012400D202000,"Street Outlaws: The List",nvdec,playable,2021-06-11 12:15:32 +0100888011CB2000,"Street Power Soccer",UE4;crash,boots,2020-11-21 12:28:57 +0100EC9010258000,"Streets of Rage 4",nvdec;online,playable,2020-07-07 21:21:22 +0100BDE012928000,"Strife: Veteran Edition",gpu,ingame,2022-01-15 05:10:42 +010039100DACC000,"Strike Force - War on Terror",crash;Needs Update,menus,2021-11-24 08:08:20 +010038A00E6C6000,"Strike Force Kitty",nvdec,playable,2020-07-29 16:22:15 +010072500D52E000,"Strike Suit Zero: Director's Cut",crash,boots,2021-04-23 17:15:14 +0100FF5005B76000,"STRIKERS1945 for Nintendo Switch",32-bit,playable,2021-06-03 19:35:04 +0100720008ED2000,"STRIKERS1945 Ⅱ for Nintendo Switch",32-bit,playable,2021-06-03 19:43:00 +0100681011B56000,"Struggling",,playable,2020-10-15 20:37:03 +0100AF000B4AE000,"Stunt Kite Party",nvdec,playable,2021-01-25 17:16:56 +0100C5500E7AE000,"STURMWIND EX",audio;32-bit,playable,2022-09-16 12:01:39 +,"Subarashiki Kono Sekai -Final Remix-",services;slow,ingame,2020-02-10 16:21:51 +010001400E474000,"Subdivision Infinity DX",UE4;crash,boots,2021-03-03 14:26:46 +0100E6400BCE8000,"Sublevel Zero Redux",,playable,2022-09-16 12:30:03 +0100EDA00D866000,"Submerged",nvdec;UE4;vulkan-backend-bug,playable,2022-08-16 15:17:01 +0100429011144000,"Subnautica",vulkan-backend-bug,playable,2022-11-04 13:07:29 +010014C011146000,"Subnautica: Below Zero",,playable,2022-12-23 14:15:13 +0100BF9012AC6000,"Suguru Nature",crash,ingame,2021-07-29 11:36:27 +01005CD00A2A2000,"Suicide Guy",,playable,2021-01-26 13:13:54 +0100DE000C2E4000,"Suicide Guy: Sleepin' Deeply",Needs More Attention,ingame,2022-09-20 23:45:25 +01003D50126A4000,"Sumire",,playable,2022-11-12 13:40:43 +0100A130109B2000,"Summer in Mara",nvdec,playable,2021-03-06 14:10:38 +01004E500DB9E000,"Summer Sweetheart",nvdec,playable,2022-09-16 12:51:46 +0100BFE014476000,"Sunblaze",,playable,2022-11-12 13:59:23 +01002D3007962000,"Sundered: Eldritch Edition",gpu,ingame,2021-06-07 11:46:00 +0100F7000464A000,"Super Beat Sports™",ldn-untested,playable,2022-08-16 16:05:50 +010051A00D716000,"Super Blood Hockey",,playable,2020-12-11 20:01:41 +01007AD00013E000,"Super Bomberman R",nvdec;online-broken;ldn-works,playable,2022-08-16 19:19:14 +0100B87017D94000,"SUPER BOMBERMAN R 2",deadlock,boots,2023-09-29 13:19:51 +0100D9B00DB5E000,"Super Cane Magic ZERO",,playable,2022-09-12 15:33:46 +010065F004E5E000,"Super Chariot",,playable,2021-06-03 13:19:01 +0100E5E00C464000,"SUPER DRAGON BALL HEROES WORLD MISSION",nvdec;online-broken,playable,2022-08-17 12:56:30 +010023100B19A000,"Super Dungeon Tactics",,playable,2022-10-06 17:40:40 +010056800B534000,"Super Inefficient Golf",UE4,playable,2022-08-17 15:53:45 +010015700D5DC000,"Super Jumpy Ball",,playable,2020-07-04 18:40:36 +0100196009998000,"Super Kickers League Ultimate",,playable,2021-01-26 13:36:48 +01003FB00C5A8000,"Super Kirby Clash™",ldn-works,playable,2024-07-30 18:21:55 +010000D00F81A000,"Super Korotama",,playable,2021-06-06 19:06:22 +01003E300FCAE000,"Super Loop Drive",nvdec;UE4,playable,2022-09-22 10:58:05 +054507E0B7552000,"Super Mario 64",homebrew,ingame,2024-03-20 16:57:27 +0100277011F1A000,"Super Mario Bros.™ 35",online-broken,menus,2022-08-07 16:27:25 +010015100B514000,"Super Mario Bros.™ Wonder",amd-vendor-bug,playable,2024-09-06 13:21:21 +01009B90006DC000,"Super Mario Maker™ 2",online-broken;ldn-broken,playable,2024-08-25 11:05:19 +0100000000010000,"Super Mario Odyssey™",nvdec;intel-vendor-bug;mac-bug,playable,2024-08-25 01:32:34 +010036B0034E4000,"Super Mario Party™",gpu;Needs Update;ldn-works,ingame,2024-06-21 05:10:16 +0100BC0018138000,"Super Mario RPG™",gpu;audio;nvdec,ingame,2024-06-19 17:43:42 +0000000000000000,"Super Mario World",homebrew,boots,2024-06-13 01:40:31 +010049900F546000,"Super Mario™ 3D All-Stars",services-horizon;slow;vulkan;amd-vendor-bug,ingame,2024-05-07 02:38:16 +010028600EBDA000,"Super Mario™ 3D World + Bowser’s Fury",ldn-works,playable,2024-07-31 10:45:37 +01004F8006A78000,"Super Meat Boy",services,playable,2020-04-02 23:10:07 +01009C200D60E000,"Super Meat Boy Forever",gpu,boots,2021-04-26 14:25:39 +0100BDD00EC5C000,"Super Mega Space Blaster Special Turbo",online,playable,2020-08-06 12:13:25 +010031F019294000,"Super Monkey Ball Banana Rumble",,playable,2024-06-28 10:39:18 +0100B2A00E1E0000,"Super Monkey Ball: Banana Blitz HD",online-broken,playable,2022-09-16 13:16:25 +01006D000D2A0000,"Super Mutant Alien Assault",,playable,2020-06-07 23:32:45 +01004D600AC14000,"Super Neptunia RPG",nvdec,playable,2022-08-17 16:38:52 +01008D300C50C000,"Super Nintendo Entertainment System™ - Nintendo Switch Online",,playable,2021-01-05 00:29:48 +0100284007D6C000,"Super One More Jump",,playable,2022-08-17 16:47:47 +01001F90122B2000,"Super Punch Patrol",,playable,2024-07-12 19:49:02 +0100331005E8E000,"Super Putty Squad",gpu;32-bit,ingame,2024-04-29 15:51:54 +,"SUPER ROBOT WARS T",online,playable,2021-03-25 11:00:40 +,"SUPER ROBOT WARS V",online,playable,2020-06-23 12:56:37 +,"SUPER ROBOT WARS X",online,playable,2020-08-05 19:18:51 +01004CF00A60E000,"Super Saurio Fly",nvdec,playable,2020-08-06 13:12:14 +010039700D200000,"Super Skelemania",,playable,2020-06-07 22:59:50 +01006A800016E000,"Super Smash Bros.™ Ultimate",gpu;crash;nvdec;ldn-works;intel-vendor-bug,ingame,2024-09-14 23:05:21 +0100D61012270000,"Super Soccer Blast",gpu,ingame,2022-02-16 08:39:12 +0100A9300A4AE000,"Super Sportmatchen",,playable,2022-08-19 12:34:40 +0100FB400F54E000,"Super Street: Racer",UE4,playable,2022-09-16 13:43:14 +010000500DB50000,"Super Tennis Blast",,playable,2022-08-19 16:20:48 +0100C6800D770000,"Super Toy Cars 2",gpu;regression,ingame,2021-03-02 20:15:15 +010035B00B3F0000,"Super Volley Blast",,playable,2022-08-19 18:14:40 +0100FF60051E2000,"Superbeat: Xonic EX",crash;nvdec,ingame,2022-08-19 18:54:40 +0100630010252000,"SuperEpic: The Entertainment War",,playable,2022-10-13 23:02:48 +01001A500E8B4000,"SUPERHOT",,playable,2021-05-05 19:51:30 +010075701153A000,"Superliminal",,playable,2020-09-03 13:20:50 +0100C01012654000,"Supermarket Shriek",,playable,2022-10-13 23:19:20 +0100A6E01201C000,"Supraland",nvdec;UE4;opengl-backend-bug,playable,2022-10-14 09:49:11 +010029A00AEB0000,"Survive! MR.CUBE",,playable,2022-10-20 14:44:47 +01005AB01119C000,"SUSHI REVERSI",,playable,2021-06-11 19:26:58 +0100DDD0085A4000,"Sushi Striker™: The Way of Sushido",nvdec,playable,2020-06-26 20:49:11 +0100D6D00EC2C000,"Sweet Witches",nvdec,playable,2022-10-20 14:56:37 +010049D00C8B0000,"Swimsanity!",online,menus,2021-11-26 14:27:16 +01005DF00DC26000,"SWORD ART ONLINE: FATAL BULLET Complete Edition",UE4;gpu;online,ingame,2021-06-09 16:58:50 +01001B600D1D6000,"SWORD ART ONLINE: Hollow Realization Deluxe Edition",nvdec,playable,2022-08-19 19:19:15 +01000D70049BE000,"Sword of the Guardian",,playable,2020-07-16 12:24:39 +0100E4701355C000,"Sword of the Necromancer",crash,ingame,2022-12-10 01:28:39 +01004BB00421E000,"Syberia 1 & 2",,playable,2021-12-24 12:06:25 +010028C003FD6000,"Syberia 2",gpu,ingame,2022-08-24 12:43:03 +0100CBE004E6C000,"Syberia 3",nvdec,playable,2021-01-25 16:15:12 +010007300C482000,"Sydney Hunter and the Curse of the Mayan",,playable,2020-06-15 12:15:57 +0100D8400DAF0000,"SYNAPTIC DRIVE",online,playable,2020-09-07 13:44:05 +01009E700F448000,"Synergia",,playable,2021-04-06 17:58:04 +01009BF00E7D2000,"SYNTHETIK: Ultimate",gpu;crash,ingame,2022-08-30 03:19:25 +010015B00BB00000,"Table Top Racing: World Tour - Nitro Edition",,playable,2020-04-05 23:21:30 +01000F20083A8000,"Tactical Mind",,playable,2021-01-25 18:05:00 +0100BD700F5F0000,"Tactical Mind 2",,playable,2020-07-01 23:11:07 +0100E12013C1A000,"Tactics Ogre: Reborn",vulkan-backend-bug,playable,2024-04-09 06:21:35 +01007C7006AEE000,"Tactics V: Obsidian Brigade",,playable,2021-02-28 15:09:42 +01002C000B552000,"Taiko no Tatsujin: Drum 'n' Fun!",online-broken;ldn-broken,playable,2023-05-20 15:10:12 +0100BCA0135A0000,"Taiko no Tatsujin: Rhythm Festival",,playable,2023-11-13 13:16:34 +0100DD6012644000,"Taiko no Tatsujin: Rhythmic Adventure Pack",,playable,2020-12-03 07:28:26 +0100346017304000,"Taiko Risshiden V DX",crash,nothing,2022-06-06 16:25:31 +010040A00EA26000,"Taimumari: Complete Edition",,playable,2022-12-06 13:34:49 +0100F0C011A68000,"Tales from the Borderlands",nvdec,playable,2022-10-25 18:44:14 +0100408007078000,"Tales of the Tiny Planet",,playable,2021-01-25 15:47:41 +01002C0008E52000,"Tales of Vesperia™: Definitive Edition",,playable,2024-09-28 03:20:47 +010012800EE3E000,"Tamashii",,playable,2021-06-10 15:26:20 +010008A0128C4000,"Tamiku",gpu,ingame,2021-06-15 20:06:55 +010048F007ADE000,"Tangledeep",crash,boots,2021-01-05 04:08:41 +01007DB010D2C000,"TaniNani",crash;kernel,nothing,2021-04-08 03:06:44 +0100E06012BB4000,"Tank Mechanic Simulator",,playable,2020-12-11 15:10:45 +01007A601318C000,"Tanuki Justice",opengl,playable,2023-02-21 18:28:10 +01004DF007564000,"Tanzia",,playable,2021-06-07 11:10:25 +01002D4011208000,"Task Force Kampas",,playable,2020-11-30 14:44:15 +0100B76011DAA000,"Taxi Chaos",slow;online-broken;UE4,playable,2022-10-25 19:13:00 +0100F43011E5A000,"Tcheco in the Castle of Lucio",,playable,2020-06-27 13:35:43 +010092B0091D0000,"Team Sonic Racing",online-broken;ldn-works,playable,2024-02-05 15:05:27 +0100FE701475A000,"Teenage Mutant Ninja Turtles: Shredder's Revenge",deadlock;crash,boots,2024-09-28 09:31:39 +01005CF01E784000,"Teenage Mutant Ninja Turtles: Splintered Fate",,playable,2024-08-03 13:50:42 +0100FDB0154E4000,"Teenage Mutant Ninja Turtles: The Cowabunga Collection",,playable,2024-01-22 19:39:04 +010021100DF22000,"Telling Lies",,playable,2020-10-23 21:14:51 +0100C8B012DEA000,"Temtem",online-broken,menus,2022-12-17 17:36:11 +0100B2600A398000,"TENGAI for Nintendo Switch",32-bit,playable,2020-11-25 19:52:26 +0100D7A005DFC000,"Tennis",,playable,2020-06-01 20:50:36 +01002970080AA000,"Tennis in the Face",,playable,2022-08-22 14:10:54 +0100092006814000,"Tennis World Tour",online-broken,playable,2022-08-22 14:27:10 +0100950012F66000,"Tennis World Tour 2",online-broken,playable,2022-10-14 10:43:16 +0100E46006708000,"Terraria",online-broken,playable,2022-09-12 16:14:57 +010070C00FB56000,"TERROR SQUID",online-broken,playable,2023-10-30 22:29:29 +010043700EB68000,"TERRORHYTHM (TRRT)",,playable,2021-02-27 13:18:14 +0100FBC007EAE000,"Tesla vs Lovecraft",,playable,2023-11-21 06:19:36 +01005C8005F34000,"Teslagrad",,playable,2021-02-23 14:41:02 +01006F701507A000,"Tested on Humans: Escape Room",,playable,2022-11-12 14:42:52 +0100671016432000,"TETRA for Nintendo Switch™ International Edition",,playable,2020-06-26 20:49:55 +01004E500A15C000,"TETRA's Escape",,playable,2020-06-03 18:21:14 +010040600C5CE000,"Tetris 99 Retail Bundle",gpu;online-broken;ldn-untested,ingame,2024-05-02 16:36:41 +0100EC000D39A000,"Tetsumo Party",,playable,2020-06-09 22:39:55 +01008ED0087A4000,"The Adventure Pals",,playable,2022-08-22 14:48:52 +0100137010152000,"The Adventures of 00 Dilly®",,playable,2020-12-30 19:32:29 +01003B400A00A000,"The Adventures of Bertram Fiddle: Episode 1: A Dreadly Business",nvdec,playable,2022-09-17 11:07:56 +010035C00A4BC000,"The Adventures of Elena Temple",,playable,2020-06-03 23:15:35 +010045A00E038000,"The Alliance Alive HD Remastered",nvdec,playable,2021-03-07 15:43:45 +010079A0112BE000,"The Almost Gone",,playable,2020-07-05 12:33:07 +0100CD500DDAE000,"The Bard's Tale ARPG: Remastered and Resnarkled",gpu;nvdec;online-working,ingame,2024-07-18 12:52:01 +01001E50141BC000,"The Battle Cats Unite!",deadlock,ingame,2021-12-14 21:38:34 +010089600E66A000,"The Big Journey",,playable,2022-09-16 14:03:08 +010021C000B6A000,"The Binding of Isaac: Afterbirth+",,playable,2021-04-26 14:11:56 +0100A5A00B2AA000,"The Bluecoats North & South",nvdec,playable,2020-12-10 21:22:29 +010062500BFC0000,"The Book of Unwritten Tales 2",,playable,2021-06-09 14:42:53 +01002A2004530000,"The Bridge",,playable,2020-06-03 13:53:26 +01008D700AB14000,"The Bug Butcher",,playable,2020-06-03 12:02:04 +01001B40086E2000,"The Bunker",nvdec,playable,2022-09-16 14:24:05 +010069100B7F0000,"The Caligula Effect: Overdose",UE4;gpu,ingame,2021-01-04 11:07:50 +010066800E9F8000,"The Childs Sight",,playable,2021-06-11 19:04:56 +0100B7C01169C000,"The Coma 2: Vicious Sisters",gpu,ingame,2020-06-20 12:51:51 +010033100691A000,"The Coma: Recut",,playable,2020-06-03 15:11:23 +01004170113D4000,"The Complex",nvdec,playable,2022-09-28 14:35:41 +01000F20102AC000,"The Copper Canyon Dixie Dash",UE4,playable,2022-09-29 11:42:29 +01000850037C0000,"The Count Lucanor",nvdec,playable,2022-08-22 15:26:37 +0100EBA01548E000,"The Cruel King and the Great Hero",gpu;services,ingame,2022-12-02 07:02:08 +010051800E922000,"The Dark Crystal: Age of Resistance Tactics",,playable,2020-08-11 13:43:41 +01003DE00918E000,"The Darkside Detective",,playable,2020-06-03 22:16:18 +01000A10041EA000,"The Elder Scrolls V: Skyrim",gpu;crash,ingame,2024-07-14 03:21:31 +01004A9006B84000,"The End Is Nigh",,playable,2020-06-01 11:26:45 +0100CA100489C000,"The Escapists 2",nvdec,playable,2020-09-24 12:31:31 +01001B700BA7C000,"The Escapists: Complete Edition",,playable,2021-02-24 17:50:31 +0100C2E0129A6000,"The Executioner",nvdec,playable,2021-01-23 00:31:28 +01006050114D4000,"The Experiment: Escape Room",gpu,ingame,2022-09-30 13:20:35 +0100B5900DFB2000,"The Eyes of Ara",,playable,2022-09-16 14:44:06 +01002DD00AF9E000,"The Fall",gpu,ingame,2020-05-31 23:31:16 +01003E5002320000,"The Fall Part 2: Unbound",,playable,2021-11-06 02:18:08 +0100CDC00789E000,"The Final Station",nvdec,playable,2022-08-22 15:54:39 +010098800A1E4000,"The First Tree",,playable,2021-02-24 15:51:05 +0100C38004DCC000,"The Flame In The Flood: Complete Edition",gpu;nvdec;UE4,ingame,2022-08-22 16:23:49 +010007700D4AC000,"The Forbidden Arts",,playable,2021-01-26 16:26:24 +010030700CBBC000,"The friends of Ringo Ishikawa",,playable,2022-08-22 16:33:17 +01006350148DA000,"The Gardener and the Wild Vines",gpu,ingame,2024-04-29 16:32:10 +0100B13007A6A000,"The Gardens Between",,playable,2021-01-29 16:16:53 +010036E00FB20000,"The Great Ace Attorney Chronicles",,playable,2023-06-22 21:26:29 +010007B012514000,"The Great Perhaps",,playable,2020-09-02 15:57:04 +01003B300E4AA000,"THE GRISAIA TRILOGY",,playable,2021-01-31 15:53:59 +01001950137D8000,"The Hong Kong Massacre",crash,ingame,2021-01-21 12:06:56 +01004AD00E094000,"The House of Da Vinci",,playable,2021-01-05 14:17:19 +01005A80113D2000,"The House of Da Vinci 2",,playable,2020-10-23 20:47:17 +010088401495E000,"The House of the Dead: Remake",,playable,2025-01-11 00:36:01 +0100E24004510000,"The Hunt - Championship Edition",32-bit,menus,2022-07-21 20:21:25 +01008940086E0000,"The Infectious Madness of Doctor Dekker",nvdec,playable,2022-08-22 16:45:01 +0100B0B00B318000,"The Inner World",nvdec,playable,2020-06-03 21:22:29 +0100A9D00B31A000,"The Inner World - The Last Wind Monk",nvdec,playable,2020-11-16 13:09:40 +0100AE5003EE6000,"The Jackbox Party Pack",online-working,playable,2023-05-28 09:28:40 +010015D003EE4000,"The Jackbox Party Pack 2",online-working,playable,2022-08-22 18:23:40 +0100CC80013D6000,"The Jackbox Party Pack 3",slow;online-working,playable,2022-08-22 18:41:06 +0100E1F003EE8000,"The Jackbox Party Pack 4",online-working,playable,2022-08-22 18:56:34 +010052C00B184000,"The Journey Down: Chapter One",nvdec,playable,2021-02-24 13:32:41 +01006BC00B188000,"The Journey Down: Chapter Three",nvdec,playable,2021-02-24 13:45:27 +01009AB00B186000,"The Journey Down: Chapter Two",nvdec,playable,2021-02-24 13:32:13 +010020500BD98000,"The King's Bird",,playable,2022-08-22 19:07:46 +010031B00DB34000,"the Knight & the Dragon",gpu,ingame,2023-08-14 10:31:43 +01007AF012E16000,"The Language Of Love",Needs Update;crash,nothing,2020-12-03 17:54:00 +010079C017F5E000,"The Lara Croft Collection",services-horizon;deadlock,nothing,2024-07-12 22:45:51 +0100449011506000,"The Last Campfire",,playable,2022-10-20 16:44:19 +0100AAD011592000,"The Last Dead End",gpu;UE4,ingame,2022-10-20 16:59:44 +0100AC800D022000,"THE LAST REMNANT Remastered",nvdec;UE4,playable,2023-02-09 17:24:44 +0100B1900F0B6000,"The Legend of Dark Witch",,playable,2020-07-12 15:18:33 +01001920156C2000,"The Legend of Heroes: Trails from Zero",gpu;mac-bug,ingame,2024-09-14 21:41:41 +01005420101DA000,"The Legend of Heroes: Trails of Cold Steel III",,playable,2020-12-16 10:59:18 +01009B101044C000,"The Legend of Heroes: Trails of Cold Steel III Demo",demo;nvdec,playable,2021-04-23 01:07:32 +0100D3C010DE8000,"The Legend of Heroes: Trails of Cold Steel IV",nvdec,playable,2021-04-23 14:01:05 +01005E5013862000,"THE LEGEND OF HEROES: ZERO NO KISEKI KAI [英雄傳說 零之軌跡:改]",crash,nothing,2021-09-30 14:41:07 +01008CF01BAAC000,"The Legend of Zelda Echoes of Wisdom",nvdec;ASTC;intel-vendor-bug,playable,2024-10-01 14:11:01 +0100509005AF2000,"The Legend of Zelda: Breath of the Wild Demo",demo,ingame,2022-12-24 05:02:58 +01007EF00011E000,"The Legend of Zelda™: Breath of the Wild",gpu;amd-vendor-bug;mac-bug,ingame,2024-09-23 19:35:46 +01006BB00C6F0000,"The Legend of Zelda™: Link’s Awakening",gpu;nvdec;mac-bug,ingame,2023-08-09 17:37:40 +01002DA013484000,"The Legend of Zelda™: Skyward Sword HD",gpu,ingame,2024-06-14 16:48:29 +0100F2C0115B6000,"The Legend of Zelda™: Tears of the Kingdom",gpu;amd-vendor-bug;intel-vendor-bug;mac-bug,ingame,2024-08-24 12:38:30 +0100A4400BE74000,"The LEGO Movie 2 Videogame",,playable,2023-03-01 11:23:37 +010064B00B95C000,"The Liar Princess and the Blind Prince",audio;slow,playable,2020-06-08 21:23:28 +0100735004898000,"The Lion's Song",,playable,2021-06-09 15:07:16 +0100A5000D590000,"The Little Acre",nvdec,playable,2021-03-02 20:22:27 +01007A700A87C000,"The Long Dark",,playable,2021-02-21 14:19:52 +010052B003A38000,"The Long Reach",nvdec,playable,2021-02-24 14:09:48 +01003C3013300000,"The Long Return",slow,playable,2020-12-10 21:05:10 +0100CE1004E72000,"The Longest Five Minutes",gpu,boots,2023-02-19 18:33:11 +0100F3D0122C2000,"The Longing",gpu,ingame,2022-11-12 15:00:58 +010085A00C5E8000,"The Lord of the Rings: Adventure Card Game - Definitive Edition",online-broken,menus,2022-09-16 15:19:32 +01008A000A404000,"The Lost Child",nvdec,playable,2021-02-23 15:44:20 +0100BAB00A116000,"The Low Road",,playable,2021-02-26 13:23:22 +,"The Mahjong",Needs Update;crash;services,nothing,2021-04-01 22:06:22 +0100DC300AC78000,"The Messenger",,playable,2020-03-22 13:51:37 +0100DEC00B2BC000,"The Midnight Sanctuary",nvdec;UE4;vulkan-backend-bug,playable,2022-10-03 17:17:32 +0100F1B00B456000,"The MISSING: J.J. Macfield and the Island of Memories",,playable,2022-08-22 19:36:18 +010033300AC1A000,"The Mooseman",,playable,2021-02-24 12:58:57 +01005E9016BDE000,"The movie The Quintessential Bride -Five Memories Spent with You-",,playable,2023-12-14 14:43:43 +0100496004194000,"The Mummy Demastered",,playable,2021-02-23 13:11:27 +01004C500AAF6000,"The Mystery of the Hudson Case",,playable,2020-06-01 11:03:36 +01000CF0084BC000,"The Next Penelope",,playable,2021-01-29 16:26:11 +01001FB00E386000,"THE NINJA SAVIORS Return of the Warriors",online,playable,2021-03-25 23:48:07 +0100B080184BC000,"The Oregon Trail",gpu,ingame,2022-11-25 16:11:49 +0100B0101265C000,"The Otterman Empire",UE4;gpu,ingame,2021-06-17 12:27:15 +01000BC01801A000,"The Outbound Ghost",,nothing,2024-03-02 17:10:58 +0100626011656000,"The Outer Worlds",gpu;nvdec;UE4;vulkan-backend-bug;opengl-backend-bug,ingame,2022-10-03 17:55:32 +01005C500D690000,"The Park",UE4;crash;gpu,ingame,2020-12-18 12:50:07 +010050101127C000,"The Persistence",nvdec,playable,2021-06-06 19:15:40 +0100CD300880E000,"The Pinball Arcade",online-broken,playable,2022-08-22 19:49:46 +01006BD018B54000,"The Plucky Squire",crash,ingame,2024-09-27 22:32:33 +0100E6A00B960000,"The Princess Guide",,playable,2021-02-24 14:23:34 +010058A00BF1C000,"The Raven Remastered",nvdec,playable,2022-08-22 20:02:47 +0100EB100D17C000,"The Red Strings Club",,playable,2020-06-01 10:51:18 +010079400BEE0000,"The Room",,playable,2021-04-14 18:57:05 +010033100EE12000,"The Ryuo's Work is Never Done!",,playable,2022-03-29 00:35:37 +01002BA00C7CE000,"The Savior's Gang",gpu;nvdec;UE4,ingame,2022-09-21 12:37:48 +0100F3200E7CA000,"The Settlers®: New Allies",deadlock,nothing,2023-10-25 00:18:05 +0100F89003BC8000,"The Sexy Brutale",,playable,2021-01-06 17:48:28 +01001FF00BEE8000,"The Shapeshifting Detective",nvdec,playable,2021-01-10 13:10:49 +010028D00BA1A000,"The Sinking City",nvdec;UE4,playable,2022-09-12 16:41:55 +010041C00A68C000,"The Spectrum Retreat",,playable,2022-10-03 18:52:40 +010029300E5C4000,"The Stanley Parable: Ultra Deluxe",gpu,ingame,2024-07-12 23:18:26 +010007F00AF56000,"The Station",,playable,2022-09-28 18:15:27 +0100858010DC4000,"the StoryTale",,playable,2022-09-03 13:00:25 +0100AA400A238000,"The Stretchers™",nvdec;UE4,playable,2022-09-16 15:40:58 +0100E3100450E000,"The Strike - Championship Edition",gpu;32-bit,boots,2022-12-09 15:58:16 +0100EF200DA60000,"The Survivalists",,playable,2020-10-27 15:51:13 +010040D00B7CE000,"The Swindle",nvdec,playable,2022-08-22 20:53:52 +010037D00D568000,"The Swords of Ditto: Mormo's Curse",slow,ingame,2020-12-06 00:13:12 +01009B300D76A000,"The Tiny Bang Story",,playable,2021-03-05 15:39:05 +0100C3300D8C4000,"The Touryst",crash,ingame,2023-08-22 01:32:38 +010047300EBA6000,"The Tower of Beatrice",,playable,2022-09-12 16:51:42 +010058000A576000,"The Town of Light: Deluxe Edition",gpu,playable,2022-09-21 12:51:34 +0100B0E0086F6000,"The Trail: Frontier Challenge",slow,playable,2022-08-23 15:10:51 +0100EA100F516000,"The Turing Test",nvdec,playable,2022-09-21 13:24:07 +010064E00ECBC000,"The Unicorn Princess",,playable,2022-09-16 16:20:56 +0100BCF00E970000,"The Vanishing of Ethan Carter",UE4,playable,2021-06-09 17:14:47 +0100D0500B0A6000,"The VideoKid",nvdec,playable,2021-01-06 09:28:24 +,"The Voice",services,menus,2020-07-28 20:48:49 +010056E00B4F4000,"The Walking Dead: A New Frontier",,playable,2022-09-21 13:40:48 +010099100B6AC000,"The Walking Dead: Season Two",,playable,2020-08-09 12:57:06 +010029200B6AA000,"The Walking Dead: The Complete First Season",,playable,2021-06-04 13:10:56 +010060F00AA70000,"The Walking Dead: The Final Season - Season Pass",online-broken,playable,2022-08-23 17:22:32 +010095F010568000,"The Wanderer: Frankenstein's Creature",,playable,2020-07-11 12:49:51 +01008B200FC6C000,"The Wardrobe: Even Better Edition",,playable,2022-09-16 19:14:55 +01003D100E9C6000,"The Witcher 3: Wild Hunt",nvdec;vulkan-backend-bug;amd-vendor-bug,playable,2024-02-22 12:21:51 +0100B1300FF08000,"The Wonderful 101: Remastered",slow;nvdec,playable,2022-09-30 13:49:28 +0100C1500B82E000,"The World Ends with You®: Final Remix",ldn-untested,playable,2022-07-09 01:11:21 +0100E6200D56E000,"The World Next Door",,playable,2022-09-21 14:15:23 +010075900CD1C000,"Thea: The Awakening",,playable,2021-01-18 15:08:47 +010081B01777C000,"THEATRHYTHM FINAL BAR LINE",Incomplete,ingame,2024-08-05 14:24:55 +01001C2010D08000,"They Bleed Pixels",gpu,ingame,2024-08-09 05:52:18 +0100768010970000,"They Came From the Sky",,playable,2020-06-12 16:38:19 +0100CE700F62A000,"Thief of Thieves: Season One",crash;loader-allocator,nothing,2021-11-03 07:16:30 +0100CE400E34E000,"Thief Simulator",,playable,2023-04-22 04:39:11 +01009BD003B36000,"Thimbleweed Park",,playable,2022-08-24 11:15:31 +0100F2300A5DA000,"Think of the Children",deadlock,menus,2021-11-23 09:04:45 +0100066004D68000,"This Is the Police",,playable,2022-08-24 11:37:05 +01004C100A04C000,"This is the Police 2",,playable,2022-08-24 11:49:17 +0100C7C00F77C000,"This Strange Realm Of Mine",,playable,2020-08-28 12:07:24 +0100A8700BC2A000,"This War of Mine: Complete Edition",gpu;32-bit;nvdec,ingame,2022-08-24 12:00:44 +0100AC500EEE8000,"THOTH",,playable,2020-08-05 18:35:28 +0100E910103B4000,"Thronebreaker: The Witcher Tales",nvdec,playable,2021-06-03 16:40:15 +01006F6002840000,"Thumper",gpu,ingame,2024-08-12 02:41:07 +01000AC011588000,"Thy Sword",crash,ingame,2022-09-30 16:43:14 +0100E9000C42C000,"Tick Tock: A Tale for Two",,menus,2020-07-14 14:49:38 +0100B6D00C2DE000,"Tied Together",nvdec,playable,2021-04-10 14:03:46 +010074500699A000,"Timber Tennis: Versus",online,playable,2020-10-03 17:07:15 +01004C500B698000,"Time Carnage",,playable,2021-06-16 17:57:28 +0100F770045CA000,"Time Recoil",,playable,2022-08-24 12:44:03 +0100DD300CF3A000,"Timespinner",gpu,ingame,2022-08-09 09:39:11 +0100393013A10000,"Timothy and the Mysterious Forest",gpu;slow,ingame,2021-06-02 00:42:11 +0100F7C010AF6000,"Tin & Kuna",,playable,2020-11-17 12:16:12 +0100DF900FC52000,"Tiny Gladiators",,playable,2020-12-14 00:09:43 +010061A00AE64000,"Tiny Hands Adventure",,playable,2022-08-24 16:07:48 +010074800741A000,"TINY METAL",UE4;gpu;nvdec,ingame,2021-03-05 17:11:57 +01005D0011A40000,"Tiny Racer",,playable,2022-10-07 11:13:03 +010002401AE94000,"Tiny Thor",gpu,ingame,2024-07-26 08:37:35 +0100A73016576000,"Tinykin",gpu,ingame,2023-06-18 12:12:24 +0100FE801185E000,"Titan Glory",,boots,2022-10-07 11:36:40 +0100605008268000,"Titan Quest",nvdec;online-broken,playable,2022-08-19 21:54:15 +01009C400E93E000,"Titans Pinball",slow,playable,2020-06-09 16:53:52 +010019500DB1E000,"Tlicolity Eyes - twinkle showtime -",gpu,boots,2021-05-29 19:43:44 +010036700F83E000,"To the Moon",,playable,2021-03-20 15:33:38 +010014900865A000,"Toast Time: Smash Up!",crash;services,menus,2020-04-03 12:26:59 +0100A4A00B2E8000,"Toby: The Secret Mine",nvdec,playable,2021-01-06 09:22:33 +0100B5200BB7C000,"ToeJam & Earl: Back in the Groove!",,playable,2021-01-06 22:56:58 +0100B5E011920000,"TOHU",slow,playable,2021-02-08 15:40:44 +0100F3400A432000,"Toki",nvdec,playable,2021-01-06 19:59:23 +01003E500F962000,"Tokyo Dark – Remembrance –",nvdec,playable,2021-06-10 20:09:49 +0100A9400C9C2000,"Tokyo Mirage Sessions™ #FE Encore",32-bit;nvdec,playable,2022-07-07 09:41:07 +0100E2E00CB14000,"Tokyo School Life",,playable,2022-09-16 20:25:54 +010024601BB16000,"Tomb Raider I-III Remastered Starring Lara Croft",gpu;opengl,ingame,2024-09-27 12:32:04 +0100D7F01E49C000,"Tomba! Special Edition",services-horizon,nothing,2024-09-15 21:59:54 +0100D400100F8000,"Tonight We Riot",,playable,2021-02-26 15:55:09 +0100CC00102B4000,"Tony Hawk's™ Pro Skater™ 1 + 2",gpu;Needs Update,ingame,2024-09-24 08:18:14 +010093F00E818000,"Tools Up!",crash,ingame,2020-07-21 12:58:17 +01009EA00E2B8000,"Toon War",,playable,2021-06-11 16:41:53 +010090400D366000,"Torchlight II",,playable,2020-07-27 14:18:37 +010075400DDB8000,"Torchlight III",nvdec;online-broken;UE4,playable,2022-10-14 22:20:17 +01007AF011732000,"TORICKY-S",deadlock,menus,2021-11-25 08:53:36 +0100BEB010F2A000,"Torn Tales: Rebound Edition",,playable,2020-11-01 14:11:59 +0100A64010D48000,"Total Arcade Racing",,playable,2022-11-12 15:12:48 +0100512010728000,"Totally Reliable Delivery Service",online-broken,playable,2024-09-27 19:32:22 +01004E900B082000,"Touhou Genso Wanderer Reloaded",gpu;nvdec,ingame,2022-08-25 11:57:36 +010010F004022000,"Touhou Kobuto V: Burst Battle",,playable,2021-01-11 15:28:58 +0100E9D00D6C2000,"TOUHOU Spell Bubble",,playable,2020-10-18 11:43:43 +0100F7B00595C000,"Tower Of Babel",,playable,2021-01-06 17:05:15 +010094600DC86000,"Tower Of Time",gpu;nvdec,ingame,2020-07-03 11:11:12 +0100A1C00359C000,"TowerFall",,playable,2020-05-16 18:58:07 +0100F6200F77E000,"Towertale",,playable,2020-10-15 13:56:58 +010049E00BA34000,"Townsmen - A Kingdom Rebuilt",nvdec,playable,2022-10-14 22:48:59 +01009FF00A160000,"Toy Stunt Bike: Tiptop's Trials",UE4,playable,2021-04-10 13:56:34 +0100192010F5A000,"Tracks - Toybox Edition",UE4;crash,nothing,2021-02-08 15:19:18 +0100BCA00843A000,"Trailblazers",,playable,2021-03-02 20:40:49 +010009F004E66000,"Transcripted",,playable,2022-08-25 12:13:11 +01005E500E528000,"TRANSFORMERS: BATTLEGROUNDS",online,playable,2021-06-17 18:08:19 +0100BE500BEA2000,"Transistor",,playable,2020-10-22 11:28:02 +0100A8D010BFA000,"Travel Mosaics 2: Roman Holiday",,playable,2021-05-26 12:33:16 +0100102010BFC000,"Travel Mosaics 3: Tokyo Animated",,playable,2021-05-26 12:06:27 +010096D010BFE000,"Travel Mosaics 4: Adventures In Rio",,playable,2021-05-26 11:54:58 +01004C4010C00000,"Travel Mosaics 5: Waltzing Vienna",,playable,2021-05-26 11:49:35 +0100D520119D6000,"Travel Mosaics 6: Christmas Around the World",,playable,2021-05-26 00:52:47 +01000BD0119DE000,"Travel Mosaics 7: Fantastic Berlin",,playable,2021-05-22 18:37:34 +01007DB00A226000,"Travel Mosaics: A Paris Tour",,playable,2021-05-26 12:42:26 +010011600C946000,"Travis Strikes Again: No More Heroes",nvdec;UE4,playable,2022-08-25 12:36:38 +01006EB004B0E000,"Treadnauts",,playable,2021-01-10 14:57:41 +0100D7800E9E0000,"Trials of Mana",UE4,playable,2022-09-30 21:50:37 +0100E1D00FBDE000,"Trials of Mana Demo",nvdec;UE4;demo;vulkan-backend-bug,playable,2022-09-26 18:00:02 +01003E800A102000,"Trials Rising Standard Edition",,playable,2024-02-11 01:36:39 +0100CC80140F8000,"TRIANGLE STRATEGY™",gpu;Needs Update;UE4;vulkan-backend-bug,ingame,2024-09-25 20:48:37 +010064E00A932000,"Trine 2: Complete Story",nvdec,playable,2021-06-03 11:45:20 +0100DEC00A934000,"Trine 3: The Artifacts of Power",ldn-untested;online,playable,2021-06-03 12:01:24 +010055E00CA68000,"Trine 4: The Nightmare Prince",gpu,nothing,2025-01-07 05:47:46 +0100D9000A930000,"Trine Enchanted Edition",ldn-untested;nvdec,playable,2021-06-03 11:28:15 +01002D7010A54000,"Trinity Trigger",crash,ingame,2023-03-03 03:09:09 +0100868013FFC000,"TRIVIAL PURSUIT Live! 2",,boots,2022-12-19 00:04:33 +0100F78002040000,"Troll and I™",gpu;nvdec,ingame,2021-06-04 16:58:50 +0100145011008000,"Trollhunters: Defenders of Arcadia",gpu;nvdec,ingame,2020-11-30 13:27:09 +0100FBE0113CC000,"Tropico 6 - Nintendo Switch™ Edition",nvdec;UE4,playable,2022-10-14 23:21:03 +0100D06018DCA000,"Trouble Witches Final! Episode 01: Daughters of Amalgam",,playable,2024-04-08 15:08:11 +0100B5B0113CE000,"Troubleshooter",UE4;crash,nothing,2020-10-04 13:46:50 +010089600FB72000,"Trover Saves The Universe",UE4;crash,nothing,2020-10-03 10:25:27 +0100E6300D448000,"Trüberbrook",,playable,2021-06-04 17:08:00 +0100F2100AA5C000,"Truck and Logistics Simulator",,playable,2021-06-11 13:29:08 +0100CB50107BA000,"Truck Driver",online-broken,playable,2022-10-20 17:42:33 +0100E75004766000,"True Fear: Forsaken Souls - Part 1",nvdec,playable,2020-12-15 21:39:52 +010099900CAB2000,"TT Isle of Man",nvdec,playable,2020-06-22 12:25:13 +010000400F582000,"TT Isle of Man Ride on the Edge 2",gpu;nvdec;online-broken,ingame,2022-09-30 22:13:05 +0100752011628000,"TTV2",,playable,2020-11-27 13:21:36 +0100AFE00452E000,"Tumblestone",,playable,2021-01-07 17:49:20 +010085500D5F6000,"Turok",gpu,ingame,2021-06-04 13:16:24 +0100CDC00D8D6000,"Turok 2: Seeds of Evil",gpu;vulkan,ingame,2022-09-12 17:50:05 +010004B0130C8000,"Turrican Flashback",audout,playable,2021-08-30 10:07:56 +0100B1F0090F2000,"TurtlePop: Journey to Freedom",,playable,2020-06-12 17:45:39 +0100047009742000,"Twin Robots: Ultimate Edition",nvdec,playable,2022-08-25 14:24:03 +010031200E044000,"Two Point Hospital™",crash;nvdec,ingame,2022-09-22 11:22:23 +010038400C2FE000,"TY the Tasmanian Tiger™ HD",32-bit;crash;nvdec,menus,2020-12-17 21:15:00 +010073A00C4B2000,"Tyd wag vir Niemand",,playable,2021-03-02 13:39:53 +0100D5B00D6DA000,"Type:Rider",,playable,2021-01-06 13:12:55 +010040D01222C000,"UBERMOSH: SANTICIDE",,playable,2020-11-27 15:05:01 +0100992010BF8000,"Ubongo",,playable,2021-02-04 21:15:01 +010079000B56C000,"UglyDolls: An Imperfect Adventure",nvdec;UE4,playable,2022-08-25 14:42:16 +010048901295C000,"Ultimate Fishing Simulator",,playable,2021-06-16 18:38:23 +01009D000FAE0000,"Ultimate Racing 2D",,playable,2020-08-05 17:27:09 +010045200A1C2000,"Ultimate Runner",,playable,2022-08-29 12:52:40 +01006B601117E000,"Ultimate Ski Jumping 2020",online,playable,2021-03-02 20:54:11 +01002D4012222000,"Ultra Hat Dimension",services;audio,menus,2021-11-18 09:05:20 +01009C000415A000,"Ultra Hyperball",,playable,2021-01-06 10:09:55 +01007330027EE000,"Ultra Street Fighter® II: The Final Challengers",ldn-untested,playable,2021-11-25 07:54:58 +01006A300BA2C000,"Umineko no Naku Koro ni Saku - うみねこのなく頃に咲 ~猫箱と夢想の交響曲~",audout,playable,2023-05-04 17:25:23 +0100592005164000,"UNBOX: Newbie's Adventure",UE4,playable,2022-08-29 13:12:56 +01002D900C5E4000,"Uncanny Valley",nvdec,playable,2021-06-04 13:28:45 +010076F011F54000,"Undead & Beyond",nvdec,playable,2022-10-04 09:11:18 +01008F3013E4E000,"Under Leaves",,playable,2021-05-22 18:13:58 +010080B00AD66000,"Undertale",,playable,2022-08-31 17:31:46 +01008F80049C6000,"Unepic",,playable,2024-01-15 17:03:00 +01007820096FC000,"UnExplored",,playable,2021-01-06 10:02:16 +01007D1013512000,"Unhatched",,playable,2020-12-11 12:11:09 +010069401ADB8000,"Unicorn Overlord",,playable,2024-09-27 14:04:32 +0100B1400D92A000,"Unit 4",,playable,2020-12-16 18:54:13 +010045200D3A4000,"Unknown Fate",slow,ingame,2020-10-15 12:27:42 +0100AB2010B4C000,"Unlock The King",,playable,2020-09-01 13:58:27 +0100A3E011CB0000,"Unlock the King 2",,playable,2021-06-15 20:43:55 +01005AA00372A000,"UNO® for Nintendo Switch",nvdec;ldn-untested,playable,2022-07-28 14:49:47 +0100E5D00CC0C000,"Unravel Two",nvdec,playable,2024-05-23 15:45:05 +010001300CC4A000,"Unruly Heroes",,playable,2021-01-07 18:09:31 +0100B410138C0000,"Unspottable",,playable,2022-10-25 19:28:49 +010082400BCC6000,"Untitled Goose Game",,playable,2020-09-26 13:18:06 +0100E49013190000,"Unto The End",gpu,ingame,2022-10-21 11:13:29 +0100B110109F8000,"Urban Flow",services,playable,2020-07-05 12:51:47 +010054F014016000,"Urban Street Fighting",,playable,2021-02-20 19:16:36 +01001B10068EC000,"Urban Trial Playground",UE4;nvdec;online,playable,2021-03-25 20:56:51 +0100A2500EB92000,"Urban Trial Tricky",nvdec;UE4,playable,2022-12-06 13:07:56 +01007C0003AEC000,"Use Your Words",nvdec;online-broken,menus,2022-08-29 17:22:10 +0100D4300EBF8000,"Uta no Prince-sama Amazing Aria & Sweet Serenade LOVE",crash;Needs More Attention;Needs Update,nothing,2022-02-09 08:57:44 +010024200E00A000,"Uta no☆Prince-sama♪ Repeat Love",nvdec,playable,2022-12-09 09:21:51 +010029B00CC3E000,"UTOPIA 9 - A Volatile Vacation",nvdec,playable,2020-12-16 17:06:42 +010064400B138000,"V-Rally 4",gpu;nvdec,ingame,2021-06-07 19:37:31 +0100A6700D66E000,"VA-11 HALL-A",,playable,2021-02-26 15:05:34 +01009E2003FE2000,"Vaccine",nvdec,playable,2021-01-06 01:02:07 +010089700F30C000,"Valfaris",,playable,2022-09-16 21:37:24 +0100CAF00B744000,"Valkyria Chronicles",32-bit;crash;nvdec,ingame,2022-11-23 20:03:32 +01005C600AC68000,"Valkyria Chronicles 4",audout;nvdec,playable,2021-06-03 18:12:25 +0100FBD00B91E000,"Valkyria Chronicles 4 Demo",slow;demo,ingame,2022-08-29 20:39:07 +0100E0E00B108000,"Valley",nvdec,playable,2022-09-28 19:27:58 +010089A0197E4000,"Vampire Survivors",,ingame,2024-06-17 09:57:38 +010020C00FFB6000,"Vampire: The Masquerade - Coteries of New York",,playable,2020-10-04 14:55:22 +01000BD00CE64000,"VAMPYR",nvdec;UE4,playable,2022-09-16 22:15:51 +01007C500D650000,"Vandals",,playable,2021-01-27 21:45:46 +010030F00CA1E000,"Vaporum",nvdec,playable,2021-05-28 14:25:33 +010045C0109F2000,"VARIABLE BARRICADE NS",nvdec,playable,2022-02-26 15:50:13 +0100FE200AF48000,"VASARA Collection",nvdec,playable,2021-02-28 15:26:10 +0100AD300E4FA000,"Vasilis",,playable,2020-09-01 15:05:35 +01009CD003A0A000,"Vegas Party",,playable,2021-04-14 19:21:41 +010098400E39E000,"Vektor Wars",online-broken;vulkan-backend-bug,playable,2022-10-04 09:23:46 +01003A8018E60000,"Vengeful Guardian: Moonrider",deadlock,boots,2024-03-17 23:35:37 +010095B00DBC8000,"Venture Kid",crash;gpu,ingame,2021-04-18 16:33:17 +0100C850134A0000,"Vera Blanc: Full Moon",audio,playable,2020-12-17 12:09:30 +0100379013A62000,"Very Very Valet",nvdec,playable,2022-11-12 15:25:51 +01006C8014DDA000,"Very Very Valet Demo",crash;Needs Update;demo,boots,2022-11-12 15:26:13 +010057B00712C000,"Vesta",nvdec,playable,2022-08-29 21:03:39 +0100E81007A06000,"Victor Vran Overkill Edition",gpu;deadlock;nvdec;opengl,ingame,2022-08-30 11:46:56 +01005880063AA000,"Violett",nvdec,playable,2021-01-28 13:09:36 +010037900CB1C000,"Viviette",,playable,2021-06-11 15:33:40 +0100D010113A8000,"Void Bastards",,playable,2022-10-15 00:04:19 +0100FF7010E7E000,"void tRrLM(); //Void Terrarium",gpu;Needs Update;regression,ingame,2023-02-10 01:13:25 +010078D0175EE000,"void* tRrLM2(); //Void Terrarium 2",,playable,2023-12-21 11:00:41 +0100B1A0066DC000,"Volgarr the Viking",,playable,2020-12-18 15:25:50 +0100A7900E79C000,"Volta-X",online-broken,playable,2022-10-07 12:20:51 +01004D8007368000,"Vostok Inc.",,playable,2021-01-27 17:43:59 +0100B1E0100A4000,"Voxel Galaxy",,playable,2022-09-28 22:45:02 +0100AFA011068000,"Voxel Pirates",,playable,2022-09-28 22:55:02 +0100BFB00D1F4000,"Voxel Sword",,playable,2022-08-30 14:57:27 +01004E90028A2000,"Vroom in the night sky",Needs Update;vulkan-backend-bug,playable,2023-02-20 02:32:29 +0100C7C00AE6C000,"VSR: Void Space Racing",,playable,2021-01-27 14:08:59 +0100B130119D0000,"Waifu Uncovered",crash,ingame,2023-02-27 01:17:46 +0100E29010A4A000,"Wanba Warriors",,playable,2020-10-04 17:56:22 +010078800825E000,"Wanderjahr TryAgainOrWalkAway",,playable,2020-12-16 09:46:04 +0100B27010436000,"Wanderlust Travel Stories",,playable,2021-04-07 16:09:12 +0100F8A00853C000,"Wandersong",nvdec,playable,2021-06-04 15:33:34 +0100D67013910000,"Wanna Survive",,playable,2022-11-12 21:15:43 +010056901285A000,"War Dogs: Red's Return",,playable,2022-11-13 15:29:01 +01004FA01391A000,"War Of Stealth - assassin",,playable,2021-05-22 17:34:38 +010035A00D4E6000,"War Party",nvdec,playable,2021-01-27 18:26:32 +010049500DE56000,"War Tech Fighters",nvdec,playable,2022-09-16 22:29:31 +010084D00A134000,"War Theatre",gpu,ingame,2021-06-07 19:42:45 +0100B6B013B8A000,"War Truck Simulator",,playable,2021-01-31 11:22:54 +0100563011B4A000,"War-Torn Dreams",crash,nothing,2020-10-21 11:36:16 +010054900F51A000,"WARBORN",,playable,2020-06-25 12:36:47 +01000F0002BB6000,"Wargroove",online-broken,playable,2022-08-31 10:30:45 +0100C6000EEA8000,"Warhammer 40,000: Mechanicus",nvdec,playable,2021-06-13 10:46:38 +0100E5600D7B2000,"WARHAMMER 40,000: SPACE WOLF",online-broken,playable,2022-09-20 21:11:20 +010031201307A000,"Warhammer Age of Sigmar: Storm Ground",nvdec;online-broken;UE4,playable,2022-11-13 15:46:14 +01002FF00F460000,"Warhammer Quest 2: The End Times",,playable,2020-08-04 15:28:03 +0100563010E0C000,"WarioWare™: Get It Together!",gpu;opengl-backend-bug,ingame,2024-04-23 01:04:56 +010045B018EC2000,"WarioWare™: Move It!",,playable,2023-11-14 00:23:51 +0100E0400E320000,"Warlocks 2: God Slayers",,playable,2020-12-16 17:36:50 +0100DB300A026000,"Warp Shift",nvdec,playable,2020-12-15 14:48:48 +010032700EAC4000,"WarriOrb",UE4,playable,2021-06-17 15:45:14 +0100E8500AD58000,"WARRIORS OROCHI 4 ULTIMATE",nvdec;online-broken,playable,2024-08-07 01:50:37 +0100CD900FB24000,"WARTILE",UE4;crash;gpu,menus,2020-12-11 21:56:10 +010039A00BC64000,"Wasteland 2: Director's Cut",nvdec,playable,2021-01-27 13:34:11 +0100B79011F06000,"Water Balloon Mania",,playable,2020-10-23 20:20:59 +0100BA200C378000,"Way of the Passive Fist",gpu,ingame,2021-02-26 21:07:06 +0100560010E3E000,"We should talk.",crash,nothing,2020-08-03 12:32:36 +010096000EEBA000,"Welcome to Hanwell",UE4;crash,boots,2020-08-03 11:54:57 +0100D7F010B94000,"Welcome to Primrose Lake",,playable,2022-10-21 11:30:57 +010035600EC94000,"Wenjia",,playable,2020-06-08 11:38:30 +010031B00A4E8000,"West of Loathing",,playable,2021-01-28 12:35:19 +010038900DFE0000,"What Remains of Edith Finch",slow;UE4,playable,2022-08-31 19:57:59 +010033600ADE6000,"Wheel of Fortune®",crash;Needs More Attention;nvdec,boots,2023-11-12 20:29:24 +0100DFC00405E000,"Wheels of Aurelia",,playable,2021-01-27 21:59:25 +010027D011C9C000,"Where Angels Cry",gpu;nvdec,ingame,2022-09-30 22:24:47 +0100FDB0092B4000,"Where Are My Friends?",,playable,2022-09-21 14:39:26 +01000C000C966000,"Where the Bees Make Honey",,playable,2020-07-15 12:40:49 +010017500E7E0000,"Whipseey and the Lost Atlas",,playable,2020-06-23 20:24:14 +010015A00AF1E000,"Whispering Willows",nvdec,playable,2022-09-30 22:33:05 +010027F0128EA000,"Who Wants to Be a Millionaire?",crash,nothing,2020-12-11 20:22:42 +0100C7800CA06000,"Widget Satchel",,playable,2022-09-16 22:41:07 +0100CFC00A1D8000,"Wild Guns™ Reloaded",,playable,2021-01-28 12:29:05 +010071F00D65A000,"Wilmot's Warehouse",audio;gpu,ingame,2021-06-02 17:24:32 +010048800B638000,"Windjammers",online,playable,2020-10-13 11:24:25 +010059900BA3C000,"Windscape",,playable,2022-10-21 11:49:42 +0100D6800CEAC000,"Windstorm: An Unexpected Arrival",UE4,playable,2021-06-07 19:33:19 +01005A100B314000,"Windstorm: Start of a Great Friendship",UE4;gpu;nvdec,ingame,2020-12-22 13:17:48 +010035B012F28000,"Wing of Darkness",UE4,playable,2022-11-13 16:03:51 +0100A4A015FF0000,"Winter Games 2023",deadlock,menus,2023-11-07 20:47:36 +010012A017F18800,"Witch On The Holy Night",,playable,2023-03-06 23:28:11 +0100454012E32000,"Witch Spring 3 Re:Fine -The Story of the Marionette Witch Eirudy-",crash,ingame,2021-08-08 11:56:18 +01002FC00C6D0000,"Witch Thief",,playable,2021-01-27 18:16:07 +010061501904E000,"Witch's Garden",gpu;crash;vulkan-backend-bug;opengl-backend-bug,ingame,2023-01-11 02:11:24 +0100BD4011FFE000,"Witcheye",,playable,2020-12-14 22:56:08 +0100522007AAA000,"Wizard of Legend",,playable,2021-06-07 12:20:46 +010081900F9E2000,"Wizards of Brandel",,nothing,2020-10-14 15:52:33 +0100C7600E77E000,"Wizards: Wand of Epicosity",,playable,2022-10-07 12:32:06 +01009040091E0000,"Wolfenstein II®: The New Colossus™",gpu,ingame,2024-04-05 05:39:46 +01003BD00CAAE000,"Wolfenstein: Youngblood",online-broken,boots,2024-07-12 23:49:20 +010037A00F5E2000,"Wonder Blade",,playable,2020-12-11 17:55:31 +0100B49016FF0000,"Wonder Boy Anniversary Collection",deadlock,nothing,2023-04-20 16:01:48 +0100EB2012E36000,"Wonder Boy Asha in Monster World",crash,nothing,2021-11-03 08:45:06 +0100A6300150C000,"Wonder Boy: The Dragon's Trap",,playable,2021-06-25 04:53:21 +0100F5D00C812000,"Wondershot",,playable,2022-08-31 21:05:31 +0100E0300EB04000,"Woodle Tree 2: Deluxe",gpu;slow,ingame,2020-06-04 18:44:00 +0100288012966000,"Woodsalt",,playable,2021-04-06 17:01:48 +010083E011BC8000,"Wordify",,playable,2020-10-03 09:01:07 +01009D500A194000,"World Conqueror X",,playable,2020-12-22 16:10:29 +010072000BD32000,"WORLD OF FINAL FANTASY MAXIMA",,playable,2020-06-07 13:57:23 +010009E001D90000,"World of Goo",gpu;32-bit;crash;regression,boots,2024-04-12 05:52:14 +010061F01DB7C800,"World of Goo 2",,boots,2024-08-08 22:52:49 +01001E300B038000,"World Soccer Pinball",,playable,2021-01-06 00:37:02 +010048900CF64000,"Worldend Syndrome",,playable,2021-01-03 14:16:32 +01008E9007064000,"WorldNeverland - Elnea Kingdom",,playable,2021-01-28 17:44:23 +010000301025A000,"Worlds of Magic: Planar Conquest",,playable,2021-06-12 12:51:28 +01009CD012CC0000,"Worm Jazz",gpu;services;UE4;regression,ingame,2021-11-10 10:33:04 +01001AE005166000,"Worms W.M.D",gpu;crash;nvdec;ldn-untested,boots,2023-09-16 21:42:59 +010037500C4DE000,"Worse Than Death",,playable,2021-06-11 16:05:40 +01006F100EB16000,"Woven",nvdec,playable,2021-06-02 13:41:08 +010087800DCEA000,"WRC 8 FIA World Rally Championship",nvdec,playable,2022-09-16 23:03:36 +01001A0011798000,"WRC 9 The Official Game",gpu;slow;nvdec,ingame,2022-10-25 19:47:39 +0100DC0012E48000,"Wreckfest",,playable,2023-02-12 16:13:00 +0100C5D00EDB8000,"Wreckin' Ball Adventure",UE4,playable,2022-09-12 18:56:28 +010033700418A000,"Wulverblade",nvdec,playable,2021-01-27 22:29:05 +01001C400482C000,"Wunderling DX",audio;crash,ingame,2022-09-10 13:20:12 +01003B401148E000,"Wurroom",,playable,2020-10-07 22:46:21 +010081700EDF4000,"WWE 2K Battlegrounds",nvdec;online-broken;UE4,playable,2022-10-07 12:44:40 +010009800203E000,"WWE 2K18",nvdec,playable,2023-10-21 17:22:01 +0100DF100B97C000,"X-Morph: Defense",,playable,2020-06-22 11:05:31 +0100D0B00FB74000,"XCOM® 2 Collection",gpu;crash,ingame,2022-10-04 09:38:30 +0100CC9015360000,"XEL",gpu,ingame,2022-10-03 10:19:39 +0100C9F009F7A000,"Xenoblade Chronicles 2: Torna ~ The Golden Country",slow;nvdec,playable,2023-01-28 16:47:28 +0100E95004038000,"Xenoblade Chronicles™ 2",deadlock;amd-vendor-bug,ingame,2024-03-28 14:31:41 +010074F013262000,"Xenoblade Chronicles™ 3",gpu;crash;nvdec;vulkan-backend-bug;amd-vendor-bug,ingame,2024-08-06 19:56:44 +0100FF500E34A000,"Xenoblade Chronicles™ Definitive Edition",nvdec,playable,2024-05-04 20:12:41 +010028600BA16000,"Xenon Racer",nvdec;UE4,playable,2022-08-31 22:05:30 +010064200C324000,"Xenon Valkyrie+",,playable,2021-06-07 20:25:53 +0100928005BD2000,"Xenoraid",,playable,2022-09-03 13:01:10 +01005B5009364000,"Xeodrifter",,playable,2022-09-03 13:18:39 +01006FB00DB02000,"Yaga",nvdec,playable,2022-09-16 23:17:17 +010076B0101A0000,"YesterMorrow",crash,ingame,2020-12-17 17:15:25 +010085500B29A000,"Yet Another Zombie Defense HD",,playable,2021-01-06 00:18:39 +0100725019978000,"YGGDRA UNION ~WE'LL NEVER FIGHT ALONE~",,playable,2020-04-03 02:20:47 +0100634008266000,"YIIK: A Postmodern RPG",,playable,2021-01-28 13:38:37 +0100C0000CEEA000,"Yo kai watch 1 for Nintendo Switch",gpu;opengl,ingame,2024-05-28 11:11:49 +010086C00AF7C000,"Yo-Kai Watch 4++",,playable,2024-06-18 20:21:44 +010002D00632E000,"Yoku's Island Express",nvdec,playable,2022-09-03 13:59:02 +0100F47016F26000,"Yomawari 3",,playable,2022-05-10 08:26:51 +010012F00B6F2000,"Yomawari: The Long Night Collection",,playable,2022-09-03 14:36:59 +0100CC600ABB2000,"Yonder: The Cloud Catcher Chronicles (Retail Only)",,playable,2021-01-28 14:06:25 +0100BE50042F6000,"Yono and the Celestial Elephants",,playable,2021-01-28 18:23:58 +0100F110029C8000,"Yooka-Laylee",,playable,2021-01-28 14:21:45 +010022F00DA66000,"Yooka-Laylee and the Impossible Lair",,playable,2021-03-05 17:32:21 +01006000040C2000,"Yoshi’s Crafted World™",gpu;audout,ingame,2021-08-30 13:25:51 +0100AE800C9C6000,"Yoshi’s Crafted World™ Demo",gpu,boots,2020-12-16 14:57:40 +,"Yoshiwara Higanbana Kuon no Chigiri",nvdec,playable,2020-10-17 19:14:46 +01003A400C3DA800,"YouTube",,playable,2024-06-08 05:24:10 +00100A7700CCAA40,"Youtubers Life00",nvdec,playable,2022-09-03 14:56:19 +0100E390124D8000,"Ys IX: Monstrum Nox",,playable,2022-06-12 04:14:42 +0100F90010882000,"Ys Origin",nvdec,playable,2024-04-17 05:07:33 +01007F200B0C0000,"Ys VIII: Lacrimosa of DANA",nvdec,playable,2023-08-05 09:26:41 +010022400BE5A000,"Yu-Gi-Oh! Legacy of the Duelist : Link Evolution",,playable,2024-09-27 21:48:43 +01002D60188DE000,"Yu-Gi-Oh! Rush Duel: Dawn of the Battle Royale!! Let's Go! Go Rush!!",crash,ingame,2023-03-17 01:54:01 +010037D00DBDC000,"YU-NO: A girl who chants love at the bound of this world.",nvdec,playable,2021-01-26 17:03:52 +0100B56011502000,"Yumeutsutsu Re:After",,playable,2022-11-20 16:09:06 +,"Yunohana Spring! - Mellow Times -",audio;crash,menus,2020-09-27 19:27:40 +0100307011C44000,"Yuppie Psycho: Executive Edition",crash,ingame,2020-12-11 10:37:06 +0100FC900963E000,"Yuri",,playable,2021-06-11 13:08:50 +010092400A678000,"Zaccaria Pinball",online-broken,playable,2022-09-03 15:44:28 +0100E7900C4C0000,"Zarvot",,playable,2021-01-28 13:51:36 +01005F200F7C2000,"Zen Chess Collection",,playable,2020-07-01 22:28:27 +01008DD0114AE000,"Zenge",,playable,2020-10-22 13:23:57 +0100057011E50000,"Zengeon",services-horizon;crash,boots,2024-04-29 15:43:07 +0100AAC00E692000,"Zenith",,playable,2022-09-17 09:57:02 +0100A6A00894C000,"ZERO GUNNER 2- for Nintendo Switch",,playable,2021-01-04 20:17:14 +01004B001058C000,"Zero Strain",services;UE4,menus,2021-11-10 07:48:32 +,"Zettai kaikyu gakuen",gpu;nvdec,ingame,2020-08-25 15:15:54 +0100D7B013DD0000,"Ziggy the Chaser",,playable,2021-02-04 20:34:27 +010086700EF16000,"ZikSquare",gpu,ingame,2021-11-06 02:02:48 +010069C0123D8000,"Zoids Wild Blast Unleashed",nvdec,playable,2022-10-15 11:26:59 +0100C7300EEE4000,"Zombie Army Trilogy",ldn-untested;online,playable,2020-12-16 12:02:28 +01006CF00DA8C000,"Zombie Driver Immortal Edition",nvdec,playable,2020-12-14 23:15:10 +0100CFE003A64000,"ZOMBIE GOLD RUSH",online,playable,2020-09-24 12:56:08 +01001740116EC000,"Zombie's Cool",,playable,2020-12-17 12:41:26 +01000E5800D32C00,"Zombieland: Double Tap - Road Trip0",,playable,2022-09-17 10:08:45 +0100CD300A1BA000,"Zombillie",,playable,2020-07-23 17:42:23 +01001EE00A6B0000,"Zotrix: Solar Division",,playable,2021-06-07 20:34:05 +0100B9B00C6A4000,"この世の果てで恋を唄う少女YU-NO",audio,ingame,2021-01-22 07:00:16 +,"スーパーファミコン Nintendo Switch Online",slow,ingame,2020-03-14 05:48:38 +01000BB01CB8A000,"トラブル・マギア ~訳アリ少女は未来を勝ち取るために異国の魔法学校へ留学します~(Trouble Magia ~Wakeari Shoujo wa Mirai o Kachitoru Tame ni Ikoku no Mahou Gakkou e Ryuugaku Shimasu~)",,nothing,2024-09-28 07:03:14 +010065500B218000,"メモリーズオフ - Innocent Fille",,playable,2022-12-02 17:36:48 +010032400E700000,"二ノ国 白き聖灰の女王",services;32-bit,menus,2023-04-16 17:11:06 +0100F3100DA46000,"初音ミク Project DIVA MEGA39's",audio;loader-allocator,playable,2022-07-29 11:45:52 +010047F012BE2000,"密室のサクリファイス/ABYSS OF THE SACRIFICE",nvdec,playable,2022-10-21 13:56:28 +0100BF401AF9C000,"御伽活劇 豆狸のバケル ~オラクル祭太郎の祭難!!~ (Otogi Katsugeki Mameda no Bakeru Oracle Saitarou no Sainan!!)",slow,playable,2023-12-31 14:37:17 +0100AFA01750C000,"死神と少女/Shinigami to Shoujo",gpu;Incomplete,ingame,2024-03-22 01:06:45 +01001BA01EBFC000,"燃えよ! 乙女道士 ~華遊恋語~ (Moeyo! Otome Doushi Kayu Koigatari)",services-horizon,nothing,2024-09-28 12:22:55 +0100936018EB4000,"牧場物語 Welcome!ワンダフルライフ",crash,ingame,2023-04-25 19:43:52 +0100F4401940A000,"超探偵事件簿 レインコード (Master Detective Archives: Rain Code)",crash,ingame,2024-02-12 20:58:31 +010064801A01C000,"超次元ゲイム ネプテューヌ GameMaker R:Evolution",crash,nothing,2023-10-30 22:37:40 +0100F3400332C000,"ゼノブレイド2",deadlock;amd-vendor-bug,ingame,2024-03-28 14:31:41 \ No newline at end of file From c2ae49eb47d91194cd98888108ff980476dd1c6f Mon Sep 17 00:00:00 2001 From: shinyoyo Date: Mon, 13 Jan 2025 02:33:27 +0800 Subject: [PATCH 63/69] Add some missing Simplified Chinese translations (#515) --- src/Ryujinx/Assets/locales.json | 36 ++++++++++++++++----------------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/src/Ryujinx/Assets/locales.json b/src/Ryujinx/Assets/locales.json index b90e16855..221c898ea 100644 --- a/src/Ryujinx/Assets/locales.json +++ b/src/Ryujinx/Assets/locales.json @@ -1243,7 +1243,7 @@ "th_TH": "", "tr_TR": "", "uk_UA": "", - "zh_CN": "", + "zh_CN": "问答与指南", "zh_TW": "" } }, @@ -4018,7 +4018,7 @@ "th_TH": "", "tr_TR": "", "uk_UA": "", - "zh_CN": "", + "zh_CN": "与 PC 日期和时间重新同步", "zh_TW": "" } }, @@ -14193,7 +14193,7 @@ "th_TH": "", "tr_TR": "", "uk_UA": "Ryujinx — це емулятор для Nintendo Switch™.\nОтримуйте всі останні новини в нашому Discord.\nРозробники, які хочуть зробити внесок, можуть дізнатися більше на нашому GitHub або в Discord.", - "zh_CN": "", + "zh_CN": "Ryujinx 是一个 Nintendo Switch™ 模拟器。\n有兴趣做出贡献的开发者可以在我们的 GitHub 或 Discord 上了解更多信息。\n", "zh_TW": "" } }, @@ -17818,7 +17818,7 @@ "th_TH": "", "tr_TR": "", "uk_UA": "", - "zh_CN": "", + "zh_CN": "档案对话框", "zh_TW": "" } }, @@ -19543,7 +19543,7 @@ "th_TH": "", "tr_TR": "", "uk_UA": "Необрізаних {0} тайтл(ів)...", - "zh_CN": "", + "zh_CN": "正在精简 {0} 个游戏", "zh_TW": "" } }, @@ -19718,7 +19718,7 @@ "th_TH": "", "tr_TR": "", "uk_UA": "Заголовок", - "zh_CN": "", + "zh_CN": "标题", "zh_TW": "" } }, @@ -19743,7 +19743,7 @@ "th_TH": "", "tr_TR": "", "uk_UA": "Економія місця", - "zh_CN": "", + "zh_CN": "节省空间", "zh_TW": "" } }, @@ -19793,7 +19793,7 @@ "th_TH": "", "tr_TR": "", "uk_UA": "Зшивання", - "zh_CN": "", + "zh_CN": "取消精简", "zh_TW": "" } }, @@ -22618,7 +22618,7 @@ "th_TH": "", "tr_TR": "", "uk_UA": "", - "zh_CN": "", + "zh_CN": "最后更新于: {0}", "zh_TW": "" } }, @@ -22643,7 +22643,7 @@ "th_TH": "", "tr_TR": "", "uk_UA": "", - "zh_CN": "", + "zh_CN": "此兼容性列表可能包含过时的条目。\n不要只测试 \"进入游戏\" 状态的游戏。", "zh_TW": "" } }, @@ -22668,7 +22668,7 @@ "th_TH": "", "tr_TR": "", "uk_UA": "", - "zh_CN": "", + "zh_CN": "正在搜索兼容性条目...", "zh_TW": "" } }, @@ -22693,7 +22693,7 @@ "th_TH": "", "tr_TR": "", "uk_UA": "", - "zh_CN": "", + "zh_CN": "打开兼容性列表", "zh_TW": "" } }, @@ -22718,7 +22718,7 @@ "th_TH": "", "tr_TR": "", "uk_UA": "", - "zh_CN": "", + "zh_CN": "仅显示拥有的游戏", "zh_TW": "" } }, @@ -22743,7 +22743,7 @@ "th_TH": "", "tr_TR": "", "uk_UA": "", - "zh_CN": "", + "zh_CN": "可游玩", "zh_TW": "" } }, @@ -22768,7 +22768,7 @@ "th_TH": "", "tr_TR": "", "uk_UA": "", - "zh_CN": "", + "zh_CN": "进入游戏", "zh_TW": "" } }, @@ -22793,7 +22793,7 @@ "th_TH": "", "tr_TR": "", "uk_UA": "", - "zh_CN": "", + "zh_CN": "菜单", "zh_TW": "" } }, @@ -22818,7 +22818,7 @@ "th_TH": "", "tr_TR": "", "uk_UA": "", - "zh_CN": "", + "zh_CN": "启动", "zh_TW": "" } }, @@ -22843,7 +22843,7 @@ "th_TH": "", "tr_TR": "", "uk_UA": "", - "zh_CN": "", + "zh_CN": "什么都没有", "zh_TW": "" } } From f1dee5027521f21cf9ebe94f18fc6c65c6876b0b Mon Sep 17 00:00:00 2001 From: GabCoolGuy Date: Sun, 12 Jan 2025 21:57:57 +0100 Subject: [PATCH 64/69] infra: Update to LLVM 17 (#519) This fixes macos builds not building correctly because of a missing LLVM 14 package. --- .github/workflows/build.yml | 4 ++-- .github/workflows/canary.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- distribution/macos/bundle_fix_up.py | 2 +- distribution/macos/construct_universal_dylib.py | 2 +- distribution/macos/create_macos_build_ava.sh | 4 ++-- distribution/macos/create_macos_build_headless.sh | 4 ++-- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index aeb12a575..0472fd5f7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -129,11 +129,11 @@ jobs: with: global-json-file: global.json - - name: Setup LLVM 14 + - name: Setup LLVM 17 run: | wget https://apt.llvm.org/llvm.sh chmod +x llvm.sh - sudo ./llvm.sh 14 + sudo ./llvm.sh 17 - name: Install rcodesign run: | diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index d93d4fbed..433e65cb2 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -210,11 +210,11 @@ jobs: with: global-json-file: global.json - - name: Setup LLVM 15 + - name: Setup LLVM 17 run: | wget https://apt.llvm.org/llvm.sh chmod +x llvm.sh - sudo ./llvm.sh 15 + sudo ./llvm.sh 17 - name: Install rcodesign run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ab39634f7..7e11f6edf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -191,11 +191,11 @@ jobs: with: global-json-file: global.json - - name: Setup LLVM 15 + - name: Setup LLVM 17 run: | wget https://apt.llvm.org/llvm.sh chmod +x llvm.sh - sudo ./llvm.sh 15 + sudo ./llvm.sh 17 - name: Install rcodesign run: | diff --git a/distribution/macos/bundle_fix_up.py b/distribution/macos/bundle_fix_up.py index a8e3ac760..273d7455d 100644 --- a/distribution/macos/bundle_fix_up.py +++ b/distribution/macos/bundle_fix_up.py @@ -19,7 +19,7 @@ if platform.system() == "Darwin": else: OTOOL = shutil.which("llvm-otool") if OTOOL is None: - for llvm_ver in [15, 14, 13]: + for llvm_ver in [17, 16, 15, 14, 13]: otool_path = shutil.which(f"llvm-otool-{llvm_ver}") if otool_path is not None: OTOOL = otool_path diff --git a/distribution/macos/construct_universal_dylib.py b/distribution/macos/construct_universal_dylib.py index b6c3770c6..5d9321860 100644 --- a/distribution/macos/construct_universal_dylib.py +++ b/distribution/macos/construct_universal_dylib.py @@ -26,7 +26,7 @@ else: LIPO = shutil.which("llvm-lipo") if LIPO is None: - for llvm_ver in [15, 14, 13]: + for llvm_ver in [17, 16, 15, 14, 13]: lipo_path = shutil.which(f"llvm-lipo-{llvm_ver}") if lipo_path is not None: LIPO = lipo_path diff --git a/distribution/macos/create_macos_build_ava.sh b/distribution/macos/create_macos_build_ava.sh index b19fa4863..de6fab358 100755 --- a/distribution/macos/create_macos_build_ava.sh +++ b/distribution/macos/create_macos_build_ava.sh @@ -67,11 +67,11 @@ python3 "$BASE_DIR/distribution/macos/construct_universal_dylib.py" "$ARM64_APP_ if ! [ -x "$(command -v lipo)" ]; then - if ! [ -x "$(command -v llvm-lipo-14)" ]; + if ! [ -x "$(command -v llvm-lipo-17)" ]; then LIPO=llvm-lipo else - LIPO=llvm-lipo-14 + LIPO=llvm-lipo-17 fi else LIPO=lipo diff --git a/distribution/macos/create_macos_build_headless.sh b/distribution/macos/create_macos_build_headless.sh index 01951d878..5de862a2f 100755 --- a/distribution/macos/create_macos_build_headless.sh +++ b/distribution/macos/create_macos_build_headless.sh @@ -62,11 +62,11 @@ python3 "$BASE_DIR/distribution/macos/construct_universal_dylib.py" "$ARM64_OUTP if ! [ -x "$(command -v lipo)" ]; then - if ! [ -x "$(command -v llvm-lipo-14)" ]; + if ! [ -x "$(command -v llvm-lipo-17)" ]; then LIPO=llvm-lipo else - LIPO=llvm-lipo-14 + LIPO=llvm-lipo-17 fi else LIPO=lipo From fd4d801bfd0668de3bebb216caeb500f0a5baabc Mon Sep 17 00:00:00 2001 From: Keaton Date: Mon, 13 Jan 2025 11:15:05 -0600 Subject: [PATCH 65/69] Various NuGet package updates (#203) Updates the following packages: **nuget: bump the avalonia group with 7 updates** * Bump Avalonia, Avalonia.Controls.DataGrid, Avalonia.Desktop, Avalonia.Diagnostics, and Avalonia.Markup.Xaml.Loader from 11.0.10 to 11.0.13 * Bump Avalonia.Svg and Avalonia.Svg.Skia from 11.0.0.18 to 11.0.0.19 **nuget: bump non-avalonia packages** * Bump Concentus from 2.2.0 to 2.2.2 * Bump Microsoft.IdentityModel.JsonWebTokens from 8.1.2 to 8.3.0 * Bump Silk.NET.Vulkan group with 3 updates (2.21.0 to 2.22.0) * Bump SkiaSharp group with 2 updates (2.88.7 to 2.88.9) --- Directory.Packages.props | 28 +++++++++++++-------------- src/Ryujinx.Graphics.Vulkan/Vendor.cs | 2 +- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index a480d3d29..c2ac358ed 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -3,13 +3,13 @@ true - - - - - - - + + + + + + + @@ -18,7 +18,7 @@ - + @@ -26,7 +26,7 @@ - + @@ -48,11 +48,11 @@ - - - - - + + + + + diff --git a/src/Ryujinx.Graphics.Vulkan/Vendor.cs b/src/Ryujinx.Graphics.Vulkan/Vendor.cs index 55ae0cd81..6a2a76a88 100644 --- a/src/Ryujinx.Graphics.Vulkan/Vendor.cs +++ b/src/Ryujinx.Graphics.Vulkan/Vendor.cs @@ -92,7 +92,7 @@ namespace Ryujinx.Graphics.Vulkan DriverId.MesaDozen => "Dozen", DriverId.MesaNvk => "NVK", DriverId.ImaginationOpenSourceMesa => "Imagination (Open)", - DriverId.MesaAgxv => "Honeykrisp", + DriverId.MesaHoneykrisp => "Honeykrisp", _ => id.ToString(), }; } From 017f46f31815262a79f6af1a168527a2b0154b38 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Wed, 15 Jan 2025 03:00:23 -0600 Subject: [PATCH 66/69] HLE: misc: throw a more descriptive error when the loaded processes doesn't contain _latestPid (likely missing FW) --- src/Ryujinx.Common/RyujinxException.cs | 10 +++++++ .../Loaders/Processes/ProcessLoader.cs | 12 +++++++- src/Ryujinx/Program.cs | 30 +++++++++++++++---- 3 files changed, 45 insertions(+), 7 deletions(-) create mode 100644 src/Ryujinx.Common/RyujinxException.cs diff --git a/src/Ryujinx.Common/RyujinxException.cs b/src/Ryujinx.Common/RyujinxException.cs new file mode 100644 index 000000000..dbb5184e4 --- /dev/null +++ b/src/Ryujinx.Common/RyujinxException.cs @@ -0,0 +1,10 @@ +using System; + +namespace Ryujinx.Common +{ + public class RyujinxException : Exception + { + public RyujinxException(string message) : base(message) + { } + } +} diff --git a/src/Ryujinx.HLE/Loaders/Processes/ProcessLoader.cs b/src/Ryujinx.HLE/Loaders/Processes/ProcessLoader.cs index ebbeb1398..6279ec3b4 100644 --- a/src/Ryujinx.HLE/Loaders/Processes/ProcessLoader.cs +++ b/src/Ryujinx.HLE/Loaders/Processes/ProcessLoader.cs @@ -26,7 +26,17 @@ namespace Ryujinx.HLE.Loaders.Processes private ulong _latestPid; - public ProcessResult ActiveApplication => _processesByPid[_latestPid]; + public ProcessResult ActiveApplication + { + get + { + if (!_processesByPid.TryGetValue(_latestPid, out ProcessResult value)) + throw new RyujinxException( + $"The HLE Process map did not have a process with ID {_latestPid}. Are you missing firmware?"); + + return value; + } + } public ProcessLoader(Switch device) { diff --git a/src/Ryujinx/Program.cs b/src/Ryujinx/Program.cs index 6f0f3e12e..b9aa402c5 100644 --- a/src/Ryujinx/Program.cs +++ b/src/Ryujinx/Program.cs @@ -21,6 +21,7 @@ using Ryujinx.Graphics.Vulkan.MoltenVK; using Ryujinx.Headless; using Ryujinx.SDL2.Common; using System; +using System.Collections.Generic; using System.IO; using System.Linq; using System.Runtime.InteropServices; @@ -243,16 +244,33 @@ namespace Ryujinx.Ava : $"Launch Mode: {AppDataManager.Mode}"); } - internal static void ProcessUnhandledException(object sender, Exception ex, bool isTerminating) + internal static void ProcessUnhandledException(object sender, Exception initialException, bool isTerminating) { Logger.Log log = Logger.Error ?? Logger.Notice; - string message = $"Unhandled exception caught: {ex}"; - // ReSharper disable once ConstantConditionalAccessQualifier - if (sender?.GetType()?.AsPrettyString() is { } senderName) - log.Print(LogClass.Application, message, senderName); + List exceptions = []; + + if (initialException is AggregateException ae) + { + exceptions.AddRange(ae.InnerExceptions); + } else - log.PrintMsg(LogClass.Application, message); + { + exceptions.Add(initialException); + } + + foreach (var e in exceptions) + { + string message = $"Unhandled exception caught: {e}"; + // ReSharper disable once ConstantConditionalAccessQualifier + if (sender?.GetType()?.AsPrettyString() is { } senderName) + log.Print(LogClass.Application, message, senderName); + else + log.PrintMsg(LogClass.Application, message); + } + + + if (isTerminating) Exit(); From c17e3bfcdfbb46f2bc904964441a1503c72c73cc Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Wed, 15 Jan 2025 03:01:04 -0600 Subject: [PATCH 67/69] genuinely dont know how that was still there, i thought i got rid of UI.Common --- .../Ryujinx.UI.Common.csproj | 36 ------------------- 1 file changed, 36 deletions(-) delete mode 100644 src/Ryujinx.UI.Common/Ryujinx.UI.Common.csproj diff --git a/src/Ryujinx.UI.Common/Ryujinx.UI.Common.csproj b/src/Ryujinx.UI.Common/Ryujinx.UI.Common.csproj deleted file mode 100644 index 01efe04ba..000000000 --- a/src/Ryujinx.UI.Common/Ryujinx.UI.Common.csproj +++ /dev/null @@ -1,36 +0,0 @@ - - - - true - $(DefaultItemExcludes);._* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - From a5a4ef38e6028aedf0e4bdffd2a61b8bcfa705f6 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Thu, 16 Jan 2025 02:39:39 -0600 Subject: [PATCH 68/69] HLE: Stub IHidServer SetGestureOutputRanges (#524) Lets "Donkey Kong Country Returns HD" get into main gameplay. --- src/Ryujinx.HLE/HOS/Services/Hid/IHidServer.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/Ryujinx.HLE/HOS/Services/Hid/IHidServer.cs b/src/Ryujinx.HLE/HOS/Services/Hid/IHidServer.cs index 556e35ea6..c1856535b 100644 --- a/src/Ryujinx.HLE/HOS/Services/Hid/IHidServer.cs +++ b/src/Ryujinx.HLE/HOS/Services/Hid/IHidServer.cs @@ -702,6 +702,18 @@ namespace Ryujinx.HLE.HOS.Services.Hid return ResultCode.Success; } + + [CommandCmif(92)] + // SetGestureOutputRanges(pid, ushort Unknown0) + public ResultCode SetGestureOutputRanges(ServiceCtx context) + { + ulong pid = context.Request.HandleDesc.PId; + ushort unknown0 = context.RequestData.ReadUInt16(); + + Logger.Stub?.PrintStub(LogClass.ServiceHid, new { pid, unknown0 }); + + return ResultCode.Success; + } [CommandCmif(100)] // SetSupportedNpadStyleSet(pid, nn::applet::AppletResourceUserId, nn::hid::NpadStyleTag) From 814c0526d272d98699f66b74e82f0986fad863c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hack=E8=8C=B6=E3=82=93?= <120134269+Hackjjang@users.noreply.github.com> Date: Thu, 16 Jan 2025 19:57:32 +0900 Subject: [PATCH 69/69] Korean translations for compat list (#502) --- src/Ryujinx/Assets/locales.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/Ryujinx/Assets/locales.json b/src/Ryujinx/Assets/locales.json index 221c898ea..001e5aea9 100644 --- a/src/Ryujinx/Assets/locales.json +++ b/src/Ryujinx/Assets/locales.json @@ -22634,7 +22634,7 @@ "he_IL": "", "it_IT": "", "ja_JP": "", - "ko_KR": "", + "ko_KR": "이 호환성 목록에는 오래된 항목이 포함되어 있을 수 있습니다.\n\"게임 내\" 상태에서 게임을 테스트하는 것을 반대하지 마십시오.", "no_NO": "", "pl_PL": "", "pt_BR": "", @@ -22659,7 +22659,7 @@ "he_IL": "", "it_IT": "", "ja_JP": "", - "ko_KR": "", + "ko_KR": "호환성 항목 검색...", "no_NO": "", "pl_PL": "", "pt_BR": "", @@ -22684,7 +22684,7 @@ "he_IL": "", "it_IT": "", "ja_JP": "", - "ko_KR": "", + "ko_KR": "호환성 목록 열기", "no_NO": "", "pl_PL": "", "pt_BR": "", @@ -22709,7 +22709,7 @@ "he_IL": "", "it_IT": "", "ja_JP": "", - "ko_KR": "", + "ko_KR": "보유 게임만 표시", "no_NO": "", "pl_PL": "", "pt_BR": "", @@ -22734,7 +22734,7 @@ "he_IL": "", "it_IT": "", "ja_JP": "", - "ko_KR": "", + "ko_KR": "플레이 가능", "no_NO": "", "pl_PL": "", "pt_BR": "", @@ -22759,7 +22759,7 @@ "he_IL": "", "it_IT": "", "ja_JP": "", - "ko_KR": "", + "ko_KR": "게임 내", "no_NO": "", "pl_PL": "", "pt_BR": "", @@ -22784,7 +22784,7 @@ "he_IL": "", "it_IT": "", "ja_JP": "", - "ko_KR": "", + "ko_KR": "메뉴", "no_NO": "", "pl_PL": "", "pt_BR": "", @@ -22809,7 +22809,7 @@ "he_IL": "", "it_IT": "", "ja_JP": "", - "ko_KR": "", + "ko_KR": "부츠", "no_NO": "", "pl_PL": "", "pt_BR": "", @@ -22834,7 +22834,7 @@ "he_IL": "", "it_IT": "", "ja_JP": "", - "ko_KR": "", + "ko_KR": "없음", "no_NO": "", "pl_PL": "", "pt_BR": "", @@ -22848,4 +22848,4 @@ } } ] -} \ No newline at end of file +}