diff --git a/Dockerfile b/Dockerfile index c04fa40..c2e0eb6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,10 +6,10 @@ WORKDIR /source RUN apk add --no-cache clang gcc musl-dev zlib-dev COPY *.csproj . -RUN dotnet restore -r linux-musl-x64 +RUN dotnet restore -r linux-musl-arm64 COPY . . -RUN dotnet publish -c release -o /app -r linux-musl-x64 --no-restore LanPlayServer.csproj +RUN dotnet publish -c release -o /app -r linux-musl-arm64 --no-restore LanPlayServer.csproj FROM alpine:latest WORKDIR /app diff --git a/LanPlayServer.csproj b/LanPlayServer.csproj index 4e69a13..4675b73 100644 --- a/LanPlayServer.csproj +++ b/LanPlayServer.csproj @@ -5,11 +5,12 @@ net8.0 $(DefineConstants);$(ExtraDefineConstants) true + true - + diff --git a/LdnServer/HostedGame.cs b/LdnServer/HostedGame.cs index f648ab5..8ceab30 100644 --- a/LdnServer/HostedGame.cs +++ b/LdnServer/HostedGame.cs @@ -1,5 +1,7 @@ using LanPlayServer.Network; using LanPlayServer.Network.Types; +using LanPlayServer.Stats; +using LanPlayServer.Stats.Types; using LanPlayServer.Utils; using Ryujinx.HLE.HOS.Services.Ldn.Types; using System; @@ -32,7 +34,9 @@ enum GameLockReason DisconnectDHCP, DisconnectInfoRemove, DisconnectBroadcast, - Close + Close, + RoutingMessage, + BroadcastNetworkInfo, } public class HostedGame : INotifyPropertyChanged @@ -42,7 +46,7 @@ public class HostedGame : INotifyPropertyChanged private const uint NetworkBaseAddress = 0x0a720000; // 10.114.0.0 (our "virtual network") private const uint NetworkSubnetMask = 0xffff0000; // 255.255.0.0 - private readonly ReaderWriterLockSlim _lock; + private readonly object _lock; private GameLockReason _lockReason; private readonly List _players; private readonly VirtualDhcp _dhcp; @@ -56,18 +60,14 @@ public NetworkInfo Info { get { - _lock.EnterReadLock(); - - NetworkInfo result = _info; - - _lock.ExitReadLock(); - - return result; + return _info; } } public string Id { get; } + public bool Closing { get; set; } + public LdnSession Owner { get; private set; } public string OwnerId => Owner.StringId; @@ -76,13 +76,7 @@ public string Passphrase { get { - _lock.EnterReadLock(); - - string result = _passphrase; - - _lock.ExitReadLock(); - - return result; + return _passphrase; } } @@ -93,13 +87,7 @@ public string GameVersion { get { - _lock.EnterReadLock(); - - string result = _gameVersion; - - _lock.ExitReadLock(); - - return result; + return _gameVersion; } private set { @@ -115,15 +103,7 @@ public int Players { get { - int result; - - _lock.EnterReadLock(); - - result = _players.Count; - - _lock.ExitReadLock(); - - return result; + return _players.Count; } } @@ -144,48 +124,25 @@ public HostedGame(string id, NetworkInfo info, AddressList dhcpConfig) { Id = id; - _lock = new ReaderWriterLockSlim(LockRecursionPolicy.SupportsRecursion); + _lock = new object(); _players = new List(); - _dhcp = new VirtualDhcp(NetworkBaseAddress, NetworkSubnetMask, dhcpConfig); + _dhcp = new VirtualDhcp(NetworkBaseAddress, NetworkSubnetMask, dhcpConfig); UpdateNetworkInfo(info); } - public bool TestReadLock() - { - if (!_lock.TryEnterReadLock(2000)) - { - Console.WriteLine($"Lock broken: {_lockReason} on {_info.NetworkId.IntentId.LocalCommunicationId:x16} with {_players.Count} players."); - - return true; - } - - _lock.ExitReadLock(); - - return false; - } - - private void EnterLock(GameLockReason reason) - { - _lock.EnterWriteLock(); - _lockReason = reason; - } - - private void ExitLock() - { - _lockReason = GameLockReason.None; - _lock.ExitWriteLock(); - } - public void UpdateNetworkInfo(NetworkInfo info) { - EnterLock(GameLockReason.UpdateNetworkInfo); + lock (_lock) + { + _lockReason = GameLockReason.UpdateNetworkInfo; - _info = info; + _info = info; - NotifyPropertyChanged(nameof(Info)); + NotifyPropertyChanged(nameof(Info)); - ExitLock(); + _lockReason = GameLockReason.None; + } } private byte[] AddressTo16Byte(IPAddress address) @@ -200,44 +157,44 @@ private byte[] AddressTo16Byte(IPAddress address) public void SetOwner(LdnSession session, RyuNetworkConfig request) { - EnterLock(GameLockReason.SetOwner); - - try + lock (_lock) { - Owner = session; - _passphrase = session.Passphrase; - - GameVersion = Encoding.UTF8.GetString(request.GameVersion.AsSpan().ToArray(), 0, request.GameVersion.Length).Trim('\0'); + _lockReason = GameLockReason.SetOwner; - if (request.ExternalProxyPort != 0) + try { - IsP2P = true; + Owner = session; + _passphrase = session.Passphrase; - IPAddress address = (session.Socket.RemoteEndPoint as IPEndPoint).Address; + GameVersion = Encoding.UTF8.GetString(request.GameVersion.AsSpan().ToArray(), 0, request.GameVersion.Length).Trim('\0'); - _externalConfig = new ExternalProxyConfig() + if (request.ExternalProxyPort != 0) { - AddressFamily = address.AddressFamily, - ProxyPort = request.ExternalProxyPort, - }; + IsP2P = true; - AddressTo16Byte(address).CopyTo(_externalConfig.ProxyIp.AsSpan()); + IPAddress address = (session.Socket.RemoteEndPoint as IPEndPoint).Address; - _privateConfig = new ExternalProxyConfig() - { - ProxyIp = request.PrivateIp, - AddressFamily = request.AddressFamily, - ProxyPort = request.InternalProxyPort - }; + _externalConfig = new ExternalProxyConfig() + { + AddressFamily = address.AddressFamily, + ProxyPort = request.ExternalProxyPort, + }; + + AddressTo16Byte(address).CopyTo(_externalConfig.ProxyIp.AsSpan()); + + _privateConfig = new ExternalProxyConfig() + { + ProxyIp = request.PrivateIp, + AddressFamily = request.AddressFamily, + ProxyPort = request.InternalProxyPort + }; + } + } + finally + { + _lockReason = GameLockReason.None; } } - catch - { - ExitLock(); - throw; - } - - ExitLock(); } private void InitExternalProxy(LdnSession session) @@ -275,52 +232,59 @@ private void InitExternalProxy(LdnSession session) public bool Connect(LdnSession session, NodeInfo node) { - EnterLock(GameLockReason.Connect); - - if (_closed || _info.Ldn.NodeCount == _info.Ldn.NodeCountMax) + lock (_lock) { - ExitLock(); + try + { + _lockReason = GameLockReason.Connect; - return false; - } + if (_closed || _info.Ldn.NodeCount == _info.Ldn.NodeCountMax) + { + return false; + } - uint ip = _dhcp.RequestIpV4(session.MacAddress.AsSpan()); - if (!session.SetIpV4(ip, NetworkSubnetMask, !IsP2P)) - { - _dhcp.ReturnIpV4(ip); - } + uint ip = _dhcp.RequestIpV4(session.MacAddress.AsSpan()); + if (!session.SetIpV4(ip, NetworkSubnetMask, !IsP2P)) + { + _dhcp.ReturnIpV4(ip); + } - node.Ipv4Address = session.IpAddress; + node.Ipv4Address = session.IpAddress; - _lockReason = GameLockReason.ConnectNode; + _lockReason = GameLockReason.ConnectNode; - // Add the client to the network info. - int nodeId = LocateEmptyNode(); - _info.Ldn.NodeCount++; + // Add the client to the network info. + int nodeId = LocateEmptyNode(); + _info.Ldn.NodeCount++; - node.NodeId = (byte)nodeId; - session.NodeId = nodeId; + node.NodeId = (byte)nodeId; + session.NodeId = nodeId; - _info.Ldn.Nodes[nodeId] = node; + _info.Ldn.Nodes[nodeId] = node; - _lockReason = GameLockReason.ConnectProxy; - if (IsP2P) - { - InitExternalProxy(session); - } + _lockReason = GameLockReason.ConnectProxy; + if (IsP2P) + { + InitExternalProxy(session); + } - _lockReason = GameLockReason.ConnectBroadcast; - BroadcastNetworkInfoInLock(); + _lockReason = GameLockReason.ConnectBroadcast; + BroadcastNetworkInfoInLock(); - session.CurrentGame = this; + session.CurrentGame = this; - _players.Add(session); - NotifyPropertyChanged(nameof(Players)); + _players.Add(session); + NotifyPropertyChanged(nameof(Players)); - _lockReason = GameLockReason.ConnectFinal; - session.SendAsync(RyuLdnProtocol.Encode(PacketId.Connected, _info)); + _lockReason = GameLockReason.ConnectFinal; + session.SendAsync(RyuLdnProtocol.Encode(PacketId.Connected, _info)); - ExitLock(); + } + finally + { + _lockReason = GameLockReason.None; + } + } return true; } @@ -396,45 +360,54 @@ private void RouteMessage(LdnSession sender, ref ProxyInfo info, Action players; + + lock (_lock) + { + _lockReason = GameLockReason.RoutingMessage; + players = new List(_players); + _lockReason = GameLockReason.None; + } if (isBroadcast) { - _players.ForEach(player => + players.ForEach(player => { - action(player); + { + action(player); + } }); } else { - LdnSession target = _players.FirstOrDefault(player => player.IpAddress == destIp); + LdnSession target = players.FirstOrDefault(player => player.IpAddress == destIp); if (target != null) { action(target); } } - - _lock.ExitReadLock(); } public void HandleReject(LdnSession sender, LdnHeader header, RejectRequest reject) { if (sender == Owner) { - EnterLock(GameLockReason.Reject); - - if (reject.NodeId >= _players.Count) + lock (_lock) { - ExitLock(); + _lockReason = GameLockReason.Reject; - sender.SendAsync(RyuLdnProtocol.Encode(PacketId.NetworkError, new NetworkErrorMessage() { Error = NetworkError.RejectFailed })); - } - else - { - Disconnect(_players.FirstOrDefault(player => player.NodeId == reject.NodeId), false); + if (reject.NodeId >= _players.Count) + { + sender.SendAsync(RyuLdnProtocol.Encode(PacketId.NetworkError, new NetworkErrorMessage() { Error = NetworkError.RejectFailed })); + } + else + { + Disconnect(_players.FirstOrDefault(player => player.NodeId == reject.NodeId), false); + } - ExitLock(); + _lockReason = GameLockReason.None; } } else @@ -449,13 +422,16 @@ public void HandleSetAcceptPolicy(LdnSession sender, LdnHeader header, SetAccept { if (sender == Owner) { - EnterLock(GameLockReason.SetAcceptPolicy); + lock (_lock) + { + _lockReason = GameLockReason.SetAcceptPolicy; - _info.Ldn.StationAcceptPolicy = (byte)policy.StationAcceptPolicy; + _info.Ldn.StationAcceptPolicy = (byte)policy.StationAcceptPolicy; - BroadcastNetworkInfoInLock(); + BroadcastNetworkInfoInLock(); - ExitLock(); + _lockReason = GameLockReason.None; + } } } @@ -463,47 +439,51 @@ public void HandleSetAdvertiseData(LdnSession sender, LdnHeader header, byte[] d { if (sender == Owner) { - EnterLock(GameLockReason.SetAdvertiseData); + lock (_lock) + { + _lockReason = GameLockReason.SetAdvertiseData; - _info.Ldn.AdvertiseDataSize = (ushort)data.Length; + _info.Ldn.AdvertiseDataSize = (ushort)data.Length; - Array.Resize(ref data, 0x180); + Array.Resize(ref data, 0x180); - data.CopyTo(_info.Ldn.AdvertiseData.AsSpan()); + data.CopyTo(_info.Ldn.AdvertiseData.AsSpan()); - BroadcastNetworkInfoInLock(); + BroadcastNetworkInfoInLock(); - ExitLock(); + _lockReason = GameLockReason.None; + } } } public void HandleExternalProxyState(LdnSession sender, LdnHeader header, ExternalProxyConnectionState state) { - EnterLock(GameLockReason.HandleExternalProxyState); - - if (sender != Owner) + lock (_lock) { - // Only the owner can update external proxy state. - ExitLock(); + _lockReason = GameLockReason.HandleExternalProxyState; - return; - } + if (sender != Owner) + { + // Only the owner can update external proxy state. + _lockReason = GameLockReason.None; + return; + } - LdnSession player = _players.FirstOrDefault(player => player.IpAddress == state.IpAddress); + LdnSession player = _players.FirstOrDefault(player => player.IpAddress == state.IpAddress); - if (player != null) - { - if (!state.Connected) + if (player != null) { - // Indicate that the player is no longer connected to the game. + if (!state.Connected) + { + // Indicate that the player is no longer connected to the game. - player.SendAsync(RyuLdnProtocol.Encode(PacketId.Disconnect, new DisconnectMessage())); + player.SendAsync(RyuLdnProtocol.Encode(PacketId.Disconnect, new DisconnectMessage())); - Disconnect(player, true); + Disconnect(player, true); + } } + _lockReason = GameLockReason.None; } - - ExitLock(); } public void HandleProxyDisconnect(LdnSession sender, LdnHeader header, ProxyDisconnectMessage message) @@ -540,43 +520,48 @@ public void HandleProxyConnect(LdnSession sender, LdnHeader header, ProxyConnect private void DisconnectInternal(LdnSession session, bool expected) { - EnterLock(GameLockReason.Disconnect); - - try + lock (_lock) { - _players.Remove(session); - NotifyPropertyChanged(nameof(Players)); - - session.CurrentGame = null; + _lockReason = GameLockReason.Disconnect; - if (IsP2P && !expected) + try { - Owner?.SendAsync(RyuLdnProtocol.Encode(PacketId.ExternalProxyState, new ExternalProxyConnectionState + _players.Remove(session); + NotifyPropertyChanged(nameof(Players)); + + session.CurrentGame = null; + + if (IsP2P && !expected) { - IpAddress = session.IpAddress, - Connected = false - })); - } + Owner?.SendAsync(RyuLdnProtocol.Encode(PacketId.ExternalProxyState, new ExternalProxyConnectionState + { + IpAddress = session.IpAddress, + Connected = false + })); + } - _lockReason = GameLockReason.DisconnectDHCP; + _lockReason = GameLockReason.DisconnectDHCP; - _dhcp.ReturnIpV4(session.IpAddress); + _dhcp.ReturnIpV4(session.IpAddress); - _lockReason = GameLockReason.DisconnectInfoRemove; + _lockReason = GameLockReason.DisconnectInfoRemove; - // Remove the client from the network info. - RemoveFromInfo(session.IpAddress); + // Remove the client from the network info. + RemoveFromInfo(session.IpAddress); - _lockReason = GameLockReason.DisconnectBroadcast; + _lockReason = GameLockReason.DisconnectBroadcast; - BroadcastNetworkInfoInLock(); - } - catch (Exception e) - { - Console.WriteLine("SUPER FATAL ERROR: " + e); + BroadcastNetworkInfoInLock(); + } + catch (Exception e) + { + Console.WriteLine("SUPER FATAL ERROR: " + e); + } + finally + { + _lockReason = GameLockReason.None; + } } - - ExitLock(); } public void Disconnect(LdnSession session, bool expected) @@ -586,27 +571,18 @@ public void Disconnect(LdnSession session, bool expected) return; } - if (_lock.IsReadLockHeld && !_lock.IsWriteLockHeld) - { - // Can't upgrade the lock, try disconnect in the background. - session.CurrentGame = null; - - Task.Run(() => DisconnectInternal(session, expected)); - } - else - { - DisconnectInternal(session, expected); - } + session.CurrentGame = null; + Task.Run(() => DisconnectInternal(session, expected)); } // NOTE: Unused. private void BroadcastNetworkInfo() { - _lock.EnterReadLock(); - - BroadcastNetworkInfoInLock(); - - _lock.ExitReadLock(); + lock (_lock) + { + _lockReason = GameLockReason.BroadcastNetworkInfo; + BroadcastNetworkInfoInLock(); + } } private void BroadcastNetworkInfoInLock() @@ -624,29 +600,49 @@ private void BroadcastInLock(byte[] buffer) public void Close() { - if (_lock.IsReadLockHeld && !_lock.IsWriteLockHeld) + if (_closed) { - // Can't upgrade the lock, try close in the background. + return; + } + Closing = true; + Task.Run(CloseInternal); + } - Task.Run(Close); + private void CloseInternal() + { + if (_closed) + { + return; } - else + lock (_lock) { - EnterLock(GameLockReason.Close); + if (!_closed) + { + _lockReason = GameLockReason.Close; - Console.WriteLine($"CLOSING: {Id}"); + Console.WriteLine($"CLOSING: {Id}"); - _closed = true; + _closed = true; - BroadcastInLock(RyuLdnProtocol.Encode(PacketId.Disconnect, new DisconnectMessage())); + BroadcastInLock(RyuLdnProtocol.Encode(PacketId.Disconnect, new DisconnectMessage())); - ExitLock(); + _lockReason = GameLockReason.None; + } } + Statistics.RemoveGameAnalytics(this); } private void NotifyPropertyChanged([CallerMemberName] string propertyName = "") { PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); } + + public void TestReadLock() + { + if (_lockReason != GameLockReason.None) + { + Console.WriteLine($"{Id} locked: {_lockReason}"); + } + } } } \ No newline at end of file diff --git a/LdnServer/LdnServer.cs b/LdnServer/LdnServer.cs index d6d405d..cfdcde0 100644 --- a/LdnServer/LdnServer.cs +++ b/LdnServer/LdnServer.cs @@ -28,6 +28,7 @@ public LdnServer(IPAddress address, int port) : base(address, port) OptionNoDelay = true; Task.Run(BackgroundPingTask); + Task.Run(BackgroundDumpTask); } public HostedGame CreateGame(string id, NetworkInfo info, AddressList dhcpConfig, string oldOwnerID) @@ -86,15 +87,17 @@ public int Scan(ref NetworkInfo[] info, ScanFilter filter, string passphrase, Ho int results = 0; + int gameCount = all.Length; + int playerCount = 0; + for (int i = 0; i < all.Length; i++) { HostedGame game = all[i].Value; - if (game.TestReadLock()) - { - CloseGame(game.Id); - continue; - } + game.TestReadLock(); + + int nPlayers = game.Players; + playerCount += nPlayers; if (game.Passphrase != passphrase || game == exclude) { @@ -152,7 +155,7 @@ public int Scan(ref NetworkInfo[] info, ScanFilter filter, string passphrase, Ho } } - if (game.Players == 0) + if (nPlayers == 0) { continue; } @@ -218,5 +221,21 @@ private async Task BackgroundPingTask() } } } + + private async Task BackgroundDumpTask() + { + while (!IsDisposed) + { + await Task.Delay(5000, _cancel.Token); + try + { + await StatsDumper.DumpAll(_hostedGames); + } + catch (Exception e) + { + Console.WriteLine(e); + } + } + } } } \ No newline at end of file diff --git a/LdnServer/LdnSession.cs b/LdnServer/LdnSession.cs index 474f6c5..293ac90 100644 --- a/LdnServer/LdnSession.cs +++ b/LdnServer/LdnSession.cs @@ -120,6 +120,7 @@ private void DisconnectFromGame() if (game?.Owner == this) { + game.Closing = true; _tcpServer.CloseGame(game.Id); } } @@ -226,15 +227,18 @@ protected override void OnConnected() protected override void OnDisconnected() { - lock (_connectionLock) + Task.Run(() => { - _disconnected = true; - DisconnectFromGame(); - } + lock (_connectionLock) + { + _disconnected = true; + DisconnectFromGame(); + } - Console.WriteLine($"LDN TCP session with Id {Id} disconnected! ({PrintIp()})"); + Console.WriteLine($"LDN TCP session with Id {Id} disconnected! ({PrintIp()})"); - _protocol.Dispose(); + _protocol.Dispose(); + }); } protected override void OnReceived(byte[] buffer, long offset, long size) @@ -298,6 +302,7 @@ public bool SetIpV4(uint ip, uint subnet, bool internalProxy) private void HandleScan(LdnHeader ldnPacket, ScanFilter filter) { + Thread.Sleep(200); int games = _tcpServer.Scan(ref _scanBuffer, filter, Passphrase, CurrentGame); for (int i = 0; i < games; i++) diff --git a/Stats/Statistics.cs b/Stats/Statistics.cs index ff114d6..9a5dbab 100644 --- a/Stats/Statistics.cs +++ b/Stats/Statistics.cs @@ -50,6 +50,10 @@ public static void RemoveGameAnalytics(HostedGame game) Task.Run(() => UpdateLdnAnalytics(Games.Values.ToImmutableList())); } + else + { + GameAnalyticsChanged?.Invoke(new GameAnalytics { Id = game.Id }, false); + } } private static void UpdateLdnAnalytics(ImmutableList games) @@ -89,14 +93,14 @@ private static void UpdateLdnAnalytics(ImmutableList games) totalPlayerCount += game.PlayerCount; } - LdnAnalytics.TotalGameCount = totalGameCount; - LdnAnalytics.PrivateGameCount = privateGameCount; - LdnAnalytics.PublicGameCount = totalGameCount - privateGameCount; - LdnAnalytics.InProgressCount = inProgressCount; - LdnAnalytics.MasterProxyCount = masterProxyCount; - LdnAnalytics.TotalPlayerCount = totalPlayerCount; - LdnAnalytics.PrivatePlayerCount = privatePlayerCount; - LdnAnalytics.PublicPlayerCount = totalPlayerCount - privatePlayerCount; + LdnAnalytics.TotalGameCount = totalGameCount; + LdnAnalytics.PrivateGameCount = privateGameCount; + LdnAnalytics.PublicGameCount = totalGameCount - privateGameCount; + LdnAnalytics.InProgressCount = inProgressCount; + LdnAnalytics.MasterProxyCount = masterProxyCount; + LdnAnalytics.TotalPlayerCount = totalPlayerCount; + LdnAnalytics.PrivatePlayerCount = privatePlayerCount; + LdnAnalytics.PublicPlayerCount = totalPlayerCount - privatePlayerCount; LdnAnalyticsChanged?.Invoke(LdnAnalytics); } diff --git a/Stats/StatsDumper.cs b/Stats/StatsDumper.cs index 0d80f57..370bebd 100644 --- a/Stats/StatsDumper.cs +++ b/Stats/StatsDumper.cs @@ -1,10 +1,15 @@ using LanPlayServer.Stats.Types; +using LanPlayServer.Utils; using NRedisStack; using NRedisStack.RedisStackCommands; using StackExchange.Redis; using System; +using System.Collections.Generic; using System.ComponentModel; using System.Net; +using System.Text.Json; +using System.Text.Json.Nodes; +using System.Threading.Tasks; namespace LanPlayServer.Stats { @@ -30,8 +35,8 @@ public static void Start(EndPoint redisEndpoint) EnsureDBKeysExist(_db.JSON(), true); - Statistics.GameAnalyticsChanged += OnGameAnalyticsChanged; - Statistics.LdnAnalyticsChanged += OnLdnAnalyticsPropertyChanged; + //Statistics.GameAnalyticsChanged += OnGameAnalyticsChanged; + //Statistics.LdnAnalyticsChanged += OnLdnAnalyticsPropertyChanged; } private static void EnsureDBKeysExist(IJsonCommands json, bool overwrite = false) @@ -42,8 +47,8 @@ private static void EnsureDBKeysExist(IJsonCommands json, bool overwrite = false public static void Stop() { - Statistics.GameAnalyticsChanged -= OnGameAnalyticsChanged; - Statistics.LdnAnalyticsChanged -= OnLdnAnalyticsPropertyChanged; + //Statistics.GameAnalyticsChanged -= OnGameAnalyticsChanged; + //Statistics.LdnAnalyticsChanged -= OnLdnAnalyticsPropertyChanged; _redisConnection.Close(); _redisConnection.Dispose(); @@ -51,6 +56,7 @@ public static void Stop() private static void OnLdnAnalyticsPropertyChanged(LdnAnalytics analytics) { + return; JsonCommands json = _db.JSON(); string analyticsJson = analytics.ToJson(); @@ -60,25 +66,35 @@ private static void OnLdnAnalyticsPropertyChanged(LdnAnalytics analytics) private static void OnGameAnalyticsChanged(GameAnalytics analytics, bool created) { + return; JsonCommands json = _db.JSON(); - string analyticsJson = analytics.ToJson(); EnsureDBKeysExist(json); if (created) { + Console.WriteLine("Add game analytics for " + analytics.Id); + string analyticsJson = analytics.ToJson(); json.Set("games", $"$.{analytics.Id}", analyticsJson); analytics.PropertyChanged += OnGameAnalyticsPropertyChanged; } else { + Console.WriteLine("Actually removing game analytics for " + analytics.Id); analytics.PropertyChanged -= OnGameAnalyticsPropertyChanged; - json.Del("games", $"$.{analytics.Id}"); + DeleteGameById(analytics.Id); } } + private static void DeleteGameById(string id) + { + JsonCommands json = _db.JSON(); + json.Del("games", $"$.{id}"); + } + private static void OnGameAnalyticsPropertyChanged(object sender, PropertyChangedEventArgs e) { + return; GameAnalytics analytics = sender as GameAnalytics; JsonCommands json = _db.JSON(); @@ -91,14 +107,89 @@ private static void OnGameAnalyticsPropertyChanged(object sender, PropertyChange if (analytics.PlayerCount == 0) { - json.Del("games", $"$.{analytics.Id}"); + //DeleteGameById(analytics.Id); return; } + Console.WriteLine("update for " + analytics.Id); string analyticsJson = analytics.ToJson(); // This could be optimized to only update the changed property. json.Set("games", $"$.{analytics.Id}", analyticsJson); } + + + public static async Task DumpAll(IDictionary games) { + if (_db == null) + { + return; + } + var ldnAnalytics = new LdnAnalytics(); + + int totalGameCount = 0; + int totalPlayerCount = 0; + int privateGameCount = 0; + int privatePlayerCount = 0; + int masterProxyCount = 0; + int inProgressCount = 0; + + var json = _db.JSON(); + var gamesList = new List(games.Count); + foreach (var hostedGame in games) { + var game = new GameAnalytics(); + game.Update(hostedGame.Value); + + if (game.Id == null) + { + continue; + } + + if (game.PlayerCount == 0) + { + continue; + } + + if (game.Mode != "P2P") + { + masterProxyCount++; + } + + totalGameCount++; + + if (!game.IsPublic) + { + privateGameCount++; + privatePlayerCount += game.PlayerCount; + } + + if (game.Status != "Joinable") + { + inProgressCount++; + } + + totalPlayerCount += game.PlayerCount; + gamesList.Add(game); + } + var opts = new JsonSerializerOptions() + { + PropertyNamingPolicy = JsonNamingPolicy.SnakeCaseLower + }; + + ldnAnalytics.TotalGameCount = totalGameCount; + ldnAnalytics.PrivateGameCount = privateGameCount; + ldnAnalytics.PublicGameCount = totalGameCount - privateGameCount; + ldnAnalytics.InProgressCount = inProgressCount; + ldnAnalytics.MasterProxyCount = masterProxyCount; + ldnAnalytics.TotalPlayerCount = totalPlayerCount; + ldnAnalytics.PrivatePlayerCount = privatePlayerCount; + ldnAnalytics.PublicPlayerCount = totalPlayerCount - privatePlayerCount; + + var ldnJson = ldnAnalytics.ToJson(); + + var gamesJson = GameAnalytics.ToJson(gamesList.ToArray()); + + await json.SetAsync("games", "$", gamesJson); + await json.SetAsync("ldn", "$", ldnJson); + } } } diff --git a/Stats/Types/GameAnalytics.cs b/Stats/Types/GameAnalytics.cs index f6676e4..bb55c14 100644 --- a/Stats/Types/GameAnalytics.cs +++ b/Stats/Types/GameAnalytics.cs @@ -1,4 +1,5 @@ using LanPlayServer.Utils; +using System; using System.Collections.Generic; using System.ComponentModel; using System.Runtime.CompilerServices; @@ -8,6 +9,7 @@ namespace LanPlayServer.Stats.Types public class GameAnalytics: INotifyPropertyChanged { private static readonly GameAnalyticsSerializerContext SerializerContext = new(JsonHelper.GetDefaultSerializerOptions(false)); + private static readonly GameAnalyticsArraySerializerContext ArraySerializerContext = new(JsonHelper.GetDefaultSerializerOptions(false)); public event PropertyChangedEventHandler PropertyChanged; @@ -168,6 +170,10 @@ public List Players private static void FromGame(GameAnalytics instance, HostedGame game) { + if (game.Closing) + { + return; + } ulong appId = (ulong)game.Info.NetworkId.IntentId.LocalCommunicationId; string gameName = GameList.GetGameById(appId)?.Name ?? "Unknown"; var players = new List(); @@ -180,6 +186,7 @@ private static void FromGame(GameAnalytics instance, HostedGame game) name = name.CleanInput(32); // Would like to add more player information here, but that needs a bit more work. + players.Add(name); } @@ -207,6 +214,11 @@ public string ToJson() return JsonHelper.Serialize(this, SerializerContext.GameAnalytics); } + public static string ToJson(GameAnalytics[] instances) + { + return JsonHelper.Serialize(instances, ArraySerializerContext.GameAnalyticsArray); + } + public static GameAnalytics FromGame(HostedGame game) { GameAnalytics analytics = new(); @@ -217,7 +229,7 @@ public static GameAnalytics FromGame(HostedGame game) private void NotifyPropertyChanged([CallerMemberName] string propertyName = "") { - PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); + //PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); } } } diff --git a/Stats/Types/GameAnalyticsArraySerializerContext.cs b/Stats/Types/GameAnalyticsArraySerializerContext.cs new file mode 100644 index 0000000..95b7234 --- /dev/null +++ b/Stats/Types/GameAnalyticsArraySerializerContext.cs @@ -0,0 +1,11 @@ +using System.Text.Json.Serialization; + +namespace LanPlayServer.Stats.Types +{ + [JsonSourceGenerationOptions(WriteIndented = false)] + [JsonSerializable(typeof(GameAnalytics[]))] + internal partial class GameAnalyticsArraySerializerContext : JsonSerializerContext + { + + } +} \ No newline at end of file diff --git a/Utils/StringUtils.cs b/Utils/StringUtils.cs index 01a7745..c11b31e 100644 --- a/Utils/StringUtils.cs +++ b/Utils/StringUtils.cs @@ -70,6 +70,13 @@ public static string ReadUtf8String(Span data, int index = 0) return Encoding.UTF8.GetString(ms.ToArray()); } + static string[] filterSlurs = + [ + "\u004E\u0049\u0047\u0047\u0041", + "\u004E\u0049\u0047\u0047\u0045\u0052", + "\u0046\u0041\u0047\u0047\u004F\u0054" + ]; + public static string CleanInput(this string input, int maxLength = -1, string extraAllowedChars = "") { if (input == null) @@ -85,11 +92,19 @@ public static string CleanInput(this string input, int maxLength = -1, string ex } try { - return Regex.Replace(result, $@"[^\w-_{extraAllowedChars}]", "", + result = Regex.Replace(result, $@"[^\w-_{extraAllowedChars}]", "", RegexOptions.IgnoreCase, TimeSpan.FromSeconds(2)); + foreach (var word in filterSlurs) + { + if (result.ToUpper().Contains(word)) + { + return "***"; + } + } + return result; } catch (RegexMatchTimeoutException) { - return string.Empty; + return "---"; } } } diff --git a/Utils/gamelist.json b/Utils/gamelist.json index ecbef65..573622f 100644 --- a/Utils/gamelist.json +++ b/Utils/gamelist.json @@ -1 +1,19530 @@ -[{"id":"0x0100c2500fc20000","name":"Splatoon™ 3"},{"id":"0x0100a3d008c5c000","name":"Pokémon™ Scarlet/Violet"},{"id":"0x01003c700009c000","name":"Splatoon™ 2 JPN"},{"id":"0x010019401051c000","name":"Mario Strikers™: Battle League"},{"id":"0x0100000011d90000","name":"Pokémon™ Brilliant Diamond"},{"id":"0x010028600ebda000","name":"Super Mario 3D World + Bowser's Fury"},{"id":"0x0100c3800049c000","name":"Monster Hunter XX"},{"id":"0x0100B04011742000","name":"Monster Hunter Rise"},{"id":"0x0100559011740000","name":"Monster Hunter Rise"},{"id":"0x0100bef013050000","name":"Monster Hunter Rise Demo"},{"id":"0x010000100C4B8000","name":"Jamestown+"},{"id":"0x010000A00CA78000","name":"Chalk Dash Carnival"},{"id":"0x010000B00D800000","name":"The Church in the Darkness"},{"id":"0x0100013010456000","name":"Doggie Ninja The Burning Strikers"},{"id":"0x010002D00EDD0000","name":"JDM Racing"},{"id":"0x010002F00CC20000","name":"FUN! FUN! Animal Park"},{"id":"0x01000320110C2000","name":"She Sees Red - Interactive Movie"},{"id":"0x010004300C33A000","name":"Crimson Keep"},{"id":"0x010005100AF90000","name":"FutureGrind"},{"id":"0x010005300EDCC000","name":"Quench"},{"id":"0x0100068011DB0000","name":"Pop the Bubbles"},{"id":"0x010007200AC0E000","name":"Don't Die, Mr Robot!"},{"id":"0x0100087012810000","name":"Aery - Broken Memories"},{"id":"0x01000E000DD40000","name":"Vambrace: Cold Soul"},{"id":"0x01000E50134A4000","name":"#Halloween, Super Puzzles Dream"},{"id":"0x010011000972A000","name":"GEM CRASH"},{"id":"0x010012100E8DC000","name":"PICROSS LORD OF THE NAZARICK"},{"id":"0x010012800EE3E000","name":"Tamashii"},{"id":"0x010014901201E000","name":"Reflex Unit 2"},{"id":"0x01001530097F8000","name":"Arcade Archives PUNCH-OUT!!"},{"id":"0x010000100FB62000","name":"Willy Jetman: Astromonkey's Revenge"},{"id":"0x0100043011CEC000","name":"Arcade Archives LIGHTNING FIGHTERS"},{"id":"0x0100046011AE6000","name":"Ghost Files: Memory of a Crime"},{"id":"0x010008D00CCEC000","name":"Gnomes Garden 2"},{"id":"0x01000D70049BE000","name":"Sword of the Guardian"},{"id":"0x01000D900E0F0000","name":"Dead Dungeon"},{"id":"0x01000E800CC26000","name":"Alchemic Dungeons DX"},{"id":"0x010011300D52A000","name":"Pixel Devil and the Broken Cartridge"},{"id":"0x01001240126F2000","name":"Desktop Volleyball"},{"id":"0x0100144011030000","name":"Perfect Traffic Simulator"},{"id":"0x0100197008B52000","name":"GRIDD: Retroenhanced"},{"id":"0x01001C100E772000","name":"LEGO® Jurassic World"},{"id":"0x01001E400FD58000","name":"Cooking Simulator"},{"id":"0x01001FA0034E2000","name":"Dark Witch Music Episode: Rudymical"},{"id":"0x010022400BE5A000","name":"Yu-Gi-Oh! Legacy of the Duelist : Link Evolution"},{"id":"0x010026800FA88000","name":"Deep Diving Adventures"},{"id":"0x010029C00D768000","name":"ESport Manager"},{"id":"0x01002B300D8F0000","name":"Caterpillar Royale"},{"id":"0x010031B00A4E8000","name":"West of Loathing"},{"id":"0x010000300B4EE000","name":"STUMP"},{"id":"0x010001B005E5C000","name":"Double Dragon 4"},{"id":"0x01000330105BE000","name":"Darius Cozmic Collection Console"},{"id":"0x010005C00EE90000","name":"Atelier Shallie: Alchemists of the Dusk Sea DX"},{"id":"0x010005E00E2BC000","name":"9 Monkeys of Shaolin"},{"id":"0x01000A001171A000","name":"FIFA 21 Nintendo Switch™ Legacy Edition"},{"id":"0x01000B900D8B0000","name":"Cadence of Hyrule: Crypt of the NecroDancer Featuring The Legend of Zelda"},{"id":"0x010011300F74C000","name":"MO:Astray"},{"id":"0x010011A00A9A8000","name":"Soccer Slammers"},{"id":"0x010013800F0A4000","name":"Golazo!"},{"id":"0x010014B0130F2000","name":"Adventure Llama"},{"id":"0x010015000DB1A000","name":"Zombie Scrapper"},{"id":"0x010015F005C8E000","name":"Tricky Towers"},{"id":"0x010016900DF72000","name":"Bouncy Bullets"},{"id":"0x01001AD00E49A000","name":"DOUBLE DRAGON Ⅲ: The Sacred Stones"},{"id":"0x01001B100C3D4000","name":"Planet RIX-13"},{"id":"0x01001B300B9BE000","name":"Diablo III: Eternal Collection"},{"id":"0x01001C400482C000","name":"Wunderling"},{"id":"0x01001CC00CB54000","name":"Fat City"},{"id":"0x010003A00D0B4000","name":"SaGa SCARLET GRACE: AMBITIONS™"},{"id":"0x010003B00D3A2000","name":"Felix The Reaper"},{"id":"0x010004D00D222000","name":"Pocket Academy Demo"},{"id":"0x01000650134FE000","name":"Splashy Cube"},{"id":"0x010006F00EE72000","name":"StarBlox Inc."},{"id":"0x01000750084B2000","name":"Shiftlings - Enhanced Edition"},{"id":"0x010007B010FCC000","name":"Sniper Elite 4"},{"id":"0x01000AA0093DC000","name":"Dream Alone"},{"id":"0x01000CB00D094000","name":"Bad Dream: Coma"},{"id":"0x01000CE00CBB8000","name":"Plague Inc: Evolved"},{"id":"0x01000D700BE88000","name":"My Girlfriend is a Mermaid!?"},{"id":"0x01000F101286A000","name":"WE ARE DOOMED"},{"id":"0x0100103011894000","name":"Naught"},{"id":"0x010012800EBAE000","name":"Disney TSUM TSUM FESTIVAL"},{"id":"0x01001C700873E000","name":"GOD EATER 3"},{"id":"0x01001CB00EFD6000","name":"Infliction: Extended Cut"},{"id":"0x01001E3012CC2000","name":"Suicide Guy Collection"},{"id":"0x01001E60085E6000","name":"Broken Sword 5 - the Serpent's Curse"},{"id":"0x010023D012C52000","name":"fault - milestone two side: above"},{"id":"0x0100023012640000","name":"Slots of Poker at Aces Casino"},{"id":"0x010002A00CC42000","name":"Clock Simulator"},{"id":"0x010002D00632E000","name":"Yoku's Island Express"},{"id":"0x010007C00E558000","name":"Reel Fishing: Road Trip Adventure"},{"id":"0x01000850037C0000","name":"The Count Lucanor"},{"id":"0x0100085012A0E000","name":"Squeakers"},{"id":"0x0100085012D64000","name":"Awakening of Cthulhu"},{"id":"0x0100091008272000","name":"Mini Metro"},{"id":"0x01000BA00CD2C000","name":"Santa Tracker"},{"id":"0x01000CF0084BC000","name":"The Next Penelope"},{"id":"0x01000D10038E6000","name":"ACA NEOGEO LAST RESORT"},{"id":"0x01000D1011EF0000","name":"Active Neurons 2"},{"id":"0x01000E2012F6E000","name":"Fantasy Tavern Sextet -Vol.1 New World Days-"},{"id":"0x010010E010AAA000","name":"Sudoku Relax 4 Winter Snow"},{"id":"0x010011B00E6B2000","name":"Pocket Arcade Story"},{"id":"0x010016600DBFC000","name":"Slime Tactics"},{"id":"0x01001CC00D522000","name":"World Cruise Story"},{"id":"0x01001EB011D38000","name":"Miden Tower"},{"id":"0x010020B00E89E000","name":"The Ramen Sensei"},{"id":"0x010026B006802000","name":"A Duel Hand Disaster: Trackher"},{"id":"0x010003C0099EE000","name":"PLANET ALPHA"},{"id":"0x010005500E81E000","name":"Space Cows"},{"id":"0x0100082010A4E000","name":"Voxelgram"},{"id":"0x010008600F1F2000","name":"Billy Bomber"},{"id":"0x010009F011F90000","name":"Grim Legends: The Forsaken Bride"},{"id":"0x01000BD00CE64000","name":"VAMPYR"},{"id":"0x01000C100CFD8000","name":"Secrets of Magic 2 - Witches & Wizards"},{"id":"0x01000D1008714000","name":"ACA NEOGEO FATAL FURY 3"},{"id":"0x01000DF00EBBA000","name":"Beholder 2"},{"id":"0x01000EC010BF4000","name":"Niche - a genetics survival game"},{"id":"0x010011000E31A000","name":"Button Button Up!"},{"id":"0x0100121007308000","name":"Eggggg - The platform puker"},{"id":"0x0100153003AF2000","name":"Solar Flux"},{"id":"0x010017700B6C2000","name":"New Super Lucky's Tale"},{"id":"0x01001B000CAF0000","name":"Hive Jump"},{"id":"0x01001B70080F0000","name":"HEROINE ANTHEM ZERO episode 1"},{"id":"0x01001E700AC60000","name":"SEGA AGES Wonder Boy: Monster Land"},{"id":"0x01001F900B78C000","name":"SuperMash"},{"id":"0x010021800B6C0000","name":"Cycle 28"},{"id":"0x010023300CD52000","name":"Bash The Bear"},{"id":"0x010007B012514000","name":"The Great Perhaps"},{"id":"0x010008A0128C4000","name":"Tamiku"},{"id":"0x01000BA0132EA000","name":"Choices That Matter: And The Sun Went Out"},{"id":"0x01000E200C8D4000","name":"Hyperide: Vector Raid"},{"id":"0x01000EC01212E000","name":"Coast Guard: Beach Rescue Team"},{"id":"0x01000F0002BB6000","name":"Wargroove"},{"id":"0x01000F20102AC000","name":"The Copper Canyon Dixie Dash"},{"id":"0x01000F700DECE000","name":"Into the Dead 2"},{"id":"0x010010A00DA48000","name":"Baldur's Gate and Baldur's Gate II: Enhanced Editions"},{"id":"0x0100120004644000","name":"Super Mega Baseball 2: Ultimate Edition"},{"id":"0x010014A0115BE000","name":"Cake Bash"},{"id":"0x010014E004FA8000","name":"ACA NEOGEO KARNOV'S REVENGE"},{"id":"0x010015A0113E0000","name":"Quiplash"},{"id":"0x010016400B1FE000","name":"Corpse Party: Blood Drive"},{"id":"0x010016400F07E000","name":"Push the Crate"},{"id":"0x010017500E7E0000","name":"Whipseey and the Lost Atlas"},{"id":"0x010018E012914000","name":"Aery - Sky Castle"},{"id":"0x0100192010F5A000","name":"Tracks - Toybox Edition"},{"id":"0x010019A0038FA000","name":"ACA NEOGEO FATAL FURY SPECIAL"},{"id":"0x0100039002CCC000","name":"Johnny Turbo's Arcade: Super Real Darwin"},{"id":"0x010003900E46A000","name":"Super Dodgeball Beats"},{"id":"0x0100045010EB6000","name":"Shadows"},{"id":"0x010007401287E000","name":"BIG-Bobby-Car - The Big Race"},{"id":"0x010008000C8F6000","name":"Lyrica"},{"id":"0x010008300C978000","name":"Arcade Archives IMAGE FIGHT"},{"id":"0x010008400A268000","name":"Another Lost Phone: Laura's Story"},{"id":"0x010008600D1AC000","name":"Solo: Islands of the Heart"},{"id":"0x010008900705C000","name":"Dragon Quest Builders™"},{"id":"0x01000A700F956000","name":"Deep Space Rush"},{"id":"0x01000CC012D74000","name":"Rock 'N Racing Bundle Grand Prix & Rally"},{"id":"0x01000E8009E1C000","name":"Shift Quantum"},{"id":"0x010012F00B6F2000","name":"Yomawari: The Long Night Collection"},{"id":"0x010017B0102A8000","name":"Emma: Lost in Memories"},{"id":"0x01001B201264E000","name":"Merchant of the Skies"},{"id":"0x01001F90122B2000","name":"Super Punch Patrol"},{"id":"0x01001FA009A1E000","name":"Mecha Storm"},{"id":"0x010021F00AD76000","name":"My Farm"},{"id":"0x010024C01242E000","name":"Gerty"},{"id":"0x010000000EEF0000","name":"Shadows 2: Perfidia"},{"id":"0x010000300C79C000","name":"GensokyoDefenders"},{"id":"0x01000060085D2000","name":"A Hole New World"},{"id":"0x0100016012D38000","name":"BIT.TRIP CORE"},{"id":"0x010001C011354000","name":"Aeolis Tournament"},{"id":"0x010004D00D32A000","name":"Zombieland: Double Tap - Road Trip"},{"id":"0x010007A00980C000","name":"Arcade Archives City CONNECTION"},{"id":"0x010008800B18A000","name":"Super Destronaut DX"},{"id":"0x01000A0004C50000","name":"FLASHBACK™"},{"id":"0x01000C800AFD6000","name":"ACA NEOGEO SAMURAI SHODOWN V"},{"id":"0x01000D500D08A000","name":"Brothers: A Tale of Two Sons"},{"id":"0x01000F000D9F0000","name":"Geki Yaba Runner Anniversary Edition"},{"id":"0x01000F20083A8000","name":"Tactical Mind"},{"id":"0x010010A00A95E000","name":"Sayonara Wild Hearts"},{"id":"0x010015D0127D6000","name":"QV"},{"id":"0x0100178009648000","name":"Coffin Dodgers"},{"id":"0x01001C500D850000","name":"Mowin' & Throwin'"},{"id":"0x01001E500F7FC000","name":"#Funtime"},{"id":"0x01002310064B4000","name":"OF MICE AND SAND -REVISED-"},{"id":"0x01002330123BC000","name":"GRISAIA PHANTOM TRIGGER 05"},{"id":"0x0100005006BA4000","name":"The Keep"},{"id":"0x010000700A572000","name":"State of Anarchy: Master of Mayhem"},{"id":"0x010000F00BF68000","name":"Black and White Bushido"},{"id":"0x010001800DBA6000","name":"Winter Sports Games"},{"id":"0x010001B01398C000","name":"Spirit Arena"},{"id":"0x010002300C632000","name":"Fairy Fencer F™: Advent Dark Force"},{"id":"0x010003000E146000","name":"Mario & Sonic at the Olympic Games Tokyo 2020"},{"id":"0x010003C00B868000","name":"Ninjin: Clash of Carrots"},{"id":"0x010004500DE50000","name":"Paper Dolls Original"},{"id":"0x0100073011382000","name":"Fitness Boxing 2: Rhythm & Exercise"},{"id":"0x010008300D1E0000","name":"Woodle Tree Adventures Demo"},{"id":"0x010008E010012000","name":"ELEA: Paradigm Shift"},{"id":"0x010009000AC2A000","name":"Pure / Electric Love \"Look at my eyes!\" - Moe Yamauchi -"},{"id":"0x01000A600EA88000","name":"Grave Keeper"},{"id":"0x01000B1010D8E000","name":"Bridge! 3"},{"id":"0x01000B2011352000","name":"Nerdook Bundle Vol. 1"},{"id":"0x01000B6007A3C000","name":"The Deer God"},{"id":"0x01000C6011AC2000","name":"Rusty Spout Rescue Adventure"},{"id":"0x01000C900A136000","name":"Kitten Squad"},{"id":"0x0100011012A70000","name":"WeakWood Throne"},{"id":"0x010002100CDCC000","name":"Peaky Blinders: Mastermind"},{"id":"0x010002900B75A000","name":"Palm Reading Premium"},{"id":"0x010005A00B312000","name":"Megaton Rainfall"},{"id":"0x010006800E13A000","name":"Chronos: Before the Ashes"},{"id":"0x010008F00B054000","name":"Arcade Archives Sky Skipper"},{"id":"0x01000D60126B6000","name":"Death and Taxes"},{"id":"0x01000E400222A000","name":"Johnny Turbo's Arcade: Super Burger Time"},{"id":"0x01000F600B01E000","name":"ATV Drift & Tricks"},{"id":"0x010010B00DDA2000","name":"Raji: An Ancient Epic"},{"id":"0x010013700DA4A000","name":"Neverwinter Nights: Enhanced Edition"},{"id":"0x010013F009B88000","name":"Xeno Crisis"},{"id":"0x010017D0130C4000","name":"Destropolis"},{"id":"0x0100187003A36000","name":"Pokémon™: Let’s Go, Eevee!"},{"id":"0x01001A5010CC6000","name":"Dark Tower: RPG Dungeon Puzzle"},{"id":"0x01001BA00AE4E000","name":"Final Light, The Prison"},{"id":"0x01001D600D2C8000","name":"Bedtime Blues"},{"id":"0x01001DD0116AA000","name":"Push the Box - Puzzle Game"},{"id":"0x01001F100B586000","name":"Rooms: The Adventure of Anne & George"},{"id":"0x0100000000010000","name":"Super Mario Odyssey™"},{"id":"0x0100016011A1A000","name":"Ship Sim 2020"},{"id":"0x010001A00A1F6000","name":"Knock-Knock"},{"id":"0x010003701002C000","name":"Nurse Love Syndrome"},{"id":"0x01000440123A6000","name":"Roah"},{"id":"0x010009B00D33C000","name":"Rugby Challenge 4"},{"id":"0x010009E001D90000","name":"World of Goo"},{"id":"0x01000D700EAA0000","name":"Gurgamoth"},{"id":"0x01000E800FCB4000","name":"Ships"},{"id":"0x010018900DD00000","name":"DOOM (1993)"},{"id":"0x0100192009824000","name":"Arcade Archives BOMB JACK"},{"id":"0x0100196009998000","name":"Super Kickers League Ultimate"},{"id":"0x01001A4008192000","name":"Gem Smashers"},{"id":"0x01001B800D742000","name":"Robot Squad Simulator"},{"id":"0x01001BD010758000","name":"Bridge Builder Adventure"},{"id":"0x01001D500EB90000","name":"Omen Exitio: Plague"},{"id":"0x01001DC00E324000","name":"Garage Mechanic Simulator"},{"id":"0x01001FF0104D8000","name":"Syrup and The Ultimate Sweet"},{"id":"0x0100230005A52000","name":"Lovers in a Dangerous Spacetime"},{"id":"0x01002450112D4000","name":"Electronic Super Joy 2"},{"id":"0x0100063005C86000","name":"Phantom Breaker: Battle Grounds Overdrive"},{"id":"0x010007900FCE2000","name":"Crash Drive 2"},{"id":"0x01000C7003FE8000","name":"GORSD"},{"id":"0x01000E4012A00000","name":"Rusty Gun"},{"id":"0x01000FB00AA90000","name":"Little Town Hero"},{"id":"0x0100102010BFC000","name":"Travel Mosaics 3: Tokyo Animated"},{"id":"0x010011600C946000","name":"Travis Strikes Again: No More Heroes"},{"id":"0x010013C010C5C000","name":"Banner of the Maid"},{"id":"0x010014900D744000","name":"Godly Corp"},{"id":"0x0100170008728000","name":"ACA NEOGEO THE KING OF FIGHTERS '97"},{"id":"0x01001AA00BADC000","name":"Esports Life Tycoon"},{"id":"0x010020700E2A2000","name":"Disaster Report 4: Summer Memories"},{"id":"0x010020C00FFB6000","name":"Vampire: The Masquerade - Coteries of New York"},{"id":"0x0100236011A42000","name":"Black Rainbow"},{"id":"0x010023900AEE0000","name":"Paladins"},{"id":"0x010024400C516000","name":"RAD"},{"id":"0x010024A00C854000","name":"Mimic Hunter"},{"id":"0x010025C007892000","name":"Soap Dodgem"},{"id":"0x010026D00AABE000","name":"Moorhuhn Remake"},{"id":"0x0100272012DEC000","name":"Macbat 64: Journey of a Nice Chap"},{"id":"0x010001100E708000","name":"Skybolt Zack"},{"id":"0x010002B00C534000","name":"American Fugitive"},{"id":"0x010003100F1F4000","name":"CrunchTime"},{"id":"0x01000690085BE000","name":"Little Triangle"},{"id":"0x0100089010A92000","name":"Bucket Knight"},{"id":"0x01000DC00AF1C000","name":"Desert Child"},{"id":"0x01000EC007C22000","name":"TouchBattleTankSP"},{"id":"0x01000FA010340000","name":"Melbits World"},{"id":"0x01001010134EA000","name":"Zombie Hill Race"},{"id":"0x010010A009830000","name":"Space Ribbon"},{"id":"0x0100111012438000","name":"Quell Reflect"},{"id":"0x010014000C63C000","name":"Samsara: Deluxe Edition"},{"id":"0x0100148012F7A000","name":"Crawlco Block Knockers"},{"id":"0x010014900865A000","name":"Toast Time: Smash Up!"},{"id":"0x010015500F186000","name":"Lanternium"},{"id":"0x0100161009E5C000","name":"MX Nitro: Unleashed"},{"id":"0x010017600B180000","name":"Polygod"},{"id":"0x010017E012888000","name":"Wallachia: Reign of Dracula"},{"id":"0x010018E00BA22000","name":"Drift Legends"},{"id":"0x010019700D13A000","name":"SEGA AGES Puyo Puyo 2"},{"id":"0x010016C009374000","name":"Lode Runner Legacy"},{"id":"0x0100194010422000","name":"bayala - the game"},{"id":"0x01001B700BA7C000","name":"The Escapists: Complete Edition"},{"id":"0x01001CC00416C000","name":"Rogue Trooper Redux"},{"id":"0x01001D0003B96000","name":"INVERSUS Deluxe"},{"id":"0x01001E200F2F8000","name":"Grimshade"},{"id":"0x01001E40041BE000","name":"Scribblenauts Showdown"},{"id":"0x01001E600AF08000","name":"SEGA AGES Gain Ground"},{"id":"0x01001EC013576000","name":"Autumn's Journey"},{"id":"0x01001F200A536000","name":"Tetra's Escape DEMO"},{"id":"0x010020500C8C8000","name":"Number Place 10000"},{"id":"0x010021700F6A4000","name":"Yellow Fins"},{"id":"0x010021D00D53E000","name":"A Dark Room"},{"id":"0x010022500C964000","name":"StarCrossed"},{"id":"0x0100227010460000","name":"Kirby Fighters™ 2"},{"id":"0x010022C00F20A000","name":"Paper Train"},{"id":"0x010023500EF76000","name":"Galaxy Champions TV"},{"id":"0x010024A009428000","name":"Mad Carnage"},{"id":"0x010024D0032F2000","name":"Photon Cube"},{"id":"0x010029900E314000","name":"SEGA AGES Herzog Zwei"},{"id":"0x010032800D46C000","name":"Dungeons & Aliens"},{"id":"0x010033700418A000","name":"Wulverblade"},{"id":"0x010034E00A114000","name":"de Blob 2"},{"id":"0x010035A00D4E6000","name":"Warparty"},{"id":"0x0100361007268000","name":"MotoGP™18"},{"id":"0x010038800DF74000","name":"Monkey Business"},{"id":"0x0100394010844000","name":"Seers Isle"},{"id":"0x010039600E7AC000","name":"Attack of the Toy Tanks"},{"id":"0x01003AD00DEAE000","name":"SlabWell: The Quest For Kaktun's Alpaca"},{"id":"0x01003BB00B08E000","name":"Hidden Folks"},{"id":"0x01003D800BE5C000","name":"Digerati Indie Bundle: INK & HackyZack"},{"id":"0x01003DB011AE8000","name":"#womenUp, Super Puzzles Dream"},{"id":"0x01003F800E87C000","name":"Wuppo: Definitive Edition"},{"id":"0x0100416008A12000","name":"Onimusha: Warlords"},{"id":"0x01004170113D4000","name":"The Complex"},{"id":"0x0100459009A2A000","name":"GRIP"},{"id":"0x010046600CCA4000","name":"Kotodama: The 7 Mysteries of Fujisawa"},{"id":"0x010047D00AFD4000","name":"ACA NEOGEO STAKES WINNER 2"},{"id":"0x01004860080A0000","name":"Baseball Riot"},{"id":"0x01004BB00421E000","name":"Syberia 1 & 2"},{"id":"0x010000E00E612000","name":"Pixel Puzzle Makeout League"},{"id":"0x010001F00D9B8000","name":"Riddled Corpses EX Demo"},{"id":"0x010004900D772000","name":"Modern Tales: Age of Invention"},{"id":"0x010005400A45E000","name":"Agent A: A puzzle in disguise"},{"id":"0x010006C00CC10000","name":"Shanky: The Vegan`s Nightmare"},{"id":"0x010007300DE1E000","name":"Monaco: Complete Edition"},{"id":"0x010007B009314000","name":"I and Me Demo"},{"id":"0x01000B500EB22000","name":"One Finger Death Punch 2"},{"id":"0x01000B700EC22000","name":"Illusion of L'Phalcia"},{"id":"0x01000BE001DD8000","name":"Arcade Archives MOON CRESTA"},{"id":"0x01000D600EFC4000","name":"Gemstone Keeper"},{"id":"0x010010400D46A000","name":"SNACK WORLD: THE DUNGEON CRAWL — GOLD"},{"id":"0x010015D003EE4000","name":"The Jackbox Party Pack 2"},{"id":"0x010018400E4FC000","name":"Vortex Attack EX"},{"id":"0x01001A900D312000","name":"Another Sight"},{"id":"0x010023800D3F2000","name":"Awesome Pea (Demo)"},{"id":"0x010024700901A000","name":"Gal*Gun 2"},{"id":"0x01002490132F2000","name":"The Casino -Roulette, Video Poker, Slot Machines, Craps, Baccarat-"},{"id":"0x010025B002E92000","name":"Blaster Master Zero Demo"},{"id":"0x010002F009A7A000","name":"Road to Ballhalla"},{"id":"0x010003F00BD48000","name":"Friday the 13th: Killer Puzzle"},{"id":"0x010005D00FC06000","name":"puzzlement"},{"id":"0x010006900EF5E000","name":"Pacific Wings"},{"id":"0x01000BF00BE40000","name":"Bring Them Home"},{"id":"0x01000F000AAF0000","name":"Kenshō"},{"id":"0x01000F400435A000","name":"Immortal Redneck"},{"id":"0x010012500FD08000","name":"Tower Inferno"},{"id":"0x010015A00AF1E000","name":"Whispering Willows"},{"id":"0x010016300D172000","name":"Avenger Bird"},{"id":"0x010018100F688000","name":"Princess Maker Go!Go! Princess"},{"id":"0x0100183010F12000","name":"JUMP FORCE - Deluxe Edition"},{"id":"0x01001900112B2000","name":"FINAL SWORD"},{"id":"0x010021F004270000","name":"Spelunker Party!"},{"id":"0x010026000F662000","name":"LA-MULANA"},{"id":"0x010026300BA4A000","name":"Slay the Spire"},{"id":"0x0100274004052000","name":"PAYDAY 2"},{"id":"0x010028200E132000","name":"Grass Cutter - Mutated Lawns"},{"id":"0x010029600CD44000","name":"Piczle Colors"},{"id":"0x010029600EAE4000","name":"Arcade Archives VS. CASTLEVANIA"},{"id":"0x010020400E1C2000","name":"Raging Loop"},{"id":"0x010021400C6C4000","name":"Jewel Fever 2 Demo"},{"id":"0x010023600AA34000","name":"Q.U.B.E. 2"},{"id":"0x010023800FE12000","name":"Cloudbase Prime"},{"id":"0x010028C003FD6000","name":"Syberia 2"},{"id":"0x010029B00CC3E000","name":"UTOPIA 9 - A Volatile Vacation"},{"id":"0x010030D010D66000","name":"Chess Minimal"},{"id":"0x010030F00CA1E000","name":"Vaporum"},{"id":"0x010032B00C31E000","name":"Super Hyperactive Ninja"},{"id":"0x010036C00BDE4000","name":"Monster Dynamite"},{"id":"0x010037D00DBDC000","name":"YU-NO: A girl who chants love at the bound of this world."},{"id":"0x0100388012922000","name":"Drag Racing Rivals"},{"id":"0x01003A400C3DA000","name":"YouTube"},{"id":"0x01003DF00E328000","name":"Maddening Euphoria"},{"id":"0x01003E8010E3A000","name":"The Man With The Ivory Cane"},{"id":"0x01003EF007ABA000","name":"Minecraft: Story Mode - Season Two"},{"id":"0x01003F200D0F2000","name":"Moto Rush GT"},{"id":"0x010042A00FBF0000","name":"My Riding Stables 2: A New Adventure"},{"id":"0x010045200A1C2000","name":"Ultimate Runner"},{"id":"0x010045F00BFC2000","name":"GIGA WRECKER ALT."},{"id":"0x0100017007980000","name":"Hotel Transylvania 3 Monsters Overboard"},{"id":"0x010002E00D3FE000","name":"Arcade Archives DONKEY KONG 3"},{"id":"0x01000490067AE000","name":"Frederic 2: Evil Strikes Back"},{"id":"0x010005400E394000","name":"Dead in Vinland - True Viking edition"},{"id":"0x0100066004D68000","name":"This Is the Police"},{"id":"0x010006E00DFAE000","name":"Pantsu Hunter: Back to the 90s"},{"id":"0x010006F011220000","name":"Megadimension Neptunia VII"},{"id":"0x010008C01010A000","name":"Traditional Tactics Ne+"},{"id":"0x01000D700D2D6000","name":"Balance Blox"},{"id":"0x01000E800F7F0000","name":"SEN: Seven Eight Nine"},{"id":"0x01000ED0124F2000","name":"Mastercube"},{"id":"0x01000F300F082000","name":"Reaper: Tale of a Pale Swordsman"},{"id":"0x010011700D1B2000","name":"Perchang"},{"id":"0x010014F001DE2000","name":"Arcade Archives Armed F"},{"id":"0x0100157004512000","name":"Severed"},{"id":"0x010016300A95A000","name":"Hexologic"},{"id":"0x01001740116EC000","name":"Zombie's Cool"},{"id":"0x010020100B768000","name":"True Fear: Forsaken Souls - Part 1 Demo"},{"id":"0x010021300ABDE000","name":"Puzzle Puppers Demo"},{"id":"0x010001E00F75A000","name":"Alchemist's Castle"},{"id":"0x010003F00C5C0000","name":"Rawr-Off"},{"id":"0x010005400EC0C000","name":"Lost Artifacts: Time Machine"},{"id":"0x010005500ADDC000","name":"Swap This!"},{"id":"0x0100059012BAE000","name":"Crown Trick"},{"id":"0x010006001107E000","name":"Bleed Complete Bundle"},{"id":"0x01000D200C614000","name":"SEGA AGES Sonic The Hedgehog 2"},{"id":"0x010012400D202000","name":"Street Outlaws: The List"},{"id":"0x010015700D5DC000","name":"Super Jumpy Ball"},{"id":"0x010015F008C54000","name":"Pokémon™ HOME"},{"id":"0x0100184011918000","name":"Darkestville Castle"},{"id":"0x0100207007EB2000","name":"Smoke And Sacrifice"},{"id":"0x010021C000B6A000","name":"The Binding of Isaac: Afterbirth+"},{"id":"0x010023500B0BA000","name":"Nefarious"},{"id":"0x01002BD00983E000","name":"Burly Men at Sea"},{"id":"0x01002E700AFC4000","name":"ACA NEOGEO ZUPAPA!"},{"id":"0x01002F6011D12000","name":"Retro Tanks"},{"id":"0x010031D00EA96000","name":"Classic Games Collection Vol.1"},{"id":"0x010031E00F6AE000","name":"Chop is Dish"},{"id":"0x010032800D740000","name":"Mosaic"},{"id":"0x010025300B914000","name":"Horizon Shift '81"},{"id":"0x010026800BA16000","name":"Xenon Racer"},{"id":"0x010028D00BA1A000","name":"The Sinking City"},{"id":"0x01002A600E346000","name":"Word Wheel by POWGI"},{"id":"0x01002B000C4AA000","name":"Warhammer Quest"},{"id":"0x01002D4012222000","name":"Ultra Hat Dimension"},{"id":"0x01002DB007A96000","name":"Legend of Kay Anniversary"},{"id":"0x010030B00C316000","name":"Planescape: Torment and Icewind Dale: Enhanced Editions"},{"id":"0x010031B00CF66000","name":"Devil Engine"},{"id":"0x010031D00A604000","name":"Songbringer"},{"id":"0x010032000EA2C000","name":"Blacksad: Under the Skin"},{"id":"0x010032200EC9C000","name":"Runestone Keeper"},{"id":"0x0100345009240000","name":"Impossible Mission"},{"id":"0x01003560119A6000","name":"Mini Motor Racing X"},{"id":"0x010035A0044E8000","name":"JYDGE"},{"id":"0x01003720118E0000","name":"The Bullet: Time of Revenge"},{"id":"0x010038900DFE0000","name":"What Remains of Edith Finch"},{"id":"0x010038A00E6C6000","name":"Strike Force Kitty"},{"id":"0x01003EF00D3B4000","name":"Arcade Archives NINJA GAIDEN"},{"id":"0x010002400F408000","name":"Code: Realize ~Future Blessings~"},{"id":"0x010003A00EA90000","name":"IN-VERT"},{"id":"0x0100052004384000","name":"Axiom Verge"},{"id":"0x010007700CFA2000","name":"Saboteur II: Avenging Angel"},{"id":"0x010009800203E000","name":"WWE 2K18"},{"id":"0x01000AC00F5EC000","name":"Spirit Roots"},{"id":"0x01000AC011588000","name":"Thy Sword"},{"id":"0x01000C000C966000","name":"Where the Bees Make Honey"},{"id":"0x01000C600D7CE000","name":"Monster Boy and the Cursed Kingdom Demo"},{"id":"0x01000F1008C92000","name":"Sling Ming"},{"id":"0x010010F004022000","name":"Touhou Kobuto V: Burst Battle"},{"id":"0x010014B00BB04000","name":"Mahjong"},{"id":"0x010015600EFB6000","name":"DRAGON QUEST III: The Seeds of Salvation"},{"id":"0x010015C00E73C000","name":"Duck Life: Battle"},{"id":"0x010016B005CF8000","name":"Siegecraft Commander"},{"id":"0x01001770115C8000","name":"Dodo Peak"},{"id":"0x010017C012726000","name":"Fantasy Friends"},{"id":"0x0100192003FA4000","name":"Azure Striker GUNVOLT: STRIKER PACK"},{"id":"0x01001AF00CE54000","name":"ONINAKI"},{"id":"0x01001BB00F20E000","name":"Farmer Sim 2020"},{"id":"0x0100241012432000","name":"Swords and Sandals: Spartacus"},{"id":"0x010025500C098000","name":"Gato Roboto"},{"id":"0x01002600105C6000","name":"Fishing Adventure"},{"id":"0x010027800FECE000","name":"Football Game"},{"id":"0x01002820036A8000","name":"Sine Mora EX"},{"id":"0x010028F013358000","name":"KAUIL’S TREASURE"},{"id":"0x01002AA00C708000","name":"Word Sudoku by POWGI"},{"id":"0x01002B800F2B8000","name":"Arcade Archives IN THE HUNT"},{"id":"0x01003350102E2000","name":"Barbarous: Tavern of Emyr"},{"id":"0x010035600EC94000","name":"Wenjia"},{"id":"0x01003AB01062C000","name":"Shaolin vs Wutang"},{"id":"0x01003AB011FD8000","name":"Super Puzzle Pack"},{"id":"0x01003C700EB20000","name":"Sir Eatsalot"},{"id":"0x01003E5002320000","name":"The Fall Part 2: Unbound"},{"id":"0x01003F300E7E2000","name":"Jump, Step, Step"},{"id":"0x0100400013A46000","name":"Ragdoll Fighter"},{"id":"0x010040E00F642000","name":"Morbid: The Seven Acolytes"},{"id":"0x0100416004C00000","name":"DOOM"},{"id":"0x0100417007F78000","name":"Danmaku Unlimited 3"},{"id":"0x010044000CBCA000","name":"Dexteritrip"},{"id":"0x010000700F292000","name":"Arcade Archives THE TIN STAR"},{"id":"0x010007300C482000","name":"Sydney Hunter and the Curse of the Mayan"},{"id":"0x010007400EB64000","name":"CastleStorm II"},{"id":"0x010009100845A000","name":"INVERSUS Deluxe Demo"},{"id":"0x01000A601139E000","name":"Shmup Collection"},{"id":"0x01000BA00C9EE000","name":"Duck Hunting Challenge"},{"id":"0x01000CC010594000","name":"Null Drifter"},{"id":"0x01000E400ED98000","name":"Farm Mystery"},{"id":"0x010010200D09A000","name":"Iron Snout"},{"id":"0x0100120008468000","name":"Crazy Mini Golf Arcade"},{"id":"0x010012B011AB2000","name":"Death Come True"},{"id":"0x0100197011BFE000","name":"Pity Pit"},{"id":"0x01001AE005166000","name":"Worms W.M.D"},{"id":"0x01001AF008BDA000","name":"Zen Bound 2"},{"id":"0x01001B6010D58000","name":"YOGA MASTER"},{"id":"0x01001B700B278000","name":"Bird Game +"},{"id":"0x01001B7012214000","name":"Alwa's Legacy"},{"id":"0x01001C100D80E000","name":"Mainlining"},{"id":"0x010022D0089AE000","name":"Labyrinth of the Witch"},{"id":"0x010025E00FD40000","name":"League of the Shield"},{"id":"0x01002950102CE000","name":"Super Tennis"},{"id":"0x01002C400ADC0000","name":"Lost King's Lullaby"},{"id":"0x01002E4011924000","name":"Dininho Adventures"},{"id":"0x0100307004B4C000","name":"Flinthook"},{"id":"0x010031B00C48C000","name":"Invisible, Inc. Nintendo Switch Edition"},{"id":"0x010034100D096000","name":"The Four Kings Casino and Slots"},{"id":"0x010034300BFC4000","name":"My Riding Stables - Life with Horses"},{"id":"0x010037400C7DA000","name":"Eagle Island"},{"id":"0x010039700D200000","name":"Super Skelemania"},{"id":"0x010039C001296000","name":"Infinite Minigolf"},{"id":"0x01003A1010E3C000","name":"BE-A Walker"},{"id":"0x01003A400BF8C000","name":"Destruction"},{"id":"0x01003AB00983C000","name":"Lethal League Blaze"},{"id":"0x01003B800B54C000","name":"President F.net"},{"id":"0x010040E00B636000","name":"Doughlings: Arcade"},{"id":"0x0100425009FB2000","name":"Baobabs Mausoleum Ep.1: Ovnifagos Don't Eat Flamingos"},{"id":"0x0100426001DE4000","name":"Arcade Archives Atomic Robo-Kid"},{"id":"0x010042700E3FC000","name":"Spitlings"},{"id":"0x010042800CDCE000","name":"Neon Caves"},{"id":"0x010044200D2C4000","name":"The Sushi Spinnery"},{"id":"0x010019F00CF92000","name":"Doom & Destiny"},{"id":"0x01001C9007614000","name":"Max: The Curse of Brotherhood"},{"id":"0x01001F100FA04000","name":"Oddmar"},{"id":"0x010022600A79A000","name":"Niffelheim"},{"id":"0x010025200FC54000","name":"Croc's World 3"},{"id":"0x010027B00E40E000","name":"Ashen"},{"id":"0x010028101227A000","name":"Meganoid"},{"id":"0x010029400CA20000","name":"Clue: The Classic Mystery Game"},{"id":"0x01002A0009E18000","name":"Jolt Family Robot Racer"},{"id":"0x01002BD00CB86000","name":"Panty Party"},{"id":"0x01002C30122F4000","name":"Space Avenger: Empire of Nexx"},{"id":"0x01002C700C326000","name":"Riddled Corpses EX"},{"id":"0x01002D400CCF4000","name":"Ivanych vs Eared Beast"},{"id":"0x010030800BC36000","name":"Collidalot"},{"id":"0x010031C0110F6000","name":"Rocket Rabbit - Coin Race"},{"id":"0x010035E00C1AE000","name":"Battle of Kings"},{"id":"0x010038B00BFD4000","name":"Operation Pig"},{"id":"0x01003AA00F5C4000","name":"Refreshing Sideways Puzzle Ghost Hammer"},{"id":"0x01003C3013300000","name":"The Long Return"},{"id":"0x010040600C5CE000","name":"Tetris® 99"},{"id":"0x010000401313A000","name":"Demong Hunter"},{"id":"0x010001900BDCA000","name":"Season Match"},{"id":"0x0100041013360000","name":"Control Ultimate Edition - Cloud Version"},{"id":"0x010004400B28A000","name":"Cattails"},{"id":"0x010004901194A000","name":"Trail Boss BMX"},{"id":"0x01000580117EA000","name":"Seeds of Resilience"},{"id":"0x010006600AE9C000","name":"Red's Kingdom"},{"id":"0x010007E00A1A4000","name":"Henry The Hamster Handler"},{"id":"0x01000D1006CEC000","name":"ATOMIK: RunGunJumpGun"},{"id":"0x01000D100D99A000","name":"Demolition Crew"},{"id":"0x01000D5005974000","name":"N++ (NPLUSPLUS)"},{"id":"0x01000F10123E2000","name":"Retrovamp"},{"id":"0x01000F3008718000","name":"ACA NEOGEO POWER SPIKES II"},{"id":"0x010011B0122CA000","name":"Zombies ruined my day"},{"id":"0x010012900C782000","name":"NEKOPARA Vol.2"},{"id":"0x010016A00AEC0000","name":"WARRIORS OROCHI 4"},{"id":"0x010018100CD46000","name":"Resident Evil 5"},{"id":"0x010018400C24E000","name":"Seven Knights -Time Wanderer-"},{"id":"0x010019B00BE72000","name":"Cel Damage HD"},{"id":"0x01001A300C802000","name":"Fragment of Marine"},{"id":"0x010000E011176000","name":"Rover Wars"},{"id":"0x010002800B818000","name":"Velocity®2X"},{"id":"0x010003D00867A000","name":"Plantera Deluxe Demo"},{"id":"0x010009F004E66000","name":"Transcripted"},{"id":"0x01000D7005E28000","name":"Spelunker Party! DEMO VERSION"},{"id":"0x01000E300E2D6000","name":"Super Star Blast"},{"id":"0x01000EC00E60E000","name":"Vosaria: Lair of the Forgotten"},{"id":"0x01001180021FA000","name":"Shovel Knight: Specter of Torment"},{"id":"0x0100137011172000","name":"Kakuro Magic"},{"id":"0x010014A00AC5A000","name":"The Golf"},{"id":"0x010018300C83A000","name":"Professor Lupo and his Horrible Pets"},{"id":"0x01001B40086E2000","name":"The Bunker"},{"id":"0x01001F0012868000","name":"Paratopic"},{"id":"0x010020500E862000","name":"World Of Riders"},{"id":"0x0100205011C54000","name":"The Snake King"},{"id":"0x0100218011E7E000","name":"MX vs ATV All Out"},{"id":"0x010022400E71C000","name":"Harvest Moon: Mad Dash"},{"id":"0x01002800110CA000","name":"Red Rope: Don't Fall Behind +"},{"id":"0x010029B0118E8000","name":"Need for Speed™ Hot Pursuit Remastered"},{"id":"0x01002A900D6D6000","name":"Motorsport Manager for Nintendo Switch™"},{"id":"0x010000C010E76000","name":"Pocket Mini Golf"},{"id":"0x0100019006F4E000","name":"I Am The Hero"},{"id":"0x0100034012606000","name":"Family Mysteries: Poisonous Promises"},{"id":"0x010004900D976000","name":"Contraptions"},{"id":"0x0100069010592000","name":"Red Death"},{"id":"0x010007700D4AC000","name":"The Forbidden Arts"},{"id":"0x010009300AA6C000","name":"Claybook"},{"id":"0x01000FA00A4E4000","name":"Garage"},{"id":"0x010011000EA7A000","name":"BRIGANDINE The Legend of Runersia"},{"id":"0x0100141011CF2000","name":"Arcade Archives Kangaroo"},{"id":"0x010015500E9C0000","name":"Hexagroove: Tactical DJ"},{"id":"0x010016E011EFA000","name":"Norman's Great Illusion"},{"id":"0x01001B7012A3E000","name":"Car Driving School Simulator"},{"id":"0x01001CA00C514000","name":"Tinboy"},{"id":"0x01001F600829A000","name":"Romancing SaGa 2"},{"id":"0x01001FF00B544000","name":"NBA 2K19"},{"id":"0x010024A005A2A000","name":"Super Treasure Arena"},{"id":"0x010024F008742000","name":"Chameleon Run Deluxe Edition"},{"id":"0x010027100BD16000","name":"Crashlands"},{"id":"0x010028F010644000","name":"Secret Files 3"},{"id":"0x010003F00CC98000","name":"Sky Gamblers - Afterburner"},{"id":"0x010004100FBB0000","name":"Chapeau"},{"id":"0x0100047009742000","name":"Twin Robots: Ultimate Edition"},{"id":"0x010005A00A4F4000","name":"Air Hockey"},{"id":"0x010009000CBB6000","name":"Super Hero Fight Club: Reloaded"},{"id":"0x010009300D31C000","name":"Squidgies Takeover"},{"id":"0x01000D200AC0C000","name":"Bud Spencer & Terence Hill - Slaps And Beans"},{"id":"0x01000D4011D10000","name":"Tanky Tanks"},{"id":"0x01001010121DE000","name":"Gothic Murder: Adventure That Changes Destiny"},{"id":"0x010011700D6E2000","name":"Homo Machina"},{"id":"0x0100118009C68000","name":"Figment"},{"id":"0x010013A00E750000","name":"Calico"},{"id":"0x010019D012018000","name":"Jelly Champs!"},{"id":"0x01001A100C0E8000","name":"Caveblazers"},{"id":"0x01001AE00C1B2000","name":"NBA 2K Playgrounds 2"},{"id":"0x01001B80124E4000","name":"Checkers"},{"id":"0x01001D3003FDE000","name":"Indivisible"},{"id":"0x010022700E7D6000","name":"FAR: Lone Sails"},{"id":"0x010023100B19A000","name":"Super Dungeon Tactics"},{"id":"0x01002580038DE000","name":"ACA NEOGEO GALAXY FIGHT: UNIVERSAL WARRIORS"},{"id":"0x010025400AECE000","name":"Fortnite"},{"id":"0x010025F011DB4000","name":"Orbt XL"},{"id":"0x0100273008FBC000","name":"Mercenaries Saga Chronicles"},{"id":"0x010029400DE76000","name":"Bullet Battle: Evolution"},{"id":"0x010029E00C780000","name":"Azure Saga: Pathfinder DELUXE Edition"},{"id":"0x010029F00C876000","name":"Odium to the Core"},{"id":"0x01002B300ECA2000","name":"Secret Files Sam Peters"},{"id":"0x01002BE00BA82000","name":"Word Puzzles by POWGI"},{"id":"0x01002C2011828000","name":"Gravity Rider Zero"},{"id":"0x01002C301033E000","name":"Just Glide"},{"id":"0x01002C600C412000","name":"Monument Builders Rushmore"},{"id":"0x01002CB006AFA000","name":"Dungeon Rushers"},{"id":"0x01002DE01043E000","name":"Stela"},{"id":"0x01002F300D2C6000","name":"Arcade Archives Ninja Spirit"},{"id":"0x010033100691A000","name":"The Coma: Recut"},{"id":"0x01003320103F0000","name":"Breakfast Bar Tycoon"},{"id":"0x010033500B7B6000","name":"Darkwood"},{"id":"0x010033B0134A2000","name":"Freddy Spaghetti"},{"id":"0x0100356009860000","name":"Dragon Sinker"},{"id":"0x010035C00A4BC000","name":"The Adventures of Elena Temple"},{"id":"0x01000E301107A000","name":"Couch Co-Op Bundle Vol. 2"},{"id":"0x0100113008262000","name":"Masquerada: Songs and Shadows"},{"id":"0x0100156011032000","name":"Ageless"},{"id":"0x010016D00A964000","name":"SilverStarChess"},{"id":"0x01001A800D6BC000","name":"Castlevania Anniversary Collection"},{"id":"0x01001A900F862000","name":"Skelattack"},{"id":"0x01001BB00C2EC000","name":"The Path of Motus"},{"id":"0x01001DB00CCA6000","name":"Tied Together Demo"},{"id":"0x010022C00E8D8000","name":"It's Raining Fists and Metal"},{"id":"0x010022F00DA66000","name":"Yooka-Laylee and the Impossible Lair"},{"id":"0x010023100B96E000","name":"Persian Nights: Sands of Wonders"},{"id":"0x010025200E30C000","name":"SEGA AGES Ichidant-R"},{"id":"0x010025A00AACE000","name":"Hot Gimmick Cosplay-jong for Nintendo Switch"},{"id":"0x010025C00D8A2000","name":"I wanna fly"},{"id":"0x010026200FF36000","name":"Jets'n'Guns"},{"id":"0x010028B00CBD0000","name":"Reigns: Game of Thrones"},{"id":"0x01002C900C9AC000","name":"Chaos on Deponia"},{"id":"0x01002DD00AF9E000","name":"The Fall"},{"id":"0x01002F00100A2000","name":"Arcade Archives Bells & Whistles"},{"id":"0x01002130136C0000","name":"Dungeonoid"},{"id":"0x010021D00F404000","name":"Code: Realize ~Guardian of Rebirth~"},{"id":"0x010023600C704000","name":"Deponia"},{"id":"0x010023E008702000","name":"Spiral Splatter"},{"id":"0x010024000C852000","name":"Deponia Doomsday"},{"id":"0x0100247013722000","name":"Pixel Game Maker Series STEOS -Sorrow song of Bounty hunter-"},{"id":"0x010029E00B0D8000","name":"Shift Happens Demo"},{"id":"0x010031E00EA24000","name":"Under the Jolly Roger"},{"id":"0x010033300AC1A000","name":"The Mooseman"},{"id":"0x010037900CB1C000","name":"Viviette"},{"id":"0x010039A0117C0000","name":"ROBOTICS;NOTES DaSH"},{"id":"0x01003A800B102000","name":"One Strike"},{"id":"0x01003D90058FC000","name":"CrossCode"},{"id":"0x01003E300FCAE000","name":"Super Loop Drive"},{"id":"0x01003ED0099B0000","name":"Danger Mouse: The Danger Games"},{"id":"0x010041D00DEB2000","name":"Amoeba Battle - Microscopic RTS Action"},{"id":"0x010041F0128AE000","name":"Liege Dragon"},{"id":"0x010043500A17A000","name":"Fallout Shelter"},{"id":"0x010043800AD94000","name":"Neverout"},{"id":"0x010045500DFE2000","name":"Silk"},{"id":"0x01001BF00B54E000","name":"Spider Solitaire F"},{"id":"0x01001C2010D08000","name":"They Bleed Pixels"},{"id":"0x01001DE005012000","name":"Quest of Dungeons"},{"id":"0x01001DE0076A4000","name":"Shu"},{"id":"0x01001EE00A6B0000","name":"Zotrix: Solar Division"},{"id":"0x01001F201121E000","name":"PAW Patrol Mighty Pups Save Adventure Bay"},{"id":"0x01001FF01247E000","name":"Epic Word Search Collection 2"},{"id":"0x010024C001224000","name":"PAC-MAN™ CHAMPIONSHIP EDITION 2 PLUS"},{"id":"0x0100251012E38000","name":"Journey of the Broken Circle"},{"id":"0x010029500DFBA000","name":"Everdark Tower"},{"id":"0x01002A300BDE2000","name":"Panda Hero"},{"id":"0x01002C6012334000","name":"My Aunt is a Witch"},{"id":"0x01002C9005F36000","name":"Youtubers Life OMG Edition"},{"id":"0x01002D900C5E4000","name":"Uncanny Valley"},{"id":"0x01002E700F958000","name":"Brunswick Pro Billiards"},{"id":"0x0100307011C44000","name":"Yuppie Psycho: Executive Edition"},{"id":"0x0100322004844000","name":"Embers of Mirrim"},{"id":"0x0100335012D08000","name":"Family Mysteries 2: Echoes of Tomorrow"},{"id":"0x010034E005C9C000","name":"Code of Princess EX"},{"id":"0x010026000E466000","name":"NBA 2K20"},{"id":"0x0100284007D6C000","name":"Super One More Jump"},{"id":"0x010029D00E740000","name":"DOOM 3"},{"id":"0x01002A2004530000","name":"The Bridge"},{"id":"0x01002D100EF3A000","name":"Vigil: The Longest Night"},{"id":"0x01002D4007AE0000","name":"Mega Man Legacy Collection"},{"id":"0x010030700CBBC000","name":"The friends of Ringo Ishikawa"},{"id":"0x010034400CB5E000","name":"Candleman"},{"id":"0x01003670066DE000","name":"36 Fragments of Midnight"},{"id":"0x010038B0084EA000","name":"#Breakforcist Battle"},{"id":"0x01003B200C6CA000","name":"Tyr : Chains of Valhalla"},{"id":"0x01003F900E74E000","name":"Evan's Remains"},{"id":"0x0100401003A0C000","name":"Dimension Drive"},{"id":"0x010041C00D086000","name":"Ion Fury"},{"id":"0x01004200099F2000","name":"Fractured Minds"},{"id":"0x010042C006490000","name":"Bleed"},{"id":"0x01004360045C8000","name":"Lichtspeer: Double Speer Edition"},{"id":"0x0100449011506000","name":"The Last Campfire"},{"id":"0x010045C011DF6000","name":"Endurance - space action"},{"id":"0x01004A200C236000","name":"Animated Jigsaws: Wild Animals"},{"id":"0x01002EB007D3A000","name":"Star Ghost"},{"id":"0x0100331005E8E000","name":"Super Putty Squad"},{"id":"0x0100343013248000","name":"Nubarron: The adventure of an unlucky gnome"},{"id":"0x0100355002CBE000","name":"Johnny Turbo's Arcade Joe and Mac Caveman Ninja"},{"id":"0x010035A00DF62000","name":"KUNAI"},{"id":"0x01003830092B8000","name":"Giana Sisters: Twisted Dreams - Owltimate Edition"},{"id":"0x010038500BCD6000","name":"Grandpa and the Zombies"},{"id":"0x010038B00B9AE000","name":"Mummy Pinball"},{"id":"0x010038F00AFA0000","name":"ACA NEOGEO Money Puzzle Exchanger"},{"id":"0x010039C0106C6000","name":"Baron: Fur Is Gonna Fly"},{"id":"0x01003B400A00A000","name":"The Adventures of Bertram Fiddle: Episode 1: A Dreadly Business"},{"id":"0x01003BC0000A0000","name":"Splatoon™ 2"},{"id":"0x01003BC00FBAA000","name":"Color Jumper"},{"id":"0x01003CD00E8BC000","name":"Offroad Racing - Buggy X ATV X Moto"},{"id":"0x01003D50100F4000","name":"Breathing Fear"},{"id":"0x01003F000C7F8000","name":"Necrosphere Deluxe"},{"id":"0x010040900F032000","name":"Horse Farm"},{"id":"0x010042C011476000","name":"Unrailed!"},{"id":"0x010043A012A32000","name":"Blackjack Hands"},{"id":"0x01002A000CD48000","name":"Resident Evil 6"},{"id":"0x01002B400873C000","name":"Samurai Defender: Ninja Warfare"},{"id":"0x01002B5012004000","name":"Adventures of Pip"},{"id":"0x01002BB00C01E000","name":"Animated Jigsaws: Japanese Women"},{"id":"0x01002D3007962000","name":"Sundered: Eldritch Edition"},{"id":"0x01002F1005F3C000","name":"Away: Journey To The Unexpected"},{"id":"0x01002FF00F460000","name":"Warhammer Quest 2: The End Times"},{"id":"0x010031900F66E000","name":"Rally Road - Crashy Car Racing"},{"id":"0x0100325012C12000","name":"#NoLimitFantasy, Super Puzzles Dream"},{"id":"0x010034F00BFC8000","name":"Debris Infinity"},{"id":"0x010038400C2FE000","name":"TY the Tasmanian Tiger HD"},{"id":"0x010038600B27E000","name":"Bastion"},{"id":"0x010039A010DA0000","name":"Active Neurons - Puzzle game"},{"id":"0x01003C400AD42000","name":"Rescue Tale"},{"id":"0x01004230123E0000","name":"More Dark"},{"id":"0x010042500FABA000","name":"Ritual: Crown of Horns"},{"id":"0x010044700FB46000","name":"SELFY COLLECTION The dream fashion stylist!"},{"id":"0x010045000BF6A000","name":"Mitsurugi Kamui Hikae"},{"id":"0x010048800B638000","name":"Windjammers"},{"id":"0x01004CF00A60E000","name":"Super Saurio Fly"},{"id":"0x010051800E922000","name":"The Dark Crystal: Age of Resistance Tactics"},{"id":"0x010051A00E99E000","name":"Bug Fables: The Everlasting Sapling"},{"id":"0x010051A011AD8000","name":"Poopdie - Chapter One"},{"id":"0x010053B0117F8000","name":"Biped"},{"id":"0x010058600E530000","name":"Empire of Sin"},{"id":"0x010059400E2FC000","name":"Damaged In Transit"},{"id":"0x01005F200F7C2000","name":"Zen Chess Collection"},{"id":"0x01005F3012748000","name":"Batbarian: Testament of the Primordials"},{"id":"0x01005F4009112000","name":"Nightmare Boy: The New Horizons of Reigns of Dreams, a Metroidvania journey with little rusty nightmares, the empire of knight final boss"},{"id":"0x01006040110AE000","name":"Yes, Your Grace"},{"id":"0x010060700AC50000","name":"MARVEL ULTIMATE ALLIANCE 3: The Black Order"},{"id":"0x010062C00F558000","name":"So Many Me: Extended Edition"},{"id":"0x010063100B2C2000","name":"Cytus α"},{"id":"0x0100669011C36000","name":"Chickens Madness"},{"id":"0x010068200E96E000","name":"Sky Gamblers: Storm Raiders 2"},{"id":"0x010068700C70A000","name":"ITTA"},{"id":"0x010069900F270000","name":"Himno"},{"id":"0x01006AA013086000","name":"Art Sqool"},{"id":"0x010029D006ED8000","name":"Arcade Archives Traverse USA"},{"id":"0x010029F00FCC4000","name":"Tennis Go"},{"id":"0x01002A600D7FC000","name":"Collection of Mana"},{"id":"0x01002B00111A2000","name":"Hyrule Warriors: Age of Calamity"},{"id":"0x01002C0008E52000","name":"Tales of Vesperia™: Definitive Edition"},{"id":"0x010030F008730000","name":"ACA NEOGEO REAL BOUT FATAL FURY"},{"id":"0x010031200B94C000","name":"My Friend Pedro"},{"id":"0x010032700EAC4000","name":"WarriOrb"},{"id":"0x010035901046C000","name":"Mushroom Quest"},{"id":"0x010039300A56C000","name":"Squareboy vs Bullies: Arena Edition Demo"},{"id":"0x010039A008E76000","name":"ChromaGun"},{"id":"0x01003B300B568000","name":"Battle Supremacy"},{"id":"0x01003B9007E86000","name":"Hammerwatch"},{"id":"0x01003C300AAAE000","name":"Another World"},{"id":"0x01003F000973E000","name":"Metropolis: Lux Obscura"},{"id":"0x0100465008756000","name":"Banner Saga 1"},{"id":"0x010047F001DBC000","name":"ACA NEOGEO SAMURAI SHODOWN IV"},{"id":"0x0100487012CC6000","name":"The Last Days"},{"id":"0x010049400C7A8000","name":"Arcade Archives IKARI WARRIORS"},{"id":"0x010049500DE56000","name":"War Tech Fighters"},{"id":"0x0100299013ADE000","name":"Arcade Archives MARKHAM"},{"id":"0x01002C300E630000","name":"Arcade Archives TRACK & FIELD"},{"id":"0x01002DD004FAC000","name":"ACA NEOGEO WORLD HEROES"},{"id":"0x01002FD01191A000","name":"Glass Masquerade Double Pack"},{"id":"0x010030A006F6E000","name":"Light Fall"},{"id":"0x010031600ACF4000","name":"Path to Mnemosyne"},{"id":"0x0100327005C94000","name":"Kentucky Route Zero: TV Edition"},{"id":"0x010033F00B3FA000","name":"Anima: Gate of Memories - Arcane Edition"},{"id":"0x0100340009736000","name":"Jotun: Valhalla Edition"},{"id":"0x010034800FB60000","name":"Spaceland"},{"id":"0x010034D010E78000","name":"Tharsis"},{"id":"0x010038F00ED14000","name":"Ball Attraction"},{"id":"0x01003D00099EC000","name":"Raging Justice"},{"id":"0x01003D200BAA2000","name":"Pokémon Mystery Dungeon™: Rescue Team DX"},{"id":"0x010041C01014E000","name":"Skybolt Zack"},{"id":"0x010042000CA02000","name":"Super Life of Pixel"},{"id":"0x0100459011750000","name":"Tennis Open 2020"},{"id":"0x010046500C8D2000","name":"Among the Sleep - Enhanced Edition"},{"id":"0x0100492011A8A000","name":"Death's Hangover"},{"id":"0x010047A00E486000","name":"Renegade"},{"id":"0x01004820120C0000","name":"BallzOut"},{"id":"0x010048800F41C000","name":"One Step From Eden"},{"id":"0x010049000B69E000","name":"Black Future '88"},{"id":"0x01004AB00B4F8000","name":"Unworthy"},{"id":"0x01004C200ADA0000","name":"Trax - Build it Race it"},{"id":"0x01004DC00CFD2000","name":"Tales of the Orient - The Rising Sun"},{"id":"0x01004DE011076000","name":"Digerati Indie Darling Bundle Vol. 3"},{"id":"0x01004F4003FDC000","name":"Yesterday Origins"},{"id":"0x01004F800C4DA000","name":"Croc's World"},{"id":"0x01004F9012D84000","name":"Grim Legends 3: The Dark City"},{"id":"0x010053200F49E000","name":"Old School RPG Bundle"},{"id":"0x0100552011612000","name":"HALF DEAD"},{"id":"0x0100560010E3E000","name":"We should talk."},{"id":"0x01005640080B0000","name":"Crimsonland"},{"id":"0x010056E00853A000","name":"A Hat in Time"},{"id":"0x0100574002AF4000","name":"ONE PIECE: Unlimited World Red Deluxe Edition"},{"id":"0x010058900D4AE000","name":"12 Labours of Hercules"},{"id":"0x01005CA0099AA000","name":"1917 - The Alien Invasion DX"},{"id":"0x01005CE00617E000","name":"Percy's Predicament Deluxe"},{"id":"0x0100219008678000","name":"The Warlock of Firetop Mountain: Goblin Scourge Edition!"},{"id":"0x010021A00ABEE000","name":"SKYPEACE"},{"id":"0x010022300F856000","name":"Tennis 1920s"},{"id":"0x010022D00D4F0000","name":"Cricket 19"},{"id":"0x01002620102C6000","name":"BioShock 2 Remastered"},{"id":"0x0100276009872000","name":"OKAMI HD"},{"id":"0x010028001179C000","name":"Skelly Selest & Straimium Immortaly Double Pack"},{"id":"0x010029200B6AA000","name":"The Walking Dead: The Complete First Season"},{"id":"0x01002A900EE8A000","name":"ROBOTICS;NOTES ELITE"},{"id":"0x01002F5012864000","name":"Tales from the Dragon Mountain 2: The Lair"},{"id":"0x010032600C8CE000","name":"Goat Simulator: The GOATY"},{"id":"0x010033A011614000","name":"MEGA PARTY - a tootuff adventure"},{"id":"0x010036D00C362000","name":"Sheltered"},{"id":"0x010038D00EC88000","name":"Grand Brix Shooter"},{"id":"0x01003AD011E36000","name":"Reason - Casual Puzzle"},{"id":"0x01003B2009D18000","name":"Violett Demo"},{"id":"0x01003C700D0DE000","name":"Rain City"},{"id":"0x01003CF00DCFA000","name":"The Alliance Alive HD Remastered"},{"id":"0x01003F80133CC000","name":"De: Yabatanien"},{"id":"0x010032C011356000","name":"Magicolors"},{"id":"0x010033300EC86000","name":"Sea Salt"},{"id":"0x010033600ADE6000","name":"Wheel of Fortune®"},{"id":"0x010033C0121DC000","name":"Animal Pairs - Matching & Concentration Game for Toddlers & Kids"},{"id":"0x0100348001DE6000","name":"Arcade Archives TERRA FORCE"},{"id":"0x010039200EC66000","name":"Miniature - The Story Puzzle"},{"id":"0x01003A00122E2000","name":"Truck Mechanic Simulator"},{"id":"0x01003D3009996000","name":"Totes the Goat"},{"id":"0x01003D301357A000","name":"Dark Arcana: The Carnival"},{"id":"0x010040000D08E000","name":"V.O.I.D."},{"id":"0x0100422001DDA000","name":"Arcade Archives TERRA CRESTA"},{"id":"0x010043100F0EA000","name":"Puzzle Book"},{"id":"0x010045500D0F4000","name":"Dread Nautical"},{"id":"0x010045B00849C000","name":"MIGHTY GUNVOLT BURST Demo"},{"id":"0x010048000F946000","name":"Masky"},{"id":"0x01004A201292C000","name":"Bunny Adventure"},{"id":"0x01004B100A1C4000","name":"MathLand"},{"id":"0x01004DE01162C000","name":"Super Space Snake"},{"id":"0x01004E500DB9E000","name":"Summer Sweetheart"},{"id":"0x01004F8006A78000","name":"Super Meat Boy"},{"id":"0x010044F00BB80000","name":"Back in 1995"},{"id":"0x010048900CF64000","name":"Worldend Syndrome"},{"id":"0x0100496004194000","name":"The Mummy Demastered"},{"id":"0x01004BE00A682000","name":"Black Hole Demo"},{"id":"0x01004DE00DD44000","name":"Monster Puzzle"},{"id":"0x010052100D1B4000","name":"Spot The Differences: Party!"},{"id":"0x010053100B0EA000","name":"Akihabara - Feel the Rhythm Remixed"},{"id":"0x0100538012496000","name":"Grindstone"},{"id":"0x010057700FF7C000","name":"Billion Road"},{"id":"0x010058500B3E0000","name":"Labyrinth of Refrain: Coven of Dusk"},{"id":"0x01005A600BE60000","name":"Fall of Light: Darkest Edition"},{"id":"0x01005A80113D2000","name":"The House of Da Vinci 2"},{"id":"0x01005E501284E000","name":"City Bus Driving Simulator"},{"id":"0x010060300A67C000","name":"INK"},{"id":"0x010061900F896000","name":"The Eternal Castle [REMASTERED]"},{"id":"0x010062500BFC0000","name":"The Book of Unwritten Tales 2"},{"id":"0x010064500AF72000","name":"Aegis Defenders demo"},{"id":"0x010067300E024000","name":"Super Mega Baseball 3"},{"id":"0x010069F008A38000","name":"Arcade Archives STAR FORCE"},{"id":"0x010044200A112000","name":"Vostok Inc. Demo"},{"id":"0x010046200FC62000","name":"Kingdom Rush Frontiers"},{"id":"0x0100495011B6A000","name":"HexON"},{"id":"0x01004AE0108E0000","name":"Panzer Paladin"},{"id":"0x01004BC012436000","name":"Puzzle Bundle - 3 in 1"},{"id":"0x01004C300FCD4000","name":"Indie Gems Bundle - Explosions Edition"},{"id":"0x01004D300BF98000","name":"Gnomes Garden"},{"id":"0x01004F400B978000","name":"Robbotto"},{"id":"0x010052D0129E4000","name":"This is the Zodiac Speaking"},{"id":"0x010053000B986000","name":"Road Redemption"},{"id":"0x010053401147C000","name":"PGA TOUR 2K21"},{"id":"0x0100547010920000","name":"Arcade Archives P.O.W. -PRISONERS OF WAR-"},{"id":"0x0100549008C9C000","name":"Mages of Mystralia"},{"id":"0x010054C00D842000","name":"Anthill"},{"id":"0x010055500CCD2000","name":"Ankh Guardian - Treasure of the Demon's Temple"},{"id":"0x0100563005B70000","name":"Perception"},{"id":"0x0100566009238000","name":"DragoDino"},{"id":"0x0100596011E20000","name":"Anti Hero Bundle"},{"id":"0x01005A400DB52000","name":"The Jackbox Party Pack 6"},{"id":"0x01005CC007616000","name":"R.B.I. Baseball 18"},{"id":"0x010027400CDC6000","name":"Divinity: Original Sin 2 - Definitive Edition"},{"id":"0x010027700FD2E000","name":"Decay of Logos"},{"id":"0x010027D011C9C000","name":"Where Angels Cry"},{"id":"0x0100288012966000","name":"Woodsalt"},{"id":"0x01002CC0062B8000","name":"DEEMO"},{"id":"0x01002D70049CA000","name":"Machinarium"},{"id":"0x01002DE00E5D0000","name":"Metaloid: Origin"},{"id":"0x010030600E65A000","name":"Detective Dolittle"},{"id":"0x010031F002B66000","name":"Mr. Shifty"},{"id":"0x010034500641A000","name":"Attack on Titan 2"},{"id":"0x0100378002CCA000","name":"Johnny Turbo’s Arcade: Express Raider"},{"id":"0x010038200E088000","name":"Flan"},{"id":"0x010038B012D32000","name":"BIT.TRIP BEAT"},{"id":"0x010038D00B10A000","name":"Big Bash Boom"},{"id":"0x010039601162A000","name":"Him & Her"},{"id":"0x010039801093A000","name":"Never Breakup"},{"id":"0x01003EF0118D2000","name":"Reed 2"},{"id":"0x01003F9010D6C000","name":"Chess Ace"},{"id":"0x010040D00B7CE000","name":"The Swindle"},{"id":"0x010040D00BCF4000","name":"Storm Boy"},{"id":"0x010026400DE10000","name":"Dragon Pinball"},{"id":"0x010027100C544000","name":"Dragon's Lair Trilogy"},{"id":"0x0100277011F1A000","name":"Super Mario Bros.™ 35"},{"id":"0x01002CD00A51C000","name":"Baba Is You"},{"id":"0x01002EA00ABBA000","name":"Oddworld: Stranger's Wrath"},{"id":"0x01002FC00412C000","name":"Little Nightmares Complete Edition"},{"id":"0x010031200E044000","name":"Two Point Hospital™"},{"id":"0x0100341013852000","name":"Arcade Archives Rush'n Attack"},{"id":"0x01003A90133A6000","name":"Liberated: Enhanced Edition"},{"id":"0x010041501005E000","name":"Interrogation: You will be deceived"},{"id":"0x0100451012492000","name":"Animals for Toddlers"},{"id":"0x010049500F996000","name":"Hero must die. again"},{"id":"0x010049E01218C000","name":"Retro Classix Collection #1: Data East"},{"id":"0x010049F00EC30000","name":"Nyan Cat: Lost in Space"},{"id":"0x01004AB00AEF8000","name":"SNK 40th ANNIVERSARY COLLECTION"},{"id":"0x010050F00BC1A000","name":"Resident Evil"},{"id":"0x010054600AC74000","name":"LOST ORBIT: Terminal Velocity"},{"id":"0x010057300B0DC000","name":"Heroki"},{"id":"0x0100575011092000","name":"Super Destronaut: Land Wars"},{"id":"0x01001D200BCC4000","name":"Forager"},{"id":"0x01001E700EB28000","name":"Idle Champions of the Forgotten Realms"},{"id":"0x01001EB00E9FE000","name":"Beast Quest"},{"id":"0x01001F20100B8000","name":"Eclipse: Edge of Light"},{"id":"0x01001FD0040F4000","name":"Brawlout"},{"id":"0x010022B00ACE6000","name":"BLACK BIRD"},{"id":"0x010023F008204000","name":"Haunted Dungeons:Hyakki Castle"},{"id":"0x0100254012184000","name":"Retro Classix 2-in-1 Pack: Heavy Barrel & Super Burger Time"},{"id":"0x010026E00FEBE000","name":"Akuto: Showdown"},{"id":"0x010026E0104C0000","name":"Tilt Pack"},{"id":"0x01002970080AA000","name":"Tennis in the Face"},{"id":"0x01002AA004DB4000","name":"ACA NEOGEO BURNING FIGHT"},{"id":"0x01002C4009990000","name":"OPUS: Rocket of Whispers"},{"id":"0x01002C400E526000","name":"Gigantosaurus The Game"},{"id":"0x01002C900BF74000","name":"Puzzle Wall"},{"id":"0x01002CC003FE6000","name":"Starlink: Battle for Atlas™ Digital Edition"},{"id":"0x01002EF013734000","name":"Kolumno"},{"id":"0x01002F4011A8E000","name":"Animal Fun for Toddlers and Kids"},{"id":"0x010030B00C370000","name":"Tanks Meet Zombies"},{"id":"0x01001A500E8B4000","name":"SUPERHOT"},{"id":"0x01001B600BC32000","name":"Stardust Galaxy Warriors: Stellar Climax"},{"id":"0x01001CA012F30000","name":"Powertris"},{"id":"0x01001CC00FA1A000","name":"Hatsune Miku: Project DIVA Mega Mix"},{"id":"0x01001E300B038000","name":"World Soccer Pinball"},{"id":"0x01001FF00BEE8000","name":"The Shapeshifting Detective"},{"id":"0x010020700B432000","name":"D/Generation : The Original"},{"id":"0x0100211005E94000","name":"Mulaka"},{"id":"0x0100225000FEE000","name":"Blaster Master Zero"},{"id":"0x010022600E4AE000","name":"Röki"},{"id":"0x010026500DAA8000","name":"Robbie Swifthand and the Orb of Mysteries"},{"id":"0x010026800BB06000","name":"Brick Breaker"},{"id":"0x010026D0122B8000","name":"Retro Game Pack"},{"id":"0x0100271004570000","name":"Next Up Hero"},{"id":"0x010027F00AD6C000","name":"SNK HEROINES Tag Team Frenzy"},{"id":"0x010027F0128EA000","name":"Who Wants to Be a Millionaire?"},{"id":"0x01002ED00B01C000","name":"Moto Racer 4"},{"id":"0x010030D012FF6000","name":"Bus Driver Simulator"},{"id":"0x010031200981C000","name":"Grid Mania"},{"id":"0x0100320009D06000","name":"CricktoGame: Nintendo Switch Edition"},{"id":"0x01002B400B590000","name":"The Fox Awaits Me"},{"id":"0x01002BA00C7CE000","name":"The Savior's Gang"},{"id":"0x01002C000E35E000","name":"WHAT THE GOLF?"},{"id":"0x01002CD00C7C8000","name":"Mindball Play"},{"id":"0x01002D4012BBC000","name":"Pocket Circuit"},{"id":"0x01002E500E3EE000","name":"Chicken Rider"},{"id":"0x01002ED00ACC0000","name":"DEADBOLT"},{"id":"0x010032000EAC6000","name":"Neon Drive"},{"id":"0x010032D012602000","name":"Gas Station: Highway Services"},{"id":"0x0100353009836000","name":"Arcade Archives THE LEGEND OF KAGE"},{"id":"0x010038000F644000","name":"LA-MULANA 2"},{"id":"0x01003C200A232000","name":"Animated Jigsaws: Beautiful Japanese Scenery"},{"id":"0x010041100CE7E000","name":"Lovecraft´s Untold Stories"},{"id":"0x010043C010AEA000","name":"Across the Grooves"},{"id":"0x0100472013142000","name":"CrossKrush"},{"id":"0x01004890117B2000","name":"A Short Hike"},{"id":"0x0100492012378000","name":"Quell"},{"id":"0x010049901147A000","name":"Video Poker at Aces Casino"},{"id":"0x01004A9006B84000","name":"The End Is Nigh"},{"id":"0x01004EB00C2E6000","name":"Revenge of the Bird King"},{"id":"0x010044500C182000","name":"Sid Meier’s Civilization VI"},{"id":"0x010047800E516000","name":"Watermelon Party"},{"id":"0x01004840086FE000","name":"NORTH"},{"id":"0x01004A4009106000","name":"Decay of Logos"},{"id":"0x01004A900C352000","name":"Pizza Titan Ultra"},{"id":"0x01004DA012976000","name":"Area 86"},{"id":"0x01004E900B082000","name":"Touhou Genso Wanderer Reloaded"},{"id":"0x01004F900B838000","name":"Zombie Night Terror"},{"id":"0x010051A00ACAC000","name":"Overdriven Reloaded: Special Edition"},{"id":"0x010051F00AC5E000","name":"SEGA AGES Sonic The Hedgehog"},{"id":"0x010056000BA1C000","name":"Fobia"},{"id":"0x0100578012A02000","name":"Crowdy Farm Rush"},{"id":"0x01005B5009364000","name":"Xeodrifter"},{"id":"0x01005C00117A8000","name":"Café Enchanté"},{"id":"0x01005D800E022000","name":"Where the Water Tastes Like Wine"},{"id":"0x01005E200A3AC000","name":"Sparkle 3 Genesis"},{"id":"0x01005F600D2D8000","name":"Bargain Hunter"},{"id":"0x010060000BF7C000","name":"Arcade Archives ROUTE 16"},{"id":"0x010060D00F658000","name":"Star Renegades"},{"id":"0x0100618010D76000","name":"Hakoniwa Explorer Plus"},{"id":"0x010029200AB1C000","name":"Prison Architect: Nintendo Switch™ Edition"},{"id":"0x01002AD0126AE000","name":"Bridge Constructor: The Walking Dead"},{"id":"0x01002BD00F626000","name":"Inertial Drift"},{"id":"0x01002EE00DC02000","name":"Railway Empire - Nintendo Switch™ Edition"},{"id":"0x01002F300D9CE000","name":"Distrust"},{"id":"0x0100328009800000","name":"Arcade Archives EXCITEBIKE"},{"id":"0x01003900122A6000","name":"Unitied"},{"id":"0x01003A000976E000","name":"Dynamite Fishing - World Games"},{"id":"0x01003AB010692000","name":"Freakout: Calamity TV Show"},{"id":"0x01003CD00BE22000","name":"Chiki-Chiki Boxy Racers"},{"id":"0x01003CE00EAF0000","name":"holedown"},{"id":"0x010040D011D04000","name":"Cubicity"},{"id":"0x010044700DEB0000","name":"Assassin’s Creed®: The Rebel Collection"},{"id":"0x010045C00E27C000","name":"We. The Revolution"},{"id":"0x0100476004A9E000","name":"Puzzle Box Maker"},{"id":"0x010047A008760000","name":"Dark Witch Music Episode: Rudymical Demo"},{"id":"0x010047F013104000","name":"Outbreak"},{"id":"0x010048200AFC2000","name":"ACA NEOGEO THE KING OF FIGHTERS 2001"},{"id":"0x010049900F546000","name":"Super Mario™ 3D All-Stars"},{"id":"0x01002A6006AA4000","name":"Riptide GP: Renegade"},{"id":"0x01002C80086E6000","name":"Subsurface Circular"},{"id":"0x01002CC00BC4C000","name":"Momonga Pinball Adventures"},{"id":"0x01002E50129DA000","name":"Brightstone Mysteries: Paranormal Hotel"},{"id":"0x01002EC011DA6000","name":"My Bewitching Perfume"},{"id":"0x010031B00DB34000","name":"the Knight & the Dragon"},{"id":"0x010033100AC2C000","name":"Akihabara CRASH! 123STAGE+1"},{"id":"0x010033200D232000","name":"Domiverse"},{"id":"0x010033C009E46000","name":"Superola and the Lost Burgers"},{"id":"0x010034300F0E2000","name":"Dungeon of the Endless"},{"id":"0x0100388008758000","name":"Banner Saga 2"},{"id":"0x010038A007AA4000","name":"FruitFall Crush"},{"id":"0x010038E011940000","name":"Puyo Puyo™ Tetris® 2"},{"id":"0x010039100DACC000","name":"Strike Force - War on Terror"},{"id":"0x010039700BA7E000","name":"Circle of Sumo"},{"id":"0x01003DD00BF0E000","name":"Shred! 2 - ft Sam Pilgrim"},{"id":"0x01003EA01290A000","name":"Office Lovers"},{"id":"0x01003F500E658000","name":"Lost Artifacts"},{"id":"0x010040F00AA9A000","name":"Speed Brawl"},{"id":"0x010048F007ADE000","name":"Tangledeep"},{"id":"0x010036B0113DA000","name":"Over the Alps"},{"id":"0x010038100D436000","name":"Grand Guilds"},{"id":"0x0100394012038000","name":"Linn: Path of Orchards"},{"id":"0x01003A300B7A6000","name":"Rotating Brave"},{"id":"0x01003D601014A000","name":"Jump King"},{"id":"0x0100419010C60000","name":"Arcade Archives NAUGHTY BOY"},{"id":"0x010043700C9B0000","name":"Conduct TOGETHER!"},{"id":"0x010044F0114B8000","name":"The Secret Order: Shadow Breach"},{"id":"0x01004680124E6000","name":"Bloodstained: Curse of the Moon 2"},{"id":"0x01004780112B6000","name":"In Celebration of Violence"},{"id":"0x01004B100AF18000","name":"Disgaea 1 Complete"},{"id":"0x01004C500BD40000","name":"Dead End Job"},{"id":"0x01004CD012C9A000","name":"DOG GONE GOLFING"},{"id":"0x01004EB00DACE000","name":"Later Daters"},{"id":"0x01004EC00E634000","name":"Arcade Archives VS. GRADIUS"},{"id":"0x010052000A574000","name":"Drowning"},{"id":"0x010053601357E000","name":"Accidental Queens Collection"},{"id":"0x010053700A25A000","name":"Ice Cream Surfer"},{"id":"0x010054B00D4A2000","name":"Asdivine Dios"},{"id":"0x010058800F860000","name":"Nicky - The Home Alone Golf Ball"},{"id":"0x01002FA00DE72000","name":"BDSM: Big Drunk Satanic Massacre"},{"id":"0x010032800F038000","name":"M.A.C.E. Tower Defense"},{"id":"0x010034E00EFD0000","name":"MISTOVER"},{"id":"0x010035D0121EC000","name":"Digerati Presents: The Dungeon Crawl Vol. 1"},{"id":"0x0100369001DDC000","name":"Arcade Archives Ninja-Kid"},{"id":"0x010036B0034E4000","name":"Super Mario Party™"},{"id":"0x010037500C4DE000","name":"Worse Than Death"},{"id":"0x01003B200B372000","name":"Hyper Light Drifter - Special Edition"},{"id":"0x01003E800A102000","name":"Trials Rising Standard Edition"},{"id":"0x01003FB00C5A8000","name":"Super Kirby Clash™"},{"id":"0x010042900E464000","name":"Motorcycle Mechanic Simulator"},{"id":"0x010045300E52A000","name":"Cybarian: The Time Traveling Warrior"},{"id":"0x010047300CB92000","name":"Desktop Soccer Trial Edition"},{"id":"0x010049501393A000","name":"Animal Pals Bubble Pop"},{"id":"0x01004B1001D22000","name":"TumbleSeed"},{"id":"0x01004B1010E58000","name":"Arcade Archives IKARI III -THE RESCUE-"},{"id":"0x01004D0012D28000","name":"Arcade Archives BEN BERO BEH"},{"id":"0x01004E900EDDA000","name":"Slayin 2"},{"id":"0x0100513005AF4000","name":"Rock'N Racing Off Road DX"},{"id":"0x01005250086C4000","name":"Mega Man X Legacy Collection 2"},{"id":"0x010045D01273A000","name":"Reflection of Mine"},{"id":"0x010046600B76A000","name":"Lost Phone Stories"},{"id":"0x01004A700DBD6000","name":"The Otterman Empire"},{"id":"0x01004BA0110D6000","name":"Hidden in Plain Sight"},{"id":"0x01004C400CCCA000","name":"Queen's Quest 2: Stories of Forgotten Past"},{"id":"0x01004C60139DE000","name":"JDM Racing - 2"},{"id":"0x01004C8012BB8000","name":"Indygo"},{"id":"0x01004E800F03C000","name":"Hidden"},{"id":"0x0100501006494000","name":"Slayaway Camp: Butcher's Cut"},{"id":"0x0100510004D2C000","name":"Disc Jam"},{"id":"0x01005140089F6000","name":"Nuclien"},{"id":"0x010052A00A306000","name":"ACA NEOGEO NINJA COMBAT"},{"id":"0x01005C40037C6000","name":"I and Me"},{"id":"0x01005C600AC68000","name":"Valkyria Chronicles 4"},{"id":"0x01005E101122E000","name":"Spirit of the North"},{"id":"0x010060A00F5E8000","name":"Pixel Gladiator"},{"id":"0x0100633007D48000","name":"Hollow Knight"},{"id":"0x0100634008266000","name":"YIIK: A Postmodern RPG"},{"id":"0x010065F00BE6C000","name":"Growtopia"},{"id":"0x010066F00DD50000","name":"What the Box?"},{"id":"0x010040900AF46000","name":"Ikenfell"},{"id":"0x010042800B880000","name":"STEINS;GATE ELITE"},{"id":"0x0100448011BC4000","name":"Let's Cook Together"},{"id":"0x010044A010BB8000","name":"Robozarro"},{"id":"0x010047B010260000","name":"Space Pioneer"},{"id":"0x010048600B14E000","name":"Gal Metal"},{"id":"0x010048901295C000","name":"Ultimate Fishing Simulator"},{"id":"0x01004AB00A260000","name":"DARK SOULS™: REMASTERED"},{"id":"0x01004AF012576000","name":"Solitaire Klondike Minimal"},{"id":"0x01004C700B106000","name":"Air Mail"},{"id":"0x01004EA00DF70000","name":"PICO PARK"},{"id":"0x0100516011606000","name":"Bomb"},{"id":"0x0100522007AAA000","name":"Wizard of Legend"},{"id":"0x010059C002AC2000","name":"Minecraft: Story Mode - The Complete Adventure"},{"id":"0x01005EF003FF2000","name":"Kingdom Two Crowns"},{"id":"0x010061000D318000","name":"Gunman Clive HD Collection"},{"id":"0x0100618013560000","name":"Santa's Xmas Adventure"},{"id":"0x010065F00F55A000","name":"Neighbours back From Hell"},{"id":"0x010068D00AE68000","name":"GREEN"},{"id":"0x0100692003FCE000","name":"Hyper Sentinel"},{"id":"0x010030D004F34000","name":"Draw a Stickman: EPIC 2"},{"id":"0x010032E00E6E2000","name":"Return of the Obra Dinn"},{"id":"0x010033A0118DC000","name":"Ninjala Exclusive Ninja Club"},{"id":"0x010036200D2F6000","name":"PHAR LAP - Horse Racing Challenge"},{"id":"0x010036600C7BE000","name":"Escape Doodland"},{"id":"0x01003CE011A86000","name":"Let's Sing Queen"},{"id":"0x01003E2010282000","name":"Bake ‘n Switch"},{"id":"0x010043901005A000","name":"Junk Jack"},{"id":"0x010043F010412000","name":"Jurassic Excite"},{"id":"0x010044000F7F2000","name":"Windbound"},{"id":"0x010044500F3C2000","name":"The Mims Beginning"},{"id":"0x010045800C80C000","name":"SpellKeeper"},{"id":"0x01004B301108C000","name":"Ghost Sweeper"},{"id":"0x01004BF01267E000","name":"GEMINI ARMS"},{"id":"0x01004DB003E6A000","name":"IRONCAST"},{"id":"0x010050200FFD2000","name":"Arcade Archives TwinBee"},{"id":"0x010055200E87E000","name":"Metamorphosis"},{"id":"0x01005700031AE000","name":"Disgaea 5 Complete"},{"id":"0x010059E00BB08000","name":"Wand Wars"},{"id":"0x01005A100ED8A000","name":"Escape from the Universe"},{"id":"0x010000600CD54000","name":"Rad Rodgers Radical Edition"},{"id":"0x010002A00CD68000","name":"Indiecalypse"},{"id":"0x010003F003A34000","name":"Pokémon™: Let’s Go, Pikachu!"},{"id":"0x010007100A16A000","name":"Eternal Edge"},{"id":"0x010009300D278000","name":"Preventive Strike"},{"id":"0x01000BF00B6BC000","name":"Deployment"},{"id":"0x01000DE0125B8000","name":"Hunt"},{"id":"0x01000E2003FA0000","name":"MIGHTY GUNVOLT BURST"},{"id":"0x01000E200BE10000","name":"Etherborn"},{"id":"0x010012600A9DA000","name":"Twin Robots: Ultimate Edition Demo"},{"id":"0x0100147011F4E000","name":"Hill Climbing Mania"},{"id":"0x010015B00BB00000","name":"Table Top Racing: World Tour - Nitro Edition"},{"id":"0x0100161011458000","name":"Demon's Tier+"},{"id":"0x010016700BCD4000","name":"Dungeon Village"},{"id":"0x010018700A5EC000","name":"PRINCESS MAKER -FAERY TALES COME TRUE-"},{"id":"0x010019500B69A000","name":"Swords & Soldiers"},{"id":"0x010019601144E000","name":"Desktop Basketball"},{"id":"0x01001E800D314000","name":"Perry Pig Jump"},{"id":"0x010020700DE04000","name":"Bear With Me: The Lost Robots"},{"id":"0x010020900E7A8000","name":"Rush Rally 3"},{"id":"0x010000001260E000","name":"KIDS: FARM COLORING"},{"id":"0x010000400F582000","name":"TT Isle of Man Ride on the Edge 2"},{"id":"0x0100011005D92000","name":"Batman - The Telltale Series"},{"id":"0x010002200CECA000","name":"Cinderella - An Interactive Fairytale"},{"id":"0x01000320000CC000","name":"1-2-Switch™"},{"id":"0x01000AA00D30E000","name":"TheNightfall"},{"id":"0x01000C90117FA000","name":"HardCube"},{"id":"0x01000DC003740000","name":"Puyo Puyo Tetris Demo"},{"id":"0x01000E8010A98000","name":"Escape First"},{"id":"0x01000F400C1A4000","name":"Double Kick Heroes"},{"id":"0x010011400AF8E000","name":"Julie's Sweets"},{"id":"0x010012E00EA66000","name":"Chroma Squad"},{"id":"0x010016E004796000","name":"Bridge Constructor Portal"},{"id":"0x0100177005C8A000","name":"BUTCHER"},{"id":"0x01001AC00ED72000","name":"If My Heart Had Wings"},{"id":"0x01001B400D334000","name":"AFL Evolution 2"},{"id":"0x01001F101289A000","name":"Skatemasta Tcheco"},{"id":"0x010021A00DE54000","name":"Blazing Beaks"},{"id":"0x010025C00D410000","name":"Mega Man Zero/ZX Legacy Collection"},{"id":"0x0100264012980000","name":"103"},{"id":"0x010000500B9F4000","name":"Minesweeper Genius"},{"id":"0x01000160127EC000","name":"Professor Rubik's Brain Fitness"},{"id":"0x010002F001220000","name":"NAMCO MUSEUM"},{"id":"0x010006300AFCE000","name":"ACA NEOGEO RAGNAGARD"},{"id":"0x010009500C30C000","name":"Dawn of Survivors"},{"id":"0x01000C800FADC000","name":"Go All Out!"},{"id":"0x01000D200C7A4000","name":"Arcade Archives PSYCHO SOLDIER"},{"id":"0x01000EE010B40000","name":"Piczle Cross Adventure"},{"id":"0x010011600BB84000","name":"Paladin"},{"id":"0x010012100E208000","name":"Sagebrush"},{"id":"0x010012C0060F0000","name":"RXN -Raijin-"},{"id":"0x010014C0100C6000","name":"Goosebumps Dead of Night"},{"id":"0x01001580133F2000","name":"Taiko no Tatsujin: Rhythmic Adventure 2"},{"id":"0x01001EF00BF3A000","name":"Trouserheart"},{"id":"0x010021200E062000","name":"Car Mayhem"},{"id":"0x010025E0092B6000","name":"Pirate Pop Plus"},{"id":"0x0100262009626000","name":"Epic Loon"},{"id":"0x010029A00AEB0000","name":"Survive! MR.CUBE"},{"id":"0x01002A000C478000","name":"Observer"},{"id":"0x01002AF011D14000","name":"Tennis World Tour 2"},{"id":"0x010001300D14A000","name":"Castle Crashers Remastered"},{"id":"0x010001400E474000","name":"Subdivision Infinity DX"},{"id":"0x0100016007154000","name":"Antiquia Lost"},{"id":"0x0100055007B86000","name":"Late Shift"},{"id":"0x010006200949E000","name":"The Charming Empire"},{"id":"0x010007F00AF56000","name":"The Station"},{"id":"0x01000A800B998000","name":"ALPHA"},{"id":"0x01000E000EEF8000","name":"Aldred Knight"},{"id":"0x01000FB008900000","name":"Midnight Deluxe"},{"id":"0x010010900F7B4000","name":"Bubble Bobble 4 Friends"},{"id":"0x010010B008A36000","name":"Arcade Archives Kid Niki Radical Ninja"},{"id":"0x0100112003B8A000","name":"Slime-san"},{"id":"0x0100126006EF0000","name":"GOKEN"},{"id":"0x01001270012B6000","name":"SONIC FORCES™"},{"id":"0x010014E00DB56000","name":"Digimon Story Cyber Sleuth: Complete Edition"},{"id":"0x0100158011A08000","name":"My Universe - Cooking Star Restaurant"},{"id":"0x010017C00BE12000","name":"Gnomes Garden 3: The thief of castles"},{"id":"0x010018800C7D2000","name":"Robox"},{"id":"0x01001BB00AC26000","name":"STARSHIP AVENGER\nOperation: Take Back Earth"},{"id":"0x01001BD00915A000","name":"ACA NEOGEO WORLD HEROES 2"},{"id":"0x010000500DB50000","name":"Super Tennis Blast"},{"id":"0x010001600D1E8000","name":"Cube Creator X"},{"id":"0x0100024008310000","name":"Street Fighter 30th Anniversary Collection"},{"id":"0x010002A00D168000","name":"Piczle Colors Demo"},{"id":"0x01000320060AC000","name":"OTTTD: Over The Top Tower Defense"},{"id":"0x010004D00A9C0000","name":"Aggelos"},{"id":"0x010007100C7B6000","name":"Arcade Archives VICTORY ROAD"},{"id":"0x010007D00D43A000","name":"Serious Sam Collection"},{"id":"0x010007D012AD0000","name":"Shikaku Shapes"},{"id":"0x0100092006814000","name":"Tennis World Tour"},{"id":"0x01000AC010024000","name":"FoxyLand 2"},{"id":"0x01000D100DCF8000","name":"Redeemer: Enhanced Edition"},{"id":"0x01000DC007E90000","name":"Sparkle Unleashed"},{"id":"0x010010500390C000","name":"Zero Zero Zero Zero"},{"id":"0x010010B003A26000","name":"Cartoon Network: Battle Crashers"},{"id":"0x010010D011E1C000","name":"Slide Stars"},{"id":"0x010014901144C000","name":"Genetic Disaster"},{"id":"0x0100152000022000","name":"Mario Kart™ 8 Deluxe"},{"id":"0x010015A0110AC000","name":"Fairy Knights"},{"id":"0x010015B012E0C000","name":"Disc Room"},{"id":"0x010057A00C1F6000","name":"Astebreed"},{"id":"0x010058900F52E000","name":"Clea"},{"id":"0x010059D00BCAE000","name":"Swords and Soldiers 2 Shawarmageddon"},{"id":"0x01005DE00D05C000","name":"EA SPORTS™ FIFA 20 Nintendo Switch™ Legacy Edition"},{"id":"0x01005DF00DC26000","name":"SWORD ART ONLINE: FATAL BULLET Complete Edition"},{"id":"0x01005F600CB0E000","name":"SEGA AGES Puyo Puyo"},{"id":"0x01005FE00EC4E000","name":"Atomic Heist"},{"id":"0x01005FF00AF36000","name":"Bibi Blocksberg – Big Broom Race 3"},{"id":"0x010061400E7D4000","name":"R.B.I. Baseball 20"},{"id":"0x010061E00EB1E000","name":"Mad Games Tycoon"},{"id":"0x0100626011656000","name":"The Outer Worlds"},{"id":"0x01006550129C6000","name":"If Found..."},{"id":"0x010067900B9C4000","name":"Degrees of Separation"},{"id":"0x010068000DE92000","name":"Gabbuchi Demo"},{"id":"0x01006B100E44C000","name":"The Alto Collection"},{"id":"0x01006BB00800A000","name":"NARUTO SHIPPUDEN: Ultimate Ninja STORM 3 Full Burst"},{"id":"0x01006BC00C27A000","name":"Crazy Strike Bowling EX"},{"id":"0x01006DB00D970000","name":"OMG Zombies!"},{"id":"0x0100706005B6A000","name":"Anima: Gate of Memories"},{"id":"0x010001600C962000","name":"BOMBFEST"},{"id":"0x010005800F1BA000","name":"Planetary Defense Force"},{"id":"0x010007F00B9F0000","name":"Johnny Turbo's Arcade: Shoot Out"},{"id":"0x01000A800ADEE000","name":"KADOBAT WARS"},{"id":"0x01000B400E53A000","name":"Mable & The Wood"},{"id":"0x01000BF012920000","name":"Jets'n'Guns 2"},{"id":"0x01000D60132D0000","name":"Max Reloaded II"},{"id":"0x01000ED00F64E000","name":"A Winter's Daydream"},{"id":"0x010011B00910C000","name":"Kill The Bad Guy"},{"id":"0x0100128003A24000","name":"Elliot Quest"},{"id":"0x010013300F882000","name":"Home Run High"},{"id":"0x0100145011008000","name":"Trollhunters: Defenders of Arcadia"},{"id":"0x01001620105FE000","name":"Monster Viator"},{"id":"0x010018300D006000","name":"BOXBOY! + BOXGIRL!™"},{"id":"0x01001C700F518000","name":"Grimvalor"},{"id":"0x01001D20105C0000","name":"Darius Cozmic Collection Arcade"},{"id":"0x01001E900EC04000","name":"Blast Brawl 2"},{"id":"0x01001EE00AD4C000","name":"Freaky Awesome"},{"id":"0x01001F600B3EE000","name":"The Legend of Evil"},{"id":"0x01001F70112BA000","name":"Poly Puzzle"},{"id":"0x010050500FE30000","name":"Sleep Attack"},{"id":"0x0100534009FF2000","name":"Yonder: The Cloud Catcher Chronicles"},{"id":"0x010053B00D26E000","name":"Bubble Shooter DX"},{"id":"0x010054A008EE2000","name":"Race Arcade"},{"id":"0x010057D00B612000","name":"Into the Breach"},{"id":"0x0100592005164000","name":"UNBOX: Newbie's Adventure"},{"id":"0x010059C00E900000","name":"Community Inc"},{"id":"0x01005A6010A04000","name":"Darts"},{"id":"0x01005A700C9BA000","name":"Hue"},{"id":"0x01005AF00CCA2000","name":"Risky Rescue"},{"id":"0x01005BA00E6BE000","name":"Arcade Archives GOLF"},{"id":"0x01005F20116A0000","name":"Apparition"},{"id":"0x010060C010B4A000","name":"Knight Swap"},{"id":"0x0100610011780000","name":"Lockstone"},{"id":"0x010061300BBF8000","name":"Defense Grid 2"},{"id":"0x010062200EFB4000","name":"DRAGON QUEST II: Luminaries of the Legendary Line"},{"id":"0x010066F00C76A000","name":"Bury me, my Love"},{"id":"0x010067300059A000","name":"Mario + Rabbids® Kingdom Battle"},{"id":"0x010067D012972000","name":"Retro Arcade Shooter - Attack from Pluto"},{"id":"0x010068F00AA78000","name":"FINAL FANTASY XV POCKET EDITION HD"},{"id":"0x010022801217E000","name":"Party Hard 2"},{"id":"0x01002290070E4000","name":"Red Game Without a Great Name"},{"id":"0x010023300B0F0000","name":"Tumblestone Demo"},{"id":"0x010028D0045CE000","name":"Sparkle 2"},{"id":"0x01002D4011208000","name":"Task Force Kampas"},{"id":"0x01002EE00F48C000","name":"夕鬼 零 Yuoni: Rises"},{"id":"0x01002F800FD12000","name":"Strange Telephone"},{"id":"0x010030D00D960000","name":"Theatre Tales"},{"id":"0x010031F006E76000","name":"Pato Box"},{"id":"0x010035500CA0E000","name":"Animal Hunter Z"},{"id":"0x0100379003900000","name":"ACA NEOGEO BLUE'S JOURNEY"},{"id":"0x010037B00A9C8000","name":"Uno Demo"},{"id":"0x010039C00E2CE000","name":"Flux8"},{"id":"0x01003B401148E000","name":"Wurroom"},{"id":"0x01003B900AE12000","name":"Oh My Godheads: Party Edition"},{"id":"0x01003C400871E000","name":"ACA NEOGEO 2020 SUPER BASEBALL"},{"id":"0x01003E700FD66000","name":"Alt-Frequencies"},{"id":"0x01003F300C6BC000","name":"Pressure Overdrive"},{"id":"0x01003FE00A2F6000","name":"ACA NEOGEO BASEBALL STARS PROFESSIONAL"},{"id":"0x010040B003E5E000","name":"Shephy"},{"id":"0x010000301025A000","name":"Worlds of Magic: Planar Conquest"},{"id":"0x010001E00A5F6000","name":"AngerForce: Reloaded for Nintendo Switch"},{"id":"0x0100024011858000","name":"Doubles Hard"},{"id":"0x010002700C34C000","name":"Numbala"},{"id":"0x010006300AFFE000","name":"Life Goes On"},{"id":"0x0100068010226000","name":"Dreamwalker: Never Fall Asleep"},{"id":"0x010008C00B2F2000","name":"Steven Universe: Save the Light"},{"id":"0x0100092011764000","name":"Being Stronger While Playing! SilverStar Go DX"},{"id":"0x0100095009236000","name":"Super Rocket Shootout"},{"id":"0x01000AB00E73A000","name":"Cosmic Defenders"},{"id":"0x01000AD012D3A000","name":"BIT.TRIP VOID"},{"id":"0x01000C9004FA2000","name":"ACA NEOGEO ROBO ARMY"},{"id":"0x01000CA004DCA000","name":"Human: Fall Flat"},{"id":"0x01000D200C180000","name":"Overland"},{"id":"0x01000DB00980A000","name":"Arcade Archives Ikki"},{"id":"0x01000E30042F2000","name":"World to the West"},{"id":"0x01000EB00BE02000","name":"Space Lift Danger Panic!"},{"id":"0x01000F5003068000","name":"Brave Dungeon + Dark Witch Story:COMBAT"},{"id":"0x010010100FF14000","name":"60 Parsecs!"},{"id":"0x0100137010152000","name":"The Adventures of 00 Dilly®"},{"id":"0x010029D00AFD0000","name":"ACA NEOGEO KING OF THE MONSTERS 2"},{"id":"0x01002A1004C48000","name":"Binaries"},{"id":"0x01002DE00C250000","name":"Children of Morta"},{"id":"0x01002F300AC18000","name":"bloxiq"},{"id":"0x01002F600C684000","name":"Fight of Gods"},{"id":"0x010031F00B246000","name":"Everything"},{"id":"0x010032F01096C000","name":"Lines XL"},{"id":"0x01003380113A2000","name":"Wolflame"},{"id":"0x010034800B75E000","name":"Astrology and Horoscopes Premium"},{"id":"0x010034D00F330000","name":"DreamBall"},{"id":"0x010037900C814000","name":"Oniken: Unstoppable Edition"},{"id":"0x010038400CADC000","name":"Timberman VS Demo"},{"id":"0x010038D011F08000","name":"Jisei: The First Case HD"},{"id":"0x010039300BDB2000","name":"Defunct"},{"id":"0x010039E00A15E000","name":"InkSplosion"},{"id":"0x010039F00EF70000","name":"Monstrum"},{"id":"0x01003AE00A872000","name":"One More Dungeon Demo"},{"id":"0x01003CB00CFD6000","name":"Secrets of Magic - The Book of Spells"},{"id":"0x01003F601025E000","name":"Dex"},{"id":"0x010040700E8FC000","name":"Florence"},{"id":"0x010061F010C3A000","name":"Hunting Simulator 2"},{"id":"0x010063000C3CE000","name":"Almightree: The Last Dreamer"},{"id":"0x010063D005B32000","name":"KYUB"},{"id":"0x0100650010DD4000","name":"Battleground"},{"id":"0x0100655012064000","name":"Radio Squid"},{"id":"0x010069B002CDE000","name":"Johnny Turbo's Arcade: Gate Of Doom"},{"id":"0x01006A800FD60000","name":"Scarlett Mysteries: Cursed Child"},{"id":"0x01006C700D2CE000","name":"Pizza Parking"},{"id":"0x01006F30129F8000","name":"Get 10 quest"},{"id":"0x01006F6002840000","name":"Thumper"},{"id":"0x01006F900A298000","name":"Eekeemoo - Splinters of the Dark Shard"},{"id":"0x0100732009CAE000","name":"L.F.O. -Lost Future Omega-"},{"id":"0x010075200F1CA000","name":"Monochrome Order"},{"id":"0x010075400DEC6000","name":"Ayakashi Koi Gikyoku《Trial version》"},{"id":"0x010076200CA16000","name":"Rolling Gunner"},{"id":"0x01007AF012E16000","name":"The Language Of Love"},{"id":"0x01007B600D5BC000","name":"Devil May Cry 3 Special Edition"},{"id":"0x01007C500D650000","name":"Vandals"},{"id":"0x01007EF00B094000","name":"FINAL FANTASY IX"},{"id":"0x010080000D8CA000","name":"Reverse Crawl"},{"id":"0x010032A008754000","name":"At Sundown: Shots in the Dark"},{"id":"0x0100342009E16000","name":"Holy Potatoes! What The Hell?!"},{"id":"0x01003590089EA000","name":"Puzzle Puppers"},{"id":"0x0100395010AD2000","name":"OmoTomO"},{"id":"0x010039C00A45C000","name":"Operation Hardcore"},{"id":"0x01003B200E440000","name":"Five Nights at Freddy's: Sister Location"},{"id":"0x01003DE00918E000","name":"The Darkside Detective"},{"id":"0x01003FF011856000","name":"Climbros"},{"id":"0x0100421003FD4000","name":"Syberia"},{"id":"0x0100423009358000","name":"Death Road to Canada"},{"id":"0x010044400EEAE000","name":"Petoons Party"},{"id":"0x010045200D3A4000","name":"Unknown Fate"},{"id":"0x010045A01221E000","name":"Pew Paw"},{"id":"0x010045C011DE6000","name":"Black Jack"},{"id":"0x010047100F978000","name":"Arcade Archives FROGGER"},{"id":"0x010047E010B3E000","name":"Fight of Animals"},{"id":"0x010048200B606000","name":"Mars or Die!"},{"id":"0x010049000F6B0000","name":"Hyperspace Delivery Service"},{"id":"0x010049500E354000","name":"Arcade Archives Pinball"},{"id":"0x01004A600EC0A000","name":"Immortals Fenyx Rising™"},{"id":"0x01002C900A302000","name":"ACA NEOGEO RIDING HERO"},{"id":"0x01002D200CF50000","name":"Stray Cat Doors"},{"id":"0x010030800841A000","name":"Moorhuhn Knights & Castles"},{"id":"0x010030A01243E000","name":"Poker Hands"},{"id":"0x010030B00B2F6000","name":"OK K.O.! Let’s Play Heroes"},{"id":"0x010032C00AC58000","name":"Dragon's Dogma: Dark Arisen"},{"id":"0x010037A00F5E2000","name":"Wonder Blade"},{"id":"0x01003BA00A67E000","name":"Hacky Zack"},{"id":"0x01003C2010C78000","name":"Archaica: The Path Of Light"},{"id":"0x01003D700D564000","name":"Super Weekend Mode"},{"id":"0x01003DD00BFEE000","name":"Airheart - Tales of broken Wings"},{"id":"0x01003FD00A02A000","name":"Driving School Original"},{"id":"0x01003FF009E60000","name":"Grab the Bottle"},{"id":"0x0100408007078000","name":"Tales of the Tiny Planet"},{"id":"0x010041700A04A000","name":"Oxyjet"},{"id":"0x010042100BAA6000","name":"Valthirian Arc: Hero School Story"},{"id":"0x0100434003C58000","name":"Firefighters – The Simulation"},{"id":"0x010043B00AAC0000","name":"Remnants of Naezith"},{"id":"0x010044600FDF0000","name":"Marooners"},{"id":"0x010044D00A770000","name":"Burnstar"},{"id":"0x01004AC002B40000","name":"ACA NEOGEO ART OF FIGHTING 3"},{"id":"0x010050900E1C6000","name":"Anarcute"},{"id":"0x010051A010C7C000","name":"Breeder Homegrown: Director's Cut"},{"id":"0x010052D00B754000","name":"The Lost Light of Sisu"},{"id":"0x010055900FADA000","name":"Bloo Kid 2"},{"id":"0x010055B009814000","name":"Arcade Archives CRAZY CLIMBER2"},{"id":"0x010056D00B0F4000","name":"MilkChoco"},{"id":"0x0100572010EF8000","name":"Little Bit War"},{"id":"0x01005A700C954000","name":"Stellar Interface"},{"id":"0x01005EB01363C000","name":"Super Star Panda"},{"id":"0x01005FC010EB2000","name":"Potata: Fairy Flower"},{"id":"0x010060600D894000","name":"Freecell Solitaire"},{"id":"0x010062400E69C000","name":"Bibi & Tina at the horse farm"},{"id":"0x010065200D192000","name":"Isoland"},{"id":"0x010067A011FF0000","name":"Arcade Archives P-47"},{"id":"0x010069100DB08000","name":"Faeria"},{"id":"0x01006BB00C6F0000","name":"The Legend of Zelda™: Link’s Awakening"},{"id":"0x01006E800B7F2000","name":"Fernz Gate"},{"id":"0x01006E900B6EC000","name":"Jack N' Jill DX"},{"id":"0x01006FA012FE0000","name":"Cthulhu Saves Christmas"},{"id":"0x010049A00F5AC000","name":"Family Tennis SP"},{"id":"0x010049D00C8B0000","name":"Swimsanity!"},{"id":"0x01004A800F0CA000","name":"BrainZ"},{"id":"0x01004BC010D70000","name":"Jet Ski Rush"},{"id":"0x01004C4010C00000","name":"Travel Mosaics 5: Waltzing Vienna"},{"id":"0x01004C800A79C000","name":"Splat the Fruit"},{"id":"0x01004D500D9BE000","name":"Not Not - A Brain Buster"},{"id":"0x01004DB0126AC000","name":"Sudoku Relax 5 Full Bloom"},{"id":"0x01004F0010A02000","name":"Sky Racket"},{"id":"0x01004F1012716000","name":"Collapsed"},{"id":"0x010050400BD38000","name":"Roman Rumble in Las Vegum - Asterix & Obelix XXL 2"},{"id":"0x010054501075C000","name":"Curious Cases"},{"id":"0x0100558010B26000","name":"Behold the Kickmen"},{"id":"0x0100563011B4A000","name":"War-Torn Dreams"},{"id":"0x010059900BA3C000","name":"Windscape"},{"id":"0x0100599013216000","name":"Educational Games for Kids"},{"id":"0x01005AB01119C000","name":"SUSHI REVERSI"},{"id":"0x01005B6008132000","name":"Lifeless Planet: Premiere Edition"},{"id":"0x01005BC012C66000","name":"Duck Life Adventure"},{"id":"0x01005CD00F85A000","name":"Underhero"},{"id":"0x010052900B8EE000","name":"Gakuen Club"},{"id":"0x01005420101DA000","name":"The Legend of Heroes: Trails of Cold Steel III"},{"id":"0x0100551001D88000","name":"Battle Chasers: Nightwar"},{"id":"0x010056800B534000","name":"Super Inefficient Golf"},{"id":"0x010056E00B4F4000","name":"The Walking Dead: A New Frontier"},{"id":"0x010059100D928000","name":"Heaven Dust"},{"id":"0x01005DD00BE08000","name":"Arcade Archives ALPHA MISSION"},{"id":"0x01005FC0133D2000","name":"Slots of the Season"},{"id":"0x010061600BF7E000","name":"ACA NEOGEO STRIKERS 1945 PLUS"},{"id":"0x010061A00AE64000","name":"Tiny Hands Adventure"},{"id":"0x01006C400ACEE000","name":"Them Bombs!"},{"id":"0x01006CE0134E6000","name":"A Frog Game"},{"id":"0x01006D500B0C8000","name":"Mecho Wars: Desert Ashes"},{"id":"0x01006FB00990E000","name":"Azure Reflections"},{"id":"0x0100707011722000","name":"Space Elite Force"},{"id":"0x010070D00F640000","name":"STONE"},{"id":"0x0100715007354000","name":"NARUTO: Ultimate Ninja STORM"},{"id":"0x010072C010002000","name":"Event Horizon: Space Defense"},{"id":"0x010073700E412000","name":"DORAEMON STORY OF SEASONS"},{"id":"0x010036C00D0D6000","name":"Gnomes Garden: Lost King"},{"id":"0x0100382011002000","name":"PixelJunk Eden 2"},{"id":"0x01003A300B5F8000","name":"Voxel Shot for Nintendo Switch"},{"id":"0x01003C000D84C000","name":"Golem Gates"},{"id":"0x01003C6008940000","name":"GUNBIRD for Nintendo Switch"},{"id":"0x01003D7002CC0000","name":"Johnny Turbo's Arcade: Joe and Mac Returns"},{"id":"0x010040800BA8A000","name":"Box Align"},{"id":"0x010040A00EA26000","name":"Taimumari: Complete Edition"},{"id":"0x010040F011DE4000","name":"Devious Dungeon Collection"},{"id":"0x010042200BE0C000","name":"Arcade Archives URBAN CHAMPION"},{"id":"0x010042800E748000","name":"Word Mesh"},{"id":"0x010042E00AC80000","name":"Ayakashi Koi Gikyoku -Forbidden Romance with Mysterious Spirit-"},{"id":"0x010044E008FC6000","name":"PlataGO! Super Platform Game Maker"},{"id":"0x010045F00D56C000","name":"OVIVO"},{"id":"0x010046000EE40000","name":"Call of Cthulhu"},{"id":"0x01004A0013790000","name":"DungeonTop"},{"id":"0x01004B4002B6A000","name":"Runner3"},{"id":"0x01004FD00D7C8000","name":"Rollin' Eggz"},{"id":"0x010051E012302000","name":"112th Seed"},{"id":"0x010059500D070000","name":"Lapis x Labyrinth"},{"id":"0x01005A300C9F6000","name":"SEGA AGES Phantasy Star"},{"id":"0x01005D10133B8000","name":"Killer Chambers"},{"id":"0x01005F2012740000","name":"FootGoal! Tiki Taka"},{"id":"0x0100605008268000","name":"Titan Quest"},{"id":"0x010060F00AA70000","name":"The Walking Dead: The Final Season - Season Pass"},{"id":"0x010065A01158E000","name":"Commandos 2 - HD Remaster"},{"id":"0x010065F00DF4A000","name":"Let's Sing 2020"},{"id":"0x010066D013354000","name":"Truck Simulator"},{"id":"0x010067300AFFA000","name":"EARTHLOCK Demo"},{"id":"0x010069700AF9C000","name":"Happy Birthdays Demo"},{"id":"0x01006A0010D6A000","name":"Blood Breed"},{"id":"0x01006AA0084FE000","name":"Damascus Gear Operation Tokyo"},{"id":"0x01006B30092F0000","name":"Halcyon 6: Starbase Commander"},{"id":"0x01006B9013672000","name":"Cybxus Hearts"},{"id":"0x01006DA013562000","name":"Poltergeist Crusader"},{"id":"0x01006DC00FA0A000","name":"Get Me Outta Here"},{"id":"0x01006ED00BC76000","name":"Nelke & the Legendary Alchemists ~Ateliers of the New World~"},{"id":"0x010071E00875A000","name":"Banner Saga 3"},{"id":"0x010049A00C7AA000","name":"ACA NEOGEO PUZZLE BOBBLE"},{"id":"0x010049E003748000","name":"Putty Pals"},{"id":"0x01004B600A2FC000","name":"ACA NEOGEO STAKES WINNER"},{"id":"0x01004C100FA84000","name":"DRAW CHILLY"},{"id":"0x01004CD01039A000","name":"Technosphere"},{"id":"0x01004D501230A000","name":"Olija"},{"id":"0x01004D600AC14000","name":"Super Neptunia RPG"},{"id":"0x01004F50085F2000","name":"She Remembered Caterpillars"},{"id":"0x01005070088E0000","name":"Ittle Dew"},{"id":"0x010052B003A38000","name":"The Long Reach"},{"id":"0x01005A700CC3C000","name":"Mana Spark"},{"id":"0x01005AA00372A000","name":"UNO® for Nintendo Switch"},{"id":"0x01005B000D786000","name":"DC Universe™ Online"},{"id":"0x01005E500E528000","name":"TRANSFORMERS: BATTLEGROUNDS"},{"id":"0x01005EF00B4BC000","name":"Ms. Splosion Man"},{"id":"0x01005F2011F8C000","name":"Pixboy"},{"id":"0x0100643002136000","name":"Resident Evil Revelations"},{"id":"0x0100646009FBE000","name":"Dead Cells"},{"id":"0x010065C00F976000","name":"Arcade Archives HYPER SPORTS"},{"id":"0x010066800E9F8000","name":"The Childs Sight"},{"id":"0x01001C800DBC0000","name":"Desktop Table Tennis"},{"id":"0x01001FA00FBBC000","name":"MotoGP™20"},{"id":"0x010020500E7A6000","name":"Speaking Simulator"},{"id":"0x010020700A5E0000","name":"TRIVIAL PURSUIT® Live!"},{"id":"0x0100224004004000","name":"Slain: Back From Hell"},{"id":"0x010023800D64A000","name":"DELTARUNE Chapter 1"},{"id":"0x010028700D1CA000","name":"Witch & Hero"},{"id":"0x01002B700F88A000","name":"Traffix"},{"id":"0x01002C000B552000","name":"Taiko no Tatsujin: Drum 'n' Fun!"},{"id":"0x01002E70032E8000","name":"ACA NEOGEO BIG TOURNAMENT GOLF"},{"id":"0x01003000097FE000","name":"Arcade Archives MOON PATROL"},{"id":"0x0100308013768000","name":"The Explorer of Night"},{"id":"0x010031D012BA4000","name":"Azurebreak Heroes"},{"id":"0x010037A00BB02000","name":"Tetraminos"},{"id":"0x0100384009344000","name":"Super Toy Cars"},{"id":"0x010042000A986000","name":"DRAGON QUEST BUILDERS™ 2"},{"id":"0x0100437004170000","name":"Portal Knights"},{"id":"0x010044701191E000","name":"Mars Horizon"},{"id":"0x010047600BF72000","name":"Rain World"},{"id":"0x010047600FBFE000","name":"Link-a-Pix Deluxe"},{"id":"0x010071B012940000","name":"Embracelet"},{"id":"0x010074200E910000","name":"Super Street: Racer"},{"id":"0x0100745011D28000","name":"Missile Command: Recharged"},{"id":"0x010075100ED92000","name":"Best Friend Forever"},{"id":"0x010075B004DD2000","name":"DISTRAINT: Deluxe Edition"},{"id":"0x01007600115CE000","name":"CHAOS CODE -NEW SIGN OF CATASTROPHE-"},{"id":"0x010076300EE80000","name":"Super Wiloo Demake"},{"id":"0x010076F012CD8000","name":"Dragon Lapis"},{"id":"0x010079100CD8A000","name":"SUPER TRENCH ATTACK"},{"id":"0x010079A00D9E8000","name":"Little Friends: Dogs & Cats"},{"id":"0x01007AA012E02000","name":"Fantasy Tower Defense"},{"id":"0x01007BB00A0A0000","name":"Sally's Law"},{"id":"0x01007E700D5B4000","name":"Doodle God: Crime City"},{"id":"0x010083600AE9E000","name":"Happy Birthdays"},{"id":"0x010087800DCEA000","name":"WRC 8 FIA World Rally Championship"},{"id":"0x010087F005DFE000","name":"ESCAPE TRICK: 35 Fateful Enigmas"},{"id":"0x010088F00AD80000","name":"Super One More Jump Demo"},{"id":"0x010089700150E000","name":"Dragon Marked for Death: Frontline Fighters"},{"id":"0x01008D000D980000","name":"Hotel Dracula"},{"id":"0x01004A301226A000","name":"Power Racing Bundle"},{"id":"0x01004B800AF5A000","name":"Bloodstained: Curse of the Moon"},{"id":"0x01004D501113C000","name":"Going Under"},{"id":"0x01004DD00C87A000","name":"Steamburg"},{"id":"0x01004EB0119AC000","name":"Moero Crystal H"},{"id":"0x01004FE0107EE000","name":"Yumeutsutsu Re:Master"},{"id":"0x010051D00E3A4000","name":"Rune Factory 4 Special"},{"id":"0x010052A00B5D2000","name":"LEGO® Harry Potter™ Collection"},{"id":"0x0100531011EF4000","name":"Her Majesty's Ship"},{"id":"0x010053200B0E0000","name":"Behind The Screen"},{"id":"0x0100534011012000","name":"Relic Hunters Zero: Remix"},{"id":"0x010054400D2E6000","name":"SEGA AGES Virtua Racing"},{"id":"0x010058000A576000","name":"The Town of Light: Deluxe Edition"},{"id":"0x0100581007068000","name":"Lost Castle"},{"id":"0x010059400E0BA000","name":"Switchy Road"},{"id":"0x010059801292A000","name":"Parking Madness"},{"id":"0x01005C5011086000","name":"Pooplers"},{"id":"0x01005DA003E6E000","name":"Morphies Law"},{"id":"0x01005EB00EA10000","name":"Star-Crossed Myth - The Department of Wishes -"},{"id":"0x01005F400E644000","name":"Invisigun Reloaded"},{"id":"0x01004A4013318000","name":"Lovekami -Divinity Stage-"},{"id":"0x01004E500DB3C000","name":"MouseCraft"},{"id":"0x01004EB00E43A000","name":"Five Nights at Freddy's 2"},{"id":"0x01004F10066B0000","name":"Party Planet"},{"id":"0x010051A00AAEA000","name":"Shadow of Loot Box"},{"id":"0x010052C00B184000","name":"The Journey Down: Chapter One"},{"id":"0x010056E00FA3A000","name":"Desktop Dodgeball"},{"id":"0x010058C00A916000","name":"Drone Fight"},{"id":"0x010059E00B93C000","name":"Forgotton Anne"},{"id":"0x01005BD0112B8000","name":"Mushroom Heroes"},{"id":"0x01005CC012BFE000","name":"Crazy BMX World"},{"id":"0x01005E100A4F0000","name":"Phoenotopia : Awakening"},{"id":"0x01005E201301A000","name":"Warplanes: WW1 Sky Aces"},{"id":"0x01005FA009370000","name":"Elemental Knights R"},{"id":"0x010061C00AFDA000","name":"ACA NEOGEO NEO GEO CUP '98: THE ROAD TO THE VICTORY"},{"id":"0x010062B00A874000","name":"Big Buck Hunter Arcade"},{"id":"0x010064800F66A000","name":"Borderlands: Game of the Year Edition"},{"id":"0x0100668010DC2000","name":"Sky Mercenaries Redux"},{"id":"0x010068F012880000","name":"Eldrador® Creatures"},{"id":"0x010069C00401A000","name":"RIVE: Ultimate Edition"},{"id":"0x01006BE00B3C8000","name":"My Brother Rabbit"},{"id":"0x01006CB0124D0000","name":"Red Crow Mysteries: Legion"},{"id":"0x010071800B4B2000","name":"Your Toy"},{"id":"0x010071F00D65A000","name":"Wilmot's Warehouse"},{"id":"0x01007310128EC000","name":"Bullet Beat"},{"id":"0x010073400B696000","name":"Shadowgate"},{"id":"0x0100752011628000","name":"TTV2"},{"id":"0x0100759010EC8000","name":"A Street Cat's Tale"},{"id":"0x0100772012186000","name":"Retro Classix 2in1 pack: Bad Dudes & Two Crude Dudes"},{"id":"0x010078300DA14000","name":"Teddy The Wanderer: Mountain Hike"},{"id":"0x01007A1012376000","name":"Dominate - Board Game"},{"id":"0x01007A300C856000","name":"Xenon Valkyrie+ Demo"},{"id":"0x01007C600294E000","name":"Pocket Rumble"},{"id":"0x01007DB00A226000","name":"Travel Mosaics: A Paris Tour"},{"id":"0x01007E90116CE000","name":"Giraffe and Annika"},{"id":"0x010080C00AC3C000","name":"Caveman Chuck: Prehistoric Adventure"},{"id":"0x010082A00D80A000","name":"Pet Care"},{"id":"0x0100841008BDE000","name":"JCB Pioneer: Mars"},{"id":"0x010089400E4E2000","name":"Little Briar Rose"},{"id":"0x01008DB008C2C000","name":"Pokémon™ Shield"},{"id":"0x01006E4003832000","name":"Johnny Turbo's Arcade: Bad Dudes"},{"id":"0x010070100F782000","name":"60 Seconds! Reatomized"},{"id":"0x010073000C43C000","name":"Starman"},{"id":"0x010076800B06E000","name":"Mega Man 11 Demo Version"},{"id":"0x0100779004172000","name":"Golf Story"},{"id":"0x01007F100DE52000","name":"Akane"},{"id":"0x0100818008004000","name":"Serial Cleaner"},{"id":"0x010083800B4E8000","name":"The Amazing Shinsengumi: Heroes in Love"},{"id":"0x010085900E3B6000","name":"Neon Junctions"},{"id":"0x010085B00CCEE000","name":"Gnomes Garden: New Home"},{"id":"0x010086B00BB50000","name":"Farm Together"},{"id":"0x010088E00B816000","name":"RIOT - Civil Unrest"},{"id":"0x01008B900DC0A000","name":"FINAL FANTASY VIII Remastered"},{"id":"0x01008CA00F7E0000","name":"Perils of Baking"},{"id":"0x01008D4010C46000","name":"Fluxteria"},{"id":"0x010090E00ECF4000","name":"The Tenth Line Special Edition"},{"id":"0x010099700B760000","name":"Frutakia 2"},{"id":"0x01009A400A97C000","name":"ASSAULT GUNNERS HD EDITION"},{"id":"0x01009AD00BFD0000","name":"When Ski Lifts Go Wrong"},{"id":"0x01005DC00D80C000","name":"Guess the word"},{"id":"0x01005EF00CFDA000","name":"A Knight's Quest"},{"id":"0x010061F013A0E000","name":"Speed Truck Racing"},{"id":"0x0100635006C32000","name":"Pankapu"},{"id":"0x010065D012FA0000","name":"Azur Lane: Crosswave"},{"id":"0x010068000CAC0000","name":"Hunter's Legacy: Purrfect Edition"},{"id":"0x010069500DD86000","name":"Destiny Connect: Tick-Tock Travelers"},{"id":"0x01006B5012B32000","name":"Part Time UFO™"},{"id":"0x01006C000DC8A000","name":"Skelly Selest"},{"id":"0x01006C10131F6000","name":"Pumpkin Jack"},{"id":"0x01006CF00DA8C000","name":"Zombie Driver Immortal Edition"},{"id":"0x01007170100AA000","name":"Legends of Amberland: The Forgotten Crown"},{"id":"0x010072900AFF0000","name":"Gear.Club Unlimited 2"},{"id":"0x010074300F7F6000","name":"Roundguard"},{"id":"0x010075701153A000","name":"Superliminal"},{"id":"0x010075D0101FA000","name":"Seek Hearts"},{"id":"0x010076B0101A0000","name":"YesterMorrow"},{"id":"0x0100774009CF6000","name":"ONE PIECE Pirate Warriors 3 Deluxe Edition"},{"id":"0x010077500FA64000","name":"Ultra Off-Road 2019: Alaska"},{"id":"0x01004C100A04C000","name":"This is the Police 2"},{"id":"0x010050C0124CE000","name":"Mini Island Challenge Bundle"},{"id":"0x010050D00FE0C000","name":"Portal Dogs"},{"id":"0x010056D00E234000","name":"30-in-1 Game Collection"},{"id":"0x010057D006492000","name":"Octopath Traveler™"},{"id":"0x010058800E90A000","name":"Convoy: A Tactical Roguelike"},{"id":"0x0100591008790000","name":"ACA NEOGEO THE ULTIMATE 11: SNK FOOTBALL CHAMPIONSHIP"},{"id":"0x01005CD011474000","name":"Bug Academy"},{"id":"0x01005D0011A40000","name":"Tiny Racer"},{"id":"0x01005D200C9AA000","name":"Koloro"},{"id":"0x01005EE00BC78000","name":"Dokuro (ドクロ)"},{"id":"0x01005F900416E000","name":"Pic-a-Pix Deluxe"},{"id":"0x01005FC01000E000","name":"Monster Bugs Eat People"},{"id":"0x01006000040C2000","name":"Yoshi’s Crafted World™"},{"id":"0x010061400ED90000","name":"HyperParasite"},{"id":"0x010061E00E8BE000","name":"Garfield Kart Furious Racing"},{"id":"0x010062600D236000","name":"The Path of Motus Demo"},{"id":"0x0100647012F62000","name":"Override 2: Super Mech League"},{"id":"0x010065E011D5C000","name":"Myths of Orion: Light from the North"},{"id":"0x010046600BD0E000","name":"Crash Dummy"},{"id":"0x010046F012A04000","name":"Chinese Parents"},{"id":"0x010048600CC16000","name":"Real Heroes: Firefighter"},{"id":"0x0100496006EC8000","name":"Arcade Archives FRONT LINE"},{"id":"0x010049900D3C6000","name":"Drowning (Demo)"},{"id":"0x01004E90028A2000","name":"Vroom in the night sky"},{"id":"0x01004F000B716000","name":"Edna & Harvey: The Breakout – Anniversary Edition"},{"id":"0x010050A011344000","name":"Jurassic World Evolution: Complete Edition"},{"id":"0x010055A00A300000","name":"ACA NEOGEO SUPER SIDEKICKS 2"},{"id":"0x010055D009F78000","name":"Fire Emblem™: Three Houses"},{"id":"0x010055D00BDD0000","name":"3D Billiards - Pool & Snooker"},{"id":"0x010059F012984000","name":"Make a Killing"},{"id":"0x01005A8010C7E000","name":"ARCADE FUZZ"},{"id":"0x01005AE00A528000","name":"Star Ghost Demo"},{"id":"0x01005B800EA5A000","name":"Sheep in Hell"},{"id":"0x01005C70122E0000","name":"Farm Mechanic Simulator"},{"id":"0x01005CD00A2A2000","name":"Suicide Guy"},{"id":"0x01005E700ABB8000","name":"Oddworld: New 'n' Tasty"},{"id":"0x010063400B2EC000","name":"Paranautical Activity"},{"id":"0x0100463013246000","name":"Oneiros"},{"id":"0x010047300EBA6000","name":"The Tower of Beatrice"},{"id":"0x010048800E7A2000","name":"Super Bit Blaster XL"},{"id":"0x01004A600EB3E000","name":"Rest in Pieces"},{"id":"0x01004AF00A772000","name":"PixelJunk™ Monsters 2 Demo"},{"id":"0x01004B800D0E8000","name":"MotoGP™19"},{"id":"0x01004BE004A86000","name":"Mutant Mudds Collection"},{"id":"0x01004C70086EC000","name":"BAFL - Brakes Are For Losers"},{"id":"0x01004D800AAAC000","name":"Yuso"},{"id":"0x010059700D4A0000","name":"Sephirothic Stories"},{"id":"0x01005AA00D676000","name":"Blaster Master Zero 2"},{"id":"0x01005C9002B42000","name":"ACA NEOGEO SAMURAI SHODOWN"},{"id":"0x01005DE00F3BC000","name":"Safari Pinball"},{"id":"0x01005E5009EF2000","name":"Guts & Glory"},{"id":"0x010065F004E5E000","name":"Super Chariot"},{"id":"0x010067C010F88000","name":"Goblin Sword"},{"id":"0x01006C00081B4000","name":"GoatPunks"},{"id":"0x01006C100EC08000","name":"Minecraft Dungeons"},{"id":"0x01006D300FFA6000","name":"Baobabs Mausoleum Ep.3: Un Pato en Muertoburgo"},{"id":"0x01006DB004566000","name":"Caveman Warriors"},{"id":"0x010041700D3D4000","name":"European Conqueror X"},{"id":"0x010045000E418000","name":"NEKOPARA Vol.3"},{"id":"0x010045400D73E000","name":"Red Siren: Space Defense"},{"id":"0x010045B011E1E000","name":"Piano"},{"id":"0x010047700D540000","name":"Clubhouse Games™: 51 Worldwide Classics"},{"id":"0x010049F00AFE8000","name":"ACA NEOGEO SAMURAI SHODOWN V SPECIAL"},{"id":"0x01004B200DF76000","name":"7th Sector"},{"id":"0x01004B201308A000","name":"Memoranda"},{"id":"0x01004F200CB08000","name":"Desktop Soccer"},{"id":"0x010050000D6C4000","name":"Arcade Classics Anniversary Collection"},{"id":"0x0100519007636000","name":"Cube Life: Island Survival"},{"id":"0x010052900DC7E000","name":"Pocket Clothier"},{"id":"0x01005370123D0000","name":"Arcade Archives KOUTETSU YOUSAI STRAHL"},{"id":"0x01005B1006988000","name":"Frederic: Resurrection of Music"},{"id":"0x01005B100C268000","name":"Ape Out"},{"id":"0x01005B500A1A2000","name":"KAIJU KHAOS"},{"id":"0x01005BE008674000","name":"IMPLOSION Demo"},{"id":"0x01005C8005F34000","name":"Teslagrad"},{"id":"0x01006050129D2000","name":"PICK ME UP! - Rescue Rangers -"},{"id":"0x010061900AFAC000","name":"ACA NEOGEO THRASH RALLY"},{"id":"0x010040D01222C000","name":"UBERMOSH: SANTICIDE"},{"id":"0x010041100B148000","name":"Pinstripe"},{"id":"0x010044E00D97C000","name":"BATTLESLOTHS"},{"id":"0x0100454008DA8000","name":"Stikbold! A Dodgeball Adventure DELUXE Demo"},{"id":"0x010049200B536000","name":"Lazy Galaxy: Rebel Story"},{"id":"0x010049E00BA34000","name":"Townsmen - A Kingdom Rebuilt"},{"id":"0x01004A300F91E000","name":"Tower Climb"},{"id":"0x01004B500F07C000","name":"Strike Force 2 - Terrorist Hunt"},{"id":"0x01004C000AFDC000","name":"ACA NEOGEO METAL SLUG 5"},{"id":"0x01004C200B0B4000","name":"Alwa's Awakening"},{"id":"0x01004E400A48C000","name":"Slam Land"},{"id":"0x0100502007F54000","name":"Black The Fall"},{"id":"0x010051D00C9F8000","name":"Startide"},{"id":"0x010052B00B194000","name":"Lumini"},{"id":"0x010055600516C000","name":"Farmer's Dynasty"},{"id":"0x010055E00CA68000","name":"Trine 4: The Nightmare Prince"},{"id":"0x010059C012966000","name":"Picklock"},{"id":"0x01005AF004DBC000","name":"ACA NEOGEO ZED BLADE"},{"id":"0x01005CE00F970000","name":"Sacred Stones"},{"id":"0x01005E101014C000","name":"2048 CAT"},{"id":"0x0100735010F58000","name":"Road To Guangdong"},{"id":"0x010076000C86E000","name":"Cat Girl Without Salad: Amuse-Bouche"},{"id":"0x0100769004584000","name":"Shaq Fu: A Legend Reborn"},{"id":"0x010077E00F30E000","name":"Big Pharma"},{"id":"0x010080F0099FC000","name":"Semblance"},{"id":"0x0100820013612000","name":"Shady Part of Me"},{"id":"0x010084200DC72000","name":"Arcade Archives TIME TUNNEL"},{"id":"0x010084D00CF5E000","name":"NARUTO SHIPPUDEN™: Ultimate Ninja® STORM 4 ROAD TO BORUTO"},{"id":"0x010084E010E18000","name":"NAMCO MUSEUM® ARCHIVES Vol 1"},{"id":"0x010085D0101A4000","name":"Infinite - Beyond the Mind"},{"id":"0x0100875011D0C000","name":"Aery - Little Bird Adventure"},{"id":"0x01008D700AB14000","name":"The Bug Butcher"},{"id":"0x01008DF00B78E000","name":"Gunbrick: Reloaded"},{"id":"0x01008FA01187A000","name":"Prinny® 2: Dawn of Operation Panties, Dood!"},{"id":"0x01009100115C0000","name":"Solitaire Deluxe Bundle - 3 in 1"},{"id":"0x0100946008DAE000","name":"Her Majesty's SPIFFING"},{"id":"0x0100946012446000","name":"Paint"},{"id":"0x01009860125C0000","name":"Tales from the Dragon Mountain: The Strix"},{"id":"0x010099A00BC1E000","name":"resident evil 4"},{"id":"0x0100738012566000","name":"Super Arcade Racing"},{"id":"0x0100743008694000","name":"Neonwall"},{"id":"0x01007880115E8000","name":"Colloc"},{"id":"0x010079000F0D2000","name":"Kitty Powers' Matchmaker: Deluxe Edition"},{"id":"0x010079300E976000","name":"Baobabs Mausoleum Ep.2: 1313 Barnabas Dead End Drive"},{"id":"0x010079500E0DA000","name":"Curious Expedition"},{"id":"0x01007B900A508000","name":"Pure / Electric Love \"What do you want?\" - Eri Kitami -"},{"id":"0x01007D000AD8A000","name":"Child of Light® Ultimate Edition"},{"id":"0x01007E3006DDA000","name":"Kirby™ Star Allies"},{"id":"0x01007EE011116000","name":"SNK GALS' FIGHTERS"},{"id":"0x010083800DC70000","name":"Arcade Archives ALPINE SKI"},{"id":"0x010086100CDCA000","name":"CODE SHIFTER"},{"id":"0x0100875008000000","name":"Bloody Zombies"},{"id":"0x010088800B72E000","name":"Pix the Cat"},{"id":"0x010089000F0E8000","name":"Kine"},{"id":"0x01008C900982E000","name":"Arcade Archives Solomon's Key"},{"id":"0x01008DD0114AE000","name":"Zenge"},{"id":"0x01008E900471E000","name":"De Mambo"},{"id":"0x01008ED0087A4000","name":"The Adventure Pals"},{"id":"0x01008F500E042000","name":"Charterstone: Digital Edition"},{"id":"0x01005F000CC18000","name":"OVERWHELM"},{"id":"0x01005F7011950000","name":"ScourgeBringer"},{"id":"0x010064E00ECBC000","name":"The Unicorn Princess"},{"id":"0x010066D002CC8000","name":"Johnny Turbo's Arcade: Break Thru"},{"id":"0x010067400EA5C000","name":"Headspun"},{"id":"0x010068200C5BE000","name":"Roarr! Jurassic Edition"},{"id":"0x01006C3004FAE000","name":"ACA NEOGEO WORLD HEROES 2 JET"},{"id":"0x01006EB004B0E000","name":"Treadnauts"},{"id":"0x01006FE005B6E000","name":"Sky Force Reloaded"},{"id":"0x01006FE00D2B0000","name":"High Noon Revolver"},{"id":"0x010071B00964A000","name":"Lost Sea"},{"id":"0x010077300A86C000","name":"PIANISTA"},{"id":"0x010077B0100DA000","name":"Dogurai"},{"id":"0x010079501025C000","name":"Immortal Realms: Vampire Wars"},{"id":"0x010079D00C8AE000","name":"Klondike Solitaire"},{"id":"0x01007BE00FE5E000","name":"PuPaiPo Space Deluxe"},{"id":"0x01007C000C314000","name":"kuso"},{"id":"0x01007F600D1B8000","name":"12 is Better Than 6"},{"id":"0x0100842011BD6000","name":"Umihara Kawase BaZooKa!"},{"id":"0x010085700ABC8000","name":"PBA Pro Bowling"},{"id":"0x0100812012554000","name":"Mushroom Savior"},{"id":"0x0100842008EC4000","name":"Mega Man Legacy Collection 2"},{"id":"0x010084600F51C000","name":"Demon Pit"},{"id":"0x010085500D5F6000","name":"Turok"},{"id":"0x010085F00B93A000","name":"Western 1849 Reloaded"},{"id":"0x010086100AA54000","name":"Portal Knights Demo"},{"id":"0x01008780123A0000","name":"Iris and the Giant"},{"id":"0x010089700F30C000","name":"Valfaris"},{"id":"0x010089D011310000","name":"Blind Men"},{"id":"0x01008CD00FB66000","name":"Rune Lord"},{"id":"0x01008DB013114000","name":"Stencil Art"},{"id":"0x01008DD00E66C000","name":"Truck Simulator USA"},{"id":"0x01008F000E908000","name":"Mad Bullets"},{"id":"0x01008F30107F8000","name":"Where Angels Cry: Tears of the Fallen Collector's Edition"},{"id":"0x010093000CB62000","name":"Sudoku Universe"},{"id":"0x010094600DC86000","name":"Tower Of Time"},{"id":"0x010096D0116DE000","name":"Sagrada"},{"id":"0x010099A011A46000","name":"Instant Sports Summer Games"},{"id":"0x01009A700DA8E000","name":"Oh!Edo Towns"},{"id":"0x01009C000415A000","name":"Ultra Hyperball"},{"id":"0x010020400BDD2000","name":"Moai VI: Unexpected Guests"},{"id":"0x010020901088A000","name":"Nirvana Pilot Yume"},{"id":"0x010021D00ACA2000","name":"Never Stop"},{"id":"0x010021F00C1C0000","name":"Adventures of Bertram Fiddle Episode 2: A Bleaker Predicklement"},{"id":"0x010022801242C000","name":"KukkoroDays"},{"id":"0x010027B00DDF4000","name":"Sudoku Relax"},{"id":"0x010029700EB76000","name":"Adrenaline Rush - Miami Drive"},{"id":"0x01002B30028F6000","name":"Celeste"},{"id":"0x01002C301280E000","name":"Vampire: The Masquerade - Shadows of New York"},{"id":"0x010030A00DA3A000","name":"Root Letter: Last Answer"},{"id":"0x010032800E6D2000","name":"Headball Soccer Deluxe"},{"id":"0x0100352006A10000","name":"Heroes of the Monkey Tavern"},{"id":"0x010035B00B3F0000","name":"Super Volley Blast"},{"id":"0x010037500F282000","name":"KUUKIYOMI 2: Consider It More! - New Era"},{"id":"0x01003A600D8FC000","name":"A Fold Apart"},{"id":"0x01003FB00E954000","name":"Arcade Archives Yie Ar KUNG-FU"},{"id":"0x010041C00A68C000","name":"The Spectrum Retreat"},{"id":"0x010043B00E1CE000","name":"PictoQuest"},{"id":"0x010044B00E70A000","name":"Foregone"},{"id":"0x01008D800AE4A000","name":"FullBlast"},{"id":"0x01008E6006502000","name":"Aegis Defenders"},{"id":"0x01008FE00E2F6000","name":"ONE PIECE: PIRATE WARRIORS 4"},{"id":"0x01009070118B4000","name":"My Secret Pets!"},{"id":"0x010094F01328C000","name":"Castle of no Escape"},{"id":"0x01009510001CA000","name":"FAST RMX"},{"id":"0x010096A00CC80000","name":"A Ch'ti Bundle"},{"id":"0x010099100B6AC000","name":"The Walking Dead: Season Two"},{"id":"0x01009A5009A9E000","name":"Shining Resonance Refrain"},{"id":"0x01009AC00D5F4000","name":"Cinders"},{"id":"0x01009B400ACBA000","name":"No Heroes Here"},{"id":"0x01009BC00B872000","name":"City of Brass"},{"id":"0x01009C200D60E000","name":"Super Meat Boy Forever"},{"id":"0x01009D000FAE0000","name":"Ultimate Racing 2D"},{"id":"0x01009D50103E8000","name":"World Of Solitaire"},{"id":"0x01009E100D660000","name":"Tiny Derby"},{"id":"0x0100A0F00D82A000","name":"My Big Sister"},{"id":"0x0100A290048B0000","name":"Soldam: Drop, Connect, Erase"},{"id":"0x0100A2E00D0E0000","name":"Alien Cruise"},{"id":"0x0100A500115BC000","name":"Swordbreaker The Game"},{"id":"0x010067600AD78000","name":"Space War Arena"},{"id":"0x0100679010FEE000","name":"Hair Mower 3D"},{"id":"0x010068200BF14000","name":"RISK® Global Domination - Demo"},{"id":"0x01006A200936C000","name":"Shantae: Half- Genie Hero Ultimate Edition"},{"id":"0x01006BB00D45A000","name":"Splatoon™ 2 Special Demo"},{"id":"0x01006C8013708000","name":"Detective Puz"},{"id":"0x01006DA00707C000","name":"3D MiniGolf"},{"id":"0x01006DA00DEAC000","name":"Star Wars™ Pinball"},{"id":"0x01006FE0096AC000","name":"The Jackbox Party Pack 5"},{"id":"0x010070B01260C000","name":"Pool Pro GOLD"},{"id":"0x010070C011E2A000","name":"Kropki 8"},{"id":"0x0100713010E7A000","name":"Chicken Police – Paint it RED!"},{"id":"0x010072000BD32000","name":"WORLD OF FINAL FANTASY MAXIMA"},{"id":"0x010073C00BDB0000","name":"Elli"},{"id":"0x010074000BE8E000","name":"oOo: Ascension"},{"id":"0x010075600AE96000","name":"Just Dance® 2019"},{"id":"0x010075A00BA14000","name":"Sniper Elite 3 Ultimate Edition"},{"id":"0x0100766003E5C000","name":"BOOST BEAST"},{"id":"0x01007D1013512000","name":"Unhatched"},{"id":"0x01007DD00DFDE000","name":"Dyna Bomb"},{"id":"0x010050101127C000","name":"The Persistence"},{"id":"0x0100510011BC0000","name":"Indie Gems Bundle - Nonograms edition"},{"id":"0x010053C012AE2000","name":"Kakurasu World"},{"id":"0x010053E002EA2000","name":"Fate/EXTELLA: The Umbral Star"},{"id":"0x010058B00F3C0000","name":"Dreaming Canvas"},{"id":"0x01005AD00B91A000","name":"Never Give Up"},{"id":"0x01005BA00BEE6000","name":"Trivial Pursuit LIVE - DEMO"},{"id":"0x010061000D82C000","name":"Even the Ocean"},{"id":"0x010061100FA8E000","name":"Orbitblazers"},{"id":"0x010061500F462000","name":"Deathtrap Dungeon Trilogy"},{"id":"0x010061700FA8C000","name":"Murder by Numbers"},{"id":"0x010064400B138000","name":"V-Rally 4"},{"id":"0x010065C00CD98000","name":"Bot Vice"},{"id":"0x010069900C4AC000","name":"Chime Sharp"},{"id":"0x01006C500A29C000","name":"HyperBrawl Tournament"},{"id":"0x01006C600E46E000","name":"Samurai Jack: Battle Through Time"},{"id":"0x01006D800A988000","name":"Battlezone Gold Edition"},{"id":"0x01006E000C81C000","name":"Fate/EXTELLA LINK"},{"id":"0x01006F8002326000","name":"Animal Crossing™: New Horizons"},{"id":"0x01006890126E4000","name":"4x4 Dirt Track"},{"id":"0x010068F00F444000","name":"Brawl Chess"},{"id":"0x010069400B6BE000","name":"For The King"},{"id":"0x0100695011280000","name":"Dirt Trackin 2"},{"id":"0x01006B400C178000","name":"Blacksea Odyssey"},{"id":"0x01006E30099B8000","name":"Pic-a-Pix Deluxe Demo"},{"id":"0x01006E400AE2A000","name":"Jeopardy!®"},{"id":"0x010076600FD64000","name":"One Person Story"},{"id":"0x010076F011F54000","name":"Undead & Beyond"},{"id":"0x01007A601318C000","name":"Tanuki Justice"},{"id":"0x01007D100F1A6000","name":"BARRIER X"},{"id":"0x010081D00A480000","name":"Ninja Striker!"},{"id":"0x010081E001DD2000","name":"Arcade Archives Renegade"},{"id":"0x010082700C618000","name":"Spider Solitaire BLACK"},{"id":"0x010082B00EE50000","name":"Freedom Finger"},{"id":"0x010084500C7DC000","name":"Angry Video Game Nerd 1 & 2 Deluxe"},{"id":"0x010087C00E31C000","name":"Incredible Mandy"},{"id":"0x010087C011C4E000","name":"Agatha Christie - The ABC Murders"},{"id":"0x01008800130EA000","name":"Slash Ninja"},{"id":"0x010088100C35E000","name":"Big Crown: Showdown"},{"id":"0x01006DD011074000","name":"Indie Darling Bundle Vol 2"},{"id":"0x01006E600D9C2000","name":"Defend Your Castle"},{"id":"0x01006F7001D10000","name":"Monster Boy and the Cursed Kingdom"},{"id":"0x010071800BA98000","name":"Darksiders II Deathinitive Edition"},{"id":"0x010073E008E6E000","name":"Mugsters"},{"id":"0x010075100D450000","name":"Collidalot Demo"},{"id":"0x0100761012B0C000","name":"Takotan"},{"id":"0x010077B0038B2000","name":"LOST SPHEAR"},{"id":"0x010077C00D610000","name":"Pirates Pinball"},{"id":"0x010079300AD54000","name":"Full Metal Furies"},{"id":"0x01007A200F452000","name":"Book of Demons"},{"id":"0x01007B6006092000","name":"MUSYNX"},{"id":"0x01007E400ECC6000","name":"Deadly Fighter 2"},{"id":"0x01007F600B134000","name":"Assassin's Creed® III: Remastered"},{"id":"0x01007F701323E000","name":"Arcade Archives The Fairyland Story"},{"id":"0x01007FB010DC8000","name":"Paradise Killer"},{"id":"0x0100810012A1A000","name":"Carto"},{"id":"0x010082B00E8B8000","name":"Megaquarium"},{"id":"0x0100830004FB6000","name":"L.A. Noire"},{"id":"0x010086E00BCB2000","name":"Retimed"},{"id":"0x01008BB00F824000","name":"Defenders of Ekron: Definitive Edition"},{"id":"0x01009AE00B788000","name":"Pumped BMX Pro"},{"id":"0x01009C200F45A000","name":"Ascendant Hearts"},{"id":"0x01009CE01261C000","name":"I, AI"},{"id":"0x01009D200952E000","name":"MudRunner - American Wilds"},{"id":"0x01009D60076F6000","name":"Enter the Gungeon"},{"id":"0x0100A01011B04000","name":"Arcade Archives RADICAL RADIAL"},{"id":"0x0100A0E004DB2000","name":"ACA NEOGEO SUPER SIDEKICKS"},{"id":"0x0100A6400F29A000","name":"Ganbare! Super Strikers"},{"id":"0x0100A7F002830000","name":"VOEZ"},{"id":"0x0100A9900C380000","name":"Energy Cycle Edge (Demo)"},{"id":"0x0100A9900F3BE000","name":"8-Ball Pocket"},{"id":"0x0100AB9013564000","name":"Boss Rush: Mythology"},{"id":"0x0100AD9011056000","name":"One Way Heroics Plus"},{"id":"0x0100AEC010052000","name":"Biolab Wars"},{"id":"0x0100AFC00F7B6000","name":"Stones of the Revenant"},{"id":"0x0100B2700E90E000","name":"Brunch Club"},{"id":"0x0100B5300B49A000","name":"Frost"},{"id":"0x0100B8400A1C6000","name":"Bloons TD 5"},{"id":"0x0100B8E00CBB0000","name":"Cake Laboratory"},{"id":"0x0100BB1009E50000","name":"Firefighters: Airport Fire Department"},{"id":"0x010066F009524000","name":"Ultra Space Battle Brawl Demo"},{"id":"0x01006BB00E8FA000","name":"BurgerTime Party!"},{"id":"0x01006FB00EBE0000","name":"Golf With Your Friends"},{"id":"0x010070A01134A000","name":"I am Ball"},{"id":"0x010071D0121B0000","name":"I dream of you and ice cream"},{"id":"0x0100729012D18000","name":"Rhythm Fighter"},{"id":"0x0100730011BDC000","name":"Bakugan: Champions of Vestroia"},{"id":"0x010074400F6A8000","name":"Stories Untold"},{"id":"0x010076A009426000","name":"TorqueL -Physics Modified Edition- Demo"},{"id":"0x01007820096FC000","name":"UnExplored"},{"id":"0x01007C2002B3C000","name":"GoNNER"},{"id":"0x01007D200C512000","name":"StarDrone"},{"id":"0x010081D0100F0000","name":"Rhythm of the Gods"},{"id":"0x0100820012ADE000","name":"Slither Loop"},{"id":"0x010089300FDC2000","name":"ZHED"},{"id":"0x01008A900CB90000","name":"RPG Maker MV Player"},{"id":"0x01008BC012850000","name":"Ghostanoid"},{"id":"0x01008CE0123CC000","name":"Arcade Archives 64th. STREET"},{"id":"0x01008E200C5C2000","name":"Muse Dash"},{"id":"0x01008EE012CD4000","name":"Legends of Ethernal"},{"id":"0x010062200CF14000","name":"Demo: Cinderella - An Interactive Fairytale"},{"id":"0x010067C00E496000","name":"DOUBLE DRAGON"},{"id":"0x01006A80038FC000","name":"ACA NEOGEO ART OF FIGHTING"},{"id":"0x01006AC00EE6E000","name":"Rimelands: Hammer of Thor"},{"id":"0x01006C301199C000","name":"My Universe - School Teacher"},{"id":"0x01006D4011738000","name":"Arcade Archives TUBE PANIC"},{"id":"0x01006F100EB16000","name":"Woven"},{"id":"0x01006F900473A000","name":"Bulb Boy"},{"id":"0x01006FE010438000","name":"Sin Slayers"},{"id":"0x010071D00F156000","name":"REZ PLZ"},{"id":"0x010073C001D5E000","name":"Puyo Puyo™Tetris®"},{"id":"0x0100749009844000","name":"20XX"},{"id":"0x010075000D092000","name":"Bad North Demo"},{"id":"0x0100755004608000","name":"Arcade Archives Mario Bros."},{"id":"0x010075D00E8BA000","name":"Alien: Isolation"},{"id":"0x010076B011EC8000","name":"Baila Latino"},{"id":"0x0100770008DD8000","name":"Monster Hunter Generations Ultimate™"},{"id":"0x010078800EE1A000","name":"Swallow Up"},{"id":"0x01007BC00E55A000","name":"Immortal Planet"},{"id":"0x01007CF013152000","name":"Football Manager 2021 Touch"},{"id":"0x01004A400C320000","name":"Momodora: Reverie Under the Moonlight"},{"id":"0x01004C400CF96000","name":"Dead by Daylight"},{"id":"0x01004C500B8E0000","name":"Monkey King: Master of the Clouds"},{"id":"0x01004D8007368000","name":"Vostok Inc."},{"id":"0x010056300D21A000","name":"Chiki-Chiki Boxy Pro Wrestling"},{"id":"0x0100590009C38000","name":"SOL DIVIDE -SWORD OF DARKNESS- for Nintendo Switch"},{"id":"0x01005D700E742000","name":"DOOM 64"},{"id":"0x010060E009062000","name":"GUILT BATTLE ARENA"},{"id":"0x010062F011E7C000","name":"Memory Lane"},{"id":"0x010064200C324000","name":"Xenon Valkyrie+"},{"id":"0x0100652012F58000","name":"Drums"},{"id":"0x010065B00B0EC000","name":"Rise and Shine"},{"id":"0x010068B0094A0000","name":"Otto"},{"id":"0x01006D4003BCE000","name":"Guns, Gore and Cannoli 2"},{"id":"0x01006E200E322000","name":"Car Trader"},{"id":"0x01006EE00380C000","name":"Sausage Sports Club"},{"id":"0x010071800BA74000","name":"Aragami: Shadow Edition"},{"id":"0x010072600D8EC000","name":"DayD: Through Time"},{"id":"0x010073900A7A0000","name":"Awkward"},{"id":"0x010075900CD1C000","name":"Thea: The Awakening"},{"id":"0x0100161009A52000","name":"POOL"},{"id":"0x010018800D1FC000","name":"Truck Racing Championship"},{"id":"0x010018F010CD2000","name":"FRACTER"},{"id":"0x010019500E642000","name":"Animal Fight Club"},{"id":"0x01001950137D8000","name":"The Hong Kong Massacre"},{"id":"0x01001CF00AD06000","name":"Psyvariar Delta"},{"id":"0x01001F5006DF6000","name":"Jim is Moving Out!"},{"id":"0x010020500BD98000","name":"The King's Bird"},{"id":"0x010021100DF22000","name":"Telling Lies"},{"id":"0x010024C0067C4000","name":"2064: Read Only Memories INTEGRAL"},{"id":"0x01002500129F4000","name":"INSTANT Chef Party"},{"id":"0x01002800117EE000","name":"Mystery Mine"},{"id":"0x010028A0048A6000","name":"Peasant Knight"},{"id":"0x010029100B75C000","name":"Tarot Readings Premium"},{"id":"0x010029600D56A000","name":"Katana ZERO"},{"id":"0x01002AC0113DE000","name":"Fibbage XL"},{"id":"0x01002BA00D662000","name":"Pine"},{"id":"0x01002F0011DD4000","name":"HARDCORE MECHA"},{"id":"0x010030900D9A6000","name":"Super Crush KO"},{"id":"0x010032200BBC0000","name":"Ragtag Adventurers"},{"id":"0x01006A800FA22000","name":"Evolution Board Game"},{"id":"0x01006BA013990000","name":"Girabox"},{"id":"0x01006C40086EA000","name":"AeternoBlade"},{"id":"0x01006E1004404000","name":"Ben 10"},{"id":"0x01006EA00D892000","name":"Hyperforma"},{"id":"0x01006F900AB7E000","name":"Splash Blast Panic"},{"id":"0x010070A00A5F4000","name":"Armello"},{"id":"0x010072600D21C000","name":"Agony"},{"id":"0x0100730007A9C000","name":"Detention"},{"id":"0x01007430122D0000","name":"Shiren the Wanderer: The Tower of Fortune and the Dice of Fate"},{"id":"0x0100746010E4C000","name":"NinNinDays"},{"id":"0x010079700B4EA000","name":"Clouds & Sheep 2"},{"id":"0x01007A500B0B2000","name":"Pilot Sports"},{"id":"0x01007EF00CB88000","name":"Duke Nukem 3D: 20th Anniversary World Tour"},{"id":"0x010081900F9E2000","name":"Wizards of Brandel"},{"id":"0x010086300A558000","name":"INFERNO CLIMBER: REBORN"},{"id":"0x0100867011618000","name":"Home: Postmortem Edition"},{"id":"0x0100872012B34000","name":"My Little Dog Adventure"},{"id":"0x010087E006E6E000","name":"Tachyon Project"},{"id":"0x01008B20022AA000","name":"Shovel Knight: King of Cards"},{"id":"0x010072100E312000","name":"SEGA AGES Fantasy Zone"},{"id":"0x010072800CBE8000","name":"PC Building Simulator"},{"id":"0x0100737003190000","name":"IMPLOSION"},{"id":"0x010075400DDB8000","name":"Torchlight III"},{"id":"0x0100767008502000","name":"FANTASY HERO ~unsigned legacy~"},{"id":"0x0100768010970000","name":"They Came From the Sky"},{"id":"0x01007800122C8000","name":"Flipon"},{"id":"0x01007A1012852000","name":"Cecconoid"},{"id":"0x01007A400B3F8000","name":"Anima: Gate of Memories - The Nameless Chronicles"},{"id":"0x010080B0115BA000","name":"Ara Fell: Enhanced Edition"},{"id":"0x010082800AE4C000","name":"Heroes Trials"},{"id":"0x010083100B5CA000","name":"Sky Force Anniversary"},{"id":"0x0100838002AEA000","name":"LEGO® Worlds"},{"id":"0x010083A00BF6C000","name":"Dark Devotion"},{"id":"0x010084201056A000","name":"Clumsy Rush"},{"id":"0x010086500D3C8000","name":"VA-11 Hall-A: Cyberpunk Bartender Action"},{"id":"0x010086B00C784000","name":"My Lovely Daughter"},{"id":"0x010088100DD42000","name":"Roof Rage"},{"id":"0x0100921006A04000","name":"Night in the Woods"},{"id":"0x010092400A678000","name":"Zaccaria Pinball"},{"id":"0x010078500C21A000","name":"Football Manager 2019 Touch"},{"id":"0x010078700B2CC000","name":"Caveman Warriors Demo"},{"id":"0x01007A0011878000","name":"Prinny®: Can I Really Be the Hero?"},{"id":"0x01007C0003AEC000","name":"Use Your Words"},{"id":"0x01007C7006AEE000","name":"Tactics V: \"Obsidian Brigade\""},{"id":"0x01007E600EEE6000","name":"140"},{"id":"0x01007EB00D208000","name":"The Shrouded Isle"},{"id":"0x01007EF00399C000","name":"Conga Master Party!"},{"id":"0x0100804008794000","name":"ACA NEOGEO SAMURAI SHODOWN III"},{"id":"0x01008110036FE000","name":"Physical Contact: SPEED"},{"id":"0x0100830008426000","name":"Just Shapes & Beats"},{"id":"0x010084B012FF0000","name":"Birds and Blocks"},{"id":"0x01008A9001DC2000","name":"ACA NEOGEO SHOCK TROOPERS"},{"id":"0x01008B000E494000","name":"Crash'n the Boys Street Challenge"},{"id":"0x01008B20129F2000","name":"Dream"},{"id":"0x01008B8004E36000","name":"OXENFREE"},{"id":"0x01008E300E400000","name":"Wayout"},{"id":"0x010090C00F7BA000","name":"Just Ignore Them"},{"id":"0x0100917007888000","name":"Piczle Lines DX Demo"},{"id":"0x010091700F76E000","name":"〇× LOGIC PUZZLE 1000 !"},{"id":"0x010064600F1D6000","name":"Lost Wing"},{"id":"0x01006790101A2000","name":"Nine Witches: Family Disruption"},{"id":"0x010069200EB80000","name":"Ministry of Broadcast"},{"id":"0x01006AD00B82C000","name":"Paperbound Brawlers"},{"id":"0x01006BC00B188000","name":"The Journey Down: Chapter Three"},{"id":"0x01006CB00EEEA000","name":"Tennis Club Story"},{"id":"0x01006D000D2A0000","name":"Super Mutant Alien Assault"},{"id":"0x01006D100E1DE000","name":"Home Escape"},{"id":"0x01006E50042EA000","name":"EARTHLOCK"},{"id":"0x01006FC00E6C4000","name":"Smoots Summer Games"},{"id":"0x010070C00FB56000","name":"TERROR SQUID"},{"id":"0x010074E0099FA000","name":"Grave Danger"},{"id":"0x01007920038F6000","name":"ACA NEOGEO MAGICIAN LORD"},{"id":"0x01007BF012AD2000","name":"Hitori Logic"},{"id":"0x01007D7001D0E000","name":"Oceanhorn - Monster of Uncharted Seas"},{"id":"0x01007DB010D2C000","name":"TaniNani"},{"id":"0x010083600D930000","name":"Summer Sports Games"},{"id":"0x010083800E43E000","name":"Five Nights at Freddy's 4"},{"id":"0x010083E010AE8000","name":"Along the Edge"},{"id":"0x010084500EA2E000","name":"Spacejacked"},{"id":"0x010045500B212000","name":"Calculation Castle : Greco's Ghostly Challenge \"Division \""},{"id":"0x010046F00F5E4000","name":"WinKings"},{"id":"0x010048800D95C000","name":"Car Mechanic Manager"},{"id":"0x01004AD00E094000","name":"The House of Da Vinci"},{"id":"0x01004B100BDA2000","name":"KEMONO FRIENDS PICROSS"},{"id":"0x01004C200100E000","name":"New Frontier Days ~Founding Pioneers~"},{"id":"0x01004DB00935A000","name":"Alteric"},{"id":"0x01004E300899E000","name":"Wanderjahr TryAgainOrWalkAway Demo"},{"id":"0x01004F3011F92000","name":"Endless Fables: Dark Moor"},{"id":"0x010050E00EC8E000","name":"Gunpowder on The Teeth: Arcade"},{"id":"0x01005240121F2000","name":"Grood"},{"id":"0x01005270118D6000","name":"Iron Wings"},{"id":"0x0100535012974000","name":"Hades"},{"id":"0x0100557012752000","name":"Arcade Archives CIRCUS CHARLIE"},{"id":"0x010057D00CF10000","name":"Gelly Break Demo"},{"id":"0x010059C00E39C000","name":"Battlestar Galactica Deadlock"},{"id":"0x01005B3005D6E000","name":"League of Evil Demo"},{"id":"0x01005B9011830000","name":"Pen and Paper Games Bundle"},{"id":"0x01005BC01145A000","name":"Card Game Bundle Vol. 1"},{"id":"0x01005C1012C22000","name":"Jet Set Knights"},{"id":"0x010090100D3D6000","name":"Zeroptian Invasion"},{"id":"0x0100902001014000","name":"Othello"},{"id":"0x0100916011210000","name":"Cloudpunk"},{"id":"0x010095C00406C000","name":"Beach Buggy Racing"},{"id":"0x0100969005E98000","name":"60 Seconds!"},{"id":"0x010099B00A2DC000","name":"Dragon Blaze for Nintendo Switch"},{"id":"0x010099F00B374000","name":"Super Hydorah"},{"id":"0x01009EA00C792000","name":"Lightseekers"},{"id":"0x0100A0300D1A0000","name":"Hellmut: The Badass from Hell"},{"id":"0x0100A0300FC3E000","name":"Perseverance"},{"id":"0x0100A16011872000","name":"Gryphon Knight Epic: Definitive Edition"},{"id":"0x0100A2B00BD88000","name":"Demon's Crystals"},{"id":"0x0100A2D00EFBE000","name":"Guitar"},{"id":"0x0100A330022C2000","name":"Constructor Plus"},{"id":"0x0100A59012070000","name":"Valentina"},{"id":"0x0100A5D00C7C0000","name":"Double Pug Switch"},{"id":"0x0100AAE0100C4000","name":"The Dresden Files Cooperative Card Game"},{"id":"0x0100ABF008968000","name":"Pokémon™ Sword"},{"id":"0x0100AC3011C4C000","name":"Food Truck Tycoon - Asian Cuisine"},{"id":"0x0100AC40038F4000","name":"ACA NEOGEO AERO FIGHTERS 2"},{"id":"0x0100AC100DC48000","name":"Event Horizon"},{"id":"0x0100AD1010CCE000","name":"Bohemian Killing"},{"id":"0x0100AE600DBE4000","name":"From Orbit"},{"id":"0x0100AF100EE76000","name":"Quiplash 2 InterLASHional: The Say Anything Party Game!"},{"id":"0x0100B0E0086F6000","name":"The Trail: Frontier Challenge"},{"id":"0x0100B1300FF08000","name":"The Wonderful 101: Remastered"},{"id":"0x0100B1400D92A000","name":"Unit 4"},{"id":"0x0100B1E0100A4000","name":"Voxel Galaxy"},{"id":"0x0100B6801137E000","name":"Bravely Default™ II Demo"},{"id":"0x0100B6D00C2DE000","name":"Tied Together"},{"id":"0x0100B6E00A420000","name":"Dust: An Elysian Tail"},{"id":"0x0100B7000D89E000","name":"Knights and Bikes"},{"id":"0x0100B8700BD14000","name":"Energy Cycle Edge"},{"id":"0x0100BA3003B70000","name":"NAMCO MUSEUM (PAC-MAN VS. Free Multiplayer-only Ver.)"},{"id":"0x0100BA300C39A000","name":"Spencer"},{"id":"0x0100BC200B99E000","name":"Onigiri"},{"id":"0x0100BC50122B6000","name":"Farm Builder"},{"id":"0x0100BD2009A1C000","name":"Damsel"},{"id":"0x0100BDE00862A000","name":"Mario Tennis™ Aces"},{"id":"0x0100BE9007E7E000","name":"ICEY"},{"id":"0x010075E00D8C6000","name":"Lost Artifacts: Soulstone"},{"id":"0x010076000F6B8000","name":"Home Sheep Home: Farmageddon Party Edition"},{"id":"0x010076F0049A2000","name":"Bayonetta™"},{"id":"0x010077600BE3A000","name":"SolSeraph"},{"id":"0x010079100A2F4000","name":"Escape Game : Aloha"},{"id":"0x01007A200F2E2000","name":"Psikyo Shooting Stars Alpha"},{"id":"0x01007BB00E760000","name":"CROSSNIQ+"},{"id":"0x01007EF00011E000","name":"The Legend of Zelda™: Breath of the Wild"},{"id":"0x010080F00F490000","name":"Mirror"},{"id":"0x01008280119B2000","name":"Lair of the Clockwork God"},{"id":"0x010083E011BC8000","name":"Wordify"},{"id":"0x010085000BA5C000","name":"Knock 'Em Down! Bowling"},{"id":"0x010085900337E000","name":"Death Squared"},{"id":"0x010087800EE5A000","name":"Hopping girl KOHANE Jumping Kingdom: Princess of the Black Rabbit"},{"id":"0x010088E00EBB6000","name":"Soulslayer"},{"id":"0x010089200F0E4000","name":"Turmoil"},{"id":"0x010089A00C7B0000","name":"Warhammer Age of Sigmar: Champions"},{"id":"0x01008CD00901C000","name":"Discovery"},{"id":"0x01008EA00E816000","name":"OVERPASS™"},{"id":"0x01008FF00A4B6000","name":"Squids Odyssey"},{"id":"0x01005D00107E8000","name":"Dog Duty"},{"id":"0x01005D3012322000","name":"Roulette at Aces Casino"},{"id":"0x010061400A990000","name":"Shikhondo - Soul Eater"},{"id":"0x010061B010C40000","name":"Ittle Dew 2+"},{"id":"0x010061D00FD26000","name":"Biz Builder Delux"},{"id":"0x010062500EB84000","name":"Anime Studio Story"},{"id":"0x0100628004BCE000","name":"Nights of Azure 2: Bride of the New Moon"},{"id":"0x010062900E610000","name":"Towaga: Among Shadows"},{"id":"0x0100698009C6E000","name":"Blasphemous"},{"id":"0x01006CB010840000","name":"Oceanhorn 2: Knights of the Lost Realm"},{"id":"0x01006E8011C1E000","name":"Ailment"},{"id":"0x01006EE00AE38000","name":"Shining Resonance Refrain Demo"},{"id":"0x0100701001D92000","name":"Human Resource Machine"},{"id":"0x010072601233C000","name":"Adventures of Chris"},{"id":"0x010073A00C4B2000","name":"Tyd wag vir Niemand"},{"id":"0x010073E00DBDA000","name":"Siralim 3"},{"id":"0x0100742007266000","name":"Monster Energy Supercross - The Official Videogame"},{"id":"0x0100744012D3E000","name":"BIT.TRIP FATE"},{"id":"0x010077000F620000","name":"Arcade Spirits"},{"id":"0x010077C00F370000","name":"Robots under attack!"},{"id":"0x01009A4008A30000","name":"Arcade Archives HEROIC EPISODE"},{"id":"0x01009A700A538000","name":"Mark of the Ninja: Remastered"},{"id":"0x01009B7006C88000","name":"EARTH WARS"},{"id":"0x01009BB00F850000","name":"Circle of Sumo: Online Rumble!"},{"id":"0x01009E500D29C000","name":"Sentinels of Freedom"},{"id":"0x01009FB002B2E000","name":"Flipping Death"},{"id":"0x0100A0A00D1AA000","name":"SKYHILL"},{"id":"0x0100A0F00BC24000","name":"UNI"},{"id":"0x0100A1C00359C000","name":"TowerFall"},{"id":"0x0100A42004718000","name":"BRAWL"},{"id":"0x0100A7F01283C000","name":"Infection - Board Game"},{"id":"0x0100A9D00B31A000","name":"The Inner World - The Last Wind Monk"},{"id":"0x0100AAC00E692000","name":"Zenith"},{"id":"0x0100AB2010B4C000","name":"Unlock The King"},{"id":"0x0100AC10085CE000","name":"AQUA KITTY UDX"},{"id":"0x0100ACD00E27E000","name":"Star Sky"},{"id":"0x0100AE00096EA000","name":"Hyrule Warriors: Definitive Edition"},{"id":"0x0100AE500E76A000","name":"AeternoBlade II"},{"id":"0x0100B5B00EF38000","name":"Elden: Path of the Forgotten"},{"id":"0x0100B61009C60000","name":"STAY COOL, KOBAYASHI-SAN!: A RIVER CITY RANSOM STORY"},{"id":"0x01008DD006C52000","name":"A Magical High School Girl"},{"id":"0x010090F012916000","name":"Ghostrunner"},{"id":"0x010092601020A000","name":"while True: learn()"},{"id":"0x010093600D5E0000","name":"The Rainsdowne Players"},{"id":"0x010095B00AA38000","name":"Monopoly for Nintendo Switch - Demo"},{"id":"0x010096500EA94000","name":"2048 Battles"},{"id":"0x0100967012972000","name":"Super Dragonfly Chronicles"},{"id":"0x010098800A1E4000","name":"The First Tree"},{"id":"0x01009B700D0B8000","name":"Undead Horde"},{"id":"0x01009C400C88C000","name":"Almost There: The Platformer"},{"id":"0x01009D3008D20000","name":"Furi"},{"id":"0x01009EA00F180000","name":"Sorry, James"},{"id":"0x01009F401002E000","name":"Nurse Love Addiction"},{"id":"0x0100A1900B5B8000","name":"Animated Jigsaws: Beautiful Japanese Scenery Demo"},{"id":"0x0100A2500E232000","name":"Syder Reloaded"},{"id":"0x0100A260094EE000","name":"Fallen Legion: Rise to Glory"},{"id":"0x0100A2600FCA0000","name":"Island Saver"},{"id":"0x0100A4200A284000","name":"LUMINES REMASTERED"},{"id":"0x0100A4400BE74000","name":"The LEGO Movie 2 Videogame"},{"id":"0x01008C500E7D8000","name":"Mochi Mochi Boy"},{"id":"0x01008CD00C222000","name":"Streets of Rogue"},{"id":"0x01008F1012DF4000","name":"Jigsaw Fun: Piece It Together!"},{"id":"0x01008FD004DB6000","name":"ACA NEOGEO METAL SLUG X"},{"id":"0x010091B00B762000","name":"Raining Coins"},{"id":"0x010092D00CC12000","name":"Octahedron: Transfixed Edition Demo"},{"id":"0x010092D00FF66000","name":"Top Run"},{"id":"0x0100934003BCC000","name":"Guns, Gore and Cannoli"},{"id":"0x01009380114E0000","name":"Breakpoint"},{"id":"0x010093F00F894000","name":"Drink More Glurp"},{"id":"0x010094800D3DA000","name":"Reptilian Rebellion"},{"id":"0x010096300E48A000","name":"Super Dodge Ball"},{"id":"0x010097600C322000","name":"ANIMUS"},{"id":"0x01009C100CE6A000","name":"Pocket Academy"},{"id":"0x01009C300BB4C000","name":"Beat Cop"},{"id":"0x01009CE00AFAE000","name":"ACA NEOGEO METAL SLUG 4"},{"id":"0x0100A0A00E660000","name":"Blackmoor 2"},{"id":"0x0100A1200F20C000","name":"Midnight Evil"},{"id":"0x0100A2B008696000","name":"Toki Tori 2+: Nintendo Switch Edition"},{"id":"0x0100A3500B4EC000","name":"Polandball: Can Into Space"},{"id":"0x010075000EE32000","name":"Milkmaid of the Milky Way"},{"id":"0x010076001311E000","name":"TAURONOS"},{"id":"0x010079100EB48000","name":"XenoRaptor"},{"id":"0x01007BA00F0E6000","name":"Family Tree"},{"id":"0x010083B00B97A000","name":"World Soccer"},{"id":"0x010083E00F40E000","name":"Collar X Malice"},{"id":"0x010085A00821A000","name":"ClusterPuck 99"},{"id":"0x010087E00D5F2000","name":"Fledgling Heroes"},{"id":"0x010088700C5F8000","name":"Guns of Mercy - Rangers Edition"},{"id":"0x010088F00F66C000","name":"Twister Road"},{"id":"0x01008C600395A000","name":"My Little Riding Champion"},{"id":"0x01008E700CAAC000","name":"Istanbul: Digital Edition"},{"id":"0x01008EF00C900000","name":"The Journey Down Trilogy"},{"id":"0x01008F600F2D0000","name":"Remothered: Tormented Fathers"},{"id":"0x010091000CC0E000","name":"Hyperide"},{"id":"0x010093800A98C000","name":"Super Blackjack Battle 2 Turbo Edition - The Card Warriors"},{"id":"0x01009440095FE000","name":"Pode"},{"id":"0x010097800F1B4000","name":"Extreme Trucks Simulator"},{"id":"0x0100995013404000","name":"Fight"},{"id":"0x01009B500007C000","name":"ARMS™"},{"id":"0x01007E700DBF6000","name":"MY HERO ONE'S JUSTICE 2"},{"id":"0x01007FC00206E000","name":"LEGO® NINJAGO® Movie Video Game"},{"id":"0x01007FC00B674000","name":"Sigi - A Fart for Melusina"},{"id":"0x010080600B53E000","name":"Evil Defenders"},{"id":"0x010082400ED18000","name":"Shiny Ski Resort"},{"id":"0x010082900D6DC000","name":"Professional Farmer: American Dream"},{"id":"0x010085A00C5E8000","name":"The Lord of the Rings: Adventure Card Game - Definitive Edition"},{"id":"0x01008A100A028000","name":"FOX n FORESTS"},{"id":"0x01008B1008466000","name":"Junior League Sports"},{"id":"0x01008D4007A1E000","name":"Outlast: Bundle of Terror"},{"id":"0x0100928005094000","name":"Soulblight"},{"id":"0x010095F010568000","name":"The Wanderer: Frankenstein's Creature"},{"id":"0x010096400CBC6000","name":"TerraTech"},{"id":"0x010096500B018000","name":"Cubikolor"},{"id":"0x01009CC00BD6E000","name":"Tangrams Deluxe"},{"id":"0x01009D7011B02000","name":"GRISAIA PHANTOM TRIGGER 01&02"},{"id":"0x01009D901321A000","name":"Party Games: 15 in 1"},{"id":"0x01009DC001DB6000","name":"ACA NEOGEO THE KING OF FIGHTERS '95"},{"id":"0x0100A0401346A000","name":"Persian Nights 2: The Moonlight Veil"},{"id":"0x010041A00FEC6000","name":"Ember"},{"id":"0x010042800A516000","name":"Asdivine Hearts"},{"id":"0x010044A00CEB4000","name":"Tacticool Champs"},{"id":"0x010045300516E000","name":"Snow Moto Racing Freedom"},{"id":"0x0100453012FEA000","name":"Green Hell"},{"id":"0x01004550100CC000","name":"Space Crew"},{"id":"0x0100461007BB0000","name":"Black Hole"},{"id":"0x01004A200E722000","name":"Magazine Mogul"},{"id":"0x01004C500B698000","name":"Time Carnage"},{"id":"0x01004FD00382A000","name":"Moon Hunters"},{"id":"0x01005300128E2000","name":"Karma Knight"},{"id":"0x010056100E43C000","name":"Five Nights at Freddy's 3"},{"id":"0x01005670128FC000","name":"Great Conqueror: Rome"},{"id":"0x01005AC0068F6000","name":"Fear Effect Sedna"},{"id":"0x01005EA012430000","name":"TroubleDays"},{"id":"0x010060400BA9A000","name":"Johnny Turbo's Arcade: Heavy Burger"},{"id":"0x010064600F982000","name":"AVICII Invector"},{"id":"0x010066200E1E6000","name":"Coffee Talk"},{"id":"0x01006AB00BD82000","name":"OkunoKA"},{"id":"0x01006EC00F2CC000","name":"RUINER"},{"id":"0x0100858010DC4000","name":"the StoryTale"},{"id":"0x010086C00790C000","name":"Warlock's Tower"},{"id":"0x010086E01037C000","name":"BREAK DOT"},{"id":"0x010088B010DD2000","name":"Dongo Adventure"},{"id":"0x010089B00D09C000","name":"AI: THE SOMNIUM FILES"},{"id":"0x010089D00A3FA000","name":"American Ninja Warrior: Challenge"},{"id":"0x01008B200FC6C000","name":"The Wardrobe: Even Better Edition"},{"id":"0x010090600CB98000","name":"Ninja Village"},{"id":"0x010093700BCDC000","name":"Dungeon Village Demo"},{"id":"0x0100943010310000","name":"Little Busters! Converted Edition"},{"id":"0x010095200EA5E000","name":"Beats Runner"},{"id":"0x010099000BA48000","name":"Old School Racer 2"},{"id":"0x01009C0009842000","name":"Detective Gallo"},{"id":"0x01009C4012284000","name":"Evergate"},{"id":"0x01009C8009026000","name":"LIMBO"},{"id":"0x01009D5009234000","name":"RICO"},{"id":"0x01009EE0111CC000","name":"Ancestors Legacy"},{"id":"0x0100A16010966000","name":"Animal Up!"},{"id":"0x0100A2A00B08C000","name":"The Office Quest"},{"id":"0x0100A2F00EEFC000","name":"Disney Classic Games: Aladdin and The Lion King"},{"id":"0x01005ED010642000","name":"Lost Horizon 2"},{"id":"0x01005F000B784000","name":"Nelly Cootalot: The Fowl Fleet"},{"id":"0x01005F900902A000","name":"Crush Your Enemies!"},{"id":"0x010060D00AE36000","name":"Mighty Switch Force! Collection"},{"id":"0x010064B00B95C000","name":"The Liar Princess and the Blind Prince"},{"id":"0x010065900CB3A000","name":"Katamari Damacy REROLL Demo"},{"id":"0x0100662008632000","name":"Spy Chameleon"},{"id":"0x01006C300E9F0000","name":"DRAGON QUEST® XI S: Echoes of an Elusive Age – Definitive Edition"},{"id":"0x01006EE00E67C000","name":"BATTOJUTSU"},{"id":"0x0100700006EF6000","name":"Mushroom Wars 2"},{"id":"0x0100704000B3A000","name":"Snipperclips™ – Cut it out, together!"},{"id":"0x010070800EC56000","name":"Throne Quest Deluxe"},{"id":"0x010072B00BDDE000","name":"Narcos: Rise of the Cartels"},{"id":"0x010072E00B36A000","name":"Fairy Tale Puzzles~Magic Objects~"},{"id":"0x010074B00ED32000","name":"Polyroll"},{"id":"0x010075601150A000","name":"1993 Shenandoah"},{"id":"0x010076C00B8F0000","name":"Out There: Ω The Alliance"},{"id":"0x0100782005A44000","name":"Oh...Sir! The Insult Simulator"},{"id":"0x010078800825E000","name":"Wanderjahr TryAgainOrWalkAway"},{"id":"0x010052500D984000","name":"Rogue Bit"},{"id":"0x010053B0123DC000","name":"Alphaset by POWGI"},{"id":"0x010054500F564000","name":"Bookbound Brigade"},{"id":"0x010057F007AA2000","name":"Rally Racers"},{"id":"0x010058A00BF1C000","name":"The Raven Remastered"},{"id":"0x01005960123CE000","name":"Arcade Archives EARTH DEFENSE FORCE"},{"id":"0x01005C60086BE000","name":"Mega Man X Legacy Collection"},{"id":"0x01005D50107F2000","name":"Reed Remastered"},{"id":"0x01005E600AB64000","name":"Disease -Hidden Object-"},{"id":"0x01005EC0039E4000","name":"Poi: Explorer Edition"},{"id":"0x01005EE0036EC000","name":"Rocket League®"},{"id":"0x01006050114D4000","name":"The Experiment: Escape Room"},{"id":"0x010060A00B53C000","name":"Broforce"},{"id":"0x010064300CFD4000","name":"Forgotten Tales - Day of the Dead"},{"id":"0x010064F01354A000","name":"Banana Treasures Island"},{"id":"0x010065000D25C000","name":"Clan N"},{"id":"0x010065B009B3A000","name":"Animal Rivals: Nintendo Switch Edition"},{"id":"0x01006960121A8000","name":"Piczle Lines DX Bundle"},{"id":"0x01006A900EB1A000","name":"Forklift - The Simulation"},{"id":"0x01006AB00BEE4000","name":"SEGA AGES Lightening Force: Quest for the Darkstar"},{"id":"0x0100BF7006BCA000","name":"Crawl"},{"id":"0x0100C10012EFC000","name":"War Titans"},{"id":"0x0100C2400D68C000","name":"SeaBed"},{"id":"0x0100C9A00952A000","name":"Manticore - Galaxy on Fire"},{"id":"0x0100C9A00B60A000","name":"Mercury Race"},{"id":"0x0100CA100C0BA000","name":"Color Zen"},{"id":"0x0100CB2001DB8000","name":"ACA NEOGEO GAROU: MARK OF THE WOLVES"},{"id":"0x0100CEC00BF04000","name":"Valthirian Arc: Hero School Story Demo"},{"id":"0x0100D0B00FB74000","name":"XCOM® 2 Collection"},{"id":"0x0100D7000C2C6000","name":"Katamari Damacy REROLL"},{"id":"0x0100D9200D090000","name":"Trials Rising Open Beta"},{"id":"0x0100D9B0041CE000","name":"Spacecats with Lasers"},{"id":"0x0100DA500EFB0000","name":"Football Manager 2020 Touch"},{"id":"0x0100DBE013B78000","name":"Kingdom Tales"},{"id":"0x0100E0A0110F4000","name":"eCrossminton"},{"id":"0x0100E0C010AB8000","name":"Sky Jaguar 2"},{"id":"0x0100E2C00B414000","name":"RPG Maker MV"},{"id":"0x0100E400129EC000","name":"Commander Keen in Keen Dreams: Definitive Edition"},{"id":"0x0100E4300CB3E000","name":"Feather"},{"id":"0x0100E5600EE8E000","name":"Atelier Escha & Logy: Alchemists of the Dusk Sky DX"},{"id":"0x01008F1008DA6000","name":"Darkest Dungeon"},{"id":"0x01008FA012FC0000","name":"Crystal Ortha"},{"id":"0x0100929013172000","name":"Arcade Archives SUPER COBRA"},{"id":"0x010092E00E7F4000","name":"Deleveled"},{"id":"0x010096900A4D2000","name":"Clustertruck"},{"id":"0x010096F00E5B0000","name":"Phantom Doctrine"},{"id":"0x0100992010BF8000","name":"Ubongo"},{"id":"0x01009C000E442000","name":"Freddy Fazbear's Pizzeria Simulator"},{"id":"0x01009C100390E000","name":"League of Evil"},{"id":"0x0100A130109B2000","name":"Summer in Mara"},{"id":"0x0100A1F012948000","name":"Bomber Fox"},{"id":"0x0100A250097F0000","name":"DRAGON BALL FIGHTERZ"},{"id":"0x0100A7700B46C000","name":"Legendary Fishing"},{"id":"0x0100AAE00CAB4000","name":"Puyo Puyo Champions"},{"id":"0x0100AC30133EC000","name":"PICROSS S5"},{"id":"0x0100AC501122A000","name":"Alluris"},{"id":"0x0100ADA00BE3C000","name":"INSTANT TENNIS DEMO"},{"id":"0x0100B0800DBAC000","name":"Human Rocket Person"},{"id":"0x0100B1300871A000","name":"ACA NEOGEO KING OF THE MONSTERS"},{"id":"0x0100B1500E9F2000","name":"Double Dragon & Kunio-kun: Retro Brawler Bundle"},{"id":"0x01009F3011004000","name":"No Straight Roads"},{"id":"0x0100A06011A48000","name":"UNREAL LIFE"},{"id":"0x0100A2100BFCE000","name":"Hell Warders"},{"id":"0x0100A4900B2DE000","name":"Jewel Fever 2"},{"id":"0x0100A4A00B2E8000","name":"Toby: The Secret Mine"},{"id":"0x0100A4D00A308000","name":"ACA NEOGEO SUPER SIDEKICKS 3 : THE NEXT GLORY"},{"id":"0x0100A9B009678000","name":"EAT BEAT DEADSPIKE-san"},{"id":"0x0100AB600ACB4000","name":"Demetrios - The BIG Cynical Adventure"},{"id":"0x0100ABB00E352000","name":"Arcade Archives Wiz"},{"id":"0x0100AC300919A000","name":"Firewatch"},{"id":"0x0100ADF00700E000","name":"Runbow"},{"id":"0x0100AE0012190000","name":"Retro Classix 4in1 Pack: Sly Spy, Shootout, Wizard Fire & Super Real Darwin"},{"id":"0x0100AF000B4AE000","name":"Stunt Kite Party"},{"id":"0x0100B1A00D8CE000","name":"DOOM® Eternal"},{"id":"0x0100B2100767C000","name":"River City Melee Mach!!"},{"id":"0x0100B2C00682E000","name":"99Vidas - Definitive Edition"},{"id":"0x0100B4900E008000","name":"Shalnor Legends: Sacred Lands"},{"id":"0x0100B61010272000","name":"Kemono Heroes"},{"id":"0x0100B6F01227C000","name":"Glitch's Trip"},{"id":"0x010094300C888000","name":"Leopoldo Manquiseil"},{"id":"0x0100944003820000","name":"Fantasy Strike"},{"id":"0x010097D00402C000","name":"Dusty Raging Fist"},{"id":"0x01009840046BC000","name":"Semispheres"},{"id":"0x01009B7010B42000","name":"Explosive Jake"},{"id":"0x01009C301061A000","name":"One Dog Story"},{"id":"0x01009E600D78C000","name":"Anode"},{"id":"0x01009E700F726000","name":"Edgar - Bokbok in Boulzac"},{"id":"0x0100A070105A6000","name":"Arcade Archives GRADIUS"},{"id":"0x0100A32010618000","name":"Silent World"},{"id":"0x0100A51013550000","name":"Death Tales"},{"id":"0x0100A5A00B2AA000","name":"The Bluecoats North & South"},{"id":"0x0100A5A00DBB0000","name":"Dig Dog"},{"id":"0x0100A7500DF64000","name":"Battle Princess Madelyn Royal Edition"},{"id":"0x0100A7D010524000","name":"Sheep Patrol"},{"id":"0x0100A7F00C5FE000","name":"Daggerhood"},{"id":"0x0100ADF00C630000","name":"Royal Adviser"},{"id":"0x0100B1C00949A000","name":"AeternoBlade Demo"},{"id":"0x0100B58007D40000","name":"Unholy Heights"},{"id":"0x0100B70003836000","name":"Johnny Turbo's Arcade: Sly Spy"},{"id":"0x010072A00B632000","name":"Super Club Tennis"},{"id":"0x01007430037F6000","name":"MONOPOLY® for Nintendo Switch™"},{"id":"0x010075E0047F8000","name":"Neon Chrome"},{"id":"0x0100776003F0C000","name":"Morphite"},{"id":"0x010079200D330000","name":"PICROSS S3"},{"id":"0x010079400BEE0000","name":"The Room"},{"id":"0x010079A0112BE000","name":"The Almost Gone"},{"id":"0x01007A800D520000","name":"Refunct"},{"id":"0x01007BD00AE70000","name":"Car Quest"},{"id":"0x01007DD011608000","name":"Slot"},{"id":"0x01007E2011CE4000","name":"Arcade Archives SUPER PUNCH-OUT!!"},{"id":"0x010082E00F1CE000","name":"Cubers: Arena"},{"id":"0x010083A00DEC8000","name":"Dragon Snakes"},{"id":"0x010087D008D64000","name":"BINGO for Nintendo Switch"},{"id":"0x01008BD00F072000","name":"Invasion of Alien X - Earth in Crisis"},{"id":"0x01008E500BF62000","name":"MagiCat"},{"id":"0x01008E500EDE0000","name":"8-Bit Farm"},{"id":"0x01008EB012608000","name":"My Diggy Dog 2"},{"id":"0x010091400B596000","name":"Gaokao.Love.100Days"},{"id":"0x010095600AA36000","name":"Fill-a-Pix: Phil's Epic Adventure"},{"id":"0x010042300C4F6000","name":"Nightshade/百花百狼"},{"id":"0x0100429006A06000","name":"I, Zombie"},{"id":"0x010044900CCCC000","name":"Miner Warfare"},{"id":"0x0100451012918000","name":"The Coma: Recut"},{"id":"0x010045D009EFC000","name":"Apocryph: an old-school shooter"},{"id":"0x010046B00DE62000","name":"Skullgirls 2nd Encore"},{"id":"0x010048300D5C2000","name":"BATTLLOON"},{"id":"0x010049D010A42000","name":"Dungeon Shooting"},{"id":"0x010051C003A08000","name":"Aperion Cyberstorm"},{"id":"0x010055B009820000","name":"Arcade Archives EXERION"},{"id":"0x01005790110F0000","name":"Cobra Kai: The Karate Kid Saga Continues"},{"id":"0x010058100C80A000","name":"WAKU WAKU SWEETS"},{"id":"0x01005880063AA000","name":"Violett"},{"id":"0x01005A700A166000","name":"OUT OF THE BOX"},{"id":"0x01005B600E396000","name":"Lost Artifacts: Golden Island"},{"id":"0x01005CB009E20000","name":"Glaive: Brick Breaker"},{"id":"0x01005D400E5C8000","name":"#RaceDieRun"},{"id":"0x01005ED0107F4000","name":"Clash Force"},{"id":"0x0100616009082000","name":"STAY"},{"id":"0x0100618004096000","name":"Robonauts"},{"id":"0x010091400D238000","name":"Bloodroots"},{"id":"0x010094100A55A000","name":"Petal Crash"},{"id":"0x010096D00E310000","name":"SEGA AGES G-LOC AIR BATTLE"},{"id":"0x0100972008234000","name":"Crystal Crisis"},{"id":"0x0100973002D6A000","name":"Inside My Radio"},{"id":"0x010098E010FDA000","name":"Starlit Adventures Golden Stars"},{"id":"0x0100990011866000","name":"Aokana - Four Rhythms Across the Blue"},{"id":"0x01009BB00AD62000","name":"Screencheat: Unplugged"},{"id":"0x01009DE00B5CC000","name":"Varion"},{"id":"0x01009E2003FE2000","name":"Vaccine"},{"id":"0x01009EA00A320000","name":"Devious Dungeon"},{"id":"0x01009EB00DC76000","name":"Gun Gun Pixies"},{"id":"0x0100A0C00E0DE000","name":"Lonely Mountains: Downhill"},{"id":"0x0100A0E00B7A4000","name":"Werewolf Pinball"},{"id":"0x0100A2700A86E000","name":"Bouncy Bob"},{"id":"0x0100A6700AF10000","name":"Element"},{"id":"0x0100A6D009840000","name":"The Wardrobe"},{"id":"0x0100A6F00C34E000","name":"The Aquatic Adventure of the Last Human"},{"id":"0x0100A6F00F364000","name":"Marblelous Animals"},{"id":"0x0100A7900E79C000","name":"Volta-X"},{"id":"0x01009170129FA000","name":"One Line Coloring"},{"id":"0x0100928005BD2000","name":"Xenoraid"},{"id":"0x010092A0102AE000","name":"Spider Solitaire"},{"id":"0x01009320084A4000","name":"SteamWorld Dig"},{"id":"0x0100938012A2E000","name":"Arcade Archives Gemini Wing"},{"id":"0x010094F00E0EE000","name":"Forest Home"},{"id":"0x010095900B436000","name":"RemiLore"},{"id":"0x010095C00F9DE000","name":"Soccer, Tactics & Glory"},{"id":"0x0100993012968000","name":"Orangeblood"},{"id":"0x01009A500D4A8000","name":"METAGAL"},{"id":"0x01009B300872A000","name":"ACA NEOGEO SENGOKU 2"},{"id":"0x01009BF0072D4000","name":"Captain Toad™: Treasure Tracker"},{"id":"0x01009C400E93E000","name":"Titans Pinball"},{"id":"0x0100A0500348A000","name":"Just Dance® 2018"},{"id":"0x0100A2E00BB0C000","name":"EarthNight"},{"id":"0x0100A35011406000","name":"NecroWorm"},{"id":"0x0100A3A00CC7E000","name":"CLANNAD"},{"id":"0x0100A73006E74000","name":"Legendary Eleven"},{"id":"0x0100A9800A1B6000","name":"Professional Construction – The Simulation"},{"id":"0x0100AA600C8D6000","name":"Arcade Archives SASUKE VS COMMANDER"},{"id":"0x01005F300C1A8000","name":"Revertia"},{"id":"0x0100630010252000","name":"SuperEpic: The Entertainment War"},{"id":"0x010063901024A000","name":"Projection: First Light"},{"id":"0x010064A00BE0E000","name":"Arcade Archives TECMO BOWL"},{"id":"0x010065D0103D6000","name":"Dual Brain Vol.2: Reflex"},{"id":"0x010067C00A776000","name":"Cosmic Star Heroine"},{"id":"0x010069B00D9FE000","name":"WONDER BOY RETURNS REMIX"},{"id":"0x010069C0123D8000","name":"Zoids Wild Blast Unleashed"},{"id":"0x01006B800DE26000","name":"Crimzon Clover - World EXplosion"},{"id":"0x01006BA00E652000","name":"Rise: Race The Future"},{"id":"0x0100706013240000","name":"Lord of the Click"},{"id":"0x010071B009FB6000","name":"Mordheim: Warband Skirmish"},{"id":"0x0100721013510000","name":"Body of Evidence"},{"id":"0x010072400E04A000","name":"Pokémon Café Mix"},{"id":"0x010074500BBC4000","name":"Bendy and the Ink Machine™"},{"id":"0x0100760002048000","name":"NBA 2K18"},{"id":"0x0100771011472000","name":"Repressed"},{"id":"0x010079F00671C000","name":"Sparkle 2 EVO"},{"id":"0x01007FA00DA22000","name":"The Story Goes On"},{"id":"0x010081A00EE62000","name":"Boomerang Fu"},{"id":"0x0100BB200E9BA000","name":"Scrap"},{"id":"0x0100BCD00C86A000","name":"My Jurassic Farm 2018"},{"id":"0x0100BEA00E63A000","name":"Hero Express"},{"id":"0x0100C2400AFCC000","name":"ACA NEOGEO PLEASURE GOAL: 5 ON 5 MINI SOCCER"},{"id":"0x0100C9100B06A000","name":"SmileBASIC 4"},{"id":"0x0100C990102A0000","name":"Adventure Pinball Bundle"},{"id":"0x0100C9A00D124000","name":"Super Phantom Cat: Remake"},{"id":"0x0100D140112BC000","name":"Ghost of a Tale"},{"id":"0x0100D2600736A000","name":"Fe"},{"id":"0x0100D30010C42000","name":"Monster Truck Championship"},{"id":"0x0100D61012270000","name":"Super Soccer Blast"},{"id":"0x0100D6B00CD88000","name":"YUMENIKKI -DREAM DIARY-"},{"id":"0x0100D9000A930000","name":"Trine Enchanted Edition"},{"id":"0x0100D9B00B666000","name":"Football Heroes Turbo"},{"id":"0x0100DD900E498000","name":"DOUBLE DRAGON Ⅱ: The Revenge"},{"id":"0x0100DE500CAA2000","name":"Prime World: Defenders"},{"id":"0x0100DF900EA8E000","name":"Burger Chef Tycoon"},{"id":"0x0100E24011D1E000","name":"NBA 2K21"},{"id":"0x0100E5400BE64000","name":"R-Type Dimensions EX"},{"id":"0x0100E5700CD56000","name":"Irony Curtain: From Matryoshka with Love"},{"id":"0x0100AD3012234000","name":"Solitaire TriPeaks Flowers"},{"id":"0x0100AFC00A680000","name":"Pitfall Planet"},{"id":"0x0100B1600DB3A000","name":"TINY METAL: FULL METAL RUMBLE"},{"id":"0x0100BB1001DD6000","name":"Arcade Archives CRAZY CLIMBER"},{"id":"0x0100BC60099FE000","name":"Iconoclasts"},{"id":"0x0100BC800EDA2000","name":"STELLATUM"},{"id":"0x0100BCB00AE98000","name":"GUNBIRD2 for Nintendo Switch"},{"id":"0x0100BD3006A02000","name":"One More Dungeon"},{"id":"0x0100BE80097FA000","name":"Arcade Archives 10-Yard Fight"},{"id":"0x0100BF5006A7C000","name":"Layers of Fear: Legacy"},{"id":"0x0100C1000706C000","name":"Blossom Tales: The Sleeping King"},{"id":"0x0100C20013196000","name":"OctaFight"},{"id":"0x0100C47012D86000","name":"Panda Jump"},{"id":"0x0100C5100DB04000","name":"Cardpocalypse"},{"id":"0x0100C5E00E4E0000","name":"Delta Squad"},{"id":"0x0100C6800D9D0000","name":"The Red Lantern"},{"id":"0x0100C8E00F50A000","name":"Asdivine Kamura"},{"id":"0x0100CB400E9BC000","name":"STEINS;GATE: My Darling's Embrace"},{"id":"0x0100CD5011A02000","name":"My Universe - PET CLINIC CATS & DOGS"},{"id":"0x0100CDE00C87C000","name":"Ethan: Meteor Hunter"},{"id":"0x01008CA00D71C000","name":"Aperion Cyberstorm [DEMO]"},{"id":"0x01008E10130F8000","name":"Funimation"},{"id":"0x01008E300C88A000","name":"Mad Age & This Guy"},{"id":"0x01009040091E0000","name":"Wolfenstein II®: The New Colossus™"},{"id":"0x010096100E230000","name":"Corridor Z"},{"id":"0x010098500D532000","name":"Pillar"},{"id":"0x010098800C4B0000","name":"'n Verlore Verstand"},{"id":"0x01009A200BE42000","name":"Levelhead"},{"id":"0x01009B0012888000","name":"Birthday of Midnight"},{"id":"0x01009BC00C0A0000","name":"Combat Core (Demo)"},{"id":"0x01009BD003B36000","name":"Thimbleweed Park"},{"id":"0x01009CD003A0A000","name":"Vegas Party"},{"id":"0x01009D4001DC4000","name":"ACA NEOGEO WORLD HEROES PERFECT"},{"id":"0x01009DE010948000","name":"Cosmonauta"},{"id":"0x01009EA00B714000","name":"Horizon Chase Turbo"},{"id":"0x01009FB00EE4A000","name":"Happy Animals Bowling"},{"id":"0x0100A0400DDE0000","name":"AER Memories of Old"},{"id":"0x0100A3500E2D8000","name":"The Manga Works"},{"id":"0x0100A5000F7AA000","name":"DEAD OR SCHOOL"},{"id":"0x0100A5700AF32000","name":"Arcade Archives ARGUS"},{"id":"0x0100A5601375C000","name":"Nordlicht"},{"id":"0x0100A6300150C000","name":"Wonder Boy: The Dragon's Trap"},{"id":"0x0100A6C011B10000","name":"Bridge Strike"},{"id":"0x0100A9400C9C2000","name":"Tokyo Mirage Sessions™ #FE Encore"},{"id":"0x0100AD300B786000","name":"Iris School of Wizardry -Vinculum Hearts-"},{"id":"0x0100AFC00B120000","name":"FLIP OVER FROG"},{"id":"0x0100AFC00E06A000","name":"Dezatopia"},{"id":"0x0100B0101265C000","name":"The Otterman Empire"},{"id":"0x0100B0C0086B0000","name":"Mega Man 11"},{"id":"0x0100B2A00E1E0000","name":"Super Monkey Ball: Banana Blitz HD"},{"id":"0x0100B5B00693E000","name":"Marble It Up!"},{"id":"0x0100B6400CA56000","name":"DAEMON X MACHINA™"},{"id":"0x0100B8000B190000","name":"Goosebumps The Game"},{"id":"0x0100B8300AFD8000","name":"ACA NEOGEO TWINKLE STAR SPRITES"},{"id":"0x0100BA0004F38000","name":"NeuroVoider"},{"id":"0x0100BC400FB64000","name":"Balthazar's Dream"},{"id":"0x0100BD6010638000","name":"Factotum 90"},{"id":"0x0100BD800986E000","name":"Gems of War"},{"id":"0x0100BEB010F2A000","name":"Torn Tales: Rebound Edition"},{"id":"0x0100C2000E08C000","name":"Enchanted in the Moonlight - Miyabi, Kyoga & Samon -"},{"id":"0x010089600E66A000","name":"The Big Journey"},{"id":"0x01008D800A162000","name":"Dead Fun Pack: Penguins and Aliens Strike Again"},{"id":"0x01008FC00C5BC000","name":"Apocalipsis Wormwood Edition"},{"id":"0x010090F013A32000","name":"Dark Grim Mariupolis"},{"id":"0x010092B0091D0000","name":"Team Sonic Racing"},{"id":"0x0100945012168000","name":"Iris.Fall"},{"id":"0x010095300F778000","name":"SAMURAI SHODOWN!2"},{"id":"0x0100959010466000","name":"Hypnospace Outlaw"},{"id":"0x010096F00FF22000","name":"Borderlands: The Handsome Collection"},{"id":"0x0100973011358000","name":"Hang The Kings"},{"id":"0x01009A400C868000","name":"My Arctic Farm 2018"},{"id":"0x01009CF00A9C4000","name":"Word Search by POWGI Demo"},{"id":"0x01009D20136CC000","name":"Super Punch"},{"id":"0x0100A5A00B34E000","name":"Luke & Rebecca"},{"id":"0x0100A8D003BAE000","name":"Qbics Paint"},{"id":"0x0100A9900CB5C000","name":"Access Denied"},{"id":"0x0100AAA00ACBE000","name":"Risk of Rain"},{"id":"0x0100B110113FA000","name":"Swapperoo"},{"id":"0x0100B1900F0B6000","name":"The Legend of Dark Witch"},{"id":"0x0100BD700F5F0000","name":"Tactical Mind 2"},{"id":"0x01006D900EE58000","name":"Our Flick Erasers"},{"id":"0x01007020044F0000","name":"SUPERBEAT: XONiC"},{"id":"0x010070D009FEC000","name":"LEGO® DC Super-Villains"},{"id":"0x010071B00C904000","name":"HoPiKo"},{"id":"0x010072500D52E000","name":"Strike Suit Zero: Director's Cut"},{"id":"0x010074600CC7A000","name":"OBAKEIDORO!"},{"id":"0x010076800E30E000","name":"SEGA AGES Shinobi"},{"id":"0x010078C00DB40000","name":"Buried Stars"},{"id":"0x010079200E85C000","name":"Omega Labyrinth Life"},{"id":"0x01007CE00C960000","name":"Job the Leprechaun"},{"id":"0x01007D9007792000","name":"Shadow Bug"},{"id":"0x01007E700D17E000","name":"Blood Waves"},{"id":"0x01007EC010B48000","name":"Rainswept"},{"id":"0x01007ED00C032000","name":"Sparklite"},{"id":"0x01007F4004FA4000","name":"ACA NEOGEO MUTATION NATION"},{"id":"0x010080B00D8D4000","name":"Quadle"},{"id":"0x010081100FE08000","name":"Bouncy Bob 2"},{"id":"0x010085300314E000","name":"KAMIKO"},{"id":"0x010088500878C000","name":"ACA NEOGEO REAL BOUT FATAL FURY SPECIAL"},{"id":"0x01008C300B624000","name":"Mahjong Solitaire Refresh"},{"id":"0x0100A7000BD28000","name":"Coloring Book"},{"id":"0x0100A8200B15C000","name":"Kentucky Robo Chicken"},{"id":"0x0100A8200C372000","name":"Headsnatchers"},{"id":"0x0100A8700B30E000","name":"Unicornicopia"},{"id":"0x0100A8F00B3D0000","name":"FunBox Party"},{"id":"0x0100AD9010596000","name":"Project Starship"},{"id":"0x0100B0B011748000","name":"Make War"},{"id":"0x0100B2D00C63A000","name":"Super Crate Box"},{"id":"0x0100B4700BDBA000","name":"SOLITAIRE BATTLE ROYAL"},{"id":"0x0100B56011B90000","name":"Regina & Mac"},{"id":"0x0100B7400A304000","name":"ACA NEOGEO TOP PLAYER’S GOLF"},{"id":"0x0100B8701266A000","name":"Micetopia"},{"id":"0x0100B950129DC000","name":"LUNA The Shadow Dust"},{"id":"0x0100B9C012B66000","name":"Helheim Hassle"},{"id":"0x0100BB000A3AA000","name":"Sniper Elite V2 Remastered"},{"id":"0x0100BBC00CB9A000","name":"Mega Mall Story"},{"id":"0x0100BE400BEC8000","name":"Revenant Dogma"},{"id":"0x0100BEE011402000","name":"Pack Master"},{"id":"0x0100BF000CB3C000","name":"Captain StarONE"},{"id":"0x0100C1F0051B6000","name":"Donkey Kong Country™: Tropical Freeze"},{"id":"0x0100EA501033C000","name":"Funny Bunny Adventures"},{"id":"0x0100EA600B85E000","name":"CHRONO CLASH: Fantasy Tactics"},{"id":"0x0100EB70128E8000","name":"Caveman Tales"},{"id":"0x0100EBE00FDC0000","name":"Jump Gunners"},{"id":"0x0100ED2010292000","name":"Gleamlight"},{"id":"0x0100EE5013198000","name":"Nullum"},{"id":"0x0100EFC010398000","name":"Aborigenus"},{"id":"0x0100F38011CFE000","name":"Animal Crossing: New Horizons Island Transfer Tool"},{"id":"0x0100F7C010AF6000","name":"Tin & Kuna"},{"id":"0x0100FF500E668000","name":"STANDBY"},{"id":"0x0100FF8005EB2000","name":"Plague Road"},{"id":"0x0100720008ED2000","name":"STRIKERS1945 Ⅱ for Nintendo Switch"},{"id":"0x010074E00C872000","name":"SoccerDie: Cosmic Cup"},{"id":"0x010074F00DE4A000","name":"Run the Fan"},{"id":"0x0100751007ADA000","name":"Don't Starve: Nintendo Switch Edition"},{"id":"0x010076D00E4BA000","name":"Risk of Rain 2"},{"id":"0x010078D000F88000","name":"DRAGON BALL Xenoverse 2 for Nintendo Switch"},{"id":"0x01007D1004DBA000","name":"ACA NEOGEO SPIN MASTER"},{"id":"0x010080D002CC6000","name":"Johnny Turbo's Arcade: Two Crude Dudes"},{"id":"0x010082600F1AC000","name":"Top Speed: Drag & Fast Racing"},{"id":"0x0100844004CB6000","name":"State of Mind"},{"id":"0x010085500F6B6000","name":"HAUNTED: Halloween '86"},{"id":"0x010087300B730000","name":"Pang Adventures"},{"id":"0x010088900E330000","name":"Vitamin Connection"},{"id":"0x01008B000A5AE000","name":"Spectrum"},{"id":"0x01008C300648E000","name":"Letter Quest Remastered"},{"id":"0x01008D000877C000","name":"ACA NEOGEO SENGOKU 3"},{"id":"0x01008D400E1BA000","name":"Pocket Stables"},{"id":"0x01008DF01290C000","name":"Secrets of Me"},{"id":"0x0100945011246000","name":"Ski Sniper"},{"id":"0x0100A52010192000","name":"Arcade Archives SAINT DRAGON"},{"id":"0x0100A5B010A66000","name":"Absolute Drift"},{"id":"0x0100A5D012DAC000","name":"SENTRY"},{"id":"0x0100A9300A4AE000","name":"Super Sportmatchen"},{"id":"0x0100A9600EDF8000","name":"Neverlast"},{"id":"0x0100AA400A238000","name":"The Stretchers™"},{"id":"0x0100AC600D898000","name":"Rift Keeper"},{"id":"0x0100ADA00AD2E000","name":"Pandemic"},{"id":"0x0100B28003440000","name":"Aces of the Luftwaffe - Squadron"},{"id":"0x0100B3201140C000","name":"Pixel Art Bundle Vol. 1"},{"id":"0x0100B3500DFB8000","name":"Archlion Saga"},{"id":"0x0100B69012EC6000","name":"Nexoria: Dungeon Rogue Heroes"},{"id":"0x0100B6E01056E000","name":"In Other Waters"},{"id":"0x0100B7200DAC6000","name":"Close to the Sun"},{"id":"0x0100B7B009532000","name":"Super Chariot Demo"},{"id":"0x0100BC300CB48000","name":"FINAL FANTASY X/X-2 HD Remaster"},{"id":"0x0100BCE010E1A000","name":"NAMCO MUSEUM® ARCHIVES Vol 2"},{"id":"0x0100C1400BD6A000","name":"Monica e a Guarda dos Coelhos"},{"id":"0x0100C1700CD94000","name":"Zumba® Burn It Up!"},{"id":"0x0100C2500CAB6000","name":"Ary and the Secret of Seasons"},{"id":"0x010078D00E8F4000","name":"Stranded Sails - Explorers of the Cursed Islands"},{"id":"0x01007A2011284000","name":"Hamster Bob"},{"id":"0x010080B00AF0E000","name":"Mentori Puzzle"},{"id":"0x0100839010DD6000","name":"Sniper"},{"id":"0x010083D00D170000","name":"Venture Towns Demo"},{"id":"0x010088400366E000","name":"Monster Jam Crush It!"},{"id":"0x0100896011282000","name":"OMG Police - Car Chase TV Simulator"},{"id":"0x010089900C9FA000","name":"Guess the Character"},{"id":"0x01008AF00A532000","name":"Bomb Chicken"},{"id":"0x01008B0010160000","name":"Nerved"},{"id":"0x01008B200D748000","name":"Tardy"},{"id":"0x010090B005150000","name":"Oceanhorn - Monster of Uncharted Seas Demo"},{"id":"0x010091000F72C000","name":"Save Your Nuts"},{"id":"0x010093D00AC38000","name":"Sky Gamblers: Storm Raiders"},{"id":"0x010095300212A000","name":"Resident Evil Revelations 2"},{"id":"0x0100974004924000","name":"RAYMAN® LEGENDS: DEFINITIVE EDITION DEMO"},{"id":"0x010098600CF06000","name":"Animated Jigsaws Collection"},{"id":"0x010099F00EF3E000","name":"-KLAUS-"},{"id":"0x01009A800F0C8000","name":"Akash: Path of the Five"},{"id":"0x0100A250093DE000","name":"Typoman"},{"id":"0x0100A5800F6AC000","name":"Broken Lines"},{"id":"0x0100A5A004FB2000","name":"ACA NEOGEO THE LAST BLADE"},{"id":"0x0100A5A01119A000","name":"MADORIS R"},{"id":"0x0100A6A00894C000","name":"ZERO GUNNER 2- for Nintendo Switch"},{"id":"0x0100ABD012EF8000","name":"Digerati Presents: Make It Quick Bundle Vol. 1"},{"id":"0x0100AE0003424000","name":"Shantae: Half-Genie Hero"},{"id":"0x0100AE300CB00000","name":"Duke of Defense"},{"id":"0x0100B1A010014000","name":"12 Labours of Hercules II: The Cretan Bull"},{"id":"0x0100B60010432000","name":"Push the Crate 2"},{"id":"0x0100B7200FC96000","name":"Roll'd"},{"id":"0x0100B770104D6000","name":"Milo's Quest"},{"id":"0x0100B7E01234E000","name":"Hotel Sowls"},{"id":"0x0100B91008780000","name":"ACA NEOGEO AERO FIGHTERS 3"},{"id":"0x0100BAA00AE16000","name":"GODS Remastered"},{"id":"0x0100BB500EE3C000","name":"Oddworld: Munch's Oddysee"},{"id":"0x0100BD100C752000","name":"planetarian"},{"id":"0x0100BFF00D5AE000","name":"Dark Quest 2"},{"id":"0x0100C0D012188000","name":"Retro Classix 2-in-1 Pack: Express Raider & Shootout"},{"id":"0x0100C0F01078E000","name":"Dual Brain Vol.3: Shapes"},{"id":"0x0100B90008E1E000","name":"Packet Queen #"},{"id":"0x0100B9500E886000","name":"Newt One"},{"id":"0x0100BA9012B36000","name":"Firework"},{"id":"0x0100BAB011DEC000","name":"Roulette"},{"id":"0x0100BF00112C0000","name":"Catherine: Full Body"},{"id":"0x0100C13012F8E000","name":"The Legend Of The Blue Warrior"},{"id":"0x0100C1500DBDE000","name":"Alien Escape"},{"id":"0x0100C20012A54000","name":"Nevaeh"},{"id":"0x0100C7300C0EC000","name":"RogueCube"},{"id":"0x0100C9600A88E000","name":"PICROSS S2"},{"id":"0x0100CAB00B4E4000","name":"Pub Encounter"},{"id":"0x0100CD500DDAE000","name":"The Bard's Tale ARPG: Remastered and Resnarkled"},{"id":"0x0100CE100A826000","name":"Jurassic Pinball"},{"id":"0x0100CE300E48C000","name":"River City Ransom"},{"id":"0x0100D010113A8000","name":"Void Bastards"},{"id":"0x0100D0E00E51E000","name":"Hotline Miami Collection"},{"id":"0x0100D1700C732000","name":"Monster Slayers"},{"id":"0x0100D1A00C330000","name":"The Mahjong Huntress"},{"id":"0x0100D1D00ACB8000","name":"Three Fourths Home: Extended Edition"},{"id":"0x0100D37011F42000","name":"My Forged Wedding"},{"id":"0x010079000B56C000","name":"UglyDolls: An Imperfect Adventure"},{"id":"0x0100795011D68000","name":"Space Robinson"},{"id":"0x01007AD00013E000","name":"Super Bomberman R"},{"id":"0x01007CB0128B2000","name":"Detective Driver: Miami Files"},{"id":"0x01007E800AFB6000","name":"ACA NEOGEO NINJA COMMANDO"},{"id":"0x010084300C816000","name":"Odallus: The Dark Call"},{"id":"0x0100849000BDA000","name":"I Am Setsuna"},{"id":"0x0100861012474000","name":"Frontline Zed"},{"id":"0x0100874012158000","name":"Infini"},{"id":"0x010088C0092FE000","name":"Carnival Games®"},{"id":"0x010089600FB72000","name":"Trover Saves The Universe"},{"id":"0x01008BE00E968000","name":"Cat Quest II"},{"id":"0x01008C901266E000","name":"ADVERSE"},{"id":"0x01008C9012F4A000","name":"When the Past was Around"},{"id":"0x010096000B3EA000","name":"Octopath Traveler™ - Prologue Demo Version"},{"id":"0x010097500FBFA000","name":"Firefighters - Airport Heroes"},{"id":"0x01009BC00C6F6000","name":"Atelier Totori ~The Adventurer of Arland~ DX"},{"id":"0x01009D000AF3A000","name":"Gelly Break"},{"id":"0x01009D100F112000","name":"Car Mechanic Simulator Pocket Edition"},{"id":"0x0100B7D0022EE000","name":"Cave Story+"},{"id":"0x0100B8F00DACA000","name":"Beyond Enemy Lines: Essentials"},{"id":"0x0100B9000F2D8000","name":"Flight Sim 2019"},{"id":"0x0100B9500D1B0000","name":"Dauntless"},{"id":"0x0100BB9009FC8000","name":"Farm Expert 2018 for Nintendo Switch"},{"id":"0x0100C00005E38000","name":"Dustoff Heli Rescue 2"},{"id":"0x0100C2E0129A6000","name":"The Executioner"},{"id":"0x0100C4C0132F8000","name":"CASE 2: Animatronics Survival"},{"id":"0x0100C5A01327E000","name":"The Legend of Ninja"},{"id":"0x0100C850130FE000","name":"Outbreak: Epidemic"},{"id":"0x0100CAB006F54000","name":"Octodad: Dadliest Catch"},{"id":"0x0100CBE004E6C000","name":"Syberia 3"},{"id":"0x0100CD6004130000","name":"SubaraCity"},{"id":"0x0100CDB00BC94000","name":"A Case of Distrust"},{"id":"0x0100CDC00C40A000","name":"Omensight: Definitive Edition"},{"id":"0x0100D0D00516A000","name":"Aqua Moto Racing Utopia"},{"id":"0x0100D250083B4000","name":"Salt and Sanctuary"},{"id":"0x0100D2501001A000","name":"FoxyLand"},{"id":"0x0100D7A005DFC000","name":"Tennis"},{"id":"0x0100D7E011272000","name":"Carnage: Battle Arena"},{"id":"0x0100AB700AF14000","name":"Detective Case and Clown Bot in: Murder in The Hotel Lisbon"},{"id":"0x0100AE100DAFA000","name":"Steam Tactics"},{"id":"0x0100AEC012DEE000","name":"Pure Pool"},{"id":"0x0100AF400C4CE000","name":"39 Days to Mars"},{"id":"0x0100B1E00D234000","name":"History 2048"},{"id":"0x0100B3501283E000","name":"Deuces Wild - Video Poker"},{"id":"0x0100B3F00B9F2000","name":"Johnny Turbo's Arcade: Fighter's History"},{"id":"0x0100B61008208000","name":"BLAZBLUE CROSS TAG BATTLE"},{"id":"0x0100BBB00F6B2000","name":"Creepy Brawlers"},{"id":"0x0100BD100FFBE000","name":"STAR WARS™ Episode I Racer"},{"id":"0x0100BFE00865E000","name":"Energy Cycle"},{"id":"0x0100C3300C3F2000","name":"Spell Casting: Purrfectly Portable Edition"},{"id":"0x0100C67011B14000","name":"Out of Space: Couch Edition"},{"id":"0x0100CA9002322000","name":"SteamWorld Dig 2"},{"id":"0x0100CAB00FDC4000","name":"Lots of Slots"},{"id":"0x0100CB00125B6000","name":"Table Tennis"},{"id":"0x0100CB50107BA000","name":"Truck Driver"},{"id":"0x0100D12008EE4000","name":"Heart&Slash"},{"id":"0x0100D1300C1EA000","name":"Beholder: Complete Edition"},{"id":"0x0100A0D004FB0000","name":"ACA NEOGEO TOP HUNTER RODDY & CATHY"},{"id":"0x0100A290131BA000","name":"Oniria Crimes"},{"id":"0x0100A2E00B8EC000","name":"Solitaire"},{"id":"0x0100A5000D590000","name":"The Little Acre"},{"id":"0x0100A6C00CF70000","name":"Grab Lab"},{"id":"0x0100A76002B46000","name":"ACA NEOGEO ALPHA MISSION II"},{"id":"0x0100A7800AFAA000","name":"ACA NEOGEO PREHISTORIC ISLE 2"},{"id":"0x0100A7D00C694000","name":"Dreamwalker"},{"id":"0x0100A840047C2000","name":"12 orbits"},{"id":"0x0100A9000F17E000","name":"Lines Infinite"},{"id":"0x0100AA2006510000","name":"Revenant Saga"},{"id":"0x0100AAA00D404000","name":"Magic Scroll Tactics"},{"id":"0x0100AB700FE02000","name":"Profane"},{"id":"0x0100AF300D2E8000","name":"Arcade Archives TIME PILOT"},{"id":"0x0100B040128E6000","name":"Candy Raid: The Factory"},{"id":"0x0100B1600E9AE000","name":"CARRION"},{"id":"0x0100B9C012706000","name":"Jump Rope Challenge"},{"id":"0x0100BDE008218000","name":"Hotshot Racing"},{"id":"0x0100C0F00CA9C000","name":"IHUGU"},{"id":"0x0100C1300DE74000","name":"Cyber Protocol"},{"id":"0x0100D61010526000","name":"Pulstario"},{"id":"0x0100DBA0109C2000","name":"UBERMOSH:OMEGA"},{"id":"0x0100DE70085E8000","name":"Outlast 2"},{"id":"0x0100DED012642000","name":"Switchy Road DeluX"},{"id":"0x0100E24004510000","name":"Cabela's: The Hunt - Championship Edition"},{"id":"0x0100E5501206E000","name":"Unlock The King 3"},{"id":"0x0100E5A00DF60000","name":"Let's Sing Country"},{"id":"0x0100E6900F2A8000","name":"Dual Brain Vol.1: Calculation"},{"id":"0x0100E9000C42C000","name":"Tick Tock: A Tale for Two"},{"id":"0x0100EAE00BE4A000","name":"Kitty Love -Way to look for love-"},{"id":"0x0100ED600A87A000","name":"Minit"},{"id":"0x0100F0000869C000","name":"Saturday Morning RPG"},{"id":"0x0100F1100E606000","name":"Q-YO Blaster"},{"id":"0x0100F3000EBA8000","name":"Seeders Puzzle Reboot"},{"id":"0x0100F4F006EB0000","name":"Heroes of the Monkey Tavern Demo"},{"id":"0x0100F6000EAA8000","name":"Must Dash Amigos"},{"id":"0x0100F9400982A000","name":"Arcade Archives MAGMAX"},{"id":"0x0100F9A008AD6000","name":"Word Search by POWGI"},{"id":"0x0100FE000EC24000","name":"Asdivine Menace"},{"id":"0x0100B2400C67E000","name":"Mars: Chaos Menace"},{"id":"0x0100B2B00C7D4000","name":"Air Conflicts: Secret Wars"},{"id":"0x0100B5B0113CE000","name":"Troubleshooter"},{"id":"0x0100B7C01169C000","name":"The Coma 2: Vicious Sisters"},{"id":"0x0100B8C01252A000","name":"Roommates"},{"id":"0x0100B9801210A000","name":"Colt Canyon"},{"id":"0x0100BAA00D60A000","name":"Rolling Sky"},{"id":"0x0100BF1003B9A000","name":"Physical Contact: 2048"},{"id":"0x0100C1700A9F0000","name":"Streets of Red - Devil's Dare Deluxe"},{"id":"0x0100C2C00D74E000","name":"West of Dead"},{"id":"0x0100C320083BE000","name":"Splitter Critters"},{"id":"0x0100C460040EA000","name":"Hunting Simulator"},{"id":"0x0100C4D0093EA000","name":"Battle Princess Madelyn"},{"id":"0x0100C8E0083C4000","name":"Japanese Mah-jongg"},{"id":"0x0100D1B006744000","name":"Crash Bandicoot™ N. Sane Trilogy"},{"id":"0x0100D4600E9B2000","name":"Hyperdrive Massacre"},{"id":"0x0100D47012330000","name":"KING OF FIGHTERS R-2"},{"id":"0x0100D480111C6000","name":"Crypto by POWGI"},{"id":"0x0100D55011D60000","name":"Hardcore Maze Cube"},{"id":"0x0100D7800C4DC000","name":"Discmaster"},{"id":"0x010085500B29A000","name":"Yet Another Zombie Defense HD"},{"id":"0x010085E00C886000","name":"The Original Mobile Games"},{"id":"0x010086500AC4A000","name":"Lode Runner Legacy Demo Version"},{"id":"0x010087300445A000","name":"Bombslinger"},{"id":"0x01008940086E0000","name":"The Infectious Madness of Doctor Dekker"},{"id":"0x01008AF0080B8000","name":"Embers of Mirrim Demo"},{"id":"0x01008BB0113D6000","name":"Destrobots"},{"id":"0x01008ED008776000","name":"ACA NEOGEO MAGICAL DROP III"},{"id":"0x010092B010448000","name":"Piffle: A Cat Puzzle Adventure"},{"id":"0x010093600A60C000","name":"Agatha Knife"},{"id":"0x010093E00ACB0000","name":"Kid Tripp Demo"},{"id":"0x010095300B6A4000","name":"South Park™: The Stick of Truth™"},{"id":"0x01009580113A4000","name":"Satazius NEXT"},{"id":"0x010096D010BFE000","name":"Travel Mosaics 4: Adventures In Rio"},{"id":"0x010097800EA20000","name":"Monster Energy Supercross - The Official Videogame 3"},{"id":"0x010098400E39E000","name":"Vektor Wars"},{"id":"0x01009C300DBAE000","name":"Minefield"},{"id":"0x01009DB00D6E0000","name":"Mountain Rescue Simulator"},{"id":"0x0100A5600FAC0000","name":"Construction Simulator 3 - Console Edition"},{"id":"0x0100A8E0090B0000","name":"Energy Invasion"},{"id":"0x0100A8E00DB92000","name":"Gyro Boss DX"},{"id":"0x0100B2C00E4DA000","name":"Served!"},{"id":"0x0100B3A0137EA000","name":"Life of Fly"},{"id":"0x0100B410040F2000","name":"Dead Synchronicity: Tomorrow Comes Today"},{"id":"0x0100B4D00C76E000","name":"JUMANJI: The Video Game"},{"id":"0x0100B59011A1C000","name":"Drag Sim 2020"},{"id":"0x0100B7500F756000","name":"Minefield"},{"id":"0x0100B77012266000","name":"COLLECTION of SaGa FINAL FANTASY LEGEND"},{"id":"0x0100B8B012ECA000","name":"S.N.I.P.E.R. - Hunter Scope"},{"id":"0x0100BA0003EEA000","name":"PICROSS S"},{"id":"0x0100BA200C378000","name":"Way of the Passive Fist"},{"id":"0x0100BD700EBC0000","name":"The Drama Queen Murder"},{"id":"0x0100C11010298000","name":"Georifters"},{"id":"0x0100C69010522000","name":"Guard Duty"},{"id":"0x0100CCF00F5BC000","name":"Outpost Delta"},{"id":"0x0100CD500E706000","name":"Ziggurat"},{"id":"0x0100D1E00E972000","name":"Warface"},{"id":"0x0100D2C013288000","name":"Lofi Ping Pong"},{"id":"0x0100D6D00EC2C000","name":"Sweet Witches"},{"id":"0x0100BE300F6AA000","name":"Talisman: Digital Edition"},{"id":"0x0100BEA0096CE000","name":"EAT BEAT DEADSPIKE-san Demo"},{"id":"0x0100BF600D83A000","name":"DAEMON X MACHINA™: Prototype Missions"},{"id":"0x0100C8000F146000","name":"Liberated"},{"id":"0x0100CB900B498000","name":"Eternum Ex"},{"id":"0x0100CC1010464000","name":"Nowhere Prophet"},{"id":"0x0100CC8011000000","name":"Uncharted Tides: Port Royal"},{"id":"0x0100CF600F366000","name":"Lethis - Path of Progress"},{"id":"0x0100CFA00CC74000","name":"Blades of Time"},{"id":"0x0100D07002CD6000","name":"Johnny Turbo's Arcade: Nitro Ball"},{"id":"0x0100D1100D1A8000","name":"Block-a-Pix Deluxe"},{"id":"0x0100D1900EC80000","name":"Atelier Ryza: Ever Darkness & the Secret Hideout"},{"id":"0x0100D2400AFB0000","name":"ACA NEOGEO CROSSED SWORDS"},{"id":"0x0100D24012A04000","name":"Time Tenshi"},{"id":"0x0100D4900E82C000","name":"Metro 2033 Redux"},{"id":"0x0100D4D00AC62000","name":"SEGA AGES Out Run"},{"id":"0x0100DDC00C7A6000","name":"Arcade Archives DONKEY KONG JR."},{"id":"0x0100DE900CB84000","name":"99Moves"},{"id":"0x0100E4200D84E000","name":"Citizens of Space"},{"id":"0x01006EE013100000","name":"Outbreak The Nightmare Chronicles"},{"id":"0x0100708012ECC000","name":"Salad Bar Tycoon"},{"id":"0x010079B00B3F4000","name":"Achtung! Cthulhu Tactics"},{"id":"0x01007AC00E012000","name":"HexaGravity"},{"id":"0x01007CD00BCE2000","name":"Forever Forest"},{"id":"0x01007CF00D5BA000","name":"Devil May Cry 2"},{"id":"0x01007DD011C4A000","name":"A Summer with the Shiba Inu"},{"id":"0x01007E100456C000","name":"Guacamelee! 2"},{"id":"0x010086700EF16000","name":"ZikSquare"},{"id":"0x010088600C66E000","name":"Atelier Rorona ~The Alchemist of Arland~ DX"},{"id":"0x0100894011F62000","name":"Kwaidan ~Azuma manor story~"},{"id":"0x01008A500ED8E000","name":"Wordsweeper by POWGI"},{"id":"0x01008CD00C5FC000","name":"She and the Light Bearer"},{"id":"0x01008DD013200000","name":"Ori and the Will of the Wisps"},{"id":"0x01008ED00B916000","name":"Aqua TV"},{"id":"0x010091700D826000","name":"Raiders of the North Sea"},{"id":"0x010091E01330C000","name":"Heroes of Loot"},{"id":"0x010092A00D43C000","name":"The Talos Principle: Deluxe Edition"},{"id":"0x010094500C216000","name":"Mercenaries Wings: The False Phoenix"},{"id":"0x010095A004040000","name":"Flip Wars"},{"id":"0x01009630106A6000","name":"Gun Crazy"},{"id":"0x010097100EDD6000","name":"Little Nightmares II"},{"id":"0x010098000D646000","name":"Goonya Fighter"},{"id":"0x010099900CAB2000","name":"TT Isle of Man"},{"id":"0x01009A500D8CC000","name":"Croc's World Run Demo"},{"id":"0x01009E1011EC4000","name":"A HERO AND A GARDEN"},{"id":"0x01009F20086A0000","name":"Ikaruga"},{"id":"0x0100A0600C610000","name":"SEGA AGES Columns II: A Voyage Through Time"},{"id":"0x0100A2F006FBE000","name":"Cat Quest"},{"id":"0x0100A5D01174C000","name":"/Connection Haunted "},{"id":"0x0100A6E01201C000","name":"Supraland"},{"id":"0x0100AD600C5EA000","name":"Munchkin: Quacked Quest"},{"id":"0x0100B1400E8FE000","name":"Sakuna: Of Rice and Ruin"},{"id":"0x0100B490113C8000","name":"Arcade Archives VS. WRECKING CREW"},{"id":"0x0100B55012216000","name":"Toolboy"},{"id":"0x0100B97002B44000","name":"ACA NEOGEO THE KING OF FIGHTERS 2000"},{"id":"0x0100BD400DC52000","name":"Spiritfarer"},{"id":"0x0100C0F0020E8000","name":"Snake Pass"},{"id":"0x0100C66007E96000","name":"Crayola Scoot"},{"id":"0x010099B00E898000","name":"Battle Supremacy - Evolution"},{"id":"0x01009B300D76A000","name":"The Tiny Bang Story"},{"id":"0x01009B900401E000","name":"Overcooked Special Edition"},{"id":"0x01009BD00E33E000","name":"DOBUTSU SHOGI WORLD"},{"id":"0x01009D4011BFC000","name":"Many Faces"},{"id":"0x01009FF00A160000","name":"Toy Stunt Bike: Tiptop's Trials"},{"id":"0x0100A040069DE000","name":"Combat Core"},{"id":"0x0100A0501185A000","name":"WildTrax Racing"},{"id":"0x0100A1A00C5D8000","name":"Picture Painting Puzzle 1000!"},{"id":"0x0100A1A011944000","name":"Smoots World Cup Tennis"},{"id":"0x0100A3B011EDE000","name":"Battle Hunters"},{"id":"0x0100A6800DE70000","name":"Knight Squad"},{"id":"0x0100A95012668000","name":"Nicole"},{"id":"0x0100A9800E9B4000","name":"Disgaea 4 Complete+"},{"id":"0x0100B05012FB2000","name":"MindSeize"},{"id":"0x0100B2300B932000","name":"Storm In A Teacup"},{"id":"0x0100B2900DF20000","name":"Puzzle Quest: The Legend Returns"},{"id":"0x0100B2B00E7AA000","name":"Dusk Diver"},{"id":"0x0100B5000E05C000","name":"Soccer Pinball"},{"id":"0x0100B8800F858000","name":"Sinless"},{"id":"0x010084000FA78000","name":"Smash Rush"},{"id":"0x010087000428E000","name":"Plantera Deluxe"},{"id":"0x01008AB00FBA6000","name":"The Casebook of Arkady Smith"},{"id":"0x01008CA00CF34000","name":"Skellboy"},{"id":"0x01008E500AFF6000","name":"Boreal Blade"},{"id":"0x01008F3010752000","name":"Arcade Archives XX MISSION"},{"id":"0x0100971012B4E000","name":"The Secret Order: Return to the Buried Kingdom"},{"id":"0x0100976008FBE000","name":"Millie"},{"id":"0x010097F0099B4000","name":"Football Manager Touch 2018"},{"id":"0x010097F010FE6000","name":"Our Two Bedroom Story"},{"id":"0x01009CD00C786000","name":"X-Morph: Defense Demo"},{"id":"0x01009DB00DE12000","name":"Croc's World 2"},{"id":"0x01009E100BDD6000","name":"LASTFIGHT"},{"id":"0x0100A2101107C000","name":"Indie Puzzle Bundle Vol 1"},{"id":"0x0100A42011B28000","name":"Big Dipper"},{"id":"0x0100A48008AE8000","name":"Bleed 2"},{"id":"0x0100A6500B176000","name":"Calculation Castle : Greco's Ghostly Challenge \"Subtraction \""},{"id":"0x0100A6B00D4EC000","name":"Furwind"},{"id":"0x0100A6F00A0FE000","name":"THE Number Puzzle"},{"id":"0x0100A8700BC2A000","name":"This War of Mine: Complete Edition"},{"id":"0x0100D5B00D6DA000","name":"Type:Rider"},{"id":"0x0100D7E011C64000","name":"Strawberry Vinegar"},{"id":"0x0100D84011926000","name":"Knight Swap 2"},{"id":"0x0100DDE00E81A000","name":"Deadlings"},{"id":"0x0100E1500B5EE000","name":"Morphite Demo"},{"id":"0x0100E5600D7B2000","name":"WARHAMMER 40,000: SPACE WOLF"},{"id":"0x0100E67008D84000","name":"Ultra Space Battle Brawl"},{"id":"0x0100E8200DAF4000","name":"Vigor"},{"id":"0x0100E9D00D268000","name":"Verlet Swing"},{"id":"0x0100EB2001DCC000","name":"ACA NEOGEO THE KING OF FIGHTERS '94"},{"id":"0x0100EB901040A000","name":"Shantae and the Seven Sirens"},{"id":"0x0100EBE00F22E000","name":"Deadly Premonition Origins"},{"id":"0x0100EC20101E4000","name":"Gunma's Ambition -You and me are Gunma-"},{"id":"0x0100ED100BA3A000","name":"Mario Kart Live: Home Circuit™"},{"id":"0x0100ED500E858000","name":"Swaps and Traps"},{"id":"0x0100EFD00A4FA000","name":"Shantae and the Pirate's Curse"},{"id":"0x0100F10012002000","name":"Singled Out"},{"id":"0x0100F1800DD4E000","name":"Devious Dungeon 2"},{"id":"0x0100F38011FBC000","name":"Working Zombies"},{"id":"0x0100F55004AB8000","name":"Uurnog Uurnlimited"},{"id":"0x010061D00DB74000","name":"Ori and the Blind Forest: Definitive Edition"},{"id":"0x010061E00E05E000","name":"Ciel Fledge: A Daughter Raising Simulator"},{"id":"0x010063200C588000","name":"Ghost Blade HD"},{"id":"0x010066900BDE6000","name":"Hexa Maze"},{"id":"0x010069300C90A000","name":"Peace, Death! Complete Edition"},{"id":"0x01006B1011B9E000","name":"80's OVERDRIVE"},{"id":"0x01006CC01182C000","name":"Blair Witch"},{"id":"0x01006D300AA58000","name":"I Hate Running Backwards"},{"id":"0x01006DC010326000","name":"BRAVELY DEFAULT™ II"},{"id":"0x01006F0004FB4000","name":"ACA NEOGEO THE KING OF FIGHTERS '96"},{"id":"0x0100702005E18000","name":"Mom Hid My Game!"},{"id":"0x010071400F204000","name":"No More Heroes 2: Desperate Struggle"},{"id":"0x010074800741A000","name":"TINY METAL"},{"id":"0x0100763010D5A000","name":"Rigid Force Redux"},{"id":"0x010079600BF22000","name":"KUUKIYOMI: Consider It!"},{"id":"0x01007AB012102000","name":"Arrog"},{"id":"0x01007DD00ABB4000","name":"Anodyne"},{"id":"0x01007FB00FC5E000","name":"Dark Veer"},{"id":"0x010080701194E000","name":"Flying Soldiers"},{"id":"0x010088801230E000","name":"They Breathe"},{"id":"0x0100C250115DC000","name":"PICROSS S4"},{"id":"0x0100C2E00B494000","name":"Moonfall Ultimate"},{"id":"0x0100C31011C24000","name":"Postal REDUX"},{"id":"0x0100C3501094E000","name":"Demon's Rise - War for the Deep"},{"id":"0x0100C510049E0000","name":"Penny-Punching Princess"},{"id":"0x0100C5B00FADE000","name":"Invisible Fist"},{"id":"0x0100C6800D770000","name":"Super Toy Cars 2"},{"id":"0x0100CAF001DBE000","name":"ACA NEOGEO FATAL FURY 2"},{"id":"0x0100D0200E97A000","name":"Rogue Company"},{"id":"0x0100D5900B4CA000","name":"Boot Hill Bounties"},{"id":"0x0100D6D00A490000","name":"Pool Panic"},{"id":"0x0100D800040AC000","name":"Rocket Fist"},{"id":"0x0100D8700B712000","name":"Modern Combat Blackout"},{"id":"0x0100D98005E8C000","name":"Die for Valhalla!"},{"id":"0x0100DBB010EB8000","name":"Otherworldly"},{"id":"0x0100DC300AC78000","name":"The Messenger"},{"id":"0x0100DD6012644000","name":"Taiko no Tatsujin: Rhythmic Adventure Pack"},{"id":"0x0100DD700F1F6000","name":"Amazing Brick Breaker"},{"id":"0x0100E21012232000","name":"Crowdy Farm Puzzle"},{"id":"0x0100E3400F242000","name":"Lost Ember"},{"id":"0x0100A2500EB92000","name":"Urban Trial Tricky"},{"id":"0x0100A7701298C000","name":"Explosive Dinosaurs"},{"id":"0x0100ABE0121F8000","name":"Kingdom Rush Origins"},{"id":"0x0100AC800D022000","name":"THE LAST REMNANT Remastered"},{"id":"0x0100AE300F5B4000","name":"Scheming Through The Zombie Apocalypse: The Beginning"},{"id":"0x0100AFA011068000","name":"Voxel Pirates"},{"id":"0x0100B0C00EBB2000","name":"Sea King Hunter"},{"id":"0x0100B1300783E000","name":"King Oddball"},{"id":"0x0100B2F008BD8000","name":"Skee-Ball"},{"id":"0x0100B3900F02A000","name":"Sisters Royale: Five Sisters Under Fire"},{"id":"0x0100B4800AFBA000","name":"ACA NEOGEO AGGRESSORS OF DARK KOMBAT"},{"id":"0x0100B6C00AF6E000","name":"Lost in Harmony"},{"id":"0x0100B7F00B4E6000","name":"Destiny's Princess: A War Story, A Love Story"},{"id":"0x0100B9400FA38000","name":"ATOM RPG"},{"id":"0x0100BAB00A116000","name":"The Low Road"},{"id":"0x0100BC700C7AE000","name":"ACA NEOGEO PUZZLE BOBBLE 2"},{"id":"0x0100BD800DFA6000","name":"Greedroid"},{"id":"0x0100BDB01150E000","name":"Project Warlock"},{"id":"0x0100BE600D07A000","name":"Grand Prix Story"},{"id":"0x0100B6800B5C8000","name":"Graveyard Keeper"},{"id":"0x0100B8E00359E000","name":"Party Golf"},{"id":"0x0100BD300F0EC000","name":"Ritual: Sorcerer Angel"},{"id":"0x0100BD500BA94000","name":"Sphinx and the Cursed Mummy"},{"id":"0x0100C01012654000","name":"Supermarket Shriek"},{"id":"0x0100C0C00DD0E000","name":"Frane: Dragons' Odyssey"},{"id":"0x0100C1500B82E000","name":"The World Ends with You®: Final Remix"},{"id":"0x0100C360070F6000","name":"Dragon Quest Builders™ Demo"},{"id":"0x0100C3E00D68E000","name":"Deep Sky Derelicts: Definitive Edition"},{"id":"0x0100C4801223C000","name":"Ultra Foodmess"},{"id":"0x0100C50007070000","name":"Ginger: Beyond the Crystal"},{"id":"0x0100C5B0113A0000","name":"Armed 7 DX"},{"id":"0x0100C73013506000","name":"Cape's escape game"},{"id":"0x0100C7800CA06000","name":"Widget Satchel"},{"id":"0x0100CDD013178000","name":"Arcade Archives ARABIAN"},{"id":"0x0100CDE0136E6000","name":"Defentron"},{"id":"0x0100CF3008798000","name":"ACA NEOGEO REAL BOUT FATAL FURY 2"},{"id":"0x0100D0400D27A000","name":"Romancing SaGa 3"},{"id":"0x0100D06003056000","name":"Piczle Lines DX"},{"id":"0x0100D8800B87C000","name":"Cities: Skylines - Nintendo Switch™ Edition"},{"id":"0x0100C1800D7AE000","name":"Pokémon: Let’s Go, Pikachu! and Pokémon: Let’s Go, Eevee! Demo Version"},{"id":"0x0100C2700C252000","name":"Blazing Chrome"},{"id":"0x0100C7600F654000","name":"Juicy Realm"},{"id":"0x0100CB500CE76000","name":"Fishing: Barents Sea Complete Edition"},{"id":"0x0100D2700DE7C000","name":"Rivals of Aether"},{"id":"0x0100D36011AD4000","name":"Love Letter from Thief X"},{"id":"0x0100D74010F44000","name":"WordHerd"},{"id":"0x0100D940022F6000","name":"Tiny Barbarian DX"},{"id":"0x0100DA9013AB4000","name":"Smart Moves"},{"id":"0x0100DC500B4B0000","name":"Beat Rush"},{"id":"0x0100DEC00F7EC000","name":"Pizza Bar Tycoon"},{"id":"0x0100DF200B24C000","name":"Assault Android Cactus+"},{"id":"0x0100E29010A4A000","name":"Wanba Warriors"},{"id":"0x0100E4C00DE30000","name":"Ash of Gods: Redemption"},{"id":"0x0100E5E010EA6000","name":"Car Trader Simulator"},{"id":"0x0100E95006B30000","name":"The Men of Yoshiwara: Kikuya"},{"id":"0x0100E98006F22000","name":"Bad North"},{"id":"0x0100EE200B764000","name":"Zeus Quests Remastered"},{"id":"0x0100EE80098E6000","name":"Toki Tori"},{"id":"0x0100F200049C8000","name":"InnerSpace"},{"id":"0x0100C4300EEEE000","name":"Freecell Solitaire Deluxe"},{"id":"0x0100C9301248E000","name":"Balloon Pop for Toddlers & Kids - Learn Numbers, Letters, Colors & Animals"},{"id":"0x0100CA000C682000","name":"Shift Quantum Demo"},{"id":"0x0100CCB00CBA8000","name":"Gabbuchi"},{"id":"0x0100CE600B7B4000","name":"Passpartout: The Starving Artist"},{"id":"0x0100CFE003A64000","name":"ZOMBIE GOLD RUSH"},{"id":"0x0100D1800D902000","name":"SENRAN KAGURA Peach Ball"},{"id":"0x0100D1B00B6FA000","name":"Spirit Hunter: Death Mark"},{"id":"0x0100D4300A4CA000","name":"Infernium"},{"id":"0x0100D4400D994000","name":"Queen's Quest 3: The End of Dawn"},{"id":"0x0100D51006AAC000","name":"Knight Terrors"},{"id":"0x0100D67006F14000","name":"Skies of Fury DX"},{"id":"0x0100D8500A692000","name":"Night Trap - 25th Anniversary Edition"},{"id":"0x0100DCE00B756000","name":"Earthworms"},{"id":"0x0100DF300DE6A000","name":"Selma and the Wisp"},{"id":"0x0100DFC003398000","name":"ACA NEOGEO BLAZING STAR"},{"id":"0x0100E1800EFCE000","name":"moon"},{"id":"0x0100E1B00A46C000","name":"Rage in Peace"},{"id":"0x0100E6300AA3A000","name":"Batman: The Enemy Within"},{"id":"0x0100E9E00DBF4000","name":"GENSOU Skydrift"},{"id":"0x0100C2000F468000","name":"Wintermoor Tactics Club"},{"id":"0x0100C5F00F446000","name":"Kawaii Deathu Desu"},{"id":"0x0100C8300FA30000","name":"Kitty Maestro"},{"id":"0x0100C850134A0000","name":"Vera Blanc: Full Moon"},{"id":"0x0100C9200A9C2000","name":"Carcassonne"},{"id":"0x0100CAB012FCC000","name":"Dungeon Limbus"},{"id":"0x0100CDC00D8D6000","name":"Turok 2: Seeds of Evil"},{"id":"0x0100D0500AD30000","name":"Harvest Life"},{"id":"0x0100D1B00A5A2000","name":"Iro Hero"},{"id":"0x0100D2800EB40000","name":"Battle Planet - Judgement Day"},{"id":"0x0100D4D00F8F2000","name":"Half Past Fate"},{"id":"0x0100D7B011654000","name":"Skully"},{"id":"0x0100D9F013102000","name":"Outbreak Lost Hope"},{"id":"0x0100DBE00C76C000","name":"The Last Door - Complete Edition"},{"id":"0x0100DFF00C5E6000","name":"Noir Chronicles: City of Crime"},{"id":"0x0100E0C011D52000","name":"Lunch A Palooza"},{"id":"0x0100E5B011F48000","name":"PLOID SAGA"},{"id":"0x0100E7E00C4CA000","name":"Bombing Busters"},{"id":"0x0100EBA004726000","name":"Huntdown"},{"id":"0x0100EC400E1C0000","name":"Mah-jongg Puzzle Pai-Sen"},{"id":"0x01008E300D136000","name":"Cafeteria Nipponica"},{"id":"0x01008E700F952000","name":"Skelittle: A Giant Party!"},{"id":"0x01008EE00B22C000","name":"Rento Fortune"},{"id":"0x010090400D366000","name":"Torchlight II"},{"id":"0x010092901203A000","name":"Escape From Tethys"},{"id":"0x010093F00E818000","name":"Tools Up!"},{"id":"0x010096B00A08E000","name":"Octocopter: Double or Squids"},{"id":"0x01009AA000FAA000","name":"Sonic Mania"},{"id":"0x01009BF00E7D2000","name":"SYNTHETIK: Ultimate"},{"id":"0x01009CD00E3AA000","name":"Ben 10: Power Trip!"},{"id":"0x01009FF00CB1A000","name":"Super Star Path"},{"id":"0x0100A10010C54000","name":"Arcade Archives VS. MAH-JONG"},{"id":"0x0100A21007FFA000","name":"SteamWorld Heist: Ultimate Edition"},{"id":"0x0100A5D0100DE000","name":"Frosty Jump"},{"id":"0x0100A6E00D3F8000","name":"Arcade Archives POOYAN"},{"id":"0x0100A8000E228000","name":"Damascus Gear Operation Osaka"},{"id":"0x0100A8400471A000","name":"MUJO"},{"id":"0x0100A8D010BFA000","name":"Travel Mosaics 2: Roman Holiday"},{"id":"0x0100A9500C606000","name":"Ghoulboy"},{"id":"0x0100AAD011592000","name":"The Last Dead End"},{"id":"0x0100E6100CCE6000","name":"FREECELL BATTLE KING"},{"id":"0x0100EA400BF44000","name":"SkyScrappers"},{"id":"0x0100EC2011B9C000","name":"Star Horizon"},{"id":"0x0100EC400D712000","name":"Croc's World Run"},{"id":"0x0100EEE0129F2000","name":"Street Racer Underground"},{"id":"0x0100F1000CF16000","name":"Graceful Explosion Machine Demo"},{"id":"0x0100F2600D710000","name":"CONTRA: ROGUE CORPS"},{"id":"0x0100F3A00FB78000","name":"Mononoke Slashdown"},{"id":"0x0100F79012600000","name":"Neverending Nightmares"},{"id":"0x0100F8900ADC8000","name":"Beekyr Reloaded"},{"id":"0x0100FDE012B22000","name":"Tengam"},{"id":"0x01009E700EEA6000","name":"Collide-a-Ball 2"},{"id":"0x0100A050038F2000","name":"ACA NEOGEO MAGICAL DROP II"},{"id":"0x0100A35012908000","name":"THE LAST BLADE: Beyond the Destiny"},{"id":"0x0100A5B00D3D2000","name":"Braveland Trilogy"},{"id":"0x0100A78011974000","name":"Sir Tincan - Adventures in the Castle"},{"id":"0x0100A8200D0EE000","name":"Retimed Demo"},{"id":"0x0100A8600D566000","name":"Zombie Panic in Wonderland DX"},{"id":"0x0100A8900AF04000","name":"SEGA AGES Alex Kidd in Miracle World"},{"id":"0x0100AA3009738000","name":"Feudal Alloy"},{"id":"0x0100AA8012EF2000","name":"Steampunk Tower 2"},{"id":"0x0100AC300BBE4000","name":"The Battle Of Mahjong"},{"id":"0x0100ACC00A56E000","name":"Midnight Deluxe Demo"},{"id":"0x0100AF700BCD2000","name":"Game Dev Story"},{"id":"0x0100B0300E8B6000","name":"Shinobi Spirits S: Legend of Heroes"},{"id":"0x0100B0F011A84000","name":"Escape Game Fort Boyard"},{"id":"0x0100B1400CD50000","name":"Atelier Lulua ~The Scion of Arland~"},{"id":"0x0100B25009B96000","name":"Shape of the World"},{"id":"0x0100B2E00F13E000","name":"Shipped"},{"id":"0x0100BAB00E8C0000","name":"Langrisser I & II"},{"id":"0x0100D82009024000","name":"Goetia"},{"id":"0x0100D86012928000","name":"Up Cliff Drive"},{"id":"0x0100D90011534000","name":"Arcade Archives SUNSETRIDERS"},{"id":"0x0100D9C00AA52000","name":"Mother Russia Bleeds"},{"id":"0x0100DB300A026000","name":"Warp Shift"},{"id":"0x0100DD600DD48000","name":"Stranger Things 3: The Game"},{"id":"0x0100DF401249C000","name":"AstroWings: Space War"},{"id":"0x0100E0600BBC8000","name":"GRANDIA HD Collection"},{"id":"0x0100E3801140A000","name":"Horror Bundle Vol. 1"},{"id":"0x0100E3900B598000","name":"RollerCoaster Tycoon Adventures"},{"id":"0x0100E81007A06000","name":"Victor Vran Overkill Edition"},{"id":"0x0100EA8011DF2000","name":"Pinball Lockdown"},{"id":"0x0100EB000C818000","name":"The Padre"},{"id":"0x0100EC7009348000","name":"Rogue Aces"},{"id":"0x0100EE800C93E000","name":"BLAZBLUE CENTRALFICTION Special Edition"},{"id":"0x0100F0901006C000","name":"A Sound Plan"},{"id":"0x0100F610122F6000","name":"Good Pizza, Great Pizza"},{"id":"0x0100F6700DBD8000","name":"You Died but a Necromancer revived you"},{"id":"0x0100F90010882000","name":"Ys Origin"},{"id":"0x0100FB400D832000","name":"KILL la KILL -IF"},{"id":"0x0100DA20021D0000","name":"Redout"},{"id":"0x0100DA200A09A000","name":"Kero Blaster"},{"id":"0x0100DBD00ABF4000","name":"Party Trivia"},{"id":"0x0100DCF00F13A000","name":"Queen's Quest 4: Sacred Truce"},{"id":"0x0100DD30110CC000","name":"Exit the Gungeon"},{"id":"0x0100DE800B1F2000","name":"JumpHead: Battle4Fun!"},{"id":"0x0100DEC00A934000","name":"Trine 3: The Artifacts of Power"},{"id":"0x0100DF3009730000","name":"Catastronauts"},{"id":"0x0100E1200DC1A000","name":"Bounty Battle"},{"id":"0x0100E6701231C000","name":"Mad Rat Dead"},{"id":"0x0100E7100B198000","name":"Scribblenauts Mega Pack"},{"id":"0x0100E9D00D6C2000","name":"Touhou spell bubble"},{"id":"0x0100EA1009022000","name":"Timberman VS"},{"id":"0x0100EAD007E98000","name":"FUZE4 Nintendo Switch"},{"id":"0x0100EB600E914000","name":"Farming Simulator 20"},{"id":"0x0100F17004156000","name":"Retro City Rampage DX"},{"id":"0x0100F2700D3F0000","name":"Pure Mahjong"},{"id":"0x0100F2B012658000","name":"Pachi Pachi On A Roll"},{"id":"0x0100F3A0095A6000","name":"Night Call"},{"id":"0x0100F4E013AAE000","name":"Fire & Water"},{"id":"0x0100C6E0047C8000","name":"Bit Dungeon Plus"},{"id":"0x0100C9F00BC50000","name":"Realpolitiks"},{"id":"0x0100CD1010740000","name":"Jay and Silent Bob: Mall Brawl"},{"id":"0x0100D1100BF9C000","name":"Skulls of the Shogun: Bone-A-Fide Edition"},{"id":"0x0100D3200AF74000","name":"Doodle God: Evolution"},{"id":"0x0100D8A00E880000","name":"Red Wings: Aces of the Sky"},{"id":"0x0100DA000D71A000","name":"Straimium Immortaly"},{"id":"0x0100DAE00DE4E000","name":"Xtreme Club Racing"},{"id":"0x0100E25008E68000","name":"My Time at Portia"},{"id":"0x0100E3A00A9D4000","name":"Rush Rover"},{"id":"0x0100E4200FA82000","name":"Horror Pinball Bundle"},{"id":"0x0100E4400C9A6000","name":"Diggerman"},{"id":"0x0100E4A00EEF6000","name":"Gravity Duck"},{"id":"0x0100E5400AFC8000","name":"ACA NEOGEO SAVAGE REIGN"},{"id":"0x0100E6501145E000","name":"I Am Dead"},{"id":"0x0100E8D007E16000","name":"Gotcha Racing 2nd"},{"id":"0x0100E95004038000","name":"Xenoblade Chronicles™ 2"},{"id":"0x0100E98002F6E000","name":"Mantis Burn Racing"},{"id":"0x0100E9B010028000","name":"Duck Souls+"},{"id":"0x0100BA800CA6A000","name":"99Seconds"},{"id":"0x0100BB500AAE6000","name":"Metropolis: Lux Obscura Demo"},{"id":"0x0100BCF00E970000","name":"The Vanishing of Ethan Carter"},{"id":"0x0100BDE012928000","name":"Strife: Veteran Edition"},{"id":"0x0100C0A004C2C000","name":"Kid Tripp"},{"id":"0x0100C1200D60C000","name":"Undead's Building"},{"id":"0x0100C1800A9B6000","name":"Go Vacation™"},{"id":"0x0100C2F00A568000","name":"Shio"},{"id":"0x0100C31005A50000","name":"Phantom Trigger"},{"id":"0x0100C38004DCC000","name":"The Flame In The Flood: Complete Edition"},{"id":"0x0100C3A00B97E000","name":"House of Golf"},{"id":"0x0100C4E004406000","name":"Adventure Time: Pirates of the Enchiridion"},{"id":"0x0100C6E00AF2C000","name":"BLAZBLUE CROSS TAG BATTLE SPECIAL TRIAL"},{"id":"0x0100C8E00BDCE000","name":"Season Match 3: Curse of the Witch Crow"},{"id":"0x0100CB10089DE000","name":"Party Crashers"},{"id":"0x0100CC700B2B4000","name":"PixARK"},{"id":"0x0100CE2007A86000","name":"Old Man's Journey"},{"id":"0x0100CFD012908000","name":"Takeshi and Hiroshi"},{"id":"0x0100CFE00CE6E000","name":"Nuclear Throne"},{"id":"0x0100E7F00BA5A000","name":"Catch 'Em! Goldfish Scooping"},{"id":"0x0100EA80032EA000","name":"New Super Mario Bros.™ U Deluxe"},{"id":"0x0100EB10108EA000","name":"G.I. Joe: Operation Blackout"},{"id":"0x0100EBF00E702000","name":"STAR OCEAN First Departure R"},{"id":"0x0100EC000CE24000","name":"Mech Rage"},{"id":"0x0100EC9010258000","name":"Streets of Rage 4"},{"id":"0x0100EDD00D530000","name":"Nice Slice"},{"id":"0x0100EDE012B58000","name":"Linelight"},{"id":"0x0100F02005D1E000","name":"M.A.C.E. Space Shooter"},{"id":"0x0100F0B00A214000","name":"Eternal Card Game"},{"id":"0x0100F1F00D5B2000","name":"Darkest Hunters"},{"id":"0x0100F5D00CD58000","name":"Flowlines VS"},{"id":"0x0100F8300E864000","name":"Bus Fix 2019"},{"id":"0x0100FA500B128000","name":"Sushi Striker: The Way of Sushido eShop Demo"},{"id":"0x0100FA800DF86000","name":"Hamsterdam"},{"id":"0x0100FC300F4A4000","name":"Fly Punch Boom!"},{"id":"0x0100FC800E64E000","name":"Desktop Baseball"},{"id":"0x0100C2200E0F2000","name":"Drift Zone Arcade"},{"id":"0x0100C4200B820000","name":"SmuggleCraft"},{"id":"0x0100CAA01084A000","name":"Rebel Galaxy Outlaw"},{"id":"0x0100CC000DA44000","name":"Please, Don't Touch Anything: Classic"},{"id":"0x0100CD300A1BA000","name":"Zombillie"},{"id":"0x0100CD5008D9E000","name":"James Pond Codename Robocod"},{"id":"0x0100CEB00CD6C000","name":"Surfingers"},{"id":"0x0100CFC00A1D8000","name":"Wild Guns™ Reloaded"},{"id":"0x0100D04004176000","name":"Farming Simulator Nintendo Switch Edition"},{"id":"0x0100D470106DC000","name":"CRAYON SHINCHAN The Storm Called FLAMING KASUKABE RUNNER!!"},{"id":"0x0100DBE00C554000","name":"Bubsy: Paws on Fire!"},{"id":"0x0100DCA011262000","name":"Mr. DRILLER DrillLand"},{"id":"0x0100DD6013126000","name":"Death Race 2020"},{"id":"0x0100DE70131F4000","name":"Alpaca Ball: Allstars"},{"id":"0x0100DEB00D76E000","name":"Bard's Gold - Nintendo Switch Edition"},{"id":"0x0100E06012BB4000","name":"Tank Mechanic Simulator"},{"id":"0x0100E09009600000","name":"ibb & obb"},{"id":"0x0100E20012886000","name":"2weistein – The Curse of the Red Dragon"},{"id":"0x0100E4F00AE14000","name":"Sparkle ZERO"},{"id":"0x0100D87009954000","name":"Jumping Joe & Friends"},{"id":"0x0100D95012C0A000","name":"Gibbous - A Cthulhu Adventure"},{"id":"0x0100DC000A472000","name":"10 Second Run RETURNS Demo"},{"id":"0x0100DD100AE8C000","name":"Deemo"},{"id":"0x0100DDB004F30000","name":"Sky Ride"},{"id":"0x0100DE40068CA000","name":"Squareboy vs Bullies: Arena Edition"},{"id":"0x0100DFE00F002000","name":"GREEN The Life Algorithm"},{"id":"0x0100E2700D5B6000","name":"Doodle God : Evolution Demo"},{"id":"0x0100E3500BD84000","name":"Earthworms Demo"},{"id":"0x0100E3B00F412000","name":"Collar X Malice -Unlimited-"},{"id":"0x0100E5000D3CA000","name":"Merchants of Kaidan"},{"id":"0x0100E5D00DE2C000","name":"Construction Simulator 2 US - Console Edition"},{"id":"0x0100E62012D3C000","name":"BIT.TRIP RUNNER"},{"id":"0x0100E6D00E81C000","name":"Little Racer"},{"id":"0x0100E75004766000","name":"True Fear: Forsaken Souls - Part 1"},{"id":"0x0100E9100F244000","name":"Galacide"},{"id":"0x0100F0B00F68E000","name":"Lust for Darkness: Dawn Edition"},{"id":"0x0100F30012CBE000","name":"Ramp Car Jumping"},{"id":"0x0100F3500A20C000","name":"BlobCat"},{"id":"0x0100F3D00B032000","name":"GOD WARS The Complete Legend"},{"id":"0x0100DA700879C000","name":"Last Day of June"},{"id":"0x0100DB500B17C000","name":"Solstice Chronicles: MIA"},{"id":"0x0100DB7003828000","name":"Pinball FX3"},{"id":"0x0100DBB0136CE000","name":"Survival"},{"id":"0x0100E0E00B108000","name":"Valley"},{"id":"0x0100E3100450E000","name":"Bass Pro Shops: The Strike - Championship Edition"},{"id":"0x0100E4600B166000","name":"Candle: The Power of the Flame"},{"id":"0x0100E49013190000","name":"Unto The End"},{"id":"0x0100E5E012744000","name":"Micro Pico Racers"},{"id":"0x0100E7500BF84000","name":"LEGRAND LEGACY: Tale of the Fatebounds"},{"id":"0x0100E7C001DE0000","name":"Arcade Archives Kid's Horehore Daisakusen"},{"id":"0x0100E88009A34000","name":"Rocket Wars"},{"id":"0x0100E8B00CBD6000","name":"Proficient Paddles Deluxe"},{"id":"0x0100EB6005E90000","name":"Maria The Witch"},{"id":"0x0100EC7012D34000","name":"Inside Grass: A little adventure"},{"id":"0x0100ECE00B210000","name":"Calculation Castle : Greco's Ghostly Challenge \"Multiplication \""},{"id":"0x0100ED400EEC2000","name":"STORY OF SEASONS: Friends of Mineral Town"},{"id":"0x0100F0300B7BE000","name":"Ludomania"},{"id":"0x0100F0E00F5EA000","name":"Island Maze"},{"id":"0x0100F5D01034E000","name":"The Adventures of Elena Temple: Definitive Edition"},{"id":"0x0100F680116A2000","name":"Kholat"},{"id":"0x0100F6B00BDCC000","name":"Season Match 2"},{"id":"0x0100F7300BD8E000","name":"Double Cross"},{"id":"0x0100F9F00C696000","name":"Crash™ Team Racing Nitro-Fueled"},{"id":"0x0100FAE00E19A000","name":"Spirit Hunter: NG"},{"id":"0x0100FBA00E35C000","name":"Arcade Archives ROAD FIGHTER"},{"id":"0x0100FCF002A58000","name":"Ultimate Chicken Horse"},{"id":"0x0100AB000ABFE000","name":"Shadow Fight 2"},{"id":"0x0100ADF00CB64000","name":"Snow Battle Princess Sayuki"},{"id":"0x0100AE5003EE6000","name":"The Jackbox Party Pack"},{"id":"0x0100B5200BB7C000","name":"ToeJam & Earl: Back in the Groove!"},{"id":"0x0100BBD00976C000","name":"Project Highrise: Architect's Edition"},{"id":"0x0100BEC00C7A2000","name":"Arcade Archives ATHENA"},{"id":"0x0100BF8006EC6000","name":"Arcade Archives ELEVATOR ACTION"},{"id":"0x0100C0B012666000","name":"Newton's Cradle Puzzle Game"},{"id":"0x0100C5200D178000","name":"The Mystery of Woolley Mountain"},{"id":"0x0100C7C00AE6C000","name":"VSR: Void Space Racing"},{"id":"0x0100C7D00E730000","name":"Fight'N Rage"},{"id":"0x0100C8B00D2BE000","name":"Radical Rabbit Stew"},{"id":"0x0100CA300C5BA000","name":"Demetrios Demo"},{"id":"0x0100CBB0070EE000","name":"Green Game: TimeSwapper"},{"id":"0x0100CBF0115F2000","name":"Valfaris & Slain Double Pack"},{"id":"0x0100CC7009196000","name":"Masters of Anima"},{"id":"0x0100CCD0073EA000","name":"Ninjala"},{"id":"0x0100D360098B6000","name":"WILL: A Wonderful World"},{"id":"0x0100D4800AEC8000","name":"City Builder"},{"id":"0x010096B01179A000","name":"Ponpu"},{"id":"0x01009AF0110E4000","name":"Thunder Paw"},{"id":"0x01009C600F02C000","name":"Sudoku Relax 2 Summer Waves"},{"id":"0x01009D500A194000","name":"World Conqueror X"},{"id":"0x01009E4006CC8000","name":"Super Rock Blasters!"},{"id":"0x0100A01006E00000","name":"LEGO® The Incredibles"},{"id":"0x0100A0F00DA68000","name":"Monster Sanctuary"},{"id":"0x0100A280121F6000","name":"Kingdom Rush"},{"id":"0x0100A2900AFA4000","name":"ACA NEOGEO LEAGUE BOWLING"},{"id":"0x0100A6F00AC70000","name":"NAIRI: Tower of Shirin"},{"id":"0x0100A70006B8A000","name":"Never Stop Sneakin'"},{"id":"0x0100A71010B9C000","name":"Purrs In Heaven"},{"id":"0x0100AD000B9AC000","name":"Son of a Witch"},{"id":"0x0100AD300E4FA000","name":"Vasilis"},{"id":"0x0100AEA00CCAE000","name":"Bleep Bloop"},{"id":"0x0100AFF00F938000","name":"Metaverse Keeper"},{"id":"0x0100B0500FE4E000","name":"Good Job!™"},{"id":"0x0100B0601205E000","name":"Door Kickers"},{"id":"0x0100B0A00C8D8000","name":"Arcade Archives Penguin-Kun Wars"},{"id":"0x0100B10002904000","name":"Shakedown: Hawaii"},{"id":"0x0100E3C00A118000","name":"Chicken Assassin: Reloaded"},{"id":"0x0100E5A00FD38000","name":"ANIMUS: Harbinger"},{"id":"0x0100E65002BB8000","name":"Stardew Valley"},{"id":"0x0100E6700EF4C000","name":"SpaceColorsRunner"},{"id":"0x0100E6A009A26000","name":"Spartan"},{"id":"0x0100E6B00DEA4000","name":"Mutant Year Zero: Road to Eden - Deluxe Edition"},{"id":"0x0100E6B0115FC000","name":"Star99"},{"id":"0x0100E8701358A000","name":"GUNPIG: Firepower For Hire"},{"id":"0x0100EB100AB42000","name":"FINAL FANTASY XII THE ZODIAC AGE"},{"id":"0x0100EEC00AA6E000","name":"Gone Home"},{"id":"0x0100F0B0081DA000","name":"Dawn of the Breakers"},{"id":"0x0100F2200C984000","name":"Mortal Kombat 11"},{"id":"0x0100F2400CF00000","name":"Drunk-Fu: Wasted Masters"},{"id":"0x0100F3B00CF32000","name":"Death Coming"},{"id":"0x0100F6600AC00000","name":"Magic Nations: Strategy Card Game"},{"id":"0x0100F7800A434000","name":"Drawful 2"},{"id":"0x0100F7B002340000","name":"FIFA 18"},{"id":"0x0100F8C00C21C000","name":"Omega Strike"},{"id":"0x0100FAD00E65E000","name":"Lines X"},{"id":"0x0100FB000EB96000","name":"Barry Bradford's Putt Panic Party"},{"id":"0x0100AAD004358000","name":"Physical Contact: Picture Place"},{"id":"0x0100AB90129CA000","name":"Paint your Pet"},{"id":"0x0100AFE00452E000","name":"Tumblestone"},{"id":"0x0100B0B00B318000","name":"The Inner World"},{"id":"0x0100B1E00AA56000","name":"Crossing Souls"},{"id":"0x0100B4900AD3E000","name":"NEKOPARA Vol.1"},{"id":"0x0100B4F00FC4E000","name":"eSports Legend"},{"id":"0x0100C160071B8000","name":"Waking Violet"},{"id":"0x0100C4C00E73E000","name":"Moving Out"},{"id":"0x0100C6100D75E000","name":"Spooky Ghosts Dot Com"},{"id":"0x0100C6300AFE0000","name":"ACA NEOGEO NINJA MASTER'S"},{"id":"0x0100C68012128000","name":"Twin Breaker: A Sacred Symbols Adventure"},{"id":"0x0100C6D002CB8000","name":"Johnny Turbo's Arcade: Heavy Barrel"},{"id":"0x0100C7D00DE24000","name":"Azuran Tales: TRIALS"},{"id":"0x0100C8300FA90000","name":"Save Koch"},{"id":"0x0100C9F00AAEE000","name":"ASCENDANCE"},{"id":"0x0100CB000A142000","name":"Phoenix Wright: Ace Attorney Trilogy"},{"id":"0x0100CC0010A46000","name":"Ego Protocol: Remastered"},{"id":"0x0100CE4010AAC000","name":"FINAL FANTASY® CRYSTAL CHRONICLES™ Remastered Edition"},{"id":"0x0100D85013754000","name":"Elliot"},{"id":"0x0100DA400E07E000","name":"Radiation City"},{"id":"0x0100DAF00B620000","name":"Ultrawings Flat"},{"id":"0x0100DD901201A000","name":"Jacks or Better - Video Poker"},{"id":"0x0100DDD00C0EA000","name":"Phantaruk"},{"id":"0x0100DE600FDFE000","name":"No Time to Relax"},{"id":"0x0100DE700B028000","name":"Semispheres"},{"id":"0x0100E1F013674000","name":"FUSER™"},{"id":"0x0100E6200D56E000","name":"The World Next Door"},{"id":"0x0100E67003A86000","name":"Disgaea 5 Complete Demo"},{"id":"0x0100E8600C866000","name":"My Exotic Farm 2018"},{"id":"0x0100E9A00CB30000","name":"DYNASTY WARRIORS 8: Xtreme Legends Definitive Edition"},{"id":"0x0100EA4011484000","name":"Random Heroes: Gold Edition"},{"id":"0x0100EA70127F2000","name":"GONNER2"},{"id":"0x0100EB800B614000","name":"Freedom Planet"},{"id":"0x0100ECC00EF3C000","name":"Legend of the Skyfish"},{"id":"0x0100F130115EC000","name":"Help Will Come Tomorrow"},{"id":"0x0100F3B010F56000","name":"Rogue Robots"},{"id":"0x0100F5600D194000","name":"Isoland 2 - Ashes of Time"},{"id":"0x0100F7300C90E000","name":"Johnny Turbo's Arcade: Night Slashers"},{"id":"0x01008D100D43E000","name":"Saints Row IV®: Re-Elected™"},{"id":"0x01008D8006A6A000","name":"Arena of Valor"},{"id":"0x01008EA00405C000","name":"forma.8"},{"id":"0x01008FB011248000","name":"AvoCuddle"},{"id":"0x010091D00BF9E000","name":"GALAK-Z: The Void: Deluxe Edition"},{"id":"0x010094E00B52E000","name":"Capcom Beat 'Em Up Bundle"},{"id":"0x010097000EDB4000","name":"Tricky Spider"},{"id":"0x01009A6013AE0000","name":"Arcade Archives VS. TENNIS"},{"id":"0x01009AA00D49E000","name":"Bonds of the Skies"},{"id":"0x01009AF0101CC000","name":"JigSaw Solace"},{"id":"0x01009CC00E224000","name":"Blade II - The Return Of Evil"},{"id":"0x01009E3001DDE000","name":"Arcade Archives DOUBLE DRAGON II The Revenge"},{"id":"0x01009FA00A570000","name":"Boom Ball: Boost Edition"},{"id":"0x0100A4200DA76000","name":"Mario Tennis™ Aces Special Online Demo"},{"id":"0x0100A5200C2E0000","name":"Safety First!"},{"id":"0x0100A620083DA000","name":"Ambition of the Slimes"},{"id":"0x0100A8C011F26000","name":"Max and the book of chaos"},{"id":"0x0100AA400C396000","name":"Superbrothers: Sword & Sworcery EP"},{"id":"0x0100AAB00E524000","name":"Boxing Champs"},{"id":"0x0100D0500B0A6000","name":"The VideoKid"},{"id":"0x0100D2D009028000","name":"INSIDE"},{"id":"0x0100D3F008746000","name":"Knights of Pen and Paper +1 Deluxier Edition"},{"id":"0x0100D84005AF6000","name":"Grand Prix Rock 'N Racing"},{"id":"0x0100D970123BA000","name":"GRISAIA PHANTOM TRIGGER 04"},{"id":"0x0100DBF01000A000","name":"Burnout™ Paradise Remastered"},{"id":"0x0100DE200C350000","name":"Chasm"},{"id":"0x0100DE400D7B8000","name":"Umihara Kawase Fresh!"},{"id":"0x0100DEC00B2BC000","name":"The Midnight Sanctuary"},{"id":"0x0100DF9010206000","name":"Cooking Tycoons - 3 in 1 Bundle"},{"id":"0x0100E0D00C336000","name":"Halloween Pinball"},{"id":"0x0100E20011A06000","name":"My Universe - My Baby"},{"id":"0x0100E28002D74000","name":"Space Dave"},{"id":"0x0100E3500B00E000","name":"The Bridge Demo"},{"id":"0x0100E7300AAD4000","name":"Fitness Boxing"},{"id":"0x0100E7D00C17A000","name":"The Walking Vegetables: Radical Edition"},{"id":"0x0100E8300A67A000","name":"RISK® Global Domination"},{"id":"0x0100EA001069E000","name":"Gates Of Hell"},{"id":"0x0100ED700B376000","name":"Cursed Castilla"},{"id":"0x0100F6800910A000","name":"Hover"},{"id":"0x0100F780103E6000","name":"The Forgotten Land"},{"id":"0x0100F7D00A1BC000","name":"NO THING"},{"id":"0x0100F8600E21E000","name":"Overwatch®: Legendary Edition"},{"id":"0x0100FC700F942000","name":"Megabyte Punch"},{"id":"0x0100FD800D594000","name":"Cook, Serve, Delicious! 2!!"},{"id":"0x0100FFE011F0A000","name":"Mask of Mists"},{"id":"0x0100BAB01113A000","name":"Neon Abyss"},{"id":"0x0100BAE00B470000","name":"Guacamelee! Super Turbo Championship Edition"},{"id":"0x0100BCA00843A000","name":"Trailblazers"},{"id":"0x0100BD0012A68000","name":"Vampire's Fall: Origins"},{"id":"0x0100BDD010AC8000","name":"Lost Lands: Dark Overlord"},{"id":"0x0100BFC00F18A000","name":"Spellworm"},{"id":"0x0100C1C00D01C000","name":"SYMMETRY"},{"id":"0x0100C3F011B58000","name":"Falcon Age"},{"id":"0x0100C5700ECE0000","name":"Puzzle & Dragons GOLD"},{"id":"0x0100CA400B6D0000","name":"BQM -BlockQuest Maker-"},{"id":"0x0100CAF00B744000","name":"Valkyria Chronicles"},{"id":"0x0100CB5009A2C000","name":"RAZED"},{"id":"0x0100CE1004FA6000","name":"ACA NEOGEO STREET HOOP"},{"id":"0x0100D000111C2000","name":"Epic Word Search Collection"},{"id":"0x0100D4600D0E4000","name":"Descenders"},{"id":"0x0100D4C00C9FC000","name":"Glass Masquerade"},{"id":"0x0100D560102C8000","name":"BioShock Infinite: The Complete Edition"},{"id":"0x0100D7C01115E000","name":"Keen: One Girl Army"},{"id":"0x0100DBF004FAA000","name":"ACA NEOGEO SOCCER BRAWL"},{"id":"0x0100DCA0064A6000","name":"Luigi’s Mansion™ 3"},{"id":"0x01009E700DB2E000","name":"Bee Simulator"},{"id":"0x01009EE00E91E000","name":"Some Distant Memory"},{"id":"0x0100A0800EA9C000","name":"Bite the Bullet"},{"id":"0x0100A12011CC8000","name":"Fire Emblem™: Shadow Dragon & the Blade of Light"},{"id":"0x0100A3000F070000","name":"Electronic Super Joy"},{"id":"0x0100A750113FC000","name":"Highrise Heroes: Word Challenge"},{"id":"0x0100AC500EEE8000","name":"THOTH"},{"id":"0x0100ACE00DAB6000","name":"Project Nimbus: Complete Edition"},{"id":"0x0100AD7003FF4000","name":"Stick It to The Man"},{"id":"0x0100AFE00E882000","name":"Laraan"},{"id":"0x0100B110109F8000","name":"Urban Flow"},{"id":"0x0100B16009C10000","name":"SINNER: Sacrifice for Redemption"},{"id":"0x0100B1F0090F2000","name":"TurtlePop: Journey to Freedom"},{"id":"0x0100B42001DB4000","name":"ACA NEOGEO THE KING OF FIGHTERS '98"},{"id":"0x0100B5E00D218000","name":"JEWEL WARS"},{"id":"0x0100B6700DEC2000","name":"Greco’s Hall of Kanji Learn Japanese< Beginner >"},{"id":"0x0100B8100C54A000","name":"Rack N Ruin"},{"id":"0x0100BB600C096000","name":"Hardway Party"},{"id":"0x0100BF8012A30000","name":"Assault ChaingunS KM"},{"id":"0x0100EF600F6C4000","name":"Still There"},{"id":"0x0100EFC00EFB2000","name":"DRAGON QUEST"},{"id":"0x0100F3C00C400000","name":"SkyTime"},{"id":"0x0100F5500FA0E000","name":"Castle of no Escape 2"},{"id":"0x0100F8300A95C000","name":"Parallel"},{"id":"0x0100F8900E878000","name":"Dungeon Warfare"},{"id":"0x0100F9C0078CC000","name":"Deathstate : Abyssal Edition"},{"id":"0x0100F9D00F176000","name":"Arcade Archives Scramble"},{"id":"0x0100FB5010D2E000","name":"3000th Duel"},{"id":"0x010060200FC44000","name":"Family Feud®"},{"id":"0x010061F0119FA000","name":"Let's Sing 2021"},{"id":"0x010062800D39C000","name":"SpongeBob SquarePants: Battle for Bikini Bottom - Rehydrated"},{"id":"0x010063600D3FA000","name":"Arcade Archives X MULTIPLY"},{"id":"0x010064200F7D8000","name":"Lost Horizon"},{"id":"0x010064F00C212000","name":"Soul Axiom Rebooted"},{"id":"0x010066600877E000","name":"ACA NEOGEO ART OF FIGHTING 2"},{"id":"0x010067600F1A0000","name":"FuzzBall"},{"id":"0x010068300E08E000","name":"Enchanted in the Moonlight - Kiryu, Chikage & Yukinojo -"},{"id":"0x010068E00D346000","name":"Warplanes: WW2 Dogfight"},{"id":"0x01006980127F0000","name":"Fight Crab"},{"id":"0x01006B601117E000","name":"Ultimate Ski Jumping 2020"},{"id":"0x01006BE0109B6000","name":"Theme Park Simulator: Roller Coaster & Thrill Rides"},{"id":"0x01006E700B702000","name":"Nightmares from the Deep 2: The Siren`s Call"},{"id":"0x0100708010800000","name":"Locomotion"},{"id":"0x01007090104EC000","name":"John Wick Hex"},{"id":"0x01007300020FA000","name":"ASTRAL CHAIN"},{"id":"0x0100750001C70000","name":"Duck Game"},{"id":"0x010075000C608000","name":"Red Faction Guerrilla Re-Mars-tered"},{"id":"0x01005BF00E4DE000","name":"Rabi-Ribi"},{"id":"0x01005C10136CA000","name":"Fantasy Tavern Sextet -Vol.2 Adventurer's Days-"},{"id":"0x01005D2011EA8000","name":"KINGDOM HEARTS Melody of Memory"},{"id":"0x01005ED00CD70000","name":"Door Kickers: Action Squad"},{"id":"0x01005FD00F15A000","name":"Regions of Ruin"},{"id":"0x010061400F7E4000","name":"Arcade Archives VS. BALLOON FIGHT"},{"id":"0x010064E00A932000","name":"Trine 2: Complete Story"},{"id":"0x010065E003FD8000","name":"Gear.Club Unlimited"},{"id":"0x01006AA006BE4000","name":"Tallowmere"},{"id":"0x01006C800C4A6000","name":"Secret Files: Tunguska"},{"id":"0x01006F80082E4000","name":"GUILTY GEAR XX ACCENT CORE PLUS R"},{"id":"0x01006FB00DB02000","name":"Yaga"},{"id":"0x010071900D95A000","name":"Black Paradox"},{"id":"0x0100721012F9C000","name":"Arcade Archives GRADIUS II"},{"id":"0x01007330027EE000","name":"Ultra Street Fighter® II: The Final Challengers"},{"id":"0x0100748009A28000","name":"Manual Samuel"},{"id":"0x010075D00DD04000","name":"Race with Ryan"},{"id":"0x01007960049A0000","name":"Bayonetta™ 2"},{"id":"0x01007A4009834000","name":"Arcade Archives Shusse Ozumo"},{"id":"0x01007A700A87C000","name":"The Long Dark"},{"id":"0x01007D200D3FC000","name":"Arcade Archives ICE CLIMBER"},{"id":"0x010080E00D3DE000","name":"Jungle Z"},{"id":"0x010084F0123AC000","name":"Space Elite Force 2"},{"id":"0x010087200289A000","name":"Riverbond"},{"id":"0x01008EA008712000","name":"ACA NEOGEO PULSTAR"},{"id":"0x01008EC006BE2000","name":"Art of Balance"},{"id":"0x010092600E9A2000","name":"Caged Garden Cock Robin"},{"id":"0x010095A011A14000","name":"Deadly Days"},{"id":"0x010095B00DBC8000","name":"Venture Kid"},{"id":"0x010095C00F354000","name":"Monster Jam Steel Titans"},{"id":"0x010099700D750000","name":"Instant Sports"},{"id":"0x0100A0800B83A000","name":"Soul Knight"},{"id":"0x0100A290038F8000","name":"ACA NEOGEO PUZZLED"},{"id":"0x0100A3E011CB0000","name":"Unlock the King 2"},{"id":"0x0100A56006CEE000","name":"Pawarumi"},{"id":"0x0100A6300B250000","name":"SEGA Genesis Classics"},{"id":"0x0100A68011B0A000","name":"Sudoky"},{"id":"0x0100A7D008392000","name":"Rival Megagun"},{"id":"0x0100A8000B65C000","name":"SCRAP RUSH!!"},{"id":"0x0100A8E00CAA0000","name":"Leisure Suit Larry - Wet Dreams Don't Dry"},{"id":"0x0100FC5009952000","name":"Pirates: All Aboard!"},{"id":"0x0100FCB00BF40000","name":"R.B.I. Baseball 19"},{"id":"0x0100EEA00AFB2000","name":"ACA NEOGEO FOOTBALL FRENZY"},{"id":"0x0100F15012D36000","name":"IMMERSE LAND"},{"id":"0x0100F25001DD0000","name":"Arcade Archives DOUBLE DRAGON"},{"id":"0x0100F3D008436000","name":"Hiragana Pixel Party"},{"id":"0x0100F5B007638000","name":"Pixel Action Heroes"},{"id":"0x0100FB90103DE000","name":"Journey to the Savage Planet"},{"id":"0x0100FC2012680000","name":"World for Two"},{"id":"0x0100FCB00EEF2000","name":"Pet Shop Snacks"},{"id":"0x0100FF800EC2E000","name":"Desktop Bowling"},{"id":"0x0100FF7010E7E000","name":"void tRrLM(); //Void Terrarium"},{"id":"0x01007E900DFB6000","name":"Legend of the Tetrarchs"},{"id":"0x01007F00128CC000","name":"Pretty Princess Party"},{"id":"0x01007F4012B84000","name":"Arcade Archives CONTRA"},{"id":"0x010080B00AD66000","name":"Undertale"},{"id":"0x010082400BCC6000","name":"Untitled Goose Game"},{"id":"0x01008A6009758000","name":"Fairune Collection"},{"id":"0x01008D1001512000","name":"Cars 3: Driven to Win"},{"id":"0x01008D400A584000","name":"Keep Talking and Nobody Explodes"},{"id":"0x01008E800D1FE000","name":"Marble Power Blast"},{"id":"0x01008FF00B8FA000","name":"Reverie: Sweet As Edition"},{"id":"0x010094D00F17C000","name":"Fifty Words by POWGI"},{"id":"0x010094F00D626000","name":"Happy Words"},{"id":"0x010095500D9F4000","name":"Quest Hunter"},{"id":"0x010096300DE22000","name":"Depth of Extinction"},{"id":"0x010097000BC10000","name":"Resident Evil 0"},{"id":"0x01009740120FE000","name":"DISTRAINT 2"},{"id":"0x010099E013430000","name":"Void Source"},{"id":"0x01009EA00E2B8000","name":"Toon War"},{"id":"0x01009EB004CB0000","name":"Shelter Generations"},{"id":"0x0100A24011F52000","name":"Dead Z Meat"},{"id":"0x0100DFA00C6A6000","name":"TRYBIT LOGIC"},{"id":"0x0100EA700EC90000","name":"CASE: Animatronics"},{"id":"0x0100EE5011DB6000","name":"Blood and Guts Bundle"},{"id":"0x0100EFE00E1DC000","name":"Headliner: NoviNews"},{"id":"0x0100F0400351C000","name":"Astro Duel Deluxe"},{"id":"0x0100F6200F77E000","name":"Towertale"},{"id":"0x0100F6C00A016000","name":"Chicken Range"},{"id":"0x0100F71011A0A000","name":"My Universe - Fashion Boutique"},{"id":"0x0100F9C00F32E000","name":"Snakeybus"},{"id":"0x0100FF300C902000","name":"Remothered: Tormented Fathers"},{"id":"0x0100FF500E738000","name":"Nonograms Prophecy"},{"id":"0x0100F2100F0B2000","name":"Soul Searching"},{"id":"0x0100F380105A4000","name":"Arcade Archives LIFE FORCE"},{"id":"0x0100F42007752000","name":"TOUHOU SKY ARENA -MATSURI-CLIMAX"},{"id":"0x0100F7901118C000","name":"Five Nights at Freddy's: Help Wanted"},{"id":"0x0100FE1011400000","name":"AntVentor"},{"id":"0x0100FED0137FE000","name":"Boot Hill Heroes"},{"id":"0x0100FFA00C9F4000","name":"Doughlings: Invasion"},{"id":"0x01004B500AB88000","name":"Calculation Castle : Greco's Ghostly Challenge \"Addition\""},{"id":"0x01004BA00B566000","name":"Construction Machines Simulator"},{"id":"0x01004C500AAF6000","name":"The Mystery of the Hudson Case"},{"id":"0x01004D10020F2000","name":"Graceful Explosion Machine"},{"id":"0x01004D100C510000","name":"#KILLALLZOMBIES"},{"id":"0x01004D200BB96000","name":"Build a Bridge!"},{"id":"0x01004DF007564000","name":"Tanzia"},{"id":"0x01004E500A15C000","name":"TETRA's Escape"},{"id":"0x01004E700DFE6000","name":"River City Girls"},{"id":"0x01004EE0104F6000","name":"Shinsekai Into the Depths™"},{"id":"0x010054900F51A000","name":"WARBORN"},{"id":"0x010054F01266C000","name":"Prehistoric Dude"},{"id":"0x010056900E89C000","name":"Pelican and Medjed"},{"id":"0x010058401223E000","name":"Ellipsis"},{"id":"0x010059200CC40000","name":"Mist Hunter"},{"id":"0x01005D700A2F8000","name":"ACA NEOGEO GHOST PILOTS"},{"id":"0x010060200F954000","name":"Jewel Rotation"},{"id":"0x010060600CFDE000","name":"Strikey Sisters"},{"id":"0x010063200AB12000","name":"Inferno 2"},{"id":"0x010067A00964E000","name":"Last Encounter"},{"id":"0x0100B360068B2000","name":"Mekorama"},{"id":"0x0100B4700BFC6000","name":"Call of Juarez: Gunslinger"},{"id":"0x0100B5900DFB2000","name":"The Eyes of Ara"},{"id":"0x0100B5A004302000","name":"R.B.I. Baseball 17"},{"id":"0x0100B6600FE06000","name":"Down to Hell"},{"id":"0x0100B7900B024000","name":"Grim Fandango Remastered"},{"id":"0x0100B8900EFA6000","name":"Outbuddies DX"},{"id":"0x0100BCE000598000","name":"Just Dance 2017®"},{"id":"0x0100BE50042F6000","name":"Yono and the Celestial Elephants"},{"id":"0x0100C1F00A9B8000","name":"All-Star Fruit Racing"},{"id":"0x0100C4D00B608000","name":"Don't Sink"},{"id":"0x0100C6301324C000","name":"Electro Ride: The Neon Racing"},{"id":"0x0100C7D00E6A0000","name":"Arc of Alchemist"},{"id":"0x0100C9B00EAEE000","name":"Spice and Wolf VR"},{"id":"0x0100CA6009888000","name":"VERTICAL STRIKE ENDLESS CHALLENGE"},{"id":"0x0100CAE01021A000","name":"The TakeOver"},{"id":"0x0100CD301354E000","name":"Sam & Max Save the World"},{"id":"0x0100CE1004E72000","name":"The Longest Five Minutes"},{"id":"0x0100CFF0048D2000","name":"Milanoir"},{"id":"0x0100D0A009310000","name":"de Blob"},{"id":"0x010076700CA18000","name":"AGARTHA-S"},{"id":"0x010076C01015C000","name":"Spellbreak"},{"id":"0x01007BF00FCB0000","name":"Blindy"},{"id":"0x01007D600D242000","name":"Solitaire Klondike BLACK"},{"id":"0x01007D8010018000","name":"Golf"},{"id":"0x01007F8010C66000","name":"Arcade Archives PLUS ALPHA"},{"id":"0x01007FC00A040000","name":"Party Arcade"},{"id":"0x010081B00D890000","name":"Strangers of the Power 3"},{"id":"0x010082200AFBE000","name":"ACA NEOGEO CYBER-LIP"},{"id":"0x010087700D07C000","name":"Light Tracer"},{"id":"0x010088500D5EE000","name":"KORAL"},{"id":"0x01008AE00E95C000","name":"Duped"},{"id":"0x01008AF00EA12000","name":"Star-Crossed Myth - The Department of Punishments -"},{"id":"0x01008DA00CBBA000","name":"Snooker 19"},{"id":"0x01008DA012EC0000","name":"Shakes on a Plane"},{"id":"0x010092C00C5EC000","name":"Catan"},{"id":"0x010095600F1A8000","name":"STAB STAB STAB!"},{"id":"0x010097A0071A8000","name":"Worbital"},{"id":"0x010097A00CC0A000","name":"Aaero: Complete Edition"},{"id":"0x010097C00DF08000","name":"The Bradwell Conspiracy"},{"id":"0x0100A9E00D97A000","name":"Northgard"},{"id":"0x0100AC101212C000","name":"City Driving Simulator"},{"id":"0x0100AD400BBE0000","name":"BlazeRush"},{"id":"0x0100B1E0022F8000","name":"VVVVVV"},{"id":"0x0100B2600A398000","name":"TENGAI for Nintendo Switch"},{"id":"0x0100B450130FC000","name":"Outbreak: The New Nightmare"},{"id":"0x0100B5E0113F2000","name":"Monochrome World"},{"id":"0x0100B7200E02E000","name":"BOXBOY! + BOXGIRL!™ Demo"},{"id":"0x0100BBD00D9D6000","name":"The Pyraplex"},{"id":"0x0100BD50129C4000","name":"Super Space Serpent Secondary Edition"},{"id":"0x0100BE500BEA2000","name":"Transistor"},{"id":"0x0100C0100C7EA000","name":"Divine Ascent"},{"id":"0x0100C240116E8000","name":"Quell Zen"},{"id":"0x0100C3D00923A000","name":"Old School Musical"},{"id":"0x0100C7801232C000","name":"Alphadia Genesis"},{"id":"0x0100C7E0134BE000","name":"Five Dates"},{"id":"0x0100C80009ABE000","name":"JackQuest: The Tale of the Sword"},{"id":"0x0100CAE00EB02000","name":"House Flipper"},{"id":"0x0100CC2001C6C000","name":"Battle Chef Brigade Deluxe"},{"id":"0x0100CFD00AFDE000","name":"ACA NEOGEO THE KING OF FIGHTERS 2002"},{"id":"0x0100CF2011454000","name":"Skull Rogue"},{"id":"0x0100D1000B18C000","name":"1979 Revolution: Black Friday"},{"id":"0x0100D24013466000","name":"DREAMO"},{"id":"0x0100D49008748000","name":"Joe Dever's Lone Wolf"},{"id":"0x0100D520119D6000","name":"Travel Mosaics 6: Christmas Around the World"},{"id":"0x0100D5500DA94000","name":"Shadow Blade: Reload"},{"id":"0x0100D6100FF44000","name":"Sudoku Relax 3 Autumn Leaves"},{"id":"0x0100D6200E130000","name":"Pillars of Eternity: Complete Edition"},{"id":"0x0100D7400F2E4000","name":"Psikyo Shooting Stars Bravo"},{"id":"0x0100D7801281A000","name":"Ramageddon"},{"id":"0x0100DA501160C000","name":"World of Tanks Blitz"},{"id":"0x0100DB80123D2000","name":"Hot Shot Burn"},{"id":"0x0100DC400E5CE000","name":"True Fear: Forsaken Souls - Part 2"},{"id":"0x0100E0C00ADAC000","name":"SENRAN KAGURA Reflexions"},{"id":"0x0100E1400BA96000","name":"Darksiders Warmastered Edition"},{"id":"0x0100E1E00CF1A000","name":"Power Rangers: Battle for the Grid"},{"id":"0x0100E46006708000","name":"Terraria"},{"id":"0x0100E5600D446000","name":"Ni no Kuni: Wrath of the White Witch"},{"id":"0x0100E6400B1EA000","name":"MONSTER HUNTER GENERATIONS ULTIMATE™ Demo"},{"id":"0x0100F6800F48E000","name":"SAMURAI SHODOWN NEOGEO COLLECTION"},{"id":"0x0100F7B00595C000","name":"Tower Of Babel"},{"id":"0x0100F7E01308C000","name":"Barbearian"},{"id":"0x0100FEF00F0AA000","name":"Escape from Chernobyl"},{"id":"0x0100FC900963E000","name":"Yuri"},{"id":"0x0100FEE01316E000","name":"Shisen-Sho NIKAKUdori"},{"id":"0x0100D4C00EE0C000","name":"Akuarium"},{"id":"0x0100D6700C3E6000","name":"TORIDAMA: Brave Challenge"},{"id":"0x0100D7000AE6A000","name":"Star Story: The Horizon Escape"},{"id":"0x0100D7F010B94000","name":"Welcome to Primrose Lake"},{"id":"0x0100D8400DAF0000","name":"SYNAPTIC DRIVE"},{"id":"0x0100D8E00C874000","name":"izneo"},{"id":"0x0100D9600BA8E000","name":"Just Shapes & Beats Demo"},{"id":"0x0100DA0006F50000","name":"DragonFangZ - The Rose & Dungeon of Time"},{"id":"0x0100DA3011174000","name":"AXES"},{"id":"0x0100DBF0110EE000","name":"Trancelation"},{"id":"0x0100DDB00DB38000","name":"Just Dance® 2020"},{"id":"0x0100DFB00D808000","name":"Dandy Dungeon - Legend of Brave Yamada -"},{"id":"0x0100DFB011B12000","name":"WARSAW"},{"id":"0x0100E0300B13C000","name":"Mahjong Deluxe 3"},{"id":"0x0100E07006C84000","name":"Earth Atlantis"},{"id":"0x0100E6B00FFBA000","name":"King Lucas"},{"id":"0x0100E8B012FBC000","name":"Maze"},{"id":"0x0100E910103B4000","name":"Thronebreaker: The Witcher Tales"},{"id":"0x0100E9F00CACC000","name":"Chronus Arc"},{"id":"0x0100EB600A4DA000","name":"A Robot Named Fight"},{"id":"0x0100ABE00DB4E000","name":"Edna & Harvey: Harvey's New Eyes"},{"id":"0x0100AE300D496000","name":"Epic Astro Story"},{"id":"0x0100AEF00A270000","name":"Cast of the Seven Godsends"},{"id":"0x0100B2500F0E0000","name":"Bridge Constructor Ultimate Edition"},{"id":"0x0100B3901324A000","name":"Danger Gazers"},{"id":"0x0100B6900D776000","name":"Super Holobunnies: Pause Café"},{"id":"0x0100B79011F06000","name":"Water Balloon Mania"},{"id":"0x0100BBF011394000","name":"Dicey Dungeons"},{"id":"0x0100BF001091E000","name":"MazM: Jekyll and Hyde"},{"id":"0x0100C030124E8000","name":"Johnny Rocket"},{"id":"0x0100C3300D8C4000","name":"The Touryst"},{"id":"0x0100C3D00D1D4000","name":"Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz"},{"id":"0x0100C5500E7AE000","name":"STURMWIND EX"},{"id":"0x0100C5700434C000","name":"Sky Rogue"},{"id":"0x0100C5D00EDB8000","name":"Wreckin' Ball Adventure"},{"id":"0x0100C9200F09A000","name":"Pool Slide Story"},{"id":"0x0100C9E00FD62000","name":"Farabel"},{"id":"0x0100C9F009F7A000","name":"Xenoblade Chronicles 2: Torna ~ The Golden Country"},{"id":"0x0100CC400DDE8000","name":"Realm Royale"},{"id":"0x0100EA500D996000","name":"Joe Jump Impossible Quest"},{"id":"0x0100EC2011A80000","name":"Luxar"},{"id":"0x0100EEE012280000","name":"Hero Hours Contract"},{"id":"0x0100EEF00CBC0000","name":"MEANDERS"},{"id":"0x0100F1B00B456000","name":"The MISSING: J.J. Macfield and the Island of Memories"},{"id":"0x0100F1E011982000","name":"Gerritory"},{"id":"0x0100F2900B3E2000","name":"Killer Queen Black"},{"id":"0x0100F3000FA58000","name":"Roombo: First Blood"},{"id":"0x0100F3F00B86A000","name":"Raining Blobs"},{"id":"0x0100F4C00D958000","name":"Hyperlight Ultimate"},{"id":"0x0100F770045CA000","name":"Time Recoil"},{"id":"0x0100F7B00B864000","name":"Pipe Push Paradise"},{"id":"0x0100F7C012D68000","name":"Juiced!"},{"id":"0x0100F9400D6CC000","name":"Doggie Ninja The Golden Mission"},{"id":"0x0100FC000EE10000","name":"Double Switch - 25th Anniversary Edition"},{"id":"0x0100FF00042EE000","name":"Lumo"},{"id":"0x0100E5000DDD2000","name":"Police Stories"},{"id":"0x0100E6300D448000","name":"Trüberbrook"},{"id":"0x0100E6E00AF44000","name":"Octogeddon"},{"id":"0x0100E7001210C000","name":"SWARMRIDERS"},{"id":"0x0100E7200B272000","name":"Lanota"},{"id":"0x0100EAE00D9EC000","name":"Ghostbusters: The Video Game Remastered"},{"id":"0x0100EAF00E32E000","name":"Bacon Man: An Adventure"},{"id":"0x0100EB100D17C000","name":"The Red Strings Club"},{"id":"0x0100ECD01165C000","name":"Shmubedi Boo"},{"id":"0x0100ED800CBFC000","name":"Fitness Boxing eShop Demo"},{"id":"0x0100F0C00FE6E000","name":"The Ambassador: Fractured Timelines"},{"id":"0x0100F2D00C97E000","name":"CMS"},{"id":"0x0100F7F00AFA2000","name":"ACA NEOGEO THE SUPER SPY"},{"id":"0x0100FAC00F716000","name":"Desktop Rugby"},{"id":"0x0100FAD00C2AA000","name":"Dungreed"},{"id":"0x0100FAE010864000","name":"Minoria"},{"id":"0x0100FC900CAE4000","name":"Word Sudoku by POWGI Demo"},{"id":"0x0100A3F009142000","name":"Little Dragons Café"},{"id":"0x0100A47009818000","name":"Arcade Archives Buta san"},{"id":"0x0100ACF00CD2E000","name":"Robothorium"},{"id":"0x0100ADD00C6FA000","name":"Atelier Meruru ~The Apprentice of Arland~ DX"},{"id":"0x0100AFD00F13C000","name":"CHOP"},{"id":"0x0100B3900B766000","name":"Treasure Stack"},{"id":"0x0100B6D00DA6E000","name":"Ding Dong XL"},{"id":"0x0100B82010B6C000","name":"Cook, Serve, Delicious! 3?!"},{"id":"0x0100B9B011DA4000","name":"Diamond Girl ★An Earnest Education in Love★"},{"id":"0x0100BA000FC9C000","name":"LocO-SportS"},{"id":"0x0100BA100E160000","name":"Crypt of the Serpent King"},{"id":"0x0100BBC00E4F8000","name":"Need a packet?"},{"id":"0x0100BFB00D1F4000","name":"Voxel Sword"},{"id":"0x0100C0C0040E4000","name":"Adam's Venture™: Origins"},{"id":"0x0100C2500B718000","name":"Hyper Sentinel Demo"},{"id":"0x0100C9100FAE2000","name":"Depixtion"},{"id":"0x0100C960041DC000","name":"Levels+ : Addictive Puzzle Game"},{"id":"0x0100C9800A454000","name":"GALAK-Z: Variant S"},{"id":"0x0100CA100489C000","name":"The Escapists 2"},{"id":"0x0100CA500C90C000","name":"Goodbye Deponia"},{"id":"0x0100CB800B07E000","name":"NOT A HERO: SUPER SNAZZY EDITION"},{"id":"0x0100CCE00A4F2000","name":"Reigns: Kings & Queens"},{"id":"0x0100CE400A2FA000","name":"ACA NEOGEO Gururin"},{"id":"0x0100CF3007578000","name":"Atari Flashback Classics"},{"id":"0x0100D5D00DAF2000","name":"Story of a Gladiator"},{"id":"0x0100D6300ED2E000","name":"Gleaner Heights"},{"id":"0x0100D6A00F802000","name":"Super Box Land Demake"},{"id":"0x0100D6E008700000","name":"Save the Ninja Clan"},{"id":"0x0100D98007784000","name":"Premium Pool Arena"},{"id":"0x0100D9B00E22C000","name":"Rebel Cops"},{"id":"0x0100DB00117BA000","name":"9th Dawn III"},{"id":"0x0100DC000983A000","name":"Arcade Archives THE NINJA WARRIORS"},{"id":"0x0100DCE009732000","name":"Poisoft Thud Card"},{"id":"0x0100DD100DE16000","name":"Bitlogic - A Cyberpunk Arcade Adventure"},{"id":"0x0100E1A00AF40000","name":"Hungry Shark® World"},{"id":"0x0100E24006FA8000","name":"Stikbold! A Dodgeball Adventure DELUXE"},{"id":"0x0100E4700E040000","name":"Ages of Mages: The last keeper"},{"id":"0x0100E95010058000","name":"EQQO"},{"id":"0x0100EA100F516000","name":"The Turing Test"},{"id":"0x0100BFC002B4E000","name":"Dandara: Trials of Fear Edition"},{"id":"0x0100BFE00E9CA000","name":"The Witcher 3: Wild Hunt — Complete Edition"},{"id":"0x0100C1E012A42000","name":"Country Tales"},{"id":"0x0100C3E00ACAA000","name":"Mutant Football League: Dynasty Edition"},{"id":"0x0100C7300EEE4000","name":"Zombie Army Trilogy"},{"id":"0x0100C9B00D422000","name":"Ping Pong Trick Shot EVOLUTION"},{"id":"0x0100CAD011462000","name":"Path of Giants"},{"id":"0x0100D0200EA92000","name":"Bubble Cats Rescue"},{"id":"0x0100D1D007F4E000","name":"Paper Wars: Cannon Fodder Devastated"},{"id":"0x0100D1F00D688000","name":"Captain Cat"},{"id":"0x0100D3300F110000","name":"Mr Blaster"},{"id":"0x0100D400100F8000","name":"Tonight We Riot"},{"id":"0x0100D51010D5E000","name":"Steel Rain"},{"id":"0x0100D6300B938000","name":"Yoku's Island Express Demo"},{"id":"0x0100D6A00BE66000","name":"World Tree Marché"},{"id":"0x0100D7E012F2E000","name":"Dustoff Z"},{"id":"0x0100D870045B6000","name":"Nintendo Entertainment System™ - Nintendo Switch Online"},{"id":"0x0100DA400F624000","name":"PHOGS!"},{"id":"0x0100DA900FCEA000","name":"Chameleon"},{"id":"0x0100A5A00AF26000","name":"Jettomero: Hero of the Universe"},{"id":"0x0100A7900B936000","name":"Shut Eye"},{"id":"0x0100A7B00FFC2000","name":"Neon City Riders"},{"id":"0x0100A95010942000","name":"Indie Gems Bundle - JRPG Edition"},{"id":"0x0100A9C010246000","name":"Wide Ocean Big Jacket"},{"id":"0x0100AC00107B8000","name":"Speedway Racing"},{"id":"0x0100ACF00D32E000","name":"The Demon Crystal"},{"id":"0x0100AD10102B2000","name":"BioShock Remastered"},{"id":"0x0100ADA012370000","name":"Shantae: Risky's Revenge - Director's Cut"},{"id":"0x0100B0B00A8C2000","name":"ACA NEOGEO BASEBALL STARS 2"},{"id":"0x0100B0C013912000","name":"Among Us"},{"id":"0x0100B18001D8E000","name":"Little Inferno"},{"id":"0x0100B1A0066DC000","name":"Volgarr the Viking"},{"id":"0x0100B27010436000","name":"Wanderlust Travel Stories"},{"id":"0x0100B3300B4AA000","name":"Hyper Jam"},{"id":"0x0100B3F000BE2000","name":"Pokkén Tournament™ DX"},{"id":"0x0100B52006E8C000","name":"Tiny Troopers Joint Ops XL"},{"id":"0x0100B53013236000","name":"Kaptain Brawe: A Brawe New World"},{"id":"0x0100B5600A88C000","name":"WHIP! WHIP!"},{"id":"0x0100B610138F8000","name":"Zombie Blast Crew"},{"id":"0x0100B7700BB7A000","name":"Monster Loves You"},{"id":"0x0100B8500D570000","name":"Moero Chronicle™ Hyper"},{"id":"0x0100BA8001DC6000","name":"ACA NEOGEO METAL SLUG 3"},{"id":"0x0100BD8011BCC000","name":"Broken Lines"},{"id":"0x0100BE200C34A000","name":"Snowboarding The Next Phase"},{"id":"0x0100BF200CD74000","name":"Crashbots"},{"id":"0x0100BF500E94E000","name":"Dream Daddy: A Dad Dating Simulator"},{"id":"0x0100BF9011B52000","name":"Just Dance® 2021"},{"id":"0x0100C5B009804000","name":"Arcade Archives MAT MANIA EXCITING HOUR"},{"id":"0x0100C61011DEA000","name":"Match"},{"id":"0x0100C6200A0AA000","name":"Enigmatis 2: The Mists of Ravenwood"},{"id":"0x0100C6A00E94A000","name":"Panzer Dragoon: Remake"},{"id":"0x0100C7600AF00000","name":"Red Hot Ricochet"},{"id":"0x0100CB100D17A000","name":"Tales From Space: Mutant Blobs Attack"},{"id":"0x0100CDD00DA70000","name":"Artifact Adventure Gaiden DX"},{"id":"0x0100CE700F62A000","name":"Thief of Thieves: Season One"},{"id":"0x0100D3F009810000","name":"Arcade Archives Ninja-Kid II"},{"id":"0x0100D4F00DD02000","name":"DOOM II (Classic)"},{"id":"0x0100D99009734000","name":"White Night"},{"id":"0x0100D9B00DB5E000","name":"Super Cane Magic ZERO"},{"id":"0x0100DC800A602000","name":"GRID™ Autosport"},{"id":"0x0100DE000C2E4000","name":"Suicide Guy: Sleepin' Deeply"},{"id":"0x0100DFF00DA4E000","name":"Hook"},{"id":"0x0100E0E00C518000","name":"The Long Journey Home"},{"id":"0x0100E0E0121D6000","name":"Bright Paw"},{"id":"0x0100E1700C31C000","name":"GRIS"},{"id":"0x0100E2800C364000","name":"Donut County"},{"id":"0x0100E2E00CB14000","name":"Tokyo School Life"},{"id":"0x0100E4400C0A2000","name":"Battery Jam"},{"id":"0x0100E5500C756000","name":"Cannibal Cuisine"},{"id":"0x0100E5F00643C000","name":"Astro Bears Party"},{"id":"0x0100E6300F854000","name":"Go! Fish Go!"},{"id":"0x0100E73010754000","name":"Rascal Fight"},{"id":"0x0100EDB01005C000","name":"Galaxy Warfighter"},{"id":"0x0100EEE012FE4000","name":"Logic Puzzle Collection: Sudoku - Permudoku - Nonodoku"},{"id":"0x0100EFB01272E000","name":"BFF or Die"},{"id":"0x0100F1400B0D6000","name":"Silence"},{"id":"0x0100F3400A432000","name":"Toki"},{"id":"0x010037700E9B8000","name":"STEINS;GATE 0"},{"id":"0x0100383012DF2000","name":"Gems of Magic: Lost Family"},{"id":"0x010039000B68E000","name":"MY HERO ONE'S JUSTICE"},{"id":"0x01003A200BD8A000","name":"InkyPen"},{"id":"0x01003A5001DBA000","name":"ACA NEOGEO OVER TOP"},{"id":"0x01003AB012F00000","name":"Life of Boris: Super Slav"},{"id":"0x01003B900ED8C000","name":"Mars Power Industries"},{"id":"0x01003DD00D658000","name":"Bulletstorm: Duke of Switch Edition"},{"id":"0x01003DE00C95E000","name":"Mary Skelter 2"},{"id":"0x01004070022F0000","name":"Ittle Dew 2+"},{"id":"0x010043200F874000","name":"NekoMiko"},{"id":"0x0100464009294000","name":"Kona"},{"id":"0x010047F012BE2000","name":"密室のサクリファイス/ABYSS OF THE SACRIFICE"},{"id":"0x010048F00CC7C000","name":"Out There: Ω The Alliance - Demo"},{"id":"0x01004900113F8000","name":"RollerCoaster Tycoon 3 Complete Edition"},{"id":"0x010049C0075F0000","name":"OPUS: The Day We Found Earth"},{"id":"0x01004A4011CB4000","name":"Bubble"},{"id":"0x01004B100A5CC000","name":"Hob: The Definitive Edition"},{"id":"0x010050300AC28000","name":"Pure / Electric Love \"Everyone else!\" - Ema Sakura -"},{"id":"0x0100D560106E0000","name":"DreamGallery"},{"id":"0x0100D6200933C000","name":"Nickelodeon Kart Racers"},{"id":"0x0100D73012850000","name":"THE KNIGHT OF QUEEN"},{"id":"0x0100D7F00EC64000","name":"Overlanders"},{"id":"0x0100D9900F220000","name":"Maitetsu:Pure Station"},{"id":"0x0100DB100BBCE000","name":"Afterparty"},{"id":"0x0100DD300CF3A000","name":"Timespinner"},{"id":"0x0100DDE00DAC4000","name":"Cubixx"},{"id":"0x0100DE600BEEE000","name":"SAINTS ROW®: THE THIRD™ - THE FULL PACKAGE"},{"id":"0x0100DF100B97C000","name":"X-Morph: Defense"},{"id":"0x0100E0300EB04000","name":"Woodle Tree 2: Deluxe"},{"id":"0x0100E1800CD2A000","name":"Awe"},{"id":"0x0100E2D0128E6000","name":"Monster Blast"},{"id":"0x0100E5500FE0A000","name":"Please The Gods"},{"id":"0x0100E6C00EB12000","name":"Classic Snake Adventures"},{"id":"0x0100E95011FDC000","name":"Aircraft Evolution"},{"id":"0x0100E9A00B0BC000","name":"NoReload Heroes"},{"id":"0x0100EAE010560000","name":"Captain Tsubasa: Rise of New Champions"},{"id":"0x0100EC3012AAC000","name":"REPLICA"},{"id":"0x0100ED200B6FC000","name":"DreamWorks Dragons Dawn of New Riders"},{"id":"0x0100F6F00B9E8000","name":"Saboteur!"},{"id":"0x0100F89003BC8000","name":"The Sexy Brutale"},{"id":"0x0100FDB0092B4000","name":"Where Are My Friends?"},{"id":"0x0100FE0010886000","name":"Aqua Lungers"},{"id":"0x0100DDD0085A4000","name":"Sushi Striker™: The Way of Sushido"},{"id":"0x0100DEB00D5A8000","name":"Battle Worlds: Kronos"},{"id":"0x0100E0400E320000","name":"Warlocks 2: God Slayers"},{"id":"0x0100E4300C278000","name":"Hell is Other Demons"},{"id":"0x0100E8000D5B8000","name":"Devil May Cry"},{"id":"0x0100EA900FB2C000","name":"Hayfever"},{"id":"0x0100EB8011B0C000","name":"Gnome More War"},{"id":"0x0100EBB00D2F4000","name":"Neo Cab"},{"id":"0x0100ECB00A0FC000","name":"Let's Sing 2018"},{"id":"0x0100ED301196A000","name":"Undead Darlings ~no cure for love~"},{"id":"0x0100EDA00BBBE000","name":"Fly O'Clock"},{"id":"0x0100EE6002B48000","name":"ACA NEOGEO FATAL FURY"},{"id":"0x0100EF100BD96000","name":"Joggernauts"},{"id":"0x0100F0400E850000","name":"Metro: Last Light Redux"},{"id":"0x0100F0A00C2F2000","name":"Assault On Metaltron"},{"id":"0x0100F110029C8000","name":"Yooka-Laylee"},{"id":"0x0100F1900B144000","name":"REKT! High Octane Stunts"},{"id":"0x0100F2400D434000","name":"MachiKnights -Blood bagos-"},{"id":"0x0100F4500A47E000","name":"INSTANT TENNIS"},{"id":"0x0100F7000464A000","name":"Super Beat Sports™"},{"id":"0x0100BE800E6D8000","name":"DEMON'S TILT"},{"id":"0x0100BF500207C000","name":"Bloodstained: Ritual of the Night"},{"id":"0x0100C3300C68C000","name":"Creepy Road"},{"id":"0x0100C3A00BB76000","name":"Fimbul"},{"id":"0x0100C41009E1A000","name":"Mimpi Dreams"},{"id":"0x0100C6000EEA8000","name":"Warhammer 40,000: Mechanicus"},{"id":"0x0100C6800B934000","name":"Brawlhalla"},{"id":"0x0100C7600C7D6000","name":"Air Conflicts: Pacific Carriers"},{"id":"0x0100C7800C7A0000","name":"Arcade Archives T.N.K III"},{"id":"0x0100C920092B0000","name":"Energy Balance"},{"id":"0x0100CCA00EDCE000","name":"FLYING GIRL STRIKER"},{"id":"0x0100D04010E38000","name":"Touchdown Pinball"},{"id":"0x0100D1B0102B0000","name":"Super Battle Cards"},{"id":"0x0100D230069CC000","name":"Johnny Turbo's Arcade: Wizard Fire"},{"id":"0x0100D2B00BC54000","name":"Heroes of Hammerwatch - Ultimate Edition"},{"id":"0x0100D3A00409E000","name":"LEGO® Marvel Super Heroes 2"},{"id":"0x0100D45010F16000","name":"EAGLETALON vs. HORDE OF THE FLIES"},{"id":"0x0100D740110C0000","name":"Alder's Blood"},{"id":"0x0100D9200D51E000","name":"Quest for the Golden Duck"},{"id":"0x0100EA500902E000","name":"ChromaGun Demo"},{"id":"0x0100EA6004516000","name":"MEMBRANE"},{"id":"0x0100ECE00D13E000","name":"Hard West"},{"id":"0x0100F1300EC60000","name":"One Night Stand"},{"id":"0x0100F1800B3EC000","name":"Plunge"},{"id":"0x0100F2100D8F2000","name":"Battle Supremacy - Ground Assault"},{"id":"0x0100F2A005C98000","name":"Gorogoa"},{"id":"0x0100F2D00C7DE000","name":"Exception"},{"id":"0x0100F3900D0F0000","name":"Food Truck Tycoon"},{"id":"0x0100F6300F94C000","name":"UORiS DX"},{"id":"0x0100F6F0118B8000","name":"My Butler"},{"id":"0x0100F93004288000","name":"Puzzle Adventure Blockle"},{"id":"0x0100FAF009562000","name":"Deep Ones"},{"id":"0x0100FCF00F6CC000","name":"Day and Night"},{"id":"0x0100FDC00D0C0000","name":"Slender: The Arrival"},{"id":"0x0100FFA0093E8000","name":"FIFA 19"},{"id":"0x010099600FC2A000","name":"Windmill Kings"},{"id":"0x01009A300C836000","name":"Knights of Pen and Paper Bundle"},{"id":"0x01009B90006DC000","name":"Super Mario Maker™ 2"},{"id":"0x0100A5101210E000","name":"UBERMOSH:BLACK"},{"id":"0x0100A5400AC86000","name":"ARMS Demo"},{"id":"0x0100A5B00BDC6000","name":"FINAL FANTASY VII"},{"id":"0x0100A8B00F0B4000","name":"HYPERCHARGE Unboxed"},{"id":"0x0100ABC009708000","name":"A Gummy's Life"},{"id":"0x0100AD100E8B2000","name":"The Ninja Saviors: Return of the Warriors"},{"id":"0x0100AE000AEBC000","name":"Angels of Death"},{"id":"0x0100AE9008744000","name":"Claws of Furry"},{"id":"0x0100B0E00F074000","name":"Haunted: Poppy's Nightmare"},{"id":"0x0100B1000AC3A000","name":"Shift Happens"},{"id":"0x0100B4700C57E000","name":"Bow to Blood: Last Captain Standing"},{"id":"0x0100B56011502000","name":"Yumeutsutsu Re:After"},{"id":"0x0100B7E0102E4000","name":"Drawngeon: Dungeons of Ink and Paper"},{"id":"0x0100BCD010E88000","name":"Brotherhood United"},{"id":"0x0100BE3013A38000","name":"Landflix Odyssey"},{"id":"0x0100BEB00AAF8000","name":"Active Soccer 2019"},{"id":"0x0100BF600BF26000","name":"Chocobo's Mystery Dungeon EVERY BUDDY!"},{"id":"0x0100C6C009812000","name":"Arcade Archives Super Dodge Ball"},{"id":"0x0100C6C00D7C0000","name":"Astro Bears"},{"id":"0x0100C7C00F77C000","name":"This Strange Realm Of Mine"},{"id":"0x0100C8400B248000","name":"GUILTY GEAR"},{"id":"0x0100C8B00C4AE000","name":"SpeedRunners"},{"id":"0x0100C9E00F54C000","name":"Air Missions: HIND"},{"id":"0x0100CD100BEA4000","name":"ROCK BOSHERS DX: Director's Cut"},{"id":"0x0100CFD00BF3E000","name":"Galaxy of Pen & Paper +1 Edition"},{"id":"0x0100D87002EE0000","name":"Snipperclips – Cut it out, together! ™ Demo"},{"id":"0x0100D96011D0E000","name":"Debtor"},{"id":"0x0100DB5012366000","name":"What The Fork"},{"id":"0x0100DC00115FA000","name":"Ant-Gravity: Tiny's Adventure"},{"id":"0x0100DEB00ACE2000","name":"Fishing Star World Tour"},{"id":"0x0100DF900FC52000","name":"Tiny Gladiators"},{"id":"0x0100E2F011DE8000","name":"Batu Ta Batu"},{"id":"0x0100E4D00A690000","name":"PixelJunk™ Monsters 2"},{"id":"0x0100E5C00DC46000","name":"Ultracore"},{"id":"0x0100E5E00C464000","name":"SUPER DRAGON BALL HEROES WORLD MISSION"},{"id":"0x010067A00D35E000","name":"GIGANTIC ARMY"},{"id":"0x010068400ABB6000","name":"Rogue Singularity"},{"id":"0x01006A800016E000","name":"Super Smash Bros.™ Ultimate"},{"id":"0x01006C70102EA000","name":"Orn: The Tiny Forest Sprite"},{"id":"0x01006FD0080B2000","name":"Overcooked! 2"},{"id":"0x010076D0122A8000","name":"Spinch"},{"id":"0x010078800869A000","name":"Super Daryl Deluxe"},{"id":"0x01007A4008486000","name":"Enchanting Mahjong Match"},{"id":"0x01007CC0130C6000","name":"Renzo Racer"},{"id":"0x01007FC012FD4000","name":"Georifters"},{"id":"0x010082C011B24000","name":"Despotism 3k"},{"id":"0x01008300128F2000","name":"Dungeon Solver"},{"id":"0x010084000DAF6000","name":"Vectronom"},{"id":"0x010084D00A134000","name":"War Theatre"},{"id":"0x010086300486E000","name":"ACA NEOGEO METAL SLUG 2"},{"id":"0x010086D011EB8000","name":"Horace"},{"id":"0x0100870012912000","name":"Burst Shooter"},{"id":"0x010089D00E28A000","name":"FUSER™"},{"id":"0x01008CA00FAE8000","name":"STAR WARS™ Jedi Knight: Jedi Academy"},{"id":"0x01008E2013144000","name":"Paw Paw Paw"},{"id":"0x0100EBC00FE14000","name":"Nickelodeon Kart Racers 2: Grand Prix"},{"id":"0x0100EC800800C000","name":"NARUTO SHIPPUDEN: Ultimate Ninja Storm Trilogy"},{"id":"0x0100EDA00D866000","name":"Submerged"},{"id":"0x0100F1400BA88000","name":"Quarantine Circular"},{"id":"0x0100F2300D4BA000","name":"Darksiders Genesis"},{"id":"0x0100F3700C09C000","name":"Find The Balance"},{"id":"0x0100F3D013568000","name":"Tiny World Racing"},{"id":"0x0100F490066A6000","name":"Pool BILLIARD"},{"id":"0x0100F4F00FD4E000","name":"Witch & Hero 2"},{"id":"0x0100F5100E9DE000","name":"Super Pixel Racers"},{"id":"0x0100F5E008AA0000","name":"LOST SPHEAR Demo"},{"id":"0x0100F6D00D83E000","name":"SteamWorld Quest: Hand of Gilgamech"},{"id":"0x0100F7600F3B8000","name":"Tangle Tower"},{"id":"0x0100F7900D8A4000","name":"Cruel Bands Career"},{"id":"0x0100FB500631E000","name":"ATOMINE"},{"id":"0x0100FBD00F5F6000","name":"Remothered: Broken Porcelain"},{"id":"0x0100FF100FB68000","name":"Finding Teddy 2 : Definitive Edition"},{"id":"0x0100FF500E34A000","name":"Xenoblade Chronicles™ Definitive Edition"},{"id":"0x0100F5700C9A8000","name":"MIND: Path to Thalamus"},{"id":"0x0100F5700DE18000","name":"Rally Rock 'N Racing"},{"id":"0x0100F6200B7D4000","name":"fault - milestone one"},{"id":"0x0100FB700D224000","name":"LAYTON’S MYSTERY JOURNEY™: Katrielle and the Millionaires’ Conspiracy - Deluxe Edition"},{"id":"0x0100F8000B37E000","name":"Six Sides of the World"},{"id":"0x0100F9700C73E000","name":"Monkey Wall"},{"id":"0x0100FBC007EAE000","name":"Tesla vs Lovecraft"},{"id":"0x0100FC5009E10000","name":"Holy Potatoes! A Weapon Shop?!"},{"id":"0x0100FE000BA42000","name":"Battle Group 2"},{"id":"0x0100E64010BAA000","name":"realMyst: Masterpiece Edition"},{"id":"0x0100EBC00ECA8000","name":"Tap Skaters"},{"id":"0x0100EBE002B3E000","name":"ACA NEOGEO METAL SLUG"},{"id":"0x0100ED100B160000","name":"Evoland Legendary Edition"},{"id":"0x0100EE50122BC000","name":"The Pew Pew Bundle Vol. 1"},{"id":"0x0100EEA00E3EA000","name":"One-Way Ticket"},{"id":"0x0100EEB0122BA000","name":"MazezaM - Puzzle Game"},{"id":"0x0100EFE00A3C2000","name":"Eyes: The Horror Game"},{"id":"0x0100F0700CD8E000","name":"Alvastia Chronicles"},{"id":"0x0100F090122D2000","name":"Ring of Pain"},{"id":"0x0100F0D004CAE000","name":"PAN-PAN A tiny big adventure"},{"id":"0x0100F2100AA5C000","name":"Truck and Logistics Simulator"},{"id":"0x0100F2C00EED4000","name":"Please Teach Me Onedari Shogi"},{"id":"0x0100F38012182000","name":"Retro Classix 2-in-1 Pack: Gate of Doom & Wizard Fire"},{"id":"0x0100F4500BBCC000","name":"Brief Battles"},{"id":"0x0100F4E006B32000","name":"The Men of Yoshiwara: Ohgiya"},{"id":"0x0100F65011E52000","name":"Mittelborg: City of Mages"},{"id":"0x0100F6B01188E000","name":"Little Big Workshop"},{"id":"0x0100FEE00A64E000","name":"Warframe"},{"id":"0x01005250123B8000","name":"GRISAIA PHANTOM TRIGGER 03"},{"id":"0x01005950022EC000","name":"Blade Strangers"},{"id":"0x01005A5011A44000","name":"Nexomon: Extinction"},{"id":"0x01005A600C318000","name":"SMITE"},{"id":"0x01005A700ECF8000","name":"Sunless Sea: Zubmariner Edition"},{"id":"0x01005C500D690000","name":"The Park"},{"id":"0x01005D100807A000","name":"Pokémon™ Quest"},{"id":"0x01005F8010D98000","name":"Knightin'+"},{"id":"0x010063E00BBDC000","name":"1001 Ultimate Mahjong ™ 2"},{"id":"0x010063E0104BE000","name":"Is It Wrong to Try to Pick Up Girls in a Dungeon? Familia Myth Infinite Combate"},{"id":"0x0100681011B56000","name":"Struggling"},{"id":"0x010069800D2B4000","name":"JUNK PLANET"},{"id":"0x0100699008792000","name":"ACA NEOGEO THE LAST BLADE 2"},{"id":"0x0100699012DF6000","name":"Match Three: Pirates! Heir to Davy Jones"},{"id":"0x01006AA00EE44000","name":"Otokomizu"},{"id":"0x01006BD001E06000","name":"Minecraft: Nintendo Switch Edition"},{"id":"0x01006D00109FE000","name":"Hidden Through Time"},{"id":"0x010071000AAFC000","name":"Deep Ones Demo"},{"id":"0x010076F00EBE4000","name":"BOSSGARD"},{"id":"0x010077B00BDD8000","name":"Professional Farmer: Nintendo Switch™ Edition"},{"id":"0x010077B00E046000","name":"Spyro™ Reignited Trilogy"},{"id":"0x01007900080B6000","name":"Bomber Crew"},{"id":"0x01007B000C834000","name":"Asphalt 9: Legends"},{"id":"0x01007D300CD8C000","name":"Asdivine Hearts II"},{"id":"0x01007EA01252E000","name":"Golf Zero"},{"id":"0x01007F200B0C0000","name":"Ys VIII: Lacrimosa of DANA"},{"id":"0x01007F30113A6000","name":"The Jackbox Party Pack 7"},{"id":"0x010081C008164000","name":"Gunhouse"},{"id":"0x010082900C5FA000","name":"New Star Manager"},{"id":"0x0100865011CBC000","name":"Arcade Archives VS. BASEBALL"},{"id":"0x01008680118BA000","name":"Dangerous Relationship"},{"id":"0x010087D0084A8000","name":"Hello Kitty Kruisers With Sanrio Friends"},{"id":"0x0100888011CB2000","name":"Street Power Soccer"},{"id":"0x010088E003A76000","name":"Ninja Shodown"},{"id":"0x0100896011A60000","name":"Dark Burial"},{"id":"0x01008C800E654000","name":"Gunvolt Chronicles: Luminous Avenger iX"},{"id":"0x01008D300C50C000","name":"Super Nintendo Entertainment System™ - Nintendo Switch Online"},{"id":"0x01008F2005154000","name":"South Park™: The Fractured but Whole™ - Standard Edition"},{"id":"0x010096000EEBA000","name":"Welcome to Hanwell"},{"id":"0x0100EAB00605C000","name":"Poly Bridge"},{"id":"0x0100EEC00A262000","name":"D/Generation HD"},{"id":"0x0100F0C011A0C000","name":"Captain Sabertooth and the Magic Diamond"},{"id":"0x0100F210061E8000","name":"Hollow"},{"id":"0x0100F2300A5DA000","name":"Think of the Children"},{"id":"0x0100F5400AB6C000","name":"Alchemic Jousts"},{"id":"0x0100FA800A1F4000","name":"EXORDER"},{"id":"0x0100FBE0113CC000","name":"Tropico 6 - Nintendo Switch™ Edition"},{"id":"0x0100FF1012C1C000","name":"Drawn to Life: Two Realms"},{"id":"0x0100FF9003F10000","name":"Splasher"},{"id":"0x0100EF701265E000","name":"Pangeon"},{"id":"0x0100EFE009424000","name":"Animal Super Squad"},{"id":"0x0100F1200F6D8000","name":"Pushy and Pully in Blockland"},{"id":"0x0100F1500CC64000","name":"Venture Towns"},{"id":"0x0100F18010BA0000","name":"Speed 3: Grand Prix"},{"id":"0x0100F45006A00000","name":"Oh...Sir! The Hollywood Roast"},{"id":"0x0100F4F00F098000","name":"Mekabolt"},{"id":"0x0100FAA00B168000","name":"Hello Neighbor"},{"id":"0x0100DA70115E6000","name":"Caretaker"},{"id":"0x0100E04009BD4000","name":"Spot The Difference"},{"id":"0x0100E2800BBC2000","name":"Galactic Defence Squadron"},{"id":"0x0100E29001298000","name":"Has-Been Heroes"},{"id":"0x0100E2E00EA42000","name":"Reventure"},{"id":"0x0100E7400DBE2000","name":"Gym Hero - Idle Fitness Tycoon"},{"id":"0x0100E7B00BF24000","name":"Funghi Explosion"},{"id":"0x0100E95010F6A000","name":"Game Dev Tycoon"},{"id":"0x0100EA300EFF0000","name":"Arcade Archives VIGILANTE"},{"id":"0x0100EBB012400000","name":"Arcade Archives Burger Time"},{"id":"0x0100EBE00D5B0000","name":"Meow Motors"},{"id":"0x0100EC000D39A000","name":"Tetsumo Party"},{"id":"0x0100ECE00C0C4000","name":"Fury Unleashed"},{"id":"0x0100F0C012C10000","name":"Space Invaders Forever"},{"id":"0x0100F46011B50000","name":"Asterix & Obelix XXL: Romastered"},{"id":"0x0100F8900A5B0000","name":"The Way Remastered"},{"id":"0x0100FCA00C8D0000","name":"BombFall"},{"id":"0x0100CC80013D6000","name":"The Jackbox Party Pack 3"},{"id":"0x0100CD40104DE000","name":"Actual Sunlight"},{"id":"0x0100CD900FB24000","name":"WARTILE"},{"id":"0x0100CE400E34E000","name":"Thief Simulator"},{"id":"0x0100CF10099B2000","name":"911 Operator"},{"id":"0x0100CF8003E70000","name":"Harvest Moon®: Light of Hope Special Edition"},{"id":"0x0100D1201183A000","name":"Quell Memento"},{"id":"0x0100D6B012DE8000","name":"Candy 2048 Challenge"},{"id":"0x0100D7000F17A000","name":"Arcade Archives Mr.GOEMON"},{"id":"0x0100D71004694000","name":"Minecraft"},{"id":"0x0100D9D00EE8C000","name":"Atelier Ayesha: The Alchemist of Dusk DX"},{"id":"0x0100DA2011F18000","name":"Castle Pals"},{"id":"0x0100DD700D95E000","name":"Little Shopping"},{"id":"0x0100E2800EF4A000","name":"Fear of Traffic"},{"id":"0x0100E2B00E064000","name":"ZOMB"},{"id":"0x0100E4401139C000","name":"Filament"},{"id":"0x0100E4600D31A000","name":"Mechstermination Force"},{"id":"0x0100E4900D266000","name":"Jet Kave Adventure"},{"id":"0x0100E5900F49A000","name":"Othercide"},{"id":"0x0100E6100E3A0000","name":"Eight-Minute Empire: Complete Edition"},{"id":"0x01008EA00C27E000","name":"DYING: Reborn - Nintendo Switch Edition"},{"id":"0x01008EC005F88000","name":"Super Ping Pong Trick Shot"},{"id":"0x01008F200C880000","name":"Mugsters Demo"},{"id":"0x01008F600CA1A000","name":"Basketball"},{"id":"0x0100907011392000","name":"OkunoKA Madness"},{"id":"0x01009070133D0000","name":"Road 3 Pack"},{"id":"0x0100922008008000","name":"NARUTO SHIPPUDEN: Ultimate Ninja STORM 2"},{"id":"0x0100924013162000","name":"Isolation Story"},{"id":"0x0100936011556000","name":"Root Double -Before Crime * After Days- Xtend Edition"},{"id":"0x010093D00C726000","name":"Downwell"},{"id":"0x010094C00E180000","name":"Ghost Parade"},{"id":"0x0100956007854000","name":"Woodle Tree Adventures"},{"id":"0x0100978009B98000","name":"A Normal Lost Phone"},{"id":"0x010097D006DEA000","name":"Pikuniku"},{"id":"0x010097E00ADC2000","name":"Feral Fury"},{"id":"0x01009D9010B9E000","name":"Rainbows, toilets & unicorns"},{"id":"0x01009E40095EE000","name":"Radiation Island"},{"id":"0x0100A0800E974000","name":"Laser Kitty Pow Pow"},{"id":"0x0100A19011EEE000","name":"Creepy Tale"},{"id":"0x0100E7F00FFB8000","name":"Resolutiion"},{"id":"0x0100E940044F2000","name":"Neversong"},{"id":"0x0100EDC00AAAA000","name":"It's Spring Again"},{"id":"0x0100F03011616000","name":"Re:Turn - One Way Trip"},{"id":"0x0100F5D00C812000","name":"Wondershot"},{"id":"0x0100F78002040000","name":"Troll and I™"},{"id":"0x0100F92005D54000","name":"Swim Out"},{"id":"0x0100F9B012C6A000","name":"Here Be Dragons"},{"id":"0x0100FB700DE1A000","name":"Mini Trains"},{"id":"0x0100FC000AFC6000","name":"ACA NEOGEO 3 COUNT BOUT"},{"id":"0x01009800100B4000","name":"Lydia"},{"id":"0x010099100E03C000","name":"Puzzle Herder"},{"id":"0x010099700BF10000","name":"Madorica Real Estate"},{"id":"0x01009AB00BDFE000","name":"The Stillness of the Wind"},{"id":"0x01009D60080B4000","name":"SpiritSphere DX"},{"id":"0x0100A0C00D846000","name":"Fell Seal: Arbiter's Mark"},{"id":"0x0100A0E005E42000","name":"Light Fingers"},{"id":"0x0100A3900C3E2000","name":"Paper Mario™: The Origami King"},{"id":"0x0100A4100DDC2000","name":"R-Type Dimensions EX Demo Version"},{"id":"0x0100A4300B4FC000","name":"LongStory: A dating game for the real world"},{"id":"0x0100A5900472E000","name":"Chess Ultra"},{"id":"0x0100A5C00D162000","name":"Cuphead"},{"id":"0x0100A62002042000","name":"RiME"},{"id":"0x0100A66003384000","name":"Hulu"},{"id":"0x0100A790133FC000","name":"Mercenaries Blaze: Dawn of the Twin Dragons"},{"id":"0x0100A8C001DCE000","name":"ACA NEOGEO NAM-1975"},{"id":"0x0100AD700CBBE000","name":"Shadows of Adam"},{"id":"0x0100AFE00DDAC000","name":"Royal Roads"},{"id":"0x0100B1200ADEA000","name":"Loot Monkey: Bling Palace"},{"id":"0x0100B13007A6A000","name":"The Gardens Between"},{"id":"0x0100E9B01243C000","name":"Forest Guardian"},{"id":"0x0100E9C010EA8000","name":"Rise of Insanity"},{"id":"0x0100EB800868C000","name":"Azkend 2: The World Beneath"},{"id":"0x0100ED700469A000","name":"Deru - The Art of Cooperation"},{"id":"0x0100EF5008FC4000","name":"Nippon Marathon"},{"id":"0x0100EFF0137DA000","name":"Arcade Archives ZERO TEAM"},{"id":"0x0100F15003E64000","name":"Fire Emblem Warriors"},{"id":"0x0100F2C00F060000","name":"Doodle Derby"},{"id":"0x0100F4700B2E0000","name":"Moonlighter"},{"id":"0x0100F5400D534000","name":"Pillar Demo"},{"id":"0x0100F6200CBE0000","name":"Teddy the Wanderer: Kayaking"},{"id":"0x0100F8100B982000","name":"Monster Energy Supercross - The Official Videogame 2"},{"id":"0x0100F9A012892000","name":"Ord."},{"id":"0x0100FE200AF48000","name":"VASARA Collection"},{"id":"0x0100FE400EBBC000","name":"Do Not Feed the Monkeys"},{"id":"0x0100FF1004D56000","name":"Ace of Seafood"},{"id":"0x0100FF5005B76000","name":"STRIKERS1945 for Nintendo Switch"},{"id":"0x0100A3B009838000","name":"Arcade Archives KIKI KAIKAI"},{"id":"0x0100A6000ACEA000","name":"Punch Club"},{"id":"0x0100A6A00A5D0000","name":"Save me Mr Tako: Tasukete Tako-San"},{"id":"0x0100A7900BADA000","name":"MechaNika"},{"id":"0x0100A9A0088FE000","name":"Max: The Curse of Brotherhood (Demo)"},{"id":"0x0100AAA00DD4C000","name":"Lucah: Born of a Dream"},{"id":"0x0100ADD00E17E000","name":"Heave Ho"},{"id":"0x0100B0700E944000","name":"80 DAYS"},{"id":"0x0100B6200D8D2000","name":"Five Nights at Freddy's"},{"id":"0x0100B78006CCA000","name":"Neo ATLAS 1469"},{"id":"0x0100B9F00B58E000","name":"DRAGON BALL XENOVERSE 2 Lite Version"},{"id":"0x0100B9F00C162000","name":"Space Blaze"},{"id":"0x0100BAA00CDFA000","name":"Mahjong Stories: Vampire Romance"},{"id":"0x0100BB800E0D2000","name":"Jigsaw Masterpieces"},{"id":"0x0100BC2004FF4000","name":"Owlboy"},{"id":"0x0100BCC013864000","name":"jetPIN"},{"id":"0x0100BDD00EC5C000","name":"Super Mega Space Blaster Special Turbo"},{"id":"0x0100BE7010610000","name":"Circuit Dude"},{"id":"0x0100BF400AF38000","name":"Bibi & Tina – Adventures with Horses"},{"id":"0x010016D00D2C2000","name":"Pocket League Story"},{"id":"0x010019A0134E2000","name":"Dodge These Balls"},{"id":"0x01001B000D8B6000","name":"Arcade Archives WILD WESTERN"},{"id":"0x01001B10068EC000","name":"Urban Trial Playground"},{"id":"0x01001E500EA16000","name":"Path of Sin: Greed"},{"id":"0x010021A00E6CC000","name":"Ellen"},{"id":"0x010027D00F63C000","name":"Party Treats"},{"id":"0x0100293012D40000","name":"BIT.TRIP FLUX"},{"id":"0x01002A100E010000","name":"Hungry Baby: Party Treats"},{"id":"0x01002AA00C974000","name":"SMASHING THE BATTLE"},{"id":"0x01002B2004F76000","name":"GUNBARICH for Nintendo Switch"},{"id":"0x01002C100FBB6000","name":"Dude, Stop"},{"id":"0x01002D20103E0000","name":"Tower of Babel - no mercy"},{"id":"0x01002D2011850000","name":"Shovel Knight: Shovel of Hope"},{"id":"0x01002D20129FC000","name":"Beat Me!"},{"id":"0x01002DD004972000","name":"Sumer"},{"id":"0x01002DF00F76C000","name":"SAMURAI SHODOWN"},{"id":"0x01002E501015A000","name":"It came from space and ate our brains"},{"id":"0x01002E900CF38000","name":"Maid of Sker"},{"id":"0x01002EB010146000","name":"Color.Motif Deluxe"},{"id":"0x01002FC00B694000","name":"Fill-a-Pix: Phil's Epic Adventure Demo"},{"id":"0x01002FC00C6D0000","name":"Witch Thief"},{"id":"0x010031A00BC9E000","name":"EXTREME POKER"},{"id":"0x01003620068EA000","name":"Hand of Fate 2"},{"id":"0x0100398010314000","name":"Tomoyo After -It's a Wonderful Life- CS Edition"},{"id":"0x010039A00BC64000","name":"Wasteland 2: Director's Cut"},{"id":"0x01003A30012C0000","name":"LEGO® CITY Undercover"},{"id":"0x01003BD00CAAE000","name":"Wolfenstein: Youngblood"},{"id":"0x01003C100445C000","name":"Castle of Heart"},{"id":"0x01003CC00D0BE000","name":"Amnesia: Collection"},{"id":"0x01003E500F962000","name":"Tokyo Dark – Remembrance –"},{"id":"0x01003EB010008000","name":"inbento"},{"id":"0x010040E00C2D2000","name":"Marenian Tavern Story: Patty and the Hungry God"},{"id":"0x010043700EB68000","name":"TERRORHYTHM (TRRT)"},{"id":"0x010044300A65E000","name":"Defoliation"},{"id":"0x010044400E99C000","name":"BATTLE & CRASH"},{"id":"0x010046400F310000","name":"Music Racer"},{"id":"0x010049100B93E000","name":"Octahedron: Transfixed Edition"},{"id":"0x01004A200BB48000","name":"Arcade Archives OMEGA FIGHTER"},{"id":"0x0100DC4009828000","name":"Arcade Archives RAIDERS5"},{"id":"0x0100DCA00DA7E000","name":"Contra Anniversary Collection"},{"id":"0x0100DCF0093EC000","name":"Everspace™ - Stellar Edition"},{"id":"0x0100E060102AA000","name":"Blood will be Spilled"},{"id":"0x0100E18012A64000","name":"Twist&Bounce"},{"id":"0x0100E2300C4C4000","name":"Please, Don't Touch Anything"},{"id":"0x0100E3500D342000","name":"Golf Peaks"},{"id":"0x0100E470067A8000","name":"Don't Knock Twice"},{"id":"0x0100E4A00D066000","name":"Sea King"},{"id":"0x0100E6A00B960000","name":"The Princess Guide"},{"id":"0x0100E720115CC000","name":"F-117A Stealth Fighter"},{"id":"0x0100E7400B83E000","name":"Surgeon Simulator CPR"},{"id":"0x0100E7400C7C4000","name":"Abyss"},{"id":"0x0100E7A00DAC2000","name":"Street Basketball"},{"id":"0x0100E8400FDCA000","name":"Without Escape"},{"id":"0x0100EC400D54E000","name":"SWORD ART ONLINE: Hollow Realization Deluxe Edition"},{"id":"0x0100EC8004762000","name":"KORG Gadget for Nintendo Switch"},{"id":"0x0100EDD0068A6000","name":"Broken Age"},{"id":"0x0100F1401161E000","name":"INMOST"},{"id":"0x0100F43011E5A000","name":"Tcheco in the Castle of Lucio"},{"id":"0x0100BF9012AC6000","name":"Suguru Nature"},{"id":"0x0100C1A012AE0000","name":"Futoshiki Math"},{"id":"0x0100C3E00B700000","name":"SEGA AGES Space Harrier"},{"id":"0x0100C4D00D16A000","name":"Commander Keen in Keen Dreams"},{"id":"0x0100C7600E77E000","name":"Wizards: Wand of Epicosity"},{"id":"0x0100C8700B0B6000","name":"Nidhogg 2"},{"id":"0x0100C9600D028000","name":"Monster Prom: XXL"},{"id":"0x0100CA200EE70000","name":"Epic Clicker Journey"},{"id":"0x0100CEF001DC0000","name":"ACA NEOGEO WAKU WAKU 7"},{"id":"0x0100CF900FA3E000","name":"FAIRY TAIL"},{"id":"0x0100D5D00C6BE000","name":"Our World Is Ended."},{"id":"0x0100D5F00EC52000","name":"Kairobotica"},{"id":"0x0100D94012FE8000","name":"Saboteur SiO"},{"id":"0x0100D9D011E3C000","name":"Wildfire"},{"id":"0x0100DAC00BB52000","name":"Inventioneers"},{"id":"0x0100DBC0081A4000","name":"ACORN Tactics"},{"id":"0x0100DD200B59E000","name":"Inops"},{"id":"0x0100DEA00B758000","name":"Personality and Psychology Premium"},{"id":"0x0100DFC00E472000","name":"Earthfall: Alien Horde"},{"id":"0x0100E0200B980000","name":"OlliOlli: Switch Stance"},{"id":"0x0100F4500AA4E000","name":"Slice, Dice & Rice"},{"id":"0x0100F8A010AEC000","name":"Frozen Friends"},{"id":"0x0100F9900D8C8000","name":"Crazy Zen Mini Golf"},{"id":"0x0100FD200A45A000","name":"Spheroids"},{"id":"0x0100B54012798000","name":"Flatland: Prologue"},{"id":"0x0100BAC011928000","name":"Deadly Premonition 2: A Blessing In Disguise"},{"id":"0x0100BAE011072000","name":"Indie Darling Bundle Vol. 1"},{"id":"0x0100BB500EACA000","name":"STAR WARS™ Jedi Knight II: Jedi Outcast™"},{"id":"0x0100BCE012894000","name":"Two Parsecs From Earth"},{"id":"0x0100C2700E338000","name":"Heroland"},{"id":"0x0100C4F005EB4000","name":"Mecho Tales"},{"id":"0x0100C53004C52000","name":"Flat Heroes"},{"id":"0x0100C5A0115C4000","name":"CopperBell"},{"id":"0x0100C8200E942000","name":"Fin and the Ancient Mystery"},{"id":"0x0100CA200DC6E000","name":"Arcade Archives WATER SKI"},{"id":"0x0100CA500756C000","name":"Fossil Hunters"},{"id":"0x0100CCE00DDB6000","name":"Shoot 1UP DX"},{"id":"0x0100CD4011A18000","name":"Taxi Sim 2020"},{"id":"0x0100CF800C810000","name":"Coffee Crisis"},{"id":"0x0100D03003F0E000","name":"Nine Parchments"},{"id":"0x0100D0B0093D8000","name":"TorqueL -Physics Modified Edition-"},{"id":"0x0100D170038EA000","name":"ACA NEOGEO SENGOKU"},{"id":"0x0100D1700ACFC000","name":"Flood of Light"},{"id":"0x0100E3D00EA82000","name":"SIMULACRA"},{"id":"0x0100E5500B020000","name":"Neko Navy - Daydream Edition"},{"id":"0x0100E6400BCE8000","name":"Sublevel Zero Redux"},{"id":"0x0100E7000E826000","name":"Little Misfortune"},{"id":"0x0100EB700EF74000","name":"Just Black Jack"},{"id":"0x0100EE401046E000","name":"Thief Town"},{"id":"0x0100EEB005ACC000","name":"Ghost 1.0"},{"id":"0x0100EFB01316C000","name":"Arcade Archives SOCCER"},{"id":"0x0100F0400F202000","name":"No More Heroes"},{"id":"0x0100F11012BC2000","name":"Death Ray Manta SE"},{"id":"0x0100F3500D05E000","name":"Angry Bunnies: Colossal Carrot Crusade"},{"id":"0x0100F3A00F4CA000","name":"Kissed by the Baddest Bidder"},{"id":"0x0100F4C009322000","name":"Pikmin™ 3 Deluxe"},{"id":"0x0100F7300ED2C000","name":"Hoggy2"},{"id":"0x0100FCD0102EC000","name":"Squidlit"},{"id":"0x0100FF700B96C000","name":"Snake vs Snake"},{"id":"0x0100D4A00B284000","name":"ARK: Survival Evolved"},{"id":"0x0100D4B010DCA000","name":"Dune Sea"},{"id":"0x0100D590120D6000","name":"BringIt to MOM"},{"id":"0x0100DA900B67A000","name":"7 Billion Humans"},{"id":"0x0100DAF00D0E2000","name":"Not Tonight: Take Back Control Edition"},{"id":"0x0100DB20107BE000","name":"Boulder Dash 30th Anniversary"},{"id":"0x0100DDA00C0BC000","name":"Color Zen Kids"},{"id":"0x0100DF9005E7A000","name":"Floor Kids"},{"id":"0x0100DFC00405E000","name":"Wheels of Aurelia"},{"id":"0x0100E000092B2000","name":"One Eyed Kutkh"},{"id":"0x0100E03009DB8000","name":"Invisiballs"},{"id":"0x0100E1800E202000","name":"Oniken: Unstoppable Edition & Odallus: The Dark Call Bundle"},{"id":"0x0100E4600F188000","name":"Oliver's Adventures in the Fairyland"},{"id":"0x0100E4C011304000","name":"The Unholy Society"},{"id":"0x0100E5400BF94000","name":"Songbird Symphony"},{"id":"0x0100E5D00CC0C000","name":"Unravel Two"},{"id":"0x0100E74007EAC000","name":"Spellspire"},{"id":"0x0100E79009A94000","name":"Dungeon Stars"},{"id":"0x0100EB500D92E000","name":"GROOVE COASTER WAI WAI PARTY!!!!"},{"id":"0x0100ED100B634000","name":"Moorhuhn Wanted"},{"id":"0x01005080105C8000","name":"Help Me Doctor"},{"id":"0x0100512010728000","name":"Totally Reliable Delivery Service"},{"id":"0x010051A00D716000","name":"Super Blood Hockey"},{"id":"0x010052B00871C000","name":"ACA NEOGEO SAMURAI SHODOWN II"},{"id":"0x010052C00ABFA000","name":"Snakes & Ladders"},{"id":"0x01005350126E0000","name":"Cooking Tycoons 2 - 3 in 1 Bundle"},{"id":"0x010056500CAD8000","name":"Beyond Enemy Lines: Covert Operations"},{"id":"0x010057500E744000","name":"Ghost Grab 3000"},{"id":"0x010058C00E25A000","name":"Pocket Harvest"},{"id":"0x010058F010296000","name":"GERRRMS"},{"id":"0x01005A70096FA000","name":"Kirby™ Star Allies Demo"},{"id":"0x01005D701264A000","name":"SpyHack"},{"id":"0x01005E7013476000","name":"Mad Father"},{"id":"0x01005EC00BEEC000","name":"Iron Crypticle"},{"id":"0x01005FF002E2A000","name":"Rayman® Legends Definitive Edition"},{"id":"0x010062F00CAE2000","name":"Art of Balance DEMO"},{"id":"0x010065500C980000","name":"Pic-a-Pix Pieces"},{"id":"0x010065500ED96000","name":"Mystic Vale"},{"id":"0x010067D00AC46000","name":"Quad Fighter K"},{"id":"0x010069100B7F0000","name":"The Caligula Effect: Overdose"},{"id":"0x0100EDC00E35A000","name":"Arcade Archives CLU CLU LAND"},{"id":"0x0100F3500C70C000","name":"Jet Lancer"},{"id":"0x0100F4100AF16000","name":"Back to Bed"},{"id":"0x0100F8A00853C000","name":"Wandersong"},{"id":"0x0100F900046C4000","name":"Mercenary Kings: Reloaded Edition"},{"id":"0x0100F9D00C598000","name":"Spoiler Alert"},{"id":"0x0100FE10127F4000","name":"Puddle Knights"},{"id":"0x01006A600623E000","name":"Yōdanji"},{"id":"0x01006A600B5E6000","name":"Blue Rider"},{"id":"0x01006C3011C56000","name":"Feathery Ears"},{"id":"0x01006CF00CFA4000","name":"Operencia: The Stolen Sun"},{"id":"0x010070600DFE4000","name":"Let's Go Nuts"},{"id":"0x01007130114CC000","name":"Through the Darkest of Times"},{"id":"0x010071E011308000","name":"Puzzles for Toddlers & Kids: Animals, Cars and more"},{"id":"0x010072800B1FC000","name":"Toy Stunt Bike: Tiptop's Trials (Demo)"},{"id":"0x0100735004898000","name":"The Lion's Song"},{"id":"0x010074500699A000","name":"Timber Tennis: Versus"},{"id":"0x010079100D950000","name":"Secret Files 2: Puritas Cordis"},{"id":"0x01007C30129FE000","name":"Of Tanks and Demons III"},{"id":"0x01007E100EFA8000","name":"Habroxia"},{"id":"0x01007FC011CF0000","name":"Arcade Archives Pettan Pyuu"},{"id":"0x01008050130EE000","name":"Gunslugs"},{"id":"0x010087D00C82E000","name":"Kiai Resonance"},{"id":"0x010088100EE4E000","name":"Talk it Out: Handheld Game"},{"id":"0x010088801200A000","name":"Chess"},{"id":"0x010089F00A3B4000","name":"Perfect Angle"},{"id":"0x01008A000A404000","name":"The Lost Child"},{"id":"0x01008AC0115C6000","name":"RMX Real Motocross"},{"id":"0x01008E500CF02000","name":"Estiman"},{"id":"0x01008F80049C6000","name":"Unepic"},{"id":"0x01009240117A2000","name":"Piofiore: Fated Memories"},{"id":"0x010096300D9C0000","name":"Sushi Time!"},{"id":"0x010096B009E12000","name":"Holy Potatoes! We're In Space?!"},{"id":"0x010097500E552000","name":"March to a Million"},{"id":"0x010097C00AB66000","name":"CastleStorm"},{"id":"0x010098201125E000","name":"Princess Closet"},{"id":"0x010099700B01A000","name":"Valiant Hearts: The Great War"},{"id":"0x010099D00D1A4000","name":"Demolish & Build 2018"},{"id":"0x01009A9012022000","name":"Atelier Ryza 2: Lost Legends & the Secret Fairy"},{"id":"0x01009AB00B186000","name":"The Journey Down: Chapter Two"},{"id":"0x01009C400C5CA000","name":"Robbotto Demo"},{"id":"0x01009CD012CC0000","name":"Worm Jazz"},{"id":"0x0100A00012652000","name":"Restless Hero"},{"id":"0x0100A1B00C8CC000","name":"King's Heir: Rise to the Throne"},{"id":"0x0100A1D00FE54000","name":"Reknum"},{"id":"0x0100A2F012DF0000","name":"Yum Yum Line"},{"id":"0x0100A6900B77A000","name":"Everybody, Hearts!"},{"id":"0x0100A73012A74000","name":"Solitaire Spider Minimal"},{"id":"0x0100A8A00E462000","name":"Real Drift Racing"},{"id":"0x0100AA800DA42000","name":"Automachef"},{"id":"0x0100AC40108D8000","name":"Fred3ric"},{"id":"0x0100AD30095A4000","name":"Atomicrops"},{"id":"0x0100AE0006474000","name":"Stern Pinball Arcade"},{"id":"0x0100AE701287E000","name":"Space Grunts"},{"id":"0x0100AEC012F16000","name":"Tiki Brawl"},{"id":"0x0100B0600ABE6000","name":"Treachery in Beatdown City"},{"id":"0x0100B130119D0000","name":"Waifu Uncovered"},{"id":"0x0100B2700E9F4000","name":"3 Little Pigs & Bad Wolf"},{"id":"0x0100B280106A0000","name":"Aviary Attorney: Definitive Edition"},{"id":"0x0100B380022AE000","name":"Shovel Knight Showdown"},{"id":"0x0100B440119AA000","name":"JigSaw Abundance"},{"id":"0x0100B7D01147E000","name":"Awesome Pea 2"},{"id":"0x0100BDE00E4C0000","name":"Redneck Skeet Shooting"},{"id":"0x0100C1300BBC6000","name":"ABZÛ"},{"id":"0x0100C2700AEB8000","name":"Jenny LeClue - Detectivu"},{"id":"0x0100C5F012A3C000","name":"Mad Tower Tycoon"},{"id":"0x0100C8900DC54000","name":"Deer Drive Legends"},{"id":"0x0100CDC00789E000","name":"The Final Station"},{"id":"0x0100CEC003A4A000","name":"PAW Patrol: On a Roll!"},{"id":"0x0100CF600FF7A000","name":"Red Bow"},{"id":"0x0100D0800C612000","name":"SEGA AGES Thunder Force AC"},{"id":"0x0100D1500F6DC000","name":"The Incredible Adventures of Super Panda"},{"id":"0x0100D2E00C4CC000","name":"Rampage Knights"},{"id":"0x0100D6B010DC0000","name":"Cyber Complex"},{"id":"0x0100D7300E966000","name":"SELF"},{"id":"0x0100D850131B0000","name":"Touhou Luna Nights"},{"id":"0x0100D940063A0000","name":"MXGP3 - The Official Motocross Videogame"},{"id":"0x0100DE400D5A4000","name":"DODGE HARD"},{"id":"0x0100E1100D92C000","name":"Molecats"},{"id":"0x0100E22010D06000","name":"Speed Dating for Ghosts"},{"id":"0x0100E66010ADE000","name":"Crysis Remastered"},{"id":"0x0100EB701117A000","name":"Trailer Trashers"},{"id":"0x0100EB900A534000","name":"Devious Dungeon DEMO"},{"id":"0x0100EC200BFF8000","name":"Gunlord X"},{"id":"0x0100ECF008474000","name":"6180 the moon"},{"id":"0x0100EE300FC36000","name":"Glass Masquerade 2: Illusions"},{"id":"0x0100EF100AFE6000","name":"ACA NEOGEO THE KING OF FIGHTERS 2003"},{"id":"0x0100EF200DA60000","name":"The Survivalists"},{"id":"0x0100EFB00B7B8000","name":"Omvorm"},{"id":"0x0100EFE00E964000","name":"64.0"},{"id":"0x0100F0400C878000","name":"BATTLESHIP"},{"id":"0x0100F2600EA72000","name":"Override: Mech City Brawl – Super Charged Mega Edition"},{"id":"0x0100F3400D228000","name":"Ninja Village Demo"},{"id":"0x0100F73011456000","name":"Diabolic"},{"id":"0x0100FAE00F728000","name":"Teddy Gangs"},{"id":"0x0100FDF0083A6000","name":"Regalia: Of Men and Monarchs - Royal Edition"},{"id":"0x0100FE801185E000","name":"Titan Glory"},{"id":"0x010000D00F81A000","name":"Super Korotama"},{"id":"0x010001300CC4A000","name":"Unruly Heroes"},{"id":"0x01000360107BC000","name":"911 Operator Deluxe Edition"},{"id":"0x010004400B22A000","name":"Knights of Pen & Paper 2 Deluxiest Edition"},{"id":"0x0100045010A28000","name":"Arcade Archives FORMATION Z"},{"id":"0x010006A0042F0000","name":"88 Heroes - 98 Heroes Edition"},{"id":"0x010009900947A000","name":"Atelier Lydie & Suelle ~The Alchemists and the Mysterious Paintings~"},{"id":"0x01000A10041EA000","name":"The Elder Scrolls V: Skyrim"},{"id":"0x01000B20117B8000","name":"Re:ZERO -Starting Life in Another World- The Prophecy of the Throne"},{"id":"0x01000E800F326000","name":"Game Tengoku CruisinMix Special"},{"id":"0x01000F0007D92000","name":"Croixleur Sigma"},{"id":"0x01000FD00D5CC000","name":"Pig Eat Ball"},{"id":"0x010017600B532000","name":"Piczle Lines DX 500 More Puzzles!"},{"id":"0x0100184011B32000","name":"Arrest of a stone Buddha"},{"id":"0x01001B80099F6000","name":"Dracula's Legacy"},{"id":"0x01001BE0133F6000","name":"Taiko no Tatsujin: Rhythmic Adventure 1"},{"id":"0x01001E500401C000","name":"Koi DX"},{"id":"0x01001ED00F384000","name":"Tic-Tac-Letters by POWGI"},{"id":"0x01002120116C4000","name":"Splatoon™ 2 Special Demo 2020"},{"id":"0x010021700BC56000","name":"Ancient Rush 2"},{"id":"0x010021D00812A000","name":"Arcade Archives VS. SUPER MARIO BROS."},{"id":"0x010022000BCDA000","name":"Game Dev Story Demo"},{"id":"0x010024C00D734000","name":"Elevator...to the Moon! Turbo Champion's Edition"},{"id":"0x010025000CBEA000","name":"Swamp Defense 2"},{"id":"0x01002B000D97E000","name":"Raiden V: Director's Cut"},{"id":"0x01002E900CD6E000","name":"Left-Right : The Mansion"},{"id":"0x01002EC009AEE000","name":"Super Arcade Soccer"},{"id":"0x010030D00EA1C000","name":"Sparkle 4 Tales"},{"id":"0x0100361009B1A000","name":"Manifold Garden"},{"id":"0x010036700F83E000","name":"To the Moon"},{"id":"0x010037D00D568000","name":"The Swords of Ditto: Mormo's Curse"},{"id":"0x010038200A98E000","name":"In Between"},{"id":"0x010038400CD96000","name":"Spartan Fist"},{"id":"0x010038C00EC34000","name":"Under Night In-Birth Exe:Late[cl-r]"},{"id":"0x010039B011312000","name":"Colorgrid"},{"id":"0x01003B300E4AA000","name":"THE GRISAIA TRILOGY"},{"id":"0x01003B4012478000","name":"Arcade Archives BURNIN' RUBBER"},{"id":"0x01003BE00ECAE000","name":"Catch a Duck"},{"id":"0x01003D700DD8A000","name":"The Elder Scrolls®: Blades"},{"id":"0x01003DD00DE14000","name":"Croc's World 2 Demo"},{"id":"0x010042A00A9CC000","name":"Rapala Fishing Pro Series"},{"id":"0x010044500CF8E000","name":"Hellblade: Senua's Sacrifice"},{"id":"0x010045100F722000","name":"Just a Phrase by POWGI"},{"id":"0x0100465009020000","name":"Qbik"},{"id":"0x010047000E9AA000","name":"AO Tennis 2"},{"id":"0x010049101124C000","name":"CAN ANDROIDS PRAY:BLUE"},{"id":"0x01004AC0081DC000","name":"Sleep Tight"},{"id":"0x01004B001058C000","name":"Zero Strain"},{"id":"0x01004B7009F00000","name":"Miles & Kilo"},{"id":"0x01004CD00F690000","name":"Knowledge Trainer: Trivia"},{"id":"0x01004D1007926000","name":"10 Second Run RETURNS"},{"id":"0x01004DE001DC8000","name":"ACA NEOGEO SHOCK TROOPERS 2nd Squad"},{"id":"0x01004E5007E92000","name":"Ice Age Scrat's Nutty Adventure!"},{"id":"0x01004FD00D66A000","name":"Caladrius Blaze"},{"id":"0x010052A00942A000","name":"Gekido Kintaro's Revenge"},{"id":"0x010053400BFA6000","name":"ROCKETSROCKETSROCKETS"},{"id":"0x010056500AD50000","name":"Rogue Legacy"},{"id":"0x010057B00712C000","name":"Vesta"},{"id":"0x010057D0021E8000","name":"Shovel Knight: Treasure Trove"},{"id":"0x0100583001DCA000","name":"ACA NEOGEO THE KING OF FIGHTERS '99"},{"id":"0x0100591010262000","name":"Mini Puzzle Balls"},{"id":"0x01005CB013872000","name":"Fall Gummies"},{"id":"0x01005F201038C000","name":"Never Again"},{"id":"0x010062200CAD2000","name":"Let's Sing 2019"},{"id":"0x010065100E7DA000","name":"Paradox Soul"},{"id":"0x010069800D292000","name":"Fishing Universe Simulator"},{"id":"0x010069900FD68000","name":"PONG Quest"},{"id":"0x01006DB00FBF6000","name":"MetaChampions"},{"id":"0x010071400981A000","name":"Arcade Archives Karate Champ"},{"id":"0x01007550131EE000","name":"2URVIVE"},{"id":"0x010076E009C5E000","name":"Party Hard"},{"id":"0x0100775004794000","name":"Steredenn: Binary Stars"},{"id":"0x010077900440A000","name":"Island Flight Simulator"},{"id":"0x010078E012D80000","name":"Grim Legends 2: Song of the Dark Swan"},{"id":"0x01007BB00FC8A000","name":"198X"},{"id":"0x01007BC00DE68000","name":"GoFishing 3D"},{"id":"0x01007C600D778000","name":"Creature in the Well"},{"id":"0x01007C900FD96000","name":"Rolling Sky 2"},{"id":"0x0100801011C3E000","name":"Persona® 5 Strikers"},{"id":"0x010081700EDF4000","name":"WWE 2K Battlegrounds"},{"id":"0x0100829010F4A000","name":"1971 Project Helios"},{"id":"0x010087C009246000","name":"Muddledash"},{"id":"0x010087E00B0E6000","name":"Toki Tori 2+ Demo"},{"id":"0x01008CE00FDCC000","name":"Bowling"},{"id":"0x01008E9007064000","name":"WorldNeverland - Elnea Kingdom"},{"id":"0x01008FA00ACEC000","name":"RADIOHAMMER STATION"},{"id":"0x01008FA00D686000","name":"Circuits"},{"id":"0x010090B00B1F0000","name":"Hot Springs Story"},{"id":"0x010091300FFA0000","name":"Grizzland"},{"id":"0x010091D00BE38000","name":"Rock of Ages 2: Bigger & Boulder™"},{"id":"0x010092A00C4B6000","name":"Friday the 13th: The Game Ultimate Slasher Edition"},{"id":"0x010092B00C4F0000","name":"Hello Neighbor Hide and Seek"},{"id":"0x0100971011224000","name":"Concept Destruction"},{"id":"0x01009720105B2000","name":"Talking Tom Candy Run"},{"id":"0x01009C4012336000","name":"TENS!"},{"id":"0x01009DF00DB42000","name":"Airfield Mania"},{"id":"0x01009F100B0B8000","name":"Vertical Drop Heroes HD"},{"id":"0x0100A1B00DB36000","name":"Rock of Ages 3: Make & Break"},{"id":"0x0100A2200AFE2000","name":"ACA NEOGEO KIZUNA ENCOUNTER"},{"id":"0x0100AA0008736000","name":"Nihilumbra"},{"id":"0x0100AA4008210000","name":"GetAmped Mobile"},{"id":"0x0100ABE00CE7C000","name":"Switch 'N' Shoot"},{"id":"0x0100AC100CCF6000","name":"Cryogear"},{"id":"0x0100ACB010ED2000","name":"Arcade Archives MX5000"},{"id":"0x0100ADF0096F2000","name":"Samurai Aces for Nintendo Switch"},{"id":"0x0100AFA00DED4000","name":"Hookbots"},{"id":"0x0100B080104BC000","name":"Strike! Ten Pin Bowling"},{"id":"0x0100B0E010CF8000","name":"Creaks"},{"id":"0x0100B280067BE000","name":"Penguin Wars"},{"id":"0x0100B3B00D81C000","name":"Bad Dream: Fever"},{"id":"0x0100B6200D204000","name":"LOVE"},{"id":"0x0100B8B013310000","name":"Dadish"},{"id":"0x0100B8C00CFCE000","name":"Awesome Pea"},{"id":"0x0100BA500B660000","name":"Darts Up"},{"id":"0x0100BD4011FFE000","name":"Witcheye"},{"id":"0x0100BD9004AB6000","name":"Kingdom: New Lands"},{"id":"0x0100C1A00AC3E000","name":"Children of Zodiarcs"},{"id":"0x0100C2D00981E000","name":"Arcade Archives RYGAR"},{"id":"0x0100C81004780000","name":"Disco Dodgeball - REMIX"},{"id":"0x0100C8500CBC4000","name":"Conjurer Andy's Repeatable Dungeon"},{"id":"0x0100C8C00FA10000","name":"Serious Scramblers"},{"id":"0x0100CA7012CD6000","name":"Hide & Dance!"},{"id":"0x0100CD300880E000","name":"The Pinball Arcade"},{"id":"0x0100CEA007D08000","name":"Crypt of the NecroDancer: Nintendo Switch Edition"},{"id":"0x0100D1700E832000","name":"Eliza"},{"id":"0x0100D3000AEC2000","name":"Baobabs Mausoleum: DEMO"},{"id":"0x0100D5800DECA000","name":"Asemblance"},{"id":"0x0100D7800E9E0000","name":"Trials of Mana"},{"id":"0x0100DBF011922000","name":"FLATLAND Vol.1"},{"id":"0x0100DE9005170000","name":"Sports Party"},{"id":"0x0100E05011350000","name":"WINGSPAN"},{"id":"0x0100E1F003EE8000","name":"The Jackbox Party Pack 4"},{"id":"0x0100E7700C284000","name":"My Memory of Us"},{"id":"0x0100E7900C4C0000","name":"Zarvot"},{"id":"0x0100E9E00B052000","name":"Arcade Archives DONKEY KONG"},{"id":"0x0100EB600AB5E000","name":"THE Card: Poker, Texas hold 'em, Blackjack and Page One"},{"id":"0x0100EBE00DB2C000","name":"Twist & Match"},{"id":"0x0100F1A00A5DC000","name":"FRAMED Collection"},{"id":"0x0100F2B0123AE000","name":"L.O.L. Surprise! Remix: We Rule The World"},{"id":"0x0100F2B013CA4000","name":"Wrestling Empire"},{"id":"0x0100F4800F872000","name":"Prison Princess"},{"id":"0x0100F6D01250C000","name":"Spiral Memoria -The Summer I Meet Myself-"},{"id":"0x0100F9800EDFA000","name":"KATANA KAMI: A Way of the Samurai Story"},{"id":"0x0100FBD00ED24000","name":"MONKEY BARRELS"},{"id":"0x010053d0001be000","name":"Puyo Puyo™Tetris®"}] +[ + { + "id": "0x0100c2500fc20000", + "name": "Splatoon™ 3" + }, + { + "id": "0x0100a3d008c5c000", + "name": "Pokémon™ Scarlet/Violet" + }, + { + "id": "0x01003c700009c000", + "name": "Splatoon™ 2 JPN" + }, + { + "id": "0x010019401051c000", + "name": "Mario Strikers™: Battle League" + }, + { + "id": "0x0100000011d90000", + "name": "Pokémon™ Brilliant Diamond" + }, + { + "id": "0x010028600ebda000", + "name": "Super Mario 3D World + Bowser's Fury" + }, + { + "id": "0x0100c3800049c000", + "name": "Monster Hunter XX" + }, + { + "id": "0x0100B04011742000", + "name": "Monster Hunter Rise" + }, + { + "id": "0x0100559011740000", + "name": "Monster Hunter Rise" + }, + { + "id": "0x0100bef013050000", + "name": "Monster Hunter Rise Demo" + }, + { + "id": "0x010000100C4B8000", + "name": "Jamestown+" + }, + { + "id": "0x010000A00CA78000", + "name": "Chalk Dash Carnival" + }, + { + "id": "0x010000B00D800000", + "name": "The Church in the Darkness" + }, + { + "id": "0x0100013010456000", + "name": "Doggie Ninja The Burning Strikers" + }, + { + "id": "0x010002D00EDD0000", + "name": "JDM Racing" + }, + { + "id": "0x010002F00CC20000", + "name": "FUN! FUN! Animal Park" + }, + { + "id": "0x01000320110C2000", + "name": "She Sees Red - Interactive Movie" + }, + { + "id": "0x010004300C33A000", + "name": "Crimson Keep" + }, + { + "id": "0x010005100AF90000", + "name": "FutureGrind" + }, + { + "id": "0x010005300EDCC000", + "name": "Quench" + }, + { + "id": "0x0100068011DB0000", + "name": "Pop the Bubbles" + }, + { + "id": "0x010007200AC0E000", + "name": "Don't Die, Mr Robot!" + }, + { + "id": "0x0100087012810000", + "name": "Aery - Broken Memories" + }, + { + "id": "0x01000E000DD40000", + "name": "Vambrace: Cold Soul" + }, + { + "id": "0x01000E50134A4000", + "name": "#Halloween, Super Puzzles Dream" + }, + { + "id": "0x010011000972A000", + "name": "GEM CRASH" + }, + { + "id": "0x010012100E8DC000", + "name": "PICROSS LORD OF THE NAZARICK" + }, + { + "id": "0x010012800EE3E000", + "name": "Tamashii" + }, + { + "id": "0x010014901201E000", + "name": "Reflex Unit 2" + }, + { + "id": "0x01001530097F8000", + "name": "Arcade Archives PUNCH-OUT!!" + }, + { + "id": "0x010000100FB62000", + "name": "Willy Jetman: Astromonkey's Revenge" + }, + { + "id": "0x0100043011CEC000", + "name": "Arcade Archives LIGHTNING FIGHTERS" + }, + { + "id": "0x0100046011AE6000", + "name": "Ghost Files: Memory of a Crime" + }, + { + "id": "0x010008D00CCEC000", + "name": "Gnomes Garden 2" + }, + { + "id": "0x01000D70049BE000", + "name": "Sword of the Guardian" + }, + { + "id": "0x01000D900E0F0000", + "name": "Dead Dungeon" + }, + { + "id": "0x01000E800CC26000", + "name": "Alchemic Dungeons DX" + }, + { + "id": "0x010011300D52A000", + "name": "Pixel Devil and the Broken Cartridge" + }, + { + "id": "0x01001240126F2000", + "name": "Desktop Volleyball" + }, + { + "id": "0x0100144011030000", + "name": "Perfect Traffic Simulator" + }, + { + "id": "0x0100197008B52000", + "name": "GRIDD: Retroenhanced" + }, + { + "id": "0x01001C100E772000", + "name": "LEGO® Jurassic World" + }, + { + "id": "0x01001E400FD58000", + "name": "Cooking Simulator" + }, + { + "id": "0x01001FA0034E2000", + "name": "Dark Witch Music Episode: Rudymical" + }, + { + "id": "0x010022400BE5A000", + "name": "Yu-Gi-Oh! Legacy of the Duelist : Link Evolution" + }, + { + "id": "0x010026800FA88000", + "name": "Deep Diving Adventures" + }, + { + "id": "0x010029C00D768000", + "name": "ESport Manager" + }, + { + "id": "0x01002B300D8F0000", + "name": "Caterpillar Royale" + }, + { + "id": "0x010031B00A4E8000", + "name": "West of Loathing" + }, + { + "id": "0x010000300B4EE000", + "name": "STUMP" + }, + { + "id": "0x010001B005E5C000", + "name": "Double Dragon 4" + }, + { + "id": "0x01000330105BE000", + "name": "Darius Cozmic Collection Console" + }, + { + "id": "0x010005C00EE90000", + "name": "Atelier Shallie: Alchemists of the Dusk Sea DX" + }, + { + "id": "0x010005E00E2BC000", + "name": "9 Monkeys of Shaolin" + }, + { + "id": "0x01000A001171A000", + "name": "FIFA 21 Nintendo Switch™ Legacy Edition" + }, + { + "id": "0x01000B900D8B0000", + "name": "Cadence of Hyrule: Crypt of the NecroDancer Featuring The Legend of Zelda" + }, + { + "id": "0x010011300F74C000", + "name": "MO:Astray" + }, + { + "id": "0x010011A00A9A8000", + "name": "Soccer Slammers" + }, + { + "id": "0x010013800F0A4000", + "name": "Golazo!" + }, + { + "id": "0x010014B0130F2000", + "name": "Adventure Llama" + }, + { + "id": "0x010015000DB1A000", + "name": "Zombie Scrapper" + }, + { + "id": "0x010015F005C8E000", + "name": "Tricky Towers" + }, + { + "id": "0x010016900DF72000", + "name": "Bouncy Bullets" + }, + { + "id": "0x01001AD00E49A000", + "name": "DOUBLE DRAGON Ⅲ: The Sacred Stones" + }, + { + "id": "0x01001B100C3D4000", + "name": "Planet RIX-13" + }, + { + "id": "0x01001B300B9BE000", + "name": "Diablo III: Eternal Collection" + }, + { + "id": "0x01001C400482C000", + "name": "Wunderling" + }, + { + "id": "0x01001CC00CB54000", + "name": "Fat City" + }, + { + "id": "0x010003A00D0B4000", + "name": "SaGa SCARLET GRACE: AMBITIONS™" + }, + { + "id": "0x010003B00D3A2000", + "name": "Felix The Reaper" + }, + { + "id": "0x010004D00D222000", + "name": "Pocket Academy Demo" + }, + { + "id": "0x01000650134FE000", + "name": "Splashy Cube" + }, + { + "id": "0x010006F00EE72000", + "name": "StarBlox Inc." + }, + { + "id": "0x01000750084B2000", + "name": "Shiftlings - Enhanced Edition" + }, + { + "id": "0x010007B010FCC000", + "name": "Sniper Elite 4" + }, + { + "id": "0x01000AA0093DC000", + "name": "Dream Alone" + }, + { + "id": "0x01000CB00D094000", + "name": "Bad Dream: Coma" + }, + { + "id": "0x01000CE00CBB8000", + "name": "Plague Inc: Evolved" + }, + { + "id": "0x01000D700BE88000", + "name": "My Girlfriend is a Mermaid!?" + }, + { + "id": "0x01000F101286A000", + "name": "WE ARE DOOMED" + }, + { + "id": "0x0100103011894000", + "name": "Naught" + }, + { + "id": "0x010012800EBAE000", + "name": "Disney TSUM TSUM FESTIVAL" + }, + { + "id": "0x01001C700873E000", + "name": "GOD EATER 3" + }, + { + "id": "0x01001CB00EFD6000", + "name": "Infliction: Extended Cut" + }, + { + "id": "0x01001E3012CC2000", + "name": "Suicide Guy Collection" + }, + { + "id": "0x01001E60085E6000", + "name": "Broken Sword 5 - the Serpent's Curse" + }, + { + "id": "0x010023D012C52000", + "name": "fault - milestone two side: above" + }, + { + "id": "0x0100023012640000", + "name": "Slots of Poker at Aces Casino" + }, + { + "id": "0x010002A00CC42000", + "name": "Clock Simulator" + }, + { + "id": "0x010002D00632E000", + "name": "Yoku's Island Express" + }, + { + "id": "0x010007C00E558000", + "name": "Reel Fishing: Road Trip Adventure" + }, + { + "id": "0x01000850037C0000", + "name": "The Count Lucanor" + }, + { + "id": "0x0100085012A0E000", + "name": "Squeakers" + }, + { + "id": "0x0100085012D64000", + "name": "Awakening of Cthulhu" + }, + { + "id": "0x0100091008272000", + "name": "Mini Metro" + }, + { + "id": "0x01000BA00CD2C000", + "name": "Santa Tracker" + }, + { + "id": "0x01000CF0084BC000", + "name": "The Next Penelope" + }, + { + "id": "0x01000D10038E6000", + "name": "ACA NEOGEO LAST RESORT" + }, + { + "id": "0x01000D1011EF0000", + "name": "Active Neurons 2" + }, + { + "id": "0x01000E2012F6E000", + "name": "Fantasy Tavern Sextet -Vol.1 New World Days-" + }, + { + "id": "0x010010E010AAA000", + "name": "Sudoku Relax 4 Winter Snow" + }, + { + "id": "0x010011B00E6B2000", + "name": "Pocket Arcade Story" + }, + { + "id": "0x010016600DBFC000", + "name": "Slime Tactics" + }, + { + "id": "0x01001CC00D522000", + "name": "World Cruise Story" + }, + { + "id": "0x01001EB011D38000", + "name": "Miden Tower" + }, + { + "id": "0x010020B00E89E000", + "name": "The Ramen Sensei" + }, + { + "id": "0x010026B006802000", + "name": "A Duel Hand Disaster: Trackher" + }, + { + "id": "0x010003C0099EE000", + "name": "PLANET ALPHA" + }, + { + "id": "0x010005500E81E000", + "name": "Space Cows" + }, + { + "id": "0x0100082010A4E000", + "name": "Voxelgram" + }, + { + "id": "0x010008600F1F2000", + "name": "Billy Bomber" + }, + { + "id": "0x010009F011F90000", + "name": "Grim Legends: The Forsaken Bride" + }, + { + "id": "0x01000BD00CE64000", + "name": "VAMPYR" + }, + { + "id": "0x01000C100CFD8000", + "name": "Secrets of Magic 2 - Witches & Wizards" + }, + { + "id": "0x01000D1008714000", + "name": "ACA NEOGEO FATAL FURY 3" + }, + { + "id": "0x01000DF00EBBA000", + "name": "Beholder 2" + }, + { + "id": "0x01000EC010BF4000", + "name": "Niche - a genetics survival game" + }, + { + "id": "0x010011000E31A000", + "name": "Button Button Up!" + }, + { + "id": "0x0100121007308000", + "name": "Eggggg - The platform puker" + }, + { + "id": "0x0100153003AF2000", + "name": "Solar Flux" + }, + { + "id": "0x010017700B6C2000", + "name": "New Super Lucky's Tale" + }, + { + "id": "0x01001B000CAF0000", + "name": "Hive Jump" + }, + { + "id": "0x01001B70080F0000", + "name": "HEROINE ANTHEM ZERO episode 1" + }, + { + "id": "0x01001E700AC60000", + "name": "SEGA AGES Wonder Boy: Monster Land" + }, + { + "id": "0x01001F900B78C000", + "name": "SuperMash" + }, + { + "id": "0x010021800B6C0000", + "name": "Cycle 28" + }, + { + "id": "0x010023300CD52000", + "name": "Bash The Bear" + }, + { + "id": "0x010007B012514000", + "name": "The Great Perhaps" + }, + { + "id": "0x010008A0128C4000", + "name": "Tamiku" + }, + { + "id": "0x01000BA0132EA000", + "name": "Choices That Matter: And The Sun Went Out" + }, + { + "id": "0x01000E200C8D4000", + "name": "Hyperide: Vector Raid" + }, + { + "id": "0x01000EC01212E000", + "name": "Coast Guard: Beach Rescue Team" + }, + { + "id": "0x01000F0002BB6000", + "name": "Wargroove" + }, + { + "id": "0x01000F20102AC000", + "name": "The Copper Canyon Dixie Dash" + }, + { + "id": "0x01000F700DECE000", + "name": "Into the Dead 2" + }, + { + "id": "0x010010A00DA48000", + "name": "Baldur's Gate and Baldur's Gate II: Enhanced Editions" + }, + { + "id": "0x0100120004644000", + "name": "Super Mega Baseball 2: Ultimate Edition" + }, + { + "id": "0x010014A0115BE000", + "name": "Cake Bash" + }, + { + "id": "0x010014E004FA8000", + "name": "ACA NEOGEO KARNOV'S REVENGE" + }, + { + "id": "0x010015A0113E0000", + "name": "Quiplash" + }, + { + "id": "0x010016400B1FE000", + "name": "Corpse Party: Blood Drive" + }, + { + "id": "0x010016400F07E000", + "name": "Push the Crate" + }, + { + "id": "0x010017500E7E0000", + "name": "Whipseey and the Lost Atlas" + }, + { + "id": "0x010018E012914000", + "name": "Aery - Sky Castle" + }, + { + "id": "0x0100192010F5A000", + "name": "Tracks - Toybox Edition" + }, + { + "id": "0x010019A0038FA000", + "name": "ACA NEOGEO FATAL FURY SPECIAL" + }, + { + "id": "0x0100039002CCC000", + "name": "Johnny Turbo's Arcade: Super Real Darwin" + }, + { + "id": "0x010003900E46A000", + "name": "Super Dodgeball Beats" + }, + { + "id": "0x0100045010EB6000", + "name": "Shadows" + }, + { + "id": "0x010007401287E000", + "name": "BIG-Bobby-Car - The Big Race" + }, + { + "id": "0x010008000C8F6000", + "name": "Lyrica" + }, + { + "id": "0x010008300C978000", + "name": "Arcade Archives IMAGE FIGHT" + }, + { + "id": "0x010008400A268000", + "name": "Another Lost Phone: Laura's Story" + }, + { + "id": "0x010008600D1AC000", + "name": "Solo: Islands of the Heart" + }, + { + "id": "0x010008900705C000", + "name": "Dragon Quest Builders™" + }, + { + "id": "0x01000A700F956000", + "name": "Deep Space Rush" + }, + { + "id": "0x01000CC012D74000", + "name": "Rock 'N Racing Bundle Grand Prix & Rally" + }, + { + "id": "0x01000E8009E1C000", + "name": "Shift Quantum" + }, + { + "id": "0x010012F00B6F2000", + "name": "Yomawari: The Long Night Collection" + }, + { + "id": "0x010017B0102A8000", + "name": "Emma: Lost in Memories" + }, + { + "id": "0x01001B201264E000", + "name": "Merchant of the Skies" + }, + { + "id": "0x01001F90122B2000", + "name": "Super Punch Patrol" + }, + { + "id": "0x01001FA009A1E000", + "name": "Mecha Storm" + }, + { + "id": "0x010021F00AD76000", + "name": "My Farm" + }, + { + "id": "0x010024C01242E000", + "name": "Gerty" + }, + { + "id": "0x010000000EEF0000", + "name": "Shadows 2: Perfidia" + }, + { + "id": "0x010000300C79C000", + "name": "GensokyoDefenders" + }, + { + "id": "0x01000060085D2000", + "name": "A Hole New World" + }, + { + "id": "0x0100016012D38000", + "name": "BIT.TRIP CORE" + }, + { + "id": "0x010001C011354000", + "name": "Aeolis Tournament" + }, + { + "id": "0x010004D00D32A000", + "name": "Zombieland: Double Tap - Road Trip" + }, + { + "id": "0x010007A00980C000", + "name": "Arcade Archives City CONNECTION" + }, + { + "id": "0x010008800B18A000", + "name": "Super Destronaut DX" + }, + { + "id": "0x01000A0004C50000", + "name": "FLASHBACK™" + }, + { + "id": "0x01000C800AFD6000", + "name": "ACA NEOGEO SAMURAI SHODOWN V" + }, + { + "id": "0x01000D500D08A000", + "name": "Brothers: A Tale of Two Sons" + }, + { + "id": "0x01000F000D9F0000", + "name": "Geki Yaba Runner Anniversary Edition" + }, + { + "id": "0x01000F20083A8000", + "name": "Tactical Mind" + }, + { + "id": "0x010010A00A95E000", + "name": "Sayonara Wild Hearts" + }, + { + "id": "0x010015D0127D6000", + "name": "QV" + }, + { + "id": "0x0100178009648000", + "name": "Coffin Dodgers" + }, + { + "id": "0x01001C500D850000", + "name": "Mowin' & Throwin'" + }, + { + "id": "0x01001E500F7FC000", + "name": "#Funtime" + }, + { + "id": "0x01002310064B4000", + "name": "OF MICE AND SAND -REVISED-" + }, + { + "id": "0x01002330123BC000", + "name": "GRISAIA PHANTOM TRIGGER 05" + }, + { + "id": "0x0100005006BA4000", + "name": "The Keep" + }, + { + "id": "0x010000700A572000", + "name": "State of Anarchy: Master of Mayhem" + }, + { + "id": "0x010000F00BF68000", + "name": "Black and White Bushido" + }, + { + "id": "0x010001800DBA6000", + "name": "Winter Sports Games" + }, + { + "id": "0x010001B01398C000", + "name": "Spirit Arena" + }, + { + "id": "0x010002300C632000", + "name": "Fairy Fencer F™: Advent Dark Force" + }, + { + "id": "0x010003000E146000", + "name": "Mario & Sonic at the Olympic Games Tokyo 2020" + }, + { + "id": "0x010003C00B868000", + "name": "Ninjin: Clash of Carrots" + }, + { + "id": "0x010004500DE50000", + "name": "Paper Dolls Original" + }, + { + "id": "0x0100073011382000", + "name": "Fitness Boxing 2: Rhythm & Exercise" + }, + { + "id": "0x010008300D1E0000", + "name": "Woodle Tree Adventures Demo" + }, + { + "id": "0x010008E010012000", + "name": "ELEA: Paradigm Shift" + }, + { + "id": "0x010009000AC2A000", + "name": "Pure / Electric Love \"Look at my eyes!\" - Moe Yamauchi -" + }, + { + "id": "0x01000A600EA88000", + "name": "Grave Keeper" + }, + { + "id": "0x01000B1010D8E000", + "name": "Bridge! 3" + }, + { + "id": "0x01000B2011352000", + "name": "Nerdook Bundle Vol. 1" + }, + { + "id": "0x01000B6007A3C000", + "name": "The Deer God" + }, + { + "id": "0x01000C6011AC2000", + "name": "Rusty Spout Rescue Adventure" + }, + { + "id": "0x01000C900A136000", + "name": "Kitten Squad" + }, + { + "id": "0x0100011012A70000", + "name": "WeakWood Throne" + }, + { + "id": "0x010002100CDCC000", + "name": "Peaky Blinders: Mastermind" + }, + { + "id": "0x010002900B75A000", + "name": "Palm Reading Premium" + }, + { + "id": "0x010005A00B312000", + "name": "Megaton Rainfall" + }, + { + "id": "0x010006800E13A000", + "name": "Chronos: Before the Ashes" + }, + { + "id": "0x010008F00B054000", + "name": "Arcade Archives Sky Skipper" + }, + { + "id": "0x01000D60126B6000", + "name": "Death and Taxes" + }, + { + "id": "0x01000E400222A000", + "name": "Johnny Turbo's Arcade: Super Burger Time" + }, + { + "id": "0x01000F600B01E000", + "name": "ATV Drift & Tricks" + }, + { + "id": "0x010010B00DDA2000", + "name": "Raji: An Ancient Epic" + }, + { + "id": "0x010013700DA4A000", + "name": "Neverwinter Nights: Enhanced Edition" + }, + { + "id": "0x010013F009B88000", + "name": "Xeno Crisis" + }, + { + "id": "0x010017D0130C4000", + "name": "Destropolis" + }, + { + "id": "0x0100187003A36000", + "name": "Pokémon™: Let’s Go, Eevee!" + }, + { + "id": "0x01001A5010CC6000", + "name": "Dark Tower: RPG Dungeon Puzzle" + }, + { + "id": "0x01001BA00AE4E000", + "name": "Final Light, The Prison" + }, + { + "id": "0x01001D600D2C8000", + "name": "Bedtime Blues" + }, + { + "id": "0x01001DD0116AA000", + "name": "Push the Box - Puzzle Game" + }, + { + "id": "0x01001F100B586000", + "name": "Rooms: The Adventure of Anne & George" + }, + { + "id": "0x0100000000010000", + "name": "Super Mario Odyssey™" + }, + { + "id": "0x0100016011A1A000", + "name": "Ship Sim 2020" + }, + { + "id": "0x010001A00A1F6000", + "name": "Knock-Knock" + }, + { + "id": "0x010003701002C000", + "name": "Nurse Love Syndrome" + }, + { + "id": "0x01000440123A6000", + "name": "Roah" + }, + { + "id": "0x010009B00D33C000", + "name": "Rugby Challenge 4" + }, + { + "id": "0x010009E001D90000", + "name": "World of Goo" + }, + { + "id": "0x01000D700EAA0000", + "name": "Gurgamoth" + }, + { + "id": "0x01000E800FCB4000", + "name": "Ships" + }, + { + "id": "0x010018900DD00000", + "name": "DOOM (1993)" + }, + { + "id": "0x0100192009824000", + "name": "Arcade Archives BOMB JACK" + }, + { + "id": "0x0100196009998000", + "name": "Super Kickers League Ultimate" + }, + { + "id": "0x01001A4008192000", + "name": "Gem Smashers" + }, + { + "id": "0x01001B800D742000", + "name": "Robot Squad Simulator" + }, + { + "id": "0x01001BD010758000", + "name": "Bridge Builder Adventure" + }, + { + "id": "0x01001D500EB90000", + "name": "Omen Exitio: Plague" + }, + { + "id": "0x01001DC00E324000", + "name": "Garage Mechanic Simulator" + }, + { + "id": "0x01001FF0104D8000", + "name": "Syrup and The Ultimate Sweet" + }, + { + "id": "0x0100230005A52000", + "name": "Lovers in a Dangerous Spacetime" + }, + { + "id": "0x01002450112D4000", + "name": "Electronic Super Joy 2" + }, + { + "id": "0x0100063005C86000", + "name": "Phantom Breaker: Battle Grounds Overdrive" + }, + { + "id": "0x010007900FCE2000", + "name": "Crash Drive 2" + }, + { + "id": "0x01000C7003FE8000", + "name": "GORSD" + }, + { + "id": "0x01000E4012A00000", + "name": "Rusty Gun" + }, + { + "id": "0x01000FB00AA90000", + "name": "Little Town Hero" + }, + { + "id": "0x0100102010BFC000", + "name": "Travel Mosaics 3: Tokyo Animated" + }, + { + "id": "0x010011600C946000", + "name": "Travis Strikes Again: No More Heroes" + }, + { + "id": "0x010013C010C5C000", + "name": "Banner of the Maid" + }, + { + "id": "0x010014900D744000", + "name": "Godly Corp" + }, + { + "id": "0x0100170008728000", + "name": "ACA NEOGEO THE KING OF FIGHTERS '97" + }, + { + "id": "0x01001AA00BADC000", + "name": "Esports Life Tycoon" + }, + { + "id": "0x010020700E2A2000", + "name": "Disaster Report 4: Summer Memories" + }, + { + "id": "0x010020C00FFB6000", + "name": "Vampire: The Masquerade - Coteries of New York" + }, + { + "id": "0x0100236011A42000", + "name": "Black Rainbow" + }, + { + "id": "0x010023900AEE0000", + "name": "Paladins" + }, + { + "id": "0x010024400C516000", + "name": "RAD" + }, + { + "id": "0x010024A00C854000", + "name": "Mimic Hunter" + }, + { + "id": "0x010025C007892000", + "name": "Soap Dodgem" + }, + { + "id": "0x010026D00AABE000", + "name": "Moorhuhn Remake" + }, + { + "id": "0x0100272012DEC000", + "name": "Macbat 64: Journey of a Nice Chap" + }, + { + "id": "0x010001100E708000", + "name": "Skybolt Zack" + }, + { + "id": "0x010002B00C534000", + "name": "American Fugitive" + }, + { + "id": "0x010003100F1F4000", + "name": "CrunchTime" + }, + { + "id": "0x01000690085BE000", + "name": "Little Triangle" + }, + { + "id": "0x0100089010A92000", + "name": "Bucket Knight" + }, + { + "id": "0x01000DC00AF1C000", + "name": "Desert Child" + }, + { + "id": "0x01000EC007C22000", + "name": "TouchBattleTankSP" + }, + { + "id": "0x01000FA010340000", + "name": "Melbits World" + }, + { + "id": "0x01001010134EA000", + "name": "Zombie Hill Race" + }, + { + "id": "0x010010A009830000", + "name": "Space Ribbon" + }, + { + "id": "0x0100111012438000", + "name": "Quell Reflect" + }, + { + "id": "0x010014000C63C000", + "name": "Samsara: Deluxe Edition" + }, + { + "id": "0x0100148012F7A000", + "name": "Crawlco Block Knockers" + }, + { + "id": "0x010014900865A000", + "name": "Toast Time: Smash Up!" + }, + { + "id": "0x010015500F186000", + "name": "Lanternium" + }, + { + "id": "0x0100161009E5C000", + "name": "MX Nitro: Unleashed" + }, + { + "id": "0x010017600B180000", + "name": "Polygod" + }, + { + "id": "0x010017E012888000", + "name": "Wallachia: Reign of Dracula" + }, + { + "id": "0x010018E00BA22000", + "name": "Drift Legends" + }, + { + "id": "0x010019700D13A000", + "name": "SEGA AGES Puyo Puyo 2" + }, + { + "id": "0x010016C009374000", + "name": "Lode Runner Legacy" + }, + { + "id": "0x0100194010422000", + "name": "bayala - the game" + }, + { + "id": "0x01001B700BA7C000", + "name": "The Escapists: Complete Edition" + }, + { + "id": "0x01001CC00416C000", + "name": "Rogue Trooper Redux" + }, + { + "id": "0x01001D0003B96000", + "name": "INVERSUS Deluxe" + }, + { + "id": "0x01001E200F2F8000", + "name": "Grimshade" + }, + { + "id": "0x01001E40041BE000", + "name": "Scribblenauts Showdown" + }, + { + "id": "0x01001E600AF08000", + "name": "SEGA AGES Gain Ground" + }, + { + "id": "0x01001EC013576000", + "name": "Autumn's Journey" + }, + { + "id": "0x01001F200A536000", + "name": "Tetra's Escape DEMO" + }, + { + "id": "0x010020500C8C8000", + "name": "Number Place 10000" + }, + { + "id": "0x010021700F6A4000", + "name": "Yellow Fins" + }, + { + "id": "0x010021D00D53E000", + "name": "A Dark Room" + }, + { + "id": "0x010022500C964000", + "name": "StarCrossed" + }, + { + "id": "0x0100227010460000", + "name": "Kirby Fighters™ 2" + }, + { + "id": "0x010022C00F20A000", + "name": "Paper Train" + }, + { + "id": "0x010023500EF76000", + "name": "Galaxy Champions TV" + }, + { + "id": "0x010024A009428000", + "name": "Mad Carnage" + }, + { + "id": "0x010024D0032F2000", + "name": "Photon Cube" + }, + { + "id": "0x010029900E314000", + "name": "SEGA AGES Herzog Zwei" + }, + { + "id": "0x010032800D46C000", + "name": "Dungeons & Aliens" + }, + { + "id": "0x010033700418A000", + "name": "Wulverblade" + }, + { + "id": "0x010034E00A114000", + "name": "de Blob 2" + }, + { + "id": "0x010035A00D4E6000", + "name": "Warparty" + }, + { + "id": "0x0100361007268000", + "name": "MotoGP™18" + }, + { + "id": "0x010038800DF74000", + "name": "Monkey Business" + }, + { + "id": "0x0100394010844000", + "name": "Seers Isle" + }, + { + "id": "0x010039600E7AC000", + "name": "Attack of the Toy Tanks" + }, + { + "id": "0x01003AD00DEAE000", + "name": "SlabWell: The Quest For Kaktun's Alpaca" + }, + { + "id": "0x01003BB00B08E000", + "name": "Hidden Folks" + }, + { + "id": "0x01003D800BE5C000", + "name": "Digerati Indie Bundle: INK & HackyZack" + }, + { + "id": "0x01003DB011AE8000", + "name": "#womenUp, Super Puzzles Dream" + }, + { + "id": "0x01003F800E87C000", + "name": "Wuppo: Definitive Edition" + }, + { + "id": "0x0100416008A12000", + "name": "Onimusha: Warlords" + }, + { + "id": "0x01004170113D4000", + "name": "The Complex" + }, + { + "id": "0x0100459009A2A000", + "name": "GRIP" + }, + { + "id": "0x010046600CCA4000", + "name": "Kotodama: The 7 Mysteries of Fujisawa" + }, + { + "id": "0x010047D00AFD4000", + "name": "ACA NEOGEO STAKES WINNER 2" + }, + { + "id": "0x01004860080A0000", + "name": "Baseball Riot" + }, + { + "id": "0x01004BB00421E000", + "name": "Syberia 1 & 2" + }, + { + "id": "0x010000E00E612000", + "name": "Pixel Puzzle Makeout League" + }, + { + "id": "0x010001F00D9B8000", + "name": "Riddled Corpses EX Demo" + }, + { + "id": "0x010004900D772000", + "name": "Modern Tales: Age of Invention" + }, + { + "id": "0x010005400A45E000", + "name": "Agent A: A puzzle in disguise" + }, + { + "id": "0x010006C00CC10000", + "name": "Shanky: The Vegan`s Nightmare" + }, + { + "id": "0x010007300DE1E000", + "name": "Monaco: Complete Edition" + }, + { + "id": "0x010007B009314000", + "name": "I and Me Demo" + }, + { + "id": "0x01000B500EB22000", + "name": "One Finger Death Punch 2" + }, + { + "id": "0x01000B700EC22000", + "name": "Illusion of L'Phalcia" + }, + { + "id": "0x01000BE001DD8000", + "name": "Arcade Archives MOON CRESTA" + }, + { + "id": "0x01000D600EFC4000", + "name": "Gemstone Keeper" + }, + { + "id": "0x010010400D46A000", + "name": "SNACK WORLD: THE DUNGEON CRAWL — GOLD" + }, + { + "id": "0x010015D003EE4000", + "name": "The Jackbox Party Pack 2" + }, + { + "id": "0x010018400E4FC000", + "name": "Vortex Attack EX" + }, + { + "id": "0x01001A900D312000", + "name": "Another Sight" + }, + { + "id": "0x010023800D3F2000", + "name": "Awesome Pea (Demo)" + }, + { + "id": "0x010024700901A000", + "name": "Gal*Gun 2" + }, + { + "id": "0x01002490132F2000", + "name": "The Casino -Roulette, Video Poker, Slot Machines, Craps, Baccarat-" + }, + { + "id": "0x010025B002E92000", + "name": "Blaster Master Zero Demo" + }, + { + "id": "0x010002F009A7A000", + "name": "Road to Ballhalla" + }, + { + "id": "0x010003F00BD48000", + "name": "Friday the 13th: Killer Puzzle" + }, + { + "id": "0x010005D00FC06000", + "name": "puzzlement" + }, + { + "id": "0x010006900EF5E000", + "name": "Pacific Wings" + }, + { + "id": "0x01000BF00BE40000", + "name": "Bring Them Home" + }, + { + "id": "0x01000F000AAF0000", + "name": "Kenshō" + }, + { + "id": "0x01000F400435A000", + "name": "Immortal Redneck" + }, + { + "id": "0x010012500FD08000", + "name": "Tower Inferno" + }, + { + "id": "0x010015A00AF1E000", + "name": "Whispering Willows" + }, + { + "id": "0x010016300D172000", + "name": "Avenger Bird" + }, + { + "id": "0x010018100F688000", + "name": "Princess Maker Go!Go! Princess" + }, + { + "id": "0x0100183010F12000", + "name": "JUMP FORCE - Deluxe Edition" + }, + { + "id": "0x01001900112B2000", + "name": "FINAL SWORD" + }, + { + "id": "0x010021F004270000", + "name": "Spelunker Party!" + }, + { + "id": "0x010026000F662000", + "name": "LA-MULANA" + }, + { + "id": "0x010026300BA4A000", + "name": "Slay the Spire" + }, + { + "id": "0x0100274004052000", + "name": "PAYDAY 2" + }, + { + "id": "0x010028200E132000", + "name": "Grass Cutter - Mutated Lawns" + }, + { + "id": "0x010029600CD44000", + "name": "Piczle Colors" + }, + { + "id": "0x010029600EAE4000", + "name": "Arcade Archives VS. CASTLEVANIA" + }, + { + "id": "0x010020400E1C2000", + "name": "Raging Loop" + }, + { + "id": "0x010021400C6C4000", + "name": "Jewel Fever 2 Demo" + }, + { + "id": "0x010023600AA34000", + "name": "Q.U.B.E. 2" + }, + { + "id": "0x010023800FE12000", + "name": "Cloudbase Prime" + }, + { + "id": "0x010028C003FD6000", + "name": "Syberia 2" + }, + { + "id": "0x010029B00CC3E000", + "name": "UTOPIA 9 - A Volatile Vacation" + }, + { + "id": "0x010030D010D66000", + "name": "Chess Minimal" + }, + { + "id": "0x010030F00CA1E000", + "name": "Vaporum" + }, + { + "id": "0x010032B00C31E000", + "name": "Super Hyperactive Ninja" + }, + { + "id": "0x010036C00BDE4000", + "name": "Monster Dynamite" + }, + { + "id": "0x010037D00DBDC000", + "name": "YU-NO: A girl who chants love at the bound of this world." + }, + { + "id": "0x0100388012922000", + "name": "Drag Racing Rivals" + }, + { + "id": "0x01003A400C3DA000", + "name": "YouTube" + }, + { + "id": "0x01003DF00E328000", + "name": "Maddening Euphoria" + }, + { + "id": "0x01003E8010E3A000", + "name": "The Man With The Ivory Cane" + }, + { + "id": "0x01003EF007ABA000", + "name": "Minecraft: Story Mode - Season Two" + }, + { + "id": "0x01003F200D0F2000", + "name": "Moto Rush GT" + }, + { + "id": "0x010042A00FBF0000", + "name": "My Riding Stables 2: A New Adventure" + }, + { + "id": "0x010045200A1C2000", + "name": "Ultimate Runner" + }, + { + "id": "0x010045F00BFC2000", + "name": "GIGA WRECKER ALT." + }, + { + "id": "0x0100017007980000", + "name": "Hotel Transylvania 3 Monsters Overboard" + }, + { + "id": "0x010002E00D3FE000", + "name": "Arcade Archives DONKEY KONG 3" + }, + { + "id": "0x01000490067AE000", + "name": "Frederic 2: Evil Strikes Back" + }, + { + "id": "0x010005400E394000", + "name": "Dead in Vinland - True Viking edition" + }, + { + "id": "0x0100066004D68000", + "name": "This Is the Police" + }, + { + "id": "0x010006E00DFAE000", + "name": "Pantsu Hunter: Back to the 90s" + }, + { + "id": "0x010006F011220000", + "name": "Megadimension Neptunia VII" + }, + { + "id": "0x010008C01010A000", + "name": "Traditional Tactics Ne+" + }, + { + "id": "0x01000D700D2D6000", + "name": "Balance Blox" + }, + { + "id": "0x01000E800F7F0000", + "name": "SEN: Seven Eight Nine" + }, + { + "id": "0x01000ED0124F2000", + "name": "Mastercube" + }, + { + "id": "0x01000F300F082000", + "name": "Reaper: Tale of a Pale Swordsman" + }, + { + "id": "0x010011700D1B2000", + "name": "Perchang" + }, + { + "id": "0x010014F001DE2000", + "name": "Arcade Archives Armed F" + }, + { + "id": "0x0100157004512000", + "name": "Severed" + }, + { + "id": "0x010016300A95A000", + "name": "Hexologic" + }, + { + "id": "0x01001740116EC000", + "name": "Zombie's Cool" + }, + { + "id": "0x010020100B768000", + "name": "True Fear: Forsaken Souls - Part 1 Demo" + }, + { + "id": "0x010021300ABDE000", + "name": "Puzzle Puppers Demo" + }, + { + "id": "0x010001E00F75A000", + "name": "Alchemist's Castle" + }, + { + "id": "0x010003F00C5C0000", + "name": "Rawr-Off" + }, + { + "id": "0x010005400EC0C000", + "name": "Lost Artifacts: Time Machine" + }, + { + "id": "0x010005500ADDC000", + "name": "Swap This!" + }, + { + "id": "0x0100059012BAE000", + "name": "Crown Trick" + }, + { + "id": "0x010006001107E000", + "name": "Bleed Complete Bundle" + }, + { + "id": "0x01000D200C614000", + "name": "SEGA AGES Sonic The Hedgehog 2" + }, + { + "id": "0x010012400D202000", + "name": "Street Outlaws: The List" + }, + { + "id": "0x010015700D5DC000", + "name": "Super Jumpy Ball" + }, + { + "id": "0x010015F008C54000", + "name": "Pokémon™ HOME" + }, + { + "id": "0x0100184011918000", + "name": "Darkestville Castle" + }, + { + "id": "0x0100207007EB2000", + "name": "Smoke And Sacrifice" + }, + { + "id": "0x010021C000B6A000", + "name": "The Binding of Isaac: Afterbirth+" + }, + { + "id": "0x010023500B0BA000", + "name": "Nefarious" + }, + { + "id": "0x01002BD00983E000", + "name": "Burly Men at Sea" + }, + { + "id": "0x01002E700AFC4000", + "name": "ACA NEOGEO ZUPAPA!" + }, + { + "id": "0x01002F6011D12000", + "name": "Retro Tanks" + }, + { + "id": "0x010031D00EA96000", + "name": "Classic Games Collection Vol.1" + }, + { + "id": "0x010031E00F6AE000", + "name": "Chop is Dish" + }, + { + "id": "0x010032800D740000", + "name": "Mosaic" + }, + { + "id": "0x010025300B914000", + "name": "Horizon Shift '81" + }, + { + "id": "0x010026800BA16000", + "name": "Xenon Racer" + }, + { + "id": "0x010028D00BA1A000", + "name": "The Sinking City" + }, + { + "id": "0x01002A600E346000", + "name": "Word Wheel by POWGI" + }, + { + "id": "0x01002B000C4AA000", + "name": "Warhammer Quest" + }, + { + "id": "0x01002D4012222000", + "name": "Ultra Hat Dimension" + }, + { + "id": "0x01002DB007A96000", + "name": "Legend of Kay Anniversary" + }, + { + "id": "0x010030B00C316000", + "name": "Planescape: Torment and Icewind Dale: Enhanced Editions" + }, + { + "id": "0x010031B00CF66000", + "name": "Devil Engine" + }, + { + "id": "0x010031D00A604000", + "name": "Songbringer" + }, + { + "id": "0x010032000EA2C000", + "name": "Blacksad: Under the Skin" + }, + { + "id": "0x010032200EC9C000", + "name": "Runestone Keeper" + }, + { + "id": "0x0100345009240000", + "name": "Impossible Mission" + }, + { + "id": "0x01003560119A6000", + "name": "Mini Motor Racing X" + }, + { + "id": "0x010035A0044E8000", + "name": "JYDGE" + }, + { + "id": "0x01003720118E0000", + "name": "The Bullet: Time of Revenge" + }, + { + "id": "0x010038900DFE0000", + "name": "What Remains of Edith Finch" + }, + { + "id": "0x010038A00E6C6000", + "name": "Strike Force Kitty" + }, + { + "id": "0x01003EF00D3B4000", + "name": "Arcade Archives NINJA GAIDEN" + }, + { + "id": "0x010002400F408000", + "name": "Code: Realize ~Future Blessings~" + }, + { + "id": "0x010003A00EA90000", + "name": "IN-VERT" + }, + { + "id": "0x0100052004384000", + "name": "Axiom Verge" + }, + { + "id": "0x010007700CFA2000", + "name": "Saboteur II: Avenging Angel" + }, + { + "id": "0x010009800203E000", + "name": "WWE 2K18" + }, + { + "id": "0x01000AC00F5EC000", + "name": "Spirit Roots" + }, + { + "id": "0x01000AC011588000", + "name": "Thy Sword" + }, + { + "id": "0x01000C000C966000", + "name": "Where the Bees Make Honey" + }, + { + "id": "0x01000C600D7CE000", + "name": "Monster Boy and the Cursed Kingdom Demo" + }, + { + "id": "0x01000F1008C92000", + "name": "Sling Ming" + }, + { + "id": "0x010010F004022000", + "name": "Touhou Kobuto V: Burst Battle" + }, + { + "id": "0x010014B00BB04000", + "name": "Mahjong" + }, + { + "id": "0x010015600EFB6000", + "name": "DRAGON QUEST III: The Seeds of Salvation" + }, + { + "id": "0x010015C00E73C000", + "name": "Duck Life: Battle" + }, + { + "id": "0x010016B005CF8000", + "name": "Siegecraft Commander" + }, + { + "id": "0x01001770115C8000", + "name": "Dodo Peak" + }, + { + "id": "0x010017C012726000", + "name": "Fantasy Friends" + }, + { + "id": "0x0100192003FA4000", + "name": "Azure Striker GUNVOLT: STRIKER PACK" + }, + { + "id": "0x01001AF00CE54000", + "name": "ONINAKI" + }, + { + "id": "0x01001BB00F20E000", + "name": "Farmer Sim 2020" + }, + { + "id": "0x0100241012432000", + "name": "Swords and Sandals: Spartacus" + }, + { + "id": "0x010025500C098000", + "name": "Gato Roboto" + }, + { + "id": "0x01002600105C6000", + "name": "Fishing Adventure" + }, + { + "id": "0x010027800FECE000", + "name": "Football Game" + }, + { + "id": "0x01002820036A8000", + "name": "Sine Mora EX" + }, + { + "id": "0x010028F013358000", + "name": "KAUIL’S TREASURE" + }, + { + "id": "0x01002AA00C708000", + "name": "Word Sudoku by POWGI" + }, + { + "id": "0x01002B800F2B8000", + "name": "Arcade Archives IN THE HUNT" + }, + { + "id": "0x01003350102E2000", + "name": "Barbarous: Tavern of Emyr" + }, + { + "id": "0x010035600EC94000", + "name": "Wenjia" + }, + { + "id": "0x01003AB01062C000", + "name": "Shaolin vs Wutang" + }, + { + "id": "0x01003AB011FD8000", + "name": "Super Puzzle Pack" + }, + { + "id": "0x01003C700EB20000", + "name": "Sir Eatsalot" + }, + { + "id": "0x01003E5002320000", + "name": "The Fall Part 2: Unbound" + }, + { + "id": "0x01003F300E7E2000", + "name": "Jump, Step, Step" + }, + { + "id": "0x0100400013A46000", + "name": "Ragdoll Fighter" + }, + { + "id": "0x010040E00F642000", + "name": "Morbid: The Seven Acolytes" + }, + { + "id": "0x0100416004C00000", + "name": "DOOM" + }, + { + "id": "0x0100417007F78000", + "name": "Danmaku Unlimited 3" + }, + { + "id": "0x010044000CBCA000", + "name": "Dexteritrip" + }, + { + "id": "0x010000700F292000", + "name": "Arcade Archives THE TIN STAR" + }, + { + "id": "0x010007300C482000", + "name": "Sydney Hunter and the Curse of the Mayan" + }, + { + "id": "0x010007400EB64000", + "name": "CastleStorm II" + }, + { + "id": "0x010009100845A000", + "name": "INVERSUS Deluxe Demo" + }, + { + "id": "0x01000A601139E000", + "name": "Shmup Collection" + }, + { + "id": "0x01000BA00C9EE000", + "name": "Duck Hunting Challenge" + }, + { + "id": "0x01000CC010594000", + "name": "Null Drifter" + }, + { + "id": "0x01000E400ED98000", + "name": "Farm Mystery" + }, + { + "id": "0x010010200D09A000", + "name": "Iron Snout" + }, + { + "id": "0x0100120008468000", + "name": "Crazy Mini Golf Arcade" + }, + { + "id": "0x010012B011AB2000", + "name": "Death Come True" + }, + { + "id": "0x0100197011BFE000", + "name": "Pity Pit" + }, + { + "id": "0x01001AE005166000", + "name": "Worms W.M.D" + }, + { + "id": "0x01001AF008BDA000", + "name": "Zen Bound 2" + }, + { + "id": "0x01001B6010D58000", + "name": "YOGA MASTER" + }, + { + "id": "0x01001B700B278000", + "name": "Bird Game +" + }, + { + "id": "0x01001B7012214000", + "name": "Alwa's Legacy" + }, + { + "id": "0x01001C100D80E000", + "name": "Mainlining" + }, + { + "id": "0x010022D0089AE000", + "name": "Labyrinth of the Witch" + }, + { + "id": "0x010025E00FD40000", + "name": "League of the Shield" + }, + { + "id": "0x01002950102CE000", + "name": "Super Tennis" + }, + { + "id": "0x01002C400ADC0000", + "name": "Lost King's Lullaby" + }, + { + "id": "0x01002E4011924000", + "name": "Dininho Adventures" + }, + { + "id": "0x0100307004B4C000", + "name": "Flinthook" + }, + { + "id": "0x010031B00C48C000", + "name": "Invisible, Inc. Nintendo Switch Edition" + }, + { + "id": "0x010034100D096000", + "name": "The Four Kings Casino and Slots" + }, + { + "id": "0x010034300BFC4000", + "name": "My Riding Stables - Life with Horses" + }, + { + "id": "0x010037400C7DA000", + "name": "Eagle Island" + }, + { + "id": "0x010039700D200000", + "name": "Super Skelemania" + }, + { + "id": "0x010039C001296000", + "name": "Infinite Minigolf" + }, + { + "id": "0x01003A1010E3C000", + "name": "BE-A Walker" + }, + { + "id": "0x01003A400BF8C000", + "name": "Destruction" + }, + { + "id": "0x01003AB00983C000", + "name": "Lethal League Blaze" + }, + { + "id": "0x01003B800B54C000", + "name": "President F.net" + }, + { + "id": "0x010040E00B636000", + "name": "Doughlings: Arcade" + }, + { + "id": "0x0100425009FB2000", + "name": "Baobabs Mausoleum Ep.1: Ovnifagos Don't Eat Flamingos" + }, + { + "id": "0x0100426001DE4000", + "name": "Arcade Archives Atomic Robo-Kid" + }, + { + "id": "0x010042700E3FC000", + "name": "Spitlings" + }, + { + "id": "0x010042800CDCE000", + "name": "Neon Caves" + }, + { + "id": "0x010044200D2C4000", + "name": "The Sushi Spinnery" + }, + { + "id": "0x010019F00CF92000", + "name": "Doom & Destiny" + }, + { + "id": "0x01001C9007614000", + "name": "Max: The Curse of Brotherhood" + }, + { + "id": "0x01001F100FA04000", + "name": "Oddmar" + }, + { + "id": "0x010022600A79A000", + "name": "Niffelheim" + }, + { + "id": "0x010025200FC54000", + "name": "Croc's World 3" + }, + { + "id": "0x010027B00E40E000", + "name": "Ashen" + }, + { + "id": "0x010028101227A000", + "name": "Meganoid" + }, + { + "id": "0x010029400CA20000", + "name": "Clue: The Classic Mystery Game" + }, + { + "id": "0x01002A0009E18000", + "name": "Jolt Family Robot Racer" + }, + { + "id": "0x01002BD00CB86000", + "name": "Panty Party" + }, + { + "id": "0x01002C30122F4000", + "name": "Space Avenger: Empire of Nexx" + }, + { + "id": "0x01002C700C326000", + "name": "Riddled Corpses EX" + }, + { + "id": "0x01002D400CCF4000", + "name": "Ivanych vs Eared Beast" + }, + { + "id": "0x010030800BC36000", + "name": "Collidalot" + }, + { + "id": "0x010031C0110F6000", + "name": "Rocket Rabbit - Coin Race" + }, + { + "id": "0x010035E00C1AE000", + "name": "Battle of Kings" + }, + { + "id": "0x010038B00BFD4000", + "name": "Operation Pig" + }, + { + "id": "0x01003AA00F5C4000", + "name": "Refreshing Sideways Puzzle Ghost Hammer" + }, + { + "id": "0x01003C3013300000", + "name": "The Long Return" + }, + { + "id": "0x010040600C5CE000", + "name": "Tetris® 99" + }, + { + "id": "0x010000401313A000", + "name": "Demong Hunter" + }, + { + "id": "0x010001900BDCA000", + "name": "Season Match" + }, + { + "id": "0x0100041013360000", + "name": "Control Ultimate Edition - Cloud Version" + }, + { + "id": "0x010004400B28A000", + "name": "Cattails" + }, + { + "id": "0x010004901194A000", + "name": "Trail Boss BMX" + }, + { + "id": "0x01000580117EA000", + "name": "Seeds of Resilience" + }, + { + "id": "0x010006600AE9C000", + "name": "Red's Kingdom" + }, + { + "id": "0x010007E00A1A4000", + "name": "Henry The Hamster Handler" + }, + { + "id": "0x01000D1006CEC000", + "name": "ATOMIK: RunGunJumpGun" + }, + { + "id": "0x01000D100D99A000", + "name": "Demolition Crew" + }, + { + "id": "0x01000D5005974000", + "name": "N++ (NPLUSPLUS)" + }, + { + "id": "0x01000F10123E2000", + "name": "Retrovamp" + }, + { + "id": "0x01000F3008718000", + "name": "ACA NEOGEO POWER SPIKES II" + }, + { + "id": "0x010011B0122CA000", + "name": "Zombies ruined my day" + }, + { + "id": "0x010012900C782000", + "name": "NEKOPARA Vol.2" + }, + { + "id": "0x010016A00AEC0000", + "name": "WARRIORS OROCHI 4" + }, + { + "id": "0x010018100CD46000", + "name": "Resident Evil 5" + }, + { + "id": "0x010018400C24E000", + "name": "Seven Knights -Time Wanderer-" + }, + { + "id": "0x010019B00BE72000", + "name": "Cel Damage HD" + }, + { + "id": "0x01001A300C802000", + "name": "Fragment of Marine" + }, + { + "id": "0x010000E011176000", + "name": "Rover Wars" + }, + { + "id": "0x010002800B818000", + "name": "Velocity®2X" + }, + { + "id": "0x010003D00867A000", + "name": "Plantera Deluxe Demo" + }, + { + "id": "0x010009F004E66000", + "name": "Transcripted" + }, + { + "id": "0x01000D7005E28000", + "name": "Spelunker Party! DEMO VERSION" + }, + { + "id": "0x01000E300E2D6000", + "name": "Super Star Blast" + }, + { + "id": "0x01000EC00E60E000", + "name": "Vosaria: Lair of the Forgotten" + }, + { + "id": "0x01001180021FA000", + "name": "Shovel Knight: Specter of Torment" + }, + { + "id": "0x0100137011172000", + "name": "Kakuro Magic" + }, + { + "id": "0x010014A00AC5A000", + "name": "The Golf" + }, + { + "id": "0x010018300C83A000", + "name": "Professor Lupo and his Horrible Pets" + }, + { + "id": "0x01001B40086E2000", + "name": "The Bunker" + }, + { + "id": "0x01001F0012868000", + "name": "Paratopic" + }, + { + "id": "0x010020500E862000", + "name": "World Of Riders" + }, + { + "id": "0x0100205011C54000", + "name": "The Snake King" + }, + { + "id": "0x0100218011E7E000", + "name": "MX vs ATV All Out" + }, + { + "id": "0x010022400E71C000", + "name": "Harvest Moon: Mad Dash" + }, + { + "id": "0x01002800110CA000", + "name": "Red Rope: Don't Fall Behind +" + }, + { + "id": "0x010029B0118E8000", + "name": "Need for Speed™ Hot Pursuit Remastered" + }, + { + "id": "0x01002A900D6D6000", + "name": "Motorsport Manager for Nintendo Switch™" + }, + { + "id": "0x010000C010E76000", + "name": "Pocket Mini Golf" + }, + { + "id": "0x0100019006F4E000", + "name": "I Am The Hero" + }, + { + "id": "0x0100034012606000", + "name": "Family Mysteries: Poisonous Promises" + }, + { + "id": "0x010004900D976000", + "name": "Contraptions" + }, + { + "id": "0x0100069010592000", + "name": "Red Death" + }, + { + "id": "0x010007700D4AC000", + "name": "The Forbidden Arts" + }, + { + "id": "0x010009300AA6C000", + "name": "Claybook" + }, + { + "id": "0x01000FA00A4E4000", + "name": "Garage" + }, + { + "id": "0x010011000EA7A000", + "name": "BRIGANDINE The Legend of Runersia" + }, + { + "id": "0x0100141011CF2000", + "name": "Arcade Archives Kangaroo" + }, + { + "id": "0x010015500E9C0000", + "name": "Hexagroove: Tactical DJ" + }, + { + "id": "0x010016E011EFA000", + "name": "Norman's Great Illusion" + }, + { + "id": "0x01001B7012A3E000", + "name": "Car Driving School Simulator" + }, + { + "id": "0x01001CA00C514000", + "name": "Tinboy" + }, + { + "id": "0x01001F600829A000", + "name": "Romancing SaGa 2" + }, + { + "id": "0x01001FF00B544000", + "name": "NBA 2K19" + }, + { + "id": "0x010024A005A2A000", + "name": "Super Treasure Arena" + }, + { + "id": "0x010024F008742000", + "name": "Chameleon Run Deluxe Edition" + }, + { + "id": "0x010027100BD16000", + "name": "Crashlands" + }, + { + "id": "0x010028F010644000", + "name": "Secret Files 3" + }, + { + "id": "0x010003F00CC98000", + "name": "Sky Gamblers - Afterburner" + }, + { + "id": "0x010004100FBB0000", + "name": "Chapeau" + }, + { + "id": "0x0100047009742000", + "name": "Twin Robots: Ultimate Edition" + }, + { + "id": "0x010005A00A4F4000", + "name": "Air Hockey" + }, + { + "id": "0x010009000CBB6000", + "name": "Super Hero Fight Club: Reloaded" + }, + { + "id": "0x010009300D31C000", + "name": "Squidgies Takeover" + }, + { + "id": "0x01000D200AC0C000", + "name": "Bud Spencer & Terence Hill - Slaps And Beans" + }, + { + "id": "0x01000D4011D10000", + "name": "Tanky Tanks" + }, + { + "id": "0x01001010121DE000", + "name": "Gothic Murder: Adventure That Changes Destiny" + }, + { + "id": "0x010011700D6E2000", + "name": "Homo Machina" + }, + { + "id": "0x0100118009C68000", + "name": "Figment" + }, + { + "id": "0x010013A00E750000", + "name": "Calico" + }, + { + "id": "0x010019D012018000", + "name": "Jelly Champs!" + }, + { + "id": "0x01001A100C0E8000", + "name": "Caveblazers" + }, + { + "id": "0x01001AE00C1B2000", + "name": "NBA 2K Playgrounds 2" + }, + { + "id": "0x01001B80124E4000", + "name": "Checkers" + }, + { + "id": "0x01001D3003FDE000", + "name": "Indivisible" + }, + { + "id": "0x010022700E7D6000", + "name": "FAR: Lone Sails" + }, + { + "id": "0x010023100B19A000", + "name": "Super Dungeon Tactics" + }, + { + "id": "0x01002580038DE000", + "name": "ACA NEOGEO GALAXY FIGHT: UNIVERSAL WARRIORS" + }, + { + "id": "0x010025400AECE000", + "name": "Fortnite" + }, + { + "id": "0x010025F011DB4000", + "name": "Orbt XL" + }, + { + "id": "0x0100273008FBC000", + "name": "Mercenaries Saga Chronicles" + }, + { + "id": "0x010029400DE76000", + "name": "Bullet Battle: Evolution" + }, + { + "id": "0x010029E00C780000", + "name": "Azure Saga: Pathfinder DELUXE Edition" + }, + { + "id": "0x010029F00C876000", + "name": "Odium to the Core" + }, + { + "id": "0x01002B300ECA2000", + "name": "Secret Files Sam Peters" + }, + { + "id": "0x01002BE00BA82000", + "name": "Word Puzzles by POWGI" + }, + { + "id": "0x01002C2011828000", + "name": "Gravity Rider Zero" + }, + { + "id": "0x01002C301033E000", + "name": "Just Glide" + }, + { + "id": "0x01002C600C412000", + "name": "Monument Builders Rushmore" + }, + { + "id": "0x01002CB006AFA000", + "name": "Dungeon Rushers" + }, + { + "id": "0x01002DE01043E000", + "name": "Stela" + }, + { + "id": "0x01002F300D2C6000", + "name": "Arcade Archives Ninja Spirit" + }, + { + "id": "0x010033100691A000", + "name": "The Coma: Recut" + }, + { + "id": "0x01003320103F0000", + "name": "Breakfast Bar Tycoon" + }, + { + "id": "0x010033500B7B6000", + "name": "Darkwood" + }, + { + "id": "0x010033B0134A2000", + "name": "Freddy Spaghetti" + }, + { + "id": "0x0100356009860000", + "name": "Dragon Sinker" + }, + { + "id": "0x010035C00A4BC000", + "name": "The Adventures of Elena Temple" + }, + { + "id": "0x01000E301107A000", + "name": "Couch Co-Op Bundle Vol. 2" + }, + { + "id": "0x0100113008262000", + "name": "Masquerada: Songs and Shadows" + }, + { + "id": "0x0100156011032000", + "name": "Ageless" + }, + { + "id": "0x010016D00A964000", + "name": "SilverStarChess" + }, + { + "id": "0x01001A800D6BC000", + "name": "Castlevania Anniversary Collection" + }, + { + "id": "0x01001A900F862000", + "name": "Skelattack" + }, + { + "id": "0x01001BB00C2EC000", + "name": "The Path of Motus" + }, + { + "id": "0x01001DB00CCA6000", + "name": "Tied Together Demo" + }, + { + "id": "0x010022C00E8D8000", + "name": "It's Raining Fists and Metal" + }, + { + "id": "0x010022F00DA66000", + "name": "Yooka-Laylee and the Impossible Lair" + }, + { + "id": "0x010023100B96E000", + "name": "Persian Nights: Sands of Wonders" + }, + { + "id": "0x010025200E30C000", + "name": "SEGA AGES Ichidant-R" + }, + { + "id": "0x010025A00AACE000", + "name": "Hot Gimmick Cosplay-jong for Nintendo Switch" + }, + { + "id": "0x010025C00D8A2000", + "name": "I wanna fly" + }, + { + "id": "0x010026200FF36000", + "name": "Jets'n'Guns" + }, + { + "id": "0x010028B00CBD0000", + "name": "Reigns: Game of Thrones" + }, + { + "id": "0x01002C900C9AC000", + "name": "Chaos on Deponia" + }, + { + "id": "0x01002DD00AF9E000", + "name": "The Fall" + }, + { + "id": "0x01002F00100A2000", + "name": "Arcade Archives Bells & Whistles" + }, + { + "id": "0x01002130136C0000", + "name": "Dungeonoid" + }, + { + "id": "0x010021D00F404000", + "name": "Code: Realize ~Guardian of Rebirth~" + }, + { + "id": "0x010023600C704000", + "name": "Deponia" + }, + { + "id": "0x010023E008702000", + "name": "Spiral Splatter" + }, + { + "id": "0x010024000C852000", + "name": "Deponia Doomsday" + }, + { + "id": "0x0100247013722000", + "name": "Pixel Game Maker Series STEOS -Sorrow song of Bounty hunter-" + }, + { + "id": "0x010029E00B0D8000", + "name": "Shift Happens Demo" + }, + { + "id": "0x010031E00EA24000", + "name": "Under the Jolly Roger" + }, + { + "id": "0x010033300AC1A000", + "name": "The Mooseman" + }, + { + "id": "0x010037900CB1C000", + "name": "Viviette" + }, + { + "id": "0x010039A0117C0000", + "name": "ROBOTICS;NOTES DaSH" + }, + { + "id": "0x01003A800B102000", + "name": "One Strike" + }, + { + "id": "0x01003D90058FC000", + "name": "CrossCode" + }, + { + "id": "0x01003E300FCAE000", + "name": "Super Loop Drive" + }, + { + "id": "0x01003ED0099B0000", + "name": "Danger Mouse: The Danger Games" + }, + { + "id": "0x010041D00DEB2000", + "name": "Amoeba Battle - Microscopic RTS Action" + }, + { + "id": "0x010041F0128AE000", + "name": "Liege Dragon" + }, + { + "id": "0x010043500A17A000", + "name": "Fallout Shelter" + }, + { + "id": "0x010043800AD94000", + "name": "Neverout" + }, + { + "id": "0x010045500DFE2000", + "name": "Silk" + }, + { + "id": "0x01001BF00B54E000", + "name": "Spider Solitaire F" + }, + { + "id": "0x01001C2010D08000", + "name": "They Bleed Pixels" + }, + { + "id": "0x01001DE005012000", + "name": "Quest of Dungeons" + }, + { + "id": "0x01001DE0076A4000", + "name": "Shu" + }, + { + "id": "0x01001EE00A6B0000", + "name": "Zotrix: Solar Division" + }, + { + "id": "0x01001F201121E000", + "name": "PAW Patrol Mighty Pups Save Adventure Bay" + }, + { + "id": "0x01001FF01247E000", + "name": "Epic Word Search Collection 2" + }, + { + "id": "0x010024C001224000", + "name": "PAC-MAN™ CHAMPIONSHIP EDITION 2 PLUS" + }, + { + "id": "0x0100251012E38000", + "name": "Journey of the Broken Circle" + }, + { + "id": "0x010029500DFBA000", + "name": "Everdark Tower" + }, + { + "id": "0x01002A300BDE2000", + "name": "Panda Hero" + }, + { + "id": "0x01002C6012334000", + "name": "My Aunt is a Witch" + }, + { + "id": "0x01002C9005F36000", + "name": "Youtubers Life OMG Edition" + }, + { + "id": "0x01002D900C5E4000", + "name": "Uncanny Valley" + }, + { + "id": "0x01002E700F958000", + "name": "Brunswick Pro Billiards" + }, + { + "id": "0x0100307011C44000", + "name": "Yuppie Psycho: Executive Edition" + }, + { + "id": "0x0100322004844000", + "name": "Embers of Mirrim" + }, + { + "id": "0x0100335012D08000", + "name": "Family Mysteries 2: Echoes of Tomorrow" + }, + { + "id": "0x010034E005C9C000", + "name": "Code of Princess EX" + }, + { + "id": "0x010026000E466000", + "name": "NBA 2K20" + }, + { + "id": "0x0100284007D6C000", + "name": "Super One More Jump" + }, + { + "id": "0x010029D00E740000", + "name": "DOOM 3" + }, + { + "id": "0x01002A2004530000", + "name": "The Bridge" + }, + { + "id": "0x01002D100EF3A000", + "name": "Vigil: The Longest Night" + }, + { + "id": "0x01002D4007AE0000", + "name": "Mega Man Legacy Collection" + }, + { + "id": "0x010030700CBBC000", + "name": "The friends of Ringo Ishikawa" + }, + { + "id": "0x010034400CB5E000", + "name": "Candleman" + }, + { + "id": "0x01003670066DE000", + "name": "36 Fragments of Midnight" + }, + { + "id": "0x010038B0084EA000", + "name": "#Breakforcist Battle" + }, + { + "id": "0x01003B200C6CA000", + "name": "Tyr : Chains of Valhalla" + }, + { + "id": "0x01003F900E74E000", + "name": "Evan's Remains" + }, + { + "id": "0x0100401003A0C000", + "name": "Dimension Drive" + }, + { + "id": "0x010041C00D086000", + "name": "Ion Fury" + }, + { + "id": "0x01004200099F2000", + "name": "Fractured Minds" + }, + { + "id": "0x010042C006490000", + "name": "Bleed" + }, + { + "id": "0x01004360045C8000", + "name": "Lichtspeer: Double Speer Edition" + }, + { + "id": "0x0100449011506000", + "name": "The Last Campfire" + }, + { + "id": "0x010045C011DF6000", + "name": "Endurance - space action" + }, + { + "id": "0x01004A200C236000", + "name": "Animated Jigsaws: Wild Animals" + }, + { + "id": "0x01002EB007D3A000", + "name": "Star Ghost" + }, + { + "id": "0x0100331005E8E000", + "name": "Super Putty Squad" + }, + { + "id": "0x0100343013248000", + "name": "Nubarron: The adventure of an unlucky gnome" + }, + { + "id": "0x0100355002CBE000", + "name": "Johnny Turbo's Arcade Joe and Mac Caveman Ninja" + }, + { + "id": "0x010035A00DF62000", + "name": "KUNAI" + }, + { + "id": "0x01003830092B8000", + "name": "Giana Sisters: Twisted Dreams - Owltimate Edition" + }, + { + "id": "0x010038500BCD6000", + "name": "Grandpa and the Zombies" + }, + { + "id": "0x010038B00B9AE000", + "name": "Mummy Pinball" + }, + { + "id": "0x010038F00AFA0000", + "name": "ACA NEOGEO Money Puzzle Exchanger" + }, + { + "id": "0x010039C0106C6000", + "name": "Baron: Fur Is Gonna Fly" + }, + { + "id": "0x01003B400A00A000", + "name": "The Adventures of Bertram Fiddle: Episode 1: A Dreadly Business" + }, + { + "id": "0x01003BC0000A0000", + "name": "Splatoon™ 2" + }, + { + "id": "0x01003BC00FBAA000", + "name": "Color Jumper" + }, + { + "id": "0x01003CD00E8BC000", + "name": "Offroad Racing - Buggy X ATV X Moto" + }, + { + "id": "0x01003D50100F4000", + "name": "Breathing Fear" + }, + { + "id": "0x01003F000C7F8000", + "name": "Necrosphere Deluxe" + }, + { + "id": "0x010040900F032000", + "name": "Horse Farm" + }, + { + "id": "0x010042C011476000", + "name": "Unrailed!" + }, + { + "id": "0x010043A012A32000", + "name": "Blackjack Hands" + }, + { + "id": "0x01002A000CD48000", + "name": "Resident Evil 6" + }, + { + "id": "0x01002B400873C000", + "name": "Samurai Defender: Ninja Warfare" + }, + { + "id": "0x01002B5012004000", + "name": "Adventures of Pip" + }, + { + "id": "0x01002BB00C01E000", + "name": "Animated Jigsaws: Japanese Women" + }, + { + "id": "0x01002D3007962000", + "name": "Sundered: Eldritch Edition" + }, + { + "id": "0x01002F1005F3C000", + "name": "Away: Journey To The Unexpected" + }, + { + "id": "0x01002FF00F460000", + "name": "Warhammer Quest 2: The End Times" + }, + { + "id": "0x010031900F66E000", + "name": "Rally Road - Crashy Car Racing" + }, + { + "id": "0x0100325012C12000", + "name": "#NoLimitFantasy, Super Puzzles Dream" + }, + { + "id": "0x010034F00BFC8000", + "name": "Debris Infinity" + }, + { + "id": "0x010038400C2FE000", + "name": "TY the Tasmanian Tiger HD" + }, + { + "id": "0x010038600B27E000", + "name": "Bastion" + }, + { + "id": "0x010039A010DA0000", + "name": "Active Neurons - Puzzle game" + }, + { + "id": "0x01003C400AD42000", + "name": "Rescue Tale" + }, + { + "id": "0x01004230123E0000", + "name": "More Dark" + }, + { + "id": "0x010042500FABA000", + "name": "Ritual: Crown of Horns" + }, + { + "id": "0x010044700FB46000", + "name": "SELFY COLLECTION The dream fashion stylist!" + }, + { + "id": "0x010045000BF6A000", + "name": "Mitsurugi Kamui Hikae" + }, + { + "id": "0x010048800B638000", + "name": "Windjammers" + }, + { + "id": "0x01004CF00A60E000", + "name": "Super Saurio Fly" + }, + { + "id": "0x010051800E922000", + "name": "The Dark Crystal: Age of Resistance Tactics" + }, + { + "id": "0x010051A00E99E000", + "name": "Bug Fables: The Everlasting Sapling" + }, + { + "id": "0x010051A011AD8000", + "name": "Poopdie - Chapter One" + }, + { + "id": "0x010053B0117F8000", + "name": "Biped" + }, + { + "id": "0x010058600E530000", + "name": "Empire of Sin" + }, + { + "id": "0x010059400E2FC000", + "name": "Damaged In Transit" + }, + { + "id": "0x01005F200F7C2000", + "name": "Zen Chess Collection" + }, + { + "id": "0x01005F3012748000", + "name": "Batbarian: Testament of the Primordials" + }, + { + "id": "0x01005F4009112000", + "name": "Nightmare Boy: The New Horizons of Reigns of Dreams, a Metroidvania journey with little rusty nightmares, the empire of knight final boss" + }, + { + "id": "0x01006040110AE000", + "name": "Yes, Your Grace" + }, + { + "id": "0x010060700AC50000", + "name": "MARVEL ULTIMATE ALLIANCE 3: The Black Order" + }, + { + "id": "0x010062C00F558000", + "name": "So Many Me: Extended Edition" + }, + { + "id": "0x010063100B2C2000", + "name": "Cytus α" + }, + { + "id": "0x0100669011C36000", + "name": "Chickens Madness" + }, + { + "id": "0x010068200E96E000", + "name": "Sky Gamblers: Storm Raiders 2" + }, + { + "id": "0x010068700C70A000", + "name": "ITTA" + }, + { + "id": "0x010069900F270000", + "name": "Himno" + }, + { + "id": "0x01006AA013086000", + "name": "Art Sqool" + }, + { + "id": "0x010029D006ED8000", + "name": "Arcade Archives Traverse USA" + }, + { + "id": "0x010029F00FCC4000", + "name": "Tennis Go" + }, + { + "id": "0x01002A600D7FC000", + "name": "Collection of Mana" + }, + { + "id": "0x01002B00111A2000", + "name": "Hyrule Warriors: Age of Calamity" + }, + { + "id": "0x01002C0008E52000", + "name": "Tales of Vesperia™: Definitive Edition" + }, + { + "id": "0x010030F008730000", + "name": "ACA NEOGEO REAL BOUT FATAL FURY" + }, + { + "id": "0x010031200B94C000", + "name": "My Friend Pedro" + }, + { + "id": "0x010032700EAC4000", + "name": "WarriOrb" + }, + { + "id": "0x010035901046C000", + "name": "Mushroom Quest" + }, + { + "id": "0x010039300A56C000", + "name": "Squareboy vs Bullies: Arena Edition Demo" + }, + { + "id": "0x010039A008E76000", + "name": "ChromaGun" + }, + { + "id": "0x01003B300B568000", + "name": "Battle Supremacy" + }, + { + "id": "0x01003B9007E86000", + "name": "Hammerwatch" + }, + { + "id": "0x01003C300AAAE000", + "name": "Another World" + }, + { + "id": "0x01003F000973E000", + "name": "Metropolis: Lux Obscura" + }, + { + "id": "0x0100465008756000", + "name": "Banner Saga 1" + }, + { + "id": "0x010047F001DBC000", + "name": "ACA NEOGEO SAMURAI SHODOWN IV" + }, + { + "id": "0x0100487012CC6000", + "name": "The Last Days" + }, + { + "id": "0x010049400C7A8000", + "name": "Arcade Archives IKARI WARRIORS" + }, + { + "id": "0x010049500DE56000", + "name": "War Tech Fighters" + }, + { + "id": "0x0100299013ADE000", + "name": "Arcade Archives MARKHAM" + }, + { + "id": "0x01002C300E630000", + "name": "Arcade Archives TRACK & FIELD" + }, + { + "id": "0x01002DD004FAC000", + "name": "ACA NEOGEO WORLD HEROES" + }, + { + "id": "0x01002FD01191A000", + "name": "Glass Masquerade Double Pack" + }, + { + "id": "0x010030A006F6E000", + "name": "Light Fall" + }, + { + "id": "0x010031600ACF4000", + "name": "Path to Mnemosyne" + }, + { + "id": "0x0100327005C94000", + "name": "Kentucky Route Zero: TV Edition" + }, + { + "id": "0x010033F00B3FA000", + "name": "Anima: Gate of Memories - Arcane Edition" + }, + { + "id": "0x0100340009736000", + "name": "Jotun: Valhalla Edition" + }, + { + "id": "0x010034800FB60000", + "name": "Spaceland" + }, + { + "id": "0x010034D010E78000", + "name": "Tharsis" + }, + { + "id": "0x010038F00ED14000", + "name": "Ball Attraction" + }, + { + "id": "0x01003D00099EC000", + "name": "Raging Justice" + }, + { + "id": "0x01003D200BAA2000", + "name": "Pokémon Mystery Dungeon™: Rescue Team DX" + }, + { + "id": "0x010041C01014E000", + "name": "Skybolt Zack" + }, + { + "id": "0x010042000CA02000", + "name": "Super Life of Pixel" + }, + { + "id": "0x0100459011750000", + "name": "Tennis Open 2020" + }, + { + "id": "0x010046500C8D2000", + "name": "Among the Sleep - Enhanced Edition" + }, + { + "id": "0x0100492011A8A000", + "name": "Death's Hangover" + }, + { + "id": "0x010047A00E486000", + "name": "Renegade" + }, + { + "id": "0x01004820120C0000", + "name": "BallzOut" + }, + { + "id": "0x010048800F41C000", + "name": "One Step From Eden" + }, + { + "id": "0x010049000B69E000", + "name": "Black Future '88" + }, + { + "id": "0x01004AB00B4F8000", + "name": "Unworthy" + }, + { + "id": "0x01004C200ADA0000", + "name": "Trax - Build it Race it" + }, + { + "id": "0x01004DC00CFD2000", + "name": "Tales of the Orient - The Rising Sun" + }, + { + "id": "0x01004DE011076000", + "name": "Digerati Indie Darling Bundle Vol. 3" + }, + { + "id": "0x01004F4003FDC000", + "name": "Yesterday Origins" + }, + { + "id": "0x01004F800C4DA000", + "name": "Croc's World" + }, + { + "id": "0x01004F9012D84000", + "name": "Grim Legends 3: The Dark City" + }, + { + "id": "0x010053200F49E000", + "name": "Old School RPG Bundle" + }, + { + "id": "0x0100552011612000", + "name": "HALF DEAD" + }, + { + "id": "0x0100560010E3E000", + "name": "We should talk." + }, + { + "id": "0x01005640080B0000", + "name": "Crimsonland" + }, + { + "id": "0x010056E00853A000", + "name": "A Hat in Time" + }, + { + "id": "0x0100574002AF4000", + "name": "ONE PIECE: Unlimited World Red Deluxe Edition" + }, + { + "id": "0x010058900D4AE000", + "name": "12 Labours of Hercules" + }, + { + "id": "0x01005CA0099AA000", + "name": "1917 - The Alien Invasion DX" + }, + { + "id": "0x01005CE00617E000", + "name": "Percy's Predicament Deluxe" + }, + { + "id": "0x0100219008678000", + "name": "The Warlock of Firetop Mountain: Goblin Scourge Edition!" + }, + { + "id": "0x010021A00ABEE000", + "name": "SKYPEACE" + }, + { + "id": "0x010022300F856000", + "name": "Tennis 1920s" + }, + { + "id": "0x010022D00D4F0000", + "name": "Cricket 19" + }, + { + "id": "0x01002620102C6000", + "name": "BioShock 2 Remastered" + }, + { + "id": "0x0100276009872000", + "name": "OKAMI HD" + }, + { + "id": "0x010028001179C000", + "name": "Skelly Selest & Straimium Immortaly Double Pack" + }, + { + "id": "0x010029200B6AA000", + "name": "The Walking Dead: The Complete First Season" + }, + { + "id": "0x01002A900EE8A000", + "name": "ROBOTICS;NOTES ELITE" + }, + { + "id": "0x01002F5012864000", + "name": "Tales from the Dragon Mountain 2: The Lair" + }, + { + "id": "0x010032600C8CE000", + "name": "Goat Simulator: The GOATY" + }, + { + "id": "0x010033A011614000", + "name": "MEGA PARTY - a tootuff adventure" + }, + { + "id": "0x010036D00C362000", + "name": "Sheltered" + }, + { + "id": "0x010038D00EC88000", + "name": "Grand Brix Shooter" + }, + { + "id": "0x01003AD011E36000", + "name": "Reason - Casual Puzzle" + }, + { + "id": "0x01003B2009D18000", + "name": "Violett Demo" + }, + { + "id": "0x01003C700D0DE000", + "name": "Rain City" + }, + { + "id": "0x01003CF00DCFA000", + "name": "The Alliance Alive HD Remastered" + }, + { + "id": "0x01003F80133CC000", + "name": "De: Yabatanien" + }, + { + "id": "0x010032C011356000", + "name": "Magicolors" + }, + { + "id": "0x010033300EC86000", + "name": "Sea Salt" + }, + { + "id": "0x010033600ADE6000", + "name": "Wheel of Fortune®" + }, + { + "id": "0x010033C0121DC000", + "name": "Animal Pairs - Matching & Concentration Game for Toddlers & Kids" + }, + { + "id": "0x0100348001DE6000", + "name": "Arcade Archives TERRA FORCE" + }, + { + "id": "0x010039200EC66000", + "name": "Miniature - The Story Puzzle" + }, + { + "id": "0x01003A00122E2000", + "name": "Truck Mechanic Simulator" + }, + { + "id": "0x01003D3009996000", + "name": "Totes the Goat" + }, + { + "id": "0x01003D301357A000", + "name": "Dark Arcana: The Carnival" + }, + { + "id": "0x010040000D08E000", + "name": "V.O.I.D." + }, + { + "id": "0x0100422001DDA000", + "name": "Arcade Archives TERRA CRESTA" + }, + { + "id": "0x010043100F0EA000", + "name": "Puzzle Book" + }, + { + "id": "0x010045500D0F4000", + "name": "Dread Nautical" + }, + { + "id": "0x010045B00849C000", + "name": "MIGHTY GUNVOLT BURST Demo" + }, + { + "id": "0x010048000F946000", + "name": "Masky" + }, + { + "id": "0x01004A201292C000", + "name": "Bunny Adventure" + }, + { + "id": "0x01004B100A1C4000", + "name": "MathLand" + }, + { + "id": "0x01004DE01162C000", + "name": "Super Space Snake" + }, + { + "id": "0x01004E500DB9E000", + "name": "Summer Sweetheart" + }, + { + "id": "0x01004F8006A78000", + "name": "Super Meat Boy" + }, + { + "id": "0x010044F00BB80000", + "name": "Back in 1995" + }, + { + "id": "0x010048900CF64000", + "name": "Worldend Syndrome" + }, + { + "id": "0x0100496004194000", + "name": "The Mummy Demastered" + }, + { + "id": "0x01004BE00A682000", + "name": "Black Hole Demo" + }, + { + "id": "0x01004DE00DD44000", + "name": "Monster Puzzle" + }, + { + "id": "0x010052100D1B4000", + "name": "Spot The Differences: Party!" + }, + { + "id": "0x010053100B0EA000", + "name": "Akihabara - Feel the Rhythm Remixed" + }, + { + "id": "0x0100538012496000", + "name": "Grindstone" + }, + { + "id": "0x010057700FF7C000", + "name": "Billion Road" + }, + { + "id": "0x010058500B3E0000", + "name": "Labyrinth of Refrain: Coven of Dusk" + }, + { + "id": "0x01005A600BE60000", + "name": "Fall of Light: Darkest Edition" + }, + { + "id": "0x01005A80113D2000", + "name": "The House of Da Vinci 2" + }, + { + "id": "0x01005E501284E000", + "name": "City Bus Driving Simulator" + }, + { + "id": "0x010060300A67C000", + "name": "INK" + }, + { + "id": "0x010061900F896000", + "name": "The Eternal Castle [REMASTERED]" + }, + { + "id": "0x010062500BFC0000", + "name": "The Book of Unwritten Tales 2" + }, + { + "id": "0x010064500AF72000", + "name": "Aegis Defenders demo" + }, + { + "id": "0x010067300E024000", + "name": "Super Mega Baseball 3" + }, + { + "id": "0x010069F008A38000", + "name": "Arcade Archives STAR FORCE" + }, + { + "id": "0x010044200A112000", + "name": "Vostok Inc. Demo" + }, + { + "id": "0x010046200FC62000", + "name": "Kingdom Rush Frontiers" + }, + { + "id": "0x0100495011B6A000", + "name": "HexON" + }, + { + "id": "0x01004AE0108E0000", + "name": "Panzer Paladin" + }, + { + "id": "0x01004BC012436000", + "name": "Puzzle Bundle - 3 in 1" + }, + { + "id": "0x01004C300FCD4000", + "name": "Indie Gems Bundle - Explosions Edition" + }, + { + "id": "0x01004D300BF98000", + "name": "Gnomes Garden" + }, + { + "id": "0x01004F400B978000", + "name": "Robbotto" + }, + { + "id": "0x010052D0129E4000", + "name": "This is the Zodiac Speaking" + }, + { + "id": "0x010053000B986000", + "name": "Road Redemption" + }, + { + "id": "0x010053401147C000", + "name": "PGA TOUR 2K21" + }, + { + "id": "0x0100547010920000", + "name": "Arcade Archives P.O.W. -PRISONERS OF WAR-" + }, + { + "id": "0x0100549008C9C000", + "name": "Mages of Mystralia" + }, + { + "id": "0x010054C00D842000", + "name": "Anthill" + }, + { + "id": "0x010055500CCD2000", + "name": "Ankh Guardian - Treasure of the Demon's Temple" + }, + { + "id": "0x0100563005B70000", + "name": "Perception" + }, + { + "id": "0x0100566009238000", + "name": "DragoDino" + }, + { + "id": "0x0100596011E20000", + "name": "Anti Hero Bundle" + }, + { + "id": "0x01005A400DB52000", + "name": "The Jackbox Party Pack 6" + }, + { + "id": "0x01005CC007616000", + "name": "R.B.I. Baseball 18" + }, + { + "id": "0x010027400CDC6000", + "name": "Divinity: Original Sin 2 - Definitive Edition" + }, + { + "id": "0x010027700FD2E000", + "name": "Decay of Logos" + }, + { + "id": "0x010027D011C9C000", + "name": "Where Angels Cry" + }, + { + "id": "0x0100288012966000", + "name": "Woodsalt" + }, + { + "id": "0x01002CC0062B8000", + "name": "DEEMO" + }, + { + "id": "0x01002D70049CA000", + "name": "Machinarium" + }, + { + "id": "0x01002DE00E5D0000", + "name": "Metaloid: Origin" + }, + { + "id": "0x010030600E65A000", + "name": "Detective Dolittle" + }, + { + "id": "0x010031F002B66000", + "name": "Mr. Shifty" + }, + { + "id": "0x010034500641A000", + "name": "Attack on Titan 2" + }, + { + "id": "0x0100378002CCA000", + "name": "Johnny Turbo’s Arcade: Express Raider" + }, + { + "id": "0x010038200E088000", + "name": "Flan" + }, + { + "id": "0x010038B012D32000", + "name": "BIT.TRIP BEAT" + }, + { + "id": "0x010038D00B10A000", + "name": "Big Bash Boom" + }, + { + "id": "0x010039601162A000", + "name": "Him & Her" + }, + { + "id": "0x010039801093A000", + "name": "Never Breakup" + }, + { + "id": "0x01003EF0118D2000", + "name": "Reed 2" + }, + { + "id": "0x01003F9010D6C000", + "name": "Chess Ace" + }, + { + "id": "0x010040D00B7CE000", + "name": "The Swindle" + }, + { + "id": "0x010040D00BCF4000", + "name": "Storm Boy" + }, + { + "id": "0x010026400DE10000", + "name": "Dragon Pinball" + }, + { + "id": "0x010027100C544000", + "name": "Dragon's Lair Trilogy" + }, + { + "id": "0x0100277011F1A000", + "name": "Super Mario Bros.™ 35" + }, + { + "id": "0x01002CD00A51C000", + "name": "Baba Is You" + }, + { + "id": "0x01002EA00ABBA000", + "name": "Oddworld: Stranger's Wrath" + }, + { + "id": "0x01002FC00412C000", + "name": "Little Nightmares Complete Edition" + }, + { + "id": "0x010031200E044000", + "name": "Two Point Hospital™" + }, + { + "id": "0x0100341013852000", + "name": "Arcade Archives Rush'n Attack" + }, + { + "id": "0x01003A90133A6000", + "name": "Liberated: Enhanced Edition" + }, + { + "id": "0x010041501005E000", + "name": "Interrogation: You will be deceived" + }, + { + "id": "0x0100451012492000", + "name": "Animals for Toddlers" + }, + { + "id": "0x010049500F996000", + "name": "Hero must die. again" + }, + { + "id": "0x010049E01218C000", + "name": "Retro Classix Collection #1: Data East" + }, + { + "id": "0x010049F00EC30000", + "name": "Nyan Cat: Lost in Space" + }, + { + "id": "0x01004AB00AEF8000", + "name": "SNK 40th ANNIVERSARY COLLECTION" + }, + { + "id": "0x010050F00BC1A000", + "name": "Resident Evil" + }, + { + "id": "0x010054600AC74000", + "name": "LOST ORBIT: Terminal Velocity" + }, + { + "id": "0x010057300B0DC000", + "name": "Heroki" + }, + { + "id": "0x0100575011092000", + "name": "Super Destronaut: Land Wars" + }, + { + "id": "0x01001D200BCC4000", + "name": "Forager" + }, + { + "id": "0x01001E700EB28000", + "name": "Idle Champions of the Forgotten Realms" + }, + { + "id": "0x01001EB00E9FE000", + "name": "Beast Quest" + }, + { + "id": "0x01001F20100B8000", + "name": "Eclipse: Edge of Light" + }, + { + "id": "0x01001FD0040F4000", + "name": "Brawlout" + }, + { + "id": "0x010022B00ACE6000", + "name": "BLACK BIRD" + }, + { + "id": "0x010023F008204000", + "name": "Haunted Dungeons:Hyakki Castle" + }, + { + "id": "0x0100254012184000", + "name": "Retro Classix 2-in-1 Pack: Heavy Barrel & Super Burger Time" + }, + { + "id": "0x010026E00FEBE000", + "name": "Akuto: Showdown" + }, + { + "id": "0x010026E0104C0000", + "name": "Tilt Pack" + }, + { + "id": "0x01002970080AA000", + "name": "Tennis in the Face" + }, + { + "id": "0x01002AA004DB4000", + "name": "ACA NEOGEO BURNING FIGHT" + }, + { + "id": "0x01002C4009990000", + "name": "OPUS: Rocket of Whispers" + }, + { + "id": "0x01002C400E526000", + "name": "Gigantosaurus The Game" + }, + { + "id": "0x01002C900BF74000", + "name": "Puzzle Wall" + }, + { + "id": "0x01002CC003FE6000", + "name": "Starlink: Battle for Atlas™ Digital Edition" + }, + { + "id": "0x01002EF013734000", + "name": "Kolumno" + }, + { + "id": "0x01002F4011A8E000", + "name": "Animal Fun for Toddlers and Kids" + }, + { + "id": "0x010030B00C370000", + "name": "Tanks Meet Zombies" + }, + { + "id": "0x01001A500E8B4000", + "name": "SUPERHOT" + }, + { + "id": "0x01001B600BC32000", + "name": "Stardust Galaxy Warriors: Stellar Climax" + }, + { + "id": "0x01001CA012F30000", + "name": "Powertris" + }, + { + "id": "0x01001CC00FA1A000", + "name": "Hatsune Miku: Project DIVA Mega Mix" + }, + { + "id": "0x01001E300B038000", + "name": "World Soccer Pinball" + }, + { + "id": "0x01001FF00BEE8000", + "name": "The Shapeshifting Detective" + }, + { + "id": "0x010020700B432000", + "name": "D/Generation : The Original" + }, + { + "id": "0x0100211005E94000", + "name": "Mulaka" + }, + { + "id": "0x0100225000FEE000", + "name": "Blaster Master Zero" + }, + { + "id": "0x010022600E4AE000", + "name": "Röki" + }, + { + "id": "0x010026500DAA8000", + "name": "Robbie Swifthand and the Orb of Mysteries" + }, + { + "id": "0x010026800BB06000", + "name": "Brick Breaker" + }, + { + "id": "0x010026D0122B8000", + "name": "Retro Game Pack" + }, + { + "id": "0x0100271004570000", + "name": "Next Up Hero" + }, + { + "id": "0x010027F00AD6C000", + "name": "SNK HEROINES Tag Team Frenzy" + }, + { + "id": "0x010027F0128EA000", + "name": "Who Wants to Be a Millionaire?" + }, + { + "id": "0x01002ED00B01C000", + "name": "Moto Racer 4" + }, + { + "id": "0x010030D012FF6000", + "name": "Bus Driver Simulator" + }, + { + "id": "0x010031200981C000", + "name": "Grid Mania" + }, + { + "id": "0x0100320009D06000", + "name": "CricktoGame: Nintendo Switch Edition" + }, + { + "id": "0x01002B400B590000", + "name": "The Fox Awaits Me" + }, + { + "id": "0x01002BA00C7CE000", + "name": "The Savior's Gang" + }, + { + "id": "0x01002C000E35E000", + "name": "WHAT THE GOLF?" + }, + { + "id": "0x01002CD00C7C8000", + "name": "Mindball Play" + }, + { + "id": "0x01002D4012BBC000", + "name": "Pocket Circuit" + }, + { + "id": "0x01002E500E3EE000", + "name": "Chicken Rider" + }, + { + "id": "0x01002ED00ACC0000", + "name": "DEADBOLT" + }, + { + "id": "0x010032000EAC6000", + "name": "Neon Drive" + }, + { + "id": "0x010032D012602000", + "name": "Gas Station: Highway Services" + }, + { + "id": "0x0100353009836000", + "name": "Arcade Archives THE LEGEND OF KAGE" + }, + { + "id": "0x010038000F644000", + "name": "LA-MULANA 2" + }, + { + "id": "0x01003C200A232000", + "name": "Animated Jigsaws: Beautiful Japanese Scenery" + }, + { + "id": "0x010041100CE7E000", + "name": "Lovecraft´s Untold Stories" + }, + { + "id": "0x010043C010AEA000", + "name": "Across the Grooves" + }, + { + "id": "0x0100472013142000", + "name": "CrossKrush" + }, + { + "id": "0x01004890117B2000", + "name": "A Short Hike" + }, + { + "id": "0x0100492012378000", + "name": "Quell" + }, + { + "id": "0x010049901147A000", + "name": "Video Poker at Aces Casino" + }, + { + "id": "0x01004A9006B84000", + "name": "The End Is Nigh" + }, + { + "id": "0x01004EB00C2E6000", + "name": "Revenge of the Bird King" + }, + { + "id": "0x010044500C182000", + "name": "Sid Meier’s Civilization VI" + }, + { + "id": "0x010047800E516000", + "name": "Watermelon Party" + }, + { + "id": "0x01004840086FE000", + "name": "NORTH" + }, + { + "id": "0x01004A4009106000", + "name": "Decay of Logos" + }, + { + "id": "0x01004A900C352000", + "name": "Pizza Titan Ultra" + }, + { + "id": "0x01004DA012976000", + "name": "Area 86" + }, + { + "id": "0x01004E900B082000", + "name": "Touhou Genso Wanderer Reloaded" + }, + { + "id": "0x01004F900B838000", + "name": "Zombie Night Terror" + }, + { + "id": "0x010051A00ACAC000", + "name": "Overdriven Reloaded: Special Edition" + }, + { + "id": "0x010051F00AC5E000", + "name": "SEGA AGES Sonic The Hedgehog" + }, + { + "id": "0x010056000BA1C000", + "name": "Fobia" + }, + { + "id": "0x0100578012A02000", + "name": "Crowdy Farm Rush" + }, + { + "id": "0x01005B5009364000", + "name": "Xeodrifter" + }, + { + "id": "0x01005C00117A8000", + "name": "Café Enchanté" + }, + { + "id": "0x01005D800E022000", + "name": "Where the Water Tastes Like Wine" + }, + { + "id": "0x01005E200A3AC000", + "name": "Sparkle 3 Genesis" + }, + { + "id": "0x01005F600D2D8000", + "name": "Bargain Hunter" + }, + { + "id": "0x010060000BF7C000", + "name": "Arcade Archives ROUTE 16" + }, + { + "id": "0x010060D00F658000", + "name": "Star Renegades" + }, + { + "id": "0x0100618010D76000", + "name": "Hakoniwa Explorer Plus" + }, + { + "id": "0x010029200AB1C000", + "name": "Prison Architect: Nintendo Switch™ Edition" + }, + { + "id": "0x01002AD0126AE000", + "name": "Bridge Constructor: The Walking Dead" + }, + { + "id": "0x01002BD00F626000", + "name": "Inertial Drift" + }, + { + "id": "0x01002EE00DC02000", + "name": "Railway Empire - Nintendo Switch™ Edition" + }, + { + "id": "0x01002F300D9CE000", + "name": "Distrust" + }, + { + "id": "0x0100328009800000", + "name": "Arcade Archives EXCITEBIKE" + }, + { + "id": "0x01003900122A6000", + "name": "Unitied" + }, + { + "id": "0x01003A000976E000", + "name": "Dynamite Fishing - World Games" + }, + { + "id": "0x01003AB010692000", + "name": "Freakout: Calamity TV Show" + }, + { + "id": "0x01003CD00BE22000", + "name": "Chiki-Chiki Boxy Racers" + }, + { + "id": "0x01003CE00EAF0000", + "name": "holedown" + }, + { + "id": "0x010040D011D04000", + "name": "Cubicity" + }, + { + "id": "0x010044700DEB0000", + "name": "Assassin’s Creed®: The Rebel Collection" + }, + { + "id": "0x010045C00E27C000", + "name": "We. The Revolution" + }, + { + "id": "0x0100476004A9E000", + "name": "Puzzle Box Maker" + }, + { + "id": "0x010047A008760000", + "name": "Dark Witch Music Episode: Rudymical Demo" + }, + { + "id": "0x010047F013104000", + "name": "Outbreak" + }, + { + "id": "0x010048200AFC2000", + "name": "ACA NEOGEO THE KING OF FIGHTERS 2001" + }, + { + "id": "0x010049900F546000", + "name": "Super Mario™ 3D All-Stars" + }, + { + "id": "0x01002A6006AA4000", + "name": "Riptide GP: Renegade" + }, + { + "id": "0x01002C80086E6000", + "name": "Subsurface Circular" + }, + { + "id": "0x01002CC00BC4C000", + "name": "Momonga Pinball Adventures" + }, + { + "id": "0x01002E50129DA000", + "name": "Brightstone Mysteries: Paranormal Hotel" + }, + { + "id": "0x01002EC011DA6000", + "name": "My Bewitching Perfume" + }, + { + "id": "0x010031B00DB34000", + "name": "the Knight & the Dragon" + }, + { + "id": "0x010033100AC2C000", + "name": "Akihabara CRASH! 123STAGE+1" + }, + { + "id": "0x010033200D232000", + "name": "Domiverse" + }, + { + "id": "0x010033C009E46000", + "name": "Superola and the Lost Burgers" + }, + { + "id": "0x010034300F0E2000", + "name": "Dungeon of the Endless" + }, + { + "id": "0x0100388008758000", + "name": "Banner Saga 2" + }, + { + "id": "0x010038A007AA4000", + "name": "FruitFall Crush" + }, + { + "id": "0x010038E011940000", + "name": "Puyo Puyo™ Tetris® 2" + }, + { + "id": "0x010039100DACC000", + "name": "Strike Force - War on Terror" + }, + { + "id": "0x010039700BA7E000", + "name": "Circle of Sumo" + }, + { + "id": "0x01003DD00BF0E000", + "name": "Shred! 2 - ft Sam Pilgrim" + }, + { + "id": "0x01003EA01290A000", + "name": "Office Lovers" + }, + { + "id": "0x01003F500E658000", + "name": "Lost Artifacts" + }, + { + "id": "0x010040F00AA9A000", + "name": "Speed Brawl" + }, + { + "id": "0x010048F007ADE000", + "name": "Tangledeep" + }, + { + "id": "0x010036B0113DA000", + "name": "Over the Alps" + }, + { + "id": "0x010038100D436000", + "name": "Grand Guilds" + }, + { + "id": "0x0100394012038000", + "name": "Linn: Path of Orchards" + }, + { + "id": "0x01003A300B7A6000", + "name": "Rotating Brave" + }, + { + "id": "0x01003D601014A000", + "name": "Jump King" + }, + { + "id": "0x0100419010C60000", + "name": "Arcade Archives NAUGHTY BOY" + }, + { + "id": "0x010043700C9B0000", + "name": "Conduct TOGETHER!" + }, + { + "id": "0x010044F0114B8000", + "name": "The Secret Order: Shadow Breach" + }, + { + "id": "0x01004680124E6000", + "name": "Bloodstained: Curse of the Moon 2" + }, + { + "id": "0x01004780112B6000", + "name": "In Celebration of Violence" + }, + { + "id": "0x01004B100AF18000", + "name": "Disgaea 1 Complete" + }, + { + "id": "0x01004C500BD40000", + "name": "Dead End Job" + }, + { + "id": "0x01004CD012C9A000", + "name": "DOG GONE GOLFING" + }, + { + "id": "0x01004EB00DACE000", + "name": "Later Daters" + }, + { + "id": "0x01004EC00E634000", + "name": "Arcade Archives VS. GRADIUS" + }, + { + "id": "0x010052000A574000", + "name": "Drowning" + }, + { + "id": "0x010053601357E000", + "name": "Accidental Queens Collection" + }, + { + "id": "0x010053700A25A000", + "name": "Ice Cream Surfer" + }, + { + "id": "0x010054B00D4A2000", + "name": "Asdivine Dios" + }, + { + "id": "0x010058800F860000", + "name": "Nicky - The Home Alone Golf Ball" + }, + { + "id": "0x01002FA00DE72000", + "name": "BDSM: Big Drunk Satanic Massacre" + }, + { + "id": "0x010032800F038000", + "name": "M.A.C.E. Tower Defense" + }, + { + "id": "0x010034E00EFD0000", + "name": "MISTOVER" + }, + { + "id": "0x010035D0121EC000", + "name": "Digerati Presents: The Dungeon Crawl Vol. 1" + }, + { + "id": "0x0100369001DDC000", + "name": "Arcade Archives Ninja-Kid" + }, + { + "id": "0x010036B0034E4000", + "name": "Super Mario Party™" + }, + { + "id": "0x010037500C4DE000", + "name": "Worse Than Death" + }, + { + "id": "0x01003B200B372000", + "name": "Hyper Light Drifter - Special Edition" + }, + { + "id": "0x01003E800A102000", + "name": "Trials Rising Standard Edition" + }, + { + "id": "0x01003FB00C5A8000", + "name": "Super Kirby Clash™" + }, + { + "id": "0x010042900E464000", + "name": "Motorcycle Mechanic Simulator" + }, + { + "id": "0x010045300E52A000", + "name": "Cybarian: The Time Traveling Warrior" + }, + { + "id": "0x010047300CB92000", + "name": "Desktop Soccer Trial Edition" + }, + { + "id": "0x010049501393A000", + "name": "Animal Pals Bubble Pop" + }, + { + "id": "0x01004B1001D22000", + "name": "TumbleSeed" + }, + { + "id": "0x01004B1010E58000", + "name": "Arcade Archives IKARI III -THE RESCUE-" + }, + { + "id": "0x01004D0012D28000", + "name": "Arcade Archives BEN BERO BEH" + }, + { + "id": "0x01004E900EDDA000", + "name": "Slayin 2" + }, + { + "id": "0x0100513005AF4000", + "name": "Rock'N Racing Off Road DX" + }, + { + "id": "0x01005250086C4000", + "name": "Mega Man X Legacy Collection 2" + }, + { + "id": "0x010045D01273A000", + "name": "Reflection of Mine" + }, + { + "id": "0x010046600B76A000", + "name": "Lost Phone Stories" + }, + { + "id": "0x01004A700DBD6000", + "name": "The Otterman Empire" + }, + { + "id": "0x01004BA0110D6000", + "name": "Hidden in Plain Sight" + }, + { + "id": "0x01004C400CCCA000", + "name": "Queen's Quest 2: Stories of Forgotten Past" + }, + { + "id": "0x01004C60139DE000", + "name": "JDM Racing - 2" + }, + { + "id": "0x01004C8012BB8000", + "name": "Indygo" + }, + { + "id": "0x01004E800F03C000", + "name": "Hidden" + }, + { + "id": "0x0100501006494000", + "name": "Slayaway Camp: Butcher's Cut" + }, + { + "id": "0x0100510004D2C000", + "name": "Disc Jam" + }, + { + "id": "0x01005140089F6000", + "name": "Nuclien" + }, + { + "id": "0x010052A00A306000", + "name": "ACA NEOGEO NINJA COMBAT" + }, + { + "id": "0x01005C40037C6000", + "name": "I and Me" + }, + { + "id": "0x01005C600AC68000", + "name": "Valkyria Chronicles 4" + }, + { + "id": "0x01005E101122E000", + "name": "Spirit of the North" + }, + { + "id": "0x010060A00F5E8000", + "name": "Pixel Gladiator" + }, + { + "id": "0x0100633007D48000", + "name": "Hollow Knight" + }, + { + "id": "0x0100634008266000", + "name": "YIIK: A Postmodern RPG" + }, + { + "id": "0x010065F00BE6C000", + "name": "Growtopia" + }, + { + "id": "0x010066F00DD50000", + "name": "What the Box?" + }, + { + "id": "0x010040900AF46000", + "name": "Ikenfell" + }, + { + "id": "0x010042800B880000", + "name": "STEINS;GATE ELITE" + }, + { + "id": "0x0100448011BC4000", + "name": "Let's Cook Together" + }, + { + "id": "0x010044A010BB8000", + "name": "Robozarro" + }, + { + "id": "0x010047B010260000", + "name": "Space Pioneer" + }, + { + "id": "0x010048600B14E000", + "name": "Gal Metal" + }, + { + "id": "0x010048901295C000", + "name": "Ultimate Fishing Simulator" + }, + { + "id": "0x01004AB00A260000", + "name": "DARK SOULS™: REMASTERED" + }, + { + "id": "0x01004AF012576000", + "name": "Solitaire Klondike Minimal" + }, + { + "id": "0x01004C700B106000", + "name": "Air Mail" + }, + { + "id": "0x01004EA00DF70000", + "name": "PICO PARK" + }, + { + "id": "0x0100516011606000", + "name": "Bomb" + }, + { + "id": "0x0100522007AAA000", + "name": "Wizard of Legend" + }, + { + "id": "0x010059C002AC2000", + "name": "Minecraft: Story Mode - The Complete Adventure" + }, + { + "id": "0x01005EF003FF2000", + "name": "Kingdom Two Crowns" + }, + { + "id": "0x010061000D318000", + "name": "Gunman Clive HD Collection" + }, + { + "id": "0x0100618013560000", + "name": "Santa's Xmas Adventure" + }, + { + "id": "0x010065F00F55A000", + "name": "Neighbours back From Hell" + }, + { + "id": "0x010068D00AE68000", + "name": "GREEN" + }, + { + "id": "0x0100692003FCE000", + "name": "Hyper Sentinel" + }, + { + "id": "0x010030D004F34000", + "name": "Draw a Stickman: EPIC 2" + }, + { + "id": "0x010032E00E6E2000", + "name": "Return of the Obra Dinn" + }, + { + "id": "0x010033A0118DC000", + "name": "Ninjala Exclusive Ninja Club" + }, + { + "id": "0x010036200D2F6000", + "name": "PHAR LAP - Horse Racing Challenge" + }, + { + "id": "0x010036600C7BE000", + "name": "Escape Doodland" + }, + { + "id": "0x01003CE011A86000", + "name": "Let's Sing Queen" + }, + { + "id": "0x01003E2010282000", + "name": "Bake ‘n Switch" + }, + { + "id": "0x010043901005A000", + "name": "Junk Jack" + }, + { + "id": "0x010043F010412000", + "name": "Jurassic Excite" + }, + { + "id": "0x010044000F7F2000", + "name": "Windbound" + }, + { + "id": "0x010044500F3C2000", + "name": "The Mims Beginning" + }, + { + "id": "0x010045800C80C000", + "name": "SpellKeeper" + }, + { + "id": "0x01004B301108C000", + "name": "Ghost Sweeper" + }, + { + "id": "0x01004BF01267E000", + "name": "GEMINI ARMS" + }, + { + "id": "0x01004DB003E6A000", + "name": "IRONCAST" + }, + { + "id": "0x010050200FFD2000", + "name": "Arcade Archives TwinBee" + }, + { + "id": "0x010055200E87E000", + "name": "Metamorphosis" + }, + { + "id": "0x01005700031AE000", + "name": "Disgaea 5 Complete" + }, + { + "id": "0x010059E00BB08000", + "name": "Wand Wars" + }, + { + "id": "0x01005A100ED8A000", + "name": "Escape from the Universe" + }, + { + "id": "0x010000600CD54000", + "name": "Rad Rodgers Radical Edition" + }, + { + "id": "0x010002A00CD68000", + "name": "Indiecalypse" + }, + { + "id": "0x010003F003A34000", + "name": "Pokémon™: Let’s Go, Pikachu!" + }, + { + "id": "0x010007100A16A000", + "name": "Eternal Edge" + }, + { + "id": "0x010009300D278000", + "name": "Preventive Strike" + }, + { + "id": "0x01000BF00B6BC000", + "name": "Deployment" + }, + { + "id": "0x01000DE0125B8000", + "name": "Hunt" + }, + { + "id": "0x01000E2003FA0000", + "name": "MIGHTY GUNVOLT BURST" + }, + { + "id": "0x01000E200BE10000", + "name": "Etherborn" + }, + { + "id": "0x010012600A9DA000", + "name": "Twin Robots: Ultimate Edition Demo" + }, + { + "id": "0x0100147011F4E000", + "name": "Hill Climbing Mania" + }, + { + "id": "0x010015B00BB00000", + "name": "Table Top Racing: World Tour - Nitro Edition" + }, + { + "id": "0x0100161011458000", + "name": "Demon's Tier+" + }, + { + "id": "0x010016700BCD4000", + "name": "Dungeon Village" + }, + { + "id": "0x010018700A5EC000", + "name": "PRINCESS MAKER -FAERY TALES COME TRUE-" + }, + { + "id": "0x010019500B69A000", + "name": "Swords & Soldiers" + }, + { + "id": "0x010019601144E000", + "name": "Desktop Basketball" + }, + { + "id": "0x01001E800D314000", + "name": "Perry Pig Jump" + }, + { + "id": "0x010020700DE04000", + "name": "Bear With Me: The Lost Robots" + }, + { + "id": "0x010020900E7A8000", + "name": "Rush Rally 3" + }, + { + "id": "0x010000001260E000", + "name": "KIDS: FARM COLORING" + }, + { + "id": "0x010000400F582000", + "name": "TT Isle of Man Ride on the Edge 2" + }, + { + "id": "0x0100011005D92000", + "name": "Batman - The Telltale Series" + }, + { + "id": "0x010002200CECA000", + "name": "Cinderella - An Interactive Fairytale" + }, + { + "id": "0x01000320000CC000", + "name": "1-2-Switch™" + }, + { + "id": "0x01000AA00D30E000", + "name": "TheNightfall" + }, + { + "id": "0x01000C90117FA000", + "name": "HardCube" + }, + { + "id": "0x01000DC003740000", + "name": "Puyo Puyo Tetris Demo" + }, + { + "id": "0x01000E8010A98000", + "name": "Escape First" + }, + { + "id": "0x01000F400C1A4000", + "name": "Double Kick Heroes" + }, + { + "id": "0x010011400AF8E000", + "name": "Julie's Sweets" + }, + { + "id": "0x010012E00EA66000", + "name": "Chroma Squad" + }, + { + "id": "0x010016E004796000", + "name": "Bridge Constructor Portal" + }, + { + "id": "0x0100177005C8A000", + "name": "BUTCHER" + }, + { + "id": "0x01001AC00ED72000", + "name": "If My Heart Had Wings" + }, + { + "id": "0x01001B400D334000", + "name": "AFL Evolution 2" + }, + { + "id": "0x01001F101289A000", + "name": "Skatemasta Tcheco" + }, + { + "id": "0x010021A00DE54000", + "name": "Blazing Beaks" + }, + { + "id": "0x010025C00D410000", + "name": "Mega Man Zero/ZX Legacy Collection" + }, + { + "id": "0x0100264012980000", + "name": "103" + }, + { + "id": "0x010000500B9F4000", + "name": "Minesweeper Genius" + }, + { + "id": "0x01000160127EC000", + "name": "Professor Rubik's Brain Fitness" + }, + { + "id": "0x010002F001220000", + "name": "NAMCO MUSEUM" + }, + { + "id": "0x010006300AFCE000", + "name": "ACA NEOGEO RAGNAGARD" + }, + { + "id": "0x010009500C30C000", + "name": "Dawn of Survivors" + }, + { + "id": "0x01000C800FADC000", + "name": "Go All Out!" + }, + { + "id": "0x01000D200C7A4000", + "name": "Arcade Archives PSYCHO SOLDIER" + }, + { + "id": "0x01000EE010B40000", + "name": "Piczle Cross Adventure" + }, + { + "id": "0x010011600BB84000", + "name": "Paladin" + }, + { + "id": "0x010012100E208000", + "name": "Sagebrush" + }, + { + "id": "0x010012C0060F0000", + "name": "RXN -Raijin-" + }, + { + "id": "0x010014C0100C6000", + "name": "Goosebumps Dead of Night" + }, + { + "id": "0x01001580133F2000", + "name": "Taiko no Tatsujin: Rhythmic Adventure 2" + }, + { + "id": "0x01001EF00BF3A000", + "name": "Trouserheart" + }, + { + "id": "0x010021200E062000", + "name": "Car Mayhem" + }, + { + "id": "0x010025E0092B6000", + "name": "Pirate Pop Plus" + }, + { + "id": "0x0100262009626000", + "name": "Epic Loon" + }, + { + "id": "0x010029A00AEB0000", + "name": "Survive! MR.CUBE" + }, + { + "id": "0x01002A000C478000", + "name": "Observer" + }, + { + "id": "0x01002AF011D14000", + "name": "Tennis World Tour 2" + }, + { + "id": "0x010001300D14A000", + "name": "Castle Crashers Remastered" + }, + { + "id": "0x010001400E474000", + "name": "Subdivision Infinity DX" + }, + { + "id": "0x0100016007154000", + "name": "Antiquia Lost" + }, + { + "id": "0x0100055007B86000", + "name": "Late Shift" + }, + { + "id": "0x010006200949E000", + "name": "The Charming Empire" + }, + { + "id": "0x010007F00AF56000", + "name": "The Station" + }, + { + "id": "0x01000A800B998000", + "name": "ALPHA" + }, + { + "id": "0x01000E000EEF8000", + "name": "Aldred Knight" + }, + { + "id": "0x01000FB008900000", + "name": "Midnight Deluxe" + }, + { + "id": "0x010010900F7B4000", + "name": "Bubble Bobble 4 Friends" + }, + { + "id": "0x010010B008A36000", + "name": "Arcade Archives Kid Niki Radical Ninja" + }, + { + "id": "0x0100112003B8A000", + "name": "Slime-san" + }, + { + "id": "0x0100126006EF0000", + "name": "GOKEN" + }, + { + "id": "0x01001270012B6000", + "name": "SONIC FORCES™" + }, + { + "id": "0x010014E00DB56000", + "name": "Digimon Story Cyber Sleuth: Complete Edition" + }, + { + "id": "0x0100158011A08000", + "name": "My Universe - Cooking Star Restaurant" + }, + { + "id": "0x010017C00BE12000", + "name": "Gnomes Garden 3: The thief of castles" + }, + { + "id": "0x010018800C7D2000", + "name": "Robox" + }, + { + "id": "0x01001BB00AC26000", + "name": "STARSHIP AVENGER\nOperation: Take Back Earth" + }, + { + "id": "0x01001BD00915A000", + "name": "ACA NEOGEO WORLD HEROES 2" + }, + { + "id": "0x010000500DB50000", + "name": "Super Tennis Blast" + }, + { + "id": "0x010001600D1E8000", + "name": "Cube Creator X" + }, + { + "id": "0x0100024008310000", + "name": "Street Fighter 30th Anniversary Collection" + }, + { + "id": "0x010002A00D168000", + "name": "Piczle Colors Demo" + }, + { + "id": "0x01000320060AC000", + "name": "OTTTD: Over The Top Tower Defense" + }, + { + "id": "0x010004D00A9C0000", + "name": "Aggelos" + }, + { + "id": "0x010007100C7B6000", + "name": "Arcade Archives VICTORY ROAD" + }, + { + "id": "0x010007D00D43A000", + "name": "Serious Sam Collection" + }, + { + "id": "0x010007D012AD0000", + "name": "Shikaku Shapes" + }, + { + "id": "0x0100092006814000", + "name": "Tennis World Tour" + }, + { + "id": "0x01000AC010024000", + "name": "FoxyLand 2" + }, + { + "id": "0x01000D100DCF8000", + "name": "Redeemer: Enhanced Edition" + }, + { + "id": "0x01000DC007E90000", + "name": "Sparkle Unleashed" + }, + { + "id": "0x010010500390C000", + "name": "Zero Zero Zero Zero" + }, + { + "id": "0x010010B003A26000", + "name": "Cartoon Network: Battle Crashers" + }, + { + "id": "0x010010D011E1C000", + "name": "Slide Stars" + }, + { + "id": "0x010014901144C000", + "name": "Genetic Disaster" + }, + { + "id": "0x0100152000022000", + "name": "Mario Kart™ 8 Deluxe" + }, + { + "id": "0x010015A0110AC000", + "name": "Fairy Knights" + }, + { + "id": "0x010015B012E0C000", + "name": "Disc Room" + }, + { + "id": "0x010057A00C1F6000", + "name": "Astebreed" + }, + { + "id": "0x010058900F52E000", + "name": "Clea" + }, + { + "id": "0x010059D00BCAE000", + "name": "Swords and Soldiers 2 Shawarmageddon" + }, + { + "id": "0x01005DE00D05C000", + "name": "EA SPORTS™ FIFA 20 Nintendo Switch™ Legacy Edition" + }, + { + "id": "0x01005DF00DC26000", + "name": "SWORD ART ONLINE: FATAL BULLET Complete Edition" + }, + { + "id": "0x01005F600CB0E000", + "name": "SEGA AGES Puyo Puyo" + }, + { + "id": "0x01005FE00EC4E000", + "name": "Atomic Heist" + }, + { + "id": "0x01005FF00AF36000", + "name": "Bibi Blocksberg – Big Broom Race 3" + }, + { + "id": "0x010061400E7D4000", + "name": "R.B.I. Baseball 20" + }, + { + "id": "0x010061E00EB1E000", + "name": "Mad Games Tycoon" + }, + { + "id": "0x0100626011656000", + "name": "The Outer Worlds" + }, + { + "id": "0x01006550129C6000", + "name": "If Found..." + }, + { + "id": "0x010067900B9C4000", + "name": "Degrees of Separation" + }, + { + "id": "0x010068000DE92000", + "name": "Gabbuchi Demo" + }, + { + "id": "0x01006B100E44C000", + "name": "The Alto Collection" + }, + { + "id": "0x01006BB00800A000", + "name": "NARUTO SHIPPUDEN: Ultimate Ninja STORM 3 Full Burst" + }, + { + "id": "0x01006BC00C27A000", + "name": "Crazy Strike Bowling EX" + }, + { + "id": "0x01006DB00D970000", + "name": "OMG Zombies!" + }, + { + "id": "0x0100706005B6A000", + "name": "Anima: Gate of Memories" + }, + { + "id": "0x010001600C962000", + "name": "BOMBFEST" + }, + { + "id": "0x010005800F1BA000", + "name": "Planetary Defense Force" + }, + { + "id": "0x010007F00B9F0000", + "name": "Johnny Turbo's Arcade: Shoot Out" + }, + { + "id": "0x01000A800ADEE000", + "name": "KADOBAT WARS" + }, + { + "id": "0x01000B400E53A000", + "name": "Mable & The Wood" + }, + { + "id": "0x01000BF012920000", + "name": "Jets'n'Guns 2" + }, + { + "id": "0x01000D60132D0000", + "name": "Max Reloaded II" + }, + { + "id": "0x01000ED00F64E000", + "name": "A Winter's Daydream" + }, + { + "id": "0x010011B00910C000", + "name": "Kill The Bad Guy" + }, + { + "id": "0x0100128003A24000", + "name": "Elliot Quest" + }, + { + "id": "0x010013300F882000", + "name": "Home Run High" + }, + { + "id": "0x0100145011008000", + "name": "Trollhunters: Defenders of Arcadia" + }, + { + "id": "0x01001620105FE000", + "name": "Monster Viator" + }, + { + "id": "0x010018300D006000", + "name": "BOXBOY! + BOXGIRL!™" + }, + { + "id": "0x01001C700F518000", + "name": "Grimvalor" + }, + { + "id": "0x01001D20105C0000", + "name": "Darius Cozmic Collection Arcade" + }, + { + "id": "0x01001E900EC04000", + "name": "Blast Brawl 2" + }, + { + "id": "0x01001EE00AD4C000", + "name": "Freaky Awesome" + }, + { + "id": "0x01001F600B3EE000", + "name": "The Legend of Evil" + }, + { + "id": "0x01001F70112BA000", + "name": "Poly Puzzle" + }, + { + "id": "0x010050500FE30000", + "name": "Sleep Attack" + }, + { + "id": "0x0100534009FF2000", + "name": "Yonder: The Cloud Catcher Chronicles" + }, + { + "id": "0x010053B00D26E000", + "name": "Bubble Shooter DX" + }, + { + "id": "0x010054A008EE2000", + "name": "Race Arcade" + }, + { + "id": "0x010057D00B612000", + "name": "Into the Breach" + }, + { + "id": "0x0100592005164000", + "name": "UNBOX: Newbie's Adventure" + }, + { + "id": "0x010059C00E900000", + "name": "Community Inc" + }, + { + "id": "0x01005A6010A04000", + "name": "Darts" + }, + { + "id": "0x01005A700C9BA000", + "name": "Hue" + }, + { + "id": "0x01005AF00CCA2000", + "name": "Risky Rescue" + }, + { + "id": "0x01005BA00E6BE000", + "name": "Arcade Archives GOLF" + }, + { + "id": "0x01005F20116A0000", + "name": "Apparition" + }, + { + "id": "0x010060C010B4A000", + "name": "Knight Swap" + }, + { + "id": "0x0100610011780000", + "name": "Lockstone" + }, + { + "id": "0x010061300BBF8000", + "name": "Defense Grid 2" + }, + { + "id": "0x010062200EFB4000", + "name": "DRAGON QUEST II: Luminaries of the Legendary Line" + }, + { + "id": "0x010066F00C76A000", + "name": "Bury me, my Love" + }, + { + "id": "0x010067300059A000", + "name": "Mario + Rabbids® Kingdom Battle" + }, + { + "id": "0x010067D012972000", + "name": "Retro Arcade Shooter - Attack from Pluto" + }, + { + "id": "0x010068F00AA78000", + "name": "FINAL FANTASY XV POCKET EDITION HD" + }, + { + "id": "0x010022801217E000", + "name": "Party Hard 2" + }, + { + "id": "0x01002290070E4000", + "name": "Red Game Without a Great Name" + }, + { + "id": "0x010023300B0F0000", + "name": "Tumblestone Demo" + }, + { + "id": "0x010028D0045CE000", + "name": "Sparkle 2" + }, + { + "id": "0x01002D4011208000", + "name": "Task Force Kampas" + }, + { + "id": "0x01002EE00F48C000", + "name": "夕鬼 零 Yuoni: Rises" + }, + { + "id": "0x01002F800FD12000", + "name": "Strange Telephone" + }, + { + "id": "0x010030D00D960000", + "name": "Theatre Tales" + }, + { + "id": "0x010031F006E76000", + "name": "Pato Box" + }, + { + "id": "0x010035500CA0E000", + "name": "Animal Hunter Z" + }, + { + "id": "0x0100379003900000", + "name": "ACA NEOGEO BLUE'S JOURNEY" + }, + { + "id": "0x010037B00A9C8000", + "name": "Uno Demo" + }, + { + "id": "0x010039C00E2CE000", + "name": "Flux8" + }, + { + "id": "0x01003B401148E000", + "name": "Wurroom" + }, + { + "id": "0x01003B900AE12000", + "name": "Oh My Godheads: Party Edition" + }, + { + "id": "0x01003C400871E000", + "name": "ACA NEOGEO 2020 SUPER BASEBALL" + }, + { + "id": "0x01003E700FD66000", + "name": "Alt-Frequencies" + }, + { + "id": "0x01003F300C6BC000", + "name": "Pressure Overdrive" + }, + { + "id": "0x01003FE00A2F6000", + "name": "ACA NEOGEO BASEBALL STARS PROFESSIONAL" + }, + { + "id": "0x010040B003E5E000", + "name": "Shephy" + }, + { + "id": "0x010000301025A000", + "name": "Worlds of Magic: Planar Conquest" + }, + { + "id": "0x010001E00A5F6000", + "name": "AngerForce: Reloaded for Nintendo Switch" + }, + { + "id": "0x0100024011858000", + "name": "Doubles Hard" + }, + { + "id": "0x010002700C34C000", + "name": "Numbala" + }, + { + "id": "0x010006300AFFE000", + "name": "Life Goes On" + }, + { + "id": "0x0100068010226000", + "name": "Dreamwalker: Never Fall Asleep" + }, + { + "id": "0x010008C00B2F2000", + "name": "Steven Universe: Save the Light" + }, + { + "id": "0x0100092011764000", + "name": "Being Stronger While Playing! SilverStar Go DX" + }, + { + "id": "0x0100095009236000", + "name": "Super Rocket Shootout" + }, + { + "id": "0x01000AB00E73A000", + "name": "Cosmic Defenders" + }, + { + "id": "0x01000AD012D3A000", + "name": "BIT.TRIP VOID" + }, + { + "id": "0x01000C9004FA2000", + "name": "ACA NEOGEO ROBO ARMY" + }, + { + "id": "0x01000CA004DCA000", + "name": "Human: Fall Flat" + }, + { + "id": "0x01000D200C180000", + "name": "Overland" + }, + { + "id": "0x01000DB00980A000", + "name": "Arcade Archives Ikki" + }, + { + "id": "0x01000E30042F2000", + "name": "World to the West" + }, + { + "id": "0x01000EB00BE02000", + "name": "Space Lift Danger Panic!" + }, + { + "id": "0x01000F5003068000", + "name": "Brave Dungeon + Dark Witch Story:COMBAT" + }, + { + "id": "0x010010100FF14000", + "name": "60 Parsecs!" + }, + { + "id": "0x0100137010152000", + "name": "The Adventures of 00 Dilly®" + }, + { + "id": "0x010029D00AFD0000", + "name": "ACA NEOGEO KING OF THE MONSTERS 2" + }, + { + "id": "0x01002A1004C48000", + "name": "Binaries" + }, + { + "id": "0x01002DE00C250000", + "name": "Children of Morta" + }, + { + "id": "0x01002F300AC18000", + "name": "bloxiq" + }, + { + "id": "0x01002F600C684000", + "name": "Fight of Gods" + }, + { + "id": "0x010031F00B246000", + "name": "Everything" + }, + { + "id": "0x010032F01096C000", + "name": "Lines XL" + }, + { + "id": "0x01003380113A2000", + "name": "Wolflame" + }, + { + "id": "0x010034800B75E000", + "name": "Astrology and Horoscopes Premium" + }, + { + "id": "0x010034D00F330000", + "name": "DreamBall" + }, + { + "id": "0x010037900C814000", + "name": "Oniken: Unstoppable Edition" + }, + { + "id": "0x010038400CADC000", + "name": "Timberman VS Demo" + }, + { + "id": "0x010038D011F08000", + "name": "Jisei: The First Case HD" + }, + { + "id": "0x010039300BDB2000", + "name": "Defunct" + }, + { + "id": "0x010039E00A15E000", + "name": "InkSplosion" + }, + { + "id": "0x010039F00EF70000", + "name": "Monstrum" + }, + { + "id": "0x01003AE00A872000", + "name": "One More Dungeon Demo" + }, + { + "id": "0x01003CB00CFD6000", + "name": "Secrets of Magic - The Book of Spells" + }, + { + "id": "0x01003F601025E000", + "name": "Dex" + }, + { + "id": "0x010040700E8FC000", + "name": "Florence" + }, + { + "id": "0x010061F010C3A000", + "name": "Hunting Simulator 2" + }, + { + "id": "0x010063000C3CE000", + "name": "Almightree: The Last Dreamer" + }, + { + "id": "0x010063D005B32000", + "name": "KYUB" + }, + { + "id": "0x0100650010DD4000", + "name": "Battleground" + }, + { + "id": "0x0100655012064000", + "name": "Radio Squid" + }, + { + "id": "0x010069B002CDE000", + "name": "Johnny Turbo's Arcade: Gate Of Doom" + }, + { + "id": "0x01006A800FD60000", + "name": "Scarlett Mysteries: Cursed Child" + }, + { + "id": "0x01006C700D2CE000", + "name": "Pizza Parking" + }, + { + "id": "0x01006F30129F8000", + "name": "Get 10 quest" + }, + { + "id": "0x01006F6002840000", + "name": "Thumper" + }, + { + "id": "0x01006F900A298000", + "name": "Eekeemoo - Splinters of the Dark Shard" + }, + { + "id": "0x0100732009CAE000", + "name": "L.F.O. -Lost Future Omega-" + }, + { + "id": "0x010075200F1CA000", + "name": "Monochrome Order" + }, + { + "id": "0x010075400DEC6000", + "name": "Ayakashi Koi Gikyoku《Trial version》" + }, + { + "id": "0x010076200CA16000", + "name": "Rolling Gunner" + }, + { + "id": "0x01007AF012E16000", + "name": "The Language Of Love" + }, + { + "id": "0x01007B600D5BC000", + "name": "Devil May Cry 3 Special Edition" + }, + { + "id": "0x01007C500D650000", + "name": "Vandals" + }, + { + "id": "0x01007EF00B094000", + "name": "FINAL FANTASY IX" + }, + { + "id": "0x010080000D8CA000", + "name": "Reverse Crawl" + }, + { + "id": "0x010032A008754000", + "name": "At Sundown: Shots in the Dark" + }, + { + "id": "0x0100342009E16000", + "name": "Holy Potatoes! What The Hell?!" + }, + { + "id": "0x01003590089EA000", + "name": "Puzzle Puppers" + }, + { + "id": "0x0100395010AD2000", + "name": "OmoTomO" + }, + { + "id": "0x010039C00A45C000", + "name": "Operation Hardcore" + }, + { + "id": "0x01003B200E440000", + "name": "Five Nights at Freddy's: Sister Location" + }, + { + "id": "0x01003DE00918E000", + "name": "The Darkside Detective" + }, + { + "id": "0x01003FF011856000", + "name": "Climbros" + }, + { + "id": "0x0100421003FD4000", + "name": "Syberia" + }, + { + "id": "0x0100423009358000", + "name": "Death Road to Canada" + }, + { + "id": "0x010044400EEAE000", + "name": "Petoons Party" + }, + { + "id": "0x010045200D3A4000", + "name": "Unknown Fate" + }, + { + "id": "0x010045A01221E000", + "name": "Pew Paw" + }, + { + "id": "0x010045C011DE6000", + "name": "Black Jack" + }, + { + "id": "0x010047100F978000", + "name": "Arcade Archives FROGGER" + }, + { + "id": "0x010047E010B3E000", + "name": "Fight of Animals" + }, + { + "id": "0x010048200B606000", + "name": "Mars or Die!" + }, + { + "id": "0x010049000F6B0000", + "name": "Hyperspace Delivery Service" + }, + { + "id": "0x010049500E354000", + "name": "Arcade Archives Pinball" + }, + { + "id": "0x01004A600EC0A000", + "name": "Immortals Fenyx Rising™" + }, + { + "id": "0x01002C900A302000", + "name": "ACA NEOGEO RIDING HERO" + }, + { + "id": "0x01002D200CF50000", + "name": "Stray Cat Doors" + }, + { + "id": "0x010030800841A000", + "name": "Moorhuhn Knights & Castles" + }, + { + "id": "0x010030A01243E000", + "name": "Poker Hands" + }, + { + "id": "0x010030B00B2F6000", + "name": "OK K.O.! Let’s Play Heroes" + }, + { + "id": "0x010032C00AC58000", + "name": "Dragon's Dogma: Dark Arisen" + }, + { + "id": "0x010037A00F5E2000", + "name": "Wonder Blade" + }, + { + "id": "0x01003BA00A67E000", + "name": "Hacky Zack" + }, + { + "id": "0x01003C2010C78000", + "name": "Archaica: The Path Of Light" + }, + { + "id": "0x01003D700D564000", + "name": "Super Weekend Mode" + }, + { + "id": "0x01003DD00BFEE000", + "name": "Airheart - Tales of broken Wings" + }, + { + "id": "0x01003FD00A02A000", + "name": "Driving School Original" + }, + { + "id": "0x01003FF009E60000", + "name": "Grab the Bottle" + }, + { + "id": "0x0100408007078000", + "name": "Tales of the Tiny Planet" + }, + { + "id": "0x010041700A04A000", + "name": "Oxyjet" + }, + { + "id": "0x010042100BAA6000", + "name": "Valthirian Arc: Hero School Story" + }, + { + "id": "0x0100434003C58000", + "name": "Firefighters – The Simulation" + }, + { + "id": "0x010043B00AAC0000", + "name": "Remnants of Naezith" + }, + { + "id": "0x010044600FDF0000", + "name": "Marooners" + }, + { + "id": "0x010044D00A770000", + "name": "Burnstar" + }, + { + "id": "0x01004AC002B40000", + "name": "ACA NEOGEO ART OF FIGHTING 3" + }, + { + "id": "0x010050900E1C6000", + "name": "Anarcute" + }, + { + "id": "0x010051A010C7C000", + "name": "Breeder Homegrown: Director's Cut" + }, + { + "id": "0x010052D00B754000", + "name": "The Lost Light of Sisu" + }, + { + "id": "0x010055900FADA000", + "name": "Bloo Kid 2" + }, + { + "id": "0x010055B009814000", + "name": "Arcade Archives CRAZY CLIMBER2" + }, + { + "id": "0x010056D00B0F4000", + "name": "MilkChoco" + }, + { + "id": "0x0100572010EF8000", + "name": "Little Bit War" + }, + { + "id": "0x01005A700C954000", + "name": "Stellar Interface" + }, + { + "id": "0x01005EB01363C000", + "name": "Super Star Panda" + }, + { + "id": "0x01005FC010EB2000", + "name": "Potata: Fairy Flower" + }, + { + "id": "0x010060600D894000", + "name": "Freecell Solitaire" + }, + { + "id": "0x010062400E69C000", + "name": "Bibi & Tina at the horse farm" + }, + { + "id": "0x010065200D192000", + "name": "Isoland" + }, + { + "id": "0x010067A011FF0000", + "name": "Arcade Archives P-47" + }, + { + "id": "0x010069100DB08000", + "name": "Faeria" + }, + { + "id": "0x01006BB00C6F0000", + "name": "The Legend of Zelda™: Link’s Awakening" + }, + { + "id": "0x01006E800B7F2000", + "name": "Fernz Gate" + }, + { + "id": "0x01006E900B6EC000", + "name": "Jack N' Jill DX" + }, + { + "id": "0x01006FA012FE0000", + "name": "Cthulhu Saves Christmas" + }, + { + "id": "0x010049A00F5AC000", + "name": "Family Tennis SP" + }, + { + "id": "0x010049D00C8B0000", + "name": "Swimsanity!" + }, + { + "id": "0x01004A800F0CA000", + "name": "BrainZ" + }, + { + "id": "0x01004BC010D70000", + "name": "Jet Ski Rush" + }, + { + "id": "0x01004C4010C00000", + "name": "Travel Mosaics 5: Waltzing Vienna" + }, + { + "id": "0x01004C800A79C000", + "name": "Splat the Fruit" + }, + { + "id": "0x01004D500D9BE000", + "name": "Not Not - A Brain Buster" + }, + { + "id": "0x01004DB0126AC000", + "name": "Sudoku Relax 5 Full Bloom" + }, + { + "id": "0x01004F0010A02000", + "name": "Sky Racket" + }, + { + "id": "0x01004F1012716000", + "name": "Collapsed" + }, + { + "id": "0x010050400BD38000", + "name": "Roman Rumble in Las Vegum - Asterix & Obelix XXL 2" + }, + { + "id": "0x010054501075C000", + "name": "Curious Cases" + }, + { + "id": "0x0100558010B26000", + "name": "Behold the Kickmen" + }, + { + "id": "0x0100563011B4A000", + "name": "War-Torn Dreams" + }, + { + "id": "0x010059900BA3C000", + "name": "Windscape" + }, + { + "id": "0x0100599013216000", + "name": "Educational Games for Kids" + }, + { + "id": "0x01005AB01119C000", + "name": "SUSHI REVERSI" + }, + { + "id": "0x01005B6008132000", + "name": "Lifeless Planet: Premiere Edition" + }, + { + "id": "0x01005BC012C66000", + "name": "Duck Life Adventure" + }, + { + "id": "0x01005CD00F85A000", + "name": "Underhero" + }, + { + "id": "0x010052900B8EE000", + "name": "Gakuen Club" + }, + { + "id": "0x01005420101DA000", + "name": "The Legend of Heroes: Trails of Cold Steel III" + }, + { + "id": "0x0100551001D88000", + "name": "Battle Chasers: Nightwar" + }, + { + "id": "0x010056800B534000", + "name": "Super Inefficient Golf" + }, + { + "id": "0x010056E00B4F4000", + "name": "The Walking Dead: A New Frontier" + }, + { + "id": "0x010059100D928000", + "name": "Heaven Dust" + }, + { + "id": "0x01005DD00BE08000", + "name": "Arcade Archives ALPHA MISSION" + }, + { + "id": "0x01005FC0133D2000", + "name": "Slots of the Season" + }, + { + "id": "0x010061600BF7E000", + "name": "ACA NEOGEO STRIKERS 1945 PLUS" + }, + { + "id": "0x010061A00AE64000", + "name": "Tiny Hands Adventure" + }, + { + "id": "0x01006C400ACEE000", + "name": "Them Bombs!" + }, + { + "id": "0x01006CE0134E6000", + "name": "A Frog Game" + }, + { + "id": "0x01006D500B0C8000", + "name": "Mecho Wars: Desert Ashes" + }, + { + "id": "0x01006FB00990E000", + "name": "Azure Reflections" + }, + { + "id": "0x0100707011722000", + "name": "Space Elite Force" + }, + { + "id": "0x010070D00F640000", + "name": "STONE" + }, + { + "id": "0x0100715007354000", + "name": "NARUTO: Ultimate Ninja STORM" + }, + { + "id": "0x010072C010002000", + "name": "Event Horizon: Space Defense" + }, + { + "id": "0x010073700E412000", + "name": "DORAEMON STORY OF SEASONS" + }, + { + "id": "0x010036C00D0D6000", + "name": "Gnomes Garden: Lost King" + }, + { + "id": "0x0100382011002000", + "name": "PixelJunk Eden 2" + }, + { + "id": "0x01003A300B5F8000", + "name": "Voxel Shot for Nintendo Switch" + }, + { + "id": "0x01003C000D84C000", + "name": "Golem Gates" + }, + { + "id": "0x01003C6008940000", + "name": "GUNBIRD for Nintendo Switch" + }, + { + "id": "0x01003D7002CC0000", + "name": "Johnny Turbo's Arcade: Joe and Mac Returns" + }, + { + "id": "0x010040800BA8A000", + "name": "Box Align" + }, + { + "id": "0x010040A00EA26000", + "name": "Taimumari: Complete Edition" + }, + { + "id": "0x010040F011DE4000", + "name": "Devious Dungeon Collection" + }, + { + "id": "0x010042200BE0C000", + "name": "Arcade Archives URBAN CHAMPION" + }, + { + "id": "0x010042800E748000", + "name": "Word Mesh" + }, + { + "id": "0x010042E00AC80000", + "name": "Ayakashi Koi Gikyoku -Forbidden Romance with Mysterious Spirit-" + }, + { + "id": "0x010044E008FC6000", + "name": "PlataGO! Super Platform Game Maker" + }, + { + "id": "0x010045F00D56C000", + "name": "OVIVO" + }, + { + "id": "0x010046000EE40000", + "name": "Call of Cthulhu" + }, + { + "id": "0x01004A0013790000", + "name": "DungeonTop" + }, + { + "id": "0x01004B4002B6A000", + "name": "Runner3" + }, + { + "id": "0x01004FD00D7C8000", + "name": "Rollin' Eggz" + }, + { + "id": "0x010051E012302000", + "name": "112th Seed" + }, + { + "id": "0x010059500D070000", + "name": "Lapis x Labyrinth" + }, + { + "id": "0x01005A300C9F6000", + "name": "SEGA AGES Phantasy Star" + }, + { + "id": "0x01005D10133B8000", + "name": "Killer Chambers" + }, + { + "id": "0x01005F2012740000", + "name": "FootGoal! Tiki Taka" + }, + { + "id": "0x0100605008268000", + "name": "Titan Quest" + }, + { + "id": "0x010060F00AA70000", + "name": "The Walking Dead: The Final Season - Season Pass" + }, + { + "id": "0x010065A01158E000", + "name": "Commandos 2 - HD Remaster" + }, + { + "id": "0x010065F00DF4A000", + "name": "Let's Sing 2020" + }, + { + "id": "0x010066D013354000", + "name": "Truck Simulator" + }, + { + "id": "0x010067300AFFA000", + "name": "EARTHLOCK Demo" + }, + { + "id": "0x010069700AF9C000", + "name": "Happy Birthdays Demo" + }, + { + "id": "0x01006A0010D6A000", + "name": "Blood Breed" + }, + { + "id": "0x01006AA0084FE000", + "name": "Damascus Gear Operation Tokyo" + }, + { + "id": "0x01006B30092F0000", + "name": "Halcyon 6: Starbase Commander" + }, + { + "id": "0x01006B9013672000", + "name": "Cybxus Hearts" + }, + { + "id": "0x01006DA013562000", + "name": "Poltergeist Crusader" + }, + { + "id": "0x01006DC00FA0A000", + "name": "Get Me Outta Here" + }, + { + "id": "0x01006ED00BC76000", + "name": "Nelke & the Legendary Alchemists ~Ateliers of the New World~" + }, + { + "id": "0x010071E00875A000", + "name": "Banner Saga 3" + }, + { + "id": "0x010049A00C7AA000", + "name": "ACA NEOGEO PUZZLE BOBBLE" + }, + { + "id": "0x010049E003748000", + "name": "Putty Pals" + }, + { + "id": "0x01004B600A2FC000", + "name": "ACA NEOGEO STAKES WINNER" + }, + { + "id": "0x01004C100FA84000", + "name": "DRAW CHILLY" + }, + { + "id": "0x01004CD01039A000", + "name": "Technosphere" + }, + { + "id": "0x01004D501230A000", + "name": "Olija" + }, + { + "id": "0x01004D600AC14000", + "name": "Super Neptunia RPG" + }, + { + "id": "0x01004F50085F2000", + "name": "She Remembered Caterpillars" + }, + { + "id": "0x01005070088E0000", + "name": "Ittle Dew" + }, + { + "id": "0x010052B003A38000", + "name": "The Long Reach" + }, + { + "id": "0x01005A700CC3C000", + "name": "Mana Spark" + }, + { + "id": "0x01005AA00372A000", + "name": "UNO® for Nintendo Switch" + }, + { + "id": "0x01005B000D786000", + "name": "DC Universe™ Online" + }, + { + "id": "0x01005E500E528000", + "name": "TRANSFORMERS: BATTLEGROUNDS" + }, + { + "id": "0x01005EF00B4BC000", + "name": "Ms. Splosion Man" + }, + { + "id": "0x01005F2011F8C000", + "name": "Pixboy" + }, + { + "id": "0x0100643002136000", + "name": "Resident Evil Revelations" + }, + { + "id": "0x0100646009FBE000", + "name": "Dead Cells" + }, + { + "id": "0x010065C00F976000", + "name": "Arcade Archives HYPER SPORTS" + }, + { + "id": "0x010066800E9F8000", + "name": "The Childs Sight" + }, + { + "id": "0x01001C800DBC0000", + "name": "Desktop Table Tennis" + }, + { + "id": "0x01001FA00FBBC000", + "name": "MotoGP™20" + }, + { + "id": "0x010020500E7A6000", + "name": "Speaking Simulator" + }, + { + "id": "0x010020700A5E0000", + "name": "TRIVIAL PURSUIT® Live!" + }, + { + "id": "0x0100224004004000", + "name": "Slain: Back From Hell" + }, + { + "id": "0x010023800D64A000", + "name": "DELTARUNE Chapter 1" + }, + { + "id": "0x010028700D1CA000", + "name": "Witch & Hero" + }, + { + "id": "0x01002B700F88A000", + "name": "Traffix" + }, + { + "id": "0x01002C000B552000", + "name": "Taiko no Tatsujin: Drum 'n' Fun!" + }, + { + "id": "0x01002E70032E8000", + "name": "ACA NEOGEO BIG TOURNAMENT GOLF" + }, + { + "id": "0x01003000097FE000", + "name": "Arcade Archives MOON PATROL" + }, + { + "id": "0x0100308013768000", + "name": "The Explorer of Night" + }, + { + "id": "0x010031D012BA4000", + "name": "Azurebreak Heroes" + }, + { + "id": "0x010037A00BB02000", + "name": "Tetraminos" + }, + { + "id": "0x0100384009344000", + "name": "Super Toy Cars" + }, + { + "id": "0x010042000A986000", + "name": "DRAGON QUEST BUILDERS™ 2" + }, + { + "id": "0x0100437004170000", + "name": "Portal Knights" + }, + { + "id": "0x010044701191E000", + "name": "Mars Horizon" + }, + { + "id": "0x010047600BF72000", + "name": "Rain World" + }, + { + "id": "0x010047600FBFE000", + "name": "Link-a-Pix Deluxe" + }, + { + "id": "0x010071B012940000", + "name": "Embracelet" + }, + { + "id": "0x010074200E910000", + "name": "Super Street: Racer" + }, + { + "id": "0x0100745011D28000", + "name": "Missile Command: Recharged" + }, + { + "id": "0x010075100ED92000", + "name": "Best Friend Forever" + }, + { + "id": "0x010075B004DD2000", + "name": "DISTRAINT: Deluxe Edition" + }, + { + "id": "0x01007600115CE000", + "name": "CHAOS CODE -NEW SIGN OF CATASTROPHE-" + }, + { + "id": "0x010076300EE80000", + "name": "Super Wiloo Demake" + }, + { + "id": "0x010076F012CD8000", + "name": "Dragon Lapis" + }, + { + "id": "0x010079100CD8A000", + "name": "SUPER TRENCH ATTACK" + }, + { + "id": "0x010079A00D9E8000", + "name": "Little Friends: Dogs & Cats" + }, + { + "id": "0x01007AA012E02000", + "name": "Fantasy Tower Defense" + }, + { + "id": "0x01007BB00A0A0000", + "name": "Sally's Law" + }, + { + "id": "0x01007E700D5B4000", + "name": "Doodle God: Crime City" + }, + { + "id": "0x010083600AE9E000", + "name": "Happy Birthdays" + }, + { + "id": "0x010087800DCEA000", + "name": "WRC 8 FIA World Rally Championship" + }, + { + "id": "0x010087F005DFE000", + "name": "ESCAPE TRICK: 35 Fateful Enigmas" + }, + { + "id": "0x010088F00AD80000", + "name": "Super One More Jump Demo" + }, + { + "id": "0x010089700150E000", + "name": "Dragon Marked for Death: Frontline Fighters" + }, + { + "id": "0x01008D000D980000", + "name": "Hotel Dracula" + }, + { + "id": "0x01004A301226A000", + "name": "Power Racing Bundle" + }, + { + "id": "0x01004B800AF5A000", + "name": "Bloodstained: Curse of the Moon" + }, + { + "id": "0x01004D501113C000", + "name": "Going Under" + }, + { + "id": "0x01004DD00C87A000", + "name": "Steamburg" + }, + { + "id": "0x01004EB0119AC000", + "name": "Moero Crystal H" + }, + { + "id": "0x01004FE0107EE000", + "name": "Yumeutsutsu Re:Master" + }, + { + "id": "0x010051D00E3A4000", + "name": "Rune Factory 4 Special" + }, + { + "id": "0x010052A00B5D2000", + "name": "LEGO® Harry Potter™ Collection" + }, + { + "id": "0x0100531011EF4000", + "name": "Her Majesty's Ship" + }, + { + "id": "0x010053200B0E0000", + "name": "Behind The Screen" + }, + { + "id": "0x0100534011012000", + "name": "Relic Hunters Zero: Remix" + }, + { + "id": "0x010054400D2E6000", + "name": "SEGA AGES Virtua Racing" + }, + { + "id": "0x010058000A576000", + "name": "The Town of Light: Deluxe Edition" + }, + { + "id": "0x0100581007068000", + "name": "Lost Castle" + }, + { + "id": "0x010059400E0BA000", + "name": "Switchy Road" + }, + { + "id": "0x010059801292A000", + "name": "Parking Madness" + }, + { + "id": "0x01005C5011086000", + "name": "Pooplers" + }, + { + "id": "0x01005DA003E6E000", + "name": "Morphies Law" + }, + { + "id": "0x01005EB00EA10000", + "name": "Star-Crossed Myth - The Department of Wishes -" + }, + { + "id": "0x01005F400E644000", + "name": "Invisigun Reloaded" + }, + { + "id": "0x01004A4013318000", + "name": "Lovekami -Divinity Stage-" + }, + { + "id": "0x01004E500DB3C000", + "name": "MouseCraft" + }, + { + "id": "0x01004EB00E43A000", + "name": "Five Nights at Freddy's 2" + }, + { + "id": "0x01004F10066B0000", + "name": "Party Planet" + }, + { + "id": "0x010051A00AAEA000", + "name": "Shadow of Loot Box" + }, + { + "id": "0x010052C00B184000", + "name": "The Journey Down: Chapter One" + }, + { + "id": "0x010056E00FA3A000", + "name": "Desktop Dodgeball" + }, + { + "id": "0x010058C00A916000", + "name": "Drone Fight" + }, + { + "id": "0x010059E00B93C000", + "name": "Forgotton Anne" + }, + { + "id": "0x01005BD0112B8000", + "name": "Mushroom Heroes" + }, + { + "id": "0x01005CC012BFE000", + "name": "Crazy BMX World" + }, + { + "id": "0x01005E100A4F0000", + "name": "Phoenotopia : Awakening" + }, + { + "id": "0x01005E201301A000", + "name": "Warplanes: WW1 Sky Aces" + }, + { + "id": "0x01005FA009370000", + "name": "Elemental Knights R" + }, + { + "id": "0x010061C00AFDA000", + "name": "ACA NEOGEO NEO GEO CUP '98: THE ROAD TO THE VICTORY" + }, + { + "id": "0x010062B00A874000", + "name": "Big Buck Hunter Arcade" + }, + { + "id": "0x010064800F66A000", + "name": "Borderlands: Game of the Year Edition" + }, + { + "id": "0x0100668010DC2000", + "name": "Sky Mercenaries Redux" + }, + { + "id": "0x010068F012880000", + "name": "Eldrador® Creatures" + }, + { + "id": "0x010069C00401A000", + "name": "RIVE: Ultimate Edition" + }, + { + "id": "0x01006BE00B3C8000", + "name": "My Brother Rabbit" + }, + { + "id": "0x01006CB0124D0000", + "name": "Red Crow Mysteries: Legion" + }, + { + "id": "0x010071800B4B2000", + "name": "Your Toy" + }, + { + "id": "0x010071F00D65A000", + "name": "Wilmot's Warehouse" + }, + { + "id": "0x01007310128EC000", + "name": "Bullet Beat" + }, + { + "id": "0x010073400B696000", + "name": "Shadowgate" + }, + { + "id": "0x0100752011628000", + "name": "TTV2" + }, + { + "id": "0x0100759010EC8000", + "name": "A Street Cat's Tale" + }, + { + "id": "0x0100772012186000", + "name": "Retro Classix 2in1 pack: Bad Dudes & Two Crude Dudes" + }, + { + "id": "0x010078300DA14000", + "name": "Teddy The Wanderer: Mountain Hike" + }, + { + "id": "0x01007A1012376000", + "name": "Dominate - Board Game" + }, + { + "id": "0x01007A300C856000", + "name": "Xenon Valkyrie+ Demo" + }, + { + "id": "0x01007C600294E000", + "name": "Pocket Rumble" + }, + { + "id": "0x01007DB00A226000", + "name": "Travel Mosaics: A Paris Tour" + }, + { + "id": "0x01007E90116CE000", + "name": "Giraffe and Annika" + }, + { + "id": "0x010080C00AC3C000", + "name": "Caveman Chuck: Prehistoric Adventure" + }, + { + "id": "0x010082A00D80A000", + "name": "Pet Care" + }, + { + "id": "0x0100841008BDE000", + "name": "JCB Pioneer: Mars" + }, + { + "id": "0x010089400E4E2000", + "name": "Little Briar Rose" + }, + { + "id": "0x01008DB008C2C000", + "name": "Pokémon™ Shield" + }, + { + "id": "0x01006E4003832000", + "name": "Johnny Turbo's Arcade: Bad Dudes" + }, + { + "id": "0x010070100F782000", + "name": "60 Seconds! Reatomized" + }, + { + "id": "0x010073000C43C000", + "name": "Starman" + }, + { + "id": "0x010076800B06E000", + "name": "Mega Man 11 Demo Version" + }, + { + "id": "0x0100779004172000", + "name": "Golf Story" + }, + { + "id": "0x01007F100DE52000", + "name": "Akane" + }, + { + "id": "0x0100818008004000", + "name": "Serial Cleaner" + }, + { + "id": "0x010083800B4E8000", + "name": "The Amazing Shinsengumi: Heroes in Love" + }, + { + "id": "0x010085900E3B6000", + "name": "Neon Junctions" + }, + { + "id": "0x010085B00CCEE000", + "name": "Gnomes Garden: New Home" + }, + { + "id": "0x010086B00BB50000", + "name": "Farm Together" + }, + { + "id": "0x010088E00B816000", + "name": "RIOT - Civil Unrest" + }, + { + "id": "0x01008B900DC0A000", + "name": "FINAL FANTASY VIII Remastered" + }, + { + "id": "0x01008CA00F7E0000", + "name": "Perils of Baking" + }, + { + "id": "0x01008D4010C46000", + "name": "Fluxteria" + }, + { + "id": "0x010090E00ECF4000", + "name": "The Tenth Line Special Edition" + }, + { + "id": "0x010099700B760000", + "name": "Frutakia 2" + }, + { + "id": "0x01009A400A97C000", + "name": "ASSAULT GUNNERS HD EDITION" + }, + { + "id": "0x01009AD00BFD0000", + "name": "When Ski Lifts Go Wrong" + }, + { + "id": "0x01005DC00D80C000", + "name": "Guess the word" + }, + { + "id": "0x01005EF00CFDA000", + "name": "A Knight's Quest" + }, + { + "id": "0x010061F013A0E000", + "name": "Speed Truck Racing" + }, + { + "id": "0x0100635006C32000", + "name": "Pankapu" + }, + { + "id": "0x010065D012FA0000", + "name": "Azur Lane: Crosswave" + }, + { + "id": "0x010068000CAC0000", + "name": "Hunter's Legacy: Purrfect Edition" + }, + { + "id": "0x010069500DD86000", + "name": "Destiny Connect: Tick-Tock Travelers" + }, + { + "id": "0x01006B5012B32000", + "name": "Part Time UFO™" + }, + { + "id": "0x01006C000DC8A000", + "name": "Skelly Selest" + }, + { + "id": "0x01006C10131F6000", + "name": "Pumpkin Jack" + }, + { + "id": "0x01006CF00DA8C000", + "name": "Zombie Driver Immortal Edition" + }, + { + "id": "0x01007170100AA000", + "name": "Legends of Amberland: The Forgotten Crown" + }, + { + "id": "0x010072900AFF0000", + "name": "Gear.Club Unlimited 2" + }, + { + "id": "0x010074300F7F6000", + "name": "Roundguard" + }, + { + "id": "0x010075701153A000", + "name": "Superliminal" + }, + { + "id": "0x010075D0101FA000", + "name": "Seek Hearts" + }, + { + "id": "0x010076B0101A0000", + "name": "YesterMorrow" + }, + { + "id": "0x0100774009CF6000", + "name": "ONE PIECE Pirate Warriors 3 Deluxe Edition" + }, + { + "id": "0x010077500FA64000", + "name": "Ultra Off-Road 2019: Alaska" + }, + { + "id": "0x01004C100A04C000", + "name": "This is the Police 2" + }, + { + "id": "0x010050C0124CE000", + "name": "Mini Island Challenge Bundle" + }, + { + "id": "0x010050D00FE0C000", + "name": "Portal Dogs" + }, + { + "id": "0x010056D00E234000", + "name": "30-in-1 Game Collection" + }, + { + "id": "0x010057D006492000", + "name": "Octopath Traveler™" + }, + { + "id": "0x010058800E90A000", + "name": "Convoy: A Tactical Roguelike" + }, + { + "id": "0x0100591008790000", + "name": "ACA NEOGEO THE ULTIMATE 11: SNK FOOTBALL CHAMPIONSHIP" + }, + { + "id": "0x01005CD011474000", + "name": "Bug Academy" + }, + { + "id": "0x01005D0011A40000", + "name": "Tiny Racer" + }, + { + "id": "0x01005D200C9AA000", + "name": "Koloro" + }, + { + "id": "0x01005EE00BC78000", + "name": "Dokuro (ドクロ)" + }, + { + "id": "0x01005F900416E000", + "name": "Pic-a-Pix Deluxe" + }, + { + "id": "0x01005FC01000E000", + "name": "Monster Bugs Eat People" + }, + { + "id": "0x01006000040C2000", + "name": "Yoshi’s Crafted World™" + }, + { + "id": "0x010061400ED90000", + "name": "HyperParasite" + }, + { + "id": "0x010061E00E8BE000", + "name": "Garfield Kart Furious Racing" + }, + { + "id": "0x010062600D236000", + "name": "The Path of Motus Demo" + }, + { + "id": "0x0100647012F62000", + "name": "Override 2: Super Mech League" + }, + { + "id": "0x010065E011D5C000", + "name": "Myths of Orion: Light from the North" + }, + { + "id": "0x010046600BD0E000", + "name": "Crash Dummy" + }, + { + "id": "0x010046F012A04000", + "name": "Chinese Parents" + }, + { + "id": "0x010048600CC16000", + "name": "Real Heroes: Firefighter" + }, + { + "id": "0x0100496006EC8000", + "name": "Arcade Archives FRONT LINE" + }, + { + "id": "0x010049900D3C6000", + "name": "Drowning (Demo)" + }, + { + "id": "0x01004E90028A2000", + "name": "Vroom in the night sky" + }, + { + "id": "0x01004F000B716000", + "name": "Edna & Harvey: The Breakout – Anniversary Edition" + }, + { + "id": "0x010050A011344000", + "name": "Jurassic World Evolution: Complete Edition" + }, + { + "id": "0x010055A00A300000", + "name": "ACA NEOGEO SUPER SIDEKICKS 2" + }, + { + "id": "0x010055D009F78000", + "name": "Fire Emblem™: Three Houses" + }, + { + "id": "0x010055D00BDD0000", + "name": "3D Billiards - Pool & Snooker" + }, + { + "id": "0x010059F012984000", + "name": "Make a Killing" + }, + { + "id": "0x01005A8010C7E000", + "name": "ARCADE FUZZ" + }, + { + "id": "0x01005AE00A528000", + "name": "Star Ghost Demo" + }, + { + "id": "0x01005B800EA5A000", + "name": "Sheep in Hell" + }, + { + "id": "0x01005C70122E0000", + "name": "Farm Mechanic Simulator" + }, + { + "id": "0x01005CD00A2A2000", + "name": "Suicide Guy" + }, + { + "id": "0x01005E700ABB8000", + "name": "Oddworld: New 'n' Tasty" + }, + { + "id": "0x010063400B2EC000", + "name": "Paranautical Activity" + }, + { + "id": "0x0100463013246000", + "name": "Oneiros" + }, + { + "id": "0x010047300EBA6000", + "name": "The Tower of Beatrice" + }, + { + "id": "0x010048800E7A2000", + "name": "Super Bit Blaster XL" + }, + { + "id": "0x01004A600EB3E000", + "name": "Rest in Pieces" + }, + { + "id": "0x01004AF00A772000", + "name": "PixelJunk™ Monsters 2 Demo" + }, + { + "id": "0x01004B800D0E8000", + "name": "MotoGP™19" + }, + { + "id": "0x01004BE004A86000", + "name": "Mutant Mudds Collection" + }, + { + "id": "0x01004C70086EC000", + "name": "BAFL - Brakes Are For Losers" + }, + { + "id": "0x01004D800AAAC000", + "name": "Yuso" + }, + { + "id": "0x010059700D4A0000", + "name": "Sephirothic Stories" + }, + { + "id": "0x01005AA00D676000", + "name": "Blaster Master Zero 2" + }, + { + "id": "0x01005C9002B42000", + "name": "ACA NEOGEO SAMURAI SHODOWN" + }, + { + "id": "0x01005DE00F3BC000", + "name": "Safari Pinball" + }, + { + "id": "0x01005E5009EF2000", + "name": "Guts & Glory" + }, + { + "id": "0x010065F004E5E000", + "name": "Super Chariot" + }, + { + "id": "0x010067C010F88000", + "name": "Goblin Sword" + }, + { + "id": "0x01006C00081B4000", + "name": "GoatPunks" + }, + { + "id": "0x01006C100EC08000", + "name": "Minecraft Dungeons" + }, + { + "id": "0x01006D300FFA6000", + "name": "Baobabs Mausoleum Ep.3: Un Pato en Muertoburgo" + }, + { + "id": "0x01006DB004566000", + "name": "Caveman Warriors" + }, + { + "id": "0x010041700D3D4000", + "name": "European Conqueror X" + }, + { + "id": "0x010045000E418000", + "name": "NEKOPARA Vol.3" + }, + { + "id": "0x010045400D73E000", + "name": "Red Siren: Space Defense" + }, + { + "id": "0x010045B011E1E000", + "name": "Piano" + }, + { + "id": "0x010047700D540000", + "name": "Clubhouse Games™: 51 Worldwide Classics" + }, + { + "id": "0x010049F00AFE8000", + "name": "ACA NEOGEO SAMURAI SHODOWN V SPECIAL" + }, + { + "id": "0x01004B200DF76000", + "name": "7th Sector" + }, + { + "id": "0x01004B201308A000", + "name": "Memoranda" + }, + { + "id": "0x01004F200CB08000", + "name": "Desktop Soccer" + }, + { + "id": "0x010050000D6C4000", + "name": "Arcade Classics Anniversary Collection" + }, + { + "id": "0x0100519007636000", + "name": "Cube Life: Island Survival" + }, + { + "id": "0x010052900DC7E000", + "name": "Pocket Clothier" + }, + { + "id": "0x01005370123D0000", + "name": "Arcade Archives KOUTETSU YOUSAI STRAHL" + }, + { + "id": "0x01005B1006988000", + "name": "Frederic: Resurrection of Music" + }, + { + "id": "0x01005B100C268000", + "name": "Ape Out" + }, + { + "id": "0x01005B500A1A2000", + "name": "KAIJU KHAOS" + }, + { + "id": "0x01005BE008674000", + "name": "IMPLOSION Demo" + }, + { + "id": "0x01005C8005F34000", + "name": "Teslagrad" + }, + { + "id": "0x01006050129D2000", + "name": "PICK ME UP! - Rescue Rangers -" + }, + { + "id": "0x010061900AFAC000", + "name": "ACA NEOGEO THRASH RALLY" + }, + { + "id": "0x010040D01222C000", + "name": "UBERMOSH: SANTICIDE" + }, + { + "id": "0x010041100B148000", + "name": "Pinstripe" + }, + { + "id": "0x010044E00D97C000", + "name": "BATTLESLOTHS" + }, + { + "id": "0x0100454008DA8000", + "name": "Stikbold! A Dodgeball Adventure DELUXE Demo" + }, + { + "id": "0x010049200B536000", + "name": "Lazy Galaxy: Rebel Story" + }, + { + "id": "0x010049E00BA34000", + "name": "Townsmen - A Kingdom Rebuilt" + }, + { + "id": "0x01004A300F91E000", + "name": "Tower Climb" + }, + { + "id": "0x01004B500F07C000", + "name": "Strike Force 2 - Terrorist Hunt" + }, + { + "id": "0x01004C000AFDC000", + "name": "ACA NEOGEO METAL SLUG 5" + }, + { + "id": "0x01004C200B0B4000", + "name": "Alwa's Awakening" + }, + { + "id": "0x01004E400A48C000", + "name": "Slam Land" + }, + { + "id": "0x0100502007F54000", + "name": "Black The Fall" + }, + { + "id": "0x010051D00C9F8000", + "name": "Startide" + }, + { + "id": "0x010052B00B194000", + "name": "Lumini" + }, + { + "id": "0x010055600516C000", + "name": "Farmer's Dynasty" + }, + { + "id": "0x010055E00CA68000", + "name": "Trine 4: The Nightmare Prince" + }, + { + "id": "0x010059C012966000", + "name": "Picklock" + }, + { + "id": "0x01005AF004DBC000", + "name": "ACA NEOGEO ZED BLADE" + }, + { + "id": "0x01005CE00F970000", + "name": "Sacred Stones" + }, + { + "id": "0x01005E101014C000", + "name": "2048 CAT" + }, + { + "id": "0x0100735010F58000", + "name": "Road To Guangdong" + }, + { + "id": "0x010076000C86E000", + "name": "Cat Girl Without Salad: Amuse-Bouche" + }, + { + "id": "0x0100769004584000", + "name": "Shaq Fu: A Legend Reborn" + }, + { + "id": "0x010077E00F30E000", + "name": "Big Pharma" + }, + { + "id": "0x010080F0099FC000", + "name": "Semblance" + }, + { + "id": "0x0100820013612000", + "name": "Shady Part of Me" + }, + { + "id": "0x010084200DC72000", + "name": "Arcade Archives TIME TUNNEL" + }, + { + "id": "0x010084D00CF5E000", + "name": "NARUTO SHIPPUDEN™: Ultimate Ninja® STORM 4 ROAD TO BORUTO" + }, + { + "id": "0x010084E010E18000", + "name": "NAMCO MUSEUM® ARCHIVES Vol 1" + }, + { + "id": "0x010085D0101A4000", + "name": "Infinite - Beyond the Mind" + }, + { + "id": "0x0100875011D0C000", + "name": "Aery - Little Bird Adventure" + }, + { + "id": "0x01008D700AB14000", + "name": "The Bug Butcher" + }, + { + "id": "0x01008DF00B78E000", + "name": "Gunbrick: Reloaded" + }, + { + "id": "0x01008FA01187A000", + "name": "Prinny® 2: Dawn of Operation Panties, Dood!" + }, + { + "id": "0x01009100115C0000", + "name": "Solitaire Deluxe Bundle - 3 in 1" + }, + { + "id": "0x0100946008DAE000", + "name": "Her Majesty's SPIFFING" + }, + { + "id": "0x0100946012446000", + "name": "Paint" + }, + { + "id": "0x01009860125C0000", + "name": "Tales from the Dragon Mountain: The Strix" + }, + { + "id": "0x010099A00BC1E000", + "name": "resident evil 4" + }, + { + "id": "0x0100738012566000", + "name": "Super Arcade Racing" + }, + { + "id": "0x0100743008694000", + "name": "Neonwall" + }, + { + "id": "0x01007880115E8000", + "name": "Colloc" + }, + { + "id": "0x010079000F0D2000", + "name": "Kitty Powers' Matchmaker: Deluxe Edition" + }, + { + "id": "0x010079300E976000", + "name": "Baobabs Mausoleum Ep.2: 1313 Barnabas Dead End Drive" + }, + { + "id": "0x010079500E0DA000", + "name": "Curious Expedition" + }, + { + "id": "0x01007B900A508000", + "name": "Pure / Electric Love \"What do you want?\" - Eri Kitami -" + }, + { + "id": "0x01007D000AD8A000", + "name": "Child of Light® Ultimate Edition" + }, + { + "id": "0x01007E3006DDA000", + "name": "Kirby™ Star Allies" + }, + { + "id": "0x01007EE011116000", + "name": "SNK GALS' FIGHTERS" + }, + { + "id": "0x010083800DC70000", + "name": "Arcade Archives ALPINE SKI" + }, + { + "id": "0x010086100CDCA000", + "name": "CODE SHIFTER" + }, + { + "id": "0x0100875008000000", + "name": "Bloody Zombies" + }, + { + "id": "0x010088800B72E000", + "name": "Pix the Cat" + }, + { + "id": "0x010089000F0E8000", + "name": "Kine" + }, + { + "id": "0x01008C900982E000", + "name": "Arcade Archives Solomon's Key" + }, + { + "id": "0x01008DD0114AE000", + "name": "Zenge" + }, + { + "id": "0x01008E900471E000", + "name": "De Mambo" + }, + { + "id": "0x01008ED0087A4000", + "name": "The Adventure Pals" + }, + { + "id": "0x01008F500E042000", + "name": "Charterstone: Digital Edition" + }, + { + "id": "0x01005F000CC18000", + "name": "OVERWHELM" + }, + { + "id": "0x01005F7011950000", + "name": "ScourgeBringer" + }, + { + "id": "0x010064E00ECBC000", + "name": "The Unicorn Princess" + }, + { + "id": "0x010066D002CC8000", + "name": "Johnny Turbo's Arcade: Break Thru" + }, + { + "id": "0x010067400EA5C000", + "name": "Headspun" + }, + { + "id": "0x010068200C5BE000", + "name": "Roarr! Jurassic Edition" + }, + { + "id": "0x01006C3004FAE000", + "name": "ACA NEOGEO WORLD HEROES 2 JET" + }, + { + "id": "0x01006EB004B0E000", + "name": "Treadnauts" + }, + { + "id": "0x01006FE005B6E000", + "name": "Sky Force Reloaded" + }, + { + "id": "0x01006FE00D2B0000", + "name": "High Noon Revolver" + }, + { + "id": "0x010071B00964A000", + "name": "Lost Sea" + }, + { + "id": "0x010077300A86C000", + "name": "PIANISTA" + }, + { + "id": "0x010077B0100DA000", + "name": "Dogurai" + }, + { + "id": "0x010079501025C000", + "name": "Immortal Realms: Vampire Wars" + }, + { + "id": "0x010079D00C8AE000", + "name": "Klondike Solitaire" + }, + { + "id": "0x01007BE00FE5E000", + "name": "PuPaiPo Space Deluxe" + }, + { + "id": "0x01007C000C314000", + "name": "kuso" + }, + { + "id": "0x01007F600D1B8000", + "name": "12 is Better Than 6" + }, + { + "id": "0x0100842011BD6000", + "name": "Umihara Kawase BaZooKa!" + }, + { + "id": "0x010085700ABC8000", + "name": "PBA Pro Bowling" + }, + { + "id": "0x0100812012554000", + "name": "Mushroom Savior" + }, + { + "id": "0x0100842008EC4000", + "name": "Mega Man Legacy Collection 2" + }, + { + "id": "0x010084600F51C000", + "name": "Demon Pit" + }, + { + "id": "0x010085500D5F6000", + "name": "Turok" + }, + { + "id": "0x010085F00B93A000", + "name": "Western 1849 Reloaded" + }, + { + "id": "0x010086100AA54000", + "name": "Portal Knights Demo" + }, + { + "id": "0x01008780123A0000", + "name": "Iris and the Giant" + }, + { + "id": "0x010089700F30C000", + "name": "Valfaris" + }, + { + "id": "0x010089D011310000", + "name": "Blind Men" + }, + { + "id": "0x01008CD00FB66000", + "name": "Rune Lord" + }, + { + "id": "0x01008DB013114000", + "name": "Stencil Art" + }, + { + "id": "0x01008DD00E66C000", + "name": "Truck Simulator USA" + }, + { + "id": "0x01008F000E908000", + "name": "Mad Bullets" + }, + { + "id": "0x01008F30107F8000", + "name": "Where Angels Cry: Tears of the Fallen Collector's Edition" + }, + { + "id": "0x010093000CB62000", + "name": "Sudoku Universe" + }, + { + "id": "0x010094600DC86000", + "name": "Tower Of Time" + }, + { + "id": "0x010096D0116DE000", + "name": "Sagrada" + }, + { + "id": "0x010099A011A46000", + "name": "Instant Sports Summer Games" + }, + { + "id": "0x01009A700DA8E000", + "name": "Oh!Edo Towns" + }, + { + "id": "0x01009C000415A000", + "name": "Ultra Hyperball" + }, + { + "id": "0x010020400BDD2000", + "name": "Moai VI: Unexpected Guests" + }, + { + "id": "0x010020901088A000", + "name": "Nirvana Pilot Yume" + }, + { + "id": "0x010021D00ACA2000", + "name": "Never Stop" + }, + { + "id": "0x010021F00C1C0000", + "name": "Adventures of Bertram Fiddle Episode 2: A Bleaker Predicklement" + }, + { + "id": "0x010022801242C000", + "name": "KukkoroDays" + }, + { + "id": "0x010027B00DDF4000", + "name": "Sudoku Relax" + }, + { + "id": "0x010029700EB76000", + "name": "Adrenaline Rush - Miami Drive" + }, + { + "id": "0x01002B30028F6000", + "name": "Celeste" + }, + { + "id": "0x01002C301280E000", + "name": "Vampire: The Masquerade - Shadows of New York" + }, + { + "id": "0x010030A00DA3A000", + "name": "Root Letter: Last Answer" + }, + { + "id": "0x010032800E6D2000", + "name": "Headball Soccer Deluxe" + }, + { + "id": "0x0100352006A10000", + "name": "Heroes of the Monkey Tavern" + }, + { + "id": "0x010035B00B3F0000", + "name": "Super Volley Blast" + }, + { + "id": "0x010037500F282000", + "name": "KUUKIYOMI 2: Consider It More! - New Era" + }, + { + "id": "0x01003A600D8FC000", + "name": "A Fold Apart" + }, + { + "id": "0x01003FB00E954000", + "name": "Arcade Archives Yie Ar KUNG-FU" + }, + { + "id": "0x010041C00A68C000", + "name": "The Spectrum Retreat" + }, + { + "id": "0x010043B00E1CE000", + "name": "PictoQuest" + }, + { + "id": "0x010044B00E70A000", + "name": "Foregone" + }, + { + "id": "0x01008D800AE4A000", + "name": "FullBlast" + }, + { + "id": "0x01008E6006502000", + "name": "Aegis Defenders" + }, + { + "id": "0x01008FE00E2F6000", + "name": "ONE PIECE: PIRATE WARRIORS 4" + }, + { + "id": "0x01009070118B4000", + "name": "My Secret Pets!" + }, + { + "id": "0x010094F01328C000", + "name": "Castle of no Escape" + }, + { + "id": "0x01009510001CA000", + "name": "FAST RMX" + }, + { + "id": "0x010096A00CC80000", + "name": "A Ch'ti Bundle" + }, + { + "id": "0x010099100B6AC000", + "name": "The Walking Dead: Season Two" + }, + { + "id": "0x01009A5009A9E000", + "name": "Shining Resonance Refrain" + }, + { + "id": "0x01009AC00D5F4000", + "name": "Cinders" + }, + { + "id": "0x01009B400ACBA000", + "name": "No Heroes Here" + }, + { + "id": "0x01009BC00B872000", + "name": "City of Brass" + }, + { + "id": "0x01009C200D60E000", + "name": "Super Meat Boy Forever" + }, + { + "id": "0x01009D000FAE0000", + "name": "Ultimate Racing 2D" + }, + { + "id": "0x01009D50103E8000", + "name": "World Of Solitaire" + }, + { + "id": "0x01009E100D660000", + "name": "Tiny Derby" + }, + { + "id": "0x0100A0F00D82A000", + "name": "My Big Sister" + }, + { + "id": "0x0100A290048B0000", + "name": "Soldam: Drop, Connect, Erase" + }, + { + "id": "0x0100A2E00D0E0000", + "name": "Alien Cruise" + }, + { + "id": "0x0100A500115BC000", + "name": "Swordbreaker The Game" + }, + { + "id": "0x010067600AD78000", + "name": "Space War Arena" + }, + { + "id": "0x0100679010FEE000", + "name": "Hair Mower 3D" + }, + { + "id": "0x010068200BF14000", + "name": "RISK® Global Domination - Demo" + }, + { + "id": "0x01006A200936C000", + "name": "Shantae: Half- Genie Hero Ultimate Edition" + }, + { + "id": "0x01006BB00D45A000", + "name": "Splatoon™ 2 Special Demo" + }, + { + "id": "0x01006C8013708000", + "name": "Detective Puz" + }, + { + "id": "0x01006DA00707C000", + "name": "3D MiniGolf" + }, + { + "id": "0x01006DA00DEAC000", + "name": "Star Wars™ Pinball" + }, + { + "id": "0x01006FE0096AC000", + "name": "The Jackbox Party Pack 5" + }, + { + "id": "0x010070B01260C000", + "name": "Pool Pro GOLD" + }, + { + "id": "0x010070C011E2A000", + "name": "Kropki 8" + }, + { + "id": "0x0100713010E7A000", + "name": "Chicken Police – Paint it RED!" + }, + { + "id": "0x010072000BD32000", + "name": "WORLD OF FINAL FANTASY MAXIMA" + }, + { + "id": "0x010073C00BDB0000", + "name": "Elli" + }, + { + "id": "0x010074000BE8E000", + "name": "oOo: Ascension" + }, + { + "id": "0x010075600AE96000", + "name": "Just Dance® 2019" + }, + { + "id": "0x010075A00BA14000", + "name": "Sniper Elite 3 Ultimate Edition" + }, + { + "id": "0x0100766003E5C000", + "name": "BOOST BEAST" + }, + { + "id": "0x01007D1013512000", + "name": "Unhatched" + }, + { + "id": "0x01007DD00DFDE000", + "name": "Dyna Bomb" + }, + { + "id": "0x010050101127C000", + "name": "The Persistence" + }, + { + "id": "0x0100510011BC0000", + "name": "Indie Gems Bundle - Nonograms edition" + }, + { + "id": "0x010053C012AE2000", + "name": "Kakurasu World" + }, + { + "id": "0x010053E002EA2000", + "name": "Fate/EXTELLA: The Umbral Star" + }, + { + "id": "0x010058B00F3C0000", + "name": "Dreaming Canvas" + }, + { + "id": "0x01005AD00B91A000", + "name": "Never Give Up" + }, + { + "id": "0x01005BA00BEE6000", + "name": "Trivial Pursuit LIVE - DEMO" + }, + { + "id": "0x010061000D82C000", + "name": "Even the Ocean" + }, + { + "id": "0x010061100FA8E000", + "name": "Orbitblazers" + }, + { + "id": "0x010061500F462000", + "name": "Deathtrap Dungeon Trilogy" + }, + { + "id": "0x010061700FA8C000", + "name": "Murder by Numbers" + }, + { + "id": "0x010064400B138000", + "name": "V-Rally 4" + }, + { + "id": "0x010065C00CD98000", + "name": "Bot Vice" + }, + { + "id": "0x010069900C4AC000", + "name": "Chime Sharp" + }, + { + "id": "0x01006C500A29C000", + "name": "HyperBrawl Tournament" + }, + { + "id": "0x01006C600E46E000", + "name": "Samurai Jack: Battle Through Time" + }, + { + "id": "0x01006D800A988000", + "name": "Battlezone Gold Edition" + }, + { + "id": "0x01006E000C81C000", + "name": "Fate/EXTELLA LINK" + }, + { + "id": "0x01006F8002326000", + "name": "Animal Crossing™: New Horizons" + }, + { + "id": "0x01006890126E4000", + "name": "4x4 Dirt Track" + }, + { + "id": "0x010068F00F444000", + "name": "Brawl Chess" + }, + { + "id": "0x010069400B6BE000", + "name": "For The King" + }, + { + "id": "0x0100695011280000", + "name": "Dirt Trackin 2" + }, + { + "id": "0x01006B400C178000", + "name": "Blacksea Odyssey" + }, + { + "id": "0x01006E30099B8000", + "name": "Pic-a-Pix Deluxe Demo" + }, + { + "id": "0x01006E400AE2A000", + "name": "Jeopardy!®" + }, + { + "id": "0x010076600FD64000", + "name": "One Person Story" + }, + { + "id": "0x010076F011F54000", + "name": "Undead & Beyond" + }, + { + "id": "0x01007A601318C000", + "name": "Tanuki Justice" + }, + { + "id": "0x01007D100F1A6000", + "name": "BARRIER X" + }, + { + "id": "0x010081D00A480000", + "name": "Ninja Striker!" + }, + { + "id": "0x010081E001DD2000", + "name": "Arcade Archives Renegade" + }, + { + "id": "0x010082700C618000", + "name": "Spider Solitaire BLACK" + }, + { + "id": "0x010082B00EE50000", + "name": "Freedom Finger" + }, + { + "id": "0x010084500C7DC000", + "name": "Angry Video Game Nerd 1 & 2 Deluxe" + }, + { + "id": "0x010087C00E31C000", + "name": "Incredible Mandy" + }, + { + "id": "0x010087C011C4E000", + "name": "Agatha Christie - The ABC Murders" + }, + { + "id": "0x01008800130EA000", + "name": "Slash Ninja" + }, + { + "id": "0x010088100C35E000", + "name": "Big Crown: Showdown" + }, + { + "id": "0x01006DD011074000", + "name": "Indie Darling Bundle Vol 2" + }, + { + "id": "0x01006E600D9C2000", + "name": "Defend Your Castle" + }, + { + "id": "0x01006F7001D10000", + "name": "Monster Boy and the Cursed Kingdom" + }, + { + "id": "0x010071800BA98000", + "name": "Darksiders II Deathinitive Edition" + }, + { + "id": "0x010073E008E6E000", + "name": "Mugsters" + }, + { + "id": "0x010075100D450000", + "name": "Collidalot Demo" + }, + { + "id": "0x0100761012B0C000", + "name": "Takotan" + }, + { + "id": "0x010077B0038B2000", + "name": "LOST SPHEAR" + }, + { + "id": "0x010077C00D610000", + "name": "Pirates Pinball" + }, + { + "id": "0x010079300AD54000", + "name": "Full Metal Furies" + }, + { + "id": "0x01007A200F452000", + "name": "Book of Demons" + }, + { + "id": "0x01007B6006092000", + "name": "MUSYNX" + }, + { + "id": "0x01007E400ECC6000", + "name": "Deadly Fighter 2" + }, + { + "id": "0x01007F600B134000", + "name": "Assassin's Creed® III: Remastered" + }, + { + "id": "0x01007F701323E000", + "name": "Arcade Archives The Fairyland Story" + }, + { + "id": "0x01007FB010DC8000", + "name": "Paradise Killer" + }, + { + "id": "0x0100810012A1A000", + "name": "Carto" + }, + { + "id": "0x010082B00E8B8000", + "name": "Megaquarium" + }, + { + "id": "0x0100830004FB6000", + "name": "L.A. Noire" + }, + { + "id": "0x010086E00BCB2000", + "name": "Retimed" + }, + { + "id": "0x01008BB00F824000", + "name": "Defenders of Ekron: Definitive Edition" + }, + { + "id": "0x01009AE00B788000", + "name": "Pumped BMX Pro" + }, + { + "id": "0x01009C200F45A000", + "name": "Ascendant Hearts" + }, + { + "id": "0x01009CE01261C000", + "name": "I, AI" + }, + { + "id": "0x01009D200952E000", + "name": "MudRunner - American Wilds" + }, + { + "id": "0x01009D60076F6000", + "name": "Enter the Gungeon" + }, + { + "id": "0x0100A01011B04000", + "name": "Arcade Archives RADICAL RADIAL" + }, + { + "id": "0x0100A0E004DB2000", + "name": "ACA NEOGEO SUPER SIDEKICKS" + }, + { + "id": "0x0100A6400F29A000", + "name": "Ganbare! Super Strikers" + }, + { + "id": "0x0100A7F002830000", + "name": "VOEZ" + }, + { + "id": "0x0100A9900C380000", + "name": "Energy Cycle Edge (Demo)" + }, + { + "id": "0x0100A9900F3BE000", + "name": "8-Ball Pocket" + }, + { + "id": "0x0100AB9013564000", + "name": "Boss Rush: Mythology" + }, + { + "id": "0x0100AD9011056000", + "name": "One Way Heroics Plus" + }, + { + "id": "0x0100AEC010052000", + "name": "Biolab Wars" + }, + { + "id": "0x0100AFC00F7B6000", + "name": "Stones of the Revenant" + }, + { + "id": "0x0100B2700E90E000", + "name": "Brunch Club" + }, + { + "id": "0x0100B5300B49A000", + "name": "Frost" + }, + { + "id": "0x0100B8400A1C6000", + "name": "Bloons TD 5" + }, + { + "id": "0x0100B8E00CBB0000", + "name": "Cake Laboratory" + }, + { + "id": "0x0100BB1009E50000", + "name": "Firefighters: Airport Fire Department" + }, + { + "id": "0x010066F009524000", + "name": "Ultra Space Battle Brawl Demo" + }, + { + "id": "0x01006BB00E8FA000", + "name": "BurgerTime Party!" + }, + { + "id": "0x01006FB00EBE0000", + "name": "Golf With Your Friends" + }, + { + "id": "0x010070A01134A000", + "name": "I am Ball" + }, + { + "id": "0x010071D0121B0000", + "name": "I dream of you and ice cream" + }, + { + "id": "0x0100729012D18000", + "name": "Rhythm Fighter" + }, + { + "id": "0x0100730011BDC000", + "name": "Bakugan: Champions of Vestroia" + }, + { + "id": "0x010074400F6A8000", + "name": "Stories Untold" + }, + { + "id": "0x010076A009426000", + "name": "TorqueL -Physics Modified Edition- Demo" + }, + { + "id": "0x01007820096FC000", + "name": "UnExplored" + }, + { + "id": "0x01007C2002B3C000", + "name": "GoNNER" + }, + { + "id": "0x01007D200C512000", + "name": "StarDrone" + }, + { + "id": "0x010081D0100F0000", + "name": "Rhythm of the Gods" + }, + { + "id": "0x0100820012ADE000", + "name": "Slither Loop" + }, + { + "id": "0x010089300FDC2000", + "name": "ZHED" + }, + { + "id": "0x01008A900CB90000", + "name": "RPG Maker MV Player" + }, + { + "id": "0x01008BC012850000", + "name": "Ghostanoid" + }, + { + "id": "0x01008CE0123CC000", + "name": "Arcade Archives 64th. STREET" + }, + { + "id": "0x01008E200C5C2000", + "name": "Muse Dash" + }, + { + "id": "0x01008EE012CD4000", + "name": "Legends of Ethernal" + }, + { + "id": "0x010062200CF14000", + "name": "Demo: Cinderella - An Interactive Fairytale" + }, + { + "id": "0x010067C00E496000", + "name": "DOUBLE DRAGON" + }, + { + "id": "0x01006A80038FC000", + "name": "ACA NEOGEO ART OF FIGHTING" + }, + { + "id": "0x01006AC00EE6E000", + "name": "Rimelands: Hammer of Thor" + }, + { + "id": "0x01006C301199C000", + "name": "My Universe - School Teacher" + }, + { + "id": "0x01006D4011738000", + "name": "Arcade Archives TUBE PANIC" + }, + { + "id": "0x01006F100EB16000", + "name": "Woven" + }, + { + "id": "0x01006F900473A000", + "name": "Bulb Boy" + }, + { + "id": "0x01006FE010438000", + "name": "Sin Slayers" + }, + { + "id": "0x010071D00F156000", + "name": "REZ PLZ" + }, + { + "id": "0x010073C001D5E000", + "name": "Puyo Puyo™Tetris®" + }, + { + "id": "0x0100749009844000", + "name": "20XX" + }, + { + "id": "0x010075000D092000", + "name": "Bad North Demo" + }, + { + "id": "0x0100755004608000", + "name": "Arcade Archives Mario Bros." + }, + { + "id": "0x010075D00E8BA000", + "name": "Alien: Isolation" + }, + { + "id": "0x010076B011EC8000", + "name": "Baila Latino" + }, + { + "id": "0x0100770008DD8000", + "name": "Monster Hunter Generations Ultimate™" + }, + { + "id": "0x010078800EE1A000", + "name": "Swallow Up" + }, + { + "id": "0x01007BC00E55A000", + "name": "Immortal Planet" + }, + { + "id": "0x01007CF013152000", + "name": "Football Manager 2021 Touch" + }, + { + "id": "0x01004A400C320000", + "name": "Momodora: Reverie Under the Moonlight" + }, + { + "id": "0x01004C400CF96000", + "name": "Dead by Daylight" + }, + { + "id": "0x01004C500B8E0000", + "name": "Monkey King: Master of the Clouds" + }, + { + "id": "0x01004D8007368000", + "name": "Vostok Inc." + }, + { + "id": "0x010056300D21A000", + "name": "Chiki-Chiki Boxy Pro Wrestling" + }, + { + "id": "0x0100590009C38000", + "name": "SOL DIVIDE -SWORD OF DARKNESS- for Nintendo Switch" + }, + { + "id": "0x01005D700E742000", + "name": "DOOM 64" + }, + { + "id": "0x010060E009062000", + "name": "GUILT BATTLE ARENA" + }, + { + "id": "0x010062F011E7C000", + "name": "Memory Lane" + }, + { + "id": "0x010064200C324000", + "name": "Xenon Valkyrie+" + }, + { + "id": "0x0100652012F58000", + "name": "Drums" + }, + { + "id": "0x010065B00B0EC000", + "name": "Rise and Shine" + }, + { + "id": "0x010068B0094A0000", + "name": "Otto" + }, + { + "id": "0x01006D4003BCE000", + "name": "Guns, Gore and Cannoli 2" + }, + { + "id": "0x01006E200E322000", + "name": "Car Trader" + }, + { + "id": "0x01006EE00380C000", + "name": "Sausage Sports Club" + }, + { + "id": "0x010071800BA74000", + "name": "Aragami: Shadow Edition" + }, + { + "id": "0x010072600D8EC000", + "name": "DayD: Through Time" + }, + { + "id": "0x010073900A7A0000", + "name": "Awkward" + }, + { + "id": "0x010075900CD1C000", + "name": "Thea: The Awakening" + }, + { + "id": "0x0100161009A52000", + "name": "POOL" + }, + { + "id": "0x010018800D1FC000", + "name": "Truck Racing Championship" + }, + { + "id": "0x010018F010CD2000", + "name": "FRACTER" + }, + { + "id": "0x010019500E642000", + "name": "Animal Fight Club" + }, + { + "id": "0x01001950137D8000", + "name": "The Hong Kong Massacre" + }, + { + "id": "0x01001CF00AD06000", + "name": "Psyvariar Delta" + }, + { + "id": "0x01001F5006DF6000", + "name": "Jim is Moving Out!" + }, + { + "id": "0x010020500BD98000", + "name": "The King's Bird" + }, + { + "id": "0x010021100DF22000", + "name": "Telling Lies" + }, + { + "id": "0x010024C0067C4000", + "name": "2064: Read Only Memories INTEGRAL" + }, + { + "id": "0x01002500129F4000", + "name": "INSTANT Chef Party" + }, + { + "id": "0x01002800117EE000", + "name": "Mystery Mine" + }, + { + "id": "0x010028A0048A6000", + "name": "Peasant Knight" + }, + { + "id": "0x010029100B75C000", + "name": "Tarot Readings Premium" + }, + { + "id": "0x010029600D56A000", + "name": "Katana ZERO" + }, + { + "id": "0x01002AC0113DE000", + "name": "Fibbage XL" + }, + { + "id": "0x01002BA00D662000", + "name": "Pine" + }, + { + "id": "0x01002F0011DD4000", + "name": "HARDCORE MECHA" + }, + { + "id": "0x010030900D9A6000", + "name": "Super Crush KO" + }, + { + "id": "0x010032200BBC0000", + "name": "Ragtag Adventurers" + }, + { + "id": "0x01006A800FA22000", + "name": "Evolution Board Game" + }, + { + "id": "0x01006BA013990000", + "name": "Girabox" + }, + { + "id": "0x01006C40086EA000", + "name": "AeternoBlade" + }, + { + "id": "0x01006E1004404000", + "name": "Ben 10" + }, + { + "id": "0x01006EA00D892000", + "name": "Hyperforma" + }, + { + "id": "0x01006F900AB7E000", + "name": "Splash Blast Panic" + }, + { + "id": "0x010070A00A5F4000", + "name": "Armello" + }, + { + "id": "0x010072600D21C000", + "name": "Agony" + }, + { + "id": "0x0100730007A9C000", + "name": "Detention" + }, + { + "id": "0x01007430122D0000", + "name": "Shiren the Wanderer: The Tower of Fortune and the Dice of Fate" + }, + { + "id": "0x0100746010E4C000", + "name": "NinNinDays" + }, + { + "id": "0x010079700B4EA000", + "name": "Clouds & Sheep 2" + }, + { + "id": "0x01007A500B0B2000", + "name": "Pilot Sports" + }, + { + "id": "0x01007EF00CB88000", + "name": "Duke Nukem 3D: 20th Anniversary World Tour" + }, + { + "id": "0x010081900F9E2000", + "name": "Wizards of Brandel" + }, + { + "id": "0x010086300A558000", + "name": "INFERNO CLIMBER: REBORN" + }, + { + "id": "0x0100867011618000", + "name": "Home: Postmortem Edition" + }, + { + "id": "0x0100872012B34000", + "name": "My Little Dog Adventure" + }, + { + "id": "0x010087E006E6E000", + "name": "Tachyon Project" + }, + { + "id": "0x01008B20022AA000", + "name": "Shovel Knight: King of Cards" + }, + { + "id": "0x010072100E312000", + "name": "SEGA AGES Fantasy Zone" + }, + { + "id": "0x010072800CBE8000", + "name": "PC Building Simulator" + }, + { + "id": "0x0100737003190000", + "name": "IMPLOSION" + }, + { + "id": "0x010075400DDB8000", + "name": "Torchlight III" + }, + { + "id": "0x0100767008502000", + "name": "FANTASY HERO ~unsigned legacy~" + }, + { + "id": "0x0100768010970000", + "name": "They Came From the Sky" + }, + { + "id": "0x01007800122C8000", + "name": "Flipon" + }, + { + "id": "0x01007A1012852000", + "name": "Cecconoid" + }, + { + "id": "0x01007A400B3F8000", + "name": "Anima: Gate of Memories - The Nameless Chronicles" + }, + { + "id": "0x010080B0115BA000", + "name": "Ara Fell: Enhanced Edition" + }, + { + "id": "0x010082800AE4C000", + "name": "Heroes Trials" + }, + { + "id": "0x010083100B5CA000", + "name": "Sky Force Anniversary" + }, + { + "id": "0x0100838002AEA000", + "name": "LEGO® Worlds" + }, + { + "id": "0x010083A00BF6C000", + "name": "Dark Devotion" + }, + { + "id": "0x010084201056A000", + "name": "Clumsy Rush" + }, + { + "id": "0x010086500D3C8000", + "name": "VA-11 Hall-A: Cyberpunk Bartender Action" + }, + { + "id": "0x010086B00C784000", + "name": "My Lovely Daughter" + }, + { + "id": "0x010088100DD42000", + "name": "Roof Rage" + }, + { + "id": "0x0100921006A04000", + "name": "Night in the Woods" + }, + { + "id": "0x010092400A678000", + "name": "Zaccaria Pinball" + }, + { + "id": "0x010078500C21A000", + "name": "Football Manager 2019 Touch" + }, + { + "id": "0x010078700B2CC000", + "name": "Caveman Warriors Demo" + }, + { + "id": "0x01007A0011878000", + "name": "Prinny®: Can I Really Be the Hero?" + }, + { + "id": "0x01007C0003AEC000", + "name": "Use Your Words" + }, + { + "id": "0x01007C7006AEE000", + "name": "Tactics V: \"Obsidian Brigade\"" + }, + { + "id": "0x01007E600EEE6000", + "name": "140" + }, + { + "id": "0x01007EB00D208000", + "name": "The Shrouded Isle" + }, + { + "id": "0x01007EF00399C000", + "name": "Conga Master Party!" + }, + { + "id": "0x0100804008794000", + "name": "ACA NEOGEO SAMURAI SHODOWN III" + }, + { + "id": "0x01008110036FE000", + "name": "Physical Contact: SPEED" + }, + { + "id": "0x0100830008426000", + "name": "Just Shapes & Beats" + }, + { + "id": "0x010084B012FF0000", + "name": "Birds and Blocks" + }, + { + "id": "0x01008A9001DC2000", + "name": "ACA NEOGEO SHOCK TROOPERS" + }, + { + "id": "0x01008B000E494000", + "name": "Crash'n the Boys Street Challenge" + }, + { + "id": "0x01008B20129F2000", + "name": "Dream" + }, + { + "id": "0x01008B8004E36000", + "name": "OXENFREE" + }, + { + "id": "0x01008E300E400000", + "name": "Wayout" + }, + { + "id": "0x010090C00F7BA000", + "name": "Just Ignore Them" + }, + { + "id": "0x0100917007888000", + "name": "Piczle Lines DX Demo" + }, + { + "id": "0x010091700F76E000", + "name": "〇× LOGIC PUZZLE 1000 !" + }, + { + "id": "0x010064600F1D6000", + "name": "Lost Wing" + }, + { + "id": "0x01006790101A2000", + "name": "Nine Witches: Family Disruption" + }, + { + "id": "0x010069200EB80000", + "name": "Ministry of Broadcast" + }, + { + "id": "0x01006AD00B82C000", + "name": "Paperbound Brawlers" + }, + { + "id": "0x01006BC00B188000", + "name": "The Journey Down: Chapter Three" + }, + { + "id": "0x01006CB00EEEA000", + "name": "Tennis Club Story" + }, + { + "id": "0x01006D000D2A0000", + "name": "Super Mutant Alien Assault" + }, + { + "id": "0x01006D100E1DE000", + "name": "Home Escape" + }, + { + "id": "0x01006E50042EA000", + "name": "EARTHLOCK" + }, + { + "id": "0x01006FC00E6C4000", + "name": "Smoots Summer Games" + }, + { + "id": "0x010070C00FB56000", + "name": "TERROR SQUID" + }, + { + "id": "0x010074E0099FA000", + "name": "Grave Danger" + }, + { + "id": "0x01007920038F6000", + "name": "ACA NEOGEO MAGICIAN LORD" + }, + { + "id": "0x01007BF012AD2000", + "name": "Hitori Logic" + }, + { + "id": "0x01007D7001D0E000", + "name": "Oceanhorn - Monster of Uncharted Seas" + }, + { + "id": "0x01007DB010D2C000", + "name": "TaniNani" + }, + { + "id": "0x010083600D930000", + "name": "Summer Sports Games" + }, + { + "id": "0x010083800E43E000", + "name": "Five Nights at Freddy's 4" + }, + { + "id": "0x010083E010AE8000", + "name": "Along the Edge" + }, + { + "id": "0x010084500EA2E000", + "name": "Spacejacked" + }, + { + "id": "0x010045500B212000", + "name": "Calculation Castle : Greco's Ghostly Challenge \"Division \"" + }, + { + "id": "0x010046F00F5E4000", + "name": "WinKings" + }, + { + "id": "0x010048800D95C000", + "name": "Car Mechanic Manager" + }, + { + "id": "0x01004AD00E094000", + "name": "The House of Da Vinci" + }, + { + "id": "0x01004B100BDA2000", + "name": "KEMONO FRIENDS PICROSS" + }, + { + "id": "0x01004C200100E000", + "name": "New Frontier Days ~Founding Pioneers~" + }, + { + "id": "0x01004DB00935A000", + "name": "Alteric" + }, + { + "id": "0x01004E300899E000", + "name": "Wanderjahr TryAgainOrWalkAway Demo" + }, + { + "id": "0x01004F3011F92000", + "name": "Endless Fables: Dark Moor" + }, + { + "id": "0x010050E00EC8E000", + "name": "Gunpowder on The Teeth: Arcade" + }, + { + "id": "0x01005240121F2000", + "name": "Grood" + }, + { + "id": "0x01005270118D6000", + "name": "Iron Wings" + }, + { + "id": "0x0100535012974000", + "name": "Hades" + }, + { + "id": "0x0100557012752000", + "name": "Arcade Archives CIRCUS CHARLIE" + }, + { + "id": "0x010057D00CF10000", + "name": "Gelly Break Demo" + }, + { + "id": "0x010059C00E39C000", + "name": "Battlestar Galactica Deadlock" + }, + { + "id": "0x01005B3005D6E000", + "name": "League of Evil Demo" + }, + { + "id": "0x01005B9011830000", + "name": "Pen and Paper Games Bundle" + }, + { + "id": "0x01005BC01145A000", + "name": "Card Game Bundle Vol. 1" + }, + { + "id": "0x01005C1012C22000", + "name": "Jet Set Knights" + }, + { + "id": "0x010090100D3D6000", + "name": "Zeroptian Invasion" + }, + { + "id": "0x0100902001014000", + "name": "Othello" + }, + { + "id": "0x0100916011210000", + "name": "Cloudpunk" + }, + { + "id": "0x010095C00406C000", + "name": "Beach Buggy Racing" + }, + { + "id": "0x0100969005E98000", + "name": "60 Seconds!" + }, + { + "id": "0x010099B00A2DC000", + "name": "Dragon Blaze for Nintendo Switch" + }, + { + "id": "0x010099F00B374000", + "name": "Super Hydorah" + }, + { + "id": "0x01009EA00C792000", + "name": "Lightseekers" + }, + { + "id": "0x0100A0300D1A0000", + "name": "Hellmut: The Badass from Hell" + }, + { + "id": "0x0100A0300FC3E000", + "name": "Perseverance" + }, + { + "id": "0x0100A16011872000", + "name": "Gryphon Knight Epic: Definitive Edition" + }, + { + "id": "0x0100A2B00BD88000", + "name": "Demon's Crystals" + }, + { + "id": "0x0100A2D00EFBE000", + "name": "Guitar" + }, + { + "id": "0x0100A330022C2000", + "name": "Constructor Plus" + }, + { + "id": "0x0100A59012070000", + "name": "Valentina" + }, + { + "id": "0x0100A5D00C7C0000", + "name": "Double Pug Switch" + }, + { + "id": "0x0100AAE0100C4000", + "name": "The Dresden Files Cooperative Card Game" + }, + { + "id": "0x0100ABF008968000", + "name": "Pokémon™ Sword" + }, + { + "id": "0x0100AC3011C4C000", + "name": "Food Truck Tycoon - Asian Cuisine" + }, + { + "id": "0x0100AC40038F4000", + "name": "ACA NEOGEO AERO FIGHTERS 2" + }, + { + "id": "0x0100AC100DC48000", + "name": "Event Horizon" + }, + { + "id": "0x0100AD1010CCE000", + "name": "Bohemian Killing" + }, + { + "id": "0x0100AE600DBE4000", + "name": "From Orbit" + }, + { + "id": "0x0100AF100EE76000", + "name": "Quiplash 2 InterLASHional: The Say Anything Party Game!" + }, + { + "id": "0x0100B0E0086F6000", + "name": "The Trail: Frontier Challenge" + }, + { + "id": "0x0100B1300FF08000", + "name": "The Wonderful 101: Remastered" + }, + { + "id": "0x0100B1400D92A000", + "name": "Unit 4" + }, + { + "id": "0x0100B1E0100A4000", + "name": "Voxel Galaxy" + }, + { + "id": "0x0100B6801137E000", + "name": "Bravely Default™ II Demo" + }, + { + "id": "0x0100B6D00C2DE000", + "name": "Tied Together" + }, + { + "id": "0x0100B6E00A420000", + "name": "Dust: An Elysian Tail" + }, + { + "id": "0x0100B7000D89E000", + "name": "Knights and Bikes" + }, + { + "id": "0x0100B8700BD14000", + "name": "Energy Cycle Edge" + }, + { + "id": "0x0100BA3003B70000", + "name": "NAMCO MUSEUM (PAC-MAN VS. Free Multiplayer-only Ver.)" + }, + { + "id": "0x0100BA300C39A000", + "name": "Spencer" + }, + { + "id": "0x0100BC200B99E000", + "name": "Onigiri" + }, + { + "id": "0x0100BC50122B6000", + "name": "Farm Builder" + }, + { + "id": "0x0100BD2009A1C000", + "name": "Damsel" + }, + { + "id": "0x0100BDE00862A000", + "name": "Mario Tennis™ Aces" + }, + { + "id": "0x0100BE9007E7E000", + "name": "ICEY" + }, + { + "id": "0x010075E00D8C6000", + "name": "Lost Artifacts: Soulstone" + }, + { + "id": "0x010076000F6B8000", + "name": "Home Sheep Home: Farmageddon Party Edition" + }, + { + "id": "0x010076F0049A2000", + "name": "Bayonetta™" + }, + { + "id": "0x010077600BE3A000", + "name": "SolSeraph" + }, + { + "id": "0x010079100A2F4000", + "name": "Escape Game : Aloha" + }, + { + "id": "0x01007A200F2E2000", + "name": "Psikyo Shooting Stars Alpha" + }, + { + "id": "0x01007BB00E760000", + "name": "CROSSNIQ+" + }, + { + "id": "0x01007EF00011E000", + "name": "The Legend of Zelda™: Breath of the Wild" + }, + { + "id": "0x010080F00F490000", + "name": "Mirror" + }, + { + "id": "0x01008280119B2000", + "name": "Lair of the Clockwork God" + }, + { + "id": "0x010083E011BC8000", + "name": "Wordify" + }, + { + "id": "0x010085000BA5C000", + "name": "Knock 'Em Down! Bowling" + }, + { + "id": "0x010085900337E000", + "name": "Death Squared" + }, + { + "id": "0x010087800EE5A000", + "name": "Hopping girl KOHANE Jumping Kingdom: Princess of the Black Rabbit" + }, + { + "id": "0x010088E00EBB6000", + "name": "Soulslayer" + }, + { + "id": "0x010089200F0E4000", + "name": "Turmoil" + }, + { + "id": "0x010089A00C7B0000", + "name": "Warhammer Age of Sigmar: Champions" + }, + { + "id": "0x01008CD00901C000", + "name": "Discovery" + }, + { + "id": "0x01008EA00E816000", + "name": "OVERPASS™" + }, + { + "id": "0x01008FF00A4B6000", + "name": "Squids Odyssey" + }, + { + "id": "0x01005D00107E8000", + "name": "Dog Duty" + }, + { + "id": "0x01005D3012322000", + "name": "Roulette at Aces Casino" + }, + { + "id": "0x010061400A990000", + "name": "Shikhondo - Soul Eater" + }, + { + "id": "0x010061B010C40000", + "name": "Ittle Dew 2+" + }, + { + "id": "0x010061D00FD26000", + "name": "Biz Builder Delux" + }, + { + "id": "0x010062500EB84000", + "name": "Anime Studio Story" + }, + { + "id": "0x0100628004BCE000", + "name": "Nights of Azure 2: Bride of the New Moon" + }, + { + "id": "0x010062900E610000", + "name": "Towaga: Among Shadows" + }, + { + "id": "0x0100698009C6E000", + "name": "Blasphemous" + }, + { + "id": "0x01006CB010840000", + "name": "Oceanhorn 2: Knights of the Lost Realm" + }, + { + "id": "0x01006E8011C1E000", + "name": "Ailment" + }, + { + "id": "0x01006EE00AE38000", + "name": "Shining Resonance Refrain Demo" + }, + { + "id": "0x0100701001D92000", + "name": "Human Resource Machine" + }, + { + "id": "0x010072601233C000", + "name": "Adventures of Chris" + }, + { + "id": "0x010073A00C4B2000", + "name": "Tyd wag vir Niemand" + }, + { + "id": "0x010073E00DBDA000", + "name": "Siralim 3" + }, + { + "id": "0x0100742007266000", + "name": "Monster Energy Supercross - The Official Videogame" + }, + { + "id": "0x0100744012D3E000", + "name": "BIT.TRIP FATE" + }, + { + "id": "0x010077000F620000", + "name": "Arcade Spirits" + }, + { + "id": "0x010077C00F370000", + "name": "Robots under attack!" + }, + { + "id": "0x01009A4008A30000", + "name": "Arcade Archives HEROIC EPISODE" + }, + { + "id": "0x01009A700A538000", + "name": "Mark of the Ninja: Remastered" + }, + { + "id": "0x01009B7006C88000", + "name": "EARTH WARS" + }, + { + "id": "0x01009BB00F850000", + "name": "Circle of Sumo: Online Rumble!" + }, + { + "id": "0x01009E500D29C000", + "name": "Sentinels of Freedom" + }, + { + "id": "0x01009FB002B2E000", + "name": "Flipping Death" + }, + { + "id": "0x0100A0A00D1AA000", + "name": "SKYHILL" + }, + { + "id": "0x0100A0F00BC24000", + "name": "UNI" + }, + { + "id": "0x0100A1C00359C000", + "name": "TowerFall" + }, + { + "id": "0x0100A42004718000", + "name": "BRAWL" + }, + { + "id": "0x0100A7F01283C000", + "name": "Infection - Board Game" + }, + { + "id": "0x0100A9D00B31A000", + "name": "The Inner World - The Last Wind Monk" + }, + { + "id": "0x0100AAC00E692000", + "name": "Zenith" + }, + { + "id": "0x0100AB2010B4C000", + "name": "Unlock The King" + }, + { + "id": "0x0100AC10085CE000", + "name": "AQUA KITTY UDX" + }, + { + "id": "0x0100ACD00E27E000", + "name": "Star Sky" + }, + { + "id": "0x0100AE00096EA000", + "name": "Hyrule Warriors: Definitive Edition" + }, + { + "id": "0x0100AE500E76A000", + "name": "AeternoBlade II" + }, + { + "id": "0x0100B5B00EF38000", + "name": "Elden: Path of the Forgotten" + }, + { + "id": "0x0100B61009C60000", + "name": "STAY COOL, KOBAYASHI-SAN!: A RIVER CITY RANSOM STORY" + }, + { + "id": "0x01008DD006C52000", + "name": "A Magical High School Girl" + }, + { + "id": "0x010090F012916000", + "name": "Ghostrunner" + }, + { + "id": "0x010092601020A000", + "name": "while True: learn()" + }, + { + "id": "0x010093600D5E0000", + "name": "The Rainsdowne Players" + }, + { + "id": "0x010095B00AA38000", + "name": "Monopoly for Nintendo Switch - Demo" + }, + { + "id": "0x010096500EA94000", + "name": "2048 Battles" + }, + { + "id": "0x0100967012972000", + "name": "Super Dragonfly Chronicles" + }, + { + "id": "0x010098800A1E4000", + "name": "The First Tree" + }, + { + "id": "0x01009B700D0B8000", + "name": "Undead Horde" + }, + { + "id": "0x01009C400C88C000", + "name": "Almost There: The Platformer" + }, + { + "id": "0x01009D3008D20000", + "name": "Furi" + }, + { + "id": "0x01009EA00F180000", + "name": "Sorry, James" + }, + { + "id": "0x01009F401002E000", + "name": "Nurse Love Addiction" + }, + { + "id": "0x0100A1900B5B8000", + "name": "Animated Jigsaws: Beautiful Japanese Scenery Demo" + }, + { + "id": "0x0100A2500E232000", + "name": "Syder Reloaded" + }, + { + "id": "0x0100A260094EE000", + "name": "Fallen Legion: Rise to Glory" + }, + { + "id": "0x0100A2600FCA0000", + "name": "Island Saver" + }, + { + "id": "0x0100A4200A284000", + "name": "LUMINES REMASTERED" + }, + { + "id": "0x0100A4400BE74000", + "name": "The LEGO Movie 2 Videogame" + }, + { + "id": "0x01008C500E7D8000", + "name": "Mochi Mochi Boy" + }, + { + "id": "0x01008CD00C222000", + "name": "Streets of Rogue" + }, + { + "id": "0x01008F1012DF4000", + "name": "Jigsaw Fun: Piece It Together!" + }, + { + "id": "0x01008FD004DB6000", + "name": "ACA NEOGEO METAL SLUG X" + }, + { + "id": "0x010091B00B762000", + "name": "Raining Coins" + }, + { + "id": "0x010092D00CC12000", + "name": "Octahedron: Transfixed Edition Demo" + }, + { + "id": "0x010092D00FF66000", + "name": "Top Run" + }, + { + "id": "0x0100934003BCC000", + "name": "Guns, Gore and Cannoli" + }, + { + "id": "0x01009380114E0000", + "name": "Breakpoint" + }, + { + "id": "0x010093F00F894000", + "name": "Drink More Glurp" + }, + { + "id": "0x010094800D3DA000", + "name": "Reptilian Rebellion" + }, + { + "id": "0x010096300E48A000", + "name": "Super Dodge Ball" + }, + { + "id": "0x010097600C322000", + "name": "ANIMUS" + }, + { + "id": "0x01009C100CE6A000", + "name": "Pocket Academy" + }, + { + "id": "0x01009C300BB4C000", + "name": "Beat Cop" + }, + { + "id": "0x01009CE00AFAE000", + "name": "ACA NEOGEO METAL SLUG 4" + }, + { + "id": "0x0100A0A00E660000", + "name": "Blackmoor 2" + }, + { + "id": "0x0100A1200F20C000", + "name": "Midnight Evil" + }, + { + "id": "0x0100A2B008696000", + "name": "Toki Tori 2+: Nintendo Switch Edition" + }, + { + "id": "0x0100A3500B4EC000", + "name": "Polandball: Can Into Space" + }, + { + "id": "0x010075000EE32000", + "name": "Milkmaid of the Milky Way" + }, + { + "id": "0x010076001311E000", + "name": "TAURONOS" + }, + { + "id": "0x010079100EB48000", + "name": "XenoRaptor" + }, + { + "id": "0x01007BA00F0E6000", + "name": "Family Tree" + }, + { + "id": "0x010083B00B97A000", + "name": "World Soccer" + }, + { + "id": "0x010083E00F40E000", + "name": "Collar X Malice" + }, + { + "id": "0x010085A00821A000", + "name": "ClusterPuck 99" + }, + { + "id": "0x010087E00D5F2000", + "name": "Fledgling Heroes" + }, + { + "id": "0x010088700C5F8000", + "name": "Guns of Mercy - Rangers Edition" + }, + { + "id": "0x010088F00F66C000", + "name": "Twister Road" + }, + { + "id": "0x01008C600395A000", + "name": "My Little Riding Champion" + }, + { + "id": "0x01008E700CAAC000", + "name": "Istanbul: Digital Edition" + }, + { + "id": "0x01008EF00C900000", + "name": "The Journey Down Trilogy" + }, + { + "id": "0x01008F600F2D0000", + "name": "Remothered: Tormented Fathers" + }, + { + "id": "0x010091000CC0E000", + "name": "Hyperide" + }, + { + "id": "0x010093800A98C000", + "name": "Super Blackjack Battle 2 Turbo Edition - The Card Warriors" + }, + { + "id": "0x01009440095FE000", + "name": "Pode" + }, + { + "id": "0x010097800F1B4000", + "name": "Extreme Trucks Simulator" + }, + { + "id": "0x0100995013404000", + "name": "Fight" + }, + { + "id": "0x01009B500007C000", + "name": "ARMS™" + }, + { + "id": "0x01007E700DBF6000", + "name": "MY HERO ONE'S JUSTICE 2" + }, + { + "id": "0x01007FC00206E000", + "name": "LEGO® NINJAGO® Movie Video Game" + }, + { + "id": "0x01007FC00B674000", + "name": "Sigi - A Fart for Melusina" + }, + { + "id": "0x010080600B53E000", + "name": "Evil Defenders" + }, + { + "id": "0x010082400ED18000", + "name": "Shiny Ski Resort" + }, + { + "id": "0x010082900D6DC000", + "name": "Professional Farmer: American Dream" + }, + { + "id": "0x010085A00C5E8000", + "name": "The Lord of the Rings: Adventure Card Game - Definitive Edition" + }, + { + "id": "0x01008A100A028000", + "name": "FOX n FORESTS" + }, + { + "id": "0x01008B1008466000", + "name": "Junior League Sports" + }, + { + "id": "0x01008D4007A1E000", + "name": "Outlast: Bundle of Terror" + }, + { + "id": "0x0100928005094000", + "name": "Soulblight" + }, + { + "id": "0x010095F010568000", + "name": "The Wanderer: Frankenstein's Creature" + }, + { + "id": "0x010096400CBC6000", + "name": "TerraTech" + }, + { + "id": "0x010096500B018000", + "name": "Cubikolor" + }, + { + "id": "0x01009CC00BD6E000", + "name": "Tangrams Deluxe" + }, + { + "id": "0x01009D7011B02000", + "name": "GRISAIA PHANTOM TRIGGER 01&02" + }, + { + "id": "0x01009D901321A000", + "name": "Party Games: 15 in 1" + }, + { + "id": "0x01009DC001DB6000", + "name": "ACA NEOGEO THE KING OF FIGHTERS '95" + }, + { + "id": "0x0100A0401346A000", + "name": "Persian Nights 2: The Moonlight Veil" + }, + { + "id": "0x010041A00FEC6000", + "name": "Ember" + }, + { + "id": "0x010042800A516000", + "name": "Asdivine Hearts" + }, + { + "id": "0x010044A00CEB4000", + "name": "Tacticool Champs" + }, + { + "id": "0x010045300516E000", + "name": "Snow Moto Racing Freedom" + }, + { + "id": "0x0100453012FEA000", + "name": "Green Hell" + }, + { + "id": "0x01004550100CC000", + "name": "Space Crew" + }, + { + "id": "0x0100461007BB0000", + "name": "Black Hole" + }, + { + "id": "0x01004A200E722000", + "name": "Magazine Mogul" + }, + { + "id": "0x01004C500B698000", + "name": "Time Carnage" + }, + { + "id": "0x01004FD00382A000", + "name": "Moon Hunters" + }, + { + "id": "0x01005300128E2000", + "name": "Karma Knight" + }, + { + "id": "0x010056100E43C000", + "name": "Five Nights at Freddy's 3" + }, + { + "id": "0x01005670128FC000", + "name": "Great Conqueror: Rome" + }, + { + "id": "0x01005AC0068F6000", + "name": "Fear Effect Sedna" + }, + { + "id": "0x01005EA012430000", + "name": "TroubleDays" + }, + { + "id": "0x010060400BA9A000", + "name": "Johnny Turbo's Arcade: Heavy Burger" + }, + { + "id": "0x010064600F982000", + "name": "AVICII Invector" + }, + { + "id": "0x010066200E1E6000", + "name": "Coffee Talk" + }, + { + "id": "0x01006AB00BD82000", + "name": "OkunoKA" + }, + { + "id": "0x01006EC00F2CC000", + "name": "RUINER" + }, + { + "id": "0x0100858010DC4000", + "name": "the StoryTale" + }, + { + "id": "0x010086C00790C000", + "name": "Warlock's Tower" + }, + { + "id": "0x010086E01037C000", + "name": "BREAK DOT" + }, + { + "id": "0x010088B010DD2000", + "name": "Dongo Adventure" + }, + { + "id": "0x010089B00D09C000", + "name": "AI: THE SOMNIUM FILES" + }, + { + "id": "0x010089D00A3FA000", + "name": "American Ninja Warrior: Challenge" + }, + { + "id": "0x01008B200FC6C000", + "name": "The Wardrobe: Even Better Edition" + }, + { + "id": "0x010090600CB98000", + "name": "Ninja Village" + }, + { + "id": "0x010093700BCDC000", + "name": "Dungeon Village Demo" + }, + { + "id": "0x0100943010310000", + "name": "Little Busters! Converted Edition" + }, + { + "id": "0x010095200EA5E000", + "name": "Beats Runner" + }, + { + "id": "0x010099000BA48000", + "name": "Old School Racer 2" + }, + { + "id": "0x01009C0009842000", + "name": "Detective Gallo" + }, + { + "id": "0x01009C4012284000", + "name": "Evergate" + }, + { + "id": "0x01009C8009026000", + "name": "LIMBO" + }, + { + "id": "0x01009D5009234000", + "name": "RICO" + }, + { + "id": "0x01009EE0111CC000", + "name": "Ancestors Legacy" + }, + { + "id": "0x0100A16010966000", + "name": "Animal Up!" + }, + { + "id": "0x0100A2A00B08C000", + "name": "The Office Quest" + }, + { + "id": "0x0100A2F00EEFC000", + "name": "Disney Classic Games: Aladdin and The Lion King" + }, + { + "id": "0x01005ED010642000", + "name": "Lost Horizon 2" + }, + { + "id": "0x01005F000B784000", + "name": "Nelly Cootalot: The Fowl Fleet" + }, + { + "id": "0x01005F900902A000", + "name": "Crush Your Enemies!" + }, + { + "id": "0x010060D00AE36000", + "name": "Mighty Switch Force! Collection" + }, + { + "id": "0x010064B00B95C000", + "name": "The Liar Princess and the Blind Prince" + }, + { + "id": "0x010065900CB3A000", + "name": "Katamari Damacy REROLL Demo" + }, + { + "id": "0x0100662008632000", + "name": "Spy Chameleon" + }, + { + "id": "0x01006C300E9F0000", + "name": "DRAGON QUEST® XI S: Echoes of an Elusive Age – Definitive Edition" + }, + { + "id": "0x01006EE00E67C000", + "name": "BATTOJUTSU" + }, + { + "id": "0x0100700006EF6000", + "name": "Mushroom Wars 2" + }, + { + "id": "0x0100704000B3A000", + "name": "Snipperclips™ – Cut it out, together!" + }, + { + "id": "0x010070800EC56000", + "name": "Throne Quest Deluxe" + }, + { + "id": "0x010072B00BDDE000", + "name": "Narcos: Rise of the Cartels" + }, + { + "id": "0x010072E00B36A000", + "name": "Fairy Tale Puzzles~Magic Objects~" + }, + { + "id": "0x010074B00ED32000", + "name": "Polyroll" + }, + { + "id": "0x010075601150A000", + "name": "1993 Shenandoah" + }, + { + "id": "0x010076C00B8F0000", + "name": "Out There: Ω The Alliance" + }, + { + "id": "0x0100782005A44000", + "name": "Oh...Sir! The Insult Simulator" + }, + { + "id": "0x010078800825E000", + "name": "Wanderjahr TryAgainOrWalkAway" + }, + { + "id": "0x010052500D984000", + "name": "Rogue Bit" + }, + { + "id": "0x010053B0123DC000", + "name": "Alphaset by POWGI" + }, + { + "id": "0x010054500F564000", + "name": "Bookbound Brigade" + }, + { + "id": "0x010057F007AA2000", + "name": "Rally Racers" + }, + { + "id": "0x010058A00BF1C000", + "name": "The Raven Remastered" + }, + { + "id": "0x01005960123CE000", + "name": "Arcade Archives EARTH DEFENSE FORCE" + }, + { + "id": "0x01005C60086BE000", + "name": "Mega Man X Legacy Collection" + }, + { + "id": "0x01005D50107F2000", + "name": "Reed Remastered" + }, + { + "id": "0x01005E600AB64000", + "name": "Disease -Hidden Object-" + }, + { + "id": "0x01005EC0039E4000", + "name": "Poi: Explorer Edition" + }, + { + "id": "0x01005EE0036EC000", + "name": "Rocket League®" + }, + { + "id": "0x01006050114D4000", + "name": "The Experiment: Escape Room" + }, + { + "id": "0x010060A00B53C000", + "name": "Broforce" + }, + { + "id": "0x010064300CFD4000", + "name": "Forgotten Tales - Day of the Dead" + }, + { + "id": "0x010064F01354A000", + "name": "Banana Treasures Island" + }, + { + "id": "0x010065000D25C000", + "name": "Clan N" + }, + { + "id": "0x010065B009B3A000", + "name": "Animal Rivals: Nintendo Switch Edition" + }, + { + "id": "0x01006960121A8000", + "name": "Piczle Lines DX Bundle" + }, + { + "id": "0x01006A900EB1A000", + "name": "Forklift - The Simulation" + }, + { + "id": "0x01006AB00BEE4000", + "name": "SEGA AGES Lightening Force: Quest for the Darkstar" + }, + { + "id": "0x0100BF7006BCA000", + "name": "Crawl" + }, + { + "id": "0x0100C10012EFC000", + "name": "War Titans" + }, + { + "id": "0x0100C2400D68C000", + "name": "SeaBed" + }, + { + "id": "0x0100C9A00952A000", + "name": "Manticore - Galaxy on Fire" + }, + { + "id": "0x0100C9A00B60A000", + "name": "Mercury Race" + }, + { + "id": "0x0100CA100C0BA000", + "name": "Color Zen" + }, + { + "id": "0x0100CB2001DB8000", + "name": "ACA NEOGEO GAROU: MARK OF THE WOLVES" + }, + { + "id": "0x0100CEC00BF04000", + "name": "Valthirian Arc: Hero School Story Demo" + }, + { + "id": "0x0100D0B00FB74000", + "name": "XCOM® 2 Collection" + }, + { + "id": "0x0100D7000C2C6000", + "name": "Katamari Damacy REROLL" + }, + { + "id": "0x0100D9200D090000", + "name": "Trials Rising Open Beta" + }, + { + "id": "0x0100D9B0041CE000", + "name": "Spacecats with Lasers" + }, + { + "id": "0x0100DA500EFB0000", + "name": "Football Manager 2020 Touch" + }, + { + "id": "0x0100DBE013B78000", + "name": "Kingdom Tales" + }, + { + "id": "0x0100E0A0110F4000", + "name": "eCrossminton" + }, + { + "id": "0x0100E0C010AB8000", + "name": "Sky Jaguar 2" + }, + { + "id": "0x0100E2C00B414000", + "name": "RPG Maker MV" + }, + { + "id": "0x0100E400129EC000", + "name": "Commander Keen in Keen Dreams: Definitive Edition" + }, + { + "id": "0x0100E4300CB3E000", + "name": "Feather" + }, + { + "id": "0x0100E5600EE8E000", + "name": "Atelier Escha & Logy: Alchemists of the Dusk Sky DX" + }, + { + "id": "0x01008F1008DA6000", + "name": "Darkest Dungeon" + }, + { + "id": "0x01008FA012FC0000", + "name": "Crystal Ortha" + }, + { + "id": "0x0100929013172000", + "name": "Arcade Archives SUPER COBRA" + }, + { + "id": "0x010092E00E7F4000", + "name": "Deleveled" + }, + { + "id": "0x010096900A4D2000", + "name": "Clustertruck" + }, + { + "id": "0x010096F00E5B0000", + "name": "Phantom Doctrine" + }, + { + "id": "0x0100992010BF8000", + "name": "Ubongo" + }, + { + "id": "0x01009C000E442000", + "name": "Freddy Fazbear's Pizzeria Simulator" + }, + { + "id": "0x01009C100390E000", + "name": "League of Evil" + }, + { + "id": "0x0100A130109B2000", + "name": "Summer in Mara" + }, + { + "id": "0x0100A1F012948000", + "name": "Bomber Fox" + }, + { + "id": "0x0100A250097F0000", + "name": "DRAGON BALL FIGHTERZ" + }, + { + "id": "0x0100A7700B46C000", + "name": "Legendary Fishing" + }, + { + "id": "0x0100AAE00CAB4000", + "name": "Puyo Puyo Champions" + }, + { + "id": "0x0100AC30133EC000", + "name": "PICROSS S5" + }, + { + "id": "0x0100AC501122A000", + "name": "Alluris" + }, + { + "id": "0x0100ADA00BE3C000", + "name": "INSTANT TENNIS DEMO" + }, + { + "id": "0x0100B0800DBAC000", + "name": "Human Rocket Person" + }, + { + "id": "0x0100B1300871A000", + "name": "ACA NEOGEO KING OF THE MONSTERS" + }, + { + "id": "0x0100B1500E9F2000", + "name": "Double Dragon & Kunio-kun: Retro Brawler Bundle" + }, + { + "id": "0x01009F3011004000", + "name": "No Straight Roads" + }, + { + "id": "0x0100A06011A48000", + "name": "UNREAL LIFE" + }, + { + "id": "0x0100A2100BFCE000", + "name": "Hell Warders" + }, + { + "id": "0x0100A4900B2DE000", + "name": "Jewel Fever 2" + }, + { + "id": "0x0100A4A00B2E8000", + "name": "Toby: The Secret Mine" + }, + { + "id": "0x0100A4D00A308000", + "name": "ACA NEOGEO SUPER SIDEKICKS 3 : THE NEXT GLORY" + }, + { + "id": "0x0100A9B009678000", + "name": "EAT BEAT DEADSPIKE-san" + }, + { + "id": "0x0100AB600ACB4000", + "name": "Demetrios - The BIG Cynical Adventure" + }, + { + "id": "0x0100ABB00E352000", + "name": "Arcade Archives Wiz" + }, + { + "id": "0x0100AC300919A000", + "name": "Firewatch" + }, + { + "id": "0x0100ADF00700E000", + "name": "Runbow" + }, + { + "id": "0x0100AE0012190000", + "name": "Retro Classix 4in1 Pack: Sly Spy, Shootout, Wizard Fire & Super Real Darwin" + }, + { + "id": "0x0100AF000B4AE000", + "name": "Stunt Kite Party" + }, + { + "id": "0x0100B1A00D8CE000", + "name": "DOOM® Eternal" + }, + { + "id": "0x0100B2100767C000", + "name": "River City Melee Mach!!" + }, + { + "id": "0x0100B2C00682E000", + "name": "99Vidas - Definitive Edition" + }, + { + "id": "0x0100B4900E008000", + "name": "Shalnor Legends: Sacred Lands" + }, + { + "id": "0x0100B61010272000", + "name": "Kemono Heroes" + }, + { + "id": "0x0100B6F01227C000", + "name": "Glitch's Trip" + }, + { + "id": "0x010094300C888000", + "name": "Leopoldo Manquiseil" + }, + { + "id": "0x0100944003820000", + "name": "Fantasy Strike" + }, + { + "id": "0x010097D00402C000", + "name": "Dusty Raging Fist" + }, + { + "id": "0x01009840046BC000", + "name": "Semispheres" + }, + { + "id": "0x01009B7010B42000", + "name": "Explosive Jake" + }, + { + "id": "0x01009C301061A000", + "name": "One Dog Story" + }, + { + "id": "0x01009E600D78C000", + "name": "Anode" + }, + { + "id": "0x01009E700F726000", + "name": "Edgar - Bokbok in Boulzac" + }, + { + "id": "0x0100A070105A6000", + "name": "Arcade Archives GRADIUS" + }, + { + "id": "0x0100A32010618000", + "name": "Silent World" + }, + { + "id": "0x0100A51013550000", + "name": "Death Tales" + }, + { + "id": "0x0100A5A00B2AA000", + "name": "The Bluecoats North & South" + }, + { + "id": "0x0100A5A00DBB0000", + "name": "Dig Dog" + }, + { + "id": "0x0100A7500DF64000", + "name": "Battle Princess Madelyn Royal Edition" + }, + { + "id": "0x0100A7D010524000", + "name": "Sheep Patrol" + }, + { + "id": "0x0100A7F00C5FE000", + "name": "Daggerhood" + }, + { + "id": "0x0100ADF00C630000", + "name": "Royal Adviser" + }, + { + "id": "0x0100B1C00949A000", + "name": "AeternoBlade Demo" + }, + { + "id": "0x0100B58007D40000", + "name": "Unholy Heights" + }, + { + "id": "0x0100B70003836000", + "name": "Johnny Turbo's Arcade: Sly Spy" + }, + { + "id": "0x010072A00B632000", + "name": "Super Club Tennis" + }, + { + "id": "0x01007430037F6000", + "name": "MONOPOLY® for Nintendo Switch™" + }, + { + "id": "0x010075E0047F8000", + "name": "Neon Chrome" + }, + { + "id": "0x0100776003F0C000", + "name": "Morphite" + }, + { + "id": "0x010079200D330000", + "name": "PICROSS S3" + }, + { + "id": "0x010079400BEE0000", + "name": "The Room" + }, + { + "id": "0x010079A0112BE000", + "name": "The Almost Gone" + }, + { + "id": "0x01007A800D520000", + "name": "Refunct" + }, + { + "id": "0x01007BD00AE70000", + "name": "Car Quest" + }, + { + "id": "0x01007DD011608000", + "name": "Slot" + }, + { + "id": "0x01007E2011CE4000", + "name": "Arcade Archives SUPER PUNCH-OUT!!" + }, + { + "id": "0x010082E00F1CE000", + "name": "Cubers: Arena" + }, + { + "id": "0x010083A00DEC8000", + "name": "Dragon Snakes" + }, + { + "id": "0x010087D008D64000", + "name": "BINGO for Nintendo Switch" + }, + { + "id": "0x01008BD00F072000", + "name": "Invasion of Alien X - Earth in Crisis" + }, + { + "id": "0x01008E500BF62000", + "name": "MagiCat" + }, + { + "id": "0x01008E500EDE0000", + "name": "8-Bit Farm" + }, + { + "id": "0x01008EB012608000", + "name": "My Diggy Dog 2" + }, + { + "id": "0x010091400B596000", + "name": "Gaokao.Love.100Days" + }, + { + "id": "0x010095600AA36000", + "name": "Fill-a-Pix: Phil's Epic Adventure" + }, + { + "id": "0x010042300C4F6000", + "name": "Nightshade/百花百狼" + }, + { + "id": "0x0100429006A06000", + "name": "I, Zombie" + }, + { + "id": "0x010044900CCCC000", + "name": "Miner Warfare" + }, + { + "id": "0x0100451012918000", + "name": "The Coma: Recut" + }, + { + "id": "0x010045D009EFC000", + "name": "Apocryph: an old-school shooter" + }, + { + "id": "0x010046B00DE62000", + "name": "Skullgirls 2nd Encore" + }, + { + "id": "0x010048300D5C2000", + "name": "BATTLLOON" + }, + { + "id": "0x010049D010A42000", + "name": "Dungeon Shooting" + }, + { + "id": "0x010051C003A08000", + "name": "Aperion Cyberstorm" + }, + { + "id": "0x010055B009820000", + "name": "Arcade Archives EXERION" + }, + { + "id": "0x01005790110F0000", + "name": "Cobra Kai: The Karate Kid Saga Continues" + }, + { + "id": "0x010058100C80A000", + "name": "WAKU WAKU SWEETS" + }, + { + "id": "0x01005880063AA000", + "name": "Violett" + }, + { + "id": "0x01005A700A166000", + "name": "OUT OF THE BOX" + }, + { + "id": "0x01005B600E396000", + "name": "Lost Artifacts: Golden Island" + }, + { + "id": "0x01005CB009E20000", + "name": "Glaive: Brick Breaker" + }, + { + "id": "0x01005D400E5C8000", + "name": "#RaceDieRun" + }, + { + "id": "0x01005ED0107F4000", + "name": "Clash Force" + }, + { + "id": "0x0100616009082000", + "name": "STAY" + }, + { + "id": "0x0100618004096000", + "name": "Robonauts" + }, + { + "id": "0x010091400D238000", + "name": "Bloodroots" + }, + { + "id": "0x010094100A55A000", + "name": "Petal Crash" + }, + { + "id": "0x010096D00E310000", + "name": "SEGA AGES G-LOC AIR BATTLE" + }, + { + "id": "0x0100972008234000", + "name": "Crystal Crisis" + }, + { + "id": "0x0100973002D6A000", + "name": "Inside My Radio" + }, + { + "id": "0x010098E010FDA000", + "name": "Starlit Adventures Golden Stars" + }, + { + "id": "0x0100990011866000", + "name": "Aokana - Four Rhythms Across the Blue" + }, + { + "id": "0x01009BB00AD62000", + "name": "Screencheat: Unplugged" + }, + { + "id": "0x01009DE00B5CC000", + "name": "Varion" + }, + { + "id": "0x01009E2003FE2000", + "name": "Vaccine" + }, + { + "id": "0x01009EA00A320000", + "name": "Devious Dungeon" + }, + { + "id": "0x01009EB00DC76000", + "name": "Gun Gun Pixies" + }, + { + "id": "0x0100A0C00E0DE000", + "name": "Lonely Mountains: Downhill" + }, + { + "id": "0x0100A0E00B7A4000", + "name": "Werewolf Pinball" + }, + { + "id": "0x0100A2700A86E000", + "name": "Bouncy Bob" + }, + { + "id": "0x0100A6700AF10000", + "name": "Element" + }, + { + "id": "0x0100A6D009840000", + "name": "The Wardrobe" + }, + { + "id": "0x0100A6F00C34E000", + "name": "The Aquatic Adventure of the Last Human" + }, + { + "id": "0x0100A6F00F364000", + "name": "Marblelous Animals" + }, + { + "id": "0x0100A7900E79C000", + "name": "Volta-X" + }, + { + "id": "0x01009170129FA000", + "name": "One Line Coloring" + }, + { + "id": "0x0100928005BD2000", + "name": "Xenoraid" + }, + { + "id": "0x010092A0102AE000", + "name": "Spider Solitaire" + }, + { + "id": "0x01009320084A4000", + "name": "SteamWorld Dig" + }, + { + "id": "0x0100938012A2E000", + "name": "Arcade Archives Gemini Wing" + }, + { + "id": "0x010094F00E0EE000", + "name": "Forest Home" + }, + { + "id": "0x010095900B436000", + "name": "RemiLore" + }, + { + "id": "0x010095C00F9DE000", + "name": "Soccer, Tactics & Glory" + }, + { + "id": "0x0100993012968000", + "name": "Orangeblood" + }, + { + "id": "0x01009A500D4A8000", + "name": "METAGAL" + }, + { + "id": "0x01009B300872A000", + "name": "ACA NEOGEO SENGOKU 2" + }, + { + "id": "0x01009BF0072D4000", + "name": "Captain Toad™: Treasure Tracker" + }, + { + "id": "0x01009C400E93E000", + "name": "Titans Pinball" + }, + { + "id": "0x0100A0500348A000", + "name": "Just Dance® 2018" + }, + { + "id": "0x0100A2E00BB0C000", + "name": "EarthNight" + }, + { + "id": "0x0100A35011406000", + "name": "NecroWorm" + }, + { + "id": "0x0100A3A00CC7E000", + "name": "CLANNAD" + }, + { + "id": "0x0100A73006E74000", + "name": "Legendary Eleven" + }, + { + "id": "0x0100A9800A1B6000", + "name": "Professional Construction – The Simulation" + }, + { + "id": "0x0100AA600C8D6000", + "name": "Arcade Archives SASUKE VS COMMANDER" + }, + { + "id": "0x01005F300C1A8000", + "name": "Revertia" + }, + { + "id": "0x0100630010252000", + "name": "SuperEpic: The Entertainment War" + }, + { + "id": "0x010063901024A000", + "name": "Projection: First Light" + }, + { + "id": "0x010064A00BE0E000", + "name": "Arcade Archives TECMO BOWL" + }, + { + "id": "0x010065D0103D6000", + "name": "Dual Brain Vol.2: Reflex" + }, + { + "id": "0x010067C00A776000", + "name": "Cosmic Star Heroine" + }, + { + "id": "0x010069B00D9FE000", + "name": "WONDER BOY RETURNS REMIX" + }, + { + "id": "0x010069C0123D8000", + "name": "Zoids Wild Blast Unleashed" + }, + { + "id": "0x01006B800DE26000", + "name": "Crimzon Clover - World EXplosion" + }, + { + "id": "0x01006BA00E652000", + "name": "Rise: Race The Future" + }, + { + "id": "0x0100706013240000", + "name": "Lord of the Click" + }, + { + "id": "0x010071B009FB6000", + "name": "Mordheim: Warband Skirmish" + }, + { + "id": "0x0100721013510000", + "name": "Body of Evidence" + }, + { + "id": "0x010072400E04A000", + "name": "Pokémon Café Mix" + }, + { + "id": "0x010074500BBC4000", + "name": "Bendy and the Ink Machine™" + }, + { + "id": "0x0100760002048000", + "name": "NBA 2K18" + }, + { + "id": "0x0100771011472000", + "name": "Repressed" + }, + { + "id": "0x010079F00671C000", + "name": "Sparkle 2 EVO" + }, + { + "id": "0x01007FA00DA22000", + "name": "The Story Goes On" + }, + { + "id": "0x010081A00EE62000", + "name": "Boomerang Fu" + }, + { + "id": "0x0100BB200E9BA000", + "name": "Scrap" + }, + { + "id": "0x0100BCD00C86A000", + "name": "My Jurassic Farm 2018" + }, + { + "id": "0x0100BEA00E63A000", + "name": "Hero Express" + }, + { + "id": "0x0100C2400AFCC000", + "name": "ACA NEOGEO PLEASURE GOAL: 5 ON 5 MINI SOCCER" + }, + { + "id": "0x0100C9100B06A000", + "name": "SmileBASIC 4" + }, + { + "id": "0x0100C990102A0000", + "name": "Adventure Pinball Bundle" + }, + { + "id": "0x0100C9A00D124000", + "name": "Super Phantom Cat: Remake" + }, + { + "id": "0x0100D140112BC000", + "name": "Ghost of a Tale" + }, + { + "id": "0x0100D2600736A000", + "name": "Fe" + }, + { + "id": "0x0100D30010C42000", + "name": "Monster Truck Championship" + }, + { + "id": "0x0100D61012270000", + "name": "Super Soccer Blast" + }, + { + "id": "0x0100D6B00CD88000", + "name": "YUMENIKKI -DREAM DIARY-" + }, + { + "id": "0x0100D9000A930000", + "name": "Trine Enchanted Edition" + }, + { + "id": "0x0100D9B00B666000", + "name": "Football Heroes Turbo" + }, + { + "id": "0x0100DD900E498000", + "name": "DOUBLE DRAGON Ⅱ: The Revenge" + }, + { + "id": "0x0100DE500CAA2000", + "name": "Prime World: Defenders" + }, + { + "id": "0x0100DF900EA8E000", + "name": "Burger Chef Tycoon" + }, + { + "id": "0x0100E24011D1E000", + "name": "NBA 2K21" + }, + { + "id": "0x0100E5400BE64000", + "name": "R-Type Dimensions EX" + }, + { + "id": "0x0100E5700CD56000", + "name": "Irony Curtain: From Matryoshka with Love" + }, + { + "id": "0x0100AD3012234000", + "name": "Solitaire TriPeaks Flowers" + }, + { + "id": "0x0100AFC00A680000", + "name": "Pitfall Planet" + }, + { + "id": "0x0100B1600DB3A000", + "name": "TINY METAL: FULL METAL RUMBLE" + }, + { + "id": "0x0100BB1001DD6000", + "name": "Arcade Archives CRAZY CLIMBER" + }, + { + "id": "0x0100BC60099FE000", + "name": "Iconoclasts" + }, + { + "id": "0x0100BC800EDA2000", + "name": "STELLATUM" + }, + { + "id": "0x0100BCB00AE98000", + "name": "GUNBIRD2 for Nintendo Switch" + }, + { + "id": "0x0100BD3006A02000", + "name": "One More Dungeon" + }, + { + "id": "0x0100BE80097FA000", + "name": "Arcade Archives 10-Yard Fight" + }, + { + "id": "0x0100BF5006A7C000", + "name": "Layers of Fear: Legacy" + }, + { + "id": "0x0100C1000706C000", + "name": "Blossom Tales: The Sleeping King" + }, + { + "id": "0x0100C20013196000", + "name": "OctaFight" + }, + { + "id": "0x0100C47012D86000", + "name": "Panda Jump" + }, + { + "id": "0x0100C5100DB04000", + "name": "Cardpocalypse" + }, + { + "id": "0x0100C5E00E4E0000", + "name": "Delta Squad" + }, + { + "id": "0x0100C6800D9D0000", + "name": "The Red Lantern" + }, + { + "id": "0x0100C8E00F50A000", + "name": "Asdivine Kamura" + }, + { + "id": "0x0100CB400E9BC000", + "name": "STEINS;GATE: My Darling's Embrace" + }, + { + "id": "0x0100CD5011A02000", + "name": "My Universe - PET CLINIC CATS & DOGS" + }, + { + "id": "0x0100CDE00C87C000", + "name": "Ethan: Meteor Hunter" + }, + { + "id": "0x01008CA00D71C000", + "name": "Aperion Cyberstorm [DEMO]" + }, + { + "id": "0x01008E10130F8000", + "name": "Funimation" + }, + { + "id": "0x01008E300C88A000", + "name": "Mad Age & This Guy" + }, + { + "id": "0x01009040091E0000", + "name": "Wolfenstein II®: The New Colossus™" + }, + { + "id": "0x010096100E230000", + "name": "Corridor Z" + }, + { + "id": "0x010098500D532000", + "name": "Pillar" + }, + { + "id": "0x010098800C4B0000", + "name": "'n Verlore Verstand" + }, + { + "id": "0x01009A200BE42000", + "name": "Levelhead" + }, + { + "id": "0x01009B0012888000", + "name": "Birthday of Midnight" + }, + { + "id": "0x01009BC00C0A0000", + "name": "Combat Core (Demo)" + }, + { + "id": "0x01009BD003B36000", + "name": "Thimbleweed Park" + }, + { + "id": "0x01009CD003A0A000", + "name": "Vegas Party" + }, + { + "id": "0x01009D4001DC4000", + "name": "ACA NEOGEO WORLD HEROES PERFECT" + }, + { + "id": "0x01009DE010948000", + "name": "Cosmonauta" + }, + { + "id": "0x01009EA00B714000", + "name": "Horizon Chase Turbo" + }, + { + "id": "0x01009FB00EE4A000", + "name": "Happy Animals Bowling" + }, + { + "id": "0x0100A0400DDE0000", + "name": "AER Memories of Old" + }, + { + "id": "0x0100A3500E2D8000", + "name": "The Manga Works" + }, + { + "id": "0x0100A5000F7AA000", + "name": "DEAD OR SCHOOL" + }, + { + "id": "0x0100A5700AF32000", + "name": "Arcade Archives ARGUS" + }, + { + "id": "0x0100A5601375C000", + "name": "Nordlicht" + }, + { + "id": "0x0100A6300150C000", + "name": "Wonder Boy: The Dragon's Trap" + }, + { + "id": "0x0100A6C011B10000", + "name": "Bridge Strike" + }, + { + "id": "0x0100A9400C9C2000", + "name": "Tokyo Mirage Sessions™ #FE Encore" + }, + { + "id": "0x0100AD300B786000", + "name": "Iris School of Wizardry -Vinculum Hearts-" + }, + { + "id": "0x0100AFC00B120000", + "name": "FLIP OVER FROG" + }, + { + "id": "0x0100AFC00E06A000", + "name": "Dezatopia" + }, + { + "id": "0x0100B0101265C000", + "name": "The Otterman Empire" + }, + { + "id": "0x0100B0C0086B0000", + "name": "Mega Man 11" + }, + { + "id": "0x0100B2A00E1E0000", + "name": "Super Monkey Ball: Banana Blitz HD" + }, + { + "id": "0x0100B5B00693E000", + "name": "Marble It Up!" + }, + { + "id": "0x0100B6400CA56000", + "name": "DAEMON X MACHINA™" + }, + { + "id": "0x0100B8000B190000", + "name": "Goosebumps The Game" + }, + { + "id": "0x0100B8300AFD8000", + "name": "ACA NEOGEO TWINKLE STAR SPRITES" + }, + { + "id": "0x0100BA0004F38000", + "name": "NeuroVoider" + }, + { + "id": "0x0100BC400FB64000", + "name": "Balthazar's Dream" + }, + { + "id": "0x0100BD6010638000", + "name": "Factotum 90" + }, + { + "id": "0x0100BD800986E000", + "name": "Gems of War" + }, + { + "id": "0x0100BEB010F2A000", + "name": "Torn Tales: Rebound Edition" + }, + { + "id": "0x0100C2000E08C000", + "name": "Enchanted in the Moonlight - Miyabi, Kyoga & Samon -" + }, + { + "id": "0x010089600E66A000", + "name": "The Big Journey" + }, + { + "id": "0x01008D800A162000", + "name": "Dead Fun Pack: Penguins and Aliens Strike Again" + }, + { + "id": "0x01008FC00C5BC000", + "name": "Apocalipsis Wormwood Edition" + }, + { + "id": "0x010090F013A32000", + "name": "Dark Grim Mariupolis" + }, + { + "id": "0x010092B0091D0000", + "name": "Team Sonic Racing" + }, + { + "id": "0x0100945012168000", + "name": "Iris.Fall" + }, + { + "id": "0x010095300F778000", + "name": "SAMURAI SHODOWN!2" + }, + { + "id": "0x0100959010466000", + "name": "Hypnospace Outlaw" + }, + { + "id": "0x010096F00FF22000", + "name": "Borderlands: The Handsome Collection" + }, + { + "id": "0x0100973011358000", + "name": "Hang The Kings" + }, + { + "id": "0x01009A400C868000", + "name": "My Arctic Farm 2018" + }, + { + "id": "0x01009CF00A9C4000", + "name": "Word Search by POWGI Demo" + }, + { + "id": "0x01009D20136CC000", + "name": "Super Punch" + }, + { + "id": "0x0100A5A00B34E000", + "name": "Luke & Rebecca" + }, + { + "id": "0x0100A8D003BAE000", + "name": "Qbics Paint" + }, + { + "id": "0x0100A9900CB5C000", + "name": "Access Denied" + }, + { + "id": "0x0100AAA00ACBE000", + "name": "Risk of Rain" + }, + { + "id": "0x0100B110113FA000", + "name": "Swapperoo" + }, + { + "id": "0x0100B1900F0B6000", + "name": "The Legend of Dark Witch" + }, + { + "id": "0x0100BD700F5F0000", + "name": "Tactical Mind 2" + }, + { + "id": "0x01006D900EE58000", + "name": "Our Flick Erasers" + }, + { + "id": "0x01007020044F0000", + "name": "SUPERBEAT: XONiC" + }, + { + "id": "0x010070D009FEC000", + "name": "LEGO® DC Super-Villains" + }, + { + "id": "0x010071B00C904000", + "name": "HoPiKo" + }, + { + "id": "0x010072500D52E000", + "name": "Strike Suit Zero: Director's Cut" + }, + { + "id": "0x010074600CC7A000", + "name": "OBAKEIDORO!" + }, + { + "id": "0x010076800E30E000", + "name": "SEGA AGES Shinobi" + }, + { + "id": "0x010078C00DB40000", + "name": "Buried Stars" + }, + { + "id": "0x010079200E85C000", + "name": "Omega Labyrinth Life" + }, + { + "id": "0x01007CE00C960000", + "name": "Job the Leprechaun" + }, + { + "id": "0x01007D9007792000", + "name": "Shadow Bug" + }, + { + "id": "0x01007E700D17E000", + "name": "Blood Waves" + }, + { + "id": "0x01007EC010B48000", + "name": "Rainswept" + }, + { + "id": "0x01007ED00C032000", + "name": "Sparklite" + }, + { + "id": "0x01007F4004FA4000", + "name": "ACA NEOGEO MUTATION NATION" + }, + { + "id": "0x010080B00D8D4000", + "name": "Quadle" + }, + { + "id": "0x010081100FE08000", + "name": "Bouncy Bob 2" + }, + { + "id": "0x010085300314E000", + "name": "KAMIKO" + }, + { + "id": "0x010088500878C000", + "name": "ACA NEOGEO REAL BOUT FATAL FURY SPECIAL" + }, + { + "id": "0x01008C300B624000", + "name": "Mahjong Solitaire Refresh" + }, + { + "id": "0x0100A7000BD28000", + "name": "Coloring Book" + }, + { + "id": "0x0100A8200B15C000", + "name": "Kentucky Robo Chicken" + }, + { + "id": "0x0100A8200C372000", + "name": "Headsnatchers" + }, + { + "id": "0x0100A8700B30E000", + "name": "Unicornicopia" + }, + { + "id": "0x0100A8F00B3D0000", + "name": "FunBox Party" + }, + { + "id": "0x0100AD9010596000", + "name": "Project Starship" + }, + { + "id": "0x0100B0B011748000", + "name": "Make War" + }, + { + "id": "0x0100B2D00C63A000", + "name": "Super Crate Box" + }, + { + "id": "0x0100B4700BDBA000", + "name": "SOLITAIRE BATTLE ROYAL" + }, + { + "id": "0x0100B56011B90000", + "name": "Regina & Mac" + }, + { + "id": "0x0100B7400A304000", + "name": "ACA NEOGEO TOP PLAYER’S GOLF" + }, + { + "id": "0x0100B8701266A000", + "name": "Micetopia" + }, + { + "id": "0x0100B950129DC000", + "name": "LUNA The Shadow Dust" + }, + { + "id": "0x0100B9C012B66000", + "name": "Helheim Hassle" + }, + { + "id": "0x0100BB000A3AA000", + "name": "Sniper Elite V2 Remastered" + }, + { + "id": "0x0100BBC00CB9A000", + "name": "Mega Mall Story" + }, + { + "id": "0x0100BE400BEC8000", + "name": "Revenant Dogma" + }, + { + "id": "0x0100BEE011402000", + "name": "Pack Master" + }, + { + "id": "0x0100BF000CB3C000", + "name": "Captain StarONE" + }, + { + "id": "0x0100C1F0051B6000", + "name": "Donkey Kong Country™: Tropical Freeze" + }, + { + "id": "0x0100EA501033C000", + "name": "Funny Bunny Adventures" + }, + { + "id": "0x0100EA600B85E000", + "name": "CHRONO CLASH: Fantasy Tactics" + }, + { + "id": "0x0100EB70128E8000", + "name": "Caveman Tales" + }, + { + "id": "0x0100EBE00FDC0000", + "name": "Jump Gunners" + }, + { + "id": "0x0100ED2010292000", + "name": "Gleamlight" + }, + { + "id": "0x0100EE5013198000", + "name": "Nullum" + }, + { + "id": "0x0100EFC010398000", + "name": "Aborigenus" + }, + { + "id": "0x0100F38011CFE000", + "name": "Animal Crossing: New Horizons Island Transfer Tool" + }, + { + "id": "0x0100F7C010AF6000", + "name": "Tin & Kuna" + }, + { + "id": "0x0100FF500E668000", + "name": "STANDBY" + }, + { + "id": "0x0100FF8005EB2000", + "name": "Plague Road" + }, + { + "id": "0x0100720008ED2000", + "name": "STRIKERS1945 Ⅱ for Nintendo Switch" + }, + { + "id": "0x010074E00C872000", + "name": "SoccerDie: Cosmic Cup" + }, + { + "id": "0x010074F00DE4A000", + "name": "Run the Fan" + }, + { + "id": "0x0100751007ADA000", + "name": "Don't Starve: Nintendo Switch Edition" + }, + { + "id": "0x010076D00E4BA000", + "name": "Risk of Rain 2" + }, + { + "id": "0x010078D000F88000", + "name": "DRAGON BALL Xenoverse 2 for Nintendo Switch" + }, + { + "id": "0x01007D1004DBA000", + "name": "ACA NEOGEO SPIN MASTER" + }, + { + "id": "0x010080D002CC6000", + "name": "Johnny Turbo's Arcade: Two Crude Dudes" + }, + { + "id": "0x010082600F1AC000", + "name": "Top Speed: Drag & Fast Racing" + }, + { + "id": "0x0100844004CB6000", + "name": "State of Mind" + }, + { + "id": "0x010085500F6B6000", + "name": "HAUNTED: Halloween '86" + }, + { + "id": "0x010087300B730000", + "name": "Pang Adventures" + }, + { + "id": "0x010088900E330000", + "name": "Vitamin Connection" + }, + { + "id": "0x01008B000A5AE000", + "name": "Spectrum" + }, + { + "id": "0x01008C300648E000", + "name": "Letter Quest Remastered" + }, + { + "id": "0x01008D000877C000", + "name": "ACA NEOGEO SENGOKU 3" + }, + { + "id": "0x01008D400E1BA000", + "name": "Pocket Stables" + }, + { + "id": "0x01008DF01290C000", + "name": "Secrets of Me" + }, + { + "id": "0x0100945011246000", + "name": "Ski Sniper" + }, + { + "id": "0x0100A52010192000", + "name": "Arcade Archives SAINT DRAGON" + }, + { + "id": "0x0100A5B010A66000", + "name": "Absolute Drift" + }, + { + "id": "0x0100A5D012DAC000", + "name": "SENTRY" + }, + { + "id": "0x0100A9300A4AE000", + "name": "Super Sportmatchen" + }, + { + "id": "0x0100A9600EDF8000", + "name": "Neverlast" + }, + { + "id": "0x0100AA400A238000", + "name": "The Stretchers™" + }, + { + "id": "0x0100AC600D898000", + "name": "Rift Keeper" + }, + { + "id": "0x0100ADA00AD2E000", + "name": "Pandemic" + }, + { + "id": "0x0100B28003440000", + "name": "Aces of the Luftwaffe - Squadron" + }, + { + "id": "0x0100B3201140C000", + "name": "Pixel Art Bundle Vol. 1" + }, + { + "id": "0x0100B3500DFB8000", + "name": "Archlion Saga" + }, + { + "id": "0x0100B69012EC6000", + "name": "Nexoria: Dungeon Rogue Heroes" + }, + { + "id": "0x0100B6E01056E000", + "name": "In Other Waters" + }, + { + "id": "0x0100B7200DAC6000", + "name": "Close to the Sun" + }, + { + "id": "0x0100B7B009532000", + "name": "Super Chariot Demo" + }, + { + "id": "0x0100BC300CB48000", + "name": "FINAL FANTASY X/X-2 HD Remaster" + }, + { + "id": "0x0100BCE010E1A000", + "name": "NAMCO MUSEUM® ARCHIVES Vol 2" + }, + { + "id": "0x0100C1400BD6A000", + "name": "Monica e a Guarda dos Coelhos" + }, + { + "id": "0x0100C1700CD94000", + "name": "Zumba® Burn It Up!" + }, + { + "id": "0x0100C2500CAB6000", + "name": "Ary and the Secret of Seasons" + }, + { + "id": "0x010078D00E8F4000", + "name": "Stranded Sails - Explorers of the Cursed Islands" + }, + { + "id": "0x01007A2011284000", + "name": "Hamster Bob" + }, + { + "id": "0x010080B00AF0E000", + "name": "Mentori Puzzle" + }, + { + "id": "0x0100839010DD6000", + "name": "Sniper" + }, + { + "id": "0x010083D00D170000", + "name": "Venture Towns Demo" + }, + { + "id": "0x010088400366E000", + "name": "Monster Jam Crush It!" + }, + { + "id": "0x0100896011282000", + "name": "OMG Police - Car Chase TV Simulator" + }, + { + "id": "0x010089900C9FA000", + "name": "Guess the Character" + }, + { + "id": "0x01008AF00A532000", + "name": "Bomb Chicken" + }, + { + "id": "0x01008B0010160000", + "name": "Nerved" + }, + { + "id": "0x01008B200D748000", + "name": "Tardy" + }, + { + "id": "0x010090B005150000", + "name": "Oceanhorn - Monster of Uncharted Seas Demo" + }, + { + "id": "0x010091000F72C000", + "name": "Save Your Nuts" + }, + { + "id": "0x010093D00AC38000", + "name": "Sky Gamblers: Storm Raiders" + }, + { + "id": "0x010095300212A000", + "name": "Resident Evil Revelations 2" + }, + { + "id": "0x0100974004924000", + "name": "RAYMAN® LEGENDS: DEFINITIVE EDITION DEMO" + }, + { + "id": "0x010098600CF06000", + "name": "Animated Jigsaws Collection" + }, + { + "id": "0x010099F00EF3E000", + "name": "-KLAUS-" + }, + { + "id": "0x01009A800F0C8000", + "name": "Akash: Path of the Five" + }, + { + "id": "0x0100A250093DE000", + "name": "Typoman" + }, + { + "id": "0x0100A5800F6AC000", + "name": "Broken Lines" + }, + { + "id": "0x0100A5A004FB2000", + "name": "ACA NEOGEO THE LAST BLADE" + }, + { + "id": "0x0100A5A01119A000", + "name": "MADORIS R" + }, + { + "id": "0x0100A6A00894C000", + "name": "ZERO GUNNER 2- for Nintendo Switch" + }, + { + "id": "0x0100ABD012EF8000", + "name": "Digerati Presents: Make It Quick Bundle Vol. 1" + }, + { + "id": "0x0100AE0003424000", + "name": "Shantae: Half-Genie Hero" + }, + { + "id": "0x0100AE300CB00000", + "name": "Duke of Defense" + }, + { + "id": "0x0100B1A010014000", + "name": "12 Labours of Hercules II: The Cretan Bull" + }, + { + "id": "0x0100B60010432000", + "name": "Push the Crate 2" + }, + { + "id": "0x0100B7200FC96000", + "name": "Roll'd" + }, + { + "id": "0x0100B770104D6000", + "name": "Milo's Quest" + }, + { + "id": "0x0100B7E01234E000", + "name": "Hotel Sowls" + }, + { + "id": "0x0100B91008780000", + "name": "ACA NEOGEO AERO FIGHTERS 3" + }, + { + "id": "0x0100BAA00AE16000", + "name": "GODS Remastered" + }, + { + "id": "0x0100BB500EE3C000", + "name": "Oddworld: Munch's Oddysee" + }, + { + "id": "0x0100BD100C752000", + "name": "planetarian" + }, + { + "id": "0x0100BFF00D5AE000", + "name": "Dark Quest 2" + }, + { + "id": "0x0100C0D012188000", + "name": "Retro Classix 2-in-1 Pack: Express Raider & Shootout" + }, + { + "id": "0x0100C0F01078E000", + "name": "Dual Brain Vol.3: Shapes" + }, + { + "id": "0x0100B90008E1E000", + "name": "Packet Queen #" + }, + { + "id": "0x0100B9500E886000", + "name": "Newt One" + }, + { + "id": "0x0100BA9012B36000", + "name": "Firework" + }, + { + "id": "0x0100BAB011DEC000", + "name": "Roulette" + }, + { + "id": "0x0100BF00112C0000", + "name": "Catherine: Full Body" + }, + { + "id": "0x0100C13012F8E000", + "name": "The Legend Of The Blue Warrior" + }, + { + "id": "0x0100C1500DBDE000", + "name": "Alien Escape" + }, + { + "id": "0x0100C20012A54000", + "name": "Nevaeh" + }, + { + "id": "0x0100C7300C0EC000", + "name": "RogueCube" + }, + { + "id": "0x0100C9600A88E000", + "name": "PICROSS S2" + }, + { + "id": "0x0100CAB00B4E4000", + "name": "Pub Encounter" + }, + { + "id": "0x0100CD500DDAE000", + "name": "The Bard's Tale ARPG: Remastered and Resnarkled" + }, + { + "id": "0x0100CE100A826000", + "name": "Jurassic Pinball" + }, + { + "id": "0x0100CE300E48C000", + "name": "River City Ransom" + }, + { + "id": "0x0100D010113A8000", + "name": "Void Bastards" + }, + { + "id": "0x0100D0E00E51E000", + "name": "Hotline Miami Collection" + }, + { + "id": "0x0100D1700C732000", + "name": "Monster Slayers" + }, + { + "id": "0x0100D1A00C330000", + "name": "The Mahjong Huntress" + }, + { + "id": "0x0100D1D00ACB8000", + "name": "Three Fourths Home: Extended Edition" + }, + { + "id": "0x0100D37011F42000", + "name": "My Forged Wedding" + }, + { + "id": "0x010079000B56C000", + "name": "UglyDolls: An Imperfect Adventure" + }, + { + "id": "0x0100795011D68000", + "name": "Space Robinson" + }, + { + "id": "0x01007AD00013E000", + "name": "Super Bomberman R" + }, + { + "id": "0x01007CB0128B2000", + "name": "Detective Driver: Miami Files" + }, + { + "id": "0x01007E800AFB6000", + "name": "ACA NEOGEO NINJA COMMANDO" + }, + { + "id": "0x010084300C816000", + "name": "Odallus: The Dark Call" + }, + { + "id": "0x0100849000BDA000", + "name": "I Am Setsuna" + }, + { + "id": "0x0100861012474000", + "name": "Frontline Zed" + }, + { + "id": "0x0100874012158000", + "name": "Infini" + }, + { + "id": "0x010088C0092FE000", + "name": "Carnival Games®" + }, + { + "id": "0x010089600FB72000", + "name": "Trover Saves The Universe" + }, + { + "id": "0x01008BE00E968000", + "name": "Cat Quest II" + }, + { + "id": "0x01008C901266E000", + "name": "ADVERSE" + }, + { + "id": "0x01008C9012F4A000", + "name": "When the Past was Around" + }, + { + "id": "0x010096000B3EA000", + "name": "Octopath Traveler™ - Prologue Demo Version" + }, + { + "id": "0x010097500FBFA000", + "name": "Firefighters - Airport Heroes" + }, + { + "id": "0x01009BC00C6F6000", + "name": "Atelier Totori ~The Adventurer of Arland~ DX" + }, + { + "id": "0x01009D000AF3A000", + "name": "Gelly Break" + }, + { + "id": "0x01009D100F112000", + "name": "Car Mechanic Simulator Pocket Edition" + }, + { + "id": "0x0100B7D0022EE000", + "name": "Cave Story+" + }, + { + "id": "0x0100B8F00DACA000", + "name": "Beyond Enemy Lines: Essentials" + }, + { + "id": "0x0100B9000F2D8000", + "name": "Flight Sim 2019" + }, + { + "id": "0x0100B9500D1B0000", + "name": "Dauntless" + }, + { + "id": "0x0100BB9009FC8000", + "name": "Farm Expert 2018 for Nintendo Switch" + }, + { + "id": "0x0100C00005E38000", + "name": "Dustoff Heli Rescue 2" + }, + { + "id": "0x0100C2E0129A6000", + "name": "The Executioner" + }, + { + "id": "0x0100C4C0132F8000", + "name": "CASE 2: Animatronics Survival" + }, + { + "id": "0x0100C5A01327E000", + "name": "The Legend of Ninja" + }, + { + "id": "0x0100C850130FE000", + "name": "Outbreak: Epidemic" + }, + { + "id": "0x0100CAB006F54000", + "name": "Octodad: Dadliest Catch" + }, + { + "id": "0x0100CBE004E6C000", + "name": "Syberia 3" + }, + { + "id": "0x0100CD6004130000", + "name": "SubaraCity" + }, + { + "id": "0x0100CDB00BC94000", + "name": "A Case of Distrust" + }, + { + "id": "0x0100CDC00C40A000", + "name": "Omensight: Definitive Edition" + }, + { + "id": "0x0100D0D00516A000", + "name": "Aqua Moto Racing Utopia" + }, + { + "id": "0x0100D250083B4000", + "name": "Salt and Sanctuary" + }, + { + "id": "0x0100D2501001A000", + "name": "FoxyLand" + }, + { + "id": "0x0100D7A005DFC000", + "name": "Tennis" + }, + { + "id": "0x0100D7E011272000", + "name": "Carnage: Battle Arena" + }, + { + "id": "0x0100AB700AF14000", + "name": "Detective Case and Clown Bot in: Murder in The Hotel Lisbon" + }, + { + "id": "0x0100AE100DAFA000", + "name": "Steam Tactics" + }, + { + "id": "0x0100AEC012DEE000", + "name": "Pure Pool" + }, + { + "id": "0x0100AF400C4CE000", + "name": "39 Days to Mars" + }, + { + "id": "0x0100B1E00D234000", + "name": "History 2048" + }, + { + "id": "0x0100B3501283E000", + "name": "Deuces Wild - Video Poker" + }, + { + "id": "0x0100B3F00B9F2000", + "name": "Johnny Turbo's Arcade: Fighter's History" + }, + { + "id": "0x0100B61008208000", + "name": "BLAZBLUE CROSS TAG BATTLE" + }, + { + "id": "0x0100BBB00F6B2000", + "name": "Creepy Brawlers" + }, + { + "id": "0x0100BD100FFBE000", + "name": "STAR WARS™ Episode I Racer" + }, + { + "id": "0x0100BFE00865E000", + "name": "Energy Cycle" + }, + { + "id": "0x0100C3300C3F2000", + "name": "Spell Casting: Purrfectly Portable Edition" + }, + { + "id": "0x0100C67011B14000", + "name": "Out of Space: Couch Edition" + }, + { + "id": "0x0100CA9002322000", + "name": "SteamWorld Dig 2" + }, + { + "id": "0x0100CAB00FDC4000", + "name": "Lots of Slots" + }, + { + "id": "0x0100CB00125B6000", + "name": "Table Tennis" + }, + { + "id": "0x0100CB50107BA000", + "name": "Truck Driver" + }, + { + "id": "0x0100D12008EE4000", + "name": "Heart&Slash" + }, + { + "id": "0x0100D1300C1EA000", + "name": "Beholder: Complete Edition" + }, + { + "id": "0x0100A0D004FB0000", + "name": "ACA NEOGEO TOP HUNTER RODDY & CATHY" + }, + { + "id": "0x0100A290131BA000", + "name": "Oniria Crimes" + }, + { + "id": "0x0100A2E00B8EC000", + "name": "Solitaire" + }, + { + "id": "0x0100A5000D590000", + "name": "The Little Acre" + }, + { + "id": "0x0100A6C00CF70000", + "name": "Grab Lab" + }, + { + "id": "0x0100A76002B46000", + "name": "ACA NEOGEO ALPHA MISSION II" + }, + { + "id": "0x0100A7800AFAA000", + "name": "ACA NEOGEO PREHISTORIC ISLE 2" + }, + { + "id": "0x0100A7D00C694000", + "name": "Dreamwalker" + }, + { + "id": "0x0100A840047C2000", + "name": "12 orbits" + }, + { + "id": "0x0100A9000F17E000", + "name": "Lines Infinite" + }, + { + "id": "0x0100AA2006510000", + "name": "Revenant Saga" + }, + { + "id": "0x0100AAA00D404000", + "name": "Magic Scroll Tactics" + }, + { + "id": "0x0100AB700FE02000", + "name": "Profane" + }, + { + "id": "0x0100AF300D2E8000", + "name": "Arcade Archives TIME PILOT" + }, + { + "id": "0x0100B040128E6000", + "name": "Candy Raid: The Factory" + }, + { + "id": "0x0100B1600E9AE000", + "name": "CARRION" + }, + { + "id": "0x0100B9C012706000", + "name": "Jump Rope Challenge" + }, + { + "id": "0x0100BDE008218000", + "name": "Hotshot Racing" + }, + { + "id": "0x0100C0F00CA9C000", + "name": "IHUGU" + }, + { + "id": "0x0100C1300DE74000", + "name": "Cyber Protocol" + }, + { + "id": "0x0100D61010526000", + "name": "Pulstario" + }, + { + "id": "0x0100DBA0109C2000", + "name": "UBERMOSH:OMEGA" + }, + { + "id": "0x0100DE70085E8000", + "name": "Outlast 2" + }, + { + "id": "0x0100DED012642000", + "name": "Switchy Road DeluX" + }, + { + "id": "0x0100E24004510000", + "name": "Cabela's: The Hunt - Championship Edition" + }, + { + "id": "0x0100E5501206E000", + "name": "Unlock The King 3" + }, + { + "id": "0x0100E5A00DF60000", + "name": "Let's Sing Country" + }, + { + "id": "0x0100E6900F2A8000", + "name": "Dual Brain Vol.1: Calculation" + }, + { + "id": "0x0100E9000C42C000", + "name": "Tick Tock: A Tale for Two" + }, + { + "id": "0x0100EAE00BE4A000", + "name": "Kitty Love -Way to look for love-" + }, + { + "id": "0x0100ED600A87A000", + "name": "Minit" + }, + { + "id": "0x0100F0000869C000", + "name": "Saturday Morning RPG" + }, + { + "id": "0x0100F1100E606000", + "name": "Q-YO Blaster" + }, + { + "id": "0x0100F3000EBA8000", + "name": "Seeders Puzzle Reboot" + }, + { + "id": "0x0100F4F006EB0000", + "name": "Heroes of the Monkey Tavern Demo" + }, + { + "id": "0x0100F6000EAA8000", + "name": "Must Dash Amigos" + }, + { + "id": "0x0100F9400982A000", + "name": "Arcade Archives MAGMAX" + }, + { + "id": "0x0100F9A008AD6000", + "name": "Word Search by POWGI" + }, + { + "id": "0x0100FE000EC24000", + "name": "Asdivine Menace" + }, + { + "id": "0x0100B2400C67E000", + "name": "Mars: Chaos Menace" + }, + { + "id": "0x0100B2B00C7D4000", + "name": "Air Conflicts: Secret Wars" + }, + { + "id": "0x0100B5B0113CE000", + "name": "Troubleshooter" + }, + { + "id": "0x0100B7C01169C000", + "name": "The Coma 2: Vicious Sisters" + }, + { + "id": "0x0100B8C01252A000", + "name": "Roommates" + }, + { + "id": "0x0100B9801210A000", + "name": "Colt Canyon" + }, + { + "id": "0x0100BAA00D60A000", + "name": "Rolling Sky" + }, + { + "id": "0x0100BF1003B9A000", + "name": "Physical Contact: 2048" + }, + { + "id": "0x0100C1700A9F0000", + "name": "Streets of Red - Devil's Dare Deluxe" + }, + { + "id": "0x0100C2C00D74E000", + "name": "West of Dead" + }, + { + "id": "0x0100C320083BE000", + "name": "Splitter Critters" + }, + { + "id": "0x0100C460040EA000", + "name": "Hunting Simulator" + }, + { + "id": "0x0100C4D0093EA000", + "name": "Battle Princess Madelyn" + }, + { + "id": "0x0100C8E0083C4000", + "name": "Japanese Mah-jongg" + }, + { + "id": "0x0100D1B006744000", + "name": "Crash Bandicoot™ N. Sane Trilogy" + }, + { + "id": "0x0100D4600E9B2000", + "name": "Hyperdrive Massacre" + }, + { + "id": "0x0100D47012330000", + "name": "KING OF FIGHTERS R-2" + }, + { + "id": "0x0100D480111C6000", + "name": "Crypto by POWGI" + }, + { + "id": "0x0100D55011D60000", + "name": "Hardcore Maze Cube" + }, + { + "id": "0x0100D7800C4DC000", + "name": "Discmaster" + }, + { + "id": "0x010085500B29A000", + "name": "Yet Another Zombie Defense HD" + }, + { + "id": "0x010085E00C886000", + "name": "The Original Mobile Games" + }, + { + "id": "0x010086500AC4A000", + "name": "Lode Runner Legacy Demo Version" + }, + { + "id": "0x010087300445A000", + "name": "Bombslinger" + }, + { + "id": "0x01008940086E0000", + "name": "The Infectious Madness of Doctor Dekker" + }, + { + "id": "0x01008AF0080B8000", + "name": "Embers of Mirrim Demo" + }, + { + "id": "0x01008BB0113D6000", + "name": "Destrobots" + }, + { + "id": "0x01008ED008776000", + "name": "ACA NEOGEO MAGICAL DROP III" + }, + { + "id": "0x010092B010448000", + "name": "Piffle: A Cat Puzzle Adventure" + }, + { + "id": "0x010093600A60C000", + "name": "Agatha Knife" + }, + { + "id": "0x010093E00ACB0000", + "name": "Kid Tripp Demo" + }, + { + "id": "0x010095300B6A4000", + "name": "South Park™: The Stick of Truth™" + }, + { + "id": "0x01009580113A4000", + "name": "Satazius NEXT" + }, + { + "id": "0x010096D010BFE000", + "name": "Travel Mosaics 4: Adventures In Rio" + }, + { + "id": "0x010097800EA20000", + "name": "Monster Energy Supercross - The Official Videogame 3" + }, + { + "id": "0x010098400E39E000", + "name": "Vektor Wars" + }, + { + "id": "0x01009C300DBAE000", + "name": "Minefield" + }, + { + "id": "0x01009DB00D6E0000", + "name": "Mountain Rescue Simulator" + }, + { + "id": "0x0100A5600FAC0000", + "name": "Construction Simulator 3 - Console Edition" + }, + { + "id": "0x0100A8E0090B0000", + "name": "Energy Invasion" + }, + { + "id": "0x0100A8E00DB92000", + "name": "Gyro Boss DX" + }, + { + "id": "0x0100B2C00E4DA000", + "name": "Served!" + }, + { + "id": "0x0100B3A0137EA000", + "name": "Life of Fly" + }, + { + "id": "0x0100B410040F2000", + "name": "Dead Synchronicity: Tomorrow Comes Today" + }, + { + "id": "0x0100B4D00C76E000", + "name": "JUMANJI: The Video Game" + }, + { + "id": "0x0100B59011A1C000", + "name": "Drag Sim 2020" + }, + { + "id": "0x0100B7500F756000", + "name": "Minefield" + }, + { + "id": "0x0100B77012266000", + "name": "COLLECTION of SaGa FINAL FANTASY LEGEND" + }, + { + "id": "0x0100B8B012ECA000", + "name": "S.N.I.P.E.R. - Hunter Scope" + }, + { + "id": "0x0100BA0003EEA000", + "name": "PICROSS S" + }, + { + "id": "0x0100BA200C378000", + "name": "Way of the Passive Fist" + }, + { + "id": "0x0100BD700EBC0000", + "name": "The Drama Queen Murder" + }, + { + "id": "0x0100C11010298000", + "name": "Georifters" + }, + { + "id": "0x0100C69010522000", + "name": "Guard Duty" + }, + { + "id": "0x0100CCF00F5BC000", + "name": "Outpost Delta" + }, + { + "id": "0x0100CD500E706000", + "name": "Ziggurat" + }, + { + "id": "0x0100D1E00E972000", + "name": "Warface" + }, + { + "id": "0x0100D2C013288000", + "name": "Lofi Ping Pong" + }, + { + "id": "0x0100D6D00EC2C000", + "name": "Sweet Witches" + }, + { + "id": "0x0100BE300F6AA000", + "name": "Talisman: Digital Edition" + }, + { + "id": "0x0100BEA0096CE000", + "name": "EAT BEAT DEADSPIKE-san Demo" + }, + { + "id": "0x0100BF600D83A000", + "name": "DAEMON X MACHINA™: Prototype Missions" + }, + { + "id": "0x0100C8000F146000", + "name": "Liberated" + }, + { + "id": "0x0100CB900B498000", + "name": "Eternum Ex" + }, + { + "id": "0x0100CC1010464000", + "name": "Nowhere Prophet" + }, + { + "id": "0x0100CC8011000000", + "name": "Uncharted Tides: Port Royal" + }, + { + "id": "0x0100CF600F366000", + "name": "Lethis - Path of Progress" + }, + { + "id": "0x0100CFA00CC74000", + "name": "Blades of Time" + }, + { + "id": "0x0100D07002CD6000", + "name": "Johnny Turbo's Arcade: Nitro Ball" + }, + { + "id": "0x0100D1100D1A8000", + "name": "Block-a-Pix Deluxe" + }, + { + "id": "0x0100D1900EC80000", + "name": "Atelier Ryza: Ever Darkness & the Secret Hideout" + }, + { + "id": "0x0100D2400AFB0000", + "name": "ACA NEOGEO CROSSED SWORDS" + }, + { + "id": "0x0100D24012A04000", + "name": "Time Tenshi" + }, + { + "id": "0x0100D4900E82C000", + "name": "Metro 2033 Redux" + }, + { + "id": "0x0100D4D00AC62000", + "name": "SEGA AGES Out Run" + }, + { + "id": "0x0100DDC00C7A6000", + "name": "Arcade Archives DONKEY KONG JR." + }, + { + "id": "0x0100DE900CB84000", + "name": "99Moves" + }, + { + "id": "0x0100E4200D84E000", + "name": "Citizens of Space" + }, + { + "id": "0x01006EE013100000", + "name": "Outbreak The Nightmare Chronicles" + }, + { + "id": "0x0100708012ECC000", + "name": "Salad Bar Tycoon" + }, + { + "id": "0x010079B00B3F4000", + "name": "Achtung! Cthulhu Tactics" + }, + { + "id": "0x01007AC00E012000", + "name": "HexaGravity" + }, + { + "id": "0x01007CD00BCE2000", + "name": "Forever Forest" + }, + { + "id": "0x01007CF00D5BA000", + "name": "Devil May Cry 2" + }, + { + "id": "0x01007DD011C4A000", + "name": "A Summer with the Shiba Inu" + }, + { + "id": "0x01007E100456C000", + "name": "Guacamelee! 2" + }, + { + "id": "0x010086700EF16000", + "name": "ZikSquare" + }, + { + "id": "0x010088600C66E000", + "name": "Atelier Rorona ~The Alchemist of Arland~ DX" + }, + { + "id": "0x0100894011F62000", + "name": "Kwaidan ~Azuma manor story~" + }, + { + "id": "0x01008A500ED8E000", + "name": "Wordsweeper by POWGI" + }, + { + "id": "0x01008CD00C5FC000", + "name": "She and the Light Bearer" + }, + { + "id": "0x01008DD013200000", + "name": "Ori and the Will of the Wisps" + }, + { + "id": "0x01008ED00B916000", + "name": "Aqua TV" + }, + { + "id": "0x010091700D826000", + "name": "Raiders of the North Sea" + }, + { + "id": "0x010091E01330C000", + "name": "Heroes of Loot" + }, + { + "id": "0x010092A00D43C000", + "name": "The Talos Principle: Deluxe Edition" + }, + { + "id": "0x010094500C216000", + "name": "Mercenaries Wings: The False Phoenix" + }, + { + "id": "0x010095A004040000", + "name": "Flip Wars" + }, + { + "id": "0x01009630106A6000", + "name": "Gun Crazy" + }, + { + "id": "0x010097100EDD6000", + "name": "Little Nightmares II" + }, + { + "id": "0x010098000D646000", + "name": "Goonya Fighter" + }, + { + "id": "0x010099900CAB2000", + "name": "TT Isle of Man" + }, + { + "id": "0x01009A500D8CC000", + "name": "Croc's World Run Demo" + }, + { + "id": "0x01009E1011EC4000", + "name": "A HERO AND A GARDEN" + }, + { + "id": "0x01009F20086A0000", + "name": "Ikaruga" + }, + { + "id": "0x0100A0600C610000", + "name": "SEGA AGES Columns II: A Voyage Through Time" + }, + { + "id": "0x0100A2F006FBE000", + "name": "Cat Quest" + }, + { + "id": "0x0100A5D01174C000", + "name": "/Connection Haunted " + }, + { + "id": "0x0100A6E01201C000", + "name": "Supraland" + }, + { + "id": "0x0100AD600C5EA000", + "name": "Munchkin: Quacked Quest" + }, + { + "id": "0x0100B1400E8FE000", + "name": "Sakuna: Of Rice and Ruin" + }, + { + "id": "0x0100B490113C8000", + "name": "Arcade Archives VS. WRECKING CREW" + }, + { + "id": "0x0100B55012216000", + "name": "Toolboy" + }, + { + "id": "0x0100B97002B44000", + "name": "ACA NEOGEO THE KING OF FIGHTERS 2000" + }, + { + "id": "0x0100BD400DC52000", + "name": "Spiritfarer" + }, + { + "id": "0x0100C0F0020E8000", + "name": "Snake Pass" + }, + { + "id": "0x0100C66007E96000", + "name": "Crayola Scoot" + }, + { + "id": "0x010099B00E898000", + "name": "Battle Supremacy - Evolution" + }, + { + "id": "0x01009B300D76A000", + "name": "The Tiny Bang Story" + }, + { + "id": "0x01009B900401E000", + "name": "Overcooked Special Edition" + }, + { + "id": "0x01009BD00E33E000", + "name": "DOBUTSU SHOGI WORLD" + }, + { + "id": "0x01009D4011BFC000", + "name": "Many Faces" + }, + { + "id": "0x01009FF00A160000", + "name": "Toy Stunt Bike: Tiptop's Trials" + }, + { + "id": "0x0100A040069DE000", + "name": "Combat Core" + }, + { + "id": "0x0100A0501185A000", + "name": "WildTrax Racing" + }, + { + "id": "0x0100A1A00C5D8000", + "name": "Picture Painting Puzzle 1000!" + }, + { + "id": "0x0100A1A011944000", + "name": "Smoots World Cup Tennis" + }, + { + "id": "0x0100A3B011EDE000", + "name": "Battle Hunters" + }, + { + "id": "0x0100A6800DE70000", + "name": "Knight Squad" + }, + { + "id": "0x0100A95012668000", + "name": "Nicole" + }, + { + "id": "0x0100A9800E9B4000", + "name": "Disgaea 4 Complete+" + }, + { + "id": "0x0100B05012FB2000", + "name": "MindSeize" + }, + { + "id": "0x0100B2300B932000", + "name": "Storm In A Teacup" + }, + { + "id": "0x0100B2900DF20000", + "name": "Puzzle Quest: The Legend Returns" + }, + { + "id": "0x0100B2B00E7AA000", + "name": "Dusk Diver" + }, + { + "id": "0x0100B5000E05C000", + "name": "Soccer Pinball" + }, + { + "id": "0x0100B8800F858000", + "name": "Sinless" + }, + { + "id": "0x010084000FA78000", + "name": "Smash Rush" + }, + { + "id": "0x010087000428E000", + "name": "Plantera Deluxe" + }, + { + "id": "0x01008AB00FBA6000", + "name": "The Casebook of Arkady Smith" + }, + { + "id": "0x01008CA00CF34000", + "name": "Skellboy" + }, + { + "id": "0x01008E500AFF6000", + "name": "Boreal Blade" + }, + { + "id": "0x01008F3010752000", + "name": "Arcade Archives XX MISSION" + }, + { + "id": "0x0100971012B4E000", + "name": "The Secret Order: Return to the Buried Kingdom" + }, + { + "id": "0x0100976008FBE000", + "name": "Millie" + }, + { + "id": "0x010097F0099B4000", + "name": "Football Manager Touch 2018" + }, + { + "id": "0x010097F010FE6000", + "name": "Our Two Bedroom Story" + }, + { + "id": "0x01009CD00C786000", + "name": "X-Morph: Defense Demo" + }, + { + "id": "0x01009DB00DE12000", + "name": "Croc's World 2" + }, + { + "id": "0x01009E100BDD6000", + "name": "LASTFIGHT" + }, + { + "id": "0x0100A2101107C000", + "name": "Indie Puzzle Bundle Vol 1" + }, + { + "id": "0x0100A42011B28000", + "name": "Big Dipper" + }, + { + "id": "0x0100A48008AE8000", + "name": "Bleed 2" + }, + { + "id": "0x0100A6500B176000", + "name": "Calculation Castle : Greco's Ghostly Challenge \"Subtraction \"" + }, + { + "id": "0x0100A6B00D4EC000", + "name": "Furwind" + }, + { + "id": "0x0100A6F00A0FE000", + "name": "THE Number Puzzle" + }, + { + "id": "0x0100A8700BC2A000", + "name": "This War of Mine: Complete Edition" + }, + { + "id": "0x0100D5B00D6DA000", + "name": "Type:Rider" + }, + { + "id": "0x0100D7E011C64000", + "name": "Strawberry Vinegar" + }, + { + "id": "0x0100D84011926000", + "name": "Knight Swap 2" + }, + { + "id": "0x0100DDE00E81A000", + "name": "Deadlings" + }, + { + "id": "0x0100E1500B5EE000", + "name": "Morphite Demo" + }, + { + "id": "0x0100E5600D7B2000", + "name": "WARHAMMER 40,000: SPACE WOLF" + }, + { + "id": "0x0100E67008D84000", + "name": "Ultra Space Battle Brawl" + }, + { + "id": "0x0100E8200DAF4000", + "name": "Vigor" + }, + { + "id": "0x0100E9D00D268000", + "name": "Verlet Swing" + }, + { + "id": "0x0100EB2001DCC000", + "name": "ACA NEOGEO THE KING OF FIGHTERS '94" + }, + { + "id": "0x0100EB901040A000", + "name": "Shantae and the Seven Sirens" + }, + { + "id": "0x0100EBE00F22E000", + "name": "Deadly Premonition Origins" + }, + { + "id": "0x0100EC20101E4000", + "name": "Gunma's Ambition -You and me are Gunma-" + }, + { + "id": "0x0100ED100BA3A000", + "name": "Mario Kart Live: Home Circuit™" + }, + { + "id": "0x0100ED500E858000", + "name": "Swaps and Traps" + }, + { + "id": "0x0100EFD00A4FA000", + "name": "Shantae and the Pirate's Curse" + }, + { + "id": "0x0100F10012002000", + "name": "Singled Out" + }, + { + "id": "0x0100F1800DD4E000", + "name": "Devious Dungeon 2" + }, + { + "id": "0x0100F38011FBC000", + "name": "Working Zombies" + }, + { + "id": "0x0100F55004AB8000", + "name": "Uurnog Uurnlimited" + }, + { + "id": "0x010061D00DB74000", + "name": "Ori and the Blind Forest: Definitive Edition" + }, + { + "id": "0x010061E00E05E000", + "name": "Ciel Fledge: A Daughter Raising Simulator" + }, + { + "id": "0x010063200C588000", + "name": "Ghost Blade HD" + }, + { + "id": "0x010066900BDE6000", + "name": "Hexa Maze" + }, + { + "id": "0x010069300C90A000", + "name": "Peace, Death! Complete Edition" + }, + { + "id": "0x01006B1011B9E000", + "name": "80's OVERDRIVE" + }, + { + "id": "0x01006CC01182C000", + "name": "Blair Witch" + }, + { + "id": "0x01006D300AA58000", + "name": "I Hate Running Backwards" + }, + { + "id": "0x01006DC010326000", + "name": "BRAVELY DEFAULT™ II" + }, + { + "id": "0x01006F0004FB4000", + "name": "ACA NEOGEO THE KING OF FIGHTERS '96" + }, + { + "id": "0x0100702005E18000", + "name": "Mom Hid My Game!" + }, + { + "id": "0x010071400F204000", + "name": "No More Heroes 2: Desperate Struggle" + }, + { + "id": "0x010074800741A000", + "name": "TINY METAL" + }, + { + "id": "0x0100763010D5A000", + "name": "Rigid Force Redux" + }, + { + "id": "0x010079600BF22000", + "name": "KUUKIYOMI: Consider It!" + }, + { + "id": "0x01007AB012102000", + "name": "Arrog" + }, + { + "id": "0x01007DD00ABB4000", + "name": "Anodyne" + }, + { + "id": "0x01007FB00FC5E000", + "name": "Dark Veer" + }, + { + "id": "0x010080701194E000", + "name": "Flying Soldiers" + }, + { + "id": "0x010088801230E000", + "name": "They Breathe" + }, + { + "id": "0x0100C250115DC000", + "name": "PICROSS S4" + }, + { + "id": "0x0100C2E00B494000", + "name": "Moonfall Ultimate" + }, + { + "id": "0x0100C31011C24000", + "name": "Postal REDUX" + }, + { + "id": "0x0100C3501094E000", + "name": "Demon's Rise - War for the Deep" + }, + { + "id": "0x0100C510049E0000", + "name": "Penny-Punching Princess" + }, + { + "id": "0x0100C5B00FADE000", + "name": "Invisible Fist" + }, + { + "id": "0x0100C6800D770000", + "name": "Super Toy Cars 2" + }, + { + "id": "0x0100CAF001DBE000", + "name": "ACA NEOGEO FATAL FURY 2" + }, + { + "id": "0x0100D0200E97A000", + "name": "Rogue Company" + }, + { + "id": "0x0100D5900B4CA000", + "name": "Boot Hill Bounties" + }, + { + "id": "0x0100D6D00A490000", + "name": "Pool Panic" + }, + { + "id": "0x0100D800040AC000", + "name": "Rocket Fist" + }, + { + "id": "0x0100D8700B712000", + "name": "Modern Combat Blackout" + }, + { + "id": "0x0100D98005E8C000", + "name": "Die for Valhalla!" + }, + { + "id": "0x0100DBB010EB8000", + "name": "Otherworldly" + }, + { + "id": "0x0100DC300AC78000", + "name": "The Messenger" + }, + { + "id": "0x0100DD6012644000", + "name": "Taiko no Tatsujin: Rhythmic Adventure Pack" + }, + { + "id": "0x0100DD700F1F6000", + "name": "Amazing Brick Breaker" + }, + { + "id": "0x0100E21012232000", + "name": "Crowdy Farm Puzzle" + }, + { + "id": "0x0100E3400F242000", + "name": "Lost Ember" + }, + { + "id": "0x0100A2500EB92000", + "name": "Urban Trial Tricky" + }, + { + "id": "0x0100A7701298C000", + "name": "Explosive Dinosaurs" + }, + { + "id": "0x0100ABE0121F8000", + "name": "Kingdom Rush Origins" + }, + { + "id": "0x0100AC800D022000", + "name": "THE LAST REMNANT Remastered" + }, + { + "id": "0x0100AE300F5B4000", + "name": "Scheming Through The Zombie Apocalypse: The Beginning" + }, + { + "id": "0x0100AFA011068000", + "name": "Voxel Pirates" + }, + { + "id": "0x0100B0C00EBB2000", + "name": "Sea King Hunter" + }, + { + "id": "0x0100B1300783E000", + "name": "King Oddball" + }, + { + "id": "0x0100B2F008BD8000", + "name": "Skee-Ball" + }, + { + "id": "0x0100B3900F02A000", + "name": "Sisters Royale: Five Sisters Under Fire" + }, + { + "id": "0x0100B4800AFBA000", + "name": "ACA NEOGEO AGGRESSORS OF DARK KOMBAT" + }, + { + "id": "0x0100B6C00AF6E000", + "name": "Lost in Harmony" + }, + { + "id": "0x0100B7F00B4E6000", + "name": "Destiny's Princess: A War Story, A Love Story" + }, + { + "id": "0x0100B9400FA38000", + "name": "ATOM RPG" + }, + { + "id": "0x0100BAB00A116000", + "name": "The Low Road" + }, + { + "id": "0x0100BC700C7AE000", + "name": "ACA NEOGEO PUZZLE BOBBLE 2" + }, + { + "id": "0x0100BD800DFA6000", + "name": "Greedroid" + }, + { + "id": "0x0100BDB01150E000", + "name": "Project Warlock" + }, + { + "id": "0x0100BE600D07A000", + "name": "Grand Prix Story" + }, + { + "id": "0x0100B6800B5C8000", + "name": "Graveyard Keeper" + }, + { + "id": "0x0100B8E00359E000", + "name": "Party Golf" + }, + { + "id": "0x0100BD300F0EC000", + "name": "Ritual: Sorcerer Angel" + }, + { + "id": "0x0100BD500BA94000", + "name": "Sphinx and the Cursed Mummy" + }, + { + "id": "0x0100C01012654000", + "name": "Supermarket Shriek" + }, + { + "id": "0x0100C0C00DD0E000", + "name": "Frane: Dragons' Odyssey" + }, + { + "id": "0x0100C1500B82E000", + "name": "The World Ends with You®: Final Remix" + }, + { + "id": "0x0100C360070F6000", + "name": "Dragon Quest Builders™ Demo" + }, + { + "id": "0x0100C3E00D68E000", + "name": "Deep Sky Derelicts: Definitive Edition" + }, + { + "id": "0x0100C4801223C000", + "name": "Ultra Foodmess" + }, + { + "id": "0x0100C50007070000", + "name": "Ginger: Beyond the Crystal" + }, + { + "id": "0x0100C5B0113A0000", + "name": "Armed 7 DX" + }, + { + "id": "0x0100C73013506000", + "name": "Cape's escape game" + }, + { + "id": "0x0100C7800CA06000", + "name": "Widget Satchel" + }, + { + "id": "0x0100CDD013178000", + "name": "Arcade Archives ARABIAN" + }, + { + "id": "0x0100CDE0136E6000", + "name": "Defentron" + }, + { + "id": "0x0100CF3008798000", + "name": "ACA NEOGEO REAL BOUT FATAL FURY 2" + }, + { + "id": "0x0100D0400D27A000", + "name": "Romancing SaGa 3" + }, + { + "id": "0x0100D06003056000", + "name": "Piczle Lines DX" + }, + { + "id": "0x0100D8800B87C000", + "name": "Cities: Skylines - Nintendo Switch™ Edition" + }, + { + "id": "0x0100C1800D7AE000", + "name": "Pokémon: Let’s Go, Pikachu! and Pokémon: Let’s Go, Eevee! Demo Version" + }, + { + "id": "0x0100C2700C252000", + "name": "Blazing Chrome" + }, + { + "id": "0x0100C7600F654000", + "name": "Juicy Realm" + }, + { + "id": "0x0100CB500CE76000", + "name": "Fishing: Barents Sea Complete Edition" + }, + { + "id": "0x0100D2700DE7C000", + "name": "Rivals of Aether" + }, + { + "id": "0x0100D36011AD4000", + "name": "Love Letter from Thief X" + }, + { + "id": "0x0100D74010F44000", + "name": "WordHerd" + }, + { + "id": "0x0100D940022F6000", + "name": "Tiny Barbarian DX" + }, + { + "id": "0x0100DA9013AB4000", + "name": "Smart Moves" + }, + { + "id": "0x0100DC500B4B0000", + "name": "Beat Rush" + }, + { + "id": "0x0100DEC00F7EC000", + "name": "Pizza Bar Tycoon" + }, + { + "id": "0x0100DF200B24C000", + "name": "Assault Android Cactus+" + }, + { + "id": "0x0100E29010A4A000", + "name": "Wanba Warriors" + }, + { + "id": "0x0100E4C00DE30000", + "name": "Ash of Gods: Redemption" + }, + { + "id": "0x0100E5E010EA6000", + "name": "Car Trader Simulator" + }, + { + "id": "0x0100E95006B30000", + "name": "The Men of Yoshiwara: Kikuya" + }, + { + "id": "0x0100E98006F22000", + "name": "Bad North" + }, + { + "id": "0x0100EE200B764000", + "name": "Zeus Quests Remastered" + }, + { + "id": "0x0100EE80098E6000", + "name": "Toki Tori" + }, + { + "id": "0x0100F200049C8000", + "name": "InnerSpace" + }, + { + "id": "0x0100C4300EEEE000", + "name": "Freecell Solitaire Deluxe" + }, + { + "id": "0x0100C9301248E000", + "name": "Balloon Pop for Toddlers & Kids - Learn Numbers, Letters, Colors & Animals" + }, + { + "id": "0x0100CA000C682000", + "name": "Shift Quantum Demo" + }, + { + "id": "0x0100CCB00CBA8000", + "name": "Gabbuchi" + }, + { + "id": "0x0100CE600B7B4000", + "name": "Passpartout: The Starving Artist" + }, + { + "id": "0x0100CFE003A64000", + "name": "ZOMBIE GOLD RUSH" + }, + { + "id": "0x0100D1800D902000", + "name": "SENRAN KAGURA Peach Ball" + }, + { + "id": "0x0100D1B00B6FA000", + "name": "Spirit Hunter: Death Mark" + }, + { + "id": "0x0100D4300A4CA000", + "name": "Infernium" + }, + { + "id": "0x0100D4400D994000", + "name": "Queen's Quest 3: The End of Dawn" + }, + { + "id": "0x0100D51006AAC000", + "name": "Knight Terrors" + }, + { + "id": "0x0100D67006F14000", + "name": "Skies of Fury DX" + }, + { + "id": "0x0100D8500A692000", + "name": "Night Trap - 25th Anniversary Edition" + }, + { + "id": "0x0100DCE00B756000", + "name": "Earthworms" + }, + { + "id": "0x0100DF300DE6A000", + "name": "Selma and the Wisp" + }, + { + "id": "0x0100DFC003398000", + "name": "ACA NEOGEO BLAZING STAR" + }, + { + "id": "0x0100E1800EFCE000", + "name": "moon" + }, + { + "id": "0x0100E1B00A46C000", + "name": "Rage in Peace" + }, + { + "id": "0x0100E6300AA3A000", + "name": "Batman: The Enemy Within" + }, + { + "id": "0x0100E9E00DBF4000", + "name": "GENSOU Skydrift" + }, + { + "id": "0x0100C2000F468000", + "name": "Wintermoor Tactics Club" + }, + { + "id": "0x0100C5F00F446000", + "name": "Kawaii Deathu Desu" + }, + { + "id": "0x0100C8300FA30000", + "name": "Kitty Maestro" + }, + { + "id": "0x0100C850134A0000", + "name": "Vera Blanc: Full Moon" + }, + { + "id": "0x0100C9200A9C2000", + "name": "Carcassonne" + }, + { + "id": "0x0100CAB012FCC000", + "name": "Dungeon Limbus" + }, + { + "id": "0x0100CDC00D8D6000", + "name": "Turok 2: Seeds of Evil" + }, + { + "id": "0x0100D0500AD30000", + "name": "Harvest Life" + }, + { + "id": "0x0100D1B00A5A2000", + "name": "Iro Hero" + }, + { + "id": "0x0100D2800EB40000", + "name": "Battle Planet - Judgement Day" + }, + { + "id": "0x0100D4D00F8F2000", + "name": "Half Past Fate" + }, + { + "id": "0x0100D7B011654000", + "name": "Skully" + }, + { + "id": "0x0100D9F013102000", + "name": "Outbreak Lost Hope" + }, + { + "id": "0x0100DBE00C76C000", + "name": "The Last Door - Complete Edition" + }, + { + "id": "0x0100DFF00C5E6000", + "name": "Noir Chronicles: City of Crime" + }, + { + "id": "0x0100E0C011D52000", + "name": "Lunch A Palooza" + }, + { + "id": "0x0100E5B011F48000", + "name": "PLOID SAGA" + }, + { + "id": "0x0100E7E00C4CA000", + "name": "Bombing Busters" + }, + { + "id": "0x0100EBA004726000", + "name": "Huntdown" + }, + { + "id": "0x0100EC400E1C0000", + "name": "Mah-jongg Puzzle Pai-Sen" + }, + { + "id": "0x01008E300D136000", + "name": "Cafeteria Nipponica" + }, + { + "id": "0x01008E700F952000", + "name": "Skelittle: A Giant Party!" + }, + { + "id": "0x01008EE00B22C000", + "name": "Rento Fortune" + }, + { + "id": "0x010090400D366000", + "name": "Torchlight II" + }, + { + "id": "0x010092901203A000", + "name": "Escape From Tethys" + }, + { + "id": "0x010093F00E818000", + "name": "Tools Up!" + }, + { + "id": "0x010096B00A08E000", + "name": "Octocopter: Double or Squids" + }, + { + "id": "0x01009AA000FAA000", + "name": "Sonic Mania" + }, + { + "id": "0x01009BF00E7D2000", + "name": "SYNTHETIK: Ultimate" + }, + { + "id": "0x01009CD00E3AA000", + "name": "Ben 10: Power Trip!" + }, + { + "id": "0x01009FF00CB1A000", + "name": "Super Star Path" + }, + { + "id": "0x0100A10010C54000", + "name": "Arcade Archives VS. MAH-JONG" + }, + { + "id": "0x0100A21007FFA000", + "name": "SteamWorld Heist: Ultimate Edition" + }, + { + "id": "0x0100A5D0100DE000", + "name": "Frosty Jump" + }, + { + "id": "0x0100A6E00D3F8000", + "name": "Arcade Archives POOYAN" + }, + { + "id": "0x0100A8000E228000", + "name": "Damascus Gear Operation Osaka" + }, + { + "id": "0x0100A8400471A000", + "name": "MUJO" + }, + { + "id": "0x0100A8D010BFA000", + "name": "Travel Mosaics 2: Roman Holiday" + }, + { + "id": "0x0100A9500C606000", + "name": "Ghoulboy" + }, + { + "id": "0x0100AAD011592000", + "name": "The Last Dead End" + }, + { + "id": "0x0100E6100CCE6000", + "name": "FREECELL BATTLE KING" + }, + { + "id": "0x0100EA400BF44000", + "name": "SkyScrappers" + }, + { + "id": "0x0100EC2011B9C000", + "name": "Star Horizon" + }, + { + "id": "0x0100EC400D712000", + "name": "Croc's World Run" + }, + { + "id": "0x0100EEE0129F2000", + "name": "Street Racer Underground" + }, + { + "id": "0x0100F1000CF16000", + "name": "Graceful Explosion Machine Demo" + }, + { + "id": "0x0100F2600D710000", + "name": "CONTRA: ROGUE CORPS" + }, + { + "id": "0x0100F3A00FB78000", + "name": "Mononoke Slashdown" + }, + { + "id": "0x0100F79012600000", + "name": "Neverending Nightmares" + }, + { + "id": "0x0100F8900ADC8000", + "name": "Beekyr Reloaded" + }, + { + "id": "0x0100FDE012B22000", + "name": "Tengam" + }, + { + "id": "0x01009E700EEA6000", + "name": "Collide-a-Ball 2" + }, + { + "id": "0x0100A050038F2000", + "name": "ACA NEOGEO MAGICAL DROP II" + }, + { + "id": "0x0100A35012908000", + "name": "THE LAST BLADE: Beyond the Destiny" + }, + { + "id": "0x0100A5B00D3D2000", + "name": "Braveland Trilogy" + }, + { + "id": "0x0100A78011974000", + "name": "Sir Tincan - Adventures in the Castle" + }, + { + "id": "0x0100A8200D0EE000", + "name": "Retimed Demo" + }, + { + "id": "0x0100A8600D566000", + "name": "Zombie Panic in Wonderland DX" + }, + { + "id": "0x0100A8900AF04000", + "name": "SEGA AGES Alex Kidd in Miracle World" + }, + { + "id": "0x0100AA3009738000", + "name": "Feudal Alloy" + }, + { + "id": "0x0100AA8012EF2000", + "name": "Steampunk Tower 2" + }, + { + "id": "0x0100AC300BBE4000", + "name": "The Battle Of Mahjong" + }, + { + "id": "0x0100ACC00A56E000", + "name": "Midnight Deluxe Demo" + }, + { + "id": "0x0100AF700BCD2000", + "name": "Game Dev Story" + }, + { + "id": "0x0100B0300E8B6000", + "name": "Shinobi Spirits S: Legend of Heroes" + }, + { + "id": "0x0100B0F011A84000", + "name": "Escape Game Fort Boyard" + }, + { + "id": "0x0100B1400CD50000", + "name": "Atelier Lulua ~The Scion of Arland~" + }, + { + "id": "0x0100B25009B96000", + "name": "Shape of the World" + }, + { + "id": "0x0100B2E00F13E000", + "name": "Shipped" + }, + { + "id": "0x0100BAB00E8C0000", + "name": "Langrisser I & II" + }, + { + "id": "0x0100D82009024000", + "name": "Goetia" + }, + { + "id": "0x0100D86012928000", + "name": "Up Cliff Drive" + }, + { + "id": "0x0100D90011534000", + "name": "Arcade Archives SUNSETRIDERS" + }, + { + "id": "0x0100D9C00AA52000", + "name": "Mother Russia Bleeds" + }, + { + "id": "0x0100DB300A026000", + "name": "Warp Shift" + }, + { + "id": "0x0100DD600DD48000", + "name": "Stranger Things 3: The Game" + }, + { + "id": "0x0100DF401249C000", + "name": "AstroWings: Space War" + }, + { + "id": "0x0100E0600BBC8000", + "name": "GRANDIA HD Collection" + }, + { + "id": "0x0100E3801140A000", + "name": "Horror Bundle Vol. 1" + }, + { + "id": "0x0100E3900B598000", + "name": "RollerCoaster Tycoon Adventures" + }, + { + "id": "0x0100E81007A06000", + "name": "Victor Vran Overkill Edition" + }, + { + "id": "0x0100EA8011DF2000", + "name": "Pinball Lockdown" + }, + { + "id": "0x0100EB000C818000", + "name": "The Padre" + }, + { + "id": "0x0100EC7009348000", + "name": "Rogue Aces" + }, + { + "id": "0x0100EE800C93E000", + "name": "BLAZBLUE CENTRALFICTION Special Edition" + }, + { + "id": "0x0100F0901006C000", + "name": "A Sound Plan" + }, + { + "id": "0x0100F610122F6000", + "name": "Good Pizza, Great Pizza" + }, + { + "id": "0x0100F6700DBD8000", + "name": "You Died but a Necromancer revived you" + }, + { + "id": "0x0100F90010882000", + "name": "Ys Origin" + }, + { + "id": "0x0100FB400D832000", + "name": "KILL la KILL -IF" + }, + { + "id": "0x0100DA20021D0000", + "name": "Redout" + }, + { + "id": "0x0100DA200A09A000", + "name": "Kero Blaster" + }, + { + "id": "0x0100DBD00ABF4000", + "name": "Party Trivia" + }, + { + "id": "0x0100DCF00F13A000", + "name": "Queen's Quest 4: Sacred Truce" + }, + { + "id": "0x0100DD30110CC000", + "name": "Exit the Gungeon" + }, + { + "id": "0x0100DE800B1F2000", + "name": "JumpHead: Battle4Fun!" + }, + { + "id": "0x0100DEC00A934000", + "name": "Trine 3: The Artifacts of Power" + }, + { + "id": "0x0100DF3009730000", + "name": "Catastronauts" + }, + { + "id": "0x0100E1200DC1A000", + "name": "Bounty Battle" + }, + { + "id": "0x0100E6701231C000", + "name": "Mad Rat Dead" + }, + { + "id": "0x0100E7100B198000", + "name": "Scribblenauts Mega Pack" + }, + { + "id": "0x0100E9D00D6C2000", + "name": "Touhou spell bubble" + }, + { + "id": "0x0100EA1009022000", + "name": "Timberman VS" + }, + { + "id": "0x0100EAD007E98000", + "name": "FUZE4 Nintendo Switch" + }, + { + "id": "0x0100EB600E914000", + "name": "Farming Simulator 20" + }, + { + "id": "0x0100F17004156000", + "name": "Retro City Rampage DX" + }, + { + "id": "0x0100F2700D3F0000", + "name": "Pure Mahjong" + }, + { + "id": "0x0100F2B012658000", + "name": "Pachi Pachi On A Roll" + }, + { + "id": "0x0100F3A0095A6000", + "name": "Night Call" + }, + { + "id": "0x0100F4E013AAE000", + "name": "Fire & Water" + }, + { + "id": "0x0100C6E0047C8000", + "name": "Bit Dungeon Plus" + }, + { + "id": "0x0100C9F00BC50000", + "name": "Realpolitiks" + }, + { + "id": "0x0100CD1010740000", + "name": "Jay and Silent Bob: Mall Brawl" + }, + { + "id": "0x0100D1100BF9C000", + "name": "Skulls of the Shogun: Bone-A-Fide Edition" + }, + { + "id": "0x0100D3200AF74000", + "name": "Doodle God: Evolution" + }, + { + "id": "0x0100D8A00E880000", + "name": "Red Wings: Aces of the Sky" + }, + { + "id": "0x0100DA000D71A000", + "name": "Straimium Immortaly" + }, + { + "id": "0x0100DAE00DE4E000", + "name": "Xtreme Club Racing" + }, + { + "id": "0x0100E25008E68000", + "name": "My Time at Portia" + }, + { + "id": "0x0100E3A00A9D4000", + "name": "Rush Rover" + }, + { + "id": "0x0100E4200FA82000", + "name": "Horror Pinball Bundle" + }, + { + "id": "0x0100E4400C9A6000", + "name": "Diggerman" + }, + { + "id": "0x0100E4A00EEF6000", + "name": "Gravity Duck" + }, + { + "id": "0x0100E5400AFC8000", + "name": "ACA NEOGEO SAVAGE REIGN" + }, + { + "id": "0x0100E6501145E000", + "name": "I Am Dead" + }, + { + "id": "0x0100E8D007E16000", + "name": "Gotcha Racing 2nd" + }, + { + "id": "0x0100E95004038000", + "name": "Xenoblade Chronicles™ 2" + }, + { + "id": "0x0100E98002F6E000", + "name": "Mantis Burn Racing" + }, + { + "id": "0x0100E9B010028000", + "name": "Duck Souls+" + }, + { + "id": "0x0100BA800CA6A000", + "name": "99Seconds" + }, + { + "id": "0x0100BB500AAE6000", + "name": "Metropolis: Lux Obscura Demo" + }, + { + "id": "0x0100BCF00E970000", + "name": "The Vanishing of Ethan Carter" + }, + { + "id": "0x0100BDE012928000", + "name": "Strife: Veteran Edition" + }, + { + "id": "0x0100C0A004C2C000", + "name": "Kid Tripp" + }, + { + "id": "0x0100C1200D60C000", + "name": "Undead's Building" + }, + { + "id": "0x0100C1800A9B6000", + "name": "Go Vacation™" + }, + { + "id": "0x0100C2F00A568000", + "name": "Shio" + }, + { + "id": "0x0100C31005A50000", + "name": "Phantom Trigger" + }, + { + "id": "0x0100C38004DCC000", + "name": "The Flame In The Flood: Complete Edition" + }, + { + "id": "0x0100C3A00B97E000", + "name": "House of Golf" + }, + { + "id": "0x0100C4E004406000", + "name": "Adventure Time: Pirates of the Enchiridion" + }, + { + "id": "0x0100C6E00AF2C000", + "name": "BLAZBLUE CROSS TAG BATTLE SPECIAL TRIAL" + }, + { + "id": "0x0100C8E00BDCE000", + "name": "Season Match 3: Curse of the Witch Crow" + }, + { + "id": "0x0100CB10089DE000", + "name": "Party Crashers" + }, + { + "id": "0x0100CC700B2B4000", + "name": "PixARK" + }, + { + "id": "0x0100CE2007A86000", + "name": "Old Man's Journey" + }, + { + "id": "0x0100CFD012908000", + "name": "Takeshi and Hiroshi" + }, + { + "id": "0x0100CFE00CE6E000", + "name": "Nuclear Throne" + }, + { + "id": "0x0100E7F00BA5A000", + "name": "Catch 'Em! Goldfish Scooping" + }, + { + "id": "0x0100EA80032EA000", + "name": "New Super Mario Bros.™ U Deluxe" + }, + { + "id": "0x0100EB10108EA000", + "name": "G.I. Joe: Operation Blackout" + }, + { + "id": "0x0100EBF00E702000", + "name": "STAR OCEAN First Departure R" + }, + { + "id": "0x0100EC000CE24000", + "name": "Mech Rage" + }, + { + "id": "0x0100EC9010258000", + "name": "Streets of Rage 4" + }, + { + "id": "0x0100EDD00D530000", + "name": "Nice Slice" + }, + { + "id": "0x0100EDE012B58000", + "name": "Linelight" + }, + { + "id": "0x0100F02005D1E000", + "name": "M.A.C.E. Space Shooter" + }, + { + "id": "0x0100F0B00A214000", + "name": "Eternal Card Game" + }, + { + "id": "0x0100F1F00D5B2000", + "name": "Darkest Hunters" + }, + { + "id": "0x0100F5D00CD58000", + "name": "Flowlines VS" + }, + { + "id": "0x0100F8300E864000", + "name": "Bus Fix 2019" + }, + { + "id": "0x0100FA500B128000", + "name": "Sushi Striker: The Way of Sushido eShop Demo" + }, + { + "id": "0x0100FA800DF86000", + "name": "Hamsterdam" + }, + { + "id": "0x0100FC300F4A4000", + "name": "Fly Punch Boom!" + }, + { + "id": "0x0100FC800E64E000", + "name": "Desktop Baseball" + }, + { + "id": "0x0100C2200E0F2000", + "name": "Drift Zone Arcade" + }, + { + "id": "0x0100C4200B820000", + "name": "SmuggleCraft" + }, + { + "id": "0x0100CAA01084A000", + "name": "Rebel Galaxy Outlaw" + }, + { + "id": "0x0100CC000DA44000", + "name": "Please, Don't Touch Anything: Classic" + }, + { + "id": "0x0100CD300A1BA000", + "name": "Zombillie" + }, + { + "id": "0x0100CD5008D9E000", + "name": "James Pond Codename Robocod" + }, + { + "id": "0x0100CEB00CD6C000", + "name": "Surfingers" + }, + { + "id": "0x0100CFC00A1D8000", + "name": "Wild Guns™ Reloaded" + }, + { + "id": "0x0100D04004176000", + "name": "Farming Simulator Nintendo Switch Edition" + }, + { + "id": "0x0100D470106DC000", + "name": "CRAYON SHINCHAN The Storm Called FLAMING KASUKABE RUNNER!!" + }, + { + "id": "0x0100DBE00C554000", + "name": "Bubsy: Paws on Fire!" + }, + { + "id": "0x0100DCA011262000", + "name": "Mr. DRILLER DrillLand" + }, + { + "id": "0x0100DD6013126000", + "name": "Death Race 2020" + }, + { + "id": "0x0100DE70131F4000", + "name": "Alpaca Ball: Allstars" + }, + { + "id": "0x0100DEB00D76E000", + "name": "Bard's Gold - Nintendo Switch Edition" + }, + { + "id": "0x0100E06012BB4000", + "name": "Tank Mechanic Simulator" + }, + { + "id": "0x0100E09009600000", + "name": "ibb & obb" + }, + { + "id": "0x0100E20012886000", + "name": "2weistein – The Curse of the Red Dragon" + }, + { + "id": "0x0100E4F00AE14000", + "name": "Sparkle ZERO" + }, + { + "id": "0x0100D87009954000", + "name": "Jumping Joe & Friends" + }, + { + "id": "0x0100D95012C0A000", + "name": "Gibbous - A Cthulhu Adventure" + }, + { + "id": "0x0100DC000A472000", + "name": "10 Second Run RETURNS Demo" + }, + { + "id": "0x0100DD100AE8C000", + "name": "Deemo" + }, + { + "id": "0x0100DDB004F30000", + "name": "Sky Ride" + }, + { + "id": "0x0100DE40068CA000", + "name": "Squareboy vs Bullies: Arena Edition" + }, + { + "id": "0x0100DFE00F002000", + "name": "GREEN The Life Algorithm" + }, + { + "id": "0x0100E2700D5B6000", + "name": "Doodle God : Evolution Demo" + }, + { + "id": "0x0100E3500BD84000", + "name": "Earthworms Demo" + }, + { + "id": "0x0100E3B00F412000", + "name": "Collar X Malice -Unlimited-" + }, + { + "id": "0x0100E5000D3CA000", + "name": "Merchants of Kaidan" + }, + { + "id": "0x0100E5D00DE2C000", + "name": "Construction Simulator 2 US - Console Edition" + }, + { + "id": "0x0100E62012D3C000", + "name": "BIT.TRIP RUNNER" + }, + { + "id": "0x0100E6D00E81C000", + "name": "Little Racer" + }, + { + "id": "0x0100E75004766000", + "name": "True Fear: Forsaken Souls - Part 1" + }, + { + "id": "0x0100E9100F244000", + "name": "Galacide" + }, + { + "id": "0x0100F0B00F68E000", + "name": "Lust for Darkness: Dawn Edition" + }, + { + "id": "0x0100F30012CBE000", + "name": "Ramp Car Jumping" + }, + { + "id": "0x0100F3500A20C000", + "name": "BlobCat" + }, + { + "id": "0x0100F3D00B032000", + "name": "GOD WARS The Complete Legend" + }, + { + "id": "0x0100DA700879C000", + "name": "Last Day of June" + }, + { + "id": "0x0100DB500B17C000", + "name": "Solstice Chronicles: MIA" + }, + { + "id": "0x0100DB7003828000", + "name": "Pinball FX3" + }, + { + "id": "0x0100DBB0136CE000", + "name": "Survival" + }, + { + "id": "0x0100E0E00B108000", + "name": "Valley" + }, + { + "id": "0x0100E3100450E000", + "name": "Bass Pro Shops: The Strike - Championship Edition" + }, + { + "id": "0x0100E4600B166000", + "name": "Candle: The Power of the Flame" + }, + { + "id": "0x0100E49013190000", + "name": "Unto The End" + }, + { + "id": "0x0100E5E012744000", + "name": "Micro Pico Racers" + }, + { + "id": "0x0100E7500BF84000", + "name": "LEGRAND LEGACY: Tale of the Fatebounds" + }, + { + "id": "0x0100E7C001DE0000", + "name": "Arcade Archives Kid's Horehore Daisakusen" + }, + { + "id": "0x0100E88009A34000", + "name": "Rocket Wars" + }, + { + "id": "0x0100E8B00CBD6000", + "name": "Proficient Paddles Deluxe" + }, + { + "id": "0x0100EB6005E90000", + "name": "Maria The Witch" + }, + { + "id": "0x0100EC7012D34000", + "name": "Inside Grass: A little adventure" + }, + { + "id": "0x0100ECE00B210000", + "name": "Calculation Castle : Greco's Ghostly Challenge \"Multiplication \"" + }, + { + "id": "0x0100ED400EEC2000", + "name": "STORY OF SEASONS: Friends of Mineral Town" + }, + { + "id": "0x0100F0300B7BE000", + "name": "Ludomania" + }, + { + "id": "0x0100F0E00F5EA000", + "name": "Island Maze" + }, + { + "id": "0x0100F5D01034E000", + "name": "The Adventures of Elena Temple: Definitive Edition" + }, + { + "id": "0x0100F680116A2000", + "name": "Kholat" + }, + { + "id": "0x0100F6B00BDCC000", + "name": "Season Match 2" + }, + { + "id": "0x0100F7300BD8E000", + "name": "Double Cross" + }, + { + "id": "0x0100F9F00C696000", + "name": "Crash™ Team Racing Nitro-Fueled" + }, + { + "id": "0x0100FAE00E19A000", + "name": "Spirit Hunter: NG" + }, + { + "id": "0x0100FBA00E35C000", + "name": "Arcade Archives ROAD FIGHTER" + }, + { + "id": "0x0100FCF002A58000", + "name": "Ultimate Chicken Horse" + }, + { + "id": "0x0100AB000ABFE000", + "name": "Shadow Fight 2" + }, + { + "id": "0x0100ADF00CB64000", + "name": "Snow Battle Princess Sayuki" + }, + { + "id": "0x0100AE5003EE6000", + "name": "The Jackbox Party Pack" + }, + { + "id": "0x0100B5200BB7C000", + "name": "ToeJam & Earl: Back in the Groove!" + }, + { + "id": "0x0100BBD00976C000", + "name": "Project Highrise: Architect's Edition" + }, + { + "id": "0x0100BEC00C7A2000", + "name": "Arcade Archives ATHENA" + }, + { + "id": "0x0100BF8006EC6000", + "name": "Arcade Archives ELEVATOR ACTION" + }, + { + "id": "0x0100C0B012666000", + "name": "Newton's Cradle Puzzle Game" + }, + { + "id": "0x0100C5200D178000", + "name": "The Mystery of Woolley Mountain" + }, + { + "id": "0x0100C7C00AE6C000", + "name": "VSR: Void Space Racing" + }, + { + "id": "0x0100C7D00E730000", + "name": "Fight'N Rage" + }, + { + "id": "0x0100C8B00D2BE000", + "name": "Radical Rabbit Stew" + }, + { + "id": "0x0100CA300C5BA000", + "name": "Demetrios Demo" + }, + { + "id": "0x0100CBB0070EE000", + "name": "Green Game: TimeSwapper" + }, + { + "id": "0x0100CBF0115F2000", + "name": "Valfaris & Slain Double Pack" + }, + { + "id": "0x0100CC7009196000", + "name": "Masters of Anima" + }, + { + "id": "0x0100CCD0073EA000", + "name": "Ninjala" + }, + { + "id": "0x0100D360098B6000", + "name": "WILL: A Wonderful World" + }, + { + "id": "0x0100D4800AEC8000", + "name": "City Builder" + }, + { + "id": "0x010096B01179A000", + "name": "Ponpu" + }, + { + "id": "0x01009AF0110E4000", + "name": "Thunder Paw" + }, + { + "id": "0x01009C600F02C000", + "name": "Sudoku Relax 2 Summer Waves" + }, + { + "id": "0x01009D500A194000", + "name": "World Conqueror X" + }, + { + "id": "0x01009E4006CC8000", + "name": "Super Rock Blasters!" + }, + { + "id": "0x0100A01006E00000", + "name": "LEGO® The Incredibles" + }, + { + "id": "0x0100A0F00DA68000", + "name": "Monster Sanctuary" + }, + { + "id": "0x0100A280121F6000", + "name": "Kingdom Rush" + }, + { + "id": "0x0100A2900AFA4000", + "name": "ACA NEOGEO LEAGUE BOWLING" + }, + { + "id": "0x0100A6F00AC70000", + "name": "NAIRI: Tower of Shirin" + }, + { + "id": "0x0100A70006B8A000", + "name": "Never Stop Sneakin'" + }, + { + "id": "0x0100A71010B9C000", + "name": "Purrs In Heaven" + }, + { + "id": "0x0100AD000B9AC000", + "name": "Son of a Witch" + }, + { + "id": "0x0100AD300E4FA000", + "name": "Vasilis" + }, + { + "id": "0x0100AEA00CCAE000", + "name": "Bleep Bloop" + }, + { + "id": "0x0100AFF00F938000", + "name": "Metaverse Keeper" + }, + { + "id": "0x0100B0500FE4E000", + "name": "Good Job!™" + }, + { + "id": "0x0100B0601205E000", + "name": "Door Kickers" + }, + { + "id": "0x0100B0A00C8D8000", + "name": "Arcade Archives Penguin-Kun Wars" + }, + { + "id": "0x0100B10002904000", + "name": "Shakedown: Hawaii" + }, + { + "id": "0x0100E3C00A118000", + "name": "Chicken Assassin: Reloaded" + }, + { + "id": "0x0100E5A00FD38000", + "name": "ANIMUS: Harbinger" + }, + { + "id": "0x0100E65002BB8000", + "name": "Stardew Valley" + }, + { + "id": "0x0100E6700EF4C000", + "name": "SpaceColorsRunner" + }, + { + "id": "0x0100E6A009A26000", + "name": "Spartan" + }, + { + "id": "0x0100E6B00DEA4000", + "name": "Mutant Year Zero: Road to Eden - Deluxe Edition" + }, + { + "id": "0x0100E6B0115FC000", + "name": "Star99" + }, + { + "id": "0x0100E8701358A000", + "name": "GUNPIG: Firepower For Hire" + }, + { + "id": "0x0100EB100AB42000", + "name": "FINAL FANTASY XII THE ZODIAC AGE" + }, + { + "id": "0x0100EEC00AA6E000", + "name": "Gone Home" + }, + { + "id": "0x0100F0B0081DA000", + "name": "Dawn of the Breakers" + }, + { + "id": "0x0100F2200C984000", + "name": "Mortal Kombat 11" + }, + { + "id": "0x0100F2400CF00000", + "name": "Drunk-Fu: Wasted Masters" + }, + { + "id": "0x0100F3B00CF32000", + "name": "Death Coming" + }, + { + "id": "0x0100F6600AC00000", + "name": "Magic Nations: Strategy Card Game" + }, + { + "id": "0x0100F7800A434000", + "name": "Drawful 2" + }, + { + "id": "0x0100F7B002340000", + "name": "FIFA 18" + }, + { + "id": "0x0100F8C00C21C000", + "name": "Omega Strike" + }, + { + "id": "0x0100FAD00E65E000", + "name": "Lines X" + }, + { + "id": "0x0100FB000EB96000", + "name": "Barry Bradford's Putt Panic Party" + }, + { + "id": "0x0100AAD004358000", + "name": "Physical Contact: Picture Place" + }, + { + "id": "0x0100AB90129CA000", + "name": "Paint your Pet" + }, + { + "id": "0x0100AFE00452E000", + "name": "Tumblestone" + }, + { + "id": "0x0100B0B00B318000", + "name": "The Inner World" + }, + { + "id": "0x0100B1E00AA56000", + "name": "Crossing Souls" + }, + { + "id": "0x0100B4900AD3E000", + "name": "NEKOPARA Vol.1" + }, + { + "id": "0x0100B4F00FC4E000", + "name": "eSports Legend" + }, + { + "id": "0x0100C160071B8000", + "name": "Waking Violet" + }, + { + "id": "0x0100C4C00E73E000", + "name": "Moving Out" + }, + { + "id": "0x0100C6100D75E000", + "name": "Spooky Ghosts Dot Com" + }, + { + "id": "0x0100C6300AFE0000", + "name": "ACA NEOGEO NINJA MASTER'S" + }, + { + "id": "0x0100C68012128000", + "name": "Twin Breaker: A Sacred Symbols Adventure" + }, + { + "id": "0x0100C6D002CB8000", + "name": "Johnny Turbo's Arcade: Heavy Barrel" + }, + { + "id": "0x0100C7D00DE24000", + "name": "Azuran Tales: TRIALS" + }, + { + "id": "0x0100C8300FA90000", + "name": "Save Koch" + }, + { + "id": "0x0100C9F00AAEE000", + "name": "ASCENDANCE" + }, + { + "id": "0x0100CB000A142000", + "name": "Phoenix Wright: Ace Attorney Trilogy" + }, + { + "id": "0x0100CC0010A46000", + "name": "Ego Protocol: Remastered" + }, + { + "id": "0x0100CE4010AAC000", + "name": "FINAL FANTASY® CRYSTAL CHRONICLES™ Remastered Edition" + }, + { + "id": "0x0100D85013754000", + "name": "Elliot" + }, + { + "id": "0x0100DA400E07E000", + "name": "Radiation City" + }, + { + "id": "0x0100DAF00B620000", + "name": "Ultrawings Flat" + }, + { + "id": "0x0100DD901201A000", + "name": "Jacks or Better - Video Poker" + }, + { + "id": "0x0100DDD00C0EA000", + "name": "Phantaruk" + }, + { + "id": "0x0100DE600FDFE000", + "name": "No Time to Relax" + }, + { + "id": "0x0100DE700B028000", + "name": "Semispheres" + }, + { + "id": "0x0100E1F013674000", + "name": "FUSER™" + }, + { + "id": "0x0100E6200D56E000", + "name": "The World Next Door" + }, + { + "id": "0x0100E67003A86000", + "name": "Disgaea 5 Complete Demo" + }, + { + "id": "0x0100E8600C866000", + "name": "My Exotic Farm 2018" + }, + { + "id": "0x0100E9A00CB30000", + "name": "DYNASTY WARRIORS 8: Xtreme Legends Definitive Edition" + }, + { + "id": "0x0100EA4011484000", + "name": "Random Heroes: Gold Edition" + }, + { + "id": "0x0100EA70127F2000", + "name": "GONNER2" + }, + { + "id": "0x0100EB800B614000", + "name": "Freedom Planet" + }, + { + "id": "0x0100ECC00EF3C000", + "name": "Legend of the Skyfish" + }, + { + "id": "0x0100F130115EC000", + "name": "Help Will Come Tomorrow" + }, + { + "id": "0x0100F3B010F56000", + "name": "Rogue Robots" + }, + { + "id": "0x0100F5600D194000", + "name": "Isoland 2 - Ashes of Time" + }, + { + "id": "0x0100F7300C90E000", + "name": "Johnny Turbo's Arcade: Night Slashers" + }, + { + "id": "0x01008D100D43E000", + "name": "Saints Row IV®: Re-Elected™" + }, + { + "id": "0x01008D8006A6A000", + "name": "Arena of Valor" + }, + { + "id": "0x01008EA00405C000", + "name": "forma.8" + }, + { + "id": "0x01008FB011248000", + "name": "AvoCuddle" + }, + { + "id": "0x010091D00BF9E000", + "name": "GALAK-Z: The Void: Deluxe Edition" + }, + { + "id": "0x010094E00B52E000", + "name": "Capcom Beat 'Em Up Bundle" + }, + { + "id": "0x010097000EDB4000", + "name": "Tricky Spider" + }, + { + "id": "0x01009A6013AE0000", + "name": "Arcade Archives VS. TENNIS" + }, + { + "id": "0x01009AA00D49E000", + "name": "Bonds of the Skies" + }, + { + "id": "0x01009AF0101CC000", + "name": "JigSaw Solace" + }, + { + "id": "0x01009CC00E224000", + "name": "Blade II - The Return Of Evil" + }, + { + "id": "0x01009E3001DDE000", + "name": "Arcade Archives DOUBLE DRAGON II The Revenge" + }, + { + "id": "0x01009FA00A570000", + "name": "Boom Ball: Boost Edition" + }, + { + "id": "0x0100A4200DA76000", + "name": "Mario Tennis™ Aces Special Online Demo" + }, + { + "id": "0x0100A5200C2E0000", + "name": "Safety First!" + }, + { + "id": "0x0100A620083DA000", + "name": "Ambition of the Slimes" + }, + { + "id": "0x0100A8C011F26000", + "name": "Max and the book of chaos" + }, + { + "id": "0x0100AA400C396000", + "name": "Superbrothers: Sword & Sworcery EP" + }, + { + "id": "0x0100AAB00E524000", + "name": "Boxing Champs" + }, + { + "id": "0x0100D0500B0A6000", + "name": "The VideoKid" + }, + { + "id": "0x0100D2D009028000", + "name": "INSIDE" + }, + { + "id": "0x0100D3F008746000", + "name": "Knights of Pen and Paper +1 Deluxier Edition" + }, + { + "id": "0x0100D84005AF6000", + "name": "Grand Prix Rock 'N Racing" + }, + { + "id": "0x0100D970123BA000", + "name": "GRISAIA PHANTOM TRIGGER 04" + }, + { + "id": "0x0100DBF01000A000", + "name": "Burnout™ Paradise Remastered" + }, + { + "id": "0x0100DE200C350000", + "name": "Chasm" + }, + { + "id": "0x0100DE400D7B8000", + "name": "Umihara Kawase Fresh!" + }, + { + "id": "0x0100DEC00B2BC000", + "name": "The Midnight Sanctuary" + }, + { + "id": "0x0100DF9010206000", + "name": "Cooking Tycoons - 3 in 1 Bundle" + }, + { + "id": "0x0100E0D00C336000", + "name": "Halloween Pinball" + }, + { + "id": "0x0100E20011A06000", + "name": "My Universe - My Baby" + }, + { + "id": "0x0100E28002D74000", + "name": "Space Dave" + }, + { + "id": "0x0100E3500B00E000", + "name": "The Bridge Demo" + }, + { + "id": "0x0100E7300AAD4000", + "name": "Fitness Boxing" + }, + { + "id": "0x0100E7D00C17A000", + "name": "The Walking Vegetables: Radical Edition" + }, + { + "id": "0x0100E8300A67A000", + "name": "RISK® Global Domination" + }, + { + "id": "0x0100EA001069E000", + "name": "Gates Of Hell" + }, + { + "id": "0x0100ED700B376000", + "name": "Cursed Castilla" + }, + { + "id": "0x0100F6800910A000", + "name": "Hover" + }, + { + "id": "0x0100F780103E6000", + "name": "The Forgotten Land" + }, + { + "id": "0x0100F7D00A1BC000", + "name": "NO THING" + }, + { + "id": "0x0100F8600E21E000", + "name": "Overwatch®: Legendary Edition" + }, + { + "id": "0x0100FC700F942000", + "name": "Megabyte Punch" + }, + { + "id": "0x0100FD800D594000", + "name": "Cook, Serve, Delicious! 2!!" + }, + { + "id": "0x0100FFE011F0A000", + "name": "Mask of Mists" + }, + { + "id": "0x0100BAB01113A000", + "name": "Neon Abyss" + }, + { + "id": "0x0100BAE00B470000", + "name": "Guacamelee! Super Turbo Championship Edition" + }, + { + "id": "0x0100BCA00843A000", + "name": "Trailblazers" + }, + { + "id": "0x0100BD0012A68000", + "name": "Vampire's Fall: Origins" + }, + { + "id": "0x0100BDD010AC8000", + "name": "Lost Lands: Dark Overlord" + }, + { + "id": "0x0100BFC00F18A000", + "name": "Spellworm" + }, + { + "id": "0x0100C1C00D01C000", + "name": "SYMMETRY" + }, + { + "id": "0x0100C3F011B58000", + "name": "Falcon Age" + }, + { + "id": "0x0100C5700ECE0000", + "name": "Puzzle & Dragons GOLD" + }, + { + "id": "0x0100CA400B6D0000", + "name": "BQM -BlockQuest Maker-" + }, + { + "id": "0x0100CAF00B744000", + "name": "Valkyria Chronicles" + }, + { + "id": "0x0100CB5009A2C000", + "name": "RAZED" + }, + { + "id": "0x0100CE1004FA6000", + "name": "ACA NEOGEO STREET HOOP" + }, + { + "id": "0x0100D000111C2000", + "name": "Epic Word Search Collection" + }, + { + "id": "0x0100D4600D0E4000", + "name": "Descenders" + }, + { + "id": "0x0100D4C00C9FC000", + "name": "Glass Masquerade" + }, + { + "id": "0x0100D560102C8000", + "name": "BioShock Infinite: The Complete Edition" + }, + { + "id": "0x0100D7C01115E000", + "name": "Keen: One Girl Army" + }, + { + "id": "0x0100DBF004FAA000", + "name": "ACA NEOGEO SOCCER BRAWL" + }, + { + "id": "0x0100DCA0064A6000", + "name": "Luigi’s Mansion™ 3" + }, + { + "id": "0x01009E700DB2E000", + "name": "Bee Simulator" + }, + { + "id": "0x01009EE00E91E000", + "name": "Some Distant Memory" + }, + { + "id": "0x0100A0800EA9C000", + "name": "Bite the Bullet" + }, + { + "id": "0x0100A12011CC8000", + "name": "Fire Emblem™: Shadow Dragon & the Blade of Light" + }, + { + "id": "0x0100A3000F070000", + "name": "Electronic Super Joy" + }, + { + "id": "0x0100A750113FC000", + "name": "Highrise Heroes: Word Challenge" + }, + { + "id": "0x0100AC500EEE8000", + "name": "THOTH" + }, + { + "id": "0x0100ACE00DAB6000", + "name": "Project Nimbus: Complete Edition" + }, + { + "id": "0x0100AD7003FF4000", + "name": "Stick It to The Man" + }, + { + "id": "0x0100AFE00E882000", + "name": "Laraan" + }, + { + "id": "0x0100B110109F8000", + "name": "Urban Flow" + }, + { + "id": "0x0100B16009C10000", + "name": "SINNER: Sacrifice for Redemption" + }, + { + "id": "0x0100B1F0090F2000", + "name": "TurtlePop: Journey to Freedom" + }, + { + "id": "0x0100B42001DB4000", + "name": "ACA NEOGEO THE KING OF FIGHTERS '98" + }, + { + "id": "0x0100B5E00D218000", + "name": "JEWEL WARS" + }, + { + "id": "0x0100B6700DEC2000", + "name": "Greco’s Hall of Kanji Learn Japanese< Beginner >" + }, + { + "id": "0x0100B8100C54A000", + "name": "Rack N Ruin" + }, + { + "id": "0x0100BB600C096000", + "name": "Hardway Party" + }, + { + "id": "0x0100BF8012A30000", + "name": "Assault ChaingunS KM" + }, + { + "id": "0x0100EF600F6C4000", + "name": "Still There" + }, + { + "id": "0x0100EFC00EFB2000", + "name": "DRAGON QUEST" + }, + { + "id": "0x0100F3C00C400000", + "name": "SkyTime" + }, + { + "id": "0x0100F5500FA0E000", + "name": "Castle of no Escape 2" + }, + { + "id": "0x0100F8300A95C000", + "name": "Parallel" + }, + { + "id": "0x0100F8900E878000", + "name": "Dungeon Warfare" + }, + { + "id": "0x0100F9C0078CC000", + "name": "Deathstate : Abyssal Edition" + }, + { + "id": "0x0100F9D00F176000", + "name": "Arcade Archives Scramble" + }, + { + "id": "0x0100FB5010D2E000", + "name": "3000th Duel" + }, + { + "id": "0x010060200FC44000", + "name": "Family Feud®" + }, + { + "id": "0x010061F0119FA000", + "name": "Let's Sing 2021" + }, + { + "id": "0x010062800D39C000", + "name": "SpongeBob SquarePants: Battle for Bikini Bottom - Rehydrated" + }, + { + "id": "0x010063600D3FA000", + "name": "Arcade Archives X MULTIPLY" + }, + { + "id": "0x010064200F7D8000", + "name": "Lost Horizon" + }, + { + "id": "0x010064F00C212000", + "name": "Soul Axiom Rebooted" + }, + { + "id": "0x010066600877E000", + "name": "ACA NEOGEO ART OF FIGHTING 2" + }, + { + "id": "0x010067600F1A0000", + "name": "FuzzBall" + }, + { + "id": "0x010068300E08E000", + "name": "Enchanted in the Moonlight - Kiryu, Chikage & Yukinojo -" + }, + { + "id": "0x010068E00D346000", + "name": "Warplanes: WW2 Dogfight" + }, + { + "id": "0x01006980127F0000", + "name": "Fight Crab" + }, + { + "id": "0x01006B601117E000", + "name": "Ultimate Ski Jumping 2020" + }, + { + "id": "0x01006BE0109B6000", + "name": "Theme Park Simulator: Roller Coaster & Thrill Rides" + }, + { + "id": "0x01006E700B702000", + "name": "Nightmares from the Deep 2: The Siren`s Call" + }, + { + "id": "0x0100708010800000", + "name": "Locomotion" + }, + { + "id": "0x01007090104EC000", + "name": "John Wick Hex" + }, + { + "id": "0x01007300020FA000", + "name": "ASTRAL CHAIN" + }, + { + "id": "0x0100750001C70000", + "name": "Duck Game" + }, + { + "id": "0x010075000C608000", + "name": "Red Faction Guerrilla Re-Mars-tered" + }, + { + "id": "0x01005BF00E4DE000", + "name": "Rabi-Ribi" + }, + { + "id": "0x01005C10136CA000", + "name": "Fantasy Tavern Sextet -Vol.2 Adventurer's Days-" + }, + { + "id": "0x01005D2011EA8000", + "name": "KINGDOM HEARTS Melody of Memory" + }, + { + "id": "0x01005ED00CD70000", + "name": "Door Kickers: Action Squad" + }, + { + "id": "0x01005FD00F15A000", + "name": "Regions of Ruin" + }, + { + "id": "0x010061400F7E4000", + "name": "Arcade Archives VS. BALLOON FIGHT" + }, + { + "id": "0x010064E00A932000", + "name": "Trine 2: Complete Story" + }, + { + "id": "0x010065E003FD8000", + "name": "Gear.Club Unlimited" + }, + { + "id": "0x01006AA006BE4000", + "name": "Tallowmere" + }, + { + "id": "0x01006C800C4A6000", + "name": "Secret Files: Tunguska" + }, + { + "id": "0x01006F80082E4000", + "name": "GUILTY GEAR XX ACCENT CORE PLUS R" + }, + { + "id": "0x01006FB00DB02000", + "name": "Yaga" + }, + { + "id": "0x010071900D95A000", + "name": "Black Paradox" + }, + { + "id": "0x0100721012F9C000", + "name": "Arcade Archives GRADIUS II" + }, + { + "id": "0x01007330027EE000", + "name": "Ultra Street Fighter® II: The Final Challengers" + }, + { + "id": "0x0100748009A28000", + "name": "Manual Samuel" + }, + { + "id": "0x010075D00DD04000", + "name": "Race with Ryan" + }, + { + "id": "0x01007960049A0000", + "name": "Bayonetta™ 2" + }, + { + "id": "0x01007A4009834000", + "name": "Arcade Archives Shusse Ozumo" + }, + { + "id": "0x01007A700A87C000", + "name": "The Long Dark" + }, + { + "id": "0x01007D200D3FC000", + "name": "Arcade Archives ICE CLIMBER" + }, + { + "id": "0x010080E00D3DE000", + "name": "Jungle Z" + }, + { + "id": "0x010084F0123AC000", + "name": "Space Elite Force 2" + }, + { + "id": "0x010087200289A000", + "name": "Riverbond" + }, + { + "id": "0x01008EA008712000", + "name": "ACA NEOGEO PULSTAR" + }, + { + "id": "0x01008EC006BE2000", + "name": "Art of Balance" + }, + { + "id": "0x010092600E9A2000", + "name": "Caged Garden Cock Robin" + }, + { + "id": "0x010095A011A14000", + "name": "Deadly Days" + }, + { + "id": "0x010095B00DBC8000", + "name": "Venture Kid" + }, + { + "id": "0x010095C00F354000", + "name": "Monster Jam Steel Titans" + }, + { + "id": "0x010099700D750000", + "name": "Instant Sports" + }, + { + "id": "0x0100A0800B83A000", + "name": "Soul Knight" + }, + { + "id": "0x0100A290038F8000", + "name": "ACA NEOGEO PUZZLED" + }, + { + "id": "0x0100A3E011CB0000", + "name": "Unlock the King 2" + }, + { + "id": "0x0100A56006CEE000", + "name": "Pawarumi" + }, + { + "id": "0x0100A6300B250000", + "name": "SEGA Genesis Classics" + }, + { + "id": "0x0100A68011B0A000", + "name": "Sudoky" + }, + { + "id": "0x0100A7D008392000", + "name": "Rival Megagun" + }, + { + "id": "0x0100A8000B65C000", + "name": "SCRAP RUSH!!" + }, + { + "id": "0x0100A8E00CAA0000", + "name": "Leisure Suit Larry - Wet Dreams Don't Dry" + }, + { + "id": "0x0100FC5009952000", + "name": "Pirates: All Aboard!" + }, + { + "id": "0x0100FCB00BF40000", + "name": "R.B.I. Baseball 19" + }, + { + "id": "0x0100EEA00AFB2000", + "name": "ACA NEOGEO FOOTBALL FRENZY" + }, + { + "id": "0x0100F15012D36000", + "name": "IMMERSE LAND" + }, + { + "id": "0x0100F25001DD0000", + "name": "Arcade Archives DOUBLE DRAGON" + }, + { + "id": "0x0100F3D008436000", + "name": "Hiragana Pixel Party" + }, + { + "id": "0x0100F5B007638000", + "name": "Pixel Action Heroes" + }, + { + "id": "0x0100FB90103DE000", + "name": "Journey to the Savage Planet" + }, + { + "id": "0x0100FC2012680000", + "name": "World for Two" + }, + { + "id": "0x0100FCB00EEF2000", + "name": "Pet Shop Snacks" + }, + { + "id": "0x0100FF800EC2E000", + "name": "Desktop Bowling" + }, + { + "id": "0x0100FF7010E7E000", + "name": "void tRrLM(); //Void Terrarium" + }, + { + "id": "0x01007E900DFB6000", + "name": "Legend of the Tetrarchs" + }, + { + "id": "0x01007F00128CC000", + "name": "Pretty Princess Party" + }, + { + "id": "0x01007F4012B84000", + "name": "Arcade Archives CONTRA" + }, + { + "id": "0x010080B00AD66000", + "name": "Undertale" + }, + { + "id": "0x010082400BCC6000", + "name": "Untitled Goose Game" + }, + { + "id": "0x01008A6009758000", + "name": "Fairune Collection" + }, + { + "id": "0x01008D1001512000", + "name": "Cars 3: Driven to Win" + }, + { + "id": "0x01008D400A584000", + "name": "Keep Talking and Nobody Explodes" + }, + { + "id": "0x01008E800D1FE000", + "name": "Marble Power Blast" + }, + { + "id": "0x01008FF00B8FA000", + "name": "Reverie: Sweet As Edition" + }, + { + "id": "0x010094D00F17C000", + "name": "Fifty Words by POWGI" + }, + { + "id": "0x010094F00D626000", + "name": "Happy Words" + }, + { + "id": "0x010095500D9F4000", + "name": "Quest Hunter" + }, + { + "id": "0x010096300DE22000", + "name": "Depth of Extinction" + }, + { + "id": "0x010097000BC10000", + "name": "Resident Evil 0" + }, + { + "id": "0x01009740120FE000", + "name": "DISTRAINT 2" + }, + { + "id": "0x010099E013430000", + "name": "Void Source" + }, + { + "id": "0x01009EA00E2B8000", + "name": "Toon War" + }, + { + "id": "0x01009EB004CB0000", + "name": "Shelter Generations" + }, + { + "id": "0x0100A24011F52000", + "name": "Dead Z Meat" + }, + { + "id": "0x0100DFA00C6A6000", + "name": "TRYBIT LOGIC" + }, + { + "id": "0x0100EA700EC90000", + "name": "CASE: Animatronics" + }, + { + "id": "0x0100EE5011DB6000", + "name": "Blood and Guts Bundle" + }, + { + "id": "0x0100EFE00E1DC000", + "name": "Headliner: NoviNews" + }, + { + "id": "0x0100F0400351C000", + "name": "Astro Duel Deluxe" + }, + { + "id": "0x0100F6200F77E000", + "name": "Towertale" + }, + { + "id": "0x0100F6C00A016000", + "name": "Chicken Range" + }, + { + "id": "0x0100F71011A0A000", + "name": "My Universe - Fashion Boutique" + }, + { + "id": "0x0100F9C00F32E000", + "name": "Snakeybus" + }, + { + "id": "0x0100FF300C902000", + "name": "Remothered: Tormented Fathers" + }, + { + "id": "0x0100FF500E738000", + "name": "Nonograms Prophecy" + }, + { + "id": "0x0100F2100F0B2000", + "name": "Soul Searching" + }, + { + "id": "0x0100F380105A4000", + "name": "Arcade Archives LIFE FORCE" + }, + { + "id": "0x0100F42007752000", + "name": "TOUHOU SKY ARENA -MATSURI-CLIMAX" + }, + { + "id": "0x0100F7901118C000", + "name": "Five Nights at Freddy's: Help Wanted" + }, + { + "id": "0x0100FE1011400000", + "name": "AntVentor" + }, + { + "id": "0x0100FED0137FE000", + "name": "Boot Hill Heroes" + }, + { + "id": "0x0100FFA00C9F4000", + "name": "Doughlings: Invasion" + }, + { + "id": "0x01004B500AB88000", + "name": "Calculation Castle : Greco's Ghostly Challenge \"Addition\"" + }, + { + "id": "0x01004BA00B566000", + "name": "Construction Machines Simulator" + }, + { + "id": "0x01004C500AAF6000", + "name": "The Mystery of the Hudson Case" + }, + { + "id": "0x01004D10020F2000", + "name": "Graceful Explosion Machine" + }, + { + "id": "0x01004D100C510000", + "name": "#KILLALLZOMBIES" + }, + { + "id": "0x01004D200BB96000", + "name": "Build a Bridge!" + }, + { + "id": "0x01004DF007564000", + "name": "Tanzia" + }, + { + "id": "0x01004E500A15C000", + "name": "TETRA's Escape" + }, + { + "id": "0x01004E700DFE6000", + "name": "River City Girls" + }, + { + "id": "0x01004EE0104F6000", + "name": "Shinsekai Into the Depths™" + }, + { + "id": "0x010054900F51A000", + "name": "WARBORN" + }, + { + "id": "0x010054F01266C000", + "name": "Prehistoric Dude" + }, + { + "id": "0x010056900E89C000", + "name": "Pelican and Medjed" + }, + { + "id": "0x010058401223E000", + "name": "Ellipsis" + }, + { + "id": "0x010059200CC40000", + "name": "Mist Hunter" + }, + { + "id": "0x01005D700A2F8000", + "name": "ACA NEOGEO GHOST PILOTS" + }, + { + "id": "0x010060200F954000", + "name": "Jewel Rotation" + }, + { + "id": "0x010060600CFDE000", + "name": "Strikey Sisters" + }, + { + "id": "0x010063200AB12000", + "name": "Inferno 2" + }, + { + "id": "0x010067A00964E000", + "name": "Last Encounter" + }, + { + "id": "0x0100B360068B2000", + "name": "Mekorama" + }, + { + "id": "0x0100B4700BFC6000", + "name": "Call of Juarez: Gunslinger" + }, + { + "id": "0x0100B5900DFB2000", + "name": "The Eyes of Ara" + }, + { + "id": "0x0100B5A004302000", + "name": "R.B.I. Baseball 17" + }, + { + "id": "0x0100B6600FE06000", + "name": "Down to Hell" + }, + { + "id": "0x0100B7900B024000", + "name": "Grim Fandango Remastered" + }, + { + "id": "0x0100B8900EFA6000", + "name": "Outbuddies DX" + }, + { + "id": "0x0100BCE000598000", + "name": "Just Dance 2017®" + }, + { + "id": "0x0100BE50042F6000", + "name": "Yono and the Celestial Elephants" + }, + { + "id": "0x0100C1F00A9B8000", + "name": "All-Star Fruit Racing" + }, + { + "id": "0x0100C4D00B608000", + "name": "Don't Sink" + }, + { + "id": "0x0100C6301324C000", + "name": "Electro Ride: The Neon Racing" + }, + { + "id": "0x0100C7D00E6A0000", + "name": "Arc of Alchemist" + }, + { + "id": "0x0100C9B00EAEE000", + "name": "Spice and Wolf VR" + }, + { + "id": "0x0100CA6009888000", + "name": "VERTICAL STRIKE ENDLESS CHALLENGE" + }, + { + "id": "0x0100CAE01021A000", + "name": "The TakeOver" + }, + { + "id": "0x0100CD301354E000", + "name": "Sam & Max Save the World" + }, + { + "id": "0x0100CE1004E72000", + "name": "The Longest Five Minutes" + }, + { + "id": "0x0100CFF0048D2000", + "name": "Milanoir" + }, + { + "id": "0x0100D0A009310000", + "name": "de Blob" + }, + { + "id": "0x010076700CA18000", + "name": "AGARTHA-S" + }, + { + "id": "0x010076C01015C000", + "name": "Spellbreak" + }, + { + "id": "0x01007BF00FCB0000", + "name": "Blindy" + }, + { + "id": "0x01007D600D242000", + "name": "Solitaire Klondike BLACK" + }, + { + "id": "0x01007D8010018000", + "name": "Golf" + }, + { + "id": "0x01007F8010C66000", + "name": "Arcade Archives PLUS ALPHA" + }, + { + "id": "0x01007FC00A040000", + "name": "Party Arcade" + }, + { + "id": "0x010081B00D890000", + "name": "Strangers of the Power 3" + }, + { + "id": "0x010082200AFBE000", + "name": "ACA NEOGEO CYBER-LIP" + }, + { + "id": "0x010087700D07C000", + "name": "Light Tracer" + }, + { + "id": "0x010088500D5EE000", + "name": "KORAL" + }, + { + "id": "0x01008AE00E95C000", + "name": "Duped" + }, + { + "id": "0x01008AF00EA12000", + "name": "Star-Crossed Myth - The Department of Punishments -" + }, + { + "id": "0x01008DA00CBBA000", + "name": "Snooker 19" + }, + { + "id": "0x01008DA012EC0000", + "name": "Shakes on a Plane" + }, + { + "id": "0x010092C00C5EC000", + "name": "Catan" + }, + { + "id": "0x010095600F1A8000", + "name": "STAB STAB STAB!" + }, + { + "id": "0x010097A0071A8000", + "name": "Worbital" + }, + { + "id": "0x010097A00CC0A000", + "name": "Aaero: Complete Edition" + }, + { + "id": "0x010097C00DF08000", + "name": "The Bradwell Conspiracy" + }, + { + "id": "0x0100A9E00D97A000", + "name": "Northgard" + }, + { + "id": "0x0100AC101212C000", + "name": "City Driving Simulator" + }, + { + "id": "0x0100AD400BBE0000", + "name": "BlazeRush" + }, + { + "id": "0x0100B1E0022F8000", + "name": "VVVVVV" + }, + { + "id": "0x0100B2600A398000", + "name": "TENGAI for Nintendo Switch" + }, + { + "id": "0x0100B450130FC000", + "name": "Outbreak: The New Nightmare" + }, + { + "id": "0x0100B5E0113F2000", + "name": "Monochrome World" + }, + { + "id": "0x0100B7200E02E000", + "name": "BOXBOY! + BOXGIRL!™ Demo" + }, + { + "id": "0x0100BBD00D9D6000", + "name": "The Pyraplex" + }, + { + "id": "0x0100BD50129C4000", + "name": "Super Space Serpent Secondary Edition" + }, + { + "id": "0x0100BE500BEA2000", + "name": "Transistor" + }, + { + "id": "0x0100C0100C7EA000", + "name": "Divine Ascent" + }, + { + "id": "0x0100C240116E8000", + "name": "Quell Zen" + }, + { + "id": "0x0100C3D00923A000", + "name": "Old School Musical" + }, + { + "id": "0x0100C7801232C000", + "name": "Alphadia Genesis" + }, + { + "id": "0x0100C7E0134BE000", + "name": "Five Dates" + }, + { + "id": "0x0100C80009ABE000", + "name": "JackQuest: The Tale of the Sword" + }, + { + "id": "0x0100CAE00EB02000", + "name": "House Flipper" + }, + { + "id": "0x0100CC2001C6C000", + "name": "Battle Chef Brigade Deluxe" + }, + { + "id": "0x0100CFD00AFDE000", + "name": "ACA NEOGEO THE KING OF FIGHTERS 2002" + }, + { + "id": "0x0100CF2011454000", + "name": "Skull Rogue" + }, + { + "id": "0x0100D1000B18C000", + "name": "1979 Revolution: Black Friday" + }, + { + "id": "0x0100D24013466000", + "name": "DREAMO" + }, + { + "id": "0x0100D49008748000", + "name": "Joe Dever's Lone Wolf" + }, + { + "id": "0x0100D520119D6000", + "name": "Travel Mosaics 6: Christmas Around the World" + }, + { + "id": "0x0100D5500DA94000", + "name": "Shadow Blade: Reload" + }, + { + "id": "0x0100D6100FF44000", + "name": "Sudoku Relax 3 Autumn Leaves" + }, + { + "id": "0x0100D6200E130000", + "name": "Pillars of Eternity: Complete Edition" + }, + { + "id": "0x0100D7400F2E4000", + "name": "Psikyo Shooting Stars Bravo" + }, + { + "id": "0x0100D7801281A000", + "name": "Ramageddon" + }, + { + "id": "0x0100DA501160C000", + "name": "World of Tanks Blitz" + }, + { + "id": "0x0100DB80123D2000", + "name": "Hot Shot Burn" + }, + { + "id": "0x0100DC400E5CE000", + "name": "True Fear: Forsaken Souls - Part 2" + }, + { + "id": "0x0100E0C00ADAC000", + "name": "SENRAN KAGURA Reflexions" + }, + { + "id": "0x0100E1400BA96000", + "name": "Darksiders Warmastered Edition" + }, + { + "id": "0x0100E1E00CF1A000", + "name": "Power Rangers: Battle for the Grid" + }, + { + "id": "0x0100E46006708000", + "name": "Terraria" + }, + { + "id": "0x0100E5600D446000", + "name": "Ni no Kuni: Wrath of the White Witch" + }, + { + "id": "0x0100E6400B1EA000", + "name": "MONSTER HUNTER GENERATIONS ULTIMATE™ Demo" + }, + { + "id": "0x0100F6800F48E000", + "name": "SAMURAI SHODOWN NEOGEO COLLECTION" + }, + { + "id": "0x0100F7B00595C000", + "name": "Tower Of Babel" + }, + { + "id": "0x0100F7E01308C000", + "name": "Barbearian" + }, + { + "id": "0x0100FEF00F0AA000", + "name": "Escape from Chernobyl" + }, + { + "id": "0x0100FC900963E000", + "name": "Yuri" + }, + { + "id": "0x0100FEE01316E000", + "name": "Shisen-Sho NIKAKUdori" + }, + { + "id": "0x0100D4C00EE0C000", + "name": "Akuarium" + }, + { + "id": "0x0100D6700C3E6000", + "name": "TORIDAMA: Brave Challenge" + }, + { + "id": "0x0100D7000AE6A000", + "name": "Star Story: The Horizon Escape" + }, + { + "id": "0x0100D7F010B94000", + "name": "Welcome to Primrose Lake" + }, + { + "id": "0x0100D8400DAF0000", + "name": "SYNAPTIC DRIVE" + }, + { + "id": "0x0100D8E00C874000", + "name": "izneo" + }, + { + "id": "0x0100D9600BA8E000", + "name": "Just Shapes & Beats Demo" + }, + { + "id": "0x0100DA0006F50000", + "name": "DragonFangZ - The Rose & Dungeon of Time" + }, + { + "id": "0x0100DA3011174000", + "name": "AXES" + }, + { + "id": "0x0100DBF0110EE000", + "name": "Trancelation" + }, + { + "id": "0x0100DDB00DB38000", + "name": "Just Dance® 2020" + }, + { + "id": "0x0100DFB00D808000", + "name": "Dandy Dungeon - Legend of Brave Yamada -" + }, + { + "id": "0x0100DFB011B12000", + "name": "WARSAW" + }, + { + "id": "0x0100E0300B13C000", + "name": "Mahjong Deluxe 3" + }, + { + "id": "0x0100E07006C84000", + "name": "Earth Atlantis" + }, + { + "id": "0x0100E6B00FFBA000", + "name": "King Lucas" + }, + { + "id": "0x0100E8B012FBC000", + "name": "Maze" + }, + { + "id": "0x0100E910103B4000", + "name": "Thronebreaker: The Witcher Tales" + }, + { + "id": "0x0100E9F00CACC000", + "name": "Chronus Arc" + }, + { + "id": "0x0100EB600A4DA000", + "name": "A Robot Named Fight" + }, + { + "id": "0x0100ABE00DB4E000", + "name": "Edna & Harvey: Harvey's New Eyes" + }, + { + "id": "0x0100AE300D496000", + "name": "Epic Astro Story" + }, + { + "id": "0x0100AEF00A270000", + "name": "Cast of the Seven Godsends" + }, + { + "id": "0x0100B2500F0E0000", + "name": "Bridge Constructor Ultimate Edition" + }, + { + "id": "0x0100B3901324A000", + "name": "Danger Gazers" + }, + { + "id": "0x0100B6900D776000", + "name": "Super Holobunnies: Pause Café" + }, + { + "id": "0x0100B79011F06000", + "name": "Water Balloon Mania" + }, + { + "id": "0x0100BBF011394000", + "name": "Dicey Dungeons" + }, + { + "id": "0x0100BF001091E000", + "name": "MazM: Jekyll and Hyde" + }, + { + "id": "0x0100C030124E8000", + "name": "Johnny Rocket" + }, + { + "id": "0x0100C3300D8C4000", + "name": "The Touryst" + }, + { + "id": "0x0100C3D00D1D4000", + "name": "Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz" + }, + { + "id": "0x0100C5500E7AE000", + "name": "STURMWIND EX" + }, + { + "id": "0x0100C5700434C000", + "name": "Sky Rogue" + }, + { + "id": "0x0100C5D00EDB8000", + "name": "Wreckin' Ball Adventure" + }, + { + "id": "0x0100C9200F09A000", + "name": "Pool Slide Story" + }, + { + "id": "0x0100C9E00FD62000", + "name": "Farabel" + }, + { + "id": "0x0100C9F009F7A000", + "name": "Xenoblade Chronicles 2: Torna ~ The Golden Country" + }, + { + "id": "0x0100CC400DDE8000", + "name": "Realm Royale" + }, + { + "id": "0x0100EA500D996000", + "name": "Joe Jump Impossible Quest" + }, + { + "id": "0x0100EC2011A80000", + "name": "Luxar" + }, + { + "id": "0x0100EEE012280000", + "name": "Hero Hours Contract" + }, + { + "id": "0x0100EEF00CBC0000", + "name": "MEANDERS" + }, + { + "id": "0x0100F1B00B456000", + "name": "The MISSING: J.J. Macfield and the Island of Memories" + }, + { + "id": "0x0100F1E011982000", + "name": "Gerritory" + }, + { + "id": "0x0100F2900B3E2000", + "name": "Killer Queen Black" + }, + { + "id": "0x0100F3000FA58000", + "name": "Roombo: First Blood" + }, + { + "id": "0x0100F3F00B86A000", + "name": "Raining Blobs" + }, + { + "id": "0x0100F4C00D958000", + "name": "Hyperlight Ultimate" + }, + { + "id": "0x0100F770045CA000", + "name": "Time Recoil" + }, + { + "id": "0x0100F7B00B864000", + "name": "Pipe Push Paradise" + }, + { + "id": "0x0100F7C012D68000", + "name": "Juiced!" + }, + { + "id": "0x0100F9400D6CC000", + "name": "Doggie Ninja The Golden Mission" + }, + { + "id": "0x0100FC000EE10000", + "name": "Double Switch - 25th Anniversary Edition" + }, + { + "id": "0x0100FF00042EE000", + "name": "Lumo" + }, + { + "id": "0x0100E5000DDD2000", + "name": "Police Stories" + }, + { + "id": "0x0100E6300D448000", + "name": "Trüberbrook" + }, + { + "id": "0x0100E6E00AF44000", + "name": "Octogeddon" + }, + { + "id": "0x0100E7001210C000", + "name": "SWARMRIDERS" + }, + { + "id": "0x0100E7200B272000", + "name": "Lanota" + }, + { + "id": "0x0100EAE00D9EC000", + "name": "Ghostbusters: The Video Game Remastered" + }, + { + "id": "0x0100EAF00E32E000", + "name": "Bacon Man: An Adventure" + }, + { + "id": "0x0100EB100D17C000", + "name": "The Red Strings Club" + }, + { + "id": "0x0100ECD01165C000", + "name": "Shmubedi Boo" + }, + { + "id": "0x0100ED800CBFC000", + "name": "Fitness Boxing eShop Demo" + }, + { + "id": "0x0100F0C00FE6E000", + "name": "The Ambassador: Fractured Timelines" + }, + { + "id": "0x0100F2D00C97E000", + "name": "CMS" + }, + { + "id": "0x0100F7F00AFA2000", + "name": "ACA NEOGEO THE SUPER SPY" + }, + { + "id": "0x0100FAC00F716000", + "name": "Desktop Rugby" + }, + { + "id": "0x0100FAD00C2AA000", + "name": "Dungreed" + }, + { + "id": "0x0100FAE010864000", + "name": "Minoria" + }, + { + "id": "0x0100FC900CAE4000", + "name": "Word Sudoku by POWGI Demo" + }, + { + "id": "0x0100A3F009142000", + "name": "Little Dragons Café" + }, + { + "id": "0x0100A47009818000", + "name": "Arcade Archives Buta san" + }, + { + "id": "0x0100ACF00CD2E000", + "name": "Robothorium" + }, + { + "id": "0x0100ADD00C6FA000", + "name": "Atelier Meruru ~The Apprentice of Arland~ DX" + }, + { + "id": "0x0100AFD00F13C000", + "name": "CHOP" + }, + { + "id": "0x0100B3900B766000", + "name": "Treasure Stack" + }, + { + "id": "0x0100B6D00DA6E000", + "name": "Ding Dong XL" + }, + { + "id": "0x0100B82010B6C000", + "name": "Cook, Serve, Delicious! 3?!" + }, + { + "id": "0x0100B9B011DA4000", + "name": "Diamond Girl ★An Earnest Education in Love★" + }, + { + "id": "0x0100BA000FC9C000", + "name": "LocO-SportS" + }, + { + "id": "0x0100BA100E160000", + "name": "Crypt of the Serpent King" + }, + { + "id": "0x0100BBC00E4F8000", + "name": "Need a packet?" + }, + { + "id": "0x0100BFB00D1F4000", + "name": "Voxel Sword" + }, + { + "id": "0x0100C0C0040E4000", + "name": "Adam's Venture™: Origins" + }, + { + "id": "0x0100C2500B718000", + "name": "Hyper Sentinel Demo" + }, + { + "id": "0x0100C9100FAE2000", + "name": "Depixtion" + }, + { + "id": "0x0100C960041DC000", + "name": "Levels+ : Addictive Puzzle Game" + }, + { + "id": "0x0100C9800A454000", + "name": "GALAK-Z: Variant S" + }, + { + "id": "0x0100CA100489C000", + "name": "The Escapists 2" + }, + { + "id": "0x0100CA500C90C000", + "name": "Goodbye Deponia" + }, + { + "id": "0x0100CB800B07E000", + "name": "NOT A HERO: SUPER SNAZZY EDITION" + }, + { + "id": "0x0100CCE00A4F2000", + "name": "Reigns: Kings & Queens" + }, + { + "id": "0x0100CE400A2FA000", + "name": "ACA NEOGEO Gururin" + }, + { + "id": "0x0100CF3007578000", + "name": "Atari Flashback Classics" + }, + { + "id": "0x0100D5D00DAF2000", + "name": "Story of a Gladiator" + }, + { + "id": "0x0100D6300ED2E000", + "name": "Gleaner Heights" + }, + { + "id": "0x0100D6A00F802000", + "name": "Super Box Land Demake" + }, + { + "id": "0x0100D6E008700000", + "name": "Save the Ninja Clan" + }, + { + "id": "0x0100D98007784000", + "name": "Premium Pool Arena" + }, + { + "id": "0x0100D9B00E22C000", + "name": "Rebel Cops" + }, + { + "id": "0x0100DB00117BA000", + "name": "9th Dawn III" + }, + { + "id": "0x0100DC000983A000", + "name": "Arcade Archives THE NINJA WARRIORS" + }, + { + "id": "0x0100DCE009732000", + "name": "Poisoft Thud Card" + }, + { + "id": "0x0100DD100DE16000", + "name": "Bitlogic - A Cyberpunk Arcade Adventure" + }, + { + "id": "0x0100E1A00AF40000", + "name": "Hungry Shark® World" + }, + { + "id": "0x0100E24006FA8000", + "name": "Stikbold! A Dodgeball Adventure DELUXE" + }, + { + "id": "0x0100E4700E040000", + "name": "Ages of Mages: The last keeper" + }, + { + "id": "0x0100E95010058000", + "name": "EQQO" + }, + { + "id": "0x0100EA100F516000", + "name": "The Turing Test" + }, + { + "id": "0x0100BFC002B4E000", + "name": "Dandara: Trials of Fear Edition" + }, + { + "id": "0x0100BFE00E9CA000", + "name": "The Witcher 3: Wild Hunt — Complete Edition" + }, + { + "id": "0x0100C1E012A42000", + "name": "Country Tales" + }, + { + "id": "0x0100C3E00ACAA000", + "name": "Mutant Football League: Dynasty Edition" + }, + { + "id": "0x0100C7300EEE4000", + "name": "Zombie Army Trilogy" + }, + { + "id": "0x0100C9B00D422000", + "name": "Ping Pong Trick Shot EVOLUTION" + }, + { + "id": "0x0100CAD011462000", + "name": "Path of Giants" + }, + { + "id": "0x0100D0200EA92000", + "name": "Bubble Cats Rescue" + }, + { + "id": "0x0100D1D007F4E000", + "name": "Paper Wars: Cannon Fodder Devastated" + }, + { + "id": "0x0100D1F00D688000", + "name": "Captain Cat" + }, + { + "id": "0x0100D3300F110000", + "name": "Mr Blaster" + }, + { + "id": "0x0100D400100F8000", + "name": "Tonight We Riot" + }, + { + "id": "0x0100D51010D5E000", + "name": "Steel Rain" + }, + { + "id": "0x0100D6300B938000", + "name": "Yoku's Island Express Demo" + }, + { + "id": "0x0100D6A00BE66000", + "name": "World Tree Marché" + }, + { + "id": "0x0100D7E012F2E000", + "name": "Dustoff Z" + }, + { + "id": "0x0100D870045B6000", + "name": "Nintendo Entertainment System™ - Nintendo Switch Online" + }, + { + "id": "0x0100DA400F624000", + "name": "PHOGS!" + }, + { + "id": "0x0100DA900FCEA000", + "name": "Chameleon" + }, + { + "id": "0x0100A5A00AF26000", + "name": "Jettomero: Hero of the Universe" + }, + { + "id": "0x0100A7900B936000", + "name": "Shut Eye" + }, + { + "id": "0x0100A7B00FFC2000", + "name": "Neon City Riders" + }, + { + "id": "0x0100A95010942000", + "name": "Indie Gems Bundle - JRPG Edition" + }, + { + "id": "0x0100A9C010246000", + "name": "Wide Ocean Big Jacket" + }, + { + "id": "0x0100AC00107B8000", + "name": "Speedway Racing" + }, + { + "id": "0x0100ACF00D32E000", + "name": "The Demon Crystal" + }, + { + "id": "0x0100AD10102B2000", + "name": "BioShock Remastered" + }, + { + "id": "0x0100ADA012370000", + "name": "Shantae: Risky's Revenge - Director's Cut" + }, + { + "id": "0x0100B0B00A8C2000", + "name": "ACA NEOGEO BASEBALL STARS 2" + }, + { + "id": "0x0100B0C013912000", + "name": "Among Us" + }, + { + "id": "0x0100B18001D8E000", + "name": "Little Inferno" + }, + { + "id": "0x0100B1A0066DC000", + "name": "Volgarr the Viking" + }, + { + "id": "0x0100B27010436000", + "name": "Wanderlust Travel Stories" + }, + { + "id": "0x0100B3300B4AA000", + "name": "Hyper Jam" + }, + { + "id": "0x0100B3F000BE2000", + "name": "Pokkén Tournament™ DX" + }, + { + "id": "0x0100B52006E8C000", + "name": "Tiny Troopers Joint Ops XL" + }, + { + "id": "0x0100B53013236000", + "name": "Kaptain Brawe: A Brawe New World" + }, + { + "id": "0x0100B5600A88C000", + "name": "WHIP! WHIP!" + }, + { + "id": "0x0100B610138F8000", + "name": "Zombie Blast Crew" + }, + { + "id": "0x0100B7700BB7A000", + "name": "Monster Loves You" + }, + { + "id": "0x0100B8500D570000", + "name": "Moero Chronicle™ Hyper" + }, + { + "id": "0x0100BA8001DC6000", + "name": "ACA NEOGEO METAL SLUG 3" + }, + { + "id": "0x0100BD8011BCC000", + "name": "Broken Lines" + }, + { + "id": "0x0100BE200C34A000", + "name": "Snowboarding The Next Phase" + }, + { + "id": "0x0100BF200CD74000", + "name": "Crashbots" + }, + { + "id": "0x0100BF500E94E000", + "name": "Dream Daddy: A Dad Dating Simulator" + }, + { + "id": "0x0100BF9011B52000", + "name": "Just Dance® 2021" + }, + { + "id": "0x0100C5B009804000", + "name": "Arcade Archives MAT MANIA EXCITING HOUR" + }, + { + "id": "0x0100C61011DEA000", + "name": "Match" + }, + { + "id": "0x0100C6200A0AA000", + "name": "Enigmatis 2: The Mists of Ravenwood" + }, + { + "id": "0x0100C6A00E94A000", + "name": "Panzer Dragoon: Remake" + }, + { + "id": "0x0100C7600AF00000", + "name": "Red Hot Ricochet" + }, + { + "id": "0x0100CB100D17A000", + "name": "Tales From Space: Mutant Blobs Attack" + }, + { + "id": "0x0100CDD00DA70000", + "name": "Artifact Adventure Gaiden DX" + }, + { + "id": "0x0100CE700F62A000", + "name": "Thief of Thieves: Season One" + }, + { + "id": "0x0100D3F009810000", + "name": "Arcade Archives Ninja-Kid II" + }, + { + "id": "0x0100D4F00DD02000", + "name": "DOOM II (Classic)" + }, + { + "id": "0x0100D99009734000", + "name": "White Night" + }, + { + "id": "0x0100D9B00DB5E000", + "name": "Super Cane Magic ZERO" + }, + { + "id": "0x0100DC800A602000", + "name": "GRID™ Autosport" + }, + { + "id": "0x0100DE000C2E4000", + "name": "Suicide Guy: Sleepin' Deeply" + }, + { + "id": "0x0100DFF00DA4E000", + "name": "Hook" + }, + { + "id": "0x0100E0E00C518000", + "name": "The Long Journey Home" + }, + { + "id": "0x0100E0E0121D6000", + "name": "Bright Paw" + }, + { + "id": "0x0100E1700C31C000", + "name": "GRIS" + }, + { + "id": "0x0100E2800C364000", + "name": "Donut County" + }, + { + "id": "0x0100E2E00CB14000", + "name": "Tokyo School Life" + }, + { + "id": "0x0100E4400C0A2000", + "name": "Battery Jam" + }, + { + "id": "0x0100E5500C756000", + "name": "Cannibal Cuisine" + }, + { + "id": "0x0100E5F00643C000", + "name": "Astro Bears Party" + }, + { + "id": "0x0100E6300F854000", + "name": "Go! Fish Go!" + }, + { + "id": "0x0100E73010754000", + "name": "Rascal Fight" + }, + { + "id": "0x0100EDB01005C000", + "name": "Galaxy Warfighter" + }, + { + "id": "0x0100EEE012FE4000", + "name": "Logic Puzzle Collection: Sudoku - Permudoku - Nonodoku" + }, + { + "id": "0x0100EFB01272E000", + "name": "BFF or Die" + }, + { + "id": "0x0100F1400B0D6000", + "name": "Silence" + }, + { + "id": "0x0100F3400A432000", + "name": "Toki" + }, + { + "id": "0x010037700E9B8000", + "name": "STEINS;GATE 0" + }, + { + "id": "0x0100383012DF2000", + "name": "Gems of Magic: Lost Family" + }, + { + "id": "0x010039000B68E000", + "name": "MY HERO ONE'S JUSTICE" + }, + { + "id": "0x01003A200BD8A000", + "name": "InkyPen" + }, + { + "id": "0x01003A5001DBA000", + "name": "ACA NEOGEO OVER TOP" + }, + { + "id": "0x01003AB012F00000", + "name": "Life of Boris: Super Slav" + }, + { + "id": "0x01003B900ED8C000", + "name": "Mars Power Industries" + }, + { + "id": "0x01003DD00D658000", + "name": "Bulletstorm: Duke of Switch Edition" + }, + { + "id": "0x01003DE00C95E000", + "name": "Mary Skelter 2" + }, + { + "id": "0x01004070022F0000", + "name": "Ittle Dew 2+" + }, + { + "id": "0x010043200F874000", + "name": "NekoMiko" + }, + { + "id": "0x0100464009294000", + "name": "Kona" + }, + { + "id": "0x010047F012BE2000", + "name": "密室のサクリファイス/ABYSS OF THE SACRIFICE" + }, + { + "id": "0x010048F00CC7C000", + "name": "Out There: Ω The Alliance - Demo" + }, + { + "id": "0x01004900113F8000", + "name": "RollerCoaster Tycoon 3 Complete Edition" + }, + { + "id": "0x010049C0075F0000", + "name": "OPUS: The Day We Found Earth" + }, + { + "id": "0x01004A4011CB4000", + "name": "Bubble" + }, + { + "id": "0x01004B100A5CC000", + "name": "Hob: The Definitive Edition" + }, + { + "id": "0x010050300AC28000", + "name": "Pure / Electric Love \"Everyone else!\" - Ema Sakura -" + }, + { + "id": "0x0100D560106E0000", + "name": "DreamGallery" + }, + { + "id": "0x0100D6200933C000", + "name": "Nickelodeon Kart Racers" + }, + { + "id": "0x0100D73012850000", + "name": "THE KNIGHT OF QUEEN" + }, + { + "id": "0x0100D7F00EC64000", + "name": "Overlanders" + }, + { + "id": "0x0100D9900F220000", + "name": "Maitetsu:Pure Station" + }, + { + "id": "0x0100DB100BBCE000", + "name": "Afterparty" + }, + { + "id": "0x0100DD300CF3A000", + "name": "Timespinner" + }, + { + "id": "0x0100DDE00DAC4000", + "name": "Cubixx" + }, + { + "id": "0x0100DE600BEEE000", + "name": "SAINTS ROW®: THE THIRD™ - THE FULL PACKAGE" + }, + { + "id": "0x0100DF100B97C000", + "name": "X-Morph: Defense" + }, + { + "id": "0x0100E0300EB04000", + "name": "Woodle Tree 2: Deluxe" + }, + { + "id": "0x0100E1800CD2A000", + "name": "Awe" + }, + { + "id": "0x0100E2D0128E6000", + "name": "Monster Blast" + }, + { + "id": "0x0100E5500FE0A000", + "name": "Please The Gods" + }, + { + "id": "0x0100E6C00EB12000", + "name": "Classic Snake Adventures" + }, + { + "id": "0x0100E95011FDC000", + "name": "Aircraft Evolution" + }, + { + "id": "0x0100E9A00B0BC000", + "name": "NoReload Heroes" + }, + { + "id": "0x0100EAE010560000", + "name": "Captain Tsubasa: Rise of New Champions" + }, + { + "id": "0x0100EC3012AAC000", + "name": "REPLICA" + }, + { + "id": "0x0100ED200B6FC000", + "name": "DreamWorks Dragons Dawn of New Riders" + }, + { + "id": "0x0100F6F00B9E8000", + "name": "Saboteur!" + }, + { + "id": "0x0100F89003BC8000", + "name": "The Sexy Brutale" + }, + { + "id": "0x0100FDB0092B4000", + "name": "Where Are My Friends?" + }, + { + "id": "0x0100FE0010886000", + "name": "Aqua Lungers" + }, + { + "id": "0x0100DDD0085A4000", + "name": "Sushi Striker™: The Way of Sushido" + }, + { + "id": "0x0100DEB00D5A8000", + "name": "Battle Worlds: Kronos" + }, + { + "id": "0x0100E0400E320000", + "name": "Warlocks 2: God Slayers" + }, + { + "id": "0x0100E4300C278000", + "name": "Hell is Other Demons" + }, + { + "id": "0x0100E8000D5B8000", + "name": "Devil May Cry" + }, + { + "id": "0x0100EA900FB2C000", + "name": "Hayfever" + }, + { + "id": "0x0100EB8011B0C000", + "name": "Gnome More War" + }, + { + "id": "0x0100EBB00D2F4000", + "name": "Neo Cab" + }, + { + "id": "0x0100ECB00A0FC000", + "name": "Let's Sing 2018" + }, + { + "id": "0x0100ED301196A000", + "name": "Undead Darlings ~no cure for love~" + }, + { + "id": "0x0100EDA00BBBE000", + "name": "Fly O'Clock" + }, + { + "id": "0x0100EE6002B48000", + "name": "ACA NEOGEO FATAL FURY" + }, + { + "id": "0x0100EF100BD96000", + "name": "Joggernauts" + }, + { + "id": "0x0100F0400E850000", + "name": "Metro: Last Light Redux" + }, + { + "id": "0x0100F0A00C2F2000", + "name": "Assault On Metaltron" + }, + { + "id": "0x0100F110029C8000", + "name": "Yooka-Laylee" + }, + { + "id": "0x0100F1900B144000", + "name": "REKT! High Octane Stunts" + }, + { + "id": "0x0100F2400D434000", + "name": "MachiKnights -Blood bagos-" + }, + { + "id": "0x0100F4500A47E000", + "name": "INSTANT TENNIS" + }, + { + "id": "0x0100F7000464A000", + "name": "Super Beat Sports™" + }, + { + "id": "0x0100BE800E6D8000", + "name": "DEMON'S TILT" + }, + { + "id": "0x0100BF500207C000", + "name": "Bloodstained: Ritual of the Night" + }, + { + "id": "0x0100C3300C68C000", + "name": "Creepy Road" + }, + { + "id": "0x0100C3A00BB76000", + "name": "Fimbul" + }, + { + "id": "0x0100C41009E1A000", + "name": "Mimpi Dreams" + }, + { + "id": "0x0100C6000EEA8000", + "name": "Warhammer 40,000: Mechanicus" + }, + { + "id": "0x0100C6800B934000", + "name": "Brawlhalla" + }, + { + "id": "0x0100C7600C7D6000", + "name": "Air Conflicts: Pacific Carriers" + }, + { + "id": "0x0100C7800C7A0000", + "name": "Arcade Archives T.N.K III" + }, + { + "id": "0x0100C920092B0000", + "name": "Energy Balance" + }, + { + "id": "0x0100CCA00EDCE000", + "name": "FLYING GIRL STRIKER" + }, + { + "id": "0x0100D04010E38000", + "name": "Touchdown Pinball" + }, + { + "id": "0x0100D1B0102B0000", + "name": "Super Battle Cards" + }, + { + "id": "0x0100D230069CC000", + "name": "Johnny Turbo's Arcade: Wizard Fire" + }, + { + "id": "0x0100D2B00BC54000", + "name": "Heroes of Hammerwatch - Ultimate Edition" + }, + { + "id": "0x0100D3A00409E000", + "name": "LEGO® Marvel Super Heroes 2" + }, + { + "id": "0x0100D45010F16000", + "name": "EAGLETALON vs. HORDE OF THE FLIES" + }, + { + "id": "0x0100D740110C0000", + "name": "Alder's Blood" + }, + { + "id": "0x0100D9200D51E000", + "name": "Quest for the Golden Duck" + }, + { + "id": "0x0100EA500902E000", + "name": "ChromaGun Demo" + }, + { + "id": "0x0100EA6004516000", + "name": "MEMBRANE" + }, + { + "id": "0x0100ECE00D13E000", + "name": "Hard West" + }, + { + "id": "0x0100F1300EC60000", + "name": "One Night Stand" + }, + { + "id": "0x0100F1800B3EC000", + "name": "Plunge" + }, + { + "id": "0x0100F2100D8F2000", + "name": "Battle Supremacy - Ground Assault" + }, + { + "id": "0x0100F2A005C98000", + "name": "Gorogoa" + }, + { + "id": "0x0100F2D00C7DE000", + "name": "Exception" + }, + { + "id": "0x0100F3900D0F0000", + "name": "Food Truck Tycoon" + }, + { + "id": "0x0100F6300F94C000", + "name": "UORiS DX" + }, + { + "id": "0x0100F6F0118B8000", + "name": "My Butler" + }, + { + "id": "0x0100F93004288000", + "name": "Puzzle Adventure Blockle" + }, + { + "id": "0x0100FAF009562000", + "name": "Deep Ones" + }, + { + "id": "0x0100FCF00F6CC000", + "name": "Day and Night" + }, + { + "id": "0x0100FDC00D0C0000", + "name": "Slender: The Arrival" + }, + { + "id": "0x0100FFA0093E8000", + "name": "FIFA 19" + }, + { + "id": "0x010099600FC2A000", + "name": "Windmill Kings" + }, + { + "id": "0x01009A300C836000", + "name": "Knights of Pen and Paper Bundle" + }, + { + "id": "0x01009B90006DC000", + "name": "Super Mario Maker™ 2" + }, + { + "id": "0x0100A5101210E000", + "name": "UBERMOSH:BLACK" + }, + { + "id": "0x0100A5400AC86000", + "name": "ARMS Demo" + }, + { + "id": "0x0100A5B00BDC6000", + "name": "FINAL FANTASY VII" + }, + { + "id": "0x0100A8B00F0B4000", + "name": "HYPERCHARGE Unboxed" + }, + { + "id": "0x0100ABC009708000", + "name": "A Gummy's Life" + }, + { + "id": "0x0100AD100E8B2000", + "name": "The Ninja Saviors: Return of the Warriors" + }, + { + "id": "0x0100AE000AEBC000", + "name": "Angels of Death" + }, + { + "id": "0x0100AE9008744000", + "name": "Claws of Furry" + }, + { + "id": "0x0100B0E00F074000", + "name": "Haunted: Poppy's Nightmare" + }, + { + "id": "0x0100B1000AC3A000", + "name": "Shift Happens" + }, + { + "id": "0x0100B4700C57E000", + "name": "Bow to Blood: Last Captain Standing" + }, + { + "id": "0x0100B56011502000", + "name": "Yumeutsutsu Re:After" + }, + { + "id": "0x0100B7E0102E4000", + "name": "Drawngeon: Dungeons of Ink and Paper" + }, + { + "id": "0x0100BCD010E88000", + "name": "Brotherhood United" + }, + { + "id": "0x0100BE3013A38000", + "name": "Landflix Odyssey" + }, + { + "id": "0x0100BEB00AAF8000", + "name": "Active Soccer 2019" + }, + { + "id": "0x0100BF600BF26000", + "name": "Chocobo's Mystery Dungeon EVERY BUDDY!" + }, + { + "id": "0x0100C6C009812000", + "name": "Arcade Archives Super Dodge Ball" + }, + { + "id": "0x0100C6C00D7C0000", + "name": "Astro Bears" + }, + { + "id": "0x0100C7C00F77C000", + "name": "This Strange Realm Of Mine" + }, + { + "id": "0x0100C8400B248000", + "name": "GUILTY GEAR" + }, + { + "id": "0x0100C8B00C4AE000", + "name": "SpeedRunners" + }, + { + "id": "0x0100C9E00F54C000", + "name": "Air Missions: HIND" + }, + { + "id": "0x0100CD100BEA4000", + "name": "ROCK BOSHERS DX: Director's Cut" + }, + { + "id": "0x0100CFD00BF3E000", + "name": "Galaxy of Pen & Paper +1 Edition" + }, + { + "id": "0x0100D87002EE0000", + "name": "Snipperclips – Cut it out, together! ™ Demo" + }, + { + "id": "0x0100D96011D0E000", + "name": "Debtor" + }, + { + "id": "0x0100DB5012366000", + "name": "What The Fork" + }, + { + "id": "0x0100DC00115FA000", + "name": "Ant-Gravity: Tiny's Adventure" + }, + { + "id": "0x0100DEB00ACE2000", + "name": "Fishing Star World Tour" + }, + { + "id": "0x0100DF900FC52000", + "name": "Tiny Gladiators" + }, + { + "id": "0x0100E2F011DE8000", + "name": "Batu Ta Batu" + }, + { + "id": "0x0100E4D00A690000", + "name": "PixelJunk™ Monsters 2" + }, + { + "id": "0x0100E5C00DC46000", + "name": "Ultracore" + }, + { + "id": "0x0100E5E00C464000", + "name": "SUPER DRAGON BALL HEROES WORLD MISSION" + }, + { + "id": "0x010067A00D35E000", + "name": "GIGANTIC ARMY" + }, + { + "id": "0x010068400ABB6000", + "name": "Rogue Singularity" + }, + { + "id": "0x01006A800016E000", + "name": "Super Smash Bros.™ Ultimate" + }, + { + "id": "0x01006C70102EA000", + "name": "Orn: The Tiny Forest Sprite" + }, + { + "id": "0x01006FD0080B2000", + "name": "Overcooked! 2" + }, + { + "id": "0x010076D0122A8000", + "name": "Spinch" + }, + { + "id": "0x010078800869A000", + "name": "Super Daryl Deluxe" + }, + { + "id": "0x01007A4008486000", + "name": "Enchanting Mahjong Match" + }, + { + "id": "0x01007CC0130C6000", + "name": "Renzo Racer" + }, + { + "id": "0x01007FC012FD4000", + "name": "Georifters" + }, + { + "id": "0x010082C011B24000", + "name": "Despotism 3k" + }, + { + "id": "0x01008300128F2000", + "name": "Dungeon Solver" + }, + { + "id": "0x010084000DAF6000", + "name": "Vectronom" + }, + { + "id": "0x010084D00A134000", + "name": "War Theatre" + }, + { + "id": "0x010086300486E000", + "name": "ACA NEOGEO METAL SLUG 2" + }, + { + "id": "0x010086D011EB8000", + "name": "Horace" + }, + { + "id": "0x0100870012912000", + "name": "Burst Shooter" + }, + { + "id": "0x010089D00E28A000", + "name": "FUSER™" + }, + { + "id": "0x01008CA00FAE8000", + "name": "STAR WARS™ Jedi Knight: Jedi Academy" + }, + { + "id": "0x01008E2013144000", + "name": "Paw Paw Paw" + }, + { + "id": "0x0100EBC00FE14000", + "name": "Nickelodeon Kart Racers 2: Grand Prix" + }, + { + "id": "0x0100EC800800C000", + "name": "NARUTO SHIPPUDEN: Ultimate Ninja Storm Trilogy" + }, + { + "id": "0x0100EDA00D866000", + "name": "Submerged" + }, + { + "id": "0x0100F1400BA88000", + "name": "Quarantine Circular" + }, + { + "id": "0x0100F2300D4BA000", + "name": "Darksiders Genesis" + }, + { + "id": "0x0100F3700C09C000", + "name": "Find The Balance" + }, + { + "id": "0x0100F3D013568000", + "name": "Tiny World Racing" + }, + { + "id": "0x0100F490066A6000", + "name": "Pool BILLIARD" + }, + { + "id": "0x0100F4F00FD4E000", + "name": "Witch & Hero 2" + }, + { + "id": "0x0100F5100E9DE000", + "name": "Super Pixel Racers" + }, + { + "id": "0x0100F5E008AA0000", + "name": "LOST SPHEAR Demo" + }, + { + "id": "0x0100F6D00D83E000", + "name": "SteamWorld Quest: Hand of Gilgamech" + }, + { + "id": "0x0100F7600F3B8000", + "name": "Tangle Tower" + }, + { + "id": "0x0100F7900D8A4000", + "name": "Cruel Bands Career" + }, + { + "id": "0x0100FB500631E000", + "name": "ATOMINE" + }, + { + "id": "0x0100FBD00F5F6000", + "name": "Remothered: Broken Porcelain" + }, + { + "id": "0x0100FF100FB68000", + "name": "Finding Teddy 2 : Definitive Edition" + }, + { + "id": "0x0100FF500E34A000", + "name": "Xenoblade Chronicles™ Definitive Edition" + }, + { + "id": "0x0100F5700C9A8000", + "name": "MIND: Path to Thalamus" + }, + { + "id": "0x0100F5700DE18000", + "name": "Rally Rock 'N Racing" + }, + { + "id": "0x0100F6200B7D4000", + "name": "fault - milestone one" + }, + { + "id": "0x0100FB700D224000", + "name": "LAYTON’S MYSTERY JOURNEY™: Katrielle and the Millionaires’ Conspiracy - Deluxe Edition" + }, + { + "id": "0x0100F8000B37E000", + "name": "Six Sides of the World" + }, + { + "id": "0x0100F9700C73E000", + "name": "Monkey Wall" + }, + { + "id": "0x0100FBC007EAE000", + "name": "Tesla vs Lovecraft" + }, + { + "id": "0x0100FC5009E10000", + "name": "Holy Potatoes! A Weapon Shop?!" + }, + { + "id": "0x0100FE000BA42000", + "name": "Battle Group 2" + }, + { + "id": "0x0100E64010BAA000", + "name": "realMyst: Masterpiece Edition" + }, + { + "id": "0x0100EBC00ECA8000", + "name": "Tap Skaters" + }, + { + "id": "0x0100EBE002B3E000", + "name": "ACA NEOGEO METAL SLUG" + }, + { + "id": "0x0100ED100B160000", + "name": "Evoland Legendary Edition" + }, + { + "id": "0x0100EE50122BC000", + "name": "The Pew Pew Bundle Vol. 1" + }, + { + "id": "0x0100EEA00E3EA000", + "name": "One-Way Ticket" + }, + { + "id": "0x0100EEB0122BA000", + "name": "MazezaM - Puzzle Game" + }, + { + "id": "0x0100EFE00A3C2000", + "name": "Eyes: The Horror Game" + }, + { + "id": "0x0100F0700CD8E000", + "name": "Alvastia Chronicles" + }, + { + "id": "0x0100F090122D2000", + "name": "Ring of Pain" + }, + { + "id": "0x0100F0D004CAE000", + "name": "PAN-PAN A tiny big adventure" + }, + { + "id": "0x0100F2100AA5C000", + "name": "Truck and Logistics Simulator" + }, + { + "id": "0x0100F2C00EED4000", + "name": "Please Teach Me Onedari Shogi" + }, + { + "id": "0x0100F38012182000", + "name": "Retro Classix 2-in-1 Pack: Gate of Doom & Wizard Fire" + }, + { + "id": "0x0100F4500BBCC000", + "name": "Brief Battles" + }, + { + "id": "0x0100F4E006B32000", + "name": "The Men of Yoshiwara: Ohgiya" + }, + { + "id": "0x0100F65011E52000", + "name": "Mittelborg: City of Mages" + }, + { + "id": "0x0100F6B01188E000", + "name": "Little Big Workshop" + }, + { + "id": "0x0100FEE00A64E000", + "name": "Warframe" + }, + { + "id": "0x01005250123B8000", + "name": "GRISAIA PHANTOM TRIGGER 03" + }, + { + "id": "0x01005950022EC000", + "name": "Blade Strangers" + }, + { + "id": "0x01005A5011A44000", + "name": "Nexomon: Extinction" + }, + { + "id": "0x01005A600C318000", + "name": "SMITE" + }, + { + "id": "0x01005A700ECF8000", + "name": "Sunless Sea: Zubmariner Edition" + }, + { + "id": "0x01005C500D690000", + "name": "The Park" + }, + { + "id": "0x01005D100807A000", + "name": "Pokémon™ Quest" + }, + { + "id": "0x01005F8010D98000", + "name": "Knightin'+" + }, + { + "id": "0x010063E00BBDC000", + "name": "1001 Ultimate Mahjong ™ 2" + }, + { + "id": "0x010063E0104BE000", + "name": "Is It Wrong to Try to Pick Up Girls in a Dungeon? Familia Myth Infinite Combate" + }, + { + "id": "0x0100681011B56000", + "name": "Struggling" + }, + { + "id": "0x010069800D2B4000", + "name": "JUNK PLANET" + }, + { + "id": "0x0100699008792000", + "name": "ACA NEOGEO THE LAST BLADE 2" + }, + { + "id": "0x0100699012DF6000", + "name": "Match Three: Pirates! Heir to Davy Jones" + }, + { + "id": "0x01006AA00EE44000", + "name": "Otokomizu" + }, + { + "id": "0x01006BD001E06000", + "name": "Minecraft: Nintendo Switch Edition" + }, + { + "id": "0x01006D00109FE000", + "name": "Hidden Through Time" + }, + { + "id": "0x010071000AAFC000", + "name": "Deep Ones Demo" + }, + { + "id": "0x010076F00EBE4000", + "name": "BOSSGARD" + }, + { + "id": "0x010077B00BDD8000", + "name": "Professional Farmer: Nintendo Switch™ Edition" + }, + { + "id": "0x010077B00E046000", + "name": "Spyro™ Reignited Trilogy" + }, + { + "id": "0x01007900080B6000", + "name": "Bomber Crew" + }, + { + "id": "0x01007B000C834000", + "name": "Asphalt 9: Legends" + }, + { + "id": "0x01007D300CD8C000", + "name": "Asdivine Hearts II" + }, + { + "id": "0x01007EA01252E000", + "name": "Golf Zero" + }, + { + "id": "0x01007F200B0C0000", + "name": "Ys VIII: Lacrimosa of DANA" + }, + { + "id": "0x01007F30113A6000", + "name": "The Jackbox Party Pack 7" + }, + { + "id": "0x010081C008164000", + "name": "Gunhouse" + }, + { + "id": "0x010082900C5FA000", + "name": "New Star Manager" + }, + { + "id": "0x0100865011CBC000", + "name": "Arcade Archives VS. BASEBALL" + }, + { + "id": "0x01008680118BA000", + "name": "Dangerous Relationship" + }, + { + "id": "0x010087D0084A8000", + "name": "Hello Kitty Kruisers With Sanrio Friends" + }, + { + "id": "0x0100888011CB2000", + "name": "Street Power Soccer" + }, + { + "id": "0x010088E003A76000", + "name": "Ninja Shodown" + }, + { + "id": "0x0100896011A60000", + "name": "Dark Burial" + }, + { + "id": "0x01008C800E654000", + "name": "Gunvolt Chronicles: Luminous Avenger iX" + }, + { + "id": "0x01008D300C50C000", + "name": "Super Nintendo Entertainment System™ - Nintendo Switch Online" + }, + { + "id": "0x01008F2005154000", + "name": "South Park™: The Fractured but Whole™ - Standard Edition" + }, + { + "id": "0x010096000EEBA000", + "name": "Welcome to Hanwell" + }, + { + "id": "0x0100EAB00605C000", + "name": "Poly Bridge" + }, + { + "id": "0x0100EEC00A262000", + "name": "D/Generation HD" + }, + { + "id": "0x0100F0C011A0C000", + "name": "Captain Sabertooth and the Magic Diamond" + }, + { + "id": "0x0100F210061E8000", + "name": "Hollow" + }, + { + "id": "0x0100F2300A5DA000", + "name": "Think of the Children" + }, + { + "id": "0x0100F5400AB6C000", + "name": "Alchemic Jousts" + }, + { + "id": "0x0100FA800A1F4000", + "name": "EXORDER" + }, + { + "id": "0x0100FBE0113CC000", + "name": "Tropico 6 - Nintendo Switch™ Edition" + }, + { + "id": "0x0100FF1012C1C000", + "name": "Drawn to Life: Two Realms" + }, + { + "id": "0x0100FF9003F10000", + "name": "Splasher" + }, + { + "id": "0x0100EF701265E000", + "name": "Pangeon" + }, + { + "id": "0x0100EFE009424000", + "name": "Animal Super Squad" + }, + { + "id": "0x0100F1200F6D8000", + "name": "Pushy and Pully in Blockland" + }, + { + "id": "0x0100F1500CC64000", + "name": "Venture Towns" + }, + { + "id": "0x0100F18010BA0000", + "name": "Speed 3: Grand Prix" + }, + { + "id": "0x0100F45006A00000", + "name": "Oh...Sir! The Hollywood Roast" + }, + { + "id": "0x0100F4F00F098000", + "name": "Mekabolt" + }, + { + "id": "0x0100FAA00B168000", + "name": "Hello Neighbor" + }, + { + "id": "0x0100DA70115E6000", + "name": "Caretaker" + }, + { + "id": "0x0100E04009BD4000", + "name": "Spot The Difference" + }, + { + "id": "0x0100E2800BBC2000", + "name": "Galactic Defence Squadron" + }, + { + "id": "0x0100E29001298000", + "name": "Has-Been Heroes" + }, + { + "id": "0x0100E2E00EA42000", + "name": "Reventure" + }, + { + "id": "0x0100E7400DBE2000", + "name": "Gym Hero - Idle Fitness Tycoon" + }, + { + "id": "0x0100E7B00BF24000", + "name": "Funghi Explosion" + }, + { + "id": "0x0100E95010F6A000", + "name": "Game Dev Tycoon" + }, + { + "id": "0x0100EA300EFF0000", + "name": "Arcade Archives VIGILANTE" + }, + { + "id": "0x0100EBB012400000", + "name": "Arcade Archives Burger Time" + }, + { + "id": "0x0100EBE00D5B0000", + "name": "Meow Motors" + }, + { + "id": "0x0100EC000D39A000", + "name": "Tetsumo Party" + }, + { + "id": "0x0100ECE00C0C4000", + "name": "Fury Unleashed" + }, + { + "id": "0x0100F0C012C10000", + "name": "Space Invaders Forever" + }, + { + "id": "0x0100F46011B50000", + "name": "Asterix & Obelix XXL: Romastered" + }, + { + "id": "0x0100F8900A5B0000", + "name": "The Way Remastered" + }, + { + "id": "0x0100FCA00C8D0000", + "name": "BombFall" + }, + { + "id": "0x0100CC80013D6000", + "name": "The Jackbox Party Pack 3" + }, + { + "id": "0x0100CD40104DE000", + "name": "Actual Sunlight" + }, + { + "id": "0x0100CD900FB24000", + "name": "WARTILE" + }, + { + "id": "0x0100CE400E34E000", + "name": "Thief Simulator" + }, + { + "id": "0x0100CF10099B2000", + "name": "911 Operator" + }, + { + "id": "0x0100CF8003E70000", + "name": "Harvest Moon®: Light of Hope Special Edition" + }, + { + "id": "0x0100D1201183A000", + "name": "Quell Memento" + }, + { + "id": "0x0100D6B012DE8000", + "name": "Candy 2048 Challenge" + }, + { + "id": "0x0100D7000F17A000", + "name": "Arcade Archives Mr.GOEMON" + }, + { + "id": "0x0100D71004694000", + "name": "Minecraft" + }, + { + "id": "0x0100D9D00EE8C000", + "name": "Atelier Ayesha: The Alchemist of Dusk DX" + }, + { + "id": "0x0100DA2011F18000", + "name": "Castle Pals" + }, + { + "id": "0x0100DD700D95E000", + "name": "Little Shopping" + }, + { + "id": "0x0100E2800EF4A000", + "name": "Fear of Traffic" + }, + { + "id": "0x0100E2B00E064000", + "name": "ZOMB" + }, + { + "id": "0x0100E4401139C000", + "name": "Filament" + }, + { + "id": "0x0100E4600D31A000", + "name": "Mechstermination Force" + }, + { + "id": "0x0100E4900D266000", + "name": "Jet Kave Adventure" + }, + { + "id": "0x0100E5900F49A000", + "name": "Othercide" + }, + { + "id": "0x0100E6100E3A0000", + "name": "Eight-Minute Empire: Complete Edition" + }, + { + "id": "0x01008EA00C27E000", + "name": "DYING: Reborn - Nintendo Switch Edition" + }, + { + "id": "0x01008EC005F88000", + "name": "Super Ping Pong Trick Shot" + }, + { + "id": "0x01008F200C880000", + "name": "Mugsters Demo" + }, + { + "id": "0x01008F600CA1A000", + "name": "Basketball" + }, + { + "id": "0x0100907011392000", + "name": "OkunoKA Madness" + }, + { + "id": "0x01009070133D0000", + "name": "Road 3 Pack" + }, + { + "id": "0x0100922008008000", + "name": "NARUTO SHIPPUDEN: Ultimate Ninja STORM 2" + }, + { + "id": "0x0100924013162000", + "name": "Isolation Story" + }, + { + "id": "0x0100936011556000", + "name": "Root Double -Before Crime * After Days- Xtend Edition" + }, + { + "id": "0x010093D00C726000", + "name": "Downwell" + }, + { + "id": "0x010094C00E180000", + "name": "Ghost Parade" + }, + { + "id": "0x0100956007854000", + "name": "Woodle Tree Adventures" + }, + { + "id": "0x0100978009B98000", + "name": "A Normal Lost Phone" + }, + { + "id": "0x010097D006DEA000", + "name": "Pikuniku" + }, + { + "id": "0x010097E00ADC2000", + "name": "Feral Fury" + }, + { + "id": "0x01009D9010B9E000", + "name": "Rainbows, toilets & unicorns" + }, + { + "id": "0x01009E40095EE000", + "name": "Radiation Island" + }, + { + "id": "0x0100A0800E974000", + "name": "Laser Kitty Pow Pow" + }, + { + "id": "0x0100A19011EEE000", + "name": "Creepy Tale" + }, + { + "id": "0x0100E7F00FFB8000", + "name": "Resolutiion" + }, + { + "id": "0x0100E940044F2000", + "name": "Neversong" + }, + { + "id": "0x0100EDC00AAAA000", + "name": "It's Spring Again" + }, + { + "id": "0x0100F03011616000", + "name": "Re:Turn - One Way Trip" + }, + { + "id": "0x0100F5D00C812000", + "name": "Wondershot" + }, + { + "id": "0x0100F78002040000", + "name": "Troll and I™" + }, + { + "id": "0x0100F92005D54000", + "name": "Swim Out" + }, + { + "id": "0x0100F9B012C6A000", + "name": "Here Be Dragons" + }, + { + "id": "0x0100FB700DE1A000", + "name": "Mini Trains" + }, + { + "id": "0x0100FC000AFC6000", + "name": "ACA NEOGEO 3 COUNT BOUT" + }, + { + "id": "0x01009800100B4000", + "name": "Lydia" + }, + { + "id": "0x010099100E03C000", + "name": "Puzzle Herder" + }, + { + "id": "0x010099700BF10000", + "name": "Madorica Real Estate" + }, + { + "id": "0x01009AB00BDFE000", + "name": "The Stillness of the Wind" + }, + { + "id": "0x01009D60080B4000", + "name": "SpiritSphere DX" + }, + { + "id": "0x0100A0C00D846000", + "name": "Fell Seal: Arbiter's Mark" + }, + { + "id": "0x0100A0E005E42000", + "name": "Light Fingers" + }, + { + "id": "0x0100A3900C3E2000", + "name": "Paper Mario™: The Origami King" + }, + { + "id": "0x0100A4100DDC2000", + "name": "R-Type Dimensions EX Demo Version" + }, + { + "id": "0x0100A4300B4FC000", + "name": "LongStory: A dating game for the real world" + }, + { + "id": "0x0100A5900472E000", + "name": "Chess Ultra" + }, + { + "id": "0x0100A5C00D162000", + "name": "Cuphead" + }, + { + "id": "0x0100A62002042000", + "name": "RiME" + }, + { + "id": "0x0100A66003384000", + "name": "Hulu" + }, + { + "id": "0x0100A790133FC000", + "name": "Mercenaries Blaze: Dawn of the Twin Dragons" + }, + { + "id": "0x0100A8C001DCE000", + "name": "ACA NEOGEO NAM-1975" + }, + { + "id": "0x0100AD700CBBE000", + "name": "Shadows of Adam" + }, + { + "id": "0x0100AFE00DDAC000", + "name": "Royal Roads" + }, + { + "id": "0x0100B1200ADEA000", + "name": "Loot Monkey: Bling Palace" + }, + { + "id": "0x0100B13007A6A000", + "name": "The Gardens Between" + }, + { + "id": "0x0100E9B01243C000", + "name": "Forest Guardian" + }, + { + "id": "0x0100E9C010EA8000", + "name": "Rise of Insanity" + }, + { + "id": "0x0100EB800868C000", + "name": "Azkend 2: The World Beneath" + }, + { + "id": "0x0100ED700469A000", + "name": "Deru - The Art of Cooperation" + }, + { + "id": "0x0100EF5008FC4000", + "name": "Nippon Marathon" + }, + { + "id": "0x0100EFF0137DA000", + "name": "Arcade Archives ZERO TEAM" + }, + { + "id": "0x0100F15003E64000", + "name": "Fire Emblem Warriors" + }, + { + "id": "0x0100F2C00F060000", + "name": "Doodle Derby" + }, + { + "id": "0x0100F4700B2E0000", + "name": "Moonlighter" + }, + { + "id": "0x0100F5400D534000", + "name": "Pillar Demo" + }, + { + "id": "0x0100F6200CBE0000", + "name": "Teddy the Wanderer: Kayaking" + }, + { + "id": "0x0100F8100B982000", + "name": "Monster Energy Supercross - The Official Videogame 2" + }, + { + "id": "0x0100F9A012892000", + "name": "Ord." + }, + { + "id": "0x0100FE200AF48000", + "name": "VASARA Collection" + }, + { + "id": "0x0100FE400EBBC000", + "name": "Do Not Feed the Monkeys" + }, + { + "id": "0x0100FF1004D56000", + "name": "Ace of Seafood" + }, + { + "id": "0x0100FF5005B76000", + "name": "STRIKERS1945 for Nintendo Switch" + }, + { + "id": "0x0100A3B009838000", + "name": "Arcade Archives KIKI KAIKAI" + }, + { + "id": "0x0100A6000ACEA000", + "name": "Punch Club" + }, + { + "id": "0x0100A6A00A5D0000", + "name": "Save me Mr Tako: Tasukete Tako-San" + }, + { + "id": "0x0100A7900BADA000", + "name": "MechaNika" + }, + { + "id": "0x0100A9A0088FE000", + "name": "Max: The Curse of Brotherhood (Demo)" + }, + { + "id": "0x0100AAA00DD4C000", + "name": "Lucah: Born of a Dream" + }, + { + "id": "0x0100ADD00E17E000", + "name": "Heave Ho" + }, + { + "id": "0x0100B0700E944000", + "name": "80 DAYS" + }, + { + "id": "0x0100B6200D8D2000", + "name": "Five Nights at Freddy's" + }, + { + "id": "0x0100B78006CCA000", + "name": "Neo ATLAS 1469" + }, + { + "id": "0x0100B9F00B58E000", + "name": "DRAGON BALL XENOVERSE 2 Lite Version" + }, + { + "id": "0x0100B9F00C162000", + "name": "Space Blaze" + }, + { + "id": "0x0100BAA00CDFA000", + "name": "Mahjong Stories: Vampire Romance" + }, + { + "id": "0x0100BB800E0D2000", + "name": "Jigsaw Masterpieces" + }, + { + "id": "0x0100BC2004FF4000", + "name": "Owlboy" + }, + { + "id": "0x0100BCC013864000", + "name": "jetPIN" + }, + { + "id": "0x0100BDD00EC5C000", + "name": "Super Mega Space Blaster Special Turbo" + }, + { + "id": "0x0100BE7010610000", + "name": "Circuit Dude" + }, + { + "id": "0x0100BF400AF38000", + "name": "Bibi & Tina – Adventures with Horses" + }, + { + "id": "0x010016D00D2C2000", + "name": "Pocket League Story" + }, + { + "id": "0x010019A0134E2000", + "name": "Dodge These Balls" + }, + { + "id": "0x01001B000D8B6000", + "name": "Arcade Archives WILD WESTERN" + }, + { + "id": "0x01001B10068EC000", + "name": "Urban Trial Playground" + }, + { + "id": "0x01001E500EA16000", + "name": "Path of Sin: Greed" + }, + { + "id": "0x010021A00E6CC000", + "name": "Ellen" + }, + { + "id": "0x010027D00F63C000", + "name": "Party Treats" + }, + { + "id": "0x0100293012D40000", + "name": "BIT.TRIP FLUX" + }, + { + "id": "0x01002A100E010000", + "name": "Hungry Baby: Party Treats" + }, + { + "id": "0x01002AA00C974000", + "name": "SMASHING THE BATTLE" + }, + { + "id": "0x01002B2004F76000", + "name": "GUNBARICH for Nintendo Switch" + }, + { + "id": "0x01002C100FBB6000", + "name": "Dude, Stop" + }, + { + "id": "0x01002D20103E0000", + "name": "Tower of Babel - no mercy" + }, + { + "id": "0x01002D2011850000", + "name": "Shovel Knight: Shovel of Hope" + }, + { + "id": "0x01002D20129FC000", + "name": "Beat Me!" + }, + { + "id": "0x01002DD004972000", + "name": "Sumer" + }, + { + "id": "0x01002DF00F76C000", + "name": "SAMURAI SHODOWN" + }, + { + "id": "0x01002E501015A000", + "name": "It came from space and ate our brains" + }, + { + "id": "0x01002E900CF38000", + "name": "Maid of Sker" + }, + { + "id": "0x01002EB010146000", + "name": "Color.Motif Deluxe" + }, + { + "id": "0x01002FC00B694000", + "name": "Fill-a-Pix: Phil's Epic Adventure Demo" + }, + { + "id": "0x01002FC00C6D0000", + "name": "Witch Thief" + }, + { + "id": "0x010031A00BC9E000", + "name": "EXTREME POKER" + }, + { + "id": "0x01003620068EA000", + "name": "Hand of Fate 2" + }, + { + "id": "0x0100398010314000", + "name": "Tomoyo After -It's a Wonderful Life- CS Edition" + }, + { + "id": "0x010039A00BC64000", + "name": "Wasteland 2: Director's Cut" + }, + { + "id": "0x01003A30012C0000", + "name": "LEGO® CITY Undercover" + }, + { + "id": "0x01003BD00CAAE000", + "name": "Wolfenstein: Youngblood" + }, + { + "id": "0x01003C100445C000", + "name": "Castle of Heart" + }, + { + "id": "0x01003CC00D0BE000", + "name": "Amnesia: Collection" + }, + { + "id": "0x01003E500F962000", + "name": "Tokyo Dark – Remembrance –" + }, + { + "id": "0x01003EB010008000", + "name": "inbento" + }, + { + "id": "0x010040E00C2D2000", + "name": "Marenian Tavern Story: Patty and the Hungry God" + }, + { + "id": "0x010043700EB68000", + "name": "TERRORHYTHM (TRRT)" + }, + { + "id": "0x010044300A65E000", + "name": "Defoliation" + }, + { + "id": "0x010044400E99C000", + "name": "BATTLE & CRASH" + }, + { + "id": "0x010046400F310000", + "name": "Music Racer" + }, + { + "id": "0x010049100B93E000", + "name": "Octahedron: Transfixed Edition" + }, + { + "id": "0x01004A200BB48000", + "name": "Arcade Archives OMEGA FIGHTER" + }, + { + "id": "0x0100DC4009828000", + "name": "Arcade Archives RAIDERS5" + }, + { + "id": "0x0100DCA00DA7E000", + "name": "Contra Anniversary Collection" + }, + { + "id": "0x0100DCF0093EC000", + "name": "Everspace™ - Stellar Edition" + }, + { + "id": "0x0100E060102AA000", + "name": "Blood will be Spilled" + }, + { + "id": "0x0100E18012A64000", + "name": "Twist&Bounce" + }, + { + "id": "0x0100E2300C4C4000", + "name": "Please, Don't Touch Anything" + }, + { + "id": "0x0100E3500D342000", + "name": "Golf Peaks" + }, + { + "id": "0x0100E470067A8000", + "name": "Don't Knock Twice" + }, + { + "id": "0x0100E4A00D066000", + "name": "Sea King" + }, + { + "id": "0x0100E6A00B960000", + "name": "The Princess Guide" + }, + { + "id": "0x0100E720115CC000", + "name": "F-117A Stealth Fighter" + }, + { + "id": "0x0100E7400B83E000", + "name": "Surgeon Simulator CPR" + }, + { + "id": "0x0100E7400C7C4000", + "name": "Abyss" + }, + { + "id": "0x0100E7A00DAC2000", + "name": "Street Basketball" + }, + { + "id": "0x0100E8400FDCA000", + "name": "Without Escape" + }, + { + "id": "0x0100EC400D54E000", + "name": "SWORD ART ONLINE: Hollow Realization Deluxe Edition" + }, + { + "id": "0x0100EC8004762000", + "name": "KORG Gadget for Nintendo Switch" + }, + { + "id": "0x0100EDD0068A6000", + "name": "Broken Age" + }, + { + "id": "0x0100F1401161E000", + "name": "INMOST" + }, + { + "id": "0x0100F43011E5A000", + "name": "Tcheco in the Castle of Lucio" + }, + { + "id": "0x0100BF9012AC6000", + "name": "Suguru Nature" + }, + { + "id": "0x0100C1A012AE0000", + "name": "Futoshiki Math" + }, + { + "id": "0x0100C3E00B700000", + "name": "SEGA AGES Space Harrier" + }, + { + "id": "0x0100C4D00D16A000", + "name": "Commander Keen in Keen Dreams" + }, + { + "id": "0x0100C7600E77E000", + "name": "Wizards: Wand of Epicosity" + }, + { + "id": "0x0100C8700B0B6000", + "name": "Nidhogg 2" + }, + { + "id": "0x0100C9600D028000", + "name": "Monster Prom: XXL" + }, + { + "id": "0x0100CA200EE70000", + "name": "Epic Clicker Journey" + }, + { + "id": "0x0100CEF001DC0000", + "name": "ACA NEOGEO WAKU WAKU 7" + }, + { + "id": "0x0100CF900FA3E000", + "name": "FAIRY TAIL" + }, + { + "id": "0x0100D5D00C6BE000", + "name": "Our World Is Ended." + }, + { + "id": "0x0100D5F00EC52000", + "name": "Kairobotica" + }, + { + "id": "0x0100D94012FE8000", + "name": "Saboteur SiO" + }, + { + "id": "0x0100D9D011E3C000", + "name": "Wildfire" + }, + { + "id": "0x0100DAC00BB52000", + "name": "Inventioneers" + }, + { + "id": "0x0100DBC0081A4000", + "name": "ACORN Tactics" + }, + { + "id": "0x0100DD200B59E000", + "name": "Inops" + }, + { + "id": "0x0100DEA00B758000", + "name": "Personality and Psychology Premium" + }, + { + "id": "0x0100DFC00E472000", + "name": "Earthfall: Alien Horde" + }, + { + "id": "0x0100E0200B980000", + "name": "OlliOlli: Switch Stance" + }, + { + "id": "0x0100F4500AA4E000", + "name": "Slice, Dice & Rice" + }, + { + "id": "0x0100F8A010AEC000", + "name": "Frozen Friends" + }, + { + "id": "0x0100F9900D8C8000", + "name": "Crazy Zen Mini Golf" + }, + { + "id": "0x0100FD200A45A000", + "name": "Spheroids" + }, + { + "id": "0x0100B54012798000", + "name": "Flatland: Prologue" + }, + { + "id": "0x0100BAC011928000", + "name": "Deadly Premonition 2: A Blessing In Disguise" + }, + { + "id": "0x0100BAE011072000", + "name": "Indie Darling Bundle Vol. 1" + }, + { + "id": "0x0100BB500EACA000", + "name": "STAR WARS™ Jedi Knight II: Jedi Outcast™" + }, + { + "id": "0x0100BCE012894000", + "name": "Two Parsecs From Earth" + }, + { + "id": "0x0100C2700E338000", + "name": "Heroland" + }, + { + "id": "0x0100C4F005EB4000", + "name": "Mecho Tales" + }, + { + "id": "0x0100C53004C52000", + "name": "Flat Heroes" + }, + { + "id": "0x0100C5A0115C4000", + "name": "CopperBell" + }, + { + "id": "0x0100C8200E942000", + "name": "Fin and the Ancient Mystery" + }, + { + "id": "0x0100CA200DC6E000", + "name": "Arcade Archives WATER SKI" + }, + { + "id": "0x0100CA500756C000", + "name": "Fossil Hunters" + }, + { + "id": "0x0100CCE00DDB6000", + "name": "Shoot 1UP DX" + }, + { + "id": "0x0100CD4011A18000", + "name": "Taxi Sim 2020" + }, + { + "id": "0x0100CF800C810000", + "name": "Coffee Crisis" + }, + { + "id": "0x0100D03003F0E000", + "name": "Nine Parchments" + }, + { + "id": "0x0100D0B0093D8000", + "name": "TorqueL -Physics Modified Edition-" + }, + { + "id": "0x0100D170038EA000", + "name": "ACA NEOGEO SENGOKU" + }, + { + "id": "0x0100D1700ACFC000", + "name": "Flood of Light" + }, + { + "id": "0x0100E3D00EA82000", + "name": "SIMULACRA" + }, + { + "id": "0x0100E5500B020000", + "name": "Neko Navy - Daydream Edition" + }, + { + "id": "0x0100E6400BCE8000", + "name": "Sublevel Zero Redux" + }, + { + "id": "0x0100E7000E826000", + "name": "Little Misfortune" + }, + { + "id": "0x0100EB700EF74000", + "name": "Just Black Jack" + }, + { + "id": "0x0100EE401046E000", + "name": "Thief Town" + }, + { + "id": "0x0100EEB005ACC000", + "name": "Ghost 1.0" + }, + { + "id": "0x0100EFB01316C000", + "name": "Arcade Archives SOCCER" + }, + { + "id": "0x0100F0400F202000", + "name": "No More Heroes" + }, + { + "id": "0x0100F11012BC2000", + "name": "Death Ray Manta SE" + }, + { + "id": "0x0100F3500D05E000", + "name": "Angry Bunnies: Colossal Carrot Crusade" + }, + { + "id": "0x0100F3A00F4CA000", + "name": "Kissed by the Baddest Bidder" + }, + { + "id": "0x0100F4C009322000", + "name": "Pikmin™ 3 Deluxe" + }, + { + "id": "0x0100F7300ED2C000", + "name": "Hoggy2" + }, + { + "id": "0x0100FCD0102EC000", + "name": "Squidlit" + }, + { + "id": "0x0100FF700B96C000", + "name": "Snake vs Snake" + }, + { + "id": "0x0100D4A00B284000", + "name": "ARK: Survival Evolved" + }, + { + "id": "0x0100D4B010DCA000", + "name": "Dune Sea" + }, + { + "id": "0x0100D590120D6000", + "name": "BringIt to MOM" + }, + { + "id": "0x0100DA900B67A000", + "name": "7 Billion Humans" + }, + { + "id": "0x0100DAF00D0E2000", + "name": "Not Tonight: Take Back Control Edition" + }, + { + "id": "0x0100DB20107BE000", + "name": "Boulder Dash 30th Anniversary" + }, + { + "id": "0x0100DDA00C0BC000", + "name": "Color Zen Kids" + }, + { + "id": "0x0100DF9005E7A000", + "name": "Floor Kids" + }, + { + "id": "0x0100DFC00405E000", + "name": "Wheels of Aurelia" + }, + { + "id": "0x0100E000092B2000", + "name": "One Eyed Kutkh" + }, + { + "id": "0x0100E03009DB8000", + "name": "Invisiballs" + }, + { + "id": "0x0100E1800E202000", + "name": "Oniken: Unstoppable Edition & Odallus: The Dark Call Bundle" + }, + { + "id": "0x0100E4600F188000", + "name": "Oliver's Adventures in the Fairyland" + }, + { + "id": "0x0100E4C011304000", + "name": "The Unholy Society" + }, + { + "id": "0x0100E5400BF94000", + "name": "Songbird Symphony" + }, + { + "id": "0x0100E5D00CC0C000", + "name": "Unravel Two" + }, + { + "id": "0x0100E74007EAC000", + "name": "Spellspire" + }, + { + "id": "0x0100E79009A94000", + "name": "Dungeon Stars" + }, + { + "id": "0x0100EB500D92E000", + "name": "GROOVE COASTER WAI WAI PARTY!!!!" + }, + { + "id": "0x0100ED100B634000", + "name": "Moorhuhn Wanted" + }, + { + "id": "0x01005080105C8000", + "name": "Help Me Doctor" + }, + { + "id": "0x0100512010728000", + "name": "Totally Reliable Delivery Service" + }, + { + "id": "0x010051A00D716000", + "name": "Super Blood Hockey" + }, + { + "id": "0x010052B00871C000", + "name": "ACA NEOGEO SAMURAI SHODOWN II" + }, + { + "id": "0x010052C00ABFA000", + "name": "Snakes & Ladders" + }, + { + "id": "0x01005350126E0000", + "name": "Cooking Tycoons 2 - 3 in 1 Bundle" + }, + { + "id": "0x010056500CAD8000", + "name": "Beyond Enemy Lines: Covert Operations" + }, + { + "id": "0x010057500E744000", + "name": "Ghost Grab 3000" + }, + { + "id": "0x010058C00E25A000", + "name": "Pocket Harvest" + }, + { + "id": "0x010058F010296000", + "name": "GERRRMS" + }, + { + "id": "0x01005A70096FA000", + "name": "Kirby™ Star Allies Demo" + }, + { + "id": "0x01005D701264A000", + "name": "SpyHack" + }, + { + "id": "0x01005E7013476000", + "name": "Mad Father" + }, + { + "id": "0x01005EC00BEEC000", + "name": "Iron Crypticle" + }, + { + "id": "0x01005FF002E2A000", + "name": "Rayman® Legends Definitive Edition" + }, + { + "id": "0x010062F00CAE2000", + "name": "Art of Balance DEMO" + }, + { + "id": "0x010065500C980000", + "name": "Pic-a-Pix Pieces" + }, + { + "id": "0x010065500ED96000", + "name": "Mystic Vale" + }, + { + "id": "0x010067D00AC46000", + "name": "Quad Fighter K" + }, + { + "id": "0x010069100B7F0000", + "name": "The Caligula Effect: Overdose" + }, + { + "id": "0x0100EDC00E35A000", + "name": "Arcade Archives CLU CLU LAND" + }, + { + "id": "0x0100F3500C70C000", + "name": "Jet Lancer" + }, + { + "id": "0x0100F4100AF16000", + "name": "Back to Bed" + }, + { + "id": "0x0100F8A00853C000", + "name": "Wandersong" + }, + { + "id": "0x0100F900046C4000", + "name": "Mercenary Kings: Reloaded Edition" + }, + { + "id": "0x0100F9D00C598000", + "name": "Spoiler Alert" + }, + { + "id": "0x0100FE10127F4000", + "name": "Puddle Knights" + }, + { + "id": "0x01006A600623E000", + "name": "Yōdanji" + }, + { + "id": "0x01006A600B5E6000", + "name": "Blue Rider" + }, + { + "id": "0x01006C3011C56000", + "name": "Feathery Ears" + }, + { + "id": "0x01006CF00CFA4000", + "name": "Operencia: The Stolen Sun" + }, + { + "id": "0x010070600DFE4000", + "name": "Let's Go Nuts" + }, + { + "id": "0x01007130114CC000", + "name": "Through the Darkest of Times" + }, + { + "id": "0x010071E011308000", + "name": "Puzzles for Toddlers & Kids: Animals, Cars and more" + }, + { + "id": "0x010072800B1FC000", + "name": "Toy Stunt Bike: Tiptop's Trials (Demo)" + }, + { + "id": "0x0100735004898000", + "name": "The Lion's Song" + }, + { + "id": "0x010074500699A000", + "name": "Timber Tennis: Versus" + }, + { + "id": "0x010079100D950000", + "name": "Secret Files 2: Puritas Cordis" + }, + { + "id": "0x01007C30129FE000", + "name": "Of Tanks and Demons III" + }, + { + "id": "0x01007E100EFA8000", + "name": "Habroxia" + }, + { + "id": "0x01007FC011CF0000", + "name": "Arcade Archives Pettan Pyuu" + }, + { + "id": "0x01008050130EE000", + "name": "Gunslugs" + }, + { + "id": "0x010087D00C82E000", + "name": "Kiai Resonance" + }, + { + "id": "0x010088100EE4E000", + "name": "Talk it Out: Handheld Game" + }, + { + "id": "0x010088801200A000", + "name": "Chess" + }, + { + "id": "0x010089F00A3B4000", + "name": "Perfect Angle" + }, + { + "id": "0x01008A000A404000", + "name": "The Lost Child" + }, + { + "id": "0x01008AC0115C6000", + "name": "RMX Real Motocross" + }, + { + "id": "0x01008E500CF02000", + "name": "Estiman" + }, + { + "id": "0x01008F80049C6000", + "name": "Unepic" + }, + { + "id": "0x01009240117A2000", + "name": "Piofiore: Fated Memories" + }, + { + "id": "0x010096300D9C0000", + "name": "Sushi Time!" + }, + { + "id": "0x010096B009E12000", + "name": "Holy Potatoes! We're In Space?!" + }, + { + "id": "0x010097500E552000", + "name": "March to a Million" + }, + { + "id": "0x010097C00AB66000", + "name": "CastleStorm" + }, + { + "id": "0x010098201125E000", + "name": "Princess Closet" + }, + { + "id": "0x010099700B01A000", + "name": "Valiant Hearts: The Great War" + }, + { + "id": "0x010099D00D1A4000", + "name": "Demolish & Build 2018" + }, + { + "id": "0x01009A9012022000", + "name": "Atelier Ryza 2: Lost Legends & the Secret Fairy" + }, + { + "id": "0x01009AB00B186000", + "name": "The Journey Down: Chapter Two" + }, + { + "id": "0x01009C400C5CA000", + "name": "Robbotto Demo" + }, + { + "id": "0x01009CD012CC0000", + "name": "Worm Jazz" + }, + { + "id": "0x0100A00012652000", + "name": "Restless Hero" + }, + { + "id": "0x0100A1B00C8CC000", + "name": "King's Heir: Rise to the Throne" + }, + { + "id": "0x0100A1D00FE54000", + "name": "Reknum" + }, + { + "id": "0x0100A2F012DF0000", + "name": "Yum Yum Line" + }, + { + "id": "0x0100A6900B77A000", + "name": "Everybody, Hearts!" + }, + { + "id": "0x0100A73012A74000", + "name": "Solitaire Spider Minimal" + }, + { + "id": "0x0100A8A00E462000", + "name": "Real Drift Racing" + }, + { + "id": "0x0100AA800DA42000", + "name": "Automachef" + }, + { + "id": "0x0100AC40108D8000", + "name": "Fred3ric" + }, + { + "id": "0x0100AD30095A4000", + "name": "Atomicrops" + }, + { + "id": "0x0100AE0006474000", + "name": "Stern Pinball Arcade" + }, + { + "id": "0x0100AE701287E000", + "name": "Space Grunts" + }, + { + "id": "0x0100AEC012F16000", + "name": "Tiki Brawl" + }, + { + "id": "0x0100B0600ABE6000", + "name": "Treachery in Beatdown City" + }, + { + "id": "0x0100B130119D0000", + "name": "Waifu Uncovered" + }, + { + "id": "0x0100B2700E9F4000", + "name": "3 Little Pigs & Bad Wolf" + }, + { + "id": "0x0100B280106A0000", + "name": "Aviary Attorney: Definitive Edition" + }, + { + "id": "0x0100B380022AE000", + "name": "Shovel Knight Showdown" + }, + { + "id": "0x0100B440119AA000", + "name": "JigSaw Abundance" + }, + { + "id": "0x0100B7D01147E000", + "name": "Awesome Pea 2" + }, + { + "id": "0x0100BDE00E4C0000", + "name": "Redneck Skeet Shooting" + }, + { + "id": "0x0100C1300BBC6000", + "name": "ABZÛ" + }, + { + "id": "0x0100C2700AEB8000", + "name": "Jenny LeClue - Detectivu" + }, + { + "id": "0x0100C5F012A3C000", + "name": "Mad Tower Tycoon" + }, + { + "id": "0x0100C8900DC54000", + "name": "Deer Drive Legends" + }, + { + "id": "0x0100CDC00789E000", + "name": "The Final Station" + }, + { + "id": "0x0100CEC003A4A000", + "name": "PAW Patrol: On a Roll!" + }, + { + "id": "0x0100CF600FF7A000", + "name": "Red Bow" + }, + { + "id": "0x0100D0800C612000", + "name": "SEGA AGES Thunder Force AC" + }, + { + "id": "0x0100D1500F6DC000", + "name": "The Incredible Adventures of Super Panda" + }, + { + "id": "0x0100D2E00C4CC000", + "name": "Rampage Knights" + }, + { + "id": "0x0100D6B010DC0000", + "name": "Cyber Complex" + }, + { + "id": "0x0100D7300E966000", + "name": "SELF" + }, + { + "id": "0x0100D850131B0000", + "name": "Touhou Luna Nights" + }, + { + "id": "0x0100D940063A0000", + "name": "MXGP3 - The Official Motocross Videogame" + }, + { + "id": "0x0100DE400D5A4000", + "name": "DODGE HARD" + }, + { + "id": "0x0100E1100D92C000", + "name": "Molecats" + }, + { + "id": "0x0100E22010D06000", + "name": "Speed Dating for Ghosts" + }, + { + "id": "0x0100E66010ADE000", + "name": "Crysis Remastered" + }, + { + "id": "0x0100EB701117A000", + "name": "Trailer Trashers" + }, + { + "id": "0x0100EB900A534000", + "name": "Devious Dungeon DEMO" + }, + { + "id": "0x0100EC200BFF8000", + "name": "Gunlord X" + }, + { + "id": "0x0100ECF008474000", + "name": "6180 the moon" + }, + { + "id": "0x0100EE300FC36000", + "name": "Glass Masquerade 2: Illusions" + }, + { + "id": "0x0100EF100AFE6000", + "name": "ACA NEOGEO THE KING OF FIGHTERS 2003" + }, + { + "id": "0x0100EF200DA60000", + "name": "The Survivalists" + }, + { + "id": "0x0100EFB00B7B8000", + "name": "Omvorm" + }, + { + "id": "0x0100EFE00E964000", + "name": "64.0" + }, + { + "id": "0x0100F0400C878000", + "name": "BATTLESHIP" + }, + { + "id": "0x0100F2600EA72000", + "name": "Override: Mech City Brawl – Super Charged Mega Edition" + }, + { + "id": "0x0100F3400D228000", + "name": "Ninja Village Demo" + }, + { + "id": "0x0100F73011456000", + "name": "Diabolic" + }, + { + "id": "0x0100FAE00F728000", + "name": "Teddy Gangs" + }, + { + "id": "0x0100FDF0083A6000", + "name": "Regalia: Of Men and Monarchs - Royal Edition" + }, + { + "id": "0x0100FE801185E000", + "name": "Titan Glory" + }, + { + "id": "0x010000D00F81A000", + "name": "Super Korotama" + }, + { + "id": "0x010001300CC4A000", + "name": "Unruly Heroes" + }, + { + "id": "0x01000360107BC000", + "name": "911 Operator Deluxe Edition" + }, + { + "id": "0x010004400B22A000", + "name": "Knights of Pen & Paper 2 Deluxiest Edition" + }, + { + "id": "0x0100045010A28000", + "name": "Arcade Archives FORMATION Z" + }, + { + "id": "0x010006A0042F0000", + "name": "88 Heroes - 98 Heroes Edition" + }, + { + "id": "0x010009900947A000", + "name": "Atelier Lydie & Suelle ~The Alchemists and the Mysterious Paintings~" + }, + { + "id": "0x01000A10041EA000", + "name": "The Elder Scrolls V: Skyrim" + }, + { + "id": "0x01000B20117B8000", + "name": "Re:ZERO -Starting Life in Another World- The Prophecy of the Throne" + }, + { + "id": "0x01000E800F326000", + "name": "Game Tengoku CruisinMix Special" + }, + { + "id": "0x01000F0007D92000", + "name": "Croixleur Sigma" + }, + { + "id": "0x01000FD00D5CC000", + "name": "Pig Eat Ball" + }, + { + "id": "0x010017600B532000", + "name": "Piczle Lines DX 500 More Puzzles!" + }, + { + "id": "0x0100184011B32000", + "name": "Arrest of a stone Buddha" + }, + { + "id": "0x01001B80099F6000", + "name": "Dracula's Legacy" + }, + { + "id": "0x01001BE0133F6000", + "name": "Taiko no Tatsujin: Rhythmic Adventure 1" + }, + { + "id": "0x01001E500401C000", + "name": "Koi DX" + }, + { + "id": "0x01001ED00F384000", + "name": "Tic-Tac-Letters by POWGI" + }, + { + "id": "0x01002120116C4000", + "name": "Splatoon™ 2 Special Demo 2020" + }, + { + "id": "0x010021700BC56000", + "name": "Ancient Rush 2" + }, + { + "id": "0x010021D00812A000", + "name": "Arcade Archives VS. SUPER MARIO BROS." + }, + { + "id": "0x010022000BCDA000", + "name": "Game Dev Story Demo" + }, + { + "id": "0x010024C00D734000", + "name": "Elevator...to the Moon! Turbo Champion's Edition" + }, + { + "id": "0x010025000CBEA000", + "name": "Swamp Defense 2" + }, + { + "id": "0x01002B000D97E000", + "name": "Raiden V: Director's Cut" + }, + { + "id": "0x01002E900CD6E000", + "name": "Left-Right : The Mansion" + }, + { + "id": "0x01002EC009AEE000", + "name": "Super Arcade Soccer" + }, + { + "id": "0x010030D00EA1C000", + "name": "Sparkle 4 Tales" + }, + { + "id": "0x0100361009B1A000", + "name": "Manifold Garden" + }, + { + "id": "0x010036700F83E000", + "name": "To the Moon" + }, + { + "id": "0x010037D00D568000", + "name": "The Swords of Ditto: Mormo's Curse" + }, + { + "id": "0x010038200A98E000", + "name": "In Between" + }, + { + "id": "0x010038400CD96000", + "name": "Spartan Fist" + }, + { + "id": "0x010038C00EC34000", + "name": "Under Night In-Birth Exe:Late[cl-r]" + }, + { + "id": "0x010039B011312000", + "name": "Colorgrid" + }, + { + "id": "0x01003B300E4AA000", + "name": "THE GRISAIA TRILOGY" + }, + { + "id": "0x01003B4012478000", + "name": "Arcade Archives BURNIN' RUBBER" + }, + { + "id": "0x01003BE00ECAE000", + "name": "Catch a Duck" + }, + { + "id": "0x01003D700DD8A000", + "name": "The Elder Scrolls®: Blades" + }, + { + "id": "0x01003DD00DE14000", + "name": "Croc's World 2 Demo" + }, + { + "id": "0x010042A00A9CC000", + "name": "Rapala Fishing Pro Series" + }, + { + "id": "0x010044500CF8E000", + "name": "Hellblade: Senua's Sacrifice" + }, + { + "id": "0x010045100F722000", + "name": "Just a Phrase by POWGI" + }, + { + "id": "0x0100465009020000", + "name": "Qbik" + }, + { + "id": "0x010047000E9AA000", + "name": "AO Tennis 2" + }, + { + "id": "0x010049101124C000", + "name": "CAN ANDROIDS PRAY:BLUE" + }, + { + "id": "0x01004AC0081DC000", + "name": "Sleep Tight" + }, + { + "id": "0x01004B001058C000", + "name": "Zero Strain" + }, + { + "id": "0x01004B7009F00000", + "name": "Miles & Kilo" + }, + { + "id": "0x01004CD00F690000", + "name": "Knowledge Trainer: Trivia" + }, + { + "id": "0x01004D1007926000", + "name": "10 Second Run RETURNS" + }, + { + "id": "0x01004DE001DC8000", + "name": "ACA NEOGEO SHOCK TROOPERS 2nd Squad" + }, + { + "id": "0x01004E5007E92000", + "name": "Ice Age Scrat's Nutty Adventure!" + }, + { + "id": "0x01004FD00D66A000", + "name": "Caladrius Blaze" + }, + { + "id": "0x010052A00942A000", + "name": "Gekido Kintaro's Revenge" + }, + { + "id": "0x010053400BFA6000", + "name": "ROCKETSROCKETSROCKETS" + }, + { + "id": "0x010056500AD50000", + "name": "Rogue Legacy" + }, + { + "id": "0x010057B00712C000", + "name": "Vesta" + }, + { + "id": "0x010057D0021E8000", + "name": "Shovel Knight: Treasure Trove" + }, + { + "id": "0x0100583001DCA000", + "name": "ACA NEOGEO THE KING OF FIGHTERS '99" + }, + { + "id": "0x0100591010262000", + "name": "Mini Puzzle Balls" + }, + { + "id": "0x01005CB013872000", + "name": "Fall Gummies" + }, + { + "id": "0x01005F201038C000", + "name": "Never Again" + }, + { + "id": "0x010062200CAD2000", + "name": "Let's Sing 2019" + }, + { + "id": "0x010065100E7DA000", + "name": "Paradox Soul" + }, + { + "id": "0x010069800D292000", + "name": "Fishing Universe Simulator" + }, + { + "id": "0x010069900FD68000", + "name": "PONG Quest" + }, + { + "id": "0x01006DB00FBF6000", + "name": "MetaChampions" + }, + { + "id": "0x010071400981A000", + "name": "Arcade Archives Karate Champ" + }, + { + "id": "0x01007550131EE000", + "name": "2URVIVE" + }, + { + "id": "0x010076E009C5E000", + "name": "Party Hard" + }, + { + "id": "0x0100775004794000", + "name": "Steredenn: Binary Stars" + }, + { + "id": "0x010077900440A000", + "name": "Island Flight Simulator" + }, + { + "id": "0x010078E012D80000", + "name": "Grim Legends 2: Song of the Dark Swan" + }, + { + "id": "0x01007BB00FC8A000", + "name": "198X" + }, + { + "id": "0x01007BC00DE68000", + "name": "GoFishing 3D" + }, + { + "id": "0x01007C600D778000", + "name": "Creature in the Well" + }, + { + "id": "0x01007C900FD96000", + "name": "Rolling Sky 2" + }, + { + "id": "0x0100801011C3E000", + "name": "Persona® 5 Strikers" + }, + { + "id": "0x010081700EDF4000", + "name": "WWE 2K Battlegrounds" + }, + { + "id": "0x0100829010F4A000", + "name": "1971 Project Helios" + }, + { + "id": "0x010087C009246000", + "name": "Muddledash" + }, + { + "id": "0x010087E00B0E6000", + "name": "Toki Tori 2+ Demo" + }, + { + "id": "0x01008CE00FDCC000", + "name": "Bowling" + }, + { + "id": "0x01008E9007064000", + "name": "WorldNeverland - Elnea Kingdom" + }, + { + "id": "0x01008FA00ACEC000", + "name": "RADIOHAMMER STATION" + }, + { + "id": "0x01008FA00D686000", + "name": "Circuits" + }, + { + "id": "0x010090B00B1F0000", + "name": "Hot Springs Story" + }, + { + "id": "0x010091300FFA0000", + "name": "Grizzland" + }, + { + "id": "0x010091D00BE38000", + "name": "Rock of Ages 2: Bigger & Boulder™" + }, + { + "id": "0x010092A00C4B6000", + "name": "Friday the 13th: The Game Ultimate Slasher Edition" + }, + { + "id": "0x010092B00C4F0000", + "name": "Hello Neighbor Hide and Seek" + }, + { + "id": "0x0100971011224000", + "name": "Concept Destruction" + }, + { + "id": "0x01009720105B2000", + "name": "Talking Tom Candy Run" + }, + { + "id": "0x01009C4012336000", + "name": "TENS!" + }, + { + "id": "0x01009DF00DB42000", + "name": "Airfield Mania" + }, + { + "id": "0x01009F100B0B8000", + "name": "Vertical Drop Heroes HD" + }, + { + "id": "0x0100A1B00DB36000", + "name": "Rock of Ages 3: Make & Break" + }, + { + "id": "0x0100A2200AFE2000", + "name": "ACA NEOGEO KIZUNA ENCOUNTER" + }, + { + "id": "0x0100AA0008736000", + "name": "Nihilumbra" + }, + { + "id": "0x0100AA4008210000", + "name": "GetAmped Mobile" + }, + { + "id": "0x0100ABE00CE7C000", + "name": "Switch 'N' Shoot" + }, + { + "id": "0x0100AC100CCF6000", + "name": "Cryogear" + }, + { + "id": "0x0100ACB010ED2000", + "name": "Arcade Archives MX5000" + }, + { + "id": "0x0100ADF0096F2000", + "name": "Samurai Aces for Nintendo Switch" + }, + { + "id": "0x0100AFA00DED4000", + "name": "Hookbots" + }, + { + "id": "0x0100B080104BC000", + "name": "Strike! Ten Pin Bowling" + }, + { + "id": "0x0100B0E010CF8000", + "name": "Creaks" + }, + { + "id": "0x0100B280067BE000", + "name": "Penguin Wars" + }, + { + "id": "0x0100B3B00D81C000", + "name": "Bad Dream: Fever" + }, + { + "id": "0x0100B6200D204000", + "name": "LOVE" + }, + { + "id": "0x0100B8B013310000", + "name": "Dadish" + }, + { + "id": "0x0100B8C00CFCE000", + "name": "Awesome Pea" + }, + { + "id": "0x0100BA500B660000", + "name": "Darts Up" + }, + { + "id": "0x0100BD4011FFE000", + "name": "Witcheye" + }, + { + "id": "0x0100BD9004AB6000", + "name": "Kingdom: New Lands" + }, + { + "id": "0x0100C1A00AC3E000", + "name": "Children of Zodiarcs" + }, + { + "id": "0x0100C2D00981E000", + "name": "Arcade Archives RYGAR" + }, + { + "id": "0x0100C81004780000", + "name": "Disco Dodgeball - REMIX" + }, + { + "id": "0x0100C8500CBC4000", + "name": "Conjurer Andy's Repeatable Dungeon" + }, + { + "id": "0x0100C8C00FA10000", + "name": "Serious Scramblers" + }, + { + "id": "0x0100CA7012CD6000", + "name": "Hide & Dance!" + }, + { + "id": "0x0100CD300880E000", + "name": "The Pinball Arcade" + }, + { + "id": "0x0100CEA007D08000", + "name": "Crypt of the NecroDancer: Nintendo Switch Edition" + }, + { + "id": "0x0100D1700E832000", + "name": "Eliza" + }, + { + "id": "0x0100D3000AEC2000", + "name": "Baobabs Mausoleum: DEMO" + }, + { + "id": "0x0100D5800DECA000", + "name": "Asemblance" + }, + { + "id": "0x0100D7800E9E0000", + "name": "Trials of Mana" + }, + { + "id": "0x0100DBF011922000", + "name": "FLATLAND Vol.1" + }, + { + "id": "0x0100DE9005170000", + "name": "Sports Party" + }, + { + "id": "0x0100E05011350000", + "name": "WINGSPAN" + }, + { + "id": "0x0100E1F003EE8000", + "name": "The Jackbox Party Pack 4" + }, + { + "id": "0x0100E7700C284000", + "name": "My Memory of Us" + }, + { + "id": "0x0100E7900C4C0000", + "name": "Zarvot" + }, + { + "id": "0x0100E9E00B052000", + "name": "Arcade Archives DONKEY KONG" + }, + { + "id": "0x0100EB600AB5E000", + "name": "THE Card: Poker, Texas hold 'em, Blackjack and Page One" + }, + { + "id": "0x0100EBE00DB2C000", + "name": "Twist & Match" + }, + { + "id": "0x0100F1A00A5DC000", + "name": "FRAMED Collection" + }, + { + "id": "0x0100F2B0123AE000", + "name": "L.O.L. Surprise! Remix: We Rule The World" + }, + { + "id": "0x0100F2B013CA4000", + "name": "Wrestling Empire" + }, + { + "id": "0x0100F4800F872000", + "name": "Prison Princess" + }, + { + "id": "0x0100F6D01250C000", + "name": "Spiral Memoria -The Summer I Meet Myself-" + }, + { + "id": "0x0100F9800EDFA000", + "name": "KATANA KAMI: A Way of the Samurai Story" + }, + { + "id": "0x0100FBD00ED24000", + "name": "MONKEY BARRELS" + }, + { + "id": "0x010053d0001be000", + "name": "Puyo Puyo™Tetris®" + }, + { + "id": "0x01006FE013472000", + "name": "Mario Party™ Superstars" + } +] diff --git a/docker-compose.yml b/docker-compose.yml index 7e1bfdc..04acb74 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,6 +4,8 @@ services: redis: image: redis/redis-stack-server restart: always + networks: + - main ldn-server: build: ./ @@ -15,9 +17,12 @@ services: LDN_REDIS_PORT: 6379 ports: - "30456:30456" + networks: + - main - website: + ryujinx-ldn-website: # NOTE: Make sure the website repo is cloned to this location and up to date + hostname: ryujinx-ldn-website build: ../ryujinx-ldn-website/ environment: NODE_ENV: production @@ -25,4 +30,24 @@ services: PORT: 8080 REDIS_URL: "redis://redis:6379" ports: - - "8080:8080" \ No newline at end of file + - "8080:8080" + networks: + - main + + ryujinx-ldn-website2: + # NOTE: Make sure the website repo is cloned to this location and up to date + hostname: ryujinx-ldn-website2 + build: ../ryujinx-ldn-website2/ + environment: + HOST: 0.0.0.0 + PORT: 8080 + REDIS_URL: "redis:6379" + #ports: + # - "8080:8081" + networks: + - main + +networks: + main: + name: main + external: true